/* =========================
   Section Tone
========================= */
.section-tone--dark{
  background: #050505;
  color: #ffffff;
}

.section-tone--light{
  background: #ffffff;
  color: #111111;
}

.section-tone--light .eyebrow,
.section-tone--light .meta{
  color: rgba(17,17,17,.62);
}

.section-tone--light .section-head h2,
.section-tone--light .story-link{
  color: #111111;
}

/* =========================
   Top Hero Video
========================= */
.hero--video{
  position: relative;
  min-height: 100svh;
  height: 100svh;
  overflow: hidden;
  background: #000;
}

.hero-video{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay{
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to top, rgba(0,0,0,.52), rgba(0,0,0,.10)),
    linear-gradient(to right, rgba(0,0,0,.38), rgba(0,0,0,.08));
}

.hero__content{
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
}

.hero__inner{
  width: min(var(--container-max), calc(100% - var(--container-side)));
  margin: 0 auto;
  padding: 120px 0 72px;
}

.hero__inner--left{
  margin: 0 auto;
}

.hero__inner h1{
  font-size: var(--title-lg);
  line-height: 1.02;
  margin: 0 0 20px;
  max-width: 8ch;
}

.hero__inner .lead{
  max-width: 640px;
}

.hero__actions{
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.hero__inner .eyebrow,
.hero__inner h1,
.hero__inner .lead{
  text-shadow: 0 2px 18px rgba(0,0,0,.36);
}

/* =========================
   Story Grid
========================= */
.section--story-slider{
  color: #111;
  overflow: visible;
  padding-top: 90px;
  padding-bottom: 90px;
}

.story-grid-container{
  position: relative;
  width: min(1300px, calc(100% - 80px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 140px minmax(0, 2fr) minmax(260px, 1.2fr);
  grid-template-rows: 240px 180px 320px;
  gap: 25px;
  align-items: stretch;
}

/* 左上：Story */
.item-story{
  grid-column: 1;
  grid-row: 1 / 4;
  position: relative;
  min-height: 100%;
}

.story-side__titleWrap{
  position: absolute;
  left: 0;
  top: -10px;
  bottom: auto;
  width: auto;
  height: auto;
  z-index: 30;
  pointer-events: none;
  transform: none;
}

.story-side__titleWrap.is-fixed{
  position: fixed;
  left: max(32px, calc((100vw - min(1300px, calc(100% - 80px))) / 2));
  top: 120px;
  bottom: auto;
  transform: none;
}

.story-side__titleWrap.is-end{
  position: absolute;
  left: 0;
  top: auto;
  bottom: 0;
  transform: none;
}

.story-side__title{
  margin: 0;
  font-size: clamp(4.8rem, 8vw, 7rem);
  line-height: .86;
  font-weight: 400;
  letter-spacing: -.04em;
  writing-mode: vertical-rl;
}

/* 共通カード */
.grid-box,
.story-card{
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #ffffff;
  border-radius: 0;
  box-shadow: 0 18px 40px rgba(0,0,0,.08);
}

.story-card__bg,
.story-card__video{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.story-card__bg{
  z-index: 1;
  opacity: 1;
  transition: opacity .35s ease, transform .45s ease;
}

.story-card__video{
  object-fit: cover;
  z-index: 2;
  opacity: 0;
  transition: opacity .35s ease, transform .45s ease;
  pointer-events: none;
}

/* 背景色 */
.story-card--01 .story-card__bg{ background: #ffffff; }
.story-card--02 .story-card__bg{ background: #ffffff; }
.story-card--03 .story-card__bg{ background: #ffffff; }
.story-card--04 .story-card__bg{ background: #ffffff; }

.story-card{
  transition: transform .45s ease, box-shadow .35s ease;
}

.story-card:not(.is-active):not(.is-played){
  transform: scale(.985);
}

.story-card.is-active{
  z-index: 15;
  transform: scale(1);
  box-shadow: 0 28px 60px rgba(0,0,0,.14);
}

.story-card.is-played{
  transform: scale(1);
}

.story-card.is-active .story-card__video,
.story-card.is-played .story-card__video{
  opacity: 1;
}

.story-card.is-active .story-card__bg,
.story-card.is-played .story-card__bg{
  opacity: 0;
}

/* 配置 */
.item-top-center{
  grid-column: 2;
  grid-row: 1;
}

.item-main-center{
  grid-column: 2;
  grid-row: 2 / 4;
}

.item-right-tall{
  grid-column: 3;
  grid-row: 1 / 3;
}

.item-right-bottom{
  grid-column: 3;
  grid-row: 3;
}

/* PRIMITIVE / MODERN */
.story-side__sub{
  position: absolute;
  left: -32px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  font-size: 10px;
  letter-spacing: 0.24em;
  color: #999;
  white-space: nowrap;
  z-index: 5;
}

/* 左下：End */
.item-end{
  grid-column: 1;
  grid-row: 3;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}

.end-text{
  display: block;
  font-size: clamp(3.8rem, 7vw, 5.8rem);
  line-height: .9;
  font-weight: 400;
  letter-spacing: -.03em;
}

/* 下のリンク */
.story-main__foot{
  width: min(1300px, calc(100% - 80px));
  margin: 28px auto 0;
}

.story-link{
  display: inline-flex;
  align-items: center;
  gap: 22px;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1;
  color: #111;
}

.story-link__arrow{
  font-size: 1.1em;
  transform: translateX(0);
  transition: transform .25s ease;
}

.story-link:hover .story-link__arrow{
  transform: translateX(10px);
}

/* =========================
   LookBook Select
========================= */
.section--lookbook-select{
  overflow: hidden;
}

.lookbook-carousel{
  position: relative;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) 64px;
  gap: 18px;
  align-items: center;
}

.lookbook-carousel__viewport{
  overflow: hidden;
}

.lookbook-carousel__track{
  display: flex;
  gap: 16px;
  transition: transform .55s ease;
  will-change: transform;
}

.lookbook-card{
  display: block;
  position: relative;
  overflow: hidden;
  background: #111;
  border: 1px solid rgba(255,255,255,.08);
  transition: opacity .25s ease, border-color .25s ease;
}

.lookbook-card--carousel{
  flex: 0 0 calc((100% - 48px) / 4);
  min-width: 0;
}

.lookbook-card--carousel .lookbook-card__media{
  aspect-ratio: 1 / 1.18;
  overflow: hidden;
}

.lookbook-card--carousel .lookbook-card__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lookbook-card__body{
  position: absolute;
  inset: auto 0 0 0;
  padding: 20px 18px 22px;
  background: linear-gradient(to top, rgba(0,0,0,.78), rgba(0,0,0,0));
}

.lookbook-card__body h3{
  margin: 6px 0 0;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: .04em;
}

.lookbook-card:hover .lookbook-card__media img{
  transform: scale(1.05);
}

.lookbook-card:hover{
  border-color: rgba(255,255,255,.18);
}

.lookbook-carousel__nav{
  width: 54px;
  height: 54px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.03);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .25s ease, border-color .25s ease, transform .25s ease;
}

.lookbook-carousel__nav span{
  font-size: 2rem;
  line-height: 1;
  transform: translateY(-1px);
}

.lookbook-carousel__nav:hover{
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.28);
  transform: translateY(-2px);
}

/* =========================
   Section heads
========================= */
.top-block-head{
  width: min(var(--container-max), calc(100% - var(--container-side)));
  margin: 0 auto;
  padding: 8px 0 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.top-block-head__title{
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1;
  font-weight: 500;
  letter-spacing: .02em;
}

.top-block-head__more{
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: .92rem;
  letter-spacing: .08em;
}

.top-block-head__circle{
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

/* =========================
   News block
========================= */
.section--news-top{
  background: #ffffff;
  color: #111;
}

.section--news-top .top-block-head__title{
  color: #111;
}

.section--news-top .top-block-head__more{
  color: rgba(17,17,17,.62);
}

.section--news-top .top-block-head__circle{
  border: 1px solid rgba(17,17,17,.18);
  color: #111;
}

.topics-list{
  width: min(1080px, calc(100% - var(--container-side)));
  margin: 0 auto;
  border-top: 1px solid rgba(17,17,17,.22);
}

.topics-list__item{
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 68px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(17,17,17,.12);
  color: #111;
}

.topics-list__date{
  font-size: .88rem;
  color: rgba(17,17,17,.68);
  white-space: nowrap;
}

.topics-list__text{
  font-size: .96rem;
  line-height: 1.5;
  color: #111;
}

/* =========================
   Staff blog block
========================= */
.section--staff-blog{
  background: #ffffff;
  color: #111;
  border-top: 1px solid rgba(17,17,17,.08);
}

.section--staff-blog .top-block-head__title{
  color: #111;
}

.section--staff-blog .top-block-head__more{
  color: rgba(17,17,17,.7);
}

.section--staff-blog .top-block-head__circle{
  border: 1px solid rgba(17,17,17,.18);
  color: #111;
}

.staff-blog-grid{
  width: min(var(--container-max), calc(100% - var(--container-side)));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 30px;
  padding-top: 4px;
}

.staff-blog-card{
  display: block;
  color: #111;
}

.staff-blog-card__image{
  aspect-ratio: 1 / .7;
  overflow: hidden;
  background: #f1f1f1;
}

.staff-blog-card__image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}

.staff-blog-card:hover .staff-blog-card__image img{
  transform: scale(1.03);
}

.staff-blog-card__title{
  margin: 16px 0 0;
  font-size: 1.02rem;
  line-height: 1.75;
  color: #111;
}

/* =========================
   Brand message block
========================= */
.section--brand-message{
  background: #ffffff;
  color: #111;
  border-top: 1px solid rgba(17,17,17,.08);
}

.brand-message{
  width: min(960px, calc(100% - var(--container-side)));
  margin: 0 auto;
  padding: 10px 0 6px;
}

.brand-message__eyebrow{
  margin: 0 0 14px;
  color: rgba(17,17,17,.58);
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.brand-message__title{
  margin: 0;
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  line-height: .96;
  font-weight: 500;
  letter-spacing: -.04em;
  color: #111;
}

.brand-message__text{
  max-width: 720px;
  margin: 22px 0 0;
  color: rgba(17,17,17,.7);
  font-size: 1rem;
  line-height: 2;
}

.brand-message__link{
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  color: #111;
  font-size: .95rem;
  letter-spacing: .06em;
}

.brand-message__arrow{
  font-size: 1.1rem;
  transition: transform .25s ease;
}

.brand-message__link:hover .brand-message__arrow{
  transform: translateX(6px);
}

/* =========================
   Tablet
========================= */
@media (max-width: 1024px){
  .section--story-slider{
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .story-grid-container{
    width: min(100%, calc(100% - 40px));
    grid-template-columns: 90px minmax(0, 1.6fr) minmax(0, 1fr);
    grid-template-rows: 180px 150px 260px;
    gap: 18px;
  }

  .story-side__title{
    font-size: clamp(3.5rem, 8vw, 5.2rem);
  }

  .story-side__sub{
    left: -22px;
    font-size: 9px;
  }

  .end-text{
    font-size: clamp(3rem, 6vw, 4.4rem);
  }

  .story-main__foot{
    width: min(100%, calc(100% - 40px));
  }

  .lookbook-carousel{
    grid-template-columns: 56px minmax(0, 1fr) 56px;
    gap: 12px;
  }

  .lookbook-card--carousel{
    flex: 0 0 calc((100% - 16px) / 2);
  }

  .staff-blog-grid{
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .topics-list__item{
    grid-template-columns: 140px 1fr;
    gap: 18px;
  }
}

/* =========================
   Mobile
========================= */
@media (max-width: 767px){
  .hero--video{
    min-height: 100svh;
    height: 100svh;
  }

  .hero__inner{
    padding: 98px 0 42px;
  }

  .hero__inner h1{
    max-width: none;
    font-size: clamp(2.2rem, 10vw, 3.4rem);
  }

  .hero__actions{
    flex-direction: column;
    align-items: stretch;
  }

  .hero__actions .btn{
    width: 100%;
  }

  .section--story-slider{
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .story-grid-container{
    width: min(100%, calc(100% - 24px));
    grid-template-columns: 68px 1fr 0.9fr;
    grid-template-rows: 120px 120px 180px;
    gap: 12px;
  }

  .story-side__titleWrap{
    left: 10px;
  }

  .story-side__title{
    font-size: clamp(2.5rem, 10vw, 4rem);
  }

  .story-side__sub{
    left: -20px;
    font-size: 8px;
    letter-spacing: 0.16em;
  }

  .end-text{
    font-size: clamp(2.3rem, 7vw, 3.3rem);
  }

  .story-main__foot{
    width: min(100%, calc(100% - 24px));
    margin-top: 20px;
  }

  .story-link{
    font-size: 1.3rem;
    gap: 14px;
  }

  .lookbook-carousel{
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .lookbook-carousel__nav{
    display: none;
  }

  .lookbook-carousel__viewport{
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    padding-bottom: 4px;
  }

  .lookbook-carousel__viewport::-webkit-scrollbar{
    display: none;
  }

  .lookbook-card--carousel{
    flex: 0 0 82%;
  }

  .top-block-head{
    padding: 0 0 26px;
    align-items: end;
  }

  .top-block-head__title{
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .top-block-head__more{
    font-size: .8rem;
    gap: 10px;
  }

  .top-block-head__circle{
    width: 32px;
    height: 32px;
  }

  .topics-list__item{
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 14px 0;
    min-height: auto;
  }

  .topics-list__date{
    font-size: .82rem;
  }

  .topics-list__text{
    font-size: .92rem;
    line-height: 1.5;
  }

  .staff-blog-grid{
    gap: 18px;
  }

  .staff-blog-card__title{
    font-size: .96rem;
    line-height: 1.7;
  }

  .brand-message__title{
    font-size: clamp(2.1rem, 11vw, 3.4rem);
  }

  .brand-message__text{
    font-size: .94rem;
    line-height: 1.9;
  }
}

.grid-box,
.story-card{
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #ffffff;
  border-radius: 0;
  box-shadow: none;
}