/* ======================================================
   深 - ととのい - 美箱 | メインスタイルシート
   水・金魚鉢をイメージした和モダンデザイン
   ====================================================== */

/* ---------- CSS変数 ---------- */
:root {
  --color-deep: #1a3a4a;        /* 深海ブルー */
  --color-water: #2d6e8e;       /* 水の青 */
  --color-water-light: #4a9fb5; /* 薄い水色 */
  --color-aqua: #7ecdc8;        /* アクア */
  --color-gold: #b8956a;        /* 金 */
  --color-gold-light: #d4b896;  /* 薄い金 */
  --color-cream: #f0ede8;       /* クリーム */
  --color-bg: #faf8f5;          /* 背景 */
  --color-text: #2c2c2c;        /* テキスト */
  --color-text-light: #6b6b6b;  /* 薄いテキスト */
  --color-white: #ffffff;
  --font-serif: 'Shippori Mincho', 'Noto Serif JP', serif;
  --font-sans: 'Noto Sans JP', sans-serif;
  --shadow-soft: 0 8px 32px rgba(26, 58, 74, 0.12);
  --shadow-deep: 0 16px 48px rgba(26, 58, 74, 0.2);
  --radius: 12px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========================================================
   ページ全体ローディングオーバーレイ
   ======================================================== */
#pageLoadingOverlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: #f4f1ec;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#pageLoadingOverlay.plo-hidden {
  opacity: 0;
  visibility: hidden;
}

/* 金魚鉢アニメ */
.plo-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.plo-fishbowl {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(145deg, #c8e8ec 0%, #7ecdc8 50%, #2d6e8e 100%);
  box-shadow: 0 8px 32px rgba(45,110,142,0.25), inset 0 -4px 12px rgba(255,255,255,0.3);
  overflow: hidden;
  position: relative;
  animation: plo-bob 2s ease-in-out infinite;
}
.plo-water {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.plo-wave {
  position: absolute;
  bottom: 30%;
  left: -50%;
  width: 200%;
  height: 40px;
  background: rgba(255,255,255,0.25);
  border-radius: 50%;
  animation: plo-wave 2s ease-in-out infinite;
}
.plo-wave2 {
  bottom: 25%;
  animation: plo-wave 2.5s ease-in-out infinite reverse;
  opacity: 0.5;
}
.plo-bubbles {
  position: absolute;
  inset: 0;
}
.plo-bubble {
  position: absolute;
  bottom: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.6);
  animation: plo-rise 2s ease-in infinite;
}
.plo-bubble:nth-child(1) { left: 30%; animation-delay: 0s; }
.plo-bubble:nth-child(2) { left: 55%; animation-delay: 0.7s; width: 4px; height: 4px; }
.plo-bubble:nth-child(3) { left: 70%; animation-delay: 1.3s; width: 5px; height: 5px; }
.plo-kanji {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: rgba(255,255,255,0.95);
  text-shadow: 0 1px 6px rgba(0,0,0,0.2);
  line-height: 1;
}
.plo-kanji small {
  font-size: 0.55rem;
  letter-spacing: 0.1em;
  opacity: 0.85;
  margin-top: 3px;
}
.plo-text {
  font-family: var(--font-serif);
  font-size: 0.9rem;
  color: #5a7a8a;
  letter-spacing: 0.15em;
}
/* 点滅ドット */
.plo-dots span {
  animation: plo-dot 1.2s infinite;
  opacity: 0;
}
.plo-dots span:nth-child(1) { animation-delay: 0s; }
.plo-dots span:nth-child(2) { animation-delay: 0.3s; }
.plo-dots span:nth-child(3) { animation-delay: 0.6s; }

@keyframes plo-bob {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}
@keyframes plo-wave {
  0%,100% { transform: translateX(0) scaleY(1); }
  50%     { transform: translateX(10%) scaleY(1.2); }
}
@keyframes plo-rise {
  0%   { transform: translateY(0); opacity: 0.8; }
  100% { transform: translateY(-80px); opacity: 0; }
}
@keyframes plo-dot {
  0%,100% { opacity: 0; }
  50%     { opacity: 1; }
}

/* ---------- リセット・基本 ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  color: var(--color-text);
  background: var(--color-bg);
  overflow-x: hidden;
  line-height: 1.8;
}

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

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

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

/* ---------- 水泡パーティクル（全体） ---------- */
.bubbles-container {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.bubble {
  position: absolute;
  bottom: -50px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(126, 205, 200, 0.4), rgba(45, 110, 142, 0.1));
  border: 1px solid rgba(126, 205, 200, 0.3);
  animation: floatBubble linear infinite;
}

@keyframes floatBubble {
  0% { transform: translateY(0) translateX(0) scale(1); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 0.6; }
  100% { transform: translateY(-100vh) translateX(var(--drift, 20px)) scale(0.8); opacity: 0; }
}

/* ---------- ヘッダー ---------- */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
  padding: 0;
}

.header.scrolled {
  background: rgba(26, 58, 74, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 40px;
  max-width: 1280px;
  margin: 0 auto;
}

/* ロゴ */
.logo a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-white);
  text-decoration: none;
}

/* ロゴ画像（管理画面でアップロードした場合） */
.logo-image {
  height: 44px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  display: block;
  /* 透過PNGの場合、暗い背景に対して白く見えるようdrop-shadowを付与 */
  filter: drop-shadow(0 1px 4px rgba(0,0,0,0.25));
  transition: opacity 0.2s;
}

/* スクロール後にヘッダーが白っぽくなる場合は明暗調整しない */
.header.scrolled .logo-image {
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.15));
}

.logo-text-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1px;
}

.logo-kanji {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--color-gold-light);
  line-height: 1;
  text-shadow: 0 0 20px rgba(184, 149, 106, 0.5);
}

.logo-sub {
  font-family: var(--font-serif);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.1em;
}

/* ナビゲーション */
.nav-list {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-list a {
  color: rgba(255,255,255,0.9);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  padding: 8px 14px;
  border-radius: 20px;
  transition: all var(--transition);
  font-family: var(--font-serif);
}

.nav-list a:hover {
  color: var(--color-gold-light);
  background: rgba(255,255,255,0.1);
}

.nav-reserve {
  background: linear-gradient(135deg, var(--color-gold), #c9a87e) !important;
  color: white !important;
  padding: 10px 22px !important;
  border-radius: 24px !important;
  font-weight: 500;
  box-shadow: 0 4px 16px rgba(184, 149, 106, 0.4);
}

.nav-reserve:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184, 149, 106, 0.5) !important;
  background: linear-gradient(135deg, #c9a87e, var(--color-gold)) !important;
}

/* ===== 言語切り替えボタン ===== */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-right: 8px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 20px;
  padding: 3px 5px;
  backdrop-filter: blur(4px);
}

.lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans, sans-serif);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.65);
  padding: 3px 9px;
  border-radius: 14px;
  transition: all 0.2s;
  line-height: 1;
}

.lang-btn:hover {
  color: #fff;
  background: rgba(255,255,255,0.15);
}

.lang-btn.active {
  background: rgba(255,255,255,0.92);
  color: var(--color-deep, #1a3a4a);
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.lang-sep {
  color: rgba(255,255,255,0.25);
  font-size: 0.7rem;
  user-select: none;
  pointer-events: none;
}

/* スクロール後（ヘッダー背景変化時）の調整 */
.header.scrolled .lang-switcher {
  background: rgba(26,58,74,0.08);
  border-color: rgba(26,58,74,0.18);
}

.header.scrolled .lang-btn {
  color: rgba(26,58,74,0.55);
}

.header.scrolled .lang-btn:hover {
  color: var(--color-deep, #1a3a4a);
  background: rgba(26,58,74,0.08);
}

.header.scrolled .lang-btn.active {
  background: var(--color-deep, #1a3a4a);
  color: #fff;
}

.header.scrolled .lang-sep {
  color: rgba(26,58,74,0.2);
}

/* ===== ハンバーガーメニュー ===== */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: all var(--transition);
}

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

/* ---------- ヒーローセクション ---------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--color-deep);
}

.hero-bg {
  position: absolute;
  inset: 0;
}

/* ヒーロー背景画像（管理画面で設定した場合） */
.hero-bg-image {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 31, 46, 0.6);
  transition: background 0.3s;
}

#waterCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: opacity 0.5s;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    135deg,
    rgba(10, 30, 50, 0.7) 0%,
    rgba(26, 58, 74, 0.5) 50%,
    rgba(10, 30, 50, 0.6) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: var(--color-white);
  padding: 0 20px;
}

.hero-catch-small {
  font-family: var(--font-serif);
  font-size: 1rem;
  letter-spacing: 0.3em;
  color: var(--color-aqua);
  margin-bottom: 16px;
  animation: fadeInDown 1s ease 0.3s both;
}

.hero-title {
  font-family: var(--font-serif);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 20px;
  animation: fadeInUp 1s ease 0.5s both;
}

.hero-kanji {
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 700;
  color: var(--color-gold-light);
  text-shadow: 0 0 40px rgba(184, 149, 106, 0.6), 0 4px 20px rgba(0,0,0,0.3);
  line-height: 1;
}

.hero-dash {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  color: rgba(255,255,255,0.4);
}

.hero-sub-title, .hero-sub-title2 {
  font-size: clamp(1.4rem, 3.5vw, 2.8rem);
  font-weight: 400;
  color: rgba(255,255,255,0.95);
  letter-spacing: 0.15em;
}

.hero-desc {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.8);
  margin-bottom: 40px;
  line-height: 2;
  animation: fadeInUp 1s ease 0.7s both;
}

.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease 0.9s both;
}

/* スクロールインジケーター */
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  animation: fadeIn 1s ease 1.5s both;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* 水の波紋 */
.water-ripple {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 1px solid rgba(126, 205, 200, 0.3);
  animation: rippleExpand 4s ease-out infinite;
}

.water-ripple--2 { animation-delay: 1.3s; }
.water-ripple--3 { animation-delay: 2.6s; }

@keyframes rippleExpand {
  0% { transform: translateX(-50%) scale(0); opacity: 0.8; }
  100% { transform: translateX(-50%) scale(8); opacity: 0; }
}

/* ---------- ボタン ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--font-serif);
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-gold), #c9a87e);
  color: white;
  box-shadow: 0 6px 24px rgba(184, 149, 106, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(184, 149, 106, 0.5);
}

.btn-secondary {
  background: rgba(255,255,255,0.15);
  color: white;
  border: 1px solid rgba(255,255,255,0.4);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.25);
  border-color: rgba(255,255,255,0.7);
  transform: translateY(-3px);
}

.btn-menu {
  background: linear-gradient(135deg, var(--color-water), var(--color-deep));
  color: white;
  width: 100%;
  justify-content: center;
  margin-top: auto;
  box-shadow: 0 4px 16px rgba(26, 58, 74, 0.2);
}

.btn-menu:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26, 58, 74, 0.3);
}

.btn-cta {
  background: var(--color-gold);
  color: white;
  font-size: 1.05rem;
  padding: 18px 40px;
  box-shadow: 0 8px 32px rgba(184, 149, 106, 0.4);
}

.btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(184, 149, 106, 0.5);
}

.btn-map {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--color-water);
  color: white;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 0.9rem;
}

.btn-map:hover {
  background: var(--color-deep);
  transform: translateY(-2px);
}

.btn-footer-reserve {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--color-gold), #c9a87e);
  color: white;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 0.9rem;
  margin-top: 12px;
}

.btn-footer-reserve:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(184, 149, 106, 0.4);
}

/* ---------- ニューステッカー ---------- */
.ticker-bar {
  background: var(--color-deep);
  color: white;
  overflow: hidden;
  display: flex;
  align-items: center;
  height: 48px;
  position: relative;
  z-index: 5;
}

.ticker-inner {
  display: flex;
  align-items: center;
  width: 100%;
}

.ticker-label {
  background: var(--color-gold);
  color: white;
  padding: 0 20px;
  height: 100%;
  display: flex;
  align-items: center;
  white-space: nowrap;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  font-family: var(--font-serif);
  flex-shrink: 0;
}

.ticker-track {
  overflow: hidden;
  flex: 1;
}

.ticker-track span {
  display: inline-block;
  white-space: nowrap;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.85);
  animation: ticker 30s linear infinite;
  padding-left: 100%;
}

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

/* ---------- セクション共通 ---------- */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.35em;
  color: var(--color-water);
  font-family: var(--font-serif);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 500;
  color: var(--color-deep);
  line-height: 1.5;
  margin-bottom: 16px;
}

.section-desc {
  color: var(--color-text-light);
  font-size: 0.95rem;
  line-height: 1.9;
}

.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 16px 0 24px;
}

.section-divider span {
  display: block;
  width: 60px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--color-aqua));
}

.section-divider span:last-child {
  background: linear-gradient(to left, transparent, var(--color-aqua));
}

.section-divider i {
  color: var(--color-aqua);
  font-size: 0.9rem;
}

/* ---------- コンセプトセクション ---------- */
.concept {
  background: var(--color-bg);
  overflow: hidden;
}

.concept-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.concept-text .section-label { display: block; margin-bottom: 12px; }

.concept-body {
  font-family: var(--font-serif);
  font-size: 0.98rem;
  line-height: 2.2;
  color: var(--color-text-light);
  margin-bottom: 20px;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-water);
  font-family: var(--font-serif);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  transition: all var(--transition);
  border-bottom: 1px solid var(--color-aqua);
  padding-bottom: 2px;
}

.link-arrow:hover {
  color: var(--color-deep);
  gap: 14px;
}

/* 金魚鉢アニメーション */
.fishbowl-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.fishbowl {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border: 3px solid rgba(126, 205, 200, 0.4);
  background: radial-gradient(ellipse at 30% 20%, rgba(74, 159, 181, 0.3), rgba(26, 58, 74, 0.8));
  position: relative;
  overflow: hidden;
  box-shadow:
    0 0 0 8px rgba(126, 205, 200, 0.08),
    0 0 0 16px rgba(126, 205, 200, 0.04),
    inset 0 -4px 30px rgba(0, 100, 150, 0.3),
    0 20px 60px rgba(26, 58, 74, 0.3);
}

.fishbowl::before {
  content: '';
  position: absolute;
  top: 12%;
  left: 15%;
  width: 35%;
  height: 25%;
  background: radial-gradient(ellipse, rgba(255,255,255,0.25), transparent);
  border-radius: 50%;
  transform: rotate(-20deg);
}

.fishbowl-water {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 75%;
  overflow: hidden;
}

.fishbowl-wave {
  position: absolute;
  width: 200%;
  height: 40px;
  background: rgba(126, 205, 200, 0.2);
  border-radius: 50%;
}

.wave1 {
  top: -10px;
  left: -50%;
  animation: waveMove 3s ease-in-out infinite;
}

.wave2 {
  top: -5px;
  left: -50%;
  background: rgba(74, 159, 181, 0.15);
  animation: waveMove 4s ease-in-out infinite reverse;
}

@keyframes waveMove {
  0%, 100% { transform: translateX(0) rotate(0deg); }
  50% { transform: translateX(10%) rotate(2deg); }
}

.fishbowl-bubbles {
  position: absolute;
  width: 100%;
  height: 100%;
}

.fb-bubble {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.6), rgba(126, 205, 200, 0.2));
  border: 1px solid rgba(255,255,255,0.4);
  animation: fbFloat linear infinite;
}

.fb-bubble--1 { width: 8px; height: 8px; left: 20%; animation-duration: 3s; animation-delay: 0s; }
.fb-bubble--2 { width: 5px; height: 5px; left: 50%; animation-duration: 4s; animation-delay: 0.8s; }
.fb-bubble--3 { width: 10px; height: 10px; left: 70%; animation-duration: 3.5s; animation-delay: 1.5s; }
.fb-bubble--4 { width: 6px; height: 6px; left: 35%; animation-duration: 5s; animation-delay: 2s; }
.fb-bubble--5 { width: 4px; height: 4px; left: 80%; animation-duration: 2.8s; animation-delay: 0.5s; }

@keyframes fbFloat {
  0% { transform: translateY(100px); opacity: 0; }
  20% { opacity: 0.8; }
  80% { opacity: 0.6; }
  100% { transform: translateY(-20px); opacity: 0; }
}

.fishbowl-text-inside {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 5;
}

.fishbowl-text-inside span {
  font-family: var(--font-serif);
  font-size: 4rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  text-shadow: 0 0 20px rgba(126, 205, 200, 0.8), 0 4px 10px rgba(0,0,0,0.3);
  line-height: 1;
}

.fishbowl-text-inside small {
  font-family: var(--font-serif);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.2em;
}

.fishbowl-shadow {
  width: 200px;
  height: 20px;
  background: radial-gradient(ellipse, rgba(26, 58, 74, 0.25), transparent);
  border-radius: 50%;
}

.concept-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.tag {
  padding: 6px 16px;
  border-radius: 20px;
  border: 1px solid var(--color-aqua);
  color: var(--color-water);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  font-family: var(--font-serif);
}

/* 波形区切り */
.wave-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
}

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

.wave-divider--flip {
  top: 0;
  bottom: auto;
}

/* ---------- 特徴セクション ---------- */
.features {
  background: linear-gradient(180deg, var(--color-cream) 0%, var(--color-bg) 100%);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 28px;
}

.feature-card {
  background: white;
  border-radius: var(--radius);
  padding: 36px 24px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: all var(--transition);
  border: 1px solid rgba(126, 205, 200, 0.15);
  position: relative;
  overflow: hidden;
  cursor: default;
}

.feature-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-aqua), var(--color-gold));
  transform: scaleX(0);
  transition: transform var(--transition);
  z-index: 2;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-deep);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

/* ========================================
   ホバー画像オーバーレイ
   ======================================== */
.feature-card .feat-hover-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 0.45s ease, transform 0.45s ease;
  z-index: 0;
  border-radius: var(--radius);
}

/* 暗いオーバーレイ（テキスト可読性確保） */
.feature-card .feat-hover-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(5, 20, 35, 0.45) 0%,
    rgba(5, 20, 35, 0.62) 60%,
    rgba(5, 20, 35, 0.78) 100%
  );
  border-radius: var(--radius);
}

/* ホバー時に画像を表示 */
.feature-card:hover .feat-hover-img {
  opacity: 1;
  transform: scale(1);
}

/* カード内コンテンツをz-index上に */
.feature-card .feat-card-inner {
  position: relative;
  z-index: 1;
  transition: color var(--transition);
}

/* ホバー時にテキストを白く */
.feature-card:hover .feat-card-inner .feature-icon {
  background: rgba(255,255,255,0.18) !important;
  border-color: rgba(255,255,255,0.35) !important;
  transition: background 0.35s, border-color 0.35s;
}

.feature-card:hover .feat-card-inner .feature-icon i {
  color: white !important;
}

.feature-card:hover .feat-card-inner .feature-icon img {
  box-shadow: 0 0 0 3px rgba(255,255,255,0.4);
}

.feature-card:hover .feat-card-inner h3 {
  color: #ffffff;
}

.feature-card:hover .feat-card-inner p {
  color: rgba(255,255,255,0.88);
}

/* タッチデバイス：.touch-active クラスでホバー相当を表示 */
.feature-card.touch-active .feat-hover-img {
  opacity: 1;
  transform: scale(1);
}
.feature-card.touch-active .feat-card-inner .feature-icon {
  background: rgba(255,255,255,0.18) !important;
  border-color: rgba(255,255,255,0.35) !important;
}
.feature-card.touch-active .feat-card-inner .feature-icon i {
  color: white !important;
}
.feature-card.touch-active .feat-card-inner h3 { color: #ffffff; }
.feature-card.touch-active .feat-card-inner p  { color: rgba(255,255,255,0.88); }

.feature-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(126, 205, 200, 0.15), rgba(45, 110, 142, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  border: 1px solid rgba(126, 205, 200, 0.3);
}

.feature-icon i {
  font-size: 1.5rem;
  color: var(--color-water);
}

/* アイコン画像対応 */
.feature-icon-img {
  overflow: hidden;
}
.feature-icon-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.feature-card h3 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--color-deep);
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 0.85rem;
  color: var(--color-text-light);
  line-height: 1.8;
}

/* ---------- メニューセクション ---------- */
.menu-section {
  background: var(--color-bg);
}

.menu-tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.menu-tab {
  padding: 10px 28px;
  border-radius: 50px;
  border: 1.5px solid var(--color-aqua);
  background: transparent;
  color: var(--color-water);
  font-family: var(--font-serif);
  font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--transition);
  letter-spacing: 0.08em;
}

.menu-tab:hover,
.menu-tab.active {
  background: linear-gradient(135deg, var(--color-water), var(--color-deep));
  color: white;
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(26, 58, 74, 0.25);
}

.menu-panel { display: none; }
.menu-panel.active { display: block; }

.menu-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.menu-card {
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: all var(--transition);
  border: 1px solid rgba(126, 205, 200, 0.15);
}

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

.menu-card-inner {
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}

.menu-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--color-gold);
  color: white;
  font-size: 0.72rem;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.05em;
  font-family: var(--font-serif);
}

.menu-badge--premium { background: linear-gradient(135deg, #8b6914, var(--color-gold)); }
.menu-badge--gift { background: #c0757a; }

.menu-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(126, 205, 200, 0.2), rgba(45, 110, 142, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border: 1px solid rgba(126, 205, 200, 0.3);
}

.menu-icon i {
  font-size: 1.3rem;
  color: var(--color-water);
}

/* 画像アイコン */
.menu-icon-img {
  background: none;
  border: none;
  overflow: hidden;
  padding: 0;
  width: 56px;
  height: 56px;
}
.menu-icon-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

/* 画像ありカード：上部サムネイル */
.menu-card-has-image .menu-icon-img {
  width: 100%;
  height: 140px;
  border-radius: 10px;
  margin-bottom: 16px;
}
.menu-card-has-image .menu-icon-img img {
  border-radius: 10px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu-name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--color-deep);
  margin-bottom: 8px;
}

.menu-time {
  font-size: 0.82rem;
  color: var(--color-aqua);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.menu-desc {
  font-size: 0.84rem;
  color: var(--color-text-light);
  line-height: 1.8;
  margin-bottom: 20px;
  flex: 1;
}

.menu-price {
  margin-bottom: 20px;
}

.price {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--color-deep);
}

.price-tax {
  font-size: 0.8rem;
  color: var(--color-text-light);
}

.menu-note {
  margin-top: 40px;
  padding: 20px 28px;
  background: linear-gradient(135deg, rgba(126, 205, 200, 0.1), rgba(45, 110, 142, 0.05));
  border-radius: var(--radius);
  border-left: 3px solid var(--color-aqua);
  font-size: 0.9rem;
  color: var(--color-text-light);
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-note i { color: var(--color-aqua); }
.menu-note strong { color: var(--color-deep); }

/* ---------- 空間セクション ---------- */
.space-section {
  background: linear-gradient(180deg, var(--color-deep) 0%, #0d2535 100%);
  color: white;
  overflow: hidden;
}

.space-section .section-label { color: var(--color-aqua); }
.space-section .section-title { color: white; }

.space-bg-deco {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(74, 159, 181, 0.1) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(126, 205, 200, 0.08) 0%, transparent 50%);
}

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

.space-card {
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(126, 205, 200, 0.15);
  transition: all var(--transition);
}

.space-card:hover {
  transform: translateY(-8px);
  border-color: rgba(126, 205, 200, 0.4);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.space-visual {
  height: 220px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}

.space-visual--1 {
  background: linear-gradient(
    135deg,
    rgba(45, 110, 142, 0.8),
    rgba(26, 58, 74, 0.9)
  ),
  repeating-linear-gradient(
    45deg,
    rgba(126, 205, 200, 0.05) 0px,
    rgba(126, 205, 200, 0.05) 1px,
    transparent 1px,
    transparent 20px
  );
}

.space-visual--2 {
  background: linear-gradient(
    135deg,
    rgba(16, 45, 65, 0.9),
    rgba(45, 90, 110, 0.8)
  ),
  repeating-linear-gradient(
    0deg,
    rgba(126, 205, 200, 0.05) 0px,
    rgba(126, 205, 200, 0.05) 1px,
    transparent 1px,
    transparent 15px
  );
}

.space-visual--3 {
  background: linear-gradient(
    135deg,
    rgba(26, 40, 70, 0.9),
    rgba(50, 70, 100, 0.8)
  ),
  repeating-linear-gradient(
    90deg,
    rgba(184, 149, 106, 0.08) 0px,
    rgba(184, 149, 106, 0.08) 1px,
    transparent 1px,
    transparent 20px
  );
}

/* 画像ありのスペースビジュアル */
.space-visual-img {
  height: 220px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  background-size: cover;
  background-position: center;
  background-color: #0d2535;
}

/* 画像の上に薄いグラデーションオーバーレイ */
.space-img-overlay-grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(5,15,25,0.15) 0%,
    rgba(5,15,25,0.55) 70%,
    rgba(5,15,25,0.8) 100%
  );
  z-index: 1;
}

.space-visual-img .space-num,
.space-visual-img .space-name-overlay {
  z-index: 2;
}

/* サブ画像サムネイル */
.space-sub-thumbs {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}
.space-sub-thumb {
  width: 60px;
  height: 45px;
  object-fit: cover;
  border-radius: 6px;
  opacity: 0.75;
  border: 1px solid rgba(126,205,200,0.25);
  transition: opacity 0.2s;
}
.space-sub-thumb:hover { opacity: 1; }

.space-water-anim {
  position: absolute;
  inset: 0;
}

.sw-bubble {
  position: absolute;
  bottom: 10%;
  left: 30%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(126, 205, 200, 0.4);
  animation: swBubble 4s ease-in-out infinite;
}

.sw-b2 { left: 60%; animation-delay: 1.3s; width: 4px; height: 4px; }
.sw-b3 { left: 80%; animation-delay: 2.6s; width: 8px; height: 8px; }

@keyframes swBubble {
  0% { transform: translateY(0); opacity: 0; }
  20% { opacity: 0.8; }
  100% { transform: translateY(-200px); opacity: 0; }
}

.space-num {
  position: absolute;
  top: 20px;
  right: 20px;
  font-family: var(--font-serif);
  font-size: 3rem;
  color: rgba(126, 205, 200, 0.15);
  font-weight: 700;
  line-height: 1;
}

.space-name-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(10, 25, 40, 0.9), transparent);
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.space-name-overlay span {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 500;
  color: white;
}

.space-name-overlay small {
  font-size: 0.72rem;
  color: var(--color-aqua);
  letter-spacing: 0.2em;
}

.space-info {
  padding: 24px;
}

.space-info h3 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 10px;
}

.space-info p {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  margin-bottom: 16px;
}

.space-features {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.space-features li {
  font-size: 0.8rem;
  color: var(--color-aqua);
  display: flex;
  align-items: center;
  gap: 8px;
}

.space-features li i {
  font-size: 0.65rem;
}

/* ---------- フローセクション ---------- */
/* ===== お客様の声セクション ===== */
.reviews-section {
  background: linear-gradient(180deg, #f0ede8 0%, #f7f5f2 100%);
}

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

.review-card {
  background: white;
  border-radius: 14px;
  padding: 26px 22px;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  display: flex; flex-direction: column; gap: 12px;
  transition: transform 0.25s, box-shadow 0.25s;
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.11);
}
.review-card.featured-review {
  border-color: rgba(126,205,200,0.3);
  background: linear-gradient(135deg, #fff 0%, rgba(126,205,200,0.04) 100%);
}

.rc-top  { display: flex; align-items: flex-start; gap: 14px; }
.rc-avatar {
  width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0;
  font-family: var(--font-serif); font-size: 1.1rem; font-weight: 700;
  color: white; display: flex; align-items: center; justify-content: center;
}
.rc-info   { flex: 1; min-width: 0; }
.rc-author { font-weight: 600; font-size: 0.88rem; color: var(--color-deep); }
.rc-meta   { font-size: 0.72rem; color: #aaa; margin-top: 2px; }
.rc-stars  { color: #f4b400; font-size: 0.82rem; letter-spacing: 1px; }
.rc-menu   { display: inline-block; font-size: 0.7rem; background: rgba(126,205,200,0.12); color: #1a8a85; padding: 2px 10px; border-radius: 20px; margin-top: 3px; }
.rc-title  { font-family: var(--font-serif); font-size: 0.95rem; color: var(--color-deep); font-weight: 600; line-height: 1.5; }
.rc-body   { font-size: 0.82rem; color: #555; line-height: 1.85; flex: 1; }
.rc-foot   { font-size: 0.7rem; color: #ccc; border-top: 1px solid rgba(0,0,0,0.05); padding-top: 8px; }

@media(max-width: 900px) { .reviews-grid { grid-template-columns: 1fr 1fr; } }
@media(max-width: 600px) { .reviews-grid { grid-template-columns: 1fr; } }

.flow-section {
  background: var(--color-bg);
}

.flow-steps {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.flow-step {
  text-align: center;
  flex: 1;
  min-width: 160px;
  max-width: 200px;
  padding: 28px 16px;
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(126, 205, 200, 0.15);
  transition: all var(--transition);
}

.flow-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-deep);
}

.flow-num {
  font-family: var(--font-serif);
  font-size: 0.75rem;
  color: var(--color-aqua);
  letter-spacing: 0.2em;
  margin-bottom: 12px;
}

.flow-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(126, 205, 200, 0.15), rgba(45, 110, 142, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  border: 1px solid rgba(126, 205, 200, 0.3);
}

.flow-icon i {
  font-size: 1.2rem;
  color: var(--color-water);
}

.flow-step h3 {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: var(--color-deep);
  margin-bottom: 10px;
}

.flow-step p {
  font-size: 0.8rem;
  color: var(--color-text-light);
  line-height: 1.8;
}

.flow-arrow {
  color: var(--color-aqua);
  font-size: 1.2rem;
  padding-top: 70px;
  flex-shrink: 0;
}

/* ---------- 声セクション ---------- */
.voice-section {
  background: linear-gradient(180deg, var(--color-cream) 0%, var(--color-bg) 100%);
}

.voice-slider {
  overflow: hidden;
  position: relative;
}

.voice-cards {
  display: flex;
  gap: 28px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.voice-card {
  background: white;
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(126, 205, 200, 0.15);
  min-width: calc(50% - 14px);
  flex-shrink: 0;
  transition: all var(--transition);
}

.voice-stars {
  color: var(--color-gold);
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.voice-text {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  line-height: 2;
  color: var(--color-text);
  margin-bottom: 24px;
  font-style: italic;
}

.voice-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.voice-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-aqua), var(--color-water));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.voice-author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--color-deep);
}

.voice-author small {
  font-size: 0.78rem;
  color: var(--color-text-light);
}

.voice-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(45, 110, 142, 0.2);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}

.dot.active {
  background: var(--color-water);
  width: 24px;
  border-radius: 4px;
}

/* ---------- ブログセクション（トップページ） ---------- */
.blog-top-section {
  background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-cream) 100%);
}

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

.blog-top-card {
  display: flex;
  flex-direction: column;
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: var(--shadow-soft);
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s, box-shadow 0.25s;
  cursor: pointer;
}

.blog-top-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.12);
}

.blog-top-thumb {
  width: 100%;
  height: 180px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--color-deep), #0d2535);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.blog-top-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.blog-top-card:hover .blog-top-thumb img {
  transform: scale(1.05);
}

.blog-top-thumb-icon {
  color: rgba(126,205,200,0.35);
  font-size: 2.5rem;
}

.blog-top-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.blog-top-cat {
  font-size: 0.7rem;
  padding: 3px 12px;
  border-radius: 20px;
  background: rgba(45,110,142,0.1);
  color: var(--color-water);
  font-weight: 600;
  display: inline-block;
  align-self: flex-start;
}

.blog-top-title {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: var(--color-deep);
  font-weight: 600;
  line-height: 1.55;
}

.blog-top-excerpt {
  font-size: 0.78rem;
  color: #777;
  line-height: 1.7;
  flex: 1;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.blog-top-date {
  font-size: 0.7rem;
  color: #aaa;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
}

/* ---------- アクセスセクション ---------- */
.access-section {
  background: var(--color-bg);
}

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

.access-block {
  margin-bottom: 32px;
}

.access-block h3 {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--color-water);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.access-block p,
.access-block ul li {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 2;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}

.hours-table td {
  padding: 6px 12px;
  color: var(--color-text-light);
  vertical-align: top;
}

.hours-table td:first-child {
  color: var(--color-deep);
  font-family: var(--font-serif);
  white-space: nowrap;
  width: 100px;
}

.hours-table tr.closed td { color: #c0757a; }

.access-tel {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--color-deep);
  letter-spacing: 0.1em;
  transition: color var(--transition);
}

.access-tel:hover { color: var(--color-water); }

.access-map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: linear-gradient(135deg, var(--color-deep), var(--color-water));
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.map-placeholder {
  text-align: center;
  color: white;
  padding: 40px;
}

.map-placeholder i {
  font-size: 3rem;
  color: var(--color-aqua);
  margin-bottom: 16px;
  display: block;
}

.map-placeholder p {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 24px;
}

/* ---------- CTAセクション ---------- */
.cta-section {
  background: linear-gradient(135deg, var(--color-deep), #0d2535);
  padding: 100px 0;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.cta-water {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  overflow: hidden;
}

.cta-wave {
  position: absolute;
  bottom: 0;
  left: -50%;
  width: 200%;
  height: 60px;
  background: rgba(126, 205, 200, 0.05);
  border-radius: 50%;
}

.cta-wave1 { animation: ctaWave 6s ease-in-out infinite; }
.cta-wave2 { animation: ctaWave 8s ease-in-out infinite reverse; background: rgba(74, 159, 181, 0.08); }

@keyframes ctaWave {
  0%, 100% { transform: translateX(0) scaleY(1); }
  50% { transform: translateX(-5%) scaleY(1.3); }
}

.cta-content { position: relative; z-index: 5; }
.cta-label {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.35em;
  color: var(--color-aqua);
  margin-bottom: 16px;
  font-family: var(--font-serif);
}

.cta-content h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 400;
  margin-bottom: 16px;
}

.cta-content p {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 40px;
  line-height: 2;
}

/* ---------- フッター ---------- */
.footer {
  background: var(--color-deep);
  color: rgba(255,255,255,0.8);
  position: relative;
}

.footer-wave {
  height: 60px;
  overflow: hidden;
}

.footer-wave svg {
  width: 100%;
  height: 100%;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding: 60px 0 40px;
}

.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

/* フッターロゴ画像（濃紺背景に合わせてそのまま表示） */
.footer-logo-image {
  height: 56px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  display: block;
  /* 暗い背景なのでカラーロゴをそのまま使用。
     白背景透過PNGの場合は下記でフィルターを上書き可能:
     filter: brightness(0) invert(1) opacity(0.9); */
}

/* フッターロゴテキストラッパー */
.footer-logo-text-wrap {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer-desc {
  font-size: 0.85rem;
  line-height: 2;
  color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
}

.footer-sns {
  display: flex;
  gap: 12px;
}

.footer-sns a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  transition: all var(--transition);
}

.footer-sns a:hover {
  background: var(--color-gold);
  color: white;
  transform: translateY(-3px);
}

.footer-links h4 {
  font-family: var(--font-serif);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  color: var(--color-gold-light);
  margin-bottom: 16px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links ul a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}

.footer-links ul a:hover { color: var(--color-aqua); }

.footer-contact h4 {
  font-family: var(--font-serif);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  color: var(--color-gold-light);
  margin-bottom: 16px;
}

.footer-contact p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-contact a {
  color: rgba(255,255,255,0.8);
  transition: color var(--transition);
}

.footer-contact a:hover { color: var(--color-aqua); }
.footer-hours { font-size: 0.8rem; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
}

/* ---------- フロートボタン ---------- */
.float-reserve {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--color-gold), #c9a87e);
  color: white;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  box-shadow: 0 8px 32px rgba(184, 149, 106, 0.5);
  transition: all var(--transition);
  z-index: 500;
  font-family: var(--font-serif);
  opacity: 0;
  transform: translateY(20px);
}

.float-reserve.visible {
  opacity: 1;
  transform: translateY(0);
}

.float-reserve i { font-size: 1.2rem; }
.float-reserve span { font-size: 0.65rem; letter-spacing: 0.05em; }

.float-reserve:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 40px rgba(184, 149, 106, 0.6);
}

/* ---------- アニメーション ---------- */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }

/* スペースカードはAOS対象外 → 常時表示 */
.space-card {
  opacity: 1 !important;
  transform: none !important;
}

[data-aos] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-aos="fade-right"] { transform: translateX(-40px); }
[data-aos="fade-left"] { transform: translateX(40px); }

[data-aos].aos-animate {
  opacity: 1;
  transform: translate(0) !important;
}

/* ---------- レスポンシブ ---------- */
@media (max-width: 1024px) {
  .space-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .header-inner { padding: 14px 20px; }

  /* 言語スイッチャー（モバイル） */
  .lang-switcher {
    margin-right: 4px;
    padding: 2px 4px;
  }
  .lang-btn { font-size: 0.68rem; padding: 3px 7px; }
  .lang-sep { display: none; }

  .nav {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(26, 58, 74, 0.98);
    backdrop-filter: blur(16px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
    z-index: 999;
  }

  .nav.open {
    opacity: 1;
    pointer-events: all;
  }

  .nav-list {
    flex-direction: column;
    gap: 20px;
  }

  .nav-list a {
    font-size: 1.3rem;
    padding: 12px 24px;
  }

  .hamburger { display: flex; z-index: 1001; }

  .concept-grid { grid-template-columns: 1fr; gap: 48px; }
  .fishbowl { width: 220px; height: 220px; }

  .features-grid { grid-template-columns: 1fr 1fr; }
  .menu-cards { grid-template-columns: 1fr; }
  .space-grid { grid-template-columns: 1fr; }

  .flow-steps { gap: 12px; }
  .flow-arrow { display: none; }
  .flow-step { min-width: 140px; }

  .voice-card { min-width: 85vw; }

  .blog-top-grid { grid-template-columns: 1fr; }

  .access-grid { grid-template-columns: 1fr; gap: 40px; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .section { padding: 70px 0; }
  .hero-title { flex-wrap: wrap; }
}

@media (max-width: 480px) {
  .features-grid { grid-template-columns: 1fr; }
  .menu-tabs { gap: 6px; }
  .menu-tab { padding: 8px 16px; font-size: 0.82rem; }
  .hero-btns { flex-direction: column; align-items: center; }
  .float-reserve { bottom: 20px; right: 20px; }
}

@media (min-width: 481px) and (max-width: 900px) {
  .blog-top-grid { grid-template-columns: 1fr 1fr; }
}

/* =====================================================
   動画セクション
   ===================================================== */
.video-section {
  background: var(--color-deep);
  position: relative;
  overflow: hidden;
}

.video-section .section-label {
  color: var(--color-water-light);
}

.video-section .section-title {
  color: #fff;
}

.video-section .section-desc {
  color: rgba(255,255,255,0.72);
  max-width: 560px;
  margin: 0 auto;
}

.video-section .section-divider span {
  background: rgba(126,205,200,0.35);
}

.video-section .section-divider i {
  color: var(--color-water-light);
}

/* 動画ラッパー（アスペクト比 16:9 固定） */
.video-wrap {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.video-inner {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 */
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 24px 60px rgba(0,0,0,0.5),
    0 0 0 1px rgba(126,205,200,0.2);
  background: #000;
}

.video-inner iframe,
.video-inner video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 16px;
}

/* 自動再生動画（音なし） */
.video-inner video {
  object-fit: cover;
}

/* 装飾：背景の波紋 */
.video-section::before {
  content: '';
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45,110,142,0.18) 0%, transparent 70%);
  pointer-events: none;
}

/* wave-divider を背景色に合わせる */
.video-section .wave-divider svg path {
  fill: var(--color-bg, #f0ede8);
}

/* レスポンシブ */
@media (max-width: 768px) {
  .video-wrap { padding: 0 12px; }
  .video-inner { border-radius: 10px; }
}

/* ======================================================
   東京店追加スタイル
   2大メニュー・フロー・ヒーローバッジ
   ====================================================== */

/* ---- ヒーロー メニューバッジ ---- */
.hero-menu-badges {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  margin: 20px 0 28px;
  flex-wrap: wrap;
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 0.92rem;
  font-family: var(--font-serif);
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.3;
  backdrop-filter: blur(8px);
}
.hero-badge i { font-size: 1.2rem; }
.hero-badge small { font-size: 0.72rem; font-weight: 400; opacity: 0.85; display: block; }
.hero-badge--onsen {
  background: rgba(126,205,200,0.2);
  border: 1px solid rgba(126,205,200,0.5);
  color: #d0f5f2;
}
.hero-badge--ai {
  background: rgba(184,149,106,0.2);
  border: 1px solid rgba(184,149,106,0.5);
  color: #f5e6d0;
}
.hero-badge-divider {
  color: rgba(255,255,255,0.4);
  font-size: 1.4rem;
  font-weight: 300;
}

/* ---- 2大メニューセクション ---- */
.two-menus-section { background: var(--color-bg); }

.two-menus-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
}
@media (max-width: 768px) {
  .two-menus-grid { grid-template-columns: 1fr; gap: 24px; }
}

.two-menu-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(26,58,74,0.10);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.two-menu-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 56px rgba(26,58,74,0.16);
}

.two-menu-visual {
  position: relative;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.two-menu-visual--onsen {
  background: linear-gradient(135deg, #0a1f2e 0%, #1a3a4a 50%, #2d6e8e 100%);
}
.two-menu-visual--ai {
  background: linear-gradient(135deg, #1a0e2e 0%, #2d1a4a 50%, #6e3a8e 100%);
}
.two-menu-num {
  position: absolute;
  top: 16px; left: 20px;
  font-size: 2.8rem;
  font-weight: 800;
  color: rgba(255,255,255,0.08);
  font-family: var(--font-serif);
  line-height: 1;
}
.two-menu-icon {
  font-size: 3.2rem;
  z-index: 2;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.3));
}
.two-menu-visual--onsen .two-menu-icon { color: #7ecdc8; }
.two-menu-visual--ai .two-menu-icon { color: #c89aee; }

/* 温泉側の水泡アニメ流用 */
.two-menu-water-anim {
  position: absolute; inset: 0; pointer-events: none;
}
.two-menu-water-anim .sw-bubble {
  position: absolute;
  bottom: 10px; left: 30%;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(126,205,200,0.4);
  animation: swBubble 3s ease-in infinite;
}
.two-menu-water-anim .sw-b2 { left: 55%; animation-delay: 1s; width: 6px; height: 6px; }
.two-menu-water-anim .sw-b3 { left: 70%; animation-delay: 2s; width: 5px; height: 5px; }
@keyframes swBubble {
  0%   { transform: translateY(0); opacity: 0.6; }
  100% { transform: translateY(-120px); opacity: 0; }
}

/* AI側のサークルデコ */
.two-menu-ai-deco { position: absolute; inset: 0; pointer-events: none; }
.ai-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(200,154,238,0.25);
  animation: aiPulse 3s ease-in-out infinite;
}
.ai-c1 { width: 80px; height: 80px; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.ai-c2 { width: 120px; height: 120px; top: 50%; left: 50%; transform: translate(-50%,-50%); animation-delay: 0.5s; }
.ai-c3 { width: 160px; height: 160px; top: 50%; left: 50%; transform: translate(-50%,-50%); animation-delay: 1s; }
@keyframes aiPulse {
  0%, 100% { opacity: 0.3; transform: translate(-50%,-50%) scale(1); }
  50%       { opacity: 0.7; transform: translate(-50%,-50%) scale(1.08); }
}

.two-menu-body { padding: 28px 28px 32px; }
.two-menu-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-deep);
  line-height: 1.3;
  margin-bottom: 4px;
}
.two-menu-title span { font-size: 1.1rem; font-weight: 500; }
.two-menu-en {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  color: var(--color-aqua);
  margin-bottom: 14px;
}
.two-menu-desc {
  font-size: 0.88rem;
  color: var(--color-text-light);
  line-height: 1.85;
  margin-bottom: 18px;
}
.two-menu-features {
  list-style: none;
  padding: 0; margin: 0 0 24px;
  display: flex; flex-direction: column; gap: 8px;
}
.two-menu-features li {
  font-size: 0.85rem;
  color: var(--color-text);
  display: flex; align-items: center; gap: 8px;
}
.two-menu-features li i { font-size: 0.9rem; }
.two-menu-btn--onsen i { color: #7ecdc8; }
.two-menu-btn--ai i     { color: #c89aee; }

.two-menu-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  font-family: var(--font-serif);
  text-decoration: none;
  transition: all 0.3s;
  letter-spacing: 0.04em;
}
.two-menu-btn--onsen {
  background: linear-gradient(135deg, #2d6e8e, #7ecdc8);
  color: #fff;
}
.two-menu-btn--onsen:hover { box-shadow: 0 4px 16px rgba(45,110,142,0.35); transform: translateX(3px); }
.two-menu-btn--ai {
  background: linear-gradient(135deg, #6e3a8e, #c89aee);
  color: #fff;
}
.two-menu-btn--ai:hover { box-shadow: 0 4px 16px rgba(110,58,142,0.35); transform: translateX(3px); }

/* ---- フローセクション ---- */
.flow-section { padding: 80px 0; }

.flow-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin-top: 48px;
  flex-wrap: wrap;
}
.flow-step {
  flex: 1;
  min-width: 140px;
  max-width: 180px;
  text-align: center;
  padding: 24px 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(126,205,200,0.15);
  border-radius: 16px;
  transition: background 0.3s, transform 0.3s;
}
.flow-step:hover {
  background: rgba(126,205,200,0.08);
  transform: translateY(-4px);
}
.flow-step-num {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: #7ecdc8;
  margin-bottom: 10px;
  font-weight: 700;
}
.flow-step-icon {
  font-size: 2rem;
  color: #7ecdc8;
  margin-bottom: 12px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.flow-step-title {
  font-family: var(--font-serif);
  font-size: 0.92rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.4;
}
.flow-step-desc {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
}
.flow-arrow {
  display: flex;
  align-items: center;
  padding: 0 6px;
  padding-top: 60px;
  color: rgba(126,205,200,0.4);
  font-size: 1rem;
}
@media (max-width: 900px) {
  .flow-steps {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .flow-arrow { display: none; }
  .flow-step { max-width: 100%; }
}
@media (max-width: 500px) {
  .flow-steps { grid-template-columns: 1fr; }
}
