@charset "UTF-8";
/*--------------------------------------*
* 基本設定
*--------------------------------------*/
/*--------------------------------------*
* ベースカラー
*--------------------------------------*/
/*--------------------------------------*
* フォント
*--------------------------------------*/
/*--------------------------------------*
* ブレイクポイント
*--------------------------------------*/
/*--------------------------------------*
* vw変換(SP用)
*--------------------------------------*/
/*--------------------------------------*
* vw変換(PC用)
*--------------------------------------*/
/*--------------------------------------*
* デフォルトスタイル
*--------------------------------------*/
html,
body {
  width: 100%;
  font-size: 16px;
  margin: 0 auto;
  font-family: yu-mincho-pr6n, sans-serif;
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
video,
object {
  width: 100%;
  border: none;
  display: block;
}

@media screen and (min-width: 769px) {
  .spNone {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .spNone {
    display: none;
  }
}

@media screen and (min-width: 769px) {
  .pcNone {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .pcNone {
    display: block;
  }
}

/*--------------------------------------*
* aタグ
*--------------------------------------*/
a {
  display: block;
  text-decoration: none;
  transition: all 0.4s;
  color: #000;
}
@media screen and (min-width: 769px) {
  a:hover {
    opacity: 0.6;
    transition: all 0.4s;
  }
}
a[href=""] {
  pointer-events: none;
}

/*--------------------------------------*
* ローディング
*--------------------------------------*/
#loading-bg {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  background: #fff;
  z-index: 999;
}

/*-------------------
* コンテンツのスタイル
-------------------*/
/*--------------------------------------*
* 基本設定
*--------------------------------------*/
/*--------------------------------------*
* FV
*--------------------------------------*/
/*--------------------------------------*
* 基本設定
*--------------------------------------*/
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.opacity {
  opacity: 0;
}

@keyframes maskLeft {
  0% {
    mask-position: left;
    -webkit-mask-position: left;
  }
  100% {
    mask-position: right;
    -webkit-mask-position: right;
  }
}
@keyframes maskRight {
  0% {
    mask-position: right;
    -webkit-mask-position: right;
  }
  100% {
    mask-position: left;
    -webkit-mask-position: left;
  }
}
.mask_left {
  clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
}

.mask_right {
  clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
}

.mask_full {
  clip-path: polygon(100% 0, 0 0, 0 100%, 100% 100%);
}

@keyframes zoomIn {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}
@keyframes zoomOut {
  0% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
figure.zoom {
  overflow: hidden;
}

/*--------------------------------------*
* セクション共通
*--------------------------------------*/
.main__wrapper {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}
.main__wrapper.on {
  opacity: 1;
}
@media screen and (min-width: 769px) {
  .main__wrapper {
    display: flex;
    justify-content: center;
    width: auto;
    -moz-column-gap: 3%;
         column-gap: 3%;
  }
}
@media screen and (min-width: 769px) {
  .main__wrapper .pcLeft {
    position: sticky;
    top: 0;
  }
}
@media screen and (min-width: 769px) {
  .main__wrapper .content .sec {
    aspect-ratio: 54/75;
  }
}
.main__wrapper .content .sec.sec-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
}

.fv {
  height: 100vh;
}
.fv .img__list {
  position: relative;
  width: 100%;
  height: 100vh;
}
@media screen and (min-width: 769px) {
  .fv .img__list {
    width: -moz-fit-content;
    width: fit-content;
  }
}
.fv .img__list__item {
  height: 100vh;
}
@media screen and (min-width: 769px) {
  .fv .img__list__item {
    width: -moz-fit-content;
    width: fit-content;
    aspect-ratio: 54/75;
  }
}
.fv .img__list__item:not(:first-child) {
  opacity: 0;
}
.fv .img__list__item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media screen and (min-width: 769px) {
  .fv .img__list__item img {
    width: auto;
    aspect-ratio: 54/75;
  }
}
.fv__title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.5s 1s ease-in-out;
}
.fv__title.on {
  opacity: 1;
}
.fv__title__logo {
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .fv__title__logo {
    width: 40vw;
  }
}
@media screen and (min-width: 769px) {
  .fv__title__logo {
    width: 11.7361111111vw;
  }
}
.fv__title__sub-title {
  font-family: "garamond-premier-pro", serif; /* R:400 */
  letter-spacing: 0.05em;
  text-align: center;
  text-wrap: nowrap;
}
@media screen and (max-width: 768px) {
  .fv__title__sub-title {
    font-size: 2vw;
    margin-top: 2.6666666667vw;
  }
}
@media screen and (min-width: 769px) {
  .fv__title__sub-title {
    font-size: 0.5555555556vw;
    margin-top: 0.7638888889vw;
  }
}

.sec {
  width: 100%;
  height: 100vh;
  background-color: #fff;
  position: relative;
}
.sec img {
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media screen and (min-width: 769px) {
  .sec img {
    aspect-ratio: 54/75;
  }
}
.sec .plus {
  position: absolute;
  z-index: 100;
}
@media screen and (max-width: 768px) {
  .sec .plus {
    top: 5.3333333333vw;
    right: 5.3333333333vw;
  }
}
@media screen and (min-width: 769px) {
  .sec .plus {
    top: 2.8169014085vw;
    right: 2.8169014085vw;
  }
}
.sec .plus a {
  display: block;
  position: relative;
}
@media screen and (max-width: 768px) {
  .sec .plus a {
    width: 5.3333333333vw;
    height: 5.3333333333vw;
  }
}
@media screen and (min-width: 769px) {
  .sec .plus a {
    width: 30px;
    height: 30px;
  }
}
.sec .plus a::before, .sec .plus a::after {
  content: "";
  display: block;
  border-bottom: solid 1px #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  height: 1px;
  transition-duration: 0.5s;
  z-index: 100;
}
@media screen and (max-width: 768px) {
  .sec .plus a::before, .sec .plus a::after {
    width: 5.3333333333vw;
  }
}
@media screen and (min-width: 769px) {
  .sec .plus a::before, .sec .plus a::after {
    width: 30px;
  }
}
.sec .plus a::before {
  transform: translate(-50%, -50%) rotate(0deg);
}
.sec .plus a::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.sec .plus.on a::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.sec .plus.on a::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.sec .credit {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: -1;
  transition: opacity 1s, visibility 0s 1s, z-index 0s 1s;
}
.sec .credit.open {
  opacity: 1;
  visibility: visible;
  z-index: 20;
  transition: opacity 1s, visibility 0s 0s, z-index 0s 0s;
}
.sec .credit__inner {
  width: 100%;
  height: 100%;
  position: relative;
}
.sec .credit__list {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.sec .credit__list__item a {
  display: block;
  color: #fff;
  font-family: "garamond-premier-pro", serif; /* R:400 */
  line-height: 1.6;
  letter-spacing: 0.025em;
  text-wrap: nowrap;
}
@media screen and (max-width: 768px) {
  .sec .credit__list__item a {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 769px) {
  .sec .credit__list__item a {
    font-size: 1.1111111111vw;
  }
}

.sec__3 {
  position: relative;
}
.sec__3 .img_1 {
  width: 100%;
  position: absolute;
  bottom: 0;
}
.sec__3 .img_1 img {
  height: auto;
}
@media screen and (min-width: 769px) {
  .sec__3 .img_1 img {
    aspect-ratio: 54/50;
  }
}
.sec__3 .img_2 {
  position: absolute;
}
@media screen and (max-width: 768px) {
  .sec__3 .img_2 {
    top: 12.5333333333vw;
    right: 9.3333333333vw;
    width: 48vw;
  }
}
@media screen and (min-width: 769px) {
  .sec__3 .img_2 {
    width: 16.6666666667vw;
    top: 6.25vw;
    right: 2.7777777778vw;
  }
}
.sec__3 .img_2 img {
  height: auto;
}
@media screen and (min-width: 769px) {
  .sec__3 .img_2 img {
    aspect-ratio: 1/1;
  }
}
.sec__3 .plus a::before {
  border-bottom: solid 1px #000;
}
.sec__3 .plus a::after {
  border-bottom: solid 1px #000;
}

.sec__4 {
  position: relative;
}
.sec__4 .img_1 {
  width: 100%;
  position: absolute;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .sec__4 .img_1 {
    width: 40vw;
    top: 6.6666666667vw;
    left: 6.6666666667vw;
  }
}
@media screen and (min-width: 769px) {
  .sec__4 .img_1 {
    width: 13.8888888889vw;
    top: 2.0833333333vw;
    left: 2.0833333333vw;
  }
}
.sec__4 .img_1 img {
  height: auto;
}
@media screen and (min-width: 769px) {
  .sec__4 .img_1 img {
    aspect-ratio: 200/267;
  }
}
.sec__4 .img_2 {
  position: absolute;
}
@media screen and (max-width: 768px) {
  .sec__4 .img_2 {
    right: 5.3333333333vw;
    bottom: 5.3333333333vw;
    width: 80vw;
  }
}
@media screen and (min-width: 769px) {
  .sec__4 .img_2 {
    width: 29.1666666667vw;
    right: 3.4722222222vw;
    bottom: 2.0833333333vw;
  }
}
.sec__4 .img_2 img {
  height: auto;
}
@media screen and (min-width: 769px) {
  .sec__4 .img_2 img {
    aspect-ratio: 420/534;
  }
}
.sec__4 .plus a::before {
  border-bottom: solid 1px #000;
}
.sec__4 .plus a::after {
  border-bottom: solid 1px #000;
}

.footer {
  width: 100%;
  height: 100vh;
  position: relative;
  background-color: #fff;
}
.footer__staff {
  text-align: center;
  letter-spacing: 0.025em;
  line-height: 2.7272727273;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-family: "garamond-premier-pro", serif; /* R:400 */
}
@media screen and (max-width: 768px) {
  .footer__staff {
    font-size: 2.9333333333vw;
    top: 33%;
  }
}
@media screen and (min-width: 769px) {
  .footer__staff {
    font-size: 0.8333333333vw;
    top: 45%;
  }
}
@media screen and (max-width: 768px) {
  .footer__logo {
    width: 40vw;
    margin: 0 auto;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 20%;
  }
}
.footer__icon {
  display: flex;
  justify-content: space-between;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .footer__icon {
    width: 20vw;
    bottom: 10%;
  }
}
@media screen and (min-width: 769px) {
  .footer__icon {
    width: 4.375vw;
    bottom: 33%;
  }
}
@media screen and (max-width: 768px) {
  .footer__icon__item {
    width: 6.6666666667vw;
  }
}
@media screen and (min-width: 769px) {
  .footer__icon__item {
    width: 1.4583333333vw;
  }
}/*# sourceMappingURL=style.css.map */