/* ============================================================
   cafe PaAni — Hawaiian café & goods（白×ウッド×オーシャンブルー）
   コンセプト「扉を開けるとそこは小さなハワイ」
   海・サーフ・リゾートの開放感。明るく、丸く、やわらかく。
   ============================================================ */
:root {
  --bg: #fbfdfe;          /* ほぼ白（わずかに水色） */
  --bg2: #eef6f8;         /* 淡いオーシャンミスト */
  --surface: #ffffff;
  --ink: #2b3a42;         /* 深いネイビーグレー（黒すぎない） */
  --ink-soft: #5b727d;
  --ocean: #1ba5c4;       /* オーシャンブルー（主役アクセント） */
  --ocean-deep: #0e7e98;
  --ocean-soft: #7fcfe0;
  --wood: #c79a6b;        /* ウッド／砂のアクセント */
  --wood-deep: #a87b4d;
  --coral: #ff8a5c;       /* サンセットコーラル（差し色） */
  --sand: #f6efe3;
  --line: rgba(43, 58, 66, 0.12);
  --line-strong: rgba(43, 58, 66, 0.26);
  --round: "Zen Maru Gothic", "Hiragino Maru Gothic ProN", "Noto Sans JP", sans-serif;
  --sans: "M PLUS Rounded 1c", "Hiragino Kaku Gothic ProN", sans-serif;
  --script: "Pacifico", "Caveat", cursive;
  /* 後方互換: テンプレ由来のクラスが参照する変数 */
  --serif: var(--round);
  --latin: var(--script);
  --greige: var(--ocean-soft);
  --greige-deep: var(--ocean-deep);
}

* { 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.05;
  font-size: 15.5px;
  letter-spacing: 0.03em;
  -webkit-font-smoothing: antialiased;
}

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

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

/* ---------- ヘッダー ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 26px 0;
  transition: background 0.5s ease, padding 0.5s ease, box-shadow 0.5s ease;
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 14px 0;
  box-shadow: 0 2px 20px rgba(27, 165, 196, 0.1);
}
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand { display: flex; flex-direction: column; gap: 0; z-index: 102; }
.brand-name {
  font-family: var(--round);
  font-size: 1.32rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--ink);
}
.site-header.scrolled .brand-name { color: var(--ink); }
.brand-tag {
  font-family: var(--script);
  font-size: 0.84rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--ocean);
  margin-top: -2px;
}
.global-nav { display: flex; align-items: center; gap: 30px; }
.global-nav a {
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  position: relative;
  padding: 4px 0;
  color: var(--ink);
  transition: color 0.3s;
}
.global-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 100%; height: 2px;
  border-radius: 2px;
  background: var(--ocean);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.global-nav a:hover { color: var(--ocean-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(--ocean-deep); }
.global-nav .nav-cta {
  background: var(--ocean);
  color: #fff;
  padding: 11px 26px;
  border-radius: 999px;
  letter-spacing: 0.1em;
  box-shadow: 0 6px 16px rgba(27, 165, 196, 0.32);
  transition: background 0.35s, transform 0.35s, box-shadow 0.35s;
}
.global-nav .nav-cta:hover { background: var(--ocean-deep); transform: translateY(-2px); box-shadow: 0 10px 22px rgba(27, 165, 196, 0.4); color: #fff; }
.global-nav .nav-cta::after { display: none; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  width: 44px; height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 102;
}
.nav-toggle span {
  display: block;
  width: 28px; height: 2px;
  border-radius: 2px;
  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: 90px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  animation: heroZoom 20s ease-out forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14, 60, 75, 0.34) 0%, rgba(14, 60, 75, 0.14) 38%, rgba(20, 80, 95, 0.34) 72%, rgba(251, 253, 254, 0.9) 99%, var(--bg) 100%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 28px;
  color: #fff;
  text-shadow: 0 2px 24px rgba(10, 40, 52, 0.5);
}
.hero-eyebrow {
  font-family: var(--script);
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  color: #fff;
  margin-bottom: 14px;
}
.hero h1 {
  font-family: var(--round);
  font-size: clamp(2.5rem, 6.2vw, 4.4rem);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.08em;
  margin-bottom: 22px;
}
.hero-sub {
  font-family: var(--round);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  margin-bottom: 44px;
  text-shadow: 0 2px 18px rgba(10, 40, 52, 0.6);
}
.hero-divider {
  width: 54px; height: 4px;
  border-radius: 4px;
  background: var(--coral);
  margin: 0 auto 44px;
}
.hero-actions { display: flex; gap: 18px; flex-wrap: wrap; justify-content: center; }

.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(--script);
  font-size: 0.92rem;
  letter-spacing: 0.05em;
  color: #fff;
  text-shadow: 0 1px 10px rgba(10, 40, 52, 0.5);
}
.scroll-sign::after {
  content: "";
  width: 2px; height: 60px;
  border-radius: 2px;
  background: linear-gradient(#fff, 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: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: 130px;
  padding-bottom: 64px;
}
.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(14, 60, 75, 0.42) 0%, rgba(14, 60, 75, 0.28) 50%, rgba(251, 253, 254, 0.92) 100%);
}
.page-hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 28px;
  color: #fff;
  text-shadow: 0 2px 20px rgba(10, 40, 52, 0.55);
}
.page-hero .en {
  font-family: var(--script);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  display: block;
  margin-bottom: 6px;
}
.page-hero h1 {
  font-family: var(--round);
  font-size: clamp(1.2rem, 2.4vw, 1.6rem);
  font-weight: 700;
  letter-spacing: 0.16em;
}
.breadcrumb {
  position: relative;
  z-index: 2;
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  max-width: 1120px;
  margin: 0 auto;
  padding: 18px 28px 0;
}
.breadcrumb a:hover { color: var(--ocean-deep); }

/* ---------- セクション共通 ---------- */
.section { padding: clamp(80px, 10vw, 130px) 0; }
.section.alt { background: var(--bg2); }
.section.white { background: var(--surface); }
.sec-label {
  font-family: var(--script);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 400;
  letter-spacing: 0.01em;
  color: var(--ocean);
  margin-bottom: 8px;
}
.sec-title {
  font-family: var(--round);
  font-size: clamp(1.5rem, 3vw, 2.15rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.7;
  margin-bottom: 26px;
}
.sec-lead { color: var(--ink-soft); max-width: 640px; font-size: 0.95rem; line-height: 2.1; }
.center { text-align: center; }
.center .sec-lead { margin: 0 auto; }
.center .sec-title::after {
  content: "";
  display: block;
  width: 56px; height: 4px;
  border-radius: 4px;
  background: var(--coral);
  margin: 22px auto 0;
}

/* ---------- ボタン ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--round);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 15px 38px;
  border: 2px solid var(--ocean);
  border-radius: 999px;
  color: var(--ocean-deep);
  background: #fff;
  cursor: pointer;
  position: relative;
  transition: background 0.35s, color 0.35s, transform 0.35s, box-shadow 0.35s, border-color 0.35s;
}
.btn:hover { background: var(--ocean); color: #fff; transform: translateY(-2px); box-shadow: 0 10px 22px rgba(27, 165, 196, 0.32); }
.btn-solid {
  background: var(--ocean);
  color: #fff;
  border-color: var(--ocean);
  box-shadow: 0 8px 20px rgba(27, 165, 196, 0.32);
}
.btn-solid:hover { background: var(--ocean-deep); border-color: var(--ocean-deep); color: #fff; }
/* コーラルのCTA（ショップ等の目立たせ用） */
.btn-coral {
  background: var(--coral);
  border-color: var(--coral);
  color: #fff;
  box-shadow: 0 8px 22px rgba(255, 138, 92, 0.4);
}
.btn-coral:hover { background: #f5703f; border-color: #f5703f; color: #fff; }
.btn-lg { font-size: 1.02rem; padding: 18px 46px; }

/* 写真の上に置くボタン ─ 半透明の暗色ガラスで白文字のコントラストを確保 */
.hero-actions .btn:not(.btn-solid):not(.btn-coral) {
  background: rgba(14, 50, 62, 0.46);
  border-color: rgba(255, 255, 255, 0.9);
  color: #fff;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.hero-actions .btn:not(.btn-solid):not(.btn-coral):hover { background: rgba(14, 50, 62, 0.72); border-color: #fff; color: #fff; }
.hero-actions .btn-solid { box-shadow: 0 10px 26px rgba(27, 165, 196, 0.5); }

/* ---------- 営業時間 タイムバー図解（最重要） ---------- */
.hours-figure { margin-top: 56px; }
.timebar {
  display: flex;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(27, 110, 135, 0.16);
  border: 1px solid var(--line);
}
.timebar .seg {
  padding: 30px 26px;
  text-align: center;
  position: relative;
}
.timebar .seg-full {
  flex: 4;
  background: linear-gradient(135deg, var(--ocean) 0%, var(--ocean-deep) 100%);
  color: #fff;
}
.timebar .seg-dessert {
  flex: 2;
  background: linear-gradient(135deg, #fff3ec 0%, #ffe4d6 100%);
  color: var(--ink);
}
.timebar .seg .time {
  font-family: var(--round);
  font-size: clamp(1.1rem, 2.4vw, 1.5rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  display: block;
  margin-bottom: 8px;
}
.timebar .seg-dessert .time { color: var(--coral); }
.timebar .seg .what {
  font-size: 0.86rem;
  font-weight: 500;
  line-height: 1.7;
}
.timebar .seg .ico { font-size: 1.6rem; display: block; margin-bottom: 6px; line-height: 1; }
.timebar .seg-full .what { color: rgba(255,255,255,0.95); }
.hours-figure .scale {
  display: flex;
  justify-content: space-between;
  max-width: 100%;
  margin-top: 10px;
  padding: 0 4px;
  font-family: var(--sans);
  font-size: 0.74rem;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
}
.hours-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 26px;
}
.hours-notes .chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 20px;
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--ink);
  box-shadow: 0 4px 14px rgba(27, 110, 135, 0.08);
}
.hours-notes .chip b { color: var(--ocean-deep); font-weight: 700; }
.hours-notes .chip .ico { font-size: 1.05rem; }
.hours-notes .chip.coral b { color: var(--coral); }

/* 2枚カードで時間帯を図解する別バリエーション */
.hours-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 54px;
}
.hours-card {
  border-radius: 20px;
  padding: 36px 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hours-card.full { background: linear-gradient(150deg, var(--ocean) 0%, var(--ocean-deep) 100%); color: #fff; box-shadow: 0 14px 36px rgba(27, 165, 196, 0.3); }
.hours-card.dessert { background: linear-gradient(150deg, #fff7f2 0%, #ffe7da 100%); color: var(--ink); box-shadow: 0 14px 36px rgba(255, 138, 92, 0.18); border: 1px solid #ffe0d0; }
.hours-card .ico { font-size: 2.2rem; line-height: 1; margin-bottom: 12px; }
.hours-card .range {
  font-family: var(--round);
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 700;
  letter-spacing: 0.03em;
  margin-bottom: 8px;
}
.hours-card.dessert .range { color: var(--coral); }
.hours-card .label {
  font-family: var(--script);
  font-size: 1.2rem;
  margin-bottom: 10px;
  opacity: 0.95;
}
.hours-card.full .label { color: #d8f4fb; }
.hours-card.dessert .label { color: var(--wood-deep); }
.hours-card p { font-size: 0.9rem; font-weight: 500; line-height: 1.8; }
.hours-card.full p { color: rgba(255,255,255,0.95); }

/* ---------- コンセプト3項目 ---------- */
.concept-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 4vw, 40px);
  margin-top: 60px;
}
.concept-item {
  text-align: center;
  background: var(--surface);
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 12px 34px rgba(27, 110, 135, 0.08);
  border: 1px solid var(--line);
  transition: transform 0.4s, box-shadow 0.4s;
}
.concept-item:hover { transform: translateY(-6px); box-shadow: 0 18px 44px rgba(27, 110, 135, 0.16); }
.concept-item .en {
  font-family: var(--script);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--ocean);
  display: block;
  margin-bottom: 4px;
}
.concept-item .num {
  font-family: var(--script);
  font-size: 1rem;
  color: var(--ocean-soft);
  display: block;
  margin-bottom: 10px;
}
.concept-item .ico { font-size: 2.4rem; line-height: 1; margin-bottom: 12px; }
.concept-item h3 {
  font-family: var(--round);
  font-size: 1.14rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}
.concept-item p { color: var(--ink-soft); font-size: 0.9rem; text-align: center; line-height: 1.95; }

/* ---------- 2カラム(画像+テキスト) ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 86px);
  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: 22px; box-shadow: 0 18px 46px rgba(27, 110, 135, 0.18); }
.split-img.landscape img { aspect-ratio: 4 / 3; }
.split-img::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid var(--ocean-soft);
  border-radius: 22px;
  transform: translate(16px, 16px);
  pointer-events: none;
  opacity: 0.55;
  z-index: -1;
}
.split-body .sec-title { font-size: clamp(1.4rem, 2.6vw, 1.85rem); }
.split-body p { color: var(--ink-soft); font-size: 0.94rem; margin-bottom: 18px; line-height: 2.1; }

/* ---------- 特徴リスト ---------- */
.feature-list { margin-top: 28px; }
.feature-list li {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.92rem;
  color: var(--ink);
}
.feature-list li::before {
  content: "🌺";
  flex-shrink: 0;
  font-size: 0.95rem;
}

/* ---------- メニューカード ---------- */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}
.menu-card {
  background: var(--surface);
  display: block;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 34px rgba(27, 110, 135, 0.1);
  border: 1px solid var(--line);
  transition: transform 0.4s, box-shadow 0.4s;
}
.menu-card:hover { transform: translateY(-6px); box-shadow: 0 20px 46px rgba(27, 110, 135, 0.18); }
.menu-card .thumb { aspect-ratio: 4 / 3; overflow: hidden; position: relative; }
.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.06); }
.menu-card .body { padding: 24px 24px 28px; text-align: center; }
.menu-card .en {
  font-family: var(--script);
  font-size: 1.3rem;
  color: var(--ocean);
  display: block;
  margin-bottom: 4px;
}
.menu-card h3 {
  font-family: var(--round);
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}
.menu-card p { color: var(--ink-soft); font-size: 0.88rem; text-align: center; line-height: 1.9; }
.menu-card .tag {
  display: inline-block;
  margin-top: 14px;
  background: var(--bg2);
  color: var(--ocean-deep);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 5px 16px;
  border-radius: 999px;
}
.menu-card .tag.takeout { background: #fff1ea; color: var(--coral); }

/* ---------- メニューリスト（料金なし） ---------- */
.dish-block { margin-top: 56px; }
.dish-block + .dish-block { margin-top: 70px; }
.dish-cat {
  display: flex;
  align-items: baseline;
  gap: 16px;
  border-bottom: 3px solid var(--ocean-soft);
  padding-bottom: 12px;
  margin-bottom: 6px;
}
.dish-cat .en {
  font-family: var(--script);
  font-size: 1.7rem;
  color: var(--ocean);
}
.dish-cat .ja {
  font-family: var(--round);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--ink);
}
.dish-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 18px 4px;
  border-bottom: 1px solid var(--line);
}
.dish-list li::before { content: "🌴"; flex-shrink: 0; font-size: 0.95rem; transform: translateY(2px); }
.dish-list .name { font-size: 1rem; font-weight: 700; letter-spacing: 0.02em; color: var(--ink); }
.dish-list .desc { display: block; color: var(--ink-soft); font-size: 0.84rem; font-weight: 400; letter-spacing: 0.02em; margin-top: 3px; line-height: 1.8; }
.dish-list .mark {
  display: inline-block;
  margin-left: 8px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--coral);
  border: 1px solid #ffd2bf;
  background: #fff4ef;
  border-radius: 999px;
  padding: 1px 9px;
  vertical-align: middle;
}
.note { color: var(--ink-soft); font-size: 0.82rem; margin-top: 20px; line-height: 1.9; }

/* ---------- 大きな注意パネル（予約不可など） ---------- */
.notice-panel {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: #fff4ef;
  border: 1px solid #ffd6c5;
  border-left: 6px solid var(--coral);
  border-radius: 16px;
  padding: 24px 26px;
  margin-top: 28px;
}
.notice-panel .ico { font-size: 1.7rem; line-height: 1.2; flex-shrink: 0; }
.notice-panel h3 { font-family: var(--round); font-size: 1.05rem; font-weight: 700; margin-bottom: 6px; color: var(--ink); }
.notice-panel p { color: var(--ink-soft); font-size: 0.9rem; line-height: 1.9; }
.notice-panel.ocean { background: var(--bg2); border-color: var(--ocean-soft); border-left-color: var(--ocean); }

/* ---------- ストーリー（交互リスト） ---------- */
.commit-list { margin-top: 60px; display: grid; gap: clamp(56px, 7vw, 90px); }

/* ---------- フロー ---------- */
.flow-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
  counter-reset: flow;
}
.flow-step {
  background: var(--surface);
  border-radius: 18px;
  padding: 28px 24px;
  box-shadow: 0 10px 28px rgba(27, 110, 135, 0.08);
  border: 1px solid var(--line);
  counter-increment: flow;
}
.flow-step::before {
  content: counter(flow);
  font-family: var(--round);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  background: var(--ocean);
  width: 38px; height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 16px;
}
.flow-step h3 {
  font-family: var(--round);
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  margin-bottom: 8px;
}
.flow-step p { color: var(--ink-soft); font-size: 0.86rem; line-height: 1.9; }

/* ---------- FAQ ---------- */
.faq { margin-top: 50px; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 24px 40px 24px 0;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  position: relative;
  transition: color 0.3s;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::before {
  content: "Q";
  color: #fff;
  background: var(--ocean);
  font-family: var(--round);
  font-size: 0.8rem;
  font-weight: 700;
  width: 24px; height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 14px;
  vertical-align: middle;
}
.faq summary::after {
  content: "+";
  position: absolute;
  right: 6px; top: 50%;
  transform: translateY(-50%);
  font-family: var(--round);
  font-size: 1.5rem;
  color: var(--ocean);
  transition: transform 0.3s;
}
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq summary:hover { color: var(--ocean-deep); }
.faq .answer { padding: 0 0 26px 38px; color: var(--ink-soft); font-size: 0.9rem; line-height: 2; max-width: 720px; }

/* ---------- 店舗概要テーブル ---------- */
.company-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 50px;
  font-size: 0.93rem;
  background: var(--surface);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(27, 110, 135, 0.08);
}
.company-table th, .company-table td {
  padding: 20px 22px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}
.company-table tr:last-child th, .company-table tr:last-child td { border-bottom: none; }
.company-table th {
  width: 180px;
  font-family: var(--round);
  background: var(--bg2);
  color: var(--ocean-deep);
  font-weight: 700;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

/* ---------- アクセスパネル ---------- */
.access-panel {
  margin-top: 50px;
  background: var(--surface);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(27, 110, 135, 0.1);
  border: 1px solid var(--line);
}
.access-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}
.access-item {
  padding: 28px 32px;
  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(--script);
  font-size: 1.05rem;
  color: var(--ocean);
  display: block;
  margin-bottom: 8px;
}
.access-value {
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.85;
  color: var(--ink);
}
.access-value a { color: var(--ocean-deep); border-bottom: 1px solid var(--ocean-soft); }
.access-value small { display: block; font-size: 0.8rem; font-weight: 400; color: var(--ink-soft); margin-top: 4px; }
.access-map-cta { margin-top: 36px; text-align: center; }

/* ---------- ショップ誘導CTA（Yahoo!ショッピング） ---------- */
.shop-cta {
  margin-top: 56px;
  background: linear-gradient(135deg, #fff7f2 0%, #eef6f8 100%);
  border: 1px solid #ffe0d0;
  border-radius: 24px;
  padding: clamp(40px, 6vw, 60px) clamp(28px, 5vw, 56px);
  text-align: center;
  box-shadow: 0 16px 44px rgba(255, 138, 92, 0.16);
}
.shop-cta .ico { font-size: 2.6rem; line-height: 1; margin-bottom: 12px; }
.shop-cta h3 {
  font-family: var(--round);
  font-size: clamp(1.3rem, 2.6vw, 1.7rem);
  font-weight: 700;
  letter-spacing: 0.03em;
  margin-bottom: 14px;
}
.shop-cta p { color: var(--ink-soft); font-size: 0.95rem; max-width: 560px; margin: 0 auto 30px; line-height: 2; }
.shop-cta .btn-coral { font-size: 1.05rem; padding: 18px 50px; }
.shop-cta .sub { font-size: 0.8rem; color: var(--ink-soft); margin-top: 16px; }

/* ---------- バナー ---------- */
.banner {
  position: relative;
  padding: clamp(110px, 14vw, 180px) 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(14, 60, 75, 0.5), rgba(14, 60, 75, 0.42));
}
.banner .container { position: relative; z-index: 2; }
.banner .sec-label { color: #fff; }
.banner .sec-lead { color: rgba(255, 255, 255, 0.95); margin: 0 auto; }
.banner .sec-title { text-shadow: 0 2px 18px rgba(10, 40, 52, 0.5); }
.banner .btn { background: rgba(14, 50, 62, 0.4); border-color: rgba(255,255,255,0.9); color: #fff; margin-top: 36px; -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); }
.banner .btn:hover { background: #fff; color: var(--ocean-deep); border-color: #fff; }
.banner .center .sec-title::after { background: var(--coral); }

/* ---------- ご予約/お問い合わせフォーム ---------- */
.contact-form { max-width: 680px; margin: 50px auto 0; }
.form-row { margin-bottom: 28px; }
.form-row label {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}
.form-row label .req {
  color: #fff;
  background: var(--coral);
  font-size: 0.68rem;
  border-radius: 999px;
  padding: 2px 10px;
  margin-left: 10px;
  letter-spacing: 0.06em;
}
.form-row input, .form-row select, .form-row textarea {
  width: 100%;
  background: var(--surface);
  border: 1.5px solid var(--line-strong);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 0.98rem;
  padding: 14px 16px;
  border-radius: 12px;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  outline: none;
  border-color: var(--ocean);
  box-shadow: 0 0 0 4px rgba(27, 165, 196, 0.14);
}
.form-row textarea { min-height: 150px; resize: vertical; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-submit { text-align: center; margin-top: 40px; }
.form-note { color: var(--ink-soft); font-size: 0.78rem; text-align: center; margin-top: 18px; }

/* ---------- CTAバンド ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--ocean) 0%, var(--ocean-deep) 100%);
  padding: clamp(76px, 9vw, 110px) 0;
  text-align: center;
  color: #fff;
}
.cta-band .sec-label { color: #d8f4fb; }
.cta-band .sec-title { color: #fff; margin-bottom: 10px; }
.cta-band .sec-title::after { background: var(--coral); }
.cta-band .sec-lead { color: rgba(255,255,255,0.95); margin: 0 auto; }
.cta-band .tel {
  font-family: var(--round);
  font-size: clamp(2rem, 4.4vw, 2.9rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
  display: inline-block;
  margin: 18px 0 4px;
}
.cta-band .hours { color: #d8f4fb; font-size: 0.84rem; margin-bottom: 14px; }
.cta-band .no-reserve {
  display: inline-block;
  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 999px;
  padding: 7px 20px;
  font-size: 0.84rem;
  font-weight: 700;
  margin-bottom: 30px;
}
.cta-band .btn { background: #fff; color: var(--ocean-deep); border-color: #fff; }
.cta-band .btn:hover { background: var(--coral); border-color: var(--coral); color: #fff; }
.cta-band .btn-coral { background: var(--coral); border-color: var(--coral); color:#fff; }
.cta-band .btn-coral:hover { background:#fff; color: var(--coral); }

/* ---------- Instagram フッター導線 ---------- */
.insta-band {
  background: var(--bg2);
  text-align: center;
  padding: clamp(56px, 7vw, 84px) 0;
}
.insta-band .ico { font-size: 2.4rem; line-height: 1; margin-bottom: 10px; }
.insta-band h2 { font-family: var(--round); font-size: clamp(1.3rem, 2.6vw, 1.7rem); font-weight: 700; margin-bottom: 8px; letter-spacing: 0.03em; }
.insta-band p { color: var(--ink-soft); font-size: 0.92rem; margin-bottom: 26px; }
.insta-band .insta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #f9a03f 0%, #f56040 25%, #c13584 60%, #833ab4 100%);
  color: #fff;
  font-family: var(--round);
  font-weight: 700;
  font-size: 0.96rem;
  letter-spacing: 0.04em;
  padding: 14px 34px;
  border-radius: 999px;
  box-shadow: 0 10px 26px rgba(193, 53, 132, 0.32);
  transition: transform 0.35s, box-shadow 0.35s;
}
.insta-band .insta-btn:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(193, 53, 132, 0.42); }

/* ---------- フッター ---------- */
.site-footer {
  background: #142a32;
  color: #b9cdd5;
  padding: 76px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr;
  gap: 46px;
  padding-bottom: 56px;
}
.footer-brand {
  font-family: var(--round);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #fff;
  margin-bottom: 2px;
}
.footer-tag {
  font-family: var(--script);
  font-size: 1rem;
  letter-spacing: 0.02em;
  color: var(--ocean-soft);
  margin-bottom: 22px;
}
.site-footer address {
  font-style: normal;
  color: #8da7b1;
  font-size: 0.86rem;
  line-height: 2.1;
}
.footer-head {
  font-family: var(--script);
  font-size: 1.15rem;
  color: var(--ocean-soft);
  margin-bottom: 18px;
}
.footer-nav li { margin-bottom: 11px; }
.footer-nav a {
  color: #8da7b1;
  font-size: 0.86rem;
  letter-spacing: 0.04em;
  transition: color 0.3s;
}
.footer-nav a:hover { color: #fff; }
.footer-tel {
  font-family: var(--round);
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.04em;
  display: block;
  margin-bottom: 4px;
}
.footer-hours { color: #8da7b1; font-size: 0.82rem; line-height: 2; margin-bottom: 18px; }
.footer-insta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 0.86rem;
  font-weight: 700;
  border: 1px solid rgba(255,255,255,0.24);
  border-radius: 999px;
  padding: 8px 18px;
  transition: background 0.3s;
}
.footer-insta:hover { background: rgba(255,255,255,0.1); }
.footer-shop {
  display: block;
  margin-top: 12px;
  color: var(--ocean-soft);
  font-size: 0.84rem;
  font-weight: 700;
}
.footer-shop:hover { color: #fff; }
.demo-note {
  background: rgba(255,255,255,0.06);
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  padding: 16px 20px;
  font-size: 0.8rem;
  color: #9fb6bf;
  letter-spacing: 0.02em;
}
.copyright {
  text-align: center;
  padding: 22px 0;
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: #6f8893;
}

/* ---------- スクロールフェードイン ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1.1s ease, transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.12s; }
.reveal[data-delay="2"] { transition-delay: 0.24s; }
.reveal[data-delay="3"] { transition-delay: 0.36s; }
.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: #ffffff;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 101;
  }
  body.nav-open .global-nav { transform: translateX(0); }
  .global-nav a { font-size: 1.1rem; }
  .concept-grid, .menu-grid { grid-template-columns: 1fr; }
  .menu-grid, .concept-grid { max-width: 460px; margin-left: auto; margin-right: auto; }
  .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: 36px; }
  .scroll-sign { display: none; }
  .banner { background-attachment: scroll; }
}

@media (max-width: 600px) {
  body { font-size: 15px; }
  .hero h1 { font-size: clamp(2rem, 9vw, 2.8rem); letter-spacing: 0.04em; line-height: 1.35; }
  .hero-sub { font-size: 1rem; }
  .flow-grid { grid-template-columns: 1fr; }
  .form-grid-2 { grid-template-columns: 1fr; }
  .company-table th { width: 108px; padding: 16px 14px; }
  .company-table td { padding: 16px 14px; }
  .dish-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 22px; }
  /* タイムバーは縦積みに */
  .timebar { flex-direction: column; }
  .timebar .seg-full, .timebar .seg-dessert { flex: none; }
  .hours-figure .scale { display: none; }
  .hours-cards { grid-template-columns: 1fr; }
}
