/* ============================================================
   仏蘭西菓子 タンプルタン — 町の洋菓子店
   世界観: フランス菓子の本格さ × 町のケーキ屋さんの温かさ。
   白×やわらかいティファニーブルー×クリーム色。
   上品だけど敷居は低く、子ども連れのお母さんが入りやすい。
   ============================================================ */
:root {
  --bg: #fbfdfe;            /* ほぼ白・ごく淡い水色 */
  --bg2: #eef8f8;           /* やわらかいブルーの面 */
  --cream: #fdf7ec;         /* クリーム色 */
  --surface: #ffffff;
  --ink: #3a4a52;           /* やわらかいダークグレーブルー(黒は使わない) */
  --ink-soft: #7c8a91;
  --blue: #8ad5d3;          /* ティファニーブルー系パステル */
  --blue-deep: #4ab3b0;     /* アクセント */
  --pink: #f5c6cf;          /* ほんのりピンク差し色 */
  --line: rgba(74, 179, 176, 0.18);
  --line-strong: rgba(74, 179, 176, 0.4);
  /* greige系の旧変数名も新配色にエイリアスして全体整合 */
  --greige: var(--blue);
  --greige-deep: var(--blue-deep);
  --serif: "Zen Maru Gothic", "Hiragino Maru Gothic ProN", "Noto Sans JP", sans-serif;
  --sans: "Zen Maru Gothic", "Hiragino Kaku Gothic ProN", sans-serif;
  --latin: "Cormorant Garamond", "Times New Roman", serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 2.1;
  font-size: 15px;
  letter-spacing: 0.04em;
  -webkit-font-smoothing: antialiased;
}

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

.container { max-width: 1080px; margin: 0 auto; padding: 0 28px; }
.container.narrow { max-width: 820px; }

/* ---------- ヘッダー ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 30px 0;
  transition: background 0.6s ease, padding 0.6s ease, box-shadow 0.6s ease;
}
.site-header.scrolled {
  background: rgba(251, 253, 254, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 16px 0;
  box-shadow: 0 1px 0 var(--line), 0 6px 20px rgba(74, 179, 176, 0.06);
}
.header-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand { display: flex; flex-direction: column; gap: 1px; z-index: 102; }
.brand-name {
  font-family: var(--serif);
  font-size: 1.16rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.brand-tag {
  font-family: var(--latin);
  font-style: italic;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.34em;
  color: var(--greige-deep);
}
.global-nav { display: flex; align-items: center; gap: 32px; }
.global-nav a {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  position: relative;
  padding: 4px 0;
  transition: color 0.35s;
}
.global-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 100%; height: 1px;
  background: var(--greige-deep);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.global-nav a:hover { color: var(--greige-deep); }
.global-nav a:hover::after,
.global-nav a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
.global-nav a[aria-current="page"] { color: var(--greige-deep); }
.global-nav .nav-cta {
  border: 1px solid var(--blue-deep);
  color: var(--blue-deep);
  border-radius: 999px;
  padding: 11px 30px;
  letter-spacing: 0.22em;
  transition: background 0.45s, color 0.45s, border-color 0.45s;
}
.global-nav .nav-cta:hover { background: var(--blue-deep); color: #fff; }
.global-nav .nav-cta::after { display: none; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  width: 44px; height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 102;
}
.nav-toggle span {
  display: block;
  width: 28px; height: 1px;
  background: var(--ink);
  margin: 0 auto;
  transition: transform 0.4s, opacity 0.3s;
}
body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }
body.nav-open { overflow: hidden; }

/* ---------- ヒーロー(トップ) ---------- */
.hero {
  position: relative;
  height: auto;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: 120px;
  padding-bottom: 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  animation: heroZoom 20s ease-out forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.07); }
  to { transform: scale(1); }
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(251, 253, 254, 0.28) 0%, rgba(251, 253, 254, 0.06) 38%, rgba(251, 253, 254, 0.6) 82%, var(--bg) 100%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 880px;
  margin: 0 auto;
  padding: 38px 40px;
  color: var(--ink);
  text-shadow: 0 1px 18px rgba(255, 255, 255, 0.9), 0 1px 2px rgba(255, 255, 255, 0.9);
}
.hero-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.82) 0%, rgba(255, 255, 255, 0.55) 55%, rgba(255, 255, 255, 0) 80%);
  border-radius: 50%;
  z-index: -1;
}
.hero-eyebrow {
  font-family: var(--latin);
  font-style: italic;
  font-size: clamp(0.92rem, 1.6vw, 1.15rem);
  font-weight: 400;
  letter-spacing: 0.3em;
  margin-bottom: 26px;
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.1rem, 5.2vw, 3.6rem);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-indent: 0.1em;
  margin-bottom: 30px;
}
.hero-sub {
  font-family: var(--serif);
  font-size: clamp(0.92rem, 1.8vw, 1.08rem);
  font-weight: 400;
  letter-spacing: 0.24em;
  margin-bottom: 48px;
}
.hero-divider {
  width: 1px; height: 56px;
  background: var(--blue-deep);
  opacity: 0.55;
  margin: 0 auto 48px;
}
.hero-actions { display: flex; gap: 20px; flex-wrap: wrap; justify-content: center; }
/* 写真の上に置くゴーストボタン ─ 上質感を保ちつつ半透明の暗色ガラスを敷き、
   明るいケーキ写真の上でも白文字が確実に読めるコントラストにする */
.hero-actions .btn:not(.btn-solid) {
  border-color: rgba(255, 255, 255, 0.85);
  color: #fff;
  background: rgba(38, 52, 58, 0.44);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
}
.hero-actions .btn:not(.btn-solid):hover { color: #fff; border-color: var(--blue-deep); }
.hero-actions .btn:not(.btn-solid)::before { background: var(--blue-deep); }
.hero-actions .btn-solid {
  background: var(--blue-deep);
  color: #fff;
  border-color: transparent;
}
.hero-actions .btn-solid:hover { color: #fff; }

.scroll-sign {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-family: var(--latin);
  font-style: italic;
  font-size: 0.74rem;
  letter-spacing: 0.4em;
  color: var(--ink-soft);
}
.scroll-sign::after {
  content: "";
  width: 1px; height: 64px;
  background: linear-gradient(var(--greige-deep), transparent);
  animation: scrollLine 2.6s 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; }
}

/* ---------- 下層ページヒーロー ---------- */
.page-hero {
  position: relative;
  height: auto;
  min-height: 52vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: 110px;
  padding-bottom: 60px;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(251, 253, 254, 0.42) 0%, rgba(251, 253, 254, 0.2) 50%, var(--bg) 100%);
}
.page-hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 30px 28px;
  color: var(--ink);
  text-shadow: 0 1px 16px rgba(255, 255, 255, 0.92), 0 1px 2px rgba(255, 255, 255, 0.92);
}
.page-hero-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.78) 0%, rgba(255, 255, 255, 0.4) 60%, rgba(255, 255, 255, 0) 82%);
  border-radius: 50%;
  z-index: -1;
}
.page-hero .en {
  font-family: var(--latin);
  font-style: italic;
  font-size: clamp(1.5rem, 3.4vw, 2.4rem);
  font-weight: 400;
  letter-spacing: 0.22em;
  display: block;
  margin-bottom: 12px;
}
.page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 2.2vw, 1.4rem);
  font-weight: 500;
  letter-spacing: 0.4em;
  text-indent: 0.4em;
}
.breadcrumb {
  position: relative;
  z-index: 2;
  font-family: var(--latin);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  color: var(--ink-soft);
  max-width: 1080px;
  margin: 0 auto;
  padding: 20px 28px 0;
}
.breadcrumb a:hover { color: var(--greige-deep); }

/* ---------- セクション共通 ---------- */
.section { padding: clamp(96px, 12vw, 150px) 0; }
.section.alt { background: var(--bg2); }
.section.cream { background: var(--cream); }
.section.white { background: var(--surface); }
.sec-label {
  font-family: var(--latin);
  font-style: italic;
  font-size: clamp(1.3rem, 2.6vw, 1.9rem);
  font-weight: 400;
  letter-spacing: 0.2em;
  color: var(--greige-deep);
  margin-bottom: 14px;
}
.sec-title {
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.8vw, 2.05rem);
  font-weight: 500;
  letter-spacing: 0.18em;
  line-height: 1.9;
  margin-bottom: 30px;
}
.sec-lead { color: var(--ink-soft); max-width: 620px; font-size: 0.92rem; line-height: 2.3; }
.center { text-align: center; }
.center .sec-lead { margin: 0 auto; }
.center .sec-title::after {
  content: "";
  display: block;
  width: 40px; height: 1px;
  background: var(--greige);
  margin: 26px auto 0;
}

/* ---------- ボタン ---------- */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-indent: 0.22em;
  padding: 16px 48px;
  border: 1px solid var(--blue-deep);
  border-radius: 999px;
  color: var(--blue-deep);
  background: transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: color 0.5s;
  z-index: 1;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--blue-deep);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: -1;
}
.btn:hover { color: #fff; }
.btn:hover::before { transform: scaleX(1); transform-origin: left; }
.btn-solid { background: var(--blue-deep); color: #fff; border-color: var(--blue-deep); }
.btn-solid::before { background: var(--ink); transform: scaleX(1); opacity: 0; transition: opacity 0.45s; }
.btn-solid:hover { color: #fff; }
.btn-solid:hover::before { opacity: 1; }

/* ---------- コンセプト3項目 ---------- */
.concept-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(36px, 5vw, 70px);
  margin-top: 70px;
}
.concept-item { text-align: center; }
.concept-item .en {
  font-family: var(--latin);
  font-style: italic;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  color: var(--greige-deep);
  display: block;
  margin-bottom: 6px;
}
.concept-item .num {
  font-family: var(--latin);
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  color: var(--greige);
  display: block;
  margin-bottom: 18px;
}
.concept-item .num::after {
  content: "";
  display: block;
  width: 1px; height: 34px;
  background: var(--greige);
  margin: 16px auto 0;
}
.concept-item h3 {
  font-family: var(--serif);
  font-size: 1.08rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  margin-bottom: 16px;
}
.concept-item p { color: var(--ink-soft); font-size: 0.88rem; text-align: left; }

/* ---------- 2カラム(画像+テキスト) ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(44px, 7vw, 100px);
  align-items: center;
}
.split.reverse > .split-img { order: 2; }
.split-img { position: relative; }
.split-img img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: 18px; }
.split-img.landscape img { aspect-ratio: 4 / 3; }
.split-img::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid var(--blue);
  border-radius: 18px;
  transform: translate(16px, 16px);
  pointer-events: none;
  opacity: 0.6;
}
.split-body .sec-title { font-size: clamp(1.3rem, 2.4vw, 1.7rem); }
.split-body p { color: var(--ink-soft); font-size: 0.9rem; margin-bottom: 20px; line-height: 2.3; }

/* ---------- 特徴リスト ---------- */
.feature-list { margin-top: 30px; }
.feature-list li {
  display: flex;
  gap: 18px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.88rem;
  color: var(--ink-soft);
}
.feature-list li::before {
  content: "—";
  color: var(--greige-deep);
  flex-shrink: 0;
}

/* ---------- メニューカード(トップ) ---------- */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
  margin-top: 70px;
}
.menu-card { background: transparent; display: block; }
.menu-card .thumb { aspect-ratio: 3 / 4; overflow: hidden; position: relative; border-radius: 18px; box-shadow: 0 14px 30px rgba(74, 179, 176, 0.12); }
.menu-card .thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}
.menu-card:hover .thumb img { transform: scale(1.05); }
.menu-card .body { padding: 26px 4px 0; text-align: center; }
.menu-card .en {
  font-family: var(--latin);
  font-style: italic;
  font-size: 1.25rem;
  letter-spacing: 0.16em;
  color: var(--greige-deep);
  display: block;
  margin-bottom: 8px;
}
.menu-card h3 {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  margin-bottom: 12px;
}
.menu-card p { color: var(--ink-soft); font-size: 0.85rem; text-align: left; }
.menu-card .price-from {
  font-family: var(--latin);
  font-size: 1.05rem;
  letter-spacing: 0.1em;
  color: var(--ink);
  display: block;
  margin-top: 14px;
}

/* ---------- 料金表 ---------- */
.price-block { margin-top: 70px; }
.price-block + .price-block { margin-top: 90px; }
.price-cat {
  display: flex;
  align-items: baseline;
  gap: 20px;
  border-bottom: 1px solid var(--line-strong);
  padding-bottom: 16px;
  margin-bottom: 8px;
}
.price-cat .en {
  font-family: var(--latin);
  font-style: italic;
  font-size: 1.7rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  color: var(--ink);
}
.price-cat .ja {
  font-family: var(--serif);
  font-size: 0.86rem;
  letter-spacing: 0.3em;
  color: var(--greige-deep);
}
.price-list li {
  display: flex;
  align-items: baseline;
  gap: 18px;
  padding: 21px 4px;
  border-bottom: 1px solid var(--line);
}
.price-list .name { font-size: 0.92rem; letter-spacing: 0.1em; }
.price-list .desc {
  display: block;
  color: var(--ink-soft);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  margin-top: 2px;
}
.price-list .dots {
  flex: 1;
  border-bottom: 1px dotted var(--line-strong);
  transform: translateY(-5px);
  min-width: 30px;
}
.price-list .price {
  font-family: var(--latin);
  font-size: 1.12rem;
  letter-spacing: 0.08em;
  white-space: nowrap;
}
.price-list .price small { font-size: 0.7rem; color: var(--ink-soft); font-family: var(--sans); margin-left: 4px; }
.note { color: var(--ink-soft); font-size: 0.78rem; margin-top: 22px; line-height: 2; }

/* ---------- クーポン ---------- */
.coupon {
  border: 1px solid var(--blue);
  border-radius: 22px;
  position: relative;
  padding: clamp(44px, 6vw, 70px) clamp(28px, 5vw, 64px);
  text-align: center;
  background: var(--surface);
  box-shadow: 0 18px 40px rgba(74, 179, 176, 0.1);
  margin-top: 70px;
}
.coupon::after {
  content: "";
  position: absolute;
  inset: 7px;
  border: 1px solid var(--line);
  border-radius: 16px;
  pointer-events: none;
}
.coupon .en {
  font-family: var(--latin);
  font-style: italic;
  font-size: 1.6rem;
  letter-spacing: 0.2em;
  color: var(--greige-deep);
  display: block;
  margin-bottom: 10px;
}
.coupon h3 {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2.4vw, 1.55rem);
  font-weight: 500;
  letter-spacing: 0.2em;
  margin-bottom: 20px;
}
.coupon .coupon-price {
  font-family: var(--latin);
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--ink);
  display: block;
  margin: 10px 0 6px;
}
.coupon .coupon-price s {
  font-size: 0.45em;
  color: var(--ink-soft);
  margin-right: 16px;
  letter-spacing: 0.1em;
}
.coupon p { color: var(--ink-soft); font-size: 0.86rem; max-width: 560px; margin: 0 auto; }
.coupon .terms { font-size: 0.74rem; margin-top: 20px; }

/* ---------- スタッフ ---------- */
.staff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(34px, 5vw, 60px);
  margin-top: 70px;
}
.staff-card { text-align: center; }
.staff-card .photo { aspect-ratio: 3 / 4; overflow: hidden; margin-bottom: 26px; border-radius: 18px; box-shadow: 0 14px 30px rgba(74, 179, 176, 0.12); }
.staff-card .photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.92);
  transition: transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}
.staff-card:hover .photo img { transform: scale(1.04); }
.staff-card .role {
  font-family: var(--latin);
  font-style: italic;
  font-size: 0.92rem;
  letter-spacing: 0.26em;
  color: var(--greige-deep);
  display: block;
  margin-bottom: 8px;
}
.staff-card h3 {
  font-family: var(--serif);
  font-size: 1.18rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  margin-bottom: 4px;
}
.staff-card .kana {
  font-family: var(--latin);
  font-size: 0.74rem;
  letter-spacing: 0.3em;
  color: var(--ink-soft);
  display: block;
  margin-bottom: 18px;
  text-transform: uppercase;
}
.staff-card .forte {
  font-size: 0.8rem;
  color: var(--greige-deep);
  letter-spacing: 0.1em;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 10px 0;
  margin-bottom: 18px;
}
.staff-card p.word { color: var(--ink-soft); font-size: 0.86rem; text-align: left; }

/* ---------- ギャラリー ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 70px;
}
.gallery-grid .tall { grid-row: span 2; }
.gallery-item { overflow: hidden; position: relative; display: block; border-radius: 16px; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  aspect-ratio: 1 / 1;
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1), filter 0.8s;
}
.gallery-grid .tall .gallery-item img,
.gallery-item.tall img { aspect-ratio: auto; height: 100%; }
.gallery-item:hover img { transform: scale(1.06); filter: brightness(1.04); }
.gallery-item .cap {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 30px 18px 14px;
  background: linear-gradient(transparent, rgba(58, 74, 82, 0.6));
  color: #fff;
  font-family: var(--latin);
  font-style: italic;
  font-size: 0.84rem;
  letter-spacing: 0.2em;
  opacity: 0;
  transition: opacity 0.6s;
}
.gallery-item:hover .cap { opacity: 1; }

/* ---------- フルワイドバナー ---------- */
.banner {
  position: relative;
  padding: clamp(120px, 15vw, 190px) 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
  text-align: center;
  color: #fff;
}
.banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(58, 74, 82, 0.5), rgba(74, 179, 176, 0.4));
}
.banner .container { position: relative; z-index: 2; }
.banner .sec-label { color: rgba(255, 255, 255, 0.85); }
.banner .sec-lead { color: rgba(255, 255, 255, 0.88); margin: 0 auto; }
.banner .btn { border-color: rgba(255, 255, 255, 0.85); color: #fff; margin-top: 44px; }
.banner .btn::before { background: #fff; }
.banner .btn:hover { color: var(--ink); }
.banner .center .sec-title::after { background: rgba(255, 255, 255, 0.7); }

/* ---------- こだわり(交互リスト) ---------- */
.commit-list { margin-top: 70px; display: grid; gap: clamp(70px, 9vw, 110px); }

/* ---------- フロー ---------- */
.flow-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 70px;
  counter-reset: flow;
}
.flow-step {
  border-top: 1px solid var(--greige);
  padding-top: 26px;
  counter-increment: flow;
}
.flow-step::before {
  content: "0" counter(flow);
  font-family: var(--latin);
  font-style: italic;
  font-size: 2rem;
  font-weight: 300;
  color: var(--greige-deep);
  display: block;
  margin-bottom: 12px;
}
.flow-step h3 {
  font-family: var(--serif);
  font-size: 0.98rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  margin-bottom: 10px;
}
.flow-step p { color: var(--ink-soft); font-size: 0.82rem; }

/* ---------- FAQ ---------- */
.faq { margin-top: 60px; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 26px 40px 26px 0;
  font-size: 0.94rem;
  letter-spacing: 0.08em;
  position: relative;
  transition: color 0.3s;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::before {
  content: "Q.";
  color: var(--greige-deep);
  font-family: var(--latin);
  font-style: italic;
  margin-right: 16px;
}
.faq summary::after {
  content: "+";
  position: absolute;
  right: 6px; top: 50%;
  transform: translateY(-50%);
  font-family: var(--latin);
  font-size: 1.3rem;
  color: var(--greige-deep);
  transition: transform 0.3s;
}
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq summary:hover { color: var(--greige-deep); }
.faq .answer { padding: 0 0 28px; color: var(--ink-soft); font-size: 0.88rem; max-width: 700px; }
.faq .answer::before {
  content: "A.";
  color: var(--greige);
  font-family: var(--latin);
  font-style: italic;
  margin-right: 16px;
}

/* ---------- サロン概要テーブル ---------- */
.company-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 56px;
  font-size: 0.9rem;
}
.company-table th, .company-table td {
  padding: 21px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}
.company-table th {
  width: 190px;
  font-family: var(--serif);
  color: var(--greige-deep);
  font-weight: 500;
  letter-spacing: 0.2em;
  white-space: nowrap;
}

/* ---------- CTAバンド ---------- */
.cta-band {
  background: var(--bg2);
  border-top: 1px solid var(--line);
  padding: clamp(86px, 10vw, 120px) 0;
  text-align: center;
}
.cta-band .sec-title { margin-bottom: 12px; }
.cta-band .tel {
  font-family: var(--latin);
  font-size: clamp(1.9rem, 4.2vw, 2.8rem);
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--ink);
  display: inline-block;
  margin: 20px 0 6px;
}
.cta-band .hours { color: var(--ink-soft); font-size: 0.8rem; margin-bottom: 38px; }

/* ---------- ご予約フォーム ---------- */
.contact-form { max-width: 660px; margin: 60px auto 0; }
.form-row { margin-bottom: 32px; }
.form-row label {
  display: block;
  font-size: 0.82rem;
  letter-spacing: 0.2em;
  margin-bottom: 10px;
}
.form-row label .req {
  color: var(--greige-deep);
  font-size: 0.66rem;
  border: 1px solid var(--greige);
  padding: 1px 8px;
  margin-left: 12px;
  letter-spacing: 0.14em;
}
.form-row input, .form-row select, .form-row textarea {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--line-strong);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 0.95rem;
  padding: 15px 16px;
  transition: border-color 0.3s;
  border-radius: 0;
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  outline: none;
  border-color: var(--greige-deep);
}
.form-row textarea { min-height: 160px; resize: vertical; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-submit { text-align: center; margin-top: 48px; }
.form-note { color: var(--ink-soft); font-size: 0.76rem; text-align: center; margin-top: 20px; }

/* ---------- アクセスパネル ---------- */
.access-panel {
  margin-top: 60px;
  padding: 0;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}
.access-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}
.access-item {
  padding: 30px 36px;
  border-bottom: 1px solid var(--line);
}
.access-item:nth-child(odd) { border-right: 1px solid var(--line); }
.access-item:nth-last-child(-n+2) { border-bottom: none; }
.access-label {
  font-family: var(--latin);
  font-style: italic;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  color: var(--greige-deep);
  display: block;
  margin-bottom: 10px;
}
.access-value {
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.9;
  color: var(--ink);
}
.access-value a { color: var(--ink); border-bottom: 1px solid var(--greige); }
.access-value small { display: block; font-size: 0.76rem; color: var(--ink-soft); margin-top: 2px; }
.access-map-cta {
  margin-top: 40px;
  text-align: center;
}

/* ---------- フッター ---------- */
.site-footer {
  background: #3a4a52;
  color: #d4e6e6;
  padding: 86px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 70px;
}
.footer-brand {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: #ffffff;
  margin-bottom: 4px;
}
.footer-tag {
  font-family: var(--latin);
  font-style: italic;
  font-size: 0.74rem;
  letter-spacing: 0.32em;
  color: var(--blue);
  margin-bottom: 26px;
}
.site-footer address {
  font-style: normal;
  color: #9fb6b9;
  font-size: 0.84rem;
  line-height: 2.2;
}
.footer-head {
  font-family: var(--latin);
  font-style: italic;
  font-size: 0.95rem;
  letter-spacing: 0.3em;
  color: var(--blue);
  margin-bottom: 22px;
}
.footer-nav li { margin-bottom: 12px; }
.footer-nav a {
  color: #9fb6b9;
  font-size: 0.84rem;
  letter-spacing: 0.1em;
  transition: color 0.3s;
}
.footer-nav a:hover { color: #ffffff; }
.footer-tel {
  font-family: var(--latin);
  font-size: 1.55rem;
  color: #ffffff;
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 8px;
}
.footer-hours { color: #9fb6b9; font-size: 0.8rem; line-height: 2.2; }
.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
  padding: 22px 0 14px;
  font-family: var(--latin);
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  color: #8aa3a6;
}
.footer-demo {
  text-align: center;
  padding: 0 0 26px;
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  color: #7e979a;
}
/* セクションラベル脇の小さなクマ */
.bear { font-style: normal; font-size: 0.92em; margin: 0 0.15em; }

/* ---------- スクロールフェードイン ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 1.3s ease, transform 1.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.15s; }
.reveal[data-delay="2"] { transition-delay: 0.3s; }
.reveal[data-delay="3"] { transition-delay: 0.45s; }

/* JSが無効でも読めるように */
.no-js .reveal { opacity: 1; transform: none; }

/* ---------- レスポンシブ ---------- */
@media (max-width: 960px) {
  .nav-toggle { display: flex; }
  .global-nav {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    background: rgb(238, 248, 248);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 34px;
    transform: translateX(100%);
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 101;
  }
  body.nav-open .global-nav { transform: translateX(0); }
  .global-nav a { font-size: 1rem; }
  .concept-grid, .menu-grid, .staff-grid { grid-template-columns: 1fr; }
  .menu-grid { max-width: 440px; margin-left: auto; margin-right: auto; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .flow-grid { grid-template-columns: repeat(2, 1fr); }
  .split, .split.reverse { grid-template-columns: 1fr; }
  .split.reverse > .split-img { order: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .scroll-sign { display: none; }
  .banner { background-attachment: scroll; }
}

@media (max-width: 600px) {
  body { font-size: 14px; }
  .hero h1 { font-size: clamp(1.9rem, 7.5vw, 2.8rem); letter-spacing: 0.18em; text-indent: 0.18em; line-height: 1.5; }
  .hero-sub { font-size: 0.88rem; }
  .flow-grid { grid-template-columns: 1fr; }
  .form-grid-2 { grid-template-columns: 1fr; }
  .company-table th { width: 105px; }
  .price-list li { flex-wrap: wrap; }
  .access-grid { grid-template-columns: 1fr; }
  .access-item:nth-child(odd) { border-right: none; }
  .access-item:nth-last-child(-n+2) { border-bottom: 1px solid var(--line); }
  .access-item:last-child { border-bottom: none; }
  .access-item { padding: 22px 20px; }
}
