/* ============================================================
   たこやき居酒屋「ともちゃん」 LP スタイルシート
   コンセプト: アットホーム × スタイリッシュ × 南国テイスト
   ============================================================ */

/* ---------- 変数 ---------- */
:root {
  --coral: #F26D5B;
  --coral-dark: #E8503F;
  --coral-light: #FFD9D1;
  --teal: #2EC4B6;
  --teal-dark: #1E8F86;
  --teal-light: #D7F2ED;
  --gold: #F4A259;
  --gold-light: #FFE9C9;
  --palm: #2D7A4F;
  --palm-dark: #1E6B42;
  --ink: #3A2E2A;
  --ink-soft: #6B5A52;
  --sand: #FFF6E9;
  --cream: #FFFDF8;
  --navy: #0F3D3E;
  --shadow-sm: 0 4px 14px rgba(58, 46, 42, 0.08);
  --shadow-md: 0 10px 30px rgba(58, 46, 42, 0.12);
  --shadow-lg: 0 20px 50px rgba(58, 46, 42, 0.18);
  --radius: 22px;
  --header-height: 69px;
  --font-body: "Zen Maru Gothic", "Hiragino Maru Gothic ProN", sans-serif;
  --font-accent: "Shippori Mincho", "Hiragino Mincho ProN", serif;
}

/* ---------- リセット ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }

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

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--sand);
  line-height: 1.8;
  letter-spacing: 0.03em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

::selection { background: var(--coral); color: #fff; }

/* ---------- 共通 ---------- */
.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

.pc { display: inline; }

.section {
  padding: 88px 0;
  position: relative;
}

.section-head { text-align: center; margin-bottom: 56px; }

.section-en {
  font-family: var(--font-accent);
  font-size: 13px;
  letter-spacing: 0.5em;
  color: var(--teal-dark);
  margin-bottom: 10px;
  font-weight: 700;
}

.section-title {
  font-family: var(--font-accent);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--ink);
}

.section-title .coral { color: var(--coral-dark); }

.section-lead {
  margin-top: 18px;
  color: var(--ink-soft);
  font-size: clamp(14px, 1.8vw, 16px);
  line-height: 2;
}

.coral { color: var(--coral-dark); }

/* ---------- ボタン ---------- */
.btn {
  display: inline-block;
  padding: 13px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.06em;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn-coral {
  background: linear-gradient(135deg, var(--coral), var(--coral-dark));
  color: #fff;
  box-shadow: 0 8px 22px rgba(232, 80, 63, 0.35);
}

.btn-coral:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(232, 80, 63, 0.45);
}

.btn-ghost {
  border: 2px solid rgba(255, 255, 255, 0.85);
  color: #fff;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-3px);
}

.btn-lg { padding: 16px 36px; font-size: 16px; }

/* ============================================================
   ティッカー
   ============================================================ */
.ticker {
  background: var(--navy);
  color: #fff;
  overflow: hidden;
  padding: 8px 0;
  position: relative;
  z-index: 60;
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 28s linear infinite;
  white-space: nowrap;
}

.ticker-track span {
  font-size: 13px;
  letter-spacing: 0.18em;
  padding: 0 40px;
  color: var(--gold-light);
  font-weight: 500;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================================
   ヘッダー
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 246, 233, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(58, 46, 42, 0.08);
  transition: box-shadow 0.3s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 6px 24px rgba(58, 46, 42, 0.10);
}

.header-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo { display: flex; align-items: center; gap: 12px; }

.logo-mark {
  width: 44px;
  height: 44px;
  background: var(--cream);
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-sm);
}

.logo-text { line-height: 1.35; }

.logo-name {
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.05em;
}

.logo-name b {
  color: var(--coral-dark);
  font-family: var(--font-accent);
  font-weight: 800;
}

.logo-sub {
  font-size: 9px;
  letter-spacing: 0.32em;
  color: var(--teal-dark);
  font-weight: 700;
}

.gnav {
  display: flex;
  gap: 28px;
}

.gnav a {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--ink-soft);
  position: relative;
  padding: 4px 2px;
  transition: color 0.25s ease;
}

.gnav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 3px;
  border-radius: 3px;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.gnav a:hover { color: var(--coral-dark); }
.gnav a:hover::after { transform: scaleX(1); }

.header-cta {
  padding: 10px 20px;
  font-size: 13px;
  letter-spacing: 0.08em;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.hamburger span {
  width: 26px;
  height: 3px;
  background: var(--ink);
  border-radius: 3px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ============================================================
   ヒーロー
   ============================================================ */
.hero {
  position: relative;
  min-height: calc(100vh - 42px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px 175px;
  background:
    radial-gradient(900px 520px at 76% 10%, rgba(255, 225, 92, 0.55), transparent 58%),
    radial-gradient(720px 460px at 6% 34%, rgba(46, 196, 182, 0.4), transparent 60%),
    linear-gradient(180deg, #FFF0D6 0%, #FFDCAE 32%, #FFC79B 50%, #A5DED8 74%, #6BC4BF 100%);
  overflow: hidden;
}

/* 南国デコレーション */
.hero-deco { position: absolute; pointer-events: none; z-index: 1; }

.deco-left { top: 90px; left: -40px; opacity: 0.9; animation: float 7s ease-in-out infinite; }
.deco-right { bottom: 165px; right: -30px; opacity: 0.9; z-index: 2; animation: float 9s ease-in-out infinite reverse; }

.deco-dots {
  top: 26%;
  right: 16%;
  width: 90px;
  height: 90px;
  background-image: radial-gradient(var(--coral) 3px, transparent 3.5px);
  background-size: 22px 22px;
  opacity: 0.35;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-16px) rotate(3deg); }
}

/* 夕陽の太陽 */
.hero-sun {
  position: absolute;
  top: 13%;
  right: 14%;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, #FFF3A8 0%, #FFD55E 42%, rgba(255, 213, 94, 0) 70%);
  pointer-events: none;
  z-index: 1;
  animation: sun-glow 6s ease-in-out infinite;
}

@keyframes sun-glow {
  0%, 100% { opacity: 0.8; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

/* 海の生き物（波レイヤーより上に描画） */
.hero-sea { position: absolute; inset: 0; pointer-events: none; z-index: 2; }

.sea-fish {
  position: absolute;
  width: 56px;
  height: auto;
  animation: bob 4.5s ease-in-out infinite;
}

.sea-fish-1 { top: 30%; left: 7%; animation-delay: -1.2s; }

.sea-star {
  position: absolute;
  right: 7%;
  bottom: 64px;
  width: 52px;
  height: auto;
  animation: bob 5.5s ease-in-out infinite;
  animation-delay: -2s;
}

.sea-shell {
  position: absolute;
  left: 11%;
  bottom: 52px;
  width: 42px;
  height: auto;
  animation: bob 6s ease-in-out infinite;
  animation-delay: -3s;
}

@keyframes bob {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-10px) rotate(3deg); }
}

/* 波レイヤー */
.hero-waves {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 160px;
  pointer-events: none;
  z-index: 1;
}

.hero-wave { position: absolute; bottom: 0; left: -2%; width: 104%; }

.hero-wave.w1 { height: 160px; animation: wave-bob 8s ease-in-out infinite; }
.hero-wave.w2 { height: 150px; animation: wave-bob 8s ease-in-out infinite; animation-delay: -2.6s; }
.hero-wave.w3 { height: 140px; animation: wave-bob 8s ease-in-out infinite; animation-delay: -5.2s; }

@keyframes wave-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(9px); }
}

/* 波に乗るたこ */
.hero-tako {
  position: absolute;
  right: 13%;
  bottom: 128px;
  width: 74px;
  height: 74px;
  filter: drop-shadow(0 8px 12px rgba(58, 46, 42, 0.25));
  animation: bob 3.4s ease-in-out infinite;
}

/* 泡 */
.bubble {
  position: absolute;
  bottom: 170px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  border: 1.5px solid rgba(255, 255, 255, 0.65);
  animation: bubble-rise 7s ease-in infinite;
  z-index: 1;
}

.bubble.b1 { left: 12%; width: 13px; height: 13px; }
.bubble.b2 { left: 24%; width: 8px; height: 8px; animation-delay: 1.9s; }
.bubble.b3 { left: 68%; width: 11px; height: 11px; animation-delay: 3.1s; }
.bubble.b4 { left: 84%; width: 7px; height: 7px; animation-delay: 0.8s; }

@keyframes bubble-rise {
  0% { transform: translateY(0) scale(1); opacity: 0; }
  12% { opacity: 0.75; }
  100% { transform: translateY(-130px) scale(1.15); opacity: 0; }
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 860px;
}

.hero-badge {
  display: inline-block;
  background: var(--navy);
  color: var(--gold-light);
  font-size: 13px;
  letter-spacing: 0.3em;
  padding: 8px 22px;
  border-radius: 40px;
  font-weight: 700;
  margin-bottom: 26px;
  box-shadow: var(--shadow-md);
}

.hero-title {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 22px;
}

.hero-title-small {
  font-size: clamp(15px, 2.4vw, 19px);
  letter-spacing: 0.55em;
  color: var(--teal-dark);
  font-weight: 700;
  text-indent: 0.55em;
}

.hero-title-name {
  font-family: var(--font-accent);
  font-size: clamp(64px, 13vw, 118px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0.06em;
  color: var(--ink);
  text-shadow: 0 4px 0 rgba(232, 80, 63, 0.12), 0 10px 30px rgba(58, 46, 42, 0.12);
}

.hero-title-name::after {
  content: "⛱";
  font-size: 0.32em;
  vertical-align: super;
  margin-left: 10px;
}

.hero-catch {
  font-size: clamp(15px, 2.2vw, 18px);
  color: var(--ink-soft);
  font-weight: 500;
  margin-bottom: 36px;
}

/* オープン告知バナー */
.open-banner {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  background: var(--cream);
  border: 3px solid var(--coral-dark);
  border-radius: 28px;
  padding: 18px 42px 18px 24px;
  box-shadow: var(--shadow-lg), 0 0 0 8px rgba(242, 109, 91, 0.18);
  animation: pulse-banner 2.6s ease-in-out infinite;
}

@keyframes pulse-banner {
  0%, 100% { box-shadow: var(--shadow-lg), 0 0 0 8px rgba(242, 109, 91, 0.18); }
  50% { box-shadow: var(--shadow-lg), 0 0 0 16px rgba(242, 109, 91, 0.06); }
}

.open-stamp { flex-shrink: 0; animation: spin-slow 14s linear infinite; }

@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.open-text {
  text-align: left;
  display: flex;
  flex-direction: column;
  line-height: 1.5;
}

.open-label {
  font-size: 13px;
  color: var(--ink-soft);
  font-weight: 700;
  letter-spacing: 0.1em;
}

.open-date {
  font-family: var(--font-accent);
  font-size: clamp(34px, 6vw, 56px);
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--coral-dark);
  text-shadow: 2px 2px 0 var(--gold-light);
  margin: 2px 0;
}

.hero-cta {
  margin-top: 44px;
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}

/* スクロールヒント */
.scroll-hint {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--ink-soft);
}

.scroll-hint-text {
  font-size: 10px;
  letter-spacing: 0.4em;
  font-weight: 700;
  text-indent: 0.4em;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
}

.scroll-hint-line {
  width: 2px;
  height: 46px;
  background: var(--teal);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

.scroll-hint-line::after {
  content: "";
  position: absolute;
  top: -50%;
  left: 0;
  width: 100%;
  height: 50%;
  background: var(--coral);
  animation: scroll-drop 1.8s ease-in-out infinite;
}

@keyframes scroll-drop {
  0% { top: -50%; }
  100% { top: 110%; }
}

/* ============================================================
   波の区切り
   ============================================================ */
.wave-divider {
  margin-top: -1px;
  line-height: 0;
}

.wave-divider svg { width: 100%; height: 70px; }

/* ============================================================
   海バンド（魚が泳ぐ）
   ============================================================ */
.ocean-band { position: relative; background: var(--cream); }

.ocean-band-wave {
  display: block;
  width: 100%;
  height: 42px;
  line-height: 0;
}

.ocean-band-wave-bottom {
  position: relative;
  margin-top: -1px;
}

.ocean-band-sea {
  position: relative;
  height: 120px;
  background: linear-gradient(180deg, #7ED4CE 0%, #2EC4B6 35%, #1E8F86 100%);
  overflow: hidden;
}

.ocean-band-sea .bubble { bottom: 16px; }
.ocean-band-sea .bubble.b1 { left: 18%; }
.ocean-band-sea .bubble.b3 { left: 62%; }

.ob-fish {
  position: absolute;
  top: 30%;
  left: -12%;
  width: 54px;
  height: auto;
  animation: swim linear infinite;
}

.ob-fish-1 { animation-duration: 18s; }
.ob-fish-2 { top: 58%; width: 38px; animation-duration: 24s; animation-delay: -9s; opacity: 0.85; }
.ob-fish-3 { top: 16%; width: 44px; animation-duration: 14s; animation-delay: -4s; opacity: 0.7; }

@keyframes swim {
  from { transform: translateX(0); }
  to { transform: translateX(calc(100vw + 200px)); }
}

/* ============================================================
   コンセプト
   ============================================================ */
.concept {
  background: linear-gradient(180deg, var(--cream) 0%, #F2FAF8 100%);
}

.concept-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.concept-card {
  position: relative;
  background: var(--sand);
  border: 2px solid rgba(46, 196, 182, 0.25);
  border-radius: var(--radius);
  padding: 44px 28px 36px;
  text-align: center;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.concept-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: var(--teal);
}

.concept-icon {
  width: 96px;
  height: 96px;
  margin: 0 auto 20px;
  background: var(--cream);
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-sm);
}

.concept-name {
  font-family: var(--font-accent);
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}

.concept-desc {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 2;
}

.concept-num {
  position: absolute;
  top: 10px;
  right: 18px;
  font-family: var(--font-accent);
  font-size: 44px;
  font-weight: 800;
  color: rgba(46, 196, 182, 0.14);
  line-height: 1;
}

/* ============================================================
   メニュー共通
   ============================================================ */
.menu { background: var(--cream); }

.menu-takoyaki {
  background: linear-gradient(180deg, var(--cream) 0%, var(--sand) 100%);
}

.menu-food { background: var(--sand); }
.menu-drink { background: linear-gradient(180deg, var(--sand) 0%, var(--cream) 100%); }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.menu-card {
  background: var(--cream);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(58, 46, 42, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.menu-card-img {
  position: relative;
  padding: 26px;
  background: radial-gradient(circle at 50% 30%, #FFFDF0, var(--gold-light) 140%);
  display: grid;
  place-items: center;
}

.menu-card-img svg {
  width: 150px;
  height: 150px;
  transition: transform 0.4s ease;
}

.menu-card:hover .menu-card-img svg {
  transform: rotate(-6deg) scale(1.08);
}

.feature-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--coral-dark);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 5px 12px;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
}

.menu-card-body { padding: 20px 22px 24px; }

.menu-card-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.menu-card-head h3 {
  font-family: var(--font-accent);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.menu-name-en {
  display: block;
  font-family: var(--font-body);
  font-size: 9px;
  letter-spacing: 0.28em;
  color: var(--teal-dark);
  font-weight: 700;
  margin-top: 3px;
}

.menu-price {
  font-family: var(--font-accent);
  font-size: 19px;
  font-weight: 800;
  color: var(--coral-dark);
  white-space: nowrap;
}

.menu-desc {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.9;
  margin-bottom: 14px;
}

.menu-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--coral-dark);
  background: var(--coral-light);
  padding: 4px 14px;
  border-radius: 20px;
}

.menu-tag.tag-teal {
  color: var(--teal-dark);
  background: var(--teal-light);
}

.menu-tag.tag-gold {
  color: #9A6A1E;
  background: var(--gold-light);
}

.menu-note {
  margin-top: 32px;
  text-align: center;
  font-size: 12.5px;
  color: var(--ink-soft);
}

/* フード（横長リスト） */
.food-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.menu-card-row { padding: 22px 26px; }

.menu-card-row .menu-card-body { padding: 0; }

/* ============================================================
   ドリンク
   ============================================================ */
.drink-tabs {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 40px;
}

.drink-tab {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 34px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  background: var(--cream);
  border: 2px solid rgba(46, 196, 182, 0.35);
  color: var(--ink-soft);
  transition: all 0.3s ease;
}

.drink-tab:hover {
  border-color: var(--teal);
  transform: translateY(-2px);
}

.drink-tab.is-active {
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  border-color: var(--teal-dark);
  color: #fff;
  box-shadow: 0 8px 22px rgba(30, 143, 134, 0.35);
}

.tab-icon { font-size: 18px; }

.drink-list {
  max-width: 720px;
  margin: 0 auto;
}

.drink-item {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 15px 6px;
  border-bottom: 1.5px dashed rgba(58, 46, 42, 0.14);
}

.drink-item:last-child { border-bottom: none; }

.drink-cat {
  flex-shrink: 0;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--coral-dark);
  background: var(--coral-light);
  padding: 3px 10px;
  border-radius: 16px;
  white-space: nowrap;
}

.tag-cat-teal { color: var(--teal-dark); background: var(--teal-light); }
.tag-cat-gold { color: #9A6A1E; background: var(--gold-light); }

.drink-name {
  font-size: 15.5px;
  font-weight: 700;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.drink-badge {
  display: inline-block;
  margin-left: 8px;
  font-size: 10px;
  color: #fff;
  background: var(--palm);
  border-radius: 12px;
  padding: 1px 8px;
  vertical-align: 2px;
  letter-spacing: 0.1em;
}

.drink-dots {
  flex: 1;
  border-bottom: 2.5px dotted rgba(58, 46, 42, 0.28);
  transform: translateY(-5px);
  min-width: 20px;
}

.drink-price {
  font-family: var(--font-accent);
  font-size: 16.5px;
  font-weight: 800;
  color: var(--coral-dark);
  white-space: nowrap;
}

/* ============================================================
   アクセス
   ============================================================ */
.access { background: var(--cream); }

.access-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 40px;
  align-items: start;
}

.access-map {
  background: var(--sand);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(58, 46, 42, 0.06);
}

.access-map svg { width: 100%; height: auto; }

.map-note {
  padding: 10px 16px;
  font-size: 11.5px;
  color: var(--ink-soft);
  background: var(--teal-light);
}

.access-info { padding: 10px 0; }

.access-list li {
  display: flex;
  gap: 18px;
  padding: 14px 4px;
  border-bottom: 1.5px dashed rgba(58, 46, 42, 0.14);
  font-size: 14.5px;
}

.access-list li:last-child { border-bottom: none; }

.access-label {
  flex-shrink: 0;
  width: 90px;
  font-weight: 700;
  color: var(--teal-dark);
  letter-spacing: 0.08em;
}

.access-value { font-weight: 500; }

.access-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.access-badge {
  font-size: 12px;
  font-weight: 700;
  color: var(--palm-dark);
  background: var(--teal-light);
  border: 1.5px solid rgba(45, 122, 79, 0.2);
  padding: 7px 16px;
  border-radius: 30px;
  transition: transform 0.25s ease, background 0.25s ease;
}

.access-badge:hover {
  transform: translateY(-3px);
  background: var(--teal);
  color: #fff;
}

.access-placeholder {
  margin-top: 22px;
  font-size: 12px;
  color: var(--coral-dark);
  background: var(--coral-light);
  padding: 12px 16px;
  border-radius: 12px;
  line-height: 1.8;
}

/* ============================================================
   フッター
   ============================================================ */
.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.85);
  position: relative;
  padding-top: 40px;
  overflow: hidden;
}

.footer-deco {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  line-height: 0;
}

.footer-deco svg { width: 100%; height: 60px; }

.footer-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 56px 24px 40px;
  text-align: center;
}

.footer-logo {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #fff;
}

.footer-logo b {
  font-family: var(--font-accent);
  font-weight: 800;
  color: var(--gold);
}

.footer-catch {
  margin-top: 8px;
  font-size: 11.5px;
  letter-spacing: 0.32em;
  color: rgba(255, 255, 255, 0.6);
}

.footer-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 26px;
  margin: 30px 0;
}

.footer-nav a {
  font-size: 13.5px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.25s ease;
}

.footer-nav a:hover { color: var(--gold); }

.footer-copy {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.1em;
}

.footer-note {
  margin-top: 14px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.8;
}

/* ============================================================
   トップへ戻るボタン
   ============================================================ */
.to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--coral), var(--coral-dark));
  color: #fff;
  font-size: 16px;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: all 0.35s ease;
  z-index: 40;
}

.to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.to-top:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* ============================================================
   スクロール演出（reveal）
   ※ JS有効時のみアニメーション（JS無効時はコンテンツを確実に表示）
   ============================================================ */
html.js .reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

/* 特異度を html.js .reveal (0-2-1) より高くして確実に表示させる */
html.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* 遅延ヘルパー */
.reveal.d-1 { transition-delay: 0.08s; }
.reveal.d-2 { transition-delay: 0.16s; }
.reveal.d-3 { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .ticker-track, .deco-left, .deco-right, .open-stamp, .open-banner,
  .scroll-hint-line::after, .hero-sun, .hero-wave, .hero-tako,
  .sea-fish, .sea-star, .sea-shell, .ob-fish, .bubble { animation: none !important; }
  html.js .reveal { opacity: 1; transform: none; transition: none; }
  * { transition-duration: 0.01ms !important; }
}

/* ============================================================
   レスポンシブ
   ============================================================ */
@media (max-width: 900px) {
  .concept-cards { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .concept-card { padding: 32px 18px 28px; }
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .access-grid { grid-template-columns: 1fr; }
}

@media (max-width: 800px) {
  .concept-cards { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .pc { display: none; }
  .section { padding: 64px 0; }
  .section-head { margin-bottom: 40px; }

  .ticker-track span { padding: 0 24px; font-size: 11px; }

.gnav {
  position: fixed;
  inset: 0;
  top: var(--header-height);
    background: rgba(255, 246, 233, 0.98);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    padding: 40px 20px;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    z-index: 45;
  }

  .gnav.is-open { transform: translateX(0); }

  .gnav a {
    font-size: 17px;
    padding: 12px 20px;
    width: 100%;
    text-align: center;
  }

  .hamburger { display: flex; }
  .header-cta { display: none; }

  .hero { padding: 60px 20px 155px; min-height: auto; }
  .deco-left { top: 40px; left: -70px; transform: scale(0.8); }
  .deco-right { right: -80px; bottom: 140px; transform: scale(0.75); }
  .deco-dots { display: none; }
  .hero-sun { top: 9%; right: 8%; width: 100px; height: 100px; }
  .hero-waves { height: 140px; }
  .hero-tako { right: auto; left: 9%; bottom: 112px; width: 54px; height: 54px; }
  .sea-star { right: 5%; bottom: 56px; width: 40px; }
  .sea-fish-1, .sea-shell, .bubble.b4 { display: none; }
  .ocean-band-wave { height: 30px; }
  .ocean-band-sea { height: 100px; }

  .open-banner {
    flex-direction: column;
    gap: 10px;
    padding: 18px 24px;
    border-radius: 22px;
  }

  .open-text { text-align: center; }

  .hero-cta { flex-direction: column; align-items: center; }
  .btn-lg { width: 100%; max-width: 320px; text-align: center; }

  .concept-cards { grid-template-columns: 1fr; gap: 18px; }
  .menu-grid { grid-template-columns: 1fr; }
  .food-grid { grid-template-columns: 1fr; }

  .drink-tabs { flex-direction: column; align-items: center; }
  .drink-tab { width: 100%; max-width: 300px; justify-content: center; }

  .drink-item { flex-wrap: wrap; gap: 8px; }
  .drink-dots { display: none; }
  .drink-price { margin-left: auto; }

  .access-list li { flex-direction: column; gap: 2px; }
  .access-label { width: auto; }
}
