/* ============================================================
   LAULE'A NEWBORN — Design System
   soft / rich / tasteful
   ============================================================ */

:root {
  /* color */
  --cream: #faf6f0;
  --cream-deep: #f3ece1;
  --white: #fffdf9;
  --ink: #4a4038;
  --ink-soft: #8a7d6f;
  --line: #e8ddcd;
  --gold: #c3a26f;
  --gold-deep: #a2803f;
  --blush: #eeddd3;
  --blush-deep: #d9b8a5;

  /* type */
  --font-en: "Cormorant Garamond", serif;
  --font-serif: "Shippori Mincho", serif;
  --font-body: "Zen Kaku Gothic New", sans-serif;

  /* layout */
  --w-max: 1160px;
  --radius: 20px;
  --shadow: 0 18px 45px -18px rgba(102, 84, 55, 0.22);
  --shadow-soft: 0 10px 30px -12px rgba(102, 84, 55, 0.16);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 110px; }

body {
  font-family: var(--font-body);
  font-size: 15.5px;
  line-height: 2;
  letter-spacing: 0.06em;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.wrap { max-width: var(--w-max); margin: 0 auto; padding: 0 clamp(20px, 4vw, 40px); }

/* ---------- section heading ---------- */
.sec { padding: clamp(72px, 10vw, 130px) 0; position: relative; }
.sec-head { text-align: center; margin-bottom: clamp(40px, 6vw, 70px); }
.sec-head .en {
  font-family: var(--font-en);
  font-size: clamp(34px, 4.6vw, 52px);
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--ink);
  line-height: 1.2;
}
.sec-head .en i { font-style: italic; color: var(--gold); }
.sec-head .jp {
  display: inline-block;
  margin-top: 14px;
  font-size: 13px;
  letter-spacing: 0.32em;
  color: var(--ink-soft);
}
.sec-head .jp::before, .sec-head .jp::after {
  content: "";
  display: inline-block;
  width: 26px; height: 1px;
  background: var(--gold);
  vertical-align: middle;
  margin: 0 14px;
  opacity: 0.6;
}
.sec-lead { text-align: center; max-width: 640px; margin: -30px auto 55px; color: var(--ink-soft); font-size: 14.5px; }

/* ---------- reveal animation ---------- */
.rv { opacity: 0; transform: translateY(28px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.rv.on { opacity: 1; transform: none; }
.rv-d1 { transition-delay: 0.12s; }
.rv-d2 { transition-delay: 0.24s; }
.rv-d3 { transition-delay: 0.36s; }

/* ============================================================
   header
   ============================================================ */
.header {
  position: fixed; inset: 0 0 auto; z-index: 100;
  transition: background 0.5s, box-shadow 0.5s, padding 0.5s;
  padding: 22px 0;
}
.header.scrolled {
  background: rgba(255, 253, 249, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
  padding: 12px 0;
}
.header-in { display: flex; align-items: center; justify-content: space-between; max-width: 1360px; margin: 0 auto; padding: 0 clamp(20px, 3vw, 36px); }
.logo { line-height: 1.3; }
.logo .en { font-family: var(--font-en); font-size: 23px; letter-spacing: 0.18em; font-weight: 600; display: block; }
.logo .jp { font-size: 10px; letter-spacing: 0.34em; color: var(--ink-soft); display: block; margin-top: 2px; }

.gnav { display: flex; align-items: center; gap: clamp(18px, 2.4vw, 32px); }
.gnav a.nv {
  font-family: var(--font-en);
  font-size: 14.5px; letter-spacing: 0.16em; font-weight: 600;
  position: relative; padding: 6px 0;
}
.gnav a.nv::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.45s var(--ease);
}
.gnav a.nv:hover::after { transform: scaleX(1); transform-origin: left; }

.btn-line {
  display: inline-flex; align-items: center; gap: 9px;
  background: #06c755; color: #fff;
  padding: 11px 24px; border-radius: 999px;
  font-size: 13.5px; font-weight: 700; letter-spacing: 0.1em;
  box-shadow: 0 8px 20px -8px rgba(6, 199, 85, 0.55);
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
}
.btn-line:hover { transform: translateY(-2px); box-shadow: 0 12px 24px -8px rgba(6, 199, 85, 0.6); }
.btn-line svg { width: 18px; height: 18px; fill: currentColor; }

/* hamburger */
.menu-btn { display: none; }

/* ============================================================
   hero
   ============================================================ */
.hero { position: relative; height: 100svh; min-height: 620px; overflow: hidden; }
.hero-slides, .hero-slides .slide { position: absolute; inset: 0; }
.hero-slides .slide {
  background-size: cover; background-position: center;
  opacity: 0; transform: scale(1.06);
  transition: opacity 2.2s ease;
}
.hero-slides .slide.act { opacity: 1; animation: kenburns 9s linear forwards; }
@keyframes kenburns { from { transform: scale(1.06); } to { transform: scale(1); } }

.hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(74, 64, 56, 0.42), rgba(74, 64, 56, 0) 55%),
              linear-gradient(to bottom, rgba(250, 246, 240, 0.25), rgba(250, 246, 240, 0) 30%);
}
.hero-copy {
  position: absolute; z-index: 2;
  left: clamp(24px, 6vw, 90px); bottom: clamp(90px, 14vh, 150px);
  color: #fff;
}
.hero-copy .en {
  font-family: var(--font-en); font-style: italic;
  font-size: clamp(15px, 1.8vw, 19px); letter-spacing: 0.28em;
  margin-bottom: 18px; opacity: 0.95;
  text-shadow: 0 1px 18px rgba(60, 45, 30, 0.5);
}
.hero-copy h1 {
  font-family: var(--font-serif); font-weight: 500;
  font-size: clamp(26px, 4.4vw, 46px);
  line-height: 1.9; letter-spacing: 0.14em;
  text-shadow: 0 2px 30px rgba(60, 45, 30, 0.35);
}
.hero-copy .sub { margin-top: 18px; font-size: clamp(12px, 1.4vw, 14px); letter-spacing: 0.22em; opacity: 0.92; text-shadow: 0 1px 16px rgba(60, 45, 30, 0.55); }

.hero-scroll {
  position: absolute; z-index: 2; right: clamp(22px, 4vw, 48px); bottom: 0;
  color: #fff; font-family: var(--font-en); font-size: 11px; letter-spacing: 0.3em;
  writing-mode: vertical-rl; padding-bottom: 90px;
}
.hero-scroll::after {
  content: ""; position: absolute; left: 50%; bottom: 0;
  width: 1px; height: 70px; background: rgba(255, 255, 255, 0.8);
  animation: scrollline 2.2s ease-in-out infinite;
}
@keyframes scrollline { 0% { transform: scaleY(0); transform-origin: top; } 45% { transform: scaleY(1); transform-origin: top; } 55% { transform: scaleY(1); transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* ============================================================
   concept
   ============================================================ */
.concept-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(36px, 6vw, 80px); align-items: center;
}
.concept-photo { position: relative; }
.concept-photo img { border-radius: var(--radius); box-shadow: var(--shadow); aspect-ratio: 4/5; object-fit: cover; width: 100%; }
.concept-photo::before {
  content: ""; position: absolute; inset: 26px -26px -26px 26px;
  border: 1px solid var(--gold); border-radius: var(--radius);
  opacity: 0.45; z-index: -1;
}
.concept-txt h3 {
  font-family: var(--font-serif); font-weight: 500;
  font-size: clamp(22px, 2.6vw, 30px); line-height: 2; letter-spacing: 0.1em;
  margin-bottom: 26px;
}
.concept-txt p { color: var(--ink-soft); font-size: 14.5px; margin-bottom: 18px; }

.feature-list { margin-top: 34px; display: grid; gap: 18px; }
.feature-list li { display: flex; gap: 18px; align-items: flex-start; }
.feature-list .num { font-family: var(--font-en); font-style: italic; font-size: 26px; color: var(--gold); line-height: 1.4; min-width: 38px; }
.feature-list b { display: block; font-size: 15px; letter-spacing: 0.1em; }
.feature-list span { font-size: 13px; color: var(--ink-soft); }

/* ============================================================
   menu (category cards)
   ============================================================ */
.menu-bg { background: var(--white); }
.menu-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px, 2vw, 26px); }
.menu-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.5s var(--ease), box-shadow 0.5s;
  background: var(--cream-deep);
  display: block;
}
.menu-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.menu-card .ph { aspect-ratio: 3/3.6; overflow: hidden; }
.menu-card .ph img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.menu-card:hover .ph img { transform: scale(1.06); }
.menu-card .body { padding: 20px 20px 24px; background: var(--white); }
.menu-card .en { font-family: var(--font-en); font-size: 19px; letter-spacing: 0.12em; font-weight: 600; line-height: 1.3; }
.menu-card .jp { font-size: 11.5px; color: var(--ink-soft); letter-spacing: 0.16em; margin-top: 4px; }
.menu-card .price { margin-top: 10px; font-size: 12.5px; color: var(--gold-deep); letter-spacing: 0.08em; }
.menu-card .arw {
  position: absolute; right: 16px; bottom: 18px;
  width: 30px; height: 30px; border: 1px solid var(--gold); border-radius: 50%;
  display: grid; place-items: center; color: var(--gold);
  transition: background 0.4s, color 0.4s;
  font-size: 13px;
}
.menu-card:hover .arw { background: var(--gold); color: #fff; }

/* ============================================================
   milestone timeline
   ============================================================ */
.timeline { background: linear-gradient(180deg, var(--white), var(--cream)); }
.tl-track {
  display: grid; grid-template-columns: repeat(7, 1fr);
  position: relative; margin-top: 20px;
}
.tl-track::before {
  content: ""; position: absolute; top: 9px; left: 7%; right: 7%;
  height: 1px; background: var(--gold); opacity: 0.4;
}
.tl-item { text-align: center; position: relative; padding-top: 34px; }
.tl-item::before {
  content: ""; position: absolute; top: 4px; left: 50%; transform: translateX(-50%);
  width: 11px; height: 11px; border-radius: 50%;
  background: var(--cream); border: 2px solid var(--gold);
}
.tl-item .age { font-family: var(--font-en); font-size: 12px; letter-spacing: 0.12em; color: var(--gold-deep); display: block; line-height: 1.5; }
.tl-item .nm { font-size: 12.5px; letter-spacing: 0.1em; display: block; margin-top: 4px; }
.tl-item a:hover .nm { color: var(--gold-deep); }

/* ============================================================
   gallery
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  grid-auto-flow: dense;
  gap: 14px;
}
.g-item { border-radius: 16px; overflow: hidden; position: relative; }
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s var(--ease); }
.g-item:hover img { transform: scale(1.07); }
.g-tall { grid-row: span 2; }
.g-wide { grid-column: span 2; }

/* concept message & signature */
.concept-message {
  font-family: var(--font-serif);
  font-size: 16.5px; line-height: 2.3; letter-spacing: 0.12em;
  color: var(--ink); margin-bottom: 20px !important;
}
.signature {
  margin-top: 28px;
  font-family: var(--font-en); font-style: italic;
  font-size: 19px; letter-spacing: 0.08em; color: var(--gold-deep);
}
.signature span { font-size: 12.5px; color: var(--ink-soft); margin-left: 10px; letter-spacing: 0.16em; }

/* ============================================================
   access
   ============================================================ */
.access-bg { background: var(--white); }
.access-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(28px, 4vw, 56px); align-items: stretch; }
.access-info { display: flex; flex-direction: column; }

.review-badge {
  display: inline-flex; align-items: baseline; gap: 12px; flex-wrap: wrap;
  background: linear-gradient(120deg, var(--cream-deep), var(--blush));
  border-radius: 16px; padding: 18px 24px; margin-bottom: 14px;
}
.review-badge .stars { color: var(--gold); font-size: 17px; letter-spacing: 0.14em; }
.review-badge b { font-family: var(--font-en); font-size: 32px; font-weight: 600; line-height: 1; }
.review-badge .cnt { font-size: 12.5px; color: var(--ink-soft); letter-spacing: 0.08em; }
.review-note { font-size: 13.5px; color: var(--ink-soft); margin-bottom: 26px; }
.review-note a { color: var(--gold-deep); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }

.access-dl { display: grid; grid-template-columns: auto 1fr; gap: 10px 22px; font-size: 13.5px; margin-bottom: 26px; }
.access-dl dt { font-size: 11.5px; letter-spacing: 0.22em; color: var(--gold-deep); padding-top: 3px; white-space: nowrap; }
.access-dl dd { line-height: 1.9; }

.btn-map {
  display: inline-flex; align-items: center; gap: 9px;
  border: 1px solid var(--gold); color: var(--gold-deep);
  padding: 12px 26px; border-radius: 999px;
  font-size: 13px; font-weight: 700; letter-spacing: 0.12em;
  transition: background 0.35s, color 0.35s;
  align-self: flex-start;
}
.btn-map:hover { background: var(--gold); color: #fff; }
.btn-map svg { width: 15px; height: 15px; fill: currentColor; }

.access-chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 22px 0 0; }
.access-chips span {
  font-size: 11.5px; letter-spacing: 0.08em;
  background: var(--cream); border: 1px solid var(--line);
  padding: 6px 14px; border-radius: 999px; color: var(--ink-soft);
}

.access-map { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-soft); min-height: 340px; }
.access-map iframe { width: 100%; height: 100%; min-height: 340px; border: 0; display: block; }

.footer .map-link { color: var(--gold-deep); font-weight: 700; }
.footer .map-link:hover { text-decoration: underline; text-underline-offset: 3px; }

/* sns links */
.sns-links { display: flex; gap: 12px; margin-top: 18px; }
.sns-links a {
  width: 40px; height: 40px;
  border: 1px solid var(--gold); border-radius: 50%;
  display: grid; place-items: center;
  color: var(--gold-deep);
  transition: background 0.35s, color 0.35s, transform 0.35s;
}
.sns-links a svg { width: 18px; height: 18px; }
.sns-links a:hover { background: var(--gold); color: #fff; transform: translateY(-2px); }
.access-dl dd .sns-inline { color: var(--gold-deep); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }

@media (max-width: 768px) {
  .access-grid { grid-template-columns: 1fr; }
  .access-map { min-height: 260px; }
}

/* ============================================================
   flow
   ============================================================ */
.flow-bg { background: var(--white); }
.flow-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; counter-reset: fl; }
.flow-step {
  background: var(--cream); border-radius: var(--radius);
  padding: 30px 22px 28px; text-align: center; position: relative;
  counter-increment: fl;
}
.flow-step::before {
  content: "0" counter(fl);
  font-family: var(--font-en); font-style: italic;
  font-size: 30px; color: var(--gold); display: block; margin-bottom: 10px;
}
.flow-step b { display: block; font-size: 14.5px; letter-spacing: 0.12em; margin-bottom: 10px; }
.flow-step p { font-size: 12.5px; color: var(--ink-soft); line-height: 1.9; text-align: left; }
.flow-step:not(:last-child)::after {
  content: ""; position: absolute; top: 50%; right: -14px;
  width: 10px; height: 10px;
  border-top: 1px solid var(--gold); border-right: 1px solid var(--gold);
  transform: translateY(-50%) rotate(45deg);
}

/* ============================================================
   faq
   ============================================================ */
.faq-list { max-width: 780px; margin: 0 auto; display: grid; gap: 14px; }
details.qa {
  background: var(--white); border: 1px solid var(--line);
  border-radius: 16px; overflow: hidden;
  transition: box-shadow 0.4s;
}
details.qa[open] { box-shadow: var(--shadow-soft); }
details.qa summary {
  cursor: pointer; list-style: none;
  padding: 20px 56px 20px 24px; position: relative;
  font-size: 14.5px; font-weight: 700; letter-spacing: 0.08em;
  display: flex; gap: 14px; align-items: baseline;
}
details.qa summary::-webkit-details-marker { display: none; }
details.qa summary .q { font-family: var(--font-en); font-style: italic; color: var(--gold); font-size: 19px; }
details.qa summary::after {
  content: "+"; position: absolute; right: 22px; top: 50%; transform: translateY(-50%);
  font-family: var(--font-en); font-size: 22px; color: var(--gold);
  transition: transform 0.4s var(--ease);
}
details.qa[open] summary::after { transform: translateY(-50%) rotate(45deg); }
details.qa .a { padding: 0 24px 22px 58px; font-size: 13.5px; color: var(--ink-soft); }

/* ============================================================
   cta band
   ============================================================ */
.cta-band {
  position: relative; overflow: hidden;
  background: linear-gradient(120deg, #3e352c, #5a4c3d);
  color: #fff; text-align: center;
  padding: clamp(70px, 9vw, 110px) 0;
}
.cta-band::before {
  content: "LAULE'A"; position: absolute; inset: auto 0 -30px;
  font-family: var(--font-en); font-style: italic; font-size: clamp(90px, 16vw, 200px);
  letter-spacing: 0.1em; color: rgba(255, 255, 255, 0.05);
  line-height: 1; pointer-events: none;
}
.cta-band h2 { font-family: var(--font-serif); font-weight: 500; font-size: clamp(20px, 3vw, 30px); letter-spacing: 0.16em; line-height: 2; }
.cta-band p { margin: 18px auto 34px; font-size: 13.5px; opacity: 0.85; max-width: 560px; }
.cta-band .btn-line { font-size: 15px; padding: 16px 42px; }
.cta-band .note { margin-top: 18px; font-size: 11.5px; opacity: 0.6; letter-spacing: 0.12em; }

/* ============================================================
   footer
   ============================================================ */
.footer { background: var(--cream); padding: 64px 0 34px; border-top: 1px solid var(--line); }
.footer-in { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.footer .logo .en { font-size: 26px; }
.footer .addr { margin-top: 16px; font-size: 12.5px; color: var(--ink-soft); line-height: 2.1; }
.fnav { display: flex; gap: 26px; flex-wrap: wrap; align-items: flex-start; }
.fnav a { font-family: var(--font-en); font-size: 13px; letter-spacing: 0.14em; font-weight: 600; }
.fnav a:hover { color: var(--gold-deep); }
.copy { text-align: center; margin-top: 50px; font-family: var(--font-en); font-size: 11px; letter-spacing: 0.2em; color: var(--ink-soft); }

/* floating LINE */
.float-line {
  position: fixed; right: 18px; bottom: 18px; z-index: 90;
  box-shadow: 0 14px 30px -10px rgba(6, 199, 85, 0.55);
  opacity: 0; transform: translateY(16px); pointer-events: none;
  transition: opacity 0.5s, transform 0.5s;
}
.float-line.show { opacity: 1; transform: none; pointer-events: auto; }

/* ============================================================
   PLAN PAGE
   ============================================================ */
.page-hero {
  padding: 170px 0 70px; text-align: center;
  background: linear-gradient(180deg, var(--cream-deep), var(--cream));
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: attr(data-en); position: absolute; top: 40px; left: 50%; transform: translateX(-50%);
  font-family: var(--font-en); font-style: italic;
  font-size: clamp(70px, 13vw, 150px); line-height: 1; white-space: nowrap;
  color: rgba(195, 162, 111, 0.1); pointer-events: none;
}
.page-hero h1 { font-family: var(--font-en); font-size: clamp(38px, 5.4vw, 58px); font-weight: 500; letter-spacing: 0.14em; position: relative; }
.page-hero .jp { display: block; margin-top: 12px; font-size: 13px; letter-spacing: 0.3em; color: var(--ink-soft); position: relative; }
.page-hero .lead { max-width: 620px; margin: 28px auto 0; font-size: 13.5px; color: var(--ink-soft); position: relative; }

/* age navi */
.agenav { padding: 44px 0 10px; }
.agenav-ttl { text-align: center; font-size: 13px; letter-spacing: 0.26em; color: var(--ink-soft); margin-bottom: 22px; }
.agenav-ttl b { color: var(--gold-deep); }
.age-chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.age-chip {
  display: inline-flex; flex-direction: column; align-items: center;
  padding: 10px 20px; background: var(--white);
  border: 1px solid var(--line); border-radius: 16px;
  transition: border-color 0.35s, box-shadow 0.35s, transform 0.35s;
  min-width: 108px;
}
.age-chip:hover { border-color: var(--gold); box-shadow: var(--shadow-soft); transform: translateY(-3px); }
.age-chip .age { font-family: var(--font-en); font-size: 11px; letter-spacing: 0.14em; color: var(--gold-deep); }
.age-chip .nm { font-size: 12.5px; font-weight: 700; letter-spacing: 0.08em; }

/* sticky category tabs */
.cattabs {
  position: sticky; top: 0; z-index: 80;
  background: rgba(255, 253, 249, 0.94); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  margin-top: 34px;
}
.cattabs-in { display: flex; justify-content: center; gap: clamp(4px, 2vw, 20px); overflow-x: auto; }
.cattab {
  padding: 16px clamp(10px, 1.6vw, 18px); white-space: nowrap;
  font-family: var(--font-en); font-size: 13.5px; font-weight: 600; letter-spacing: 0.12em;
  position: relative; color: var(--ink-soft);
}
.cattab::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: -1px;
  height: 2px; background: var(--gold); transform: scaleX(0);
  transition: transform 0.4s var(--ease);
}
.cattab.act { color: var(--ink); }
.cattab.act::after { transform: scaleX(1); }

/* plan category section */
.pcat { padding: clamp(64px, 8vw, 100px) 0 30px; }
.pcat-head { display: flex; align-items: baseline; gap: 20px; margin-bottom: 14px; flex-wrap: wrap; }
.pcat-head .en { font-family: var(--font-en); font-size: clamp(30px, 3.6vw, 42px); font-weight: 500; letter-spacing: 0.12em; }
.pcat-head .en i { font-style: italic; color: var(--gold); }
.pcat-head .jp { font-size: 12.5px; letter-spacing: 0.24em; color: var(--ink-soft); }
.pcat-desc { max-width: 720px; color: var(--ink-soft); font-size: 13.5px; margin-bottom: 44px; }
.pcat-note {
  display: inline-block; margin-bottom: 40px;
  background: var(--blush); color: #8c6a56;
  font-size: 12px; letter-spacing: 0.1em;
  padding: 8px 18px; border-radius: 999px;
}

/* category banner */
.pcat-banner {
  height: clamp(150px, 22vw, 230px); border-radius: var(--radius);
  overflow: hidden; margin-bottom: 44px; box-shadow: var(--shadow-soft);
}
.pcat-banner img { width: 100%; height: 100%; object-fit: cover; }

/* plan cards */
.plan-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2.4vw, 28px); }
.plan-grid.g2 { grid-template-columns: repeat(2, 1fr); max-width: 820px; }
.plan-card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-soft); display: flex; flex-direction: column;
  transition: transform 0.5s var(--ease), box-shadow 0.5s;
  position: relative;
  border-top: 3px solid var(--gold);
}
.plan-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.plan-card .badge, .prod-card .badge {
  position: absolute; top: 16px; right: 16px; z-index: 2;
  background: var(--gold); color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: 0.14em;
  padding: 6px 14px; border-radius: 999px;
  box-shadow: 0 6px 14px -6px rgba(162, 128, 63, 0.6);
}
.plan-card .body { padding: 28px 26px 26px; display: flex; flex-direction: column; flex: 1; }
.plan-card h3 { font-family: var(--font-serif); font-weight: 600; font-size: 18px; letter-spacing: 0.08em; line-height: 1.6; }
.plan-card .en-sub { font-family: var(--font-en); font-style: italic; font-size: 12.5px; color: var(--gold-deep); letter-spacing: 0.12em; margin-top: 2px; }
.plan-card .desc { font-size: 12.5px; color: var(--ink-soft); margin-top: 12px; line-height: 1.9; }

.price-row { margin-top: 16px; line-height: 1.4; }
.price-row .was { font-size: 12px; color: var(--ink-soft); text-decoration: line-through; text-decoration-color: var(--blush-deep); margin-right: 10px; }
.price-row .now { font-family: var(--font-en); font-size: 27px; font-weight: 600; color: var(--ink); letter-spacing: 0.02em; }
.price-row .tax { font-size: 11px; color: var(--ink-soft); margin-left: 4px; }
.price-row .from { font-size: 12px; color: var(--ink-soft); }
.price-note-sns { font-size: 10.5px; color: var(--gold-deep); letter-spacing: 0.06em; margin-top: 2px; }

.spec-chips { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 14px; }
.spec-chips span {
  font-size: 11px; letter-spacing: 0.06em; color: var(--ink-soft);
  background: var(--cream); border: 1px solid var(--line);
  padding: 4px 12px; border-radius: 999px;
}

.plan-card details { margin-top: auto; padding-top: 16px; }
.plan-card details summary {
  cursor: pointer; list-style: none;
  font-size: 12px; font-weight: 700; letter-spacing: 0.14em;
  color: var(--gold-deep); display: flex; align-items: center; gap: 8px;
}
.plan-card details summary::-webkit-details-marker { display: none; }
.plan-card details summary::after { content: "+"; font-family: var(--font-en); font-size: 16px; transition: transform 0.3s; }
.plan-card details[open] summary::after { transform: rotate(45deg); }
.plan-card details .dtl { font-size: 12px; color: var(--ink-soft); padding-top: 12px; line-height: 1.95; }
.plan-card details .dtl li { padding-left: 16px; position: relative; }
.plan-card details .dtl li::before { content: "—"; position: absolute; left: 0; color: var(--gold); }

.flyer-link {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 16px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.12em;
  color: var(--ink); border: 1px solid var(--line);
  background: var(--cream); border-radius: 999px;
  padding: 9px 20px; cursor: pointer;
  transition: border-color 0.35s, background 0.35s;
  align-self: flex-start;
}
.flyer-link::before { content: "▣"; color: var(--gold); font-size: 13px; }
.flyer-link:hover { border-color: var(--gold); background: #fff; }

/* flyer lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(58, 48, 38, 0.82); backdrop-filter: blur(6px);
  display: grid; place-items: center; padding: 4vh 4vw;
  opacity: 0; pointer-events: none; transition: opacity 0.4s;
}
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox img {
  max-width: min(560px, 92vw); max-height: 90vh; object-fit: contain;
  border-radius: 10px; box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  transform: scale(0.96); transition: transform 0.4s var(--ease);
}
.lightbox.open img { transform: scale(1); }
.lightbox .lb-close {
  position: absolute; top: 18px; right: 22px;
  font-family: var(--font-en); font-size: 34px; color: #fff;
  background: none; border: none; cursor: pointer; line-height: 1;
}
.lightbox .lb-hint { position: absolute; bottom: 18px; left: 0; right: 0; text-align: center; color: rgba(255,255,255,0.75); font-size: 11.5px; letter-spacing: 0.18em; }

/* plan sub-group heading */
.plan-sub {
  font-family: var(--font-serif); font-size: 17.5px; font-weight: 600;
  letter-spacing: 0.14em; color: var(--ink);
  margin: 56px 0 22px; display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap;
}
.plan-sub::before { content: ""; width: 26px; height: 1px; background: var(--gold); align-self: center; }
.plan-sub .en-note {
  font-family: var(--font-en); font-style: italic; font-weight: 400;
  font-size: 12.5px; letter-spacing: 0.16em; color: var(--gold-deep);
}

/* comparison table */
.cmp-wrap { margin: 54px 0 10px; overflow-x: auto; border-radius: var(--radius); box-shadow: var(--shadow-soft); }
table.cmp { width: 100%; border-collapse: collapse; background: var(--white); min-width: 720px; }
table.cmp th, table.cmp td { padding: 16px 14px; text-align: center; border-bottom: 1px solid var(--line); font-size: 13px; }
table.cmp thead th { background: var(--cream-deep); font-family: var(--font-serif); font-size: 14.5px; letter-spacing: 0.1em; }
table.cmp thead th.hl { background: var(--gold); color: #fff; position: relative; }
table.cmp tbody th { background: var(--cream); font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-align: left; padding-left: 20px; white-space: nowrap; }
table.cmp td.hl { background: rgba(195, 162, 111, 0.07); }
table.cmp .pr { font-family: var(--font-en); font-size: 19px; font-weight: 600; }
table.cmp .sm { font-size: 11px; color: var(--ink-soft); display: block; }
.cmp-cap { text-align: center; font-size: 12px; color: var(--ink-soft); margin-top: 16px; letter-spacing: 0.08em; }

/* set price table */
.set-table-wrap { margin-top: 40px; }
.set-table-wrap h4 { font-family: var(--font-serif); font-size: 17px; letter-spacing: 0.12em; margin-bottom: 6px; font-weight: 600; }
.set-table-wrap .cap { font-size: 12px; color: var(--ink-soft); margin-bottom: 18px; }
table.set { width: 100%; border-collapse: collapse; background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-soft); }
table.set th, table.set td { padding: 15px 18px; border-bottom: 1px solid var(--line); font-size: 13.5px; text-align: left; }
table.set thead th { background: var(--cream-deep); font-size: 12px; letter-spacing: 0.14em; }
table.set td.pr { font-family: var(--font-en); font-size: 17px; font-weight: 600; text-align: right; white-space: nowrap; }
table.set td .sm { font-size: 11px; color: var(--ink-soft); }

/* options */
.opt-sec { background: var(--white); padding: clamp(64px, 8vw, 100px) 0; margin-top: 60px; }
.opt-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; align-items: start; }
.opt-box { background: var(--cream); border-radius: var(--radius); padding: 30px 30px 26px; }
.opt-box h4 { font-family: var(--font-serif); font-size: 16px; letter-spacing: 0.14em; margin-bottom: 16px; font-weight: 600; display: flex; align-items: center; gap: 12px; }
.opt-box h4::before { content: ""; width: 22px; height: 1px; background: var(--gold); }
.opt-box li { display: flex; justify-content: space-between; gap: 14px; padding: 9px 0; border-bottom: 1px dashed var(--line); font-size: 13px; }
.opt-box li:last-child { border-bottom: none; }
.opt-box li .pr { font-family: var(--font-en); font-weight: 600; white-space: nowrap; color: var(--ink); }

/* ============================================================
   PRODUCTS PAGE
   ============================================================ */
.prod-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(20px, 2.6vw, 32px); }
.prod-card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-soft); display: flex; flex-direction: column;
  transition: transform 0.5s var(--ease), box-shadow 0.5s;
  position: relative;
}
.prod-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.prod-card .ph { aspect-ratio: 3/2; overflow: hidden; position: relative; background: var(--cream-deep); }
.prod-card .ph img { width: 100%; height: 100%; object-fit: cover; }

/* product mini slideshow */
.prod-slides { position: absolute; inset: 0; cursor: zoom-in; }
.prod-slides img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transition: opacity 0.9s var(--ease);
}
.prod-slides img.act { opacity: 1; }
.prod-dots {
  position: absolute; left: 0; right: 0; bottom: 12px; z-index: 3;
  display: flex; justify-content: center; gap: 7px;
}
.prod-dots button {
  width: 7px; height: 7px; padding: 0; border: none; border-radius: 50%;
  background: rgba(255, 255, 255, 0.55); cursor: pointer;
  box-shadow: 0 1px 4px rgba(60, 45, 30, 0.35);
  transition: background 0.3s, transform 0.3s;
}
.prod-dots button.act { background: #fff; transform: scale(1.35); }
.prod-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  width: 34px; height: 34px; border-radius: 50%; border: none;
  background: rgba(255, 253, 249, 0.85); color: var(--gold-deep);
  font-size: 14px; cursor: pointer;
  display: grid; place-items: center;
  opacity: 0; transition: opacity 0.35s, background 0.3s;
  box-shadow: var(--shadow-soft);
}
.prod-card:hover .prod-arrow { opacity: 1; }
.prod-arrow:hover { background: var(--gold); color: #fff; }
.prod-arrow.pv { left: 12px; }
.prod-arrow.nx { right: 12px; }
.prod-count {
  position: absolute; top: 14px; left: 14px; z-index: 3;
  background: rgba(62, 53, 44, 0.55); color: #fff;
  font-family: var(--font-en); font-size: 11.5px; letter-spacing: 0.1em;
  padding: 4px 11px; border-radius: 999px; backdrop-filter: blur(4px);
}
@media (max-width: 768px) { .prod-arrow { opacity: 1; width: 30px; height: 30px; } }
.prod-ph-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--cream-deep), var(--blush) 60%, var(--cream-deep));
  display: grid; place-items: center;
}
.prod-ph-placeholder .inner { text-align: center; color: var(--gold-deep); }
.prod-ph-placeholder .inner svg { width: 44px; height: 44px; stroke: var(--gold); opacity: 0.8; }
.prod-ph-placeholder .inner span {
  display: block; margin-top: 8px;
  font-family: var(--font-en); font-style: italic;
  font-size: 12px; letter-spacing: 0.22em;
}
.prod-card .body { padding: 26px 28px 28px; display: flex; flex-direction: column; flex: 1; }
.prod-card .cat-tag {
  font-family: var(--font-en); font-style: italic; font-size: 12px;
  letter-spacing: 0.18em; color: var(--gold-deep); margin-bottom: 6px;
}
.prod-card h3 { font-family: var(--font-serif); font-weight: 600; font-size: 19px; letter-spacing: 0.08em; line-height: 1.6; }
.prod-card .desc { font-size: 13px; color: var(--ink-soft); margin-top: 10px; line-height: 1.95; }
.prod-card .reco {
  margin-top: 12px; font-size: 11.5px; color: var(--gold-deep);
  background: rgba(195, 162, 111, 0.09); border-radius: 10px; padding: 8px 14px;
  letter-spacing: 0.06em;
}
table.sizes { width: 100%; border-collapse: collapse; margin-top: 18px; }
table.sizes th, table.sizes td { padding: 10px 6px; border-bottom: 1px dashed var(--line); font-size: 13px; text-align: left; }
table.sizes thead th {
  font-size: 10.5px; letter-spacing: 0.18em; color: var(--ink-soft);
  border-bottom: 1px solid var(--line); font-weight: 500; padding-bottom: 7px;
}
table.sizes td.pr { font-family: var(--font-en); font-size: 15.5px; font-weight: 600; text-align: right; white-space: nowrap; }
table.sizes tr:last-child td { border-bottom: none; }
table.sizes .sm { font-size: 11px; color: var(--ink-soft); }
table.sizes td.spec-val { text-align: right; font-size: 13px; font-weight: 500; }
table.sizes td:first-child { color: var(--ink-soft); font-size: 12px; letter-spacing: 0.08em; white-space: nowrap; }

.voucher-band {
  background: linear-gradient(120deg, var(--cream-deep), var(--blush));
  border-radius: var(--radius); padding: clamp(28px, 4vw, 44px);
  display: flex; align-items: center; gap: clamp(20px, 3vw, 40px);
  margin-bottom: clamp(44px, 6vw, 64px);
}
.voucher-band .tk {
  font-family: var(--font-en); font-style: italic;
  font-size: clamp(30px, 4vw, 44px); color: var(--gold-deep); line-height: 1.1;
  min-width: 130px; text-align: center;
}
.voucher-band b { display: block; font-size: 16px; letter-spacing: 0.1em; margin-bottom: 8px; font-family: var(--font-serif); }
.voucher-band p { font-size: 13px; color: var(--ink-soft); }

@media (max-width: 768px) {
  .prod-grid { grid-template-columns: 1fr; }
  .voucher-band { flex-direction: column; text-align: center; }
}

/* common notes */
.notes { max-width: 820px; margin: 60px auto 0; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 34px; }
.notes h4 { font-size: 14px; letter-spacing: 0.2em; margin-bottom: 14px; color: var(--gold-deep); }
.notes li { font-size: 12.5px; color: var(--ink-soft); padding: 5px 0 5px 18px; position: relative; }
.notes li::before { content: "※"; position: absolute; left: 0; color: var(--gold); }

/* ============================================================
   RYUSOU PAGE
   ============================================================ */
:root { --kurenai: #a8473e; }

.ryusou-hero { position: relative; height: 92svh; min-height: 560px; overflow: hidden; }
.ryusou-hero .bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center 30%;
  animation: kenburns 12s ease-out forwards;
}
.ryusou-hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(62, 44, 38, 0.5), rgba(62, 44, 38, 0.06) 55%);
}
.ryusou-hero .copy {
  position: absolute; z-index: 2; left: clamp(24px, 6vw, 90px); bottom: clamp(70px, 12vh, 130px);
  color: #fff;
}
.ryusou-hero .copy .en {
  font-family: var(--font-en); font-style: italic;
  font-size: clamp(14px, 1.7vw, 18px); letter-spacing: 0.3em;
  margin-bottom: 16px; text-shadow: 0 1px 18px rgba(60, 30, 20, 0.5);
}
.ryusou-hero .copy h1 {
  font-family: var(--font-serif); font-weight: 500;
  font-size: clamp(25px, 4.2vw, 44px); line-height: 1.9; letter-spacing: 0.12em;
  text-shadow: 0 2px 30px rgba(60, 30, 20, 0.45);
}
.ryusou-hero .copy .sub { margin-top: 16px; font-size: clamp(12px, 1.4vw, 14px); letter-spacing: 0.2em; opacity: 0.94; text-shadow: 0 1px 16px rgba(60, 30, 20, 0.5); }

/* story sections */
.story { padding: clamp(70px, 9vw, 120px) 0; }
.story:nth-child(even) { background: var(--white); }
.story-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(36px, 6vw, 80px); align-items: center; }
.story-grid.rev { grid-template-columns: 1.1fr 0.9fr; }
.story-grid .ph { position: relative; }
.story-grid .ph img {
  border-radius: var(--radius); box-shadow: var(--shadow);
  width: 100%; aspect-ratio: 4/5; object-fit: cover;
}
.story-grid .ph::before {
  content: ""; position: absolute; inset: 22px -22px -22px 22px;
  border: 1px solid var(--kurenai); opacity: 0.3; border-radius: var(--radius); z-index: -1;
}
.story-grid.rev .ph::before { inset: 22px 22px -22px -22px; }
.story-txt .eyebrow {
  font-family: var(--font-en); font-style: italic;
  font-size: 13px; letter-spacing: 0.26em; color: var(--kurenai);
  margin-bottom: 16px; display: flex; align-items: center; gap: 14px;
}
.story-txt .eyebrow::after { content: ""; width: 36px; height: 1px; background: var(--kurenai); opacity: 0.5; }
.story-txt h2 {
  font-family: var(--font-serif); font-weight: 500;
  font-size: clamp(21px, 2.6vw, 29px); line-height: 1.95; letter-spacing: 0.1em;
  margin-bottom: 24px;
}
.story-txt p { color: var(--ink-soft); font-size: 14px; margin-bottom: 16px; }
.story-txt p b { color: var(--ink); }

.ryusou-chips { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 24px; }
.ryusou-chips span {
  font-size: 12px; letter-spacing: 0.08em; font-weight: 700;
  background: var(--white); border: 1px solid var(--line);
  border-left: 3px solid var(--kurenai);
  padding: 8px 16px; border-radius: 6px; color: var(--ink);
}

/* slideshow */
.ss-sec { background: linear-gradient(180deg, var(--cream), var(--cream-deep)); }
.slideshow { position: relative; max-width: 480px; margin: 0 auto; }
.ss-stage {
  position: relative; aspect-ratio: 2/3;
  border-radius: var(--radius); overflow: hidden;
  background: var(--cream-deep);
  box-shadow: var(--shadow);
}
.ss-stage .ss-slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity 1s var(--ease);
}
.ss-stage .ss-slide.act { opacity: 1; }
.ss-stage .ss-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.ss-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(255, 253, 249, 0.92); border: 1px solid var(--line);
  cursor: pointer; display: grid; place-items: center;
  color: var(--gold-deep); font-size: 17px;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
  box-shadow: var(--shadow-soft);
}
.ss-arrow:hover { background: var(--gold); color: #fff; border-color: var(--gold); }
.ss-prev { left: -23px; }
.ss-next { right: -23px; }
.ss-dots { display: flex; justify-content: center; gap: 9px; margin-top: 26px; flex-wrap: wrap; }
.ss-dots button {
  width: 9px; height: 9px; border-radius: 50%;
  border: none; background: var(--line); cursor: pointer;
  transition: background 0.3s, transform 0.3s; padding: 0;
}
.ss-dots button.act { background: var(--kurenai); transform: scale(1.35); }
.ss-count {
  text-align: center; margin-top: 12px;
  font-family: var(--font-en); font-style: italic;
  font-size: 13px; letter-spacing: 0.24em; color: var(--ink-soft);
}

/* ryusou price band */
.ryusou-price { background: var(--white); }
.rp-box {
  max-width: 860px; margin: 0 auto;
  border: 1px solid var(--line); border-top: 3px solid var(--kurenai);
  border-radius: var(--radius); background: var(--cream);
  padding: clamp(30px, 5vw, 50px); text-align: center;
  box-shadow: var(--shadow-soft);
}
.rp-box .nm { font-family: var(--font-serif); font-size: 21px; letter-spacing: 0.14em; font-weight: 600; }
.rp-box .price-row { margin: 14px 0 6px; }
.rp-box .spec-chips { justify-content: center; margin-top: 16px; }
.rp-box .also { margin-top: 26px; font-size: 13px; color: var(--ink-soft); line-height: 2.1; }
.rp-box .also b { color: var(--ink); }
.btn-gold {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 26px;
  background: var(--gold); color: #fff;
  padding: 14px 36px; border-radius: 999px;
  font-size: 13.5px; font-weight: 700; letter-spacing: 0.14em;
  box-shadow: 0 12px 26px -10px rgba(162, 128, 63, 0.6);
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 16px 30px -10px rgba(162, 128, 63, 0.65); }

/* index: ryusou feature band */
.ryusou-band { position: relative; overflow: hidden; padding: clamp(90px, 13vw, 170px) 0; }
.ryusou-band .bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center 32%;
}
.ryusou-band::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(62, 44, 38, 0.62), rgba(62, 44, 38, 0.18) 65%, rgba(62, 44, 38, 0.05));
}
.ryusou-band .wrap { position: relative; z-index: 2; color: #fff; }
.ryusou-band .en {
  font-family: var(--font-en); font-style: italic;
  font-size: 14px; letter-spacing: 0.3em; margin-bottom: 16px; opacity: 0.95;
}
.ryusou-band h2 {
  font-family: var(--font-serif); font-weight: 500;
  font-size: clamp(22px, 3.4vw, 34px); line-height: 1.9; letter-spacing: 0.12em;
  text-shadow: 0 2px 24px rgba(60, 30, 20, 0.4);
}
.ryusou-band p { margin-top: 16px; font-size: 13.5px; letter-spacing: 0.12em; opacity: 0.92; max-width: 480px; }
.ryusou-band .btn-gold { margin-top: 30px; }

@media (max-width: 768px) {
  .story-grid, .story-grid.rev { grid-template-columns: 1fr; }
  .story-grid .ph { max-width: 400px; margin: 0 auto; }
  .ss-prev { left: 8px; }
  .ss-next { right: 8px; }
}

/* ============================================================
   responsive
   ============================================================ */
@media (max-width: 1024px) {
  .plan-grid { grid-template-columns: repeat(2, 1fr); }
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .flow-grid { grid-template-columns: repeat(3, 1fr); }
  .flow-step:nth-child(3)::after { display: none; }
}

@media (max-width: 768px) {
  html { scroll-padding-top: 130px; }
  body { font-size: 14.5px; }

  .gnav {
    position: fixed; inset: 0; z-index: 99;
    background: rgba(250, 246, 240, 0.98); backdrop-filter: blur(16px);
    flex-direction: column; justify-content: center; gap: 30px;
    opacity: 0; pointer-events: none; transition: opacity 0.45s;
  }
  .gnav.open { opacity: 1; pointer-events: auto; }
  .gnav a.nv { font-size: 19px; }

  .menu-btn {
    display: block; position: relative; z-index: 100;
    width: 44px; height: 44px; background: none; border: none; cursor: pointer;
  }
  .menu-btn span {
    position: absolute; left: 10px; right: 10px; height: 1.5px;
    background: var(--ink); transition: transform 0.4s var(--ease), opacity 0.3s;
  }
  .menu-btn span:nth-child(1) { top: 16px; }
  .menu-btn span:nth-child(2) { top: 22px; }
  .menu-btn span:nth-child(3) { top: 28px; }
  .menu-btn.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .menu-btn.open span:nth-child(2) { opacity: 0; }
  .menu-btn.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .header .btn-line { display: none; }

  .hero-copy { left: 24px; right: 24px; bottom: 110px; }
  .concept-grid { grid-template-columns: 1fr; }
  .concept-photo { max-width: 420px; margin: 0 auto; }

  .tl-track { grid-template-columns: repeat(4, 1fr); gap: 18px 0; }
  .tl-track::before { display: none; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .flow-grid { grid-template-columns: 1fr 1fr; }
  .flow-step:nth-child(odd)::after { display: none; }
  .flow-step:nth-child(2)::after { display: none; }
  .flow-step:nth-child(4)::after { display: none; }

  .plan-grid, .plan-grid.g2 { grid-template-columns: 1fr; }
  .opt-grid { grid-template-columns: 1fr; }
  .menu-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .menu-card .body { padding: 14px 14px 18px; }
  .menu-card .en { font-size: 15px; }
  .menu-card .arw { display: none; }

  .footer-in { flex-direction: column; gap: 28px; }
  .cattabs-in { justify-content: flex-start; padding: 0 10px; }
}
