/* =============================================
   iliy TOKYO - Top Page (Sample Design Applied)
   ============================================= */

:root {
  --c-brown: #776a5e;        /* ヘッダー / アクセント */
  --c-cream: #f4e2d0;        /* ベース背景 */
  --c-cream-light: #eae4df;  /* セクション補助 */
  --c-plan-bg: #e5e2df;      /* Plan 背景 */
  --c-pill: #f4f4f4;         /* Plan ピル */
  --c-mauve: #b5b0ac;        /* フッター */
  --c-text: #686868;
  --c-text-dark: #3a3631;
  --c-line: #d8d2cc;
  --font-jp: "Noto Sans SC", "Noto Sans JP", -apple-system, BlinkMacSystemFont, sans-serif;
  --header-h: 70px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body {
  font-family: var(--font-jp);
  font-weight: 300;
  color: var(--c-text);
  background: #fff;
  line-height: 1.9;
  letter-spacing: 0.05em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: transparent; color: inherit; }

/* =============================================
   Header (brown)
   ============================================= */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  background: var(--c-brown);
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 32px;
}
.header__left { display: flex; align-items: center; gap: 18px; }
.header__logo { display: inline-flex; align-items: center; height: 40px; }
.header__logo svg { height: 32px; width: auto; }
.header__tagline {
  color: #fff;
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.12em;
  opacity: 0.95;
}
.header__right { display: flex; align-items: center; gap: 18px; }
.header__line {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #fff;
  color: var(--c-brown);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.05em;
  transition: transform 0.3s;
}
.header__line:hover { transform: scale(1.05); }
.header__menu {
  width: 40px; height: 40px;
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  gap: 6px;
}
.header__menu span {
  display: block;
  width: 24px; height: 1px;
  background: #fff;
  transition: all 0.3s;
}
@media (max-width: 768px) {
  .header { padding: 0 18px; }
  .header__tagline { display: none; }
  .header__logo svg { height: 28px; }
}

/* =============================================
   Menu Overlay
   ============================================= */
.menu-backdrop {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 150;
  opacity: 0; visibility: hidden;
  transition: all 0.4s;
}
.menu-backdrop.is-open { opacity: 1; visibility: visible; }
.menu-overlay {
  position: fixed;
  top: 0; right: -100%;
  width: 380px; max-width: 85%;
  height: 100vh;
  background: var(--c-brown);
  z-index: 200;
  padding: 80px 40px 40px;
  transition: right 0.5s cubic-bezier(0.65, 0, 0.35, 1);
  overflow-y: auto;
}
.menu-overlay.is-open { right: 0; }
.menu-overlay__close {
  position: absolute;
  top: 24px; right: 32px;
  display: flex; align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.15em;
  font-weight: 300;
}
.menu-overlay__close-x {
  position: relative;
  width: 16px; height: 16px;
}
.menu-overlay__close-x::before,
.menu-overlay__close-x::after {
  content: '';
  position: absolute;
  top: 50%; left: 0;
  width: 100%; height: 1px;
  background: #fff;
}
.menu-overlay__close-x::before { transform: rotate(45deg); }
.menu-overlay__close-x::after { transform: rotate(-45deg); }
.menu-overlay__nav {
  display: flex;
  flex-direction: column;
  margin-top: 30px;
}
.menu-overlay__nav a {
  display: flex;
  align-items: center;
  padding: 18px 0;
  color: #fff;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.1em;
  border-bottom: 1px solid rgba(255,255,255,0.25);
  transition: opacity 0.3s;
}
.menu-overlay__nav a::before {
  content: '●';
  font-size: 6px;
  margin-right: 14px;
  opacity: 0.7;
}
.menu-overlay__nav a:hover { opacity: 0.7; }

/* =============================================
   Hero
   ============================================= */
.hero {
  margin-top: var(--header-h);
  width: 100%;
  background: #fff;
}
.hero__inner {
  width: 100%;
  height: calc(100vh - var(--header-h));
  position: relative;
}
.hero__stage {
  position: relative;
  width: 100%; height: 100%;
  overflow: hidden;
}
.hero__slides { position: absolute; inset: 0; }
.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.6s ease-in-out;
}
.hero__slide.is-active { opacity: 1; }

.hero__slide:nth-child(1) { background: url('images/hero-01-family.jpg') center/cover no-repeat, #d4cdc6; }
.hero__slide:nth-child(2) { background: url('images/hero-02-siblings.jpg') center/cover no-repeat, #d4cdc6; }
.hero__slide:nth-child(3) { background: url('images/hero-03-sisters-white.jpg') center/cover no-repeat, #d4cdc6; }
.hero__slide:nth-child(4) { background: url('images/hero-04-sisters-laughing.jpg') center/cover no-repeat, #d4cdc6; }
.hero__slide:nth-child(5) { background: url('images/hero-05-dad-baby.jpg') center/cover no-repeat, #d4cdc6; }
.hero__slide:nth-child(6) { background: url('images/hero-06-baby-bonnet.jpg') center/cover no-repeat, #d4cdc6; }
.hero__slide:nth-child(7) { background: url('images/hero-07-baby-crown.jpg') center/cover no-repeat, #d4cdc6; }
.hero__slide:nth-child(8) { background: url('images/hero-08-baby-knit.jpg') center/cover no-repeat, #d4cdc6; }

.hero__dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 5;
}
.hero__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  transition: all 0.3s;
}
.hero__dot.is-active {
  background: #fff;
  transform: scale(1.3);
}
@media (max-width: 768px) {
  .hero__inner { height: calc(100vh - var(--header-h)); }
}

/* =============================================
   Intro (About us)
   ============================================= */
.intro {
  padding: 100px 24px 60px;
  background: #fff;
  position: relative;
}
.intro__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
}
.intro__content { position: relative; z-index: 2; }
.intro__label {
  display: inline-block;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.25em;
  color: var(--c-text-dark);
  margin-bottom: 20px;
}
.intro__heading {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 44px;
  font-weight: 200;
  letter-spacing: 0.04em;
  color: var(--c-text-dark);
  margin-bottom: 32px;
  line-height: 1.5;
  white-space: nowrap;
}
.intro__lead {
  font-size: 13px;
  font-weight: 300;
  line-height: 2;
  margin-bottom: 28px;
  color: var(--c-text);
}
.intro__keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: var(--c-text);
  margin-bottom: 24px;
}
.intro__keywords .ai {
  font-style: italic;
  margin-left: -14px;
  font-weight: 400;
}
.intro__sub {
  font-size: 12px;
  font-weight: 300;
  line-height: 2;
  margin-bottom: 36px;
  color: var(--c-text);
}
.intro__btn {
  display: inline-block;
  padding: 12px 32px;
  background: var(--c-brown);
  color: #fff;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.2em;
  border-radius: 999px;
  transition: opacity 0.3s, transform 0.3s;
}
.intro__btn:hover { opacity: 0.85; transform: translateY(-2px); }

.intro__decoration {
  position: relative;
  display: flex;
  align-items: baseline;
  gap: 18px;
  font-size: 56px;
  font-weight: 300;
  color: var(--c-cream-light);
  letter-spacing: 0.05em;
  white-space: nowrap;
  z-index: 1;
}
.intro__decoration .plus {
  font-size: 36px;
  color: var(--c-mauve);
  opacity: 0.6;
}
@media (max-width: 768px) {
  .intro { padding: 70px 20px 40px; }
  .intro__inner { grid-template-columns: 1fr; gap: 40px; }
  .intro__heading {
    font-size: 24px;
    white-space: normal;
    letter-spacing: 0.05em;
  }
  .intro__decoration { font-size: 32px; gap: 10px; justify-content: center; }
  .intro__decoration .plus { font-size: 22px; }
}

/* fade-up */
.fade-up { opacity: 1; transform: translateY(0); transition: opacity 1.1s cubic-bezier(0.22, 1, 0.36, 1), transform 1.1s cubic-bezier(0.22, 1, 0.36, 1); }
.js-ready .fade-up { opacity: 0; transform: translateY(28px); }
.js-ready .fade-up.is-visible { opacity: 1; transform: translateY(0); }

/* fade-up delays for staggered reveal */
.js-ready .fade-up.delay-1 { transition-delay: 0.12s; }
.js-ready .fade-up.delay-2 { transition-delay: 0.24s; }
.js-ready .fade-up.delay-3 { transition-delay: 0.36s; }
.js-ready .fade-up.delay-4 { transition-delay: 0.48s; }
.js-ready .fade-up.delay-5 { transition-delay: 0.60s; }
.js-ready .fade-up.delay-6 { transition-delay: 0.72s; }

/* fade-in only (no movement) for backgrounds and large media */
.fade-in { opacity: 1; transition: opacity 1.4s cubic-bezier(0.22, 1, 0.36, 1); }
.js-ready .fade-in { opacity: 0; }
.js-ready .fade-in.is-visible { opacity: 1; }
.js-ready .fade-in.delay-1 { transition-delay: 0.15s; }
.js-ready .fade-in.delay-2 { transition-delay: 0.3s; }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.3s; }

/* =============================================
   Collage - 右寄せ + 縦オフセット
   ============================================= */
.collage {
  padding: 0 24px 100px;
  background: #fff;
}
.collage__inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
  gap: 24px;
}
.collage__img {
  background-size: cover;
  background-position: center;
  filter: grayscale(0.15);
}
.collage__img--1 {
  width: 38%;
  aspect-ratio: 3 / 4;
  background: url('images/hero-04-sisters-laughing.jpg') center/cover no-repeat, #d4cdc6;
  margin-top: 60px;
}
.collage__img--2 {
  width: 38%;
  aspect-ratio: 3 / 4;
  background: url('images/hero-06-baby-bonnet.jpg') center/cover no-repeat, #d4cdc6;
}
@media (max-width: 768px) {
  .collage { padding: 0 20px 60px; }
  .collage__inner { gap: 12px; }
  .collage__img--1, .collage__img--2 { width: 48%; }
}

/* =============================================
   Plan - 階段状ピル型
   ============================================= */
.plan {
  padding: 80px 0 100px;
  background: var(--c-plan-bg);
}
.plan__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.plan__heading {
  font-size: 28px;
  font-weight: 300;
  letter-spacing: 0.15em;
  color: var(--c-text-dark);
  margin-bottom: 60px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.plan__heading::after {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--c-text-dark);
}
.plan__layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: start;
}
.plan__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  /* 左側にネガティブマージンで画面端まで伸ばす */
  margin-left: -8%;
}
.plan__item-bar { display: block; }
/* 大阪iliy風の階段 */
/* 左端は揃え、右端で階段(Baby・Kidsが最長, Otonaが最短) */
.plan__item:nth-child(1) .plan__item-bar { padding-right: 0; }
.plan__item:nth-child(2) .plan__item-bar { padding-right: 12%; }
.plan__item:nth-child(3) .plan__item-bar { padding-right: 22%; }
.plan__item:nth-child(4) .plan__item-bar { padding-right: 12%; }

/* スライドインアニメーション(左から滑り込む) */
.plan__item {
  opacity: 0;
  transform: translateX(-80px);
  transition: opacity 1.0s cubic-bezier(0.22, 1, 0.36, 1),
              transform 1.0s cubic-bezier(0.22, 1, 0.36, 1);
}
.plan__item.is-visible {
  opacity: 1;
  transform: translateX(0);
}
/* 順番にディレイをつけて段階的にスライドイン */
.plan__item:nth-child(1).is-visible { transition-delay: 0s; }
.plan__item:nth-child(2).is-visible { transition-delay: 0.18s; }
.plan__item:nth-child(3).is-visible { transition-delay: 0.36s; }
.plan__item:nth-child(4).is-visible { transition-delay: 0.54s; }

.plan__item-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  padding: 18px 28px;
  background: var(--c-pill);
  border-radius: 999px;
  text-align: right;
  transition: all 0.3s;
}
.plan__item-toggle:hover {
  background: #fff;
  transform: translateX(4px);
}
.plan__item-toggle .label-en {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--c-text-dark);
}
.plan__item-toggle .label-jp { display: none; }
.plan__item-toggle .arrow {
  width: 12px; height: 12px;
  position: relative;
  flex-shrink: 0;
}
.plan__item-toggle .arrow::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 0; height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 7px solid #776a5e;
  transform: translate(-50%, -40%);
  transition: transform 0.3s;
}
.plan__item.is-open .plan__item-toggle .arrow::before {
  transform: translate(-50%, -40%) rotate(180deg);
}
.plan__item-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.plan__item.is-open .plan__item-body { max-height: 500px; }
.plan__item-body-inner {
  padding: 24px 28px 16px;
  font-size: 13px;
  font-weight: 300;
  line-height: 2;
  color: var(--c-text);
}
.desc-jp {
  color: var(--c-brown);
  font-weight: 400;
  margin-bottom: 8px;
  letter-spacing: 0.08em;
}
.plan__item-price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 16px;
  margin: 16px 0 8px;
}
.price-yen {
  font-size: 20px;
  font-weight: 400;
  color: var(--c-text-dark);
  letter-spacing: 0.08em;
}
.price-detail {
  font-size: 12px;
  color: var(--c-text);
}
.plan__item-note {
  font-size: 12px;
  color: var(--c-text);
  margin-top: 8px;
  line-height: 1.8;
}
.plan__visual {
  aspect-ratio: 3 / 4;
  background: url('images/hero-07-baby-crown.jpg') center/cover no-repeat, #d4cdc6;
  background-size: cover;
  background-position: center;
  filter: grayscale(0.4);
  position: sticky;
  top: 100px;
}
@media (max-width: 768px) {
  .plan { padding: 60px 0 80px; overflow: hidden; }
  .plan__container { padding: 0 16px 0 24px; } /* 右にも少し余白 */
  .plan__heading {
    font-size: 22px;
    margin-bottom: 40px;
    padding: 0;
  }
  /* レイアウトをスタックではなく、写真とバーを重ねる */
  .plan__layout {
    display: block;
    position: relative;
  }
  .plan__list {
    margin-left: 0;
    margin-right: 0;
    gap: 2px;
    position: relative;
    z-index: 2;
  }
  /* バーを細めに */
  .plan__item-toggle {
    background: #fff;
    padding: 16px 28px;
  }
  .plan__item-toggle:hover {
    background: #fff;
    transform: none;
  }
  .plan__item-toggle .label-en {
    font-size: 15px;
    letter-spacing: 0.1em;
  }
  /* 大阪iliy風: バーが画面左端から飛び出して伸びてくる
     コンテナの左パディング24pxを margin-left:-24px で打ち消し、
     さらに -16px 余分に画面外へ伸ばすことで「左端から外側まで伸びる」感を出す */
  .plan__item-bar {
    margin-left: -40px;
  }
  /* バー内の中身は元の位置に保つため、padding-leftで戻す */
  .plan__item-bar .plan__item-toggle {
    padding-left: 68px; /* 28(元) + 40(オフセット分) */
  }
  /* 右端で階段配置 (Baby・Kidsがやや控えめ、Otonaが最短、Maternity/753 中) */
  .plan__item:nth-child(1) .plan__item-bar { padding-right: 8%; }
  .plan__item:nth-child(2) .plan__item-bar { padding-right: 20%; }
  .plan__item:nth-child(3) .plan__item-bar { padding-right: 32%; }
  .plan__item:nth-child(4) .plan__item-bar { padding-right: 20%; }

  /* 写真は正円で右下から重ねる */
  .plan__visual {
    aspect-ratio: 1 / 1 !important;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    position: absolute;
    right: -20px;
    bottom: -10px;
    z-index: 1;
    margin: 0;
    top: auto; /* sticky設定の打ち消し */
    background-size: cover;
    background-position: center;
  }
}

/* =============================================
   Gallery
   ============================================= */
.gallery {
  padding: 100px 0;
  background: #fff;
}
.gallery__head {
  max-width: 1200px;
  margin: 0 auto 50px;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.gallery__heading {
  font-size: 28px;
  font-weight: 300;
  letter-spacing: 0.15em;
  color: var(--c-text-dark);
  display: flex;
  align-items: center;
  gap: 16px;
}
.gallery__heading::after {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--c-text-dark);
}
.gallery__btn {
  display: inline-block;
  padding: 12px 32px;
  background: var(--c-brown);
  color: #fff;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.2em;
  border-radius: 999px;
  transition: opacity 0.3s, transform 0.3s;
}
.gallery__btn:hover { opacity: 0.85; transform: translateY(-2px); }

.gallery__marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.gallery__track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: marquee 60s linear infinite;
  padding: 0 8px;
}
.gallery__item {
  width: 280px;
  height: 350px;
  flex-shrink: 0;
  background-size: cover;
  background-position: center;
  filter: grayscale(0.2);
}
.gallery__item:nth-child(8n+1) { background: url('images/hero-01-family.jpg') center/cover no-repeat, #d4cdc6; }
.gallery__item:nth-child(8n+2) { background: url('images/hero-04-sisters-laughing.jpg') center/cover no-repeat, #d4cdc6; }
.gallery__item:nth-child(8n+3) { background: url('images/hero-07-baby-crown.jpg') center/cover no-repeat, #d4cdc6; }
.gallery__item:nth-child(8n+4) { background: url('images/hero-02-siblings.jpg') center/cover no-repeat, #d4cdc6; }
.gallery__item:nth-child(8n+5) { background: url('images/hero-03-sisters-white.jpg') center/cover no-repeat, #d4cdc6; }
.gallery__item:nth-child(8n+6) { background: url('images/hero-08-baby-knit.jpg') center/cover no-repeat, #d4cdc6; }
.gallery__item:nth-child(8n+7) { background: url('images/hero-06-baby-bonnet.jpg') center/cover no-repeat, #d4cdc6; }
.gallery__item:nth-child(8n) { background: url('images/hero-05-dad-baby.jpg') center/cover no-repeat, #d4cdc6; }

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 8px)); }
}
@media (max-width: 768px) {
  .gallery { padding: 60px 0; }
  .gallery__head {
    flex-direction: column;
    gap: 20px;
    align-items: center;
    margin-bottom: 30px;
  }
  .gallery__heading { font-size: 22px; }
  .gallery__item { width: 200px; height: 250px; }
}

/* =============================================
   Instagram - サンプル: Galleryと同じ見出し / 6枚グリッド
   ============================================= */
.instagram {
  padding: 100px 0;
  background: #fff;
}
.instagram__container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.instagram__heading {
  font-size: 28px;
  font-weight: 300;
  letter-spacing: 0.15em;
  color: var(--c-text-dark);
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}
.instagram__heading::after {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--c-text-dark);
}

.instagram__profile {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 24px;
  transition: opacity 0.3s;
}
.instagram__profile:hover { opacity: 0.7; }

.instagram__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--c-cream-light);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--c-line);
}
.instagram__avatar span {
  font-size: 16px;
  font-weight: 300;
  color: var(--c-brown);
  letter-spacing: 0.05em;
}

.instagram__profile-text {
  flex: 1;
  min-width: 0;
}
.instagram__handle {
  font-size: 15px;
  font-weight: 500;
  color: var(--c-text-dark);
  letter-spacing: 0.02em;
  margin-bottom: 6px;
}
.instagram__bio {
  font-size: 12px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--c-text);
  letter-spacing: 0.02em;
}

.instagram__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 40px;
}

.instagram__item {
  position: relative;
  aspect-ratio: 1 / 1;
  background-size: cover;
  background-position: center;
  filter: grayscale(0.1);
  overflow: hidden;
  transition: opacity 0.3s, transform 0.3s;
}
.instagram__item:hover {
  opacity: 0.85;
  transform: scale(1.01);
}

/* プレースホルダー画像(グラデーション、画像差し替え時に置き換え) */
.instagram__item:nth-child(1) { background: url('images/hero-04-sisters-laughing.jpg') center/cover no-repeat, #d4cdc6; }
.instagram__item:nth-child(2) { background: url('images/hero-07-baby-crown.jpg') center/cover no-repeat, #d4cdc6; }
.instagram__item:nth-child(3) { background: url('images/hero-02-siblings.jpg') center/cover no-repeat, #d4cdc6; }
.instagram__item:nth-child(4) { background: url('images/hero-03-sisters-white.jpg') center/cover no-repeat, #d4cdc6; }
.instagram__item:nth-child(5) { background: url('images/hero-08-baby-knit.jpg') center/cover no-repeat, #d4cdc6; }
.instagram__item:nth-child(6) { background: url('images/hero-06-baby-bonnet.jpg') center/cover no-repeat, #d4cdc6; }

/* 投稿タイプアイコン(右上、複数投稿のカルーセルマーク) */
.instagram__icon {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 18px;
  height: 18px;
  background: rgba(255,255,255,0.95);
  border-radius: 3px;
  box-shadow: -3px -3px 0 -1px rgba(255,255,255,0.95);
}
/* リール(動画)用の再生アイコン */
.instagram__icon--reel {
  width: 22px;
  height: 22px;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}
.instagram__icon--reel::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-40%, -50%);
  border-style: solid;
  border-width: 7px 0 7px 12px;
  border-color: transparent transparent transparent #fff;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.3));
}

.instagram__more {
  text-align: center;
}
.instagram__more-btn {
  display: inline-block;
  padding: 12px 36px;
  background: var(--c-brown);
  color: #fff;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.2em;
  border-radius: 999px;
  transition: opacity 0.3s, transform 0.3s;
}
.instagram__more-btn:hover { opacity: 0.85; transform: translateY(-2px); }

@media (max-width: 768px) {
  .instagram { padding: 60px 0; }
  .instagram__heading { font-size: 22px; margin-bottom: 24px; }
  .instagram__grid { gap: 6px; }
  .instagram__handle { font-size: 13px; }
  .instagram__bio { font-size: 11px; }
}

/* =============================================
   Page Title (about / plan / etc 共通)
   ============================================= */
.page-title {
  margin-top: var(--header-h);
  padding: 100px 24px 60px;
  background: #fff;
  text-align: center;
}
.page-title__inner {
  max-width: 800px;
  margin: 0 auto;
}
.page-title__main {
  font-size: 44px;
  font-weight: 300;
  letter-spacing: 0.18em;
  color: var(--c-text-dark);
  margin-bottom: 16px;
}
.page-title__sub {
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.4em;
  color: var(--c-text);
}

@media (max-width: 768px) {
  .page-title { padding: 60px 20px 40px; }
  .page-title__main { font-size: 32px; }
}

/* =============================================
   About: Concept
   ============================================= */
.concept {
  padding: 80px 24px 100px;
  background: #fff;
}
.concept__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.concept__visual {
  position: relative;
  aspect-ratio: 4 / 5;
}
.concept__photo {
  position: absolute;
  background-size: cover;
  background-position: center;
  filter: grayscale(0.15);
}
.concept__photo--1 {
  top: 0; left: 0;
  width: 70%;
  aspect-ratio: 3 / 4;
  background: url('images/concept-family-mono.jpg') center/cover no-repeat, #d4cdc6;
}
.concept__photo--2 {
  bottom: 0; right: 0;
  width: 50%;
  aspect-ratio: 3 / 4;
  background: url('images/gallery-mom-kids.jpg') center/cover no-repeat, #d4cdc6;
}
.concept__content { position: relative; }
.concept__label {
  display: inline-block;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.3em;
  color: var(--c-brown);
  margin-bottom: 28px;
}
.concept__heading {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 32px;
  font-weight: 200;
  letter-spacing: 0.04em;
  color: var(--c-text-dark);
  margin-bottom: 36px;
  line-height: 1.6;
}
.concept__body p {
  font-size: 13px;
  font-weight: 300;
  line-height: 2.1;
  color: var(--c-text);
  margin-bottom: 20px;
}
.concept__body strong {
  font-weight: 500;
  color: var(--c-brown);
  letter-spacing: 0.08em;
}
.concept__tag {
  margin-top: 28px !important;
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.25em;
  color: var(--c-brown) !important;
}

@media (max-width: 768px) {
  .concept { padding: 40px 20px 60px; }
  .concept__inner { grid-template-columns: 1fr; gap: 50px; }
  .concept__heading { font-size: 24px; letter-spacing: 0.05em; }
}

/* =============================================
   About: Keywords (i + life + family)
   ============================================= */
.keywords {
  padding: 100px 24px;
  background: var(--c-cream-light);
  position: relative;
  overflow: hidden;
}
.keywords__inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}
.keywords__decoration {
  display: flex;
  align-items: baseline;
  gap: 24px;
  font-size: 80px;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.05em;
  white-space: nowrap;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}
.keywords__decoration .plus {
  font-size: 48px;
  color: var(--c-mauve);
  opacity: 0.4;
}
.keywords__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
  z-index: 2;
}
.keywords__item {
  background: #fff;
  padding: 48px 32px 40px;
  text-align: center;
}
.keywords__jp {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: var(--c-text-dark);
  margin-bottom: 4px;
}
.keywords__en {
  font-size: 36px;
  font-weight: 300;
  color: var(--c-brown);
  margin-bottom: 24px;
  letter-spacing: 0.05em;
}
.keywords__en em {
  font-style: italic;
  font-weight: 400;
}
.keywords__desc {
  font-size: 12px;
  font-weight: 300;
  line-height: 2;
  color: var(--c-text);
}
.keywords__desc em {
  font-style: italic;
  color: var(--c-brown);
  font-weight: 400;
}

@media (max-width: 768px) {
  .keywords { padding: 60px 20px; }
  .keywords__decoration { font-size: 36px; gap: 12px; margin-bottom: 36px; justify-content: center; }
  .keywords__decoration .plus { font-size: 22px; }
  .keywords__list { grid-template-columns: 1fr; gap: 16px; }
  .keywords__item { padding: 36px 24px 28px; }
  .keywords__en { font-size: 28px; }
}

/* =============================================
   About: Warm Time
   ============================================= */
.warm {
  padding: 100px 24px;
  background: #fff;
}
.warm__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.warm__content { padding-right: 20px; }
.warm__label {
  display: inline-block;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.3em;
  color: var(--c-brown);
  margin-bottom: 28px;
}
.warm__heading {
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--c-text-dark);
  line-height: 1.7;
  margin-bottom: 32px;
}
.warm__body {
  font-size: 13px;
  font-weight: 300;
  line-height: 2.1;
  color: var(--c-text);
  margin-bottom: 20px;
}
.warm__visual {
  aspect-ratio: 4 / 5;
}
.warm__photo {
  width: 100%;
  height: 100%;
  background-image: linear-gradient(135deg, #d8d0c7, #aba095);
  background-size: cover;
  background-position: center;
  filter: grayscale(0.15);
}

@media (max-width: 768px) {
  .warm { padding: 60px 20px; }
  .warm__inner { grid-template-columns: 1fr; gap: 40px; }
  .warm__content { padding-right: 0; }
  .warm__heading { font-size: 20px; }
}

/* =============================================
   About: Staff
   ============================================= */
.staff {
  padding: 100px 24px;
  background: var(--c-plan-bg);
}
.staff__container {
  max-width: 1100px;
  margin: 0 auto;
}
.staff__heading {
  font-size: 28px;
  font-weight: 300;
  letter-spacing: 0.15em;
  color: var(--c-text-dark);
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 60px;
}
.staff__heading::after {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--c-text-dark);
}
.staff__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.staff__item {
  background: #fff;
  overflow: hidden;
  transition: transform 0.3s;
}
.staff__item:hover { transform: translateY(-4px); }
.staff__photo {
  aspect-ratio: 1 / 1;
  background-size: cover;
  background-position: center;
  filter: grayscale(0.2);
}
.staff__photo--1 { background: url('images/staff-ayano.jpg') center/cover no-repeat, #d4cdc6; }
.staff__photo--2 { background: linear-gradient(135deg, #d4cdc6, #aba095); }
.staff__photo--3 { background: url('images/staff-nori.jpg') center/cover no-repeat, #d4cdc6; }
.staff__info { padding: 28px 24px 32px; }
.staff__role {
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.25em;
  color: var(--c-brown);
  margin-bottom: 8px;
}
.staff__name {
  font-size: 22px;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: var(--c-text-dark);
  margin-bottom: 16px;
}
.staff__bio {
  font-size: 12px;
  font-weight: 300;
  line-height: 2;
  color: var(--c-text);
}

@media (max-width: 768px) {
  .staff { padding: 60px 20px; }
  .staff__heading { font-size: 22px; margin-bottom: 36px; }
  .staff__grid { grid-template-columns: 1fr; gap: 24px; }
}

/* =============================================
   About: Studio
   ============================================= */
.studio {
  padding: 100px 24px;
  background: #fff;
}
.studio__inner {
  max-width: 1100px;
  margin: 0 auto;
}
.studio__heading {
  font-size: 28px;
  font-weight: 300;
  letter-spacing: 0.15em;
  color: var(--c-text-dark);
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 50px;
}
.studio__heading::after {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--c-text-dark);
}
.studio__visual {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  margin-bottom: 60px;
}
.studio__photo {
  background-size: cover;
  background-position: center;
  filter: grayscale(0.2);
}
.studio__photo--1 {
  grid-row: 1 / 3;
  aspect-ratio: 4 / 5;
  background-image: linear-gradient(135deg, #c5b8a8, #8a7e72);
}
.studio__photo--2 {
  background-image: linear-gradient(135deg, #d4cdc6, #aba095);
}
.studio__photo--3 {
  background-image: linear-gradient(135deg, #c8bfb5, #9e9387);
}
.studio__content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.studio__lead {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--c-text-dark);
  line-height: 1.8;
  margin-bottom: 24px;
}
.studio__body {
  font-size: 13px;
  font-weight: 300;
  line-height: 2.1;
  color: var(--c-text);
  margin-bottom: 40px;
}
.studio__info {
  text-align: left;
  max-width: 560px;
  margin: 0 auto 40px;
  border-top: 1px solid var(--c-line);
}
.studio__info-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 16px;
  padding: 16px 4px;
  border-bottom: 1px solid var(--c-line);
}
.studio__info-row dt {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: var(--c-brown);
}
.studio__info-row dd {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--c-text);
}
.studio__btn {
  display: inline-block;
  padding: 12px 36px;
  background: var(--c-brown);
  color: #fff;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.25em;
  border-radius: 999px;
  transition: opacity 0.3s, transform 0.3s;
}
.studio__btn:hover { opacity: 0.85; transform: translateY(-2px); }

@media (max-width: 768px) {
  .studio { padding: 60px 20px; }
  .studio__heading { font-size: 22px; }
  .studio__visual {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }
  .studio__photo--1 { grid-row: auto; aspect-ratio: 4 / 3; }
  .studio__photo--2, .studio__photo--3 { aspect-ratio: 4 / 3; }
  .studio__lead { font-size: 16px; }
  .studio__info-row { grid-template-columns: 80px 1fr; gap: 12px; }
}

/* =============================================
   Plan Page: Intro + Tabs + Detail + Options
   ============================================= */
.plan-intro {
  padding: 0 24px 60px;
  background: #fff;
  text-align: center;
}
.plan-intro__inner {
  max-width: 700px;
  margin: 0 auto;
}
.plan-intro__lead {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--c-text-dark);
  line-height: 2;
  margin-bottom: 20px;
}
.plan-intro__lead strong {
  font-weight: 500;
  color: var(--c-brown);
}
.plan-intro__body {
  font-size: 13px;
  font-weight: 300;
  line-height: 2;
  color: var(--c-text);
}

.plan-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 24px 80px;
  background: #fff;
  max-width: 900px;
  margin: 0 auto;
}
.plan-tabs__btn {
  display: inline-block;
  padding: 10px 24px;
  background: var(--c-pill);
  color: var(--c-text-dark);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.15em;
  border-radius: 999px;
  transition: all 0.3s;
}
.plan-tabs__btn:hover {
  background: var(--c-brown);
  color: #fff;
}

/* Plan Detail Section */
.plan-detail {
  padding: 80px 24px;
  background: #fff;
  scroll-margin-top: 80px;
}
.plan-detail:nth-child(odd) { background: var(--c-cream-light); }
.plan-detail__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.plan-detail--reverse .plan-detail__inner {
  direction: rtl;
}
.plan-detail--reverse .plan-detail__visual,
.plan-detail--reverse .plan-detail__content {
  direction: ltr;
}

.plan-detail__visual {
  aspect-ratio: 4 / 5;
}
.plan-detail__photo {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  filter: grayscale(0.2);
}
.plan-detail__photo--bk { background: url('images/plan-baby-bonnet.jpg') center/cover no-repeat, #d4cdc6; }
.plan-detail__photo--mt { background: url('images/hero-04-sisters-laughing.jpg') center/cover no-repeat, #d4cdc6; }
.plan-detail__photo--ot { background: url('images/hero-01-family.jpg') center/cover no-repeat, #d4cdc6; }
.plan-detail__photo--75 { background: url('images/gallery-753-13.jpg') center/cover no-repeat, #d4cdc6; }

.plan-detail__content { position: relative; }
.plan-detail__num {
  display: block;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.4em;
  color: var(--c-brown);
  margin-bottom: 12px;
}
.plan-detail__heading {
  font-size: 36px;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: var(--c-text-dark);
  margin-bottom: 8px;
}
.plan-detail__sub {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: var(--c-brown);
  margin-bottom: 28px;
}
.plan-detail__body {
  font-size: 13px;
  font-weight: 300;
  line-height: 2.1;
  color: var(--c-text);
  margin-bottom: 32px;
}

.plan-detail__spec {
  border-top: 1px solid var(--c-line);
  margin-bottom: 20px;
}
.plan-detail__row {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 16px;
  padding: 14px 4px;
  border-bottom: 1px solid var(--c-line);
}
.plan-detail__row dt {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: var(--c-brown);
}
.plan-detail__row dd {
  font-size: 13px;
  font-weight: 300;
  color: var(--c-text);
  letter-spacing: 0.05em;
}
.plan-detail__price {
  font-size: 22px;
  font-weight: 400;
  color: var(--c-text-dark);
  letter-spacing: 0.05em;
}
.plan-detail__tax {
  font-size: 11px;
  margin-left: 6px;
  color: var(--c-text);
}
.plan-detail__note {
  font-size: 11px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--c-text);
  margin-bottom: 32px;
}
.plan-detail__btn {
  display: inline-block;
  padding: 14px 48px;
  background: var(--c-brown);
  color: #fff;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.25em;
  border-radius: 999px;
  transition: opacity 0.3s, transform 0.3s;
}
.plan-detail__btn:hover { opacity: 0.85; transform: translateY(-2px); }

@media (max-width: 768px) {
  .plan-intro__lead { font-size: 14px; }
  .plan-tabs { padding-bottom: 50px; }
  .plan-tabs__btn { padding: 8px 18px; font-size: 11px; }
  .plan-detail { padding: 50px 20px; }
  .plan-detail__inner {
    grid-template-columns: 1fr;
    gap: 30px;
    direction: ltr !important;
  }
  .plan-detail--reverse .plan-detail__inner { direction: ltr; }
  .plan-detail__heading { font-size: 28px; }
}

/* Options */
.options {
  padding: 100px 24px;
  background: var(--c-plan-bg);
}
.options__inner {
  max-width: 1100px;
  margin: 0 auto;
}
.options__heading {
  font-size: 28px;
  font-weight: 300;
  letter-spacing: 0.15em;
  color: var(--c-text-dark);
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}
.options__heading::after {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--c-text-dark);
}
.options__lead {
  font-size: 13px;
  font-weight: 300;
  line-height: 2;
  color: var(--c-text);
  margin-bottom: 50px;
}
.options__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.options__item {
  background: #fff;
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.3s;
}
.options__item:hover { transform: translateY(-4px); }
.options__name {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: var(--c-brown);
  margin-bottom: 16px;
}
.options__price {
  font-size: 22px;
  font-weight: 300;
  color: var(--c-text-dark);
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}
.options__price span {
  font-size: 12px;
  color: var(--c-text);
  margin-left: 4px;
}
.options__desc {
  font-size: 11px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--c-text);
}

@media (max-width: 768px) {
  .options { padding: 60px 20px; }
  .options__heading { font-size: 22px; }
  .options__grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .options__item { padding: 24px 16px; }
  .options__price { font-size: 18px; }
}

/* =============================================
   Gallery Page
   ============================================= */
.gallery-intro {
  padding: 0 24px 60px;
  background: #fff;
  text-align: center;
}
.gallery-intro__inner {
  max-width: 700px;
  margin: 0 auto;
}
.gallery-intro__lead {
  font-size: 15px;
  font-weight: 300;
  color: var(--c-text);
  line-height: 2.1;
  letter-spacing: 0.05em;
}

.gallery-filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 24px 60px;
  background: #fff;
  max-width: 900px;
  margin: 0 auto;
}
.gallery-filter__btn {
  display: inline-block;
  padding: 10px 24px;
  background: var(--c-pill);
  color: var(--c-text-dark);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.15em;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: all 0.3s;
}
.gallery-filter__btn:hover {
  background: var(--c-cream-light);
}
.gallery-filter__btn.is-active {
  background: var(--c-brown);
  color: #fff;
}

.gallery-page {
  padding: 0 24px 80px;
  background: #fff;
}
.gallery-page__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.gallery-page__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-flow: dense;
  gap: 12px;
}
.gallery-page__item {
  aspect-ratio: 1 / 1;
  background-size: cover;
  background-position: center;
  filter: grayscale(0.15);
  transition: opacity 0.4s, transform 0.3s;
  cursor: pointer;
}
.gallery-page__item:hover {
  opacity: 0.85;
  transform: scale(1.01);
}
.gallery-page__item.is-hidden {
  display: none;
}

/* バリエーション */
.gallery-page__item--tall { grid-row: span 2; aspect-ratio: 1 / 2; }
.gallery-page__item--wide { grid-column: span 2; aspect-ratio: 2 / 1; }

/* Gallery items - 32枚を個別に画像指定(ベスト写真は上部に配置) */
.gallery-page__item:nth-of-type(1)  { background: url('images/hero-04-sisters-laughing.jpg') center/cover no-repeat, #d4cdc6; }
.gallery-page__item:nth-of-type(2)  { background: url('images/gallery-753-13.jpg') center/cover no-repeat, #d4cdc6; }
.gallery-page__item:nth-of-type(3)  { background: url('images/gallery-baby-toys.jpg') center/cover no-repeat, #d4cdc6; }
.gallery-page__item:nth-of-type(4)  { background: url('images/gallery-baby-basket.jpg') center/cover no-repeat, #d4cdc6; }
.gallery-page__item:nth-of-type(5)  { background: url('images/gallery-family-3.jpg') center/cover no-repeat, #d4cdc6; }
.gallery-page__item:nth-of-type(6)  { background: url('images/concept-family-mono.jpg') center/cover no-repeat, #d4cdc6; }
.gallery-page__item:nth-of-type(7)  { background: url('images/gallery-753-01.jpg') center/cover no-repeat, #d4cdc6; }
.gallery-page__item:nth-of-type(8)  { background: url('images/gallery-mom-kids.jpg') center/cover no-repeat, #d4cdc6; }
.gallery-page__item:nth-of-type(9)  { background: url('images/gallery-dad-girl-bear.jpg') center/cover no-repeat, #d4cdc6; }
.gallery-page__item:nth-of-type(10) { background: url('images/gallery-753-12.jpg') center/cover no-repeat, #d4cdc6; }
.gallery-page__item:nth-of-type(11) { background: url('images/gallery-753-02.jpg') center/cover no-repeat, #d4cdc6; }
.gallery-page__item:nth-of-type(12) { background: url('images/hero-08-baby-knit.jpg') center/cover no-repeat, #d4cdc6; }
.gallery-page__item:nth-of-type(13) { background: url('images/gallery-siblings-cow-05.jpg') center/cover no-repeat, #d4cdc6; }
.gallery-page__item:nth-of-type(14) { background: url('images/gallery-dad-baby-sunglasses.jpg') center/cover no-repeat, #d4cdc6; }
.gallery-page__item:nth-of-type(15) { background: url('images/gallery-753-04.jpg') center/cover no-repeat, #d4cdc6; }
.gallery-page__item:nth-of-type(16) { background: url('images/hero-03-sisters-white.jpg') center/cover no-repeat, #d4cdc6; }
.gallery-page__item:nth-of-type(17) { background: url('images/gallery-753-05.jpg') center/cover no-repeat, #d4cdc6; }
.gallery-page__item:nth-of-type(18) { background: url('images/hero-06-baby-bonnet.jpg') center/cover no-repeat, #d4cdc6; }
.gallery-page__item:nth-of-type(19) { background: url('images/gallery-753-06.jpg') center/cover no-repeat, #d4cdc6; }
.gallery-page__item:nth-of-type(20) { background: url('images/gallery-753-08.jpg') center/cover no-repeat, #d4cdc6; }
.gallery-page__item:nth-of-type(21) { background: url('images/gallery-753-09.jpg') center/cover no-repeat, #d4cdc6; }
.gallery-page__item:nth-of-type(22) { background: url('images/gallery-siblings-cow-01.jpg') center/cover no-repeat, #d4cdc6; }
.gallery-page__item:nth-of-type(23) { background: url('images/gallery-siblings-mono.jpg') center/cover no-repeat, #d4cdc6; }
.gallery-page__item:nth-of-type(24) { background: url('images/gallery-siblings-cow-02.jpg') center/cover no-repeat, #d4cdc6; }
.gallery-page__item:nth-of-type(25) { background: url('images/hero-02-siblings.jpg') center/cover no-repeat, #d4cdc6; }
.gallery-page__item:nth-of-type(26) { background: url('images/gallery-siblings-cow-04.jpg') center/cover no-repeat, #d4cdc6; }
.gallery-page__item:nth-of-type(27) { background: url('images/gallery-siblings-02.jpg') center/cover no-repeat, #d4cdc6; }
.gallery-page__item:nth-of-type(28) { background: url('images/gallery-mono-01.jpg') center/cover no-repeat, #d4cdc6; }
.gallery-page__item:nth-of-type(29) { background: url('images/gallery-siblings-cow-03.jpg') center/cover no-repeat, #d4cdc6; }
.gallery-page__item:nth-of-type(30) { background: url('images/gallery-753-11.jpg') center/cover no-repeat, #d4cdc6; }
.gallery-page__item:nth-of-type(31) { background: url('images/hero-05-dad-baby.jpg') center/cover no-repeat, #d4cdc6; }
.gallery-page__item:nth-of-type(32) { background: url('images/hero-01-family.jpg') center/cover no-repeat, #d4cdc6; }

.gallery-page__more {
  text-align: center;
  margin-top: 60px;
}
.gallery-page__more-btn {
  display: inline-block;
  padding: 14px 56px;
  background: var(--c-brown);
  color: #fff;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.25em;
  border-radius: 999px;
  transition: opacity 0.3s, transform 0.3s;
}
.gallery-page__more-btn:hover { opacity: 0.85; transform: translateY(-2px); }

@media (max-width: 768px) {
  .gallery-page { padding: 0 12px 60px; }
  .gallery-page__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
  }
  .gallery-page__item--tall { grid-row: span 2; }
  .gallery-page__item--wide { grid-column: span 2; }
  .gallery-filter { padding-bottom: 40px; gap: 6px; }
  .gallery-filter__btn { padding: 8px 16px; font-size: 11px; }
}

/* Instagram Promo */
.ig-promo {
  padding: 100px 24px;
  background: var(--c-cream-light);
  text-align: center;
}
.ig-promo__inner {
  max-width: 700px;
  margin: 0 auto;
}
.ig-promo__label {
  display: inline-block;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.4em;
  color: var(--c-brown);
  margin-bottom: 24px;
}
.ig-promo__heading {
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--c-text-dark);
  line-height: 1.6;
  margin-bottom: 28px;
}
.ig-promo__body {
  font-size: 13px;
  font-weight: 300;
  line-height: 2;
  color: var(--c-text);
  margin-bottom: 36px;
}
.ig-promo__btn {
  display: inline-block;
  padding: 14px 36px;
  background: var(--c-brown);
  color: #fff;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.1em;
  border-radius: 999px;
  transition: opacity 0.3s, transform 0.3s;
}
.ig-promo__btn:hover { opacity: 0.85; transform: translateY(-2px); }

@media (max-width: 768px) {
  .ig-promo { padding: 60px 20px; }
  .ig-promo__heading { font-size: 22px; }
}

/* =============================================
   Workflow Page (Booking flow)
   ============================================= */
.flow-intro {
  padding: 0 24px 60px;
  background: #fff;
  text-align: center;
}
.flow-intro__inner {
  max-width: 700px;
  margin: 0 auto;
}
.flow-intro__lead {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--c-text-dark);
  line-height: 2;
  margin-bottom: 20px;
}
.flow-intro__lead strong {
  font-weight: 500;
  color: var(--c-brown);
}
.flow-intro__body {
  font-size: 13px;
  font-weight: 300;
  line-height: 2;
  color: var(--c-text);
}

/* Flow Steps */
.flow-steps {
  padding: 60px 24px 80px;
  background: #fff;
}
.flow-steps__inner {
  max-width: 1000px;
  margin: 0 auto;
}

.flow-step {
  display: grid;
  grid-template-columns: 80px 1fr 320px;
  gap: 40px;
  padding: 50px 0;
  border-bottom: 1px solid var(--c-line);
  align-items: start;
  position: relative;
}
.flow-step:last-of-type {
  border-bottom: none;
}

.flow-step--reverse {
  grid-template-columns: 80px 320px 1fr;
}
.flow-step--reverse .flow-step__visual {
  grid-column: 2;
  grid-row: 1;
}
.flow-step--reverse .flow-step__content {
  grid-column: 3;
  grid-row: 1;
}

.flow-step__num {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  position: sticky;
  top: 100px;
}
.flow-step__num-label {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.3em;
  color: var(--c-brown);
}
.flow-step__num-value {
  font-size: 48px;
  font-weight: 200;
  letter-spacing: 0.05em;
  color: var(--c-brown);
  line-height: 1;
}

.flow-step__content {
  padding-top: 8px;
}
.flow-step__heading {
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--c-text-dark);
  line-height: 1.6;
  margin-bottom: 20px;
}
.flow-step__body {
  font-size: 13px;
  font-weight: 300;
  line-height: 2.1;
  color: var(--c-text);
  margin-bottom: 16px;
}
.flow-step__body strong {
  font-weight: 500;
  color: var(--c-brown);
}
.flow-step__list {
  list-style: none;
  margin: 16px 0;
  padding: 0;
}
.flow-step__list li {
  position: relative;
  padding-left: 18px;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--c-text);
  margin-bottom: 6px;
}
.flow-step__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 8px;
  height: 1px;
  background: var(--c-brown);
}
.flow-step__note {
  font-size: 11px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--c-text);
  margin-top: 16px;
  padding: 14px 18px;
  background: var(--c-cream-light);
  border-left: 2px solid var(--c-brown);
}
.flow-step__btn {
  display: inline-block;
  margin-top: 16px;
  padding: 12px 32px;
  background: var(--c-brown);
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.2em;
  border-radius: 999px;
  transition: opacity 0.3s, transform 0.3s;
}
.flow-step__btn:hover { opacity: 0.85; transform: translateY(-2px); }

.flow-step__visual {
  aspect-ratio: 4 / 5;
}
.flow-step__photo {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  filter: grayscale(0.2);
}
.flow-step__photo--01 { background-image: linear-gradient(135deg, #d4cdc6, #aba095); }
.flow-step__photo--02 { background-image: linear-gradient(135deg, #c8bfb5, #9e9387); }
.flow-step__photo--03 { background-image: linear-gradient(135deg, #ddd5cc, #b8aea4); }
.flow-step__photo--04 { background-image: linear-gradient(135deg, #c5b8a8, #8a7e72); }
.flow-step__photo--05 { background-image: linear-gradient(135deg, #cfc6bd, #ada499); }
.flow-step__photo--06 { background-image: linear-gradient(135deg, #c9c0b8, #aba096); }

@media (max-width: 768px) {
  .flow-steps { padding: 40px 20px 60px; }
  .flow-step,
  .flow-step--reverse {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 40px 0;
  }
  .flow-step__num {
    flex-direction: row;
    align-items: baseline;
    gap: 12px;
    position: static;
  }
  .flow-step__num-value { font-size: 36px; }
  .flow-step__heading { font-size: 18px; }
  .flow-step__visual {
    grid-column: 1 !important;
    grid-row: auto !important;
  }
  .flow-step--reverse .flow-step__content {
    grid-column: 1;
    grid-row: auto;
  }
}

/* Flow Notes */
.flow-notes {
  padding: 100px 24px;
  background: var(--c-plan-bg);
}
.flow-notes__inner {
  max-width: 1100px;
  margin: 0 auto;
}
.flow-notes__heading {
  font-size: 28px;
  font-weight: 300;
  letter-spacing: 0.15em;
  color: var(--c-text-dark);
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 50px;
}
.flow-notes__heading::after {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--c-text-dark);
}
.flow-notes__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.flow-notes__item {
  background: #fff;
  padding: 32px 32px 36px;
}
.flow-notes__label {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: var(--c-brown);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--c-line);
}
.flow-notes__body {
  font-size: 12px;
  font-weight: 300;
  line-height: 2;
  color: var(--c-text);
}
.flow-notes__body strong {
  font-weight: 500;
  color: var(--c-text-dark);
}

@media (max-width: 768px) {
  .flow-notes { padding: 60px 20px; }
  .flow-notes__heading { font-size: 22px; margin-bottom: 32px; }
  .flow-notes__grid { grid-template-columns: 1fr; gap: 14px; }
  .flow-notes__item { padding: 24px 24px 28px; }
}

/* Flow CTA Section */
.flow-cta {
  padding: 120px 24px;
  background: var(--c-brown);
  color: #fff;
  text-align: center;
}
.flow-cta__inner {
  max-width: 700px;
  margin: 0 auto;
}
.flow-cta__label {
  display: inline-block;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.4em;
  color: rgba(255,255,255,0.85);
  margin-bottom: 24px;
}
.flow-cta__heading {
  font-size: 36px;
  font-weight: 300;
  letter-spacing: 0.12em;
  line-height: 1.5;
  margin-bottom: 28px;
}
.flow-cta__body {
  font-size: 13px;
  font-weight: 300;
  line-height: 2;
  color: rgba(255,255,255,0.9);
  margin-bottom: 40px;
}
.flow-cta__btn {
  display: inline-block;
  padding: 16px 48px;
  background: #fff;
  color: var(--c-brown);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.2em;
  border-radius: 999px;
  transition: opacity 0.3s, transform 0.3s;
}
.flow-cta__btn:hover { opacity: 0.9; transform: translateY(-2px); }

@media (max-width: 768px) {
  .flow-cta { padding: 80px 20px; }
  .flow-cta__heading { font-size: 26px; }
}

/* =============================================
   Access Page
   ============================================= */
.access-map {
  padding: 0 24px 60px;
  background: #fff;
}
.access-map__inner {
  max-width: 1200px;
  margin: 0 auto;
  aspect-ratio: 21 / 9;
  background: var(--c-cream-light);
  overflow: hidden;
}
.access-map__inner iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.15) contrast(0.97);
}
.access-map__actions {
  text-align: center;
  margin-top: 24px;
}
.access-map__btn {
  display: inline-block;
  padding: 12px 32px;
  background: var(--c-brown);
  color: #fff;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.2em;
  border-radius: 999px;
  transition: opacity 0.3s, transform 0.3s;
}
.access-map__btn:hover { opacity: 0.85; transform: translateY(-2px); }

@media (max-width: 768px) {
  .access-map__inner { aspect-ratio: 4 / 3; }
}

/* Studio Info */
.access-info {
  padding: 60px 24px 80px;
  background: #fff;
}
.access-info__inner {
  max-width: 900px;
  margin: 0 auto;
}
.access-info__heading {
  font-size: 28px;
  font-weight: 300;
  letter-spacing: 0.15em;
  color: var(--c-text-dark);
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}
.access-info__heading::after {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--c-text-dark);
}
.access-info__list {
  border-top: 1px solid var(--c-line);
}
.access-info__row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 24px;
  padding: 20px 4px;
  border-bottom: 1px solid var(--c-line);
  align-items: start;
}
.access-info__row dt {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: var(--c-brown);
  line-height: 1.6;
}
.access-info__row dd {
  font-size: 13px;
  font-weight: 300;
  line-height: 2;
  color: var(--c-text);
  letter-spacing: 0.05em;
}

@media (max-width: 768px) {
  .access-info { padding: 40px 20px 60px; }
  .access-info__heading { font-size: 22px; }
  .access-info__row { grid-template-columns: 1fr; gap: 6px; padding: 16px 0; }
}

/* Nearest Stations */
.access-stations {
  padding: 100px 24px;
  background: var(--c-cream-light);
}
.access-stations__inner {
  max-width: 1100px;
  margin: 0 auto;
}
.access-stations__heading {
  font-size: 28px;
  font-weight: 300;
  letter-spacing: 0.15em;
  color: var(--c-text-dark);
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.access-stations__heading::after {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--c-text-dark);
}
.access-stations__lead {
  font-size: 13px;
  font-weight: 300;
  line-height: 2;
  color: var(--c-text);
  margin-bottom: 50px;
}
.access-stations__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.access-stations__item {
  background: #fff;
  padding: 36px 32px 32px;
  position: relative;
}
.access-stations__num {
  font-size: 36px;
  font-weight: 200;
  color: var(--c-brown);
  letter-spacing: 0.05em;
  line-height: 1;
  margin-bottom: 24px;
  opacity: 0.85;
}
.access-stations__line {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: var(--c-brown);
  margin-bottom: 6px;
}
.access-stations__name {
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--c-text-dark);
  margin-bottom: 12px;
}
.access-stations__time {
  font-size: 13px;
  font-weight: 300;
  color: var(--c-text);
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}
.access-stations__time strong {
  font-size: 22px;
  font-weight: 400;
  color: var(--c-text-dark);
  margin: 0 4px;
}
.access-stations__desc {
  font-size: 12px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--c-text);
  padding-top: 16px;
  border-top: 1px solid var(--c-line);
}

@media (max-width: 768px) {
  .access-stations { padding: 60px 20px; }
  .access-stations__heading { font-size: 22px; }
  .access-stations__grid { grid-template-columns: 1fr; gap: 14px; }
  .access-stations__item { padding: 28px 24px; }
}

/* Directions */
.access-directions {
  padding: 100px 24px;
  background: #fff;
}
.access-directions__inner {
  max-width: 900px;
  margin: 0 auto;
}
.access-directions__heading {
  font-size: 28px;
  font-weight: 300;
  letter-spacing: 0.15em;
  color: var(--c-text-dark);
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 8px;
}
.access-directions__heading::after {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--c-text-dark);
}
.access-directions__sub {
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.15em;
  color: var(--c-brown);
  margin-bottom: 50px;
}
.access-directions__steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}
.direction-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding: 24px 0;
  border-bottom: 1px solid var(--c-line);
  position: relative;
}
.direction-step:last-child { border-bottom: none; }
.direction-step__num {
  font-size: 32px;
  font-weight: 200;
  letter-spacing: 0.05em;
  color: var(--c-brown);
  line-height: 1.1;
}
.direction-step__title {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--c-text-dark);
  margin-bottom: 8px;
}
.direction-step__text {
  font-size: 13px;
  font-weight: 300;
  line-height: 2;
  color: var(--c-text);
}

@media (max-width: 768px) {
  .access-directions { padding: 60px 20px; }
  .access-directions__heading { font-size: 22px; }
  .direction-step { grid-template-columns: 50px 1fr; gap: 16px; padding: 18px 0; }
  .direction-step__num { font-size: 24px; }
  .direction-step__title { font-size: 14px; }
}

/* Parking */
.access-parking {
  padding: 100px 24px;
  background: var(--c-plan-bg);
}
.access-parking__inner {
  max-width: 1100px;
  margin: 0 auto;
}
.access-parking__heading {
  font-size: 28px;
  font-weight: 300;
  letter-spacing: 0.15em;
  color: var(--c-text-dark);
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.access-parking__heading::after {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--c-text-dark);
}
.access-parking__lead {
  font-size: 13px;
  font-weight: 300;
  line-height: 2;
  color: var(--c-text);
  margin-bottom: 40px;
}
.access-parking__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}
.access-parking__item {
  background: #fff;
  padding: 28px 28px 24px;
}
.access-parking__name {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--c-text-dark);
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--c-line);
}
.access-parking__distance {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--c-brown);
  margin-bottom: 8px;
}
.access-parking__detail {
  font-size: 12px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--c-text);
}
.access-parking__note {
  font-size: 11px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--c-text);
}

@media (max-width: 768px) {
  .access-parking { padding: 60px 20px; }
  .access-parking__heading { font-size: 22px; }
  .access-parking__grid { grid-template-columns: 1fr; gap: 10px; }
}

/* Facilities */
.access-facilities {
  padding: 100px 24px;
  background: #fff;
}
.access-facilities__inner {
  max-width: 1100px;
  margin: 0 auto;
}
.access-facilities__heading {
  font-size: 28px;
  font-weight: 300;
  letter-spacing: 0.15em;
  color: var(--c-text-dark);
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.access-facilities__heading::after {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--c-text-dark);
}
.access-facilities__lead {
  font-size: 13px;
  font-weight: 300;
  line-height: 2;
  color: var(--c-text);
  margin-bottom: 50px;
}
.access-facilities__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.access-facilities__item {
  background: var(--c-cream-light);
  padding: 28px 16px 24px;
  text-align: center;
}
.access-facilities__icon {
  font-size: 28px;
  margin-bottom: 12px;
  line-height: 1;
}
.access-facilities__name {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--c-text-dark);
  margin-bottom: 8px;
}
.access-facilities__desc {
  font-size: 11px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--c-text);
}

@media (max-width: 768px) {
  .access-facilities { padding: 60px 20px; }
  .access-facilities__heading { font-size: 22px; }
  .access-facilities__grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .access-facilities__item { padding: 20px 10px 16px; }
}

/* =============================================
   FAQ Page
   ============================================= */
.faq-search {
  padding: 0 24px 50px;
  background: #fff;
}
.faq-search__inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.faq-search__lead {
  font-size: 13px;
  font-weight: 300;
  line-height: 2;
  color: var(--c-text);
  margin-bottom: 36px;
}
.faq-search__box {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
}
.faq-search__box input {
  width: 100%;
  padding: 16px 20px 16px 52px;
  border: 1px solid var(--c-line);
  background: var(--c-cream-light);
  border-radius: 999px;
  font-family: var(--font-jp);
  font-size: 14px;
  font-weight: 300;
  color: var(--c-text-dark);
  letter-spacing: 0.05em;
  outline: none;
  transition: all 0.3s;
}
.faq-search__box input:focus {
  border-color: var(--c-brown);
  background: #fff;
}
.faq-search__box input::placeholder {
  color: var(--c-text);
  opacity: 0.6;
}
.faq-search__icon {
  position: absolute;
  left: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  color: var(--c-brown);
  pointer-events: none;
}

@media (max-width: 768px) {
  .faq-search__box input { padding: 14px 18px 14px 46px; font-size: 13px; }
  .faq-search__icon { left: 18px; font-size: 18px; }
}

/* FAQ Filter */
.faq-filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 24px 50px;
  background: #fff;
  max-width: 1100px;
  margin: 0 auto;
}
.faq-filter__btn {
  display: inline-block;
  padding: 10px 22px;
  background: var(--c-pill);
  color: var(--c-text-dark);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.12em;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: all 0.3s;
}
.faq-filter__btn:hover {
  background: var(--c-cream-light);
}
.faq-filter__btn.is-active {
  background: var(--c-brown);
  color: #fff;
}

@media (max-width: 768px) {
  .faq-filter { padding-bottom: 36px; gap: 6px; }
  .faq-filter__btn { padding: 8px 14px; font-size: 11px; }
}

/* FAQ List */
.faq-list {
  padding: 30px 24px 100px;
  background: #fff;
  position: relative;
}
.faq-list__inner {
  max-width: 900px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--c-line);
}
.faq-item.is-hidden {
  display: none;
}
.faq-item__q {
  width: 100%;
  display: grid;
  grid-template-columns: 130px 1fr 32px;
  gap: 20px;
  align-items: center;
  padding: 24px 8px;
  text-align: left;
  cursor: pointer;
  transition: opacity 0.3s;
}
.faq-item__q:hover { opacity: 0.7; }

.faq-item__cat {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  color: var(--c-brown);
  white-space: nowrap;
}
.faq-item__q-text {
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--c-text-dark);
  line-height: 1.7;
}
.faq-item__icon {
  position: relative;
  width: 14px;
  height: 14px;
  justify-self: end;
}
.faq-item__icon::before,
.faq-item__icon::after {
  content: '';
  position: absolute;
  background: var(--c-brown);
  transition: transform 0.3s;
}
.faq-item__icon::before {
  width: 14px; height: 1px;
  top: 50%; left: 0;
}
.faq-item__icon::after {
  width: 1px; height: 14px;
  top: 0; left: 50%;
}
.faq-item.is-open .faq-item__icon::after {
  transform: scaleY(0);
}

.faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-item.is-open .faq-item__a {
  max-height: 800px;
}
.faq-item__a-inner {
  padding: 0 8px 28px;
  display: grid;
  grid-template-columns: 130px 1fr 32px;
  gap: 20px;
}
.faq-item__a-inner > p {
  grid-column: 2;
  font-size: 13px;
  font-weight: 300;
  line-height: 2.1;
  color: var(--c-text);
  margin-bottom: 12px;
}
.faq-item__a-inner > p:last-child { margin-bottom: 0; }
.faq-item__a-inner strong {
  font-weight: 500;
  color: var(--c-brown);
}
.faq-item__a-inner a {
  color: var(--c-brown);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 0.3s;
}
.faq-item__a-inner a:hover { opacity: 0.7; }

.faq-list__empty {
  text-align: center;
  padding: 60px 24px;
  background: var(--c-cream-light);
  margin-top: 40px;
}
.faq-list__empty p {
  font-size: 13px;
  font-weight: 300;
  line-height: 2;
  color: var(--c-text);
  margin-bottom: 8px;
}

@media (max-width: 768px) {
  .faq-list { padding: 20px 20px 60px; }
  .faq-item__q {
    grid-template-columns: 1fr 24px;
    gap: 12px;
    padding: 20px 4px;
  }
  .faq-item__cat {
    grid-column: 1;
    grid-row: 1;
    font-size: 10px;
  }
  .faq-item__q-text {
    grid-column: 1;
    grid-row: 2;
    font-size: 14px;
  }
  .faq-item__icon {
    grid-column: 2;
    grid-row: 1 / 3;
    align-self: center;
  }
  .faq-item__a-inner {
    grid-template-columns: 1fr;
    padding: 0 4px 24px;
  }
  .faq-item__a-inner > p { grid-column: 1; }
}

/* FAQ CTA */
.faq-cta {
  padding: 100px 24px;
  background: var(--c-brown);
  color: #fff;
  text-align: center;
}
.faq-cta__inner {
  max-width: 700px;
  margin: 0 auto;
}
.faq-cta__label {
  display: inline-block;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.4em;
  color: rgba(255,255,255,0.85);
  margin-bottom: 24px;
}
.faq-cta__heading {
  font-size: 32px;
  font-weight: 300;
  letter-spacing: 0.12em;
  line-height: 1.5;
  margin-bottom: 28px;
}
.faq-cta__body {
  font-size: 13px;
  font-weight: 300;
  line-height: 2;
  color: rgba(255,255,255,0.9);
  margin-bottom: 36px;
}
.faq-cta__btn {
  display: inline-block;
  padding: 16px 48px;
  background: #fff;
  color: var(--c-brown);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.2em;
  border-radius: 999px;
  transition: opacity 0.3s, transform 0.3s;
}
.faq-cta__btn:hover { opacity: 0.9; transform: translateY(-2px); }

@media (max-width: 768px) {
  .faq-cta { padding: 70px 20px; }
  .faq-cta__heading { font-size: 22px; }
}

/* =============================================
   Rental Page
   ============================================= */
.rental-intro {
  padding: 0 24px 60px;
  background: #fff;
  text-align: center;
}
.rental-intro__inner {
  max-width: 700px;
  margin: 0 auto;
}
.rental-intro__lead {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--c-text-dark);
  line-height: 2;
  margin-bottom: 24px;
}
.rental-intro__lead strong {
  font-weight: 500;
  color: var(--c-brown);
}
.rental-intro__body {
  font-size: 13px;
  font-weight: 300;
  line-height: 2;
  color: var(--c-text);
}

.rental-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 24px 80px;
  background: #fff;
  max-width: 900px;
  margin: 0 auto;
}
.rental-tabs__btn {
  display: inline-block;
  padding: 10px 28px;
  background: var(--c-pill);
  color: var(--c-text-dark);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.15em;
  border-radius: 999px;
  transition: all 0.3s;
}
.rental-tabs__btn:hover {
  background: var(--c-brown);
  color: #fff;
}

/* Rental Category Section */
.rental-cat {
  padding: 80px 24px;
  background: #fff;
  scroll-margin-top: 80px;
}
.rental-cat--alt {
  background: var(--c-cream-light);
}
.rental-cat__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.rental-cat__head {
  display: flex;
  align-items: baseline;
  gap: 20px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.rental-cat__num {
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.3em;
  color: var(--c-brown);
}
.rental-cat__heading {
  font-size: 36px;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: var(--c-text-dark);
}
.rental-cat__sub {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: var(--c-brown);
}
.rental-cat__desc {
  font-size: 13px;
  font-weight: 300;
  line-height: 2;
  color: var(--c-text);
  margin-bottom: 16px;
  max-width: 760px;
}
.rental-cat__note {
  font-size: 11px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--c-text);
  margin-bottom: 30px;
  padding: 12px 16px;
  background: #fff;
  border-left: 2px solid var(--c-brown);
  max-width: 760px;
}
.rental-cat--alt .rental-cat__note {
  background: var(--c-cream-light);
  border-left-color: var(--c-brown);
}

.rental-cat__inner > .rental-cat__desc:last-of-type,
.rental-cat__inner > .rental-cat__note + .rental-grid,
.rental-cat__inner > .rental-cat__desc + .rental-grid {
  margin-top: 40px;
}

.rental-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.rental-item {
  background: #fff;
  transition: transform 0.3s;
}
.rental-cat--alt .rental-item {
  background: #fff;
}
.rental-item:hover { transform: translateY(-4px); }

.rental-item__photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  background-size: cover;
  background-position: center;
  filter: grayscale(0.15);
}
.rental-item__info {
  padding: 18px 20px 22px;
}
.rental-item__name {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--c-text-dark);
  margin-bottom: 6px;
  line-height: 1.5;
}
.rental-item__size {
  font-size: 11px;
  font-weight: 300;
  color: var(--c-text);
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}
.rental-item__price {
  font-size: 16px;
  font-weight: 400;
  color: var(--c-brown);
  letter-spacing: 0.05em;
}
.rental-item__price span {
  font-size: 11px;
  color: var(--c-text);
  margin-left: 4px;
  font-weight: 300;
}

/* Rental placeholder gradients - Kids */
.rental-item__photo--k1 { background-image: linear-gradient(135deg, #e8dfd2, #b3a08a); }
.rental-item__photo--k2 { background-image: linear-gradient(135deg, #cdc1b0, #948472); }
.rental-item__photo--k3 { background-image: linear-gradient(135deg, #f0e7d8, #c9bca7); }
.rental-item__photo--k4 { background-image: linear-gradient(135deg, #ddd0bc, #b09f87); }
.rental-item__photo--k5 { background-image: linear-gradient(135deg, #e2d6c0, #b5a48b); }
.rental-item__photo--k6 { background-image: linear-gradient(135deg, #c8baa3, #a08e76); }

/* Maternity */
.rental-item__photo--m1 { background-image: linear-gradient(135deg, #ece2d3, #b9a98f); }
.rental-item__photo--m2 { background-image: linear-gradient(135deg, #d9cdb8, #ab9e84); }
.rental-item__photo--m3 { background-image: linear-gradient(135deg, #e5dac6, #b6a78d); }

/* Dress */
.rental-item__photo--d1 { background-image: linear-gradient(135deg, #c8b9a3, #968570); }
.rental-item__photo--d2 { background-image: linear-gradient(135deg, #ddcdb5, #ad9d83); }
.rental-item__photo--d3 { background-image: linear-gradient(135deg, #b8a98e, #847358); }
.rental-item__photo--d4 { background-image: linear-gradient(135deg, #cebda3, #a08d72); }

/* Kimono */
.rental-item__photo--ki1 { background-image: linear-gradient(135deg, #bda88a, #8a7660); }
.rental-item__photo--ki2 { background-image: linear-gradient(135deg, #a89576, #6b5a45); }
.rental-item__photo--ki3 { background-image: linear-gradient(135deg, #c4b095, #927e64); }

@media (max-width: 768px) {
  .rental-cat { padding: 50px 20px; }
  .rental-cat__heading { font-size: 28px; }
  .rental-tabs__btn { padding: 8px 18px; font-size: 11px; }
  .rental-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 28px; }
  .rental-item__info { padding: 14px 14px 18px; }
  .rental-item__name { font-size: 12px; }
}

/* Rental Notes */
.rental-notes {
  padding: 100px 24px;
  background: var(--c-plan-bg);
}
.rental-notes__inner {
  max-width: 1100px;
  margin: 0 auto;
}
.rental-notes__heading {
  font-size: 28px;
  font-weight: 300;
  letter-spacing: 0.15em;
  color: var(--c-text-dark);
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.rental-notes__heading::after {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--c-text-dark);
}
.rental-notes__lead {
  font-size: 13px;
  font-weight: 300;
  line-height: 2;
  color: var(--c-text);
  margin-bottom: 40px;
}
.rental-notes__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.rental-notes__item {
  background: #fff;
  padding: 28px 28px 32px;
}
.rental-notes__label {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: var(--c-brown);
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--c-line);
}
.rental-notes__body {
  font-size: 12px;
  font-weight: 300;
  line-height: 2;
  color: var(--c-text);
}

@media (max-width: 768px) {
  .rental-notes { padding: 60px 20px; }
  .rental-notes__heading { font-size: 22px; }
  .rental-notes__grid { grid-template-columns: 1fr; gap: 12px; }
}

/* Rental CTA */
.rental-cta {
  padding: 100px 24px;
  background: var(--c-brown);
  color: #fff;
  text-align: center;
}
.rental-cta__inner {
  max-width: 700px;
  margin: 0 auto;
}
.rental-cta__label {
  display: inline-block;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.4em;
  color: rgba(255,255,255,0.85);
  margin-bottom: 24px;
}
.rental-cta__heading {
  font-size: 32px;
  font-weight: 300;
  letter-spacing: 0.12em;
  line-height: 1.5;
  margin-bottom: 28px;
}
.rental-cta__body {
  font-size: 13px;
  font-weight: 300;
  line-height: 2;
  color: rgba(255,255,255,0.9);
  margin-bottom: 36px;
}
.rental-cta__btn {
  display: inline-block;
  padding: 16px 48px;
  background: #fff;
  color: var(--c-brown);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.2em;
  border-radius: 999px;
  transition: opacity 0.3s, transform 0.3s;
}
.rental-cta__btn:hover { opacity: 0.9; transform: translateY(-2px); }

@media (max-width: 768px) {
  .rental-cta { padding: 70px 20px; }
  .rental-cta__heading { font-size: 22px; }
}

/* =============================================
   Blog Page (Staff blog)
   ============================================= */
.blog-intro {
  padding: 0 24px 50px;
  background: #fff;
  text-align: center;
}
.blog-intro__inner {
  max-width: 700px;
  margin: 0 auto;
}
.blog-intro__lead {
  font-size: 14px;
  font-weight: 300;
  line-height: 2.1;
  color: var(--c-text);
  letter-spacing: 0.05em;
}

.blog-filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 24px 60px;
  background: #fff;
  max-width: 1100px;
  margin: 0 auto;
}
.blog-filter__btn {
  display: inline-block;
  padding: 10px 22px;
  background: var(--c-pill);
  color: var(--c-text-dark);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.12em;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: all 0.3s;
}
.blog-filter__btn:hover {
  background: var(--c-cream-light);
}
.blog-filter__btn.is-active {
  background: var(--c-brown);
  color: #fff;
}

@media (max-width: 768px) {
  .blog-filter { padding-bottom: 36px; gap: 6px; }
  .blog-filter__btn { padding: 8px 14px; font-size: 11px; }
}

/* Featured */
.blog-featured {
  padding: 0 24px 80px;
  background: #fff;
}
.blog-featured__inner {
  max-width: 1100px;
  margin: 0 auto;
}
.blog-featured__card {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
  background: var(--c-cream-light);
  transition: opacity 0.3s;
}
.blog-featured__card:hover { opacity: 0.9; }

.blog-featured__photo {
  aspect-ratio: 4 / 3;
  background-image: linear-gradient(135deg, #c5b8a8, #8a7e72);
  background-size: cover;
  background-position: center;
  filter: grayscale(0.15);
}
.blog-featured__body {
  padding: 50px 50px 50px 0;
}
.blog-featured__cat {
  display: inline-block;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: var(--c-brown);
  margin-bottom: 16px;
  padding: 4px 12px;
  background: #fff;
  border-radius: 999px;
}
.blog-featured__heading {
  font-size: 26px;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--c-text-dark);
  line-height: 1.6;
  margin-bottom: 20px;
}
.blog-featured__excerpt {
  font-size: 13px;
  font-weight: 300;
  line-height: 2;
  color: var(--c-text);
  margin-bottom: 28px;
}
.blog-featured__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid var(--c-line);
}
.blog-featured__meta time {
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--c-text);
}
.blog-featured__more {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: var(--c-brown);
}

@media (max-width: 768px) {
  .blog-featured { padding: 0 20px 50px; }
  .blog-featured__card {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .blog-featured__body { padding: 28px; }
  .blog-featured__heading { font-size: 18px; }
}

/* Blog Grid */
.blog-grid-section {
  padding: 50px 24px 100px;
  background: #fff;
}
.blog-grid-section__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.blog-card {
  background: #fff;
}
.blog-card.is-hidden {
  display: none;
}
.blog-card__link {
  display: block;
  transition: transform 0.3s;
}
.blog-card__link:hover {
  transform: translateY(-4px);
}
.blog-card__photo {
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  filter: grayscale(0.15);
  margin-bottom: 16px;
}
.blog-card__photo--01 { background-image: linear-gradient(135deg, #d4cdc6, #aba095); }
.blog-card__photo--02 { background-image: linear-gradient(135deg, #c8bfb5, #9e9387); }
.blog-card__photo--03 { background-image: linear-gradient(135deg, #ddd5cc, #b8aea4); }
.blog-card__photo--04 { background-image: linear-gradient(135deg, #cfc6bd, #ada499); }
.blog-card__photo--05 { background-image: linear-gradient(135deg, #e0d8cf, #bdb1a5); }
.blog-card__photo--06 { background-image: linear-gradient(135deg, #c9c0b8, #aba096); }
.blog-card__photo--07 { background-image: linear-gradient(135deg, #d8d0c7, #b3a89c); }
.blog-card__photo--08 { background-image: linear-gradient(135deg, #cec5bc, #a89d92); }
.blog-card__photo--09 { background-image: linear-gradient(135deg, #c5b8a8, #8a7e72); }

.blog-card__body {
  padding: 0 4px;
}
.blog-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.blog-card__cat {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: var(--c-brown);
  padding: 3px 10px;
  background: var(--c-cream-light);
  border-radius: 999px;
}
.blog-card__meta time {
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--c-text);
}
.blog-card__title {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--c-text-dark);
  line-height: 1.6;
  margin-bottom: 12px;
}
.blog-card__excerpt {
  font-size: 12px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--c-text);
}

@media (max-width: 768px) {
  .blog-grid-section { padding: 30px 20px 60px; }
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .blog-card__title { font-size: 15px; }
}

/* Pagination */
.blog-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 80px;
}
.blog-pagination__btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: transparent;
  color: var(--c-text-dark);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.05em;
  transition: all 0.3s;
  cursor: pointer;
  border: 1px solid var(--c-line);
}
.blog-pagination__btn:hover {
  background: var(--c-cream-light);
}
.blog-pagination__btn.is-active {
  background: var(--c-brown);
  color: #fff;
  border-color: var(--c-brown);
}
.blog-pagination__next {
  margin-left: 16px;
  padding: 0 20px;
  height: 40px;
  background: transparent;
  color: var(--c-text-dark);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.15em;
  border: 1px solid var(--c-line);
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.3s;
}
.blog-pagination__next:hover {
  background: var(--c-brown);
  color: #fff;
  border-color: var(--c-brown);
}

.blog-empty {
  text-align: center;
  padding: 60px 24px;
  background: var(--c-cream-light);
  margin-top: 40px;
}
.blog-empty p {
  font-size: 13px;
  font-weight: 300;
  color: var(--c-text);
}

/* =============================================
   Footer
   ============================================= */
.footer {
  background: var(--c-mauve);
  color: #fff;
  padding: 80px 24px 32px;
}
.footer__inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.footer__logo {
  margin-bottom: 50px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.footer__logo svg {
  height: 50px;
  width: auto;
}
.footer__logo svg path {
  fill: var(--c-brown);
}
.footer__map {
  display: block;
  margin: 0 auto 30px;
  max-width: 600px;
  aspect-ratio: 16 / 9;
  background: rgba(255,255,255,0.1);
  overflow: hidden;
}
.footer__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.2) contrast(0.95);
}
.footer__address { margin-bottom: 24px; }
.footer__address-name {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.footer__address-detail {
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.08em;
  opacity: 0.95;
}
.footer__hours { margin-bottom: 32px; }
.footer__hours-row {
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
  opacity: 0.95;
}
.footer__sns {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin: 32px 0 50px;
}
.footer__sns a,
.footer__sns-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.3s;
}
.footer__sns-link svg {
  width: 18px;
  height: 18px;
  display: block;
}
.footer__sns a:hover,
.footer__sns-link:hover {
  background: #fff;
  color: var(--c-brown);
  transform: translateY(-2px);
}
.footer__group {
  margin: 50px 0 30px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.25);
  text-align: center;
}
.footer__group-label {
  display: block;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.3em;
  margin-bottom: 28px;
}
.footer__group-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
}
.footer__group-links a {
  display: inline-block;
  width: 100%;
  max-width: 480px;
  padding: 16px 24px;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 999px;
  transition: background 0.3s, color 0.3s, transform 0.3s;
  text-align: center;
}
.footer__group-links a:hover {
  background: #fff;
  color: var(--c-brown);
  transform: translateY(-2px);
}
@media (max-width: 768px) {
  .footer__group-links a {
    padding: 14px 18px;
    font-size: 12px;
    letter-spacing: 0.06em;
  }
}
.footer__copyright {
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.1em;
  opacity: 0.7;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.2);
}
@media (max-width: 768px) {
  .footer { padding: 60px 20px 24px; }
}

/* ============ TOP CTA ROW (flow / faq) ============ */
.cta-row {
  padding: 70px 20px 90px;
  background: #fff;
}
.cta-row__inner {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
}
.cta-row__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: inherit;
  max-width: 280px;
}
.cta-row__sub {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: #888;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.cta-row__sub-bracket {
  font-size: 13px;
  color: #888;
  font-weight: 300;
  display: inline-block;
  transform: translateY(1px);
}
.cta-row__sub-bracket--left {
  transform: translateY(1px) scaleY(1.4);
}
.cta-row__sub-bracket--right {
  transform: translateY(1px) scaleY(1.4);
}
.cta-row__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 100%;
  padding: 22px 36px;
  background: #a39689;
  color: #fff;
  border-radius: 999px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.2em;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}
.cta-row__btn-label {
  font-style: normal;
  font-weight: 300;
  letter-spacing: 0.2em;
}
.cta-row__btn-arrow {
  font-size: 10px;
  transform: translateY(0);
  transition: transform 0.3s ease;
}
.cta-row__item:hover .cta-row__btn {
  background: #8e8276;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}
.cta-row__item:hover .cta-row__btn-arrow {
  transform: translate(3px, 1px);
}

/* CTA Row - Mobile */
@media (max-width: 768px) {
  .cta-row {
    padding: 50px 12px 70px;
  }
  .cta-row__inner {
    gap: 10px;
    align-items: flex-start;
  }
  .cta-row__item {
    flex: 1 1 0;
    min-width: 0;
    width: 50%;
    gap: 10px;
    max-width: none;
  }
  .cta-row__sub {
    font-size: 11px;
    gap: 4px;
    letter-spacing: 0.02em;
  }
  .cta-row__sub-bracket {
    font-size: 11px;
  }
  .cta-row__btn {
    padding: 16px 12px;
    font-size: 13px;
    gap: 8px;
    letter-spacing: 0.15em;
  }
  .cta-row__btn-arrow {
    font-size: 9px;
  }
}

@media (max-width: 420px) {
  .cta-row__sub {
    font-size: 10px;
    gap: 3px;
  }
  .cta-row__sub-bracket {
    font-size: 10px;
  }
  .cta-row__btn {
    padding: 14px 10px;
    font-size: 12px;
  }
}

@media (max-width: 360px) {
  .cta-row__sub {
    font-size: 9px;
  }
  .cta-row__sub-bracket {
    font-size: 9px;
  }
}

/* ============ Responsive Utilities ============ */
.pc-only { display: inline; }
.sp-only { display: none; }
@media (max-width: 768px) {
  .pc-only { display: none; }
  .sp-only { display: inline; }
}
