
/* ============================================
   UTILITY CLASSES
   ============================================ */
   
/* PC */
@media (min-width: 769px) {
  .spOnly {
    display: none;
  }

  .pcOnly {
    display: block;
  }
}

/* SP */
@media (max-width: 768px) {
  .spOnly {
    display: block;
  }

  .pcOnly {
    display: none;
  }
}

main * {
    color: inherit;
    font-size:  inherit;
    box-sizing: border-box;
    letter-spacing:  inherit;
    line-height:  inherit;
    border-radius:  inherit;
}
main{
  background-color: #000000;
  margin-top: 86px;
}
main.g-wrap{
  margin-top: 00;
}

@media (max-width: 768px) {
  main {
    margin-top: 74px;
  }

}
/* ============================================
   SECTION：HERO
   ============================================ */
.section-hero {
  width: 100%;
  position: relative; 
  background-color: #fff;
  /* padding-top: 70px; */
}
@media (max-width: 768px) {
  /* .section-hero {
    padding-top: 55px;
  } */
}
.section-hero__inner {
  width: 100%;
  position: relative;
}

/* スライド共通スタイル */
.section-hero__slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.section-hero__slide.is-active {
  opacity: 1;
}

/* 1枚目：黒背景 + 日本語テキスト */
.section-hero__slide--01 {
  z-index: 3;
}

.section-hero__slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
}

.section-hero__slide-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  text-align: center;
  width: 100%;
}

.section-hero__slide-text {
  color: #FFFFFF;
  font-family: 'Zen Old Mincho', serif;
font-weight: 500;
font-size: 14px;
line-height: 1.93;
text-align: center;
letter-spacing: 1px;
}

/* 2枚目：MV.jpgの画像 */
.section-hero__slide--02 {
  z-index: 2;
}

/* 3枚目：MV.jpgの画像 + 英語テキスト */
.section-hero__slide--03 {
  z-index: 3; /* 2枚目の上に表示 */
  pointer-events: none; /* クリックイベントを下の層に通す */
}

/* PC版：3枚目のスライドは常に表示（画像は非表示、テキストのみ） */
@media (min-width: 769px) {
  .section-hero__slide--03 {
    opacity: 1;
  }
}

/* 3枚目の画像はPC版では非表示（2枚目と同じ画像なので）、SP版では表示 */
@media (min-width: 769px) {
  .section-hero__slide--03 .section-hero__image {
    display: none;
  }
}

/* 2枚目と3枚目のテキストは初期状態で非表示 */
.section-hero__slide--02 .section-hero__slide-content,
.section-hero__slide--03 .section-hero__content {
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  pointer-events: auto; /* テキスト部分はクリック可能 */
}

/* 2枚目と3枚目のテキストをフェードイン */
.section-hero__slide--02.is-text-active .section-hero__slide-content,
.section-hero__slide--03.is-text-active .section-hero__content {
  opacity: 1;
}

/* PC版：1枚目のテキストは背景フェード後に表示 */
@media (min-width: 769px) {
  .section-hero__slide--01 .section-hero__slide-content {
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
  }

  .section-hero__slide--01.is-text-active .section-hero__slide-content {
    opacity: 1;
  }
}

.section-hero__image {
  width: 100%;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.section-hero__img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.section-hero__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  text-align: center;
  width: 100%;
}

.section-hero__title {
  color: #FFFFFF;
  font-family: 'Libre Caslon Display', serif;
  font-weight: 400;
  font-size: 28px;
  line-height: 1.71;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-align: center;
}


/* PC */
@media (min-width: 769px) {
  .section-hero__inner {
    height: calc(100dvh - 86px); 
    min-height: 785px;
  }
  .g-wrap .section-hero__inner {
    height: calc(100dvh - 70px); 
  }
  .section-hero__image {
    height: 100%;
  }

  .section-hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

}

/* SP */
@media (max-width: 768px) {
  .section-hero__inner {
    height: calc(100dvh - 74px); 
  }

  .g-wrap .section-hero__inner {
    height: calc(100dvh - 55px); 
  }
  .section-hero__image {
    height: 100%;
  }

  .section-hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .section-hero__title {
    line-height: 1.36;
  }
}

/* ============================================
   SECTION：MESSAGE
   ============================================ */
.section-message {
  width: 100%;
  background-color: #000000;
}

.section-message__inner {
  width: 100%;
  padding-top: 107px;
}

.section-message__title {
  color: #FFFFFF;
  font-family: 'Libre Caslon Display', serif;
  font-weight: 400;
  font-size: 150px;
  line-height: 0.93;
  letter-spacing: 0;
  margin: 0 auto ;
  text-transform: uppercase;
  text-align: center;
  margin: 0;
}

.section-message__text {
  color: #FFFFFF;
  font-family: 'Zen Old Mincho', serif;
  font-weight: 500;
  font-size: 13px;
  line-height: 1.85;
  letter-spacing: 0.077em;
  margin: 32px auto 0;
  text-align: center;

}

/* SP */
@media (max-width: 768px) {
  .section-message__inner {
padding-top: 50px;
padding-inline: 17px;
  }

  .section-message__title {
    font-size: 88.47px;
    line-height: 0.90;
    letter-spacing: 0;
    margin: 0 auto 24px;
  }

  .section-message__text {
    font-size: 13px;
    line-height: 1.85;
    letter-spacing: 0.077em;
    margin: 0 auto;
  }
}

/* ============================================
   SECTION： (共通スタイル)
   ============================================ */
.c-section__block{
  width: 100%;
  height: 785px;
  background-color: #000000;
  position: relative;
}

.c-block__bg {
  position: absolute;
  width: 100%;
}

.c-block__bg-img {
  object-fit: cover;
}

.c-block__inner {
  width: 100%;
  margin: 0 auto;
}

.c-block__content {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 0;
}

/* 左配置 */
.c-block__content {
  left: 0;
}

/* 右配置 */
 .c-block__content.c-reverse {
  right: 0;
}

.c-block__header {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.c-block__label {
  color: #FFFFFF;
  font-family: 'Libre Caslon Display', serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.c-block__number {
  color: #FFFFFF;
  font-family: 'Libre Caslon Display', serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.c-block__title {
  color: #FFFFFF;
  font-family: 'Libre Caslon Display', serif;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 90px;
  line-height: 0.73;
  letter-spacing: 0.03em;
}

.c-block__text {
  color: #FFFFFF;
  font-family: 'Zen Old Mincho', serif;
  font-weight: 500;
  font-size: 13px;
  line-height: 1.85;
  letter-spacing: 0.077em;
  margin: 0;
  padding-top: 20px;
  
}

.c-block__decorator {
  position: absolute;
}

.c-block__icon {
  width: 25.5px;
  height: 25.5px;
  display: block;
}

.c-block__image {
  position: absolute;
}

.c-block__img {
  width: 371px;
  height: 522px;
}

.c-block__image-text-name {
  font-family: 'Libre Caslon Display';
  font-weight: 400;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 1px;
  color: #FFFFFF;
}

.c-block__image-text-number {
  font-family: 'Libre Caslon Display';
  font-weight: 400;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 1px;
  color: #FFFFFF;
}

/* PC */
@media (min-width: 769px) {
  .c-block__bg-img {
    height: 785px;
  }
  .c-block__image-link {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .c-block__image-link:hover {
    filter: grayscale(100%);
  }

  .c-block__image-link:hover .c-block__image-text {
    visibility: visible;
  }

  .c-block__image-text {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: absolute;
    visibility: hidden;
  }

  .c-block__image-text-number {
    padding-left: 13px;
  }

  .c-block__content {
    padding: 72px 0 0 82px;
  }

  /* MODERN: 右配置 */
  .c-block__content.c-reverse {
    align-items: flex-end;
    padding-top: 80px;
    padding-right: 105px;
  }

  .c-block__decorator {
    top: 67px;
    left: 196px;
  }
}

/* SP */
@media (max-width: 768px) {
  .c-block__bg {
    position: static;
  }
  .c-block__bg-img{
    height: 675px;
  }
.c-block__content{
  align-items: center;
  height: auto;
}
.c-block__header{
  gap: 0;
}
  .c-block__title {
    font-size: 70px;
    line-height: 1;
    color: #FFFFFF;
    text-align: center;
  }
  .c-block__text{
    padding-top: 31px;
    text-align: center;
  }

  .c-block__image {
    position: static;
    padding-inline: 22px 23px;
  }
  .c-block__image +   .c-block__image {
    margin-top: 28px  ;
  }
  .c-block__img {
    width: 100%;
    height: auto;
  }
  .c-block__image-text{
    margin-top: 17px;
    padding-left: 18px;
  }
  .c-block__image-text-number{
    padding-left: 18px;
  }
}


/* ============================================
   SECTION：CLASSIC / 
   ============================================ */
   @media (min-width: 769px) {
.section-classic{
  margin-top: 122px;
}
   .c-block__image.classic01 {
    bottom: -15.79%;
 right: 534px;
  }
  
  .c-block__image.classic02 {
    top: -4.45%;
 right: 101px;
  }
   }
   @media (max-width: 768px) {
    .section-classic{
      height: auto;
      margin-top: 67px;
    }
    .content-classic{
      padding-top: 205px;
    }
    .classic-subtitle{
      margin-left: 15px;
    }
    .c-block__image.classic01{
margin-top: 58px;
    }
   }
  /* ============================================
   SECTION：MODERN
   ============================================ */

@media (min-width: 769px) {
  .section-modern{
    margin-top: 363px;
    .c-block__text{
max-width: 398.9px;
width: 100%;
    }
  }
  .c-block__image.moden01 {
    top: -4.33%;
    left: 90px;
 }
 .c-block__image.moden02 {
   bottom: -22.55%;
 left: 536px;
 }
  }
@media (max-width: 768px) {
  .section-modern {
    height: auto;
    margin-top: 92px;
  }
  .content-moden{
    padding-top: 184px;
  }
  .moden-subtitle{
    margin-left: 25px;
  }
  .c-block__image.moden01 {
    margin-top: 58px;
  }
}
  /* ============================================
   SECTION：NATURAL
   ============================================ */
   @media (min-width: 769px) {
.section-natural{
  margin-top: 367px;
}
.c-block__image.natural01 {
  bottom: -14.90%;
  right: 534px;
}
.c-block__image.natural02 {
  top: -6.75%;
right: 78px;
}
   }
   @media (max-width: 768px) {
    .section-natural{
      height: auto;
      margin-top: 92px;
    }
    .content-natural{
      padding-top: 188px;
    }
    .natural-subtitle{
      margin-left: 34px;
    }
    .c-block__image.natural01 {
      margin-top: 58px;
    }
   }
  /* ============================================
   SECTION：LOOKBOOK
   ============================================ */
.section-lookbook{
margin-top: 231px;
padding-bottom: 155px;
}
.section-lookbook__title{
font-family: 'Libre Caslon Display';
font-weight: 400;
font-size: 28px;
line-height: 1.71;
text-align: center;
letter-spacing: 0.03em;
text-transform: uppercase;
color: #FFFFFF;


}

/* Swiper基本スタイル */
.swiper {
  width: 100%;
  overflow: hidden;
}
.swiper-wrapper {
  transition-timing-function: linear;
}

.section-lookbook__style-no{
  font-family: 'Libre Caslon Display';
  font-weight: 400;
  font-size: 12px;
  line-height: 0;
  letter-spacing: 1px;
  color: #FFFFFF;  
  margin-top: 16px;
}

@media (min-width: 769px) {
  .section-lookbook__gallery{
    height: fit-content;
    margin-top: 26px;
  }
  .swiper-slide{
    width: 234px;
    height: 376px;
  }
  /* PC版ではナビゲーションボタンを非表示 */
  .swiper-button-prev,
  .swiper-button-next {
    display: none;
  }
}

@media (max-width: 768px) {
  .section-lookbook{
    margin-top: 92px;
    padding-bottom: 87px;
  }
  .section-lookbook__gallery{
    margin-top: 24px;
    height: fit-content;
  }
  .swiper-slide{
    padding-inline: 30px 29.38px;
  }
  .swiper-slide__item img{
    width: 100%;
  }
  /* SP版のナビゲーションボタン */
  .swiper-button-prev,
  .swiper-button-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    margin-top: 0;
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
  }
  .swiper-button-prev {
    left: 0;
  }
  .swiper-button-next {
    right: 0;
  }
  .swiper-button-next:after, .swiper-rtl .swiper-button-prev:after{
    content: 'unset';
  }
  .swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
    content: 'unset';
}
  .swiper-button-prev svg,
  .swiper-button-next svg {
    width: 42px;
    height: 42px;
    display: block;
  }
  .section-lookbook__style-no{
    line-height: 1;
    margin-top: 20px;
  }
}
  /* ============================================
   SECTION：フェードイン
   ============================================ */
.js-inview {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.js-inview.is-show {
  opacity: 1;
  transform: translateY(0);
}
.js-inview--late {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  transition-delay: 0.3s; /* 遅延発火用 */
}
.js-inview--late.is-show {
  opacity: 1;
  transform: translateY(0);
}
