@charset "UTF-8";
html {
  scroll-behavior: smooth;
}

body {
  width: 100%;
  line-height: 1.5;
  letter-spacing: 0.2px;
  font-size: 2.8vw;
  overflow-x: hidden;
  transition: all 1.6s ease 0s;
  font-family: "helvetica-neue-lt-pro", sans-serif;
  font-weight: 400;
  font-style: normal;
  background: #fff;
}
@media screen and (min-width: 769px) {
  body {
    font-size: 1.1111111111vw;
  }
}

img {
  display: block;
  width: 100%;
}

a:hover {
  opacity: 0.6;
  transition: 0.6s;
}

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

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

/* .load
===================================================== */
.load {
  position: fixed;
  top: 0;
  left: 0;
  background-color: #fff;
  width: 100%;
  height: 100vh;
  z-index: 9999;
}

.○○○○○○ {
  opacity: 0;
  transition: opacity 1s;
}
.○○○○○○.on {
  opacity: 1;
}

.fade {
  opacity: 0;
  transition: opacity 1s ease, transform 1s ease;
}

/* 初期位置 */
.fade-up {
  transform: translateY(20px);
}

.fade-left {
  transform: translateX(-20px);
}

.fade-right {
  transform: translateX(20px);
}

/* その場フェードはtransformなしでもOK */
.fade-in {
  transform: none;
}

/* 表示状態 */
.fade.is-show {
  opacity: 1;
  transform: translate(0, 0);
}

.fv {
  position: sticky;
  top: 0;
  height: 100vh; /* 画面の高さいっぱいに広げる */
  width: 100%;
  z-index: 1; /* 重なりの順序を低く設定 */
}
.fv picture img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.fv h1 {
  position: absolute;
  top: 49%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 42.5333333333vw;
}
@media screen and (min-width: 769px) {
  .fv h1 {
    width: 22.1368055556vw;
  }
}
.fv h1 {
  opacity: 0; /* 初期状態は非表示 */
  transition: opacity 0.8s ease;
}
.fv h1.is-visible {
  opacity: 1; /* 表示状態 */
}
.fv h1.is-hidden {
  opacity: 0; /* スクロールアウト用 */
  pointer-events: none;
}
.fv .b_logo {
  width: 34vw;
  position: absolute;
  top: 92%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 769px) {
  .fv .b_logo {
    width: 11.9652777778vw;
    top: 90%;
  }
}
.fv .b_logo {
  opacity: 0; /* 初期状態は非表示 */
  transition: opacity 0.8s ease;
}
.fv .b_logo.is-visible {
  opacity: 1; /* 表示状態 */
}
.fv .b_logo.is-hidden {
  opacity: 0; /* スクロールアウト用 */
  pointer-events: none;
}
.fv .fv_img {
  height: 100%; /* 親要素(.fv)の高さ100%に広げる */
  display: grid;
  grid-template-columns: 154fr 413fr 154fr; /* 左右:154、中央:413の比率 */
  grid-template-rows: repeat(3, 1fr); /* 3行で利用可能な高さを均等に分割 */
  align-content: center; /* グリッドアイテムを垂直方向中央に配置 */
  gap: 2vw;
}
@media screen and (min-width: 769px) {
  .fv .fv_img {
    grid-template-columns: 94fr 408fr 408fr 408fr 94fr; /* 左右:154、中央:413の比率 */
    grid-template-rows: repeat(2, 1fr); /* 2行で利用可能な高さを均等に分割 */
    gap: 0.4861111111vw;
  }
}
.fv .fv_img picture {
  opacity: 0;
  transition: opacity 0.8s ease;
}
.fv .fv_img.is-loaded picture {
  opacity: 1;
}
.fv .fv_img.is-loaded picture:nth-child(1) {
  transition-delay: 0s;
}
.fv .fv_img.is-loaded picture:nth-child(2) {
  transition-delay: 0.1s;
}
.fv .fv_img.is-loaded picture:nth-child(3) {
  transition-delay: 0.2s;
}
.fv .fv_img.is-loaded picture:nth-child(4) {
  transition-delay: 0.3s;
}
.fv .fv_img.is-loaded picture:nth-child(5) {
  transition-delay: 0.4s;
}
.fv .fv_img.is-loaded picture:nth-child(6) {
  transition-delay: 0.5s;
}
.fv .fv_img.is-loaded picture:nth-child(7) {
  transition-delay: 0.6s;
}
.fv .fv_img.is-loaded picture:nth-child(8) {
  transition-delay: 0.7s;
}
.fv .fv_img.is-loaded picture:nth-child(9) {
  transition-delay: 0.8s;
}
.fv .fv_img.is-loaded picture:nth-child(10) {
  transition-delay: 0.9s;
}
.fv .fv_img.is-loaded picture:nth-child(11) {
  transition-delay: 1s;
}
.fv .fv_img.is-loaded picture:nth-child(12) {
  transition-delay: 1.1s;
}
.fv .fv_img.is-loaded picture:nth-child(13) {
  transition-delay: 1.2s;
}
.fv .fv_img.is-loaded picture:nth-child(14) {
  transition-delay: 1.3s;
}
.fv .fv_img.is-loaded picture:nth-child(15) {
  transition-delay: 1.4s;
}

main {
  position: relative;
  z-index: 2;
}

.img_1 {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  width: 88vw;
}
@media screen and (min-width: 769px) {
  .img_1 {
    width: 41.6666666667vw;
    margin: 0;
  }
}

@media screen and (min-width: 769px) {
  .img_2 {
    width: 55.5555555556vw;
    margin: 20.8333333333vw auto 0;
  }
}

.blend-layer {
  position: relative;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom, #A08787, #98957C, #A0AEC4, #A08787);
  mix-blend-mode: exclusion;
  pointer-events: none;
  height: 4026vw;
  opacity: 0.82;
}
@media screen and (min-width: 769px) {
  .blend-layer {
    height: 1504vw;
  }
}

.container {
  position: relative;
  z-index: 2;
  margin-top: -4026vw;
  background: transparent;
  padding-top: 33.3333333333vw;
  overflow: hidden;
}
@media screen and (min-width: 769px) {
  .container {
    padding-top: 17.3611111111vw;
    margin-top: -1504vw;
  }
}

/* クレジット表示機能
-------------------------------------------------- */
.credit-item {
  position: relative; /* 子要素を絶対配置する基準 */
  overflow: hidden; /* ボタンがはみ出さないように */
}

.credit-button {
  position: absolute;
  bottom: 15px;
  right: 15px;
  width: 24px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 2;
}
@media screen and (min-width: 769px) {
  .credit-button {
    bottom: 1.7361111111vw;
    right: 1.7361111111vw;
    width: 1.3888888889vw;
    height: 1.3888888889vw;
  }
}
.credit-button {
  /* プラスマークを擬似要素で作成 */
}
.credit-button::before, .credit-button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: #fff;
  transition: transform 0.3s ease;
}
.credit-button {
  /* 縦棒 */
}
.credit-button::before {
  width: 1px;
  height: 15px;
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 769px) {
  .credit-button::before {
    width: 1.5px;
    height: 1.3888888889vw;
  }
}
.credit-button {
  /* 横棒 */
}
.credit-button::after {
  width: 15px;
  height: 1px;
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 769px) {
  .credit-button::after {
    width: 1.3888888889vw;
    height: 1.5px;
  }
}

.b_button::before, .b_button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: #000;
  transition: transform 0.3s ease;
}

.credit-overlay p {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 80%; /* テキストが長くなった際の改行を調整 */
  margin: 0 auto 1%;
  text-align: left;
}

.buy-button {
  border: 1px solid;
  color: #fff;
  padding: 0px 8px;
  text-decoration: none;
  margin-left: 15px;
  flex-shrink: 0;
  font-size: 2.2vw;
}
@media screen and (min-width: 769px) {
  .buy-button {
    font-size: 0.8vw;
  }
}

/* URLがない場合のステータステキストのスタイル */
.status-text {
  background: #fff;
  color: #5b5b5b;
  padding: 0 2%;
  text-decoration: none;
  margin-left: 15px;
  flex-shrink: 0;
  font-size: 2.2vw;
  pointer-events: none; /* クリック不可にする */
  white-space: nowrap; /* テキストが改行されないようにする */
  font-size: 2.2vw;
}
@media screen and (min-width: 769px) {
  .status-text {
    font-size: 0.8vw;
  }
}

.credit-overlay {
  position: absolute;
  inset: 0; /* top, right, bottom, left をすべて 0 にするショートハンド */
  background-color: rgba(0, 0, 0, 0.6);
  color: #fff;
  opacity: 0.55;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-direction: column;
  text-align: center;
  padding-bottom: 22vw;
  z-index: 1;
  line-height: 1.8;
  /* 初期状態は非表示 */
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
@media screen and (min-width: 769px) {
  .credit-overlay {
    padding-bottom: 9vw;
  }
}

/* アクティブ時のスタイル */
.credit-item.is-active .credit-overlay {
  opacity: 1;
  visibility: visible;
}
.credit-item.is-active.swiper .swiper-wrapper {
  pointer-events: none;
}
.credit-item.is-active .credit-button::before {
  transform: translate(-50%, -50%) rotate(45deg);
  background-color: #fff;
}
.credit-item.is-active .credit-button::after {
  transform: translate(-50%, -50%) rotate(45deg);
  background-color: #fff;
}

.video {
  display: block;
}
@media screen and (max-width: 768px) {
  .video {
    width: 80vw;
  }
}
.video--filter {
  filter: drop-shadow(0px 0px #000);
}

.video01 {
  margin: 13.3333333333vw auto 13.3333333333vw 0;
}
@media screen and (min-width: 769px) {
  .video01 {
    margin: 0;
    width: 27.7777777778vw;
  }
}

.video02 {
  margin: -4vw auto 13.3333333333vw 0;
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 769px) {
  .video02 {
    margin: 1.3194444444vw auto 0 25.6944444444vw;
    width: 38.8888888889vw;
  }
}

.mt_250 {
  margin-top: 33.3333333333vw;
}
@media screen and (min-width: 769px) {
  .mt_250 {
    margin-top: 20.8333333333vw;
  }
}

.mt_200 {
  margin-top: 26.6666666667vw;
}
@media screen and (min-width: 769px) {
  .mt_200 {
    margin-top: 20.8333333333vw;
  }
}

.w_600 {
  width: 80vw;
}
@media screen and (min-width: 769px) {
  .w_600 {
    width: 41.6666666667vw;
  }
}

.w_660 {
  width: 88vw;
}
@media screen and (min-width: 769px) {
  .w_660 {
    width: 42.7777777778vw;
  }
}

.w_500 {
  width: 66.6666666667vw;
}

.mt_20 {
  margin-top: 2.6666666667vw;
}
@media screen and (min-width: 769px) {
  .mt_20 {
    margin-top: 10.4166666667vw;
  }
}

.mt_300 {
  margin-top: 40vw;
}
@media screen and (min-width: 769px) {
  .mt_300 {
    margin-top: 20.8333333333vw;
  }
}

.mt_100 {
  margin-top: 13.3333333333vw;
}

.m_auto {
  margin-left: auto;
  margin-right: auto;
}

.ml_auto {
  margin-left: auto;
}

.ml_50 {
  margin-left: 6.6666666667vw;
}

.ml_20 {
  margin-left: 2.6666666667vw;
}

.ml_200 {
  margin-left: 26.6666666667vw;
}

.ml_210 {
  margin-left: 28vw;
}

.img_13 {
  width: 88vw;
  margin-left: 3.3333333333vw;
}

.img_24 {
  width: 66.6666666667vw;
  margin: 44vw auto 18.6666666667vw 6.6666666667vw;
}

.sta_cre {
  font-family: "nimbus-sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #fff;
  text-align: center;
  font-size: 2.9333333333vw;
  margin: 66.6666666667vw auto 45.3333333333vw;
}
@media screen and (min-width: 769px) {
  .sta_cre {
    font-size: 0.9027777778vw;
    margin: 32.9166666667vw auto 14.7916666667vw;
  }
}

.sns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  margin-bottom: 3.3333333333vw;
}
@media screen and (min-width: 769px) {
  .sns {
    margin-bottom: 2.8472222222vw;
  }
}
.sns li {
  width: 6.6666666667vw;
}
@media screen and (min-width: 769px) {
  .sns li {
    width: 2.7777777778vw;
  }
}

.f_logo {
  display: block;
  width: 34vw;
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  .f_logo {
    width: 14.5833333333vw;
  }
}

.copy {
  font-size: 2.1333333333vw;
  text-align: center;
  font-family: "nimbus-sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  margin: 6.6666666667vw auto 0;
  padding-bottom: 50vw;
  color: #fff;
}
@media screen and (min-width: 769px) {
  .copy {
    font-size: 0.6944444444vw;
    padding-bottom: 5.6944444444vw;
  }
}

@media screen and (min-width: 769px) {
  .pc_flex {
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    justify-content: center;
    gap: 10.4166666667vw;
  }
  .pc_flex .w_600 {
    width: 27.7777777778vw;
  }
  .pc_flex .img_26 {
    width: 41.6666666667vw;
  }
  .pc_flex .mt_100, .pc_flex .mt_300 {
    margin-top: 0;
  }
  .pc_flex .m_auto {
    margin-left: 0;
    margin-right: 0;
  }
  .pc_mt_300 {
    margin-top: 20.8333333333vw;
  }
  .pc_flex2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10.4166666667vw;
    margin-top: 20.8333333333vw;
  }
  .pc_flex2 .m_auto {
    margin-left: 0;
    margin-right: 0;
  }
  .pc_flex2 .mt_200 {
    margin-top: 0;
  }
  .pc_flex2 .mt_20 {
    margin-top: 0;
  }
  .pc_flex2 .w_600:nth-child(1) {
    width: 41.6666666667vw;
  }
  .pc_flex2 .w_600:nth-child(2) {
    width: 27.7777777778vw;
  }
  .pc_flex3 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 20.8333333333vw;
  }
  .pc_flex3 .mt_200, .pc_flex3 .mt_20 {
    margin-top: 0;
  }
  .pc_flex3 .ml_50, .pc_flex3 .ml_200, .pc_flex3 .ml_210, .pc_flex3 .ml_20 {
    margin-left: 0;
  }
  .pc_flex3 .w_500 {
    width: 27.7777777778vw;
  }
  .pc_flex3 .img_24 {
    width: 27.7777777778vw;
    margin: 0;
  }
  .pc_flex3 .m_auto {
    margin-left: 0;
    margin-right: 0;
  }
  .mt_400 {
    margin-top: 27.7777777778vw;
  }
  .w_700 {
    width: 48.6111111111vw;
  }
  .pc_flex4 {
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    justify-content: center;
    gap: 10.4166666667vw;
    margin-top: 20.8333333333vw;
  }
  .pc_flex4 .mt_200, .pc_flex4 .mt_20 {
    margin-top: 0;
  }
  .pc_flex4 .ml_50, .pc_flex4 .ml_200, .pc_flex4 .ml_auto {
    margin-left: 0;
  }
  .pc_flex4 .w_600:nth-child(2) {
    width: 27.7777777778vw;
  }
  .pc_flex4 .w_600:nth-child(1) {
    width: 41.6666666667vw;
  }
  .pc_flex5 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10.4166666667vw;
    margin-top: 20.8333333333vw;
  }
  .pc_flex5 .m_auto, .pc_flex5 .ml_auto {
    margin-left: 0;
    margin-right: 0;
  }
  .pc_flex5 .mt_200 {
    margin-top: 0;
  }
  .pc_flex5 .mt_20 {
    margin-top: 0;
  }
  .pc_flex5 .img_13 {
    width: 41.6666666667vw;
  }
  .pc_flex5 .swiper {
    width: 27.7777777778vw;
  }
  .pc_flex7 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10.4166666667vw;
    margin-top: 13.8888888889vw;
  }
  .pc_flex7 .m_auto, .pc_flex7 .ml_auto {
    margin-left: 0;
    margin-right: 0;
  }
  .pc_flex7 .mt_200 {
    margin-top: 0;
  }
  .pc_flex7 .mt_20 {
    margin-top: 0;
  }
  .pc_flex7 .img_13 {
    width: 41.6666666667vw;
  }
  .pc_flex7 .video02 {
    width: 27.7777777778vw;
    margin: 0;
  }
  .pc_flex6 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10.4166666667vw;
    margin-top: 20.8333333333vw;
  }
  .pc_flex6 .mt_200, .pc_flex6 .mt_20, .pc_flex6 .mt_300 {
    margin-top: 0;
  }
  .pc_flex6 .ml_50, .pc_flex6 .ml_200, .pc_flex6 .ml_auto {
    margin-left: 0;
  }
  .pc_flex6 .w_500 {
    width: 27.7777777778vw;
  }
  .pc_flex6 .w_600 {
    width: 41.6666666667vw;
  }
  .img_21 {
    margin-left: 34.416667vw;
    width: 38.8888888889vw;
  }
}/*# sourceMappingURL=style.css.map */