/* ==========================================================================
   Embellir（アンベリール）× つり船 福丸 スタイルシート
   カラーパレット：
   - ディープネイビー（福丸メイン）: #002B61, #001F44
   - エメラルドグリーン（Embellirメイン）: #059669, #10B981, #047857
   - LINEグリーン: #06C755, #05B34C
   - ゴールド/アンバー（初回無料アクセント）: #D97706, #F59E0B, #FEF3C7
   - 背景グレー: #F4F8FC, #EBF3FD
   - テキスト: #1E293B, #475569
   ========================================================================== */

:root {
  --primary-navy: #002B61;
  --primary-navy-dark: #001A3D;
  --primary-navy-light: #0D3E7D;
  --accent-emerald: #059669;
  --accent-emerald-light: #10B981;
  --accent-gold: #F59E0B;
  --accent-gold-hover: #D97706;
  --line-green: #06C755;
  --line-green-hover: #05b34c;
  --bg-light: #F4F8FC;
  --bg-subtle: #EBF3FD;
  --text-main: #1E293B;
  --text-muted: #64748B;
  --border-color: #E2E8F0;
  --font-serif: "Noto Serif JP", serif;
  --font-sans: "Noto Sans JP", sans-serif;
  --font-en: "Montserrat", sans-serif;
  --shadow-sm: 0 2px 8px rgba(0, 43, 97, 0.06);
  --shadow-md: 0 6px 20px rgba(0, 43, 97, 0.1);
  --shadow-lg: 0 12px 32px rgba(0, 43, 97, 0.16);
}

/* リセット＆基本設定 */
*, *::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(--text-main);
  background-color: #FFFFFF;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  word-break: auto-phrase;
}

.sp-only {
  display: none !important;
}

.pc-only {
  display: inline !important;
}

@media (max-width: 768px) {
  .sp-only {
    display: inline !important;
  }
  .pc-only {
    display: none !important;
  }
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.25s ease;
}

ul, ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* ==================== トップ最上部バー ==================== */
.top-announcement-bar {
  background-color: var(--primary-navy-dark);
  color: #FFFFFF;
  font-size: 0.8rem;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.top-bar-left .seo-title {
  color: #CBD5E1;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.top-bar-right .status-indicator {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #FEF08A;
  font-weight: 700;
}

.status-dot {
  width: 8px;
  height: 8px;
  background-color: #22C55E;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 8px #22C55E;
  animation: pulse-dot 1.8s infinite;
}

@keyframes pulse-dot {
  0% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.2); }
  100% { opacity: 1; transform: scale(1); }
}

/* ==================== ヘッダー（福丸スタイル） ==================== */
.site-header {
  background-color: #FFFFFF;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.header-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  padding-bottom: 14px;
}

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

.logo-symbol {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary-navy) 0%, var(--accent-emerald) 100%);
  color: #FFFFFF;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.25);
  transition: transform 0.3s ease;
}

.brand-logo:hover .logo-symbol {
  transform: scale(1.08) rotate(5deg);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-sub {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 700;
  letter-spacing: 0.05em;
}

.logo-main {
  font-family: var(--font-en);
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--primary-navy);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.logo-main small {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-left: 4px;
}

/* 右側 お問い合わせ・LINE案内 */
.header-contact-area {
  display: flex;
  align-items: center;
  gap: 20px;
}

.contact-text-box {
  display: flex;
  flex-direction: column;
  text-align: right;
}

.contact-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 700;
}

.contact-label i {
  color: var(--accent-emerald);
}

.contact-highlight {
  font-size: 0.95rem;
  color: var(--primary-navy);
  font-weight: 700;
}

.contact-highlight strong {
  color: #E11D48;
  font-size: 1.1rem;
}

.btn-header-line {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--line-green);
  color: #FFFFFF;
  font-size: 0.95rem;
  font-weight: 800;
  padding: 10px 22px;
  border-radius: 50px;
  box-shadow: 0 4px 14px rgba(6, 199, 85, 0.3);
  transition: all 0.25s ease;
}

.btn-header-line i {
  font-size: 1.3rem;
}

.btn-header-line:hover {
  background-color: var(--line-green-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(6, 199, 85, 0.4);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-toggle span {
  width: 24px;
  height: 3px;
  background-color: var(--primary-navy);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* グローバルナビゲーション（福丸の濃紺横並びメニュー） */
.global-nav {
  background-color: var(--primary-navy);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-list {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}

.nav-list li {
  flex: 1;
  text-align: center;
}

.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #FFFFFF;
  font-size: 0.92rem;
  font-weight: 700;
  padding: 14px 10px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.25s ease;
  position: relative;
}

.nav-list li:first-child .nav-link {
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.nav-link:hover {
  background-color: var(--accent-emerald);
  color: #FFFFFF;
}

.nav-link.external {
  background-color: rgba(255, 255, 255, 0.08);
}

.nav-link.external i {
  color: #F472B6;
  font-size: 1.1rem;
}

/* ==================== ヒーローセクション ==================== */
.hero-section {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  overflow: hidden;
}

.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-slider .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1.8s ease, transform 6s ease;
}

.hero-slider .slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 31, 68, 0.82) 0%, rgba(5, 78, 55, 0.65) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: 80px 20px;
  width: 100%;
}

.hero-text-block {
  max-width: 780px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: rgba(254, 243, 199, 0.95);
  color: #92400E;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 800;
  margin-bottom: 24px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  backdrop-blur: 4px;
}

.hero-badge .badge-icon {
  color: var(--accent-gold-hover);
}

.hero-badge strong {
  color: #B45309;
  font-size: 1.15rem;
  text-decoration: underline;
  text-decoration-thickness: 2px;
}

.hero-title {
  font-family: var(--font-serif);
  margin-bottom: 20px;
  line-height: 1.25;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-title .sub-catch {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  color: #A7F3D0;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.hero-title .main-catch {
  display: block;
  font-size: 3.2rem;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.hero-desc {
  font-size: 1.1rem;
  color: #E2E8F0;
  margin-bottom: 28px;
  line-height: 1.8;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.hero-feature-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
}

.hero-feature-pills .pill {
  background-color: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.88rem;
  font-weight: 700;
  color: #FFFFFF;
}

.hero-feature-pills .pill i {
  color: #34D399;
  margin-right: 4px;
}

.hero-cta-area {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: var(--line-green);
  color: #FFFFFF;
  font-size: 1.1rem;
  font-weight: 800;
  padding: 16px 32px;
  border-radius: 50px;
  box-shadow: 0 8px 24px rgba(6, 199, 85, 0.4);
  transition: all 0.3s ease;
}

.btn-hero-primary i {
  font-size: 1.5rem;
}

.btn-hero-primary:hover {
  background-color: var(--line-green-hover);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(6, 199, 85, 0.5);
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(255, 255, 255, 0.2);
  border: 2px solid #FFFFFF;
  backdrop-filter: blur(8px);
  color: #FFFFFF;
  font-size: 1.05rem;
  font-weight: 700;
  padding: 16px 28px;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
  background-color: #FFFFFF;
  color: var(--primary-navy);
  transform: translateY(-3px);
}

.scroll-down-guide {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: #CBD5E1;
  font-family: var(--font-en);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.scroll-arrow {
  width: 1px;
  height: 30px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.8), transparent);
  animation: scroll-anim 2s infinite;
}

@keyframes scroll-anim {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  50.1% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ==================== NEWSバー（福丸完全再現） ==================== */
.news-bar-section {
  background-color: var(--bg-light);
  border-top: 4px solid var(--primary-navy);
  border-bottom: 1px solid var(--border-color);
  padding: 24px 0;
}

.news-inner {
  display: flex;
  align-items: center;
  gap: 30px;
}

.news-title-box {
  background-color: var(--primary-navy);
  color: #FFFFFF;
  padding: 12px 24px;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  box-shadow: var(--shadow-sm);
}

.news-en {
  font-family: var(--font-en);
  font-size: 1.3rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1.1;
}

.news-jp {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: #CBD5E1;
}

.news-list-box {
  flex: 1;
}

.news-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.news-item {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.95rem;
  border-bottom: 1px dotted #CBD5E1;
  padding-bottom: 8px;
}

.news-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.news-date {
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 700;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.news-date i {
  color: var(--primary-navy);
  font-size: 0.75rem;
}

.news-link {
  color: var(--primary-navy);
  font-weight: 600;
}

.news-link:hover {
  color: var(--accent-emerald);
  text-decoration: underline;
}

/* ==================== セクション見出し共通 ==================== */
.section-title-wrap {
  margin-bottom: 48px;
}

.section-title-wrap.text-center {
  text-align: center;
}

.sec-en {
  display: block;
  font-family: var(--font-en);
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  color: var(--accent-emerald);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.sec-jp {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--primary-navy);
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}

.sec-sub {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* ==================== INFORMATION（4大スクエアタイル） ==================== */
.info-tiles-section {
  padding: 80px 0;
  background-color: #FFFFFF;
}

.tiles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.tile-card {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #FFFFFF;
  box-shadow: var(--shadow-md);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border: 2px solid transparent;
}

.tile-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
  z-index: 1;
}

.tile-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 43, 97, 0.72) 0%, rgba(0, 26, 61, 0.92) 100%);
  transition: background 0.4s ease;
  z-index: 2;
}

.tile-content {
  position: relative;
  z-index: 3;
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}

.tile-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #FEF08A;
  margin-bottom: 14px;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
}

.tile-title {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  margin-bottom: 8px;
}

.tile-desc {
  font-size: 0.85rem;
  color: #E2E8F0;
  line-height: 1.5;
  margin-bottom: 16px;
}

.tile-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  background-color: var(--accent-emerald);
  color: #FFFFFF;
  padding: 6px 14px;
  border-radius: 30px;
  transition: all 0.25s ease;
}

.tile-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-emerald-light);
}

.tile-card:hover .tile-bg-image {
  transform: scale(1.1);
}

.tile-card:hover .tile-overlay {
  background: linear-gradient(to bottom, rgba(5, 150, 105, 0.75) 0%, rgba(0, 43, 97, 0.95) 100%);
}

.tile-card:hover .tile-icon {
  background-color: var(--accent-emerald);
  color: #FFFFFF;
  transform: scale(1.1);
}

.tile-card:hover .tile-btn {
  background-color: #FFFFFF;
  color: var(--primary-navy);
}

/* ==================== SNS・活動レポート（COME CHECK IT OUT！） ==================== */
.social-section {
  padding: 80px 0;
  background-color: var(--bg-light);
  border-top: 1px solid var(--border-color);
}

.social-banner-en {
  display: block;
  font-family: var(--font-en);
  font-size: 1.3rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  color: var(--primary-navy);
  margin-bottom: 6px;
}

.social-title {
  font-family: var(--font-serif);
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--text-main);
  margin-bottom: 8px;
}

.social-sub {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 36px;
}

.social-buttons-wrap {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.social-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 28px;
  border-radius: 12px;
  color: #FFFFFF;
  box-shadow: var(--shadow-md);
  min-width: 320px;
  transition: all 0.3s ease;
}

.social-btn.instagram {
  background: linear-gradient(45deg, #F09433 0%, #E6683C 25%, #DC2743 50%, #CC2366 75%, #BC1888 100%);
}

.social-btn.line {
  background-color: var(--line-green);
}

.social-btn .icon-wrap {
  font-size: 2.2rem;
  display: flex;
  align-items: center;
}

.social-btn .btn-text-wrap {
  flex: 1;
  text-align: left;
}

.social-btn .btn-sub {
  display: block;
  font-size: 0.75rem;
  opacity: 0.9;
}

.social-btn .btn-main {
  display: block;
  font-size: 1.15rem;
  font-weight: 800;
}

.social-btn .arrow-icon {
  font-size: 1.1rem;
  opacity: 0.8;
  transition: transform 0.25s ease;
}

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

.social-btn:hover .arrow-icon {
  transform: translate(3px, -3px);
  opacity: 1;
}

/* インスタ風フォトギャラリー */
.photo-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.gallery-card {
  background-color: #FFFFFF;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

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

.gallery-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
}

.gallery-meta {
  padding: 16px;
}

.gallery-meta .tag {
  display: inline-block;
  background-color: var(--bg-subtle);
  color: var(--primary-navy);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 8px;
}

.gallery-meta p {
  font-size: 0.88rem;
  color: var(--text-main);
  line-height: 1.6;
}

/* ==================== CONTACT（福丸のテーブル型セクション完全再現） ==================== */
.contact-table-section {
  padding: 80px 0;
  background-color: var(--bg-subtle);
  border-top: 1px solid #D6E4F8;
  border-bottom: 1px solid #D6E4F8;
}

.contact-split-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.contact-title-wrap .sec-en {
  color: var(--primary-navy);
}

.contact-lead-text {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

/* 福丸の濃紺ヘッダー付きテーブル再現 */
.fukumaru-table-wrap {
  background-color: #FFFFFF;
  border: 1px solid var(--primary-navy);
  box-shadow: var(--shadow-md);
  margin-bottom: 16px;
}

.fukumaru-table {
  width: 100%;
  border-collapse: collapse;
}

.fukumaru-table tr {
  border-bottom: 1px solid #E2E8F0;
}

.fukumaru-table tr:last-child {
  border-bottom: none;
}

.tbl-head {
  width: 32%;
  background-color: var(--primary-navy);
  color: #FFFFFF;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 14px 18px;
  text-align: center;
  vertical-align: middle;
  border-right: 1px solid #E2E8F0;
}

.tbl-body {
  width: 68%;
  background-color: #FFFFFF;
  padding: 14px 20px;
  font-size: 0.95rem;
  color: var(--text-main);
  line-height: 1.6;
}

.price-highlight {
  color: #DC2626;
  font-weight: 800;
  font-size: 1.05rem;
}

.tbl-line-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--line-green);
  font-weight: 800;
  margin-top: 6px;
  transition: color 0.2s ease;
}

.tbl-line-link:hover {
  color: var(--line-green-hover);
  text-decoration: underline;
}

.contact-note-box {
  background-color: #FFFFFF;
  padding: 12px 18px;
  border-left: 4px solid var(--accent-emerald);
  border-radius: 4px;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.facility-preview-card {
  background-color: #FFFFFF;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
}

.facility-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.facility-caption {
  padding: 20px;
}

.facility-caption h4 {
  font-size: 1.15rem;
  color: var(--primary-navy);
  margin-bottom: 6px;
}

.facility-caption p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ==================== 詳細セクション共通 ==================== */
.detail-section {
  padding: 90px 0;
  border-bottom: 1px solid var(--border-color);
}

/* コミュニティ紹介 */
.about-section {
  background-color: #FFFFFF;
}

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

.about-card {
  background-color: var(--bg-light);
  border-radius: 14px;
  padding: 36px 24px;
  text-align: center;
  border: 1px solid #E2E8F0;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.about-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-emerald-light);
}

.about-icon-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-navy) 0%, var(--accent-emerald) 100%);
  color: #FFFFFF;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 6px 18px rgba(0, 43, 97, 0.15);
}

.about-card h3 {
  font-size: 1.25rem;
  color: var(--primary-navy);
  margin-bottom: 14px;
  font-weight: 800;
}

.about-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* 料金セクション */
.fee-section {
  background-color: var(--bg-light);
}

.fee-cards-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 860px;
  margin: 0 auto;
}

.fee-card {
  background-color: #FFFFFF;
  border-radius: 16px;
  padding: 40px 32px;
  border: 2px solid var(--border-color);
  box-shadow: var(--shadow-md);
  position: relative;
  display: flex;
  flex-direction: column;
}

.fee-card.featured {
  border-color: var(--accent-gold);
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.15);
}

.fee-badge {
  position: absolute;
  top: -14px;
  left: 32px;
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-hover) 100%);
  color: #FFFFFF;
  font-size: 0.85rem;
  font-weight: 800;
  padding: 4px 16px;
  border-radius: 30px;
  box-shadow: 0 4px 10px rgba(245, 158, 11, 0.3);
}

.fee-badge-sub {
  display: inline-block;
  background-color: var(--bg-subtle);
  color: var(--primary-navy);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 30px;
  width: fit-content;
  margin-bottom: 12px;
}

.fee-plan-name {
  font-size: 1.4rem;
  color: var(--primary-navy);
  margin-bottom: 14px;
  font-weight: 800;
}

.fee-amount {
  margin-bottom: 24px;
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.fee-amount .currency {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-main);
}

.fee-amount .num {
  font-family: var(--font-en);
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--primary-navy);
  line-height: 1;
}

.fee-card.featured .fee-amount .num {
  color: var(--accent-gold-hover);
}

.fee-amount .tax, .fee-amount .unit {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 600;
}

.fee-features {
  margin-bottom: 32px;
  flex: 1;
}

.fee-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  margin-bottom: 12px;
  color: var(--text-main);
}

.fee-features li i {
  color: var(--accent-emerald);
}

.btn-fee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 1.05rem;
  font-weight: 800;
  padding: 14px 20px;
  border-radius: 50px;
  transition: all 0.25s ease;
}

.btn-fee.btn-primary {
  background-color: var(--line-green);
  color: #FFFFFF;
  box-shadow: 0 4px 15px rgba(6, 199, 85, 0.3);
}

.btn-fee.btn-primary:hover {
  background-color: var(--line-green-hover);
  transform: translateY(-2px);
}

.btn-fee.btn-secondary {
  background-color: var(--primary-navy);
  color: #FFFFFF;
}

.btn-fee.btn-secondary:hover {
  background-color: var(--primary-navy-light);
  transform: translateY(-2px);
}

/* 男女別 料金グリッド */
.gender-fee-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

.gender-box {
  border-radius: 12px;
  padding: 16px 12px;
  text-align: center;
  border: 1px solid var(--border-color);
  background-color: var(--bg-light);
}

.gender-box.male {
  border-color: #BFDBFE;
  background-color: #EFF6FF;
}

.gender-box.female {
  border-color: #FBCFE8;
  background-color: #FDF2F8;
}

.gender-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.gender-box.male .gender-label {
  color: #1D4ED8;
}

.gender-box.female .gender-label {
  color: #BE185D;
}

.gender-price .num {
  font-family: var(--font-en);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--primary-navy);
  line-height: 1;
}

.gender-box.female .gender-price .num {
  color: #BE185D;
}

.gender-price .unit {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-left: 2px;
}

/* 開催日程・カレンダー予約テーブル */
.schedule-section {
  background-color: #FFFFFF;
}

.schedule-table-wrap {
  max-width: 920px;
  margin: 0 auto 24px;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.schedule-table {
  width: 100%;
  border-collapse: collapse;
}

.schedule-table thead {
  background-color: var(--primary-navy);
  color: #FFFFFF;
}

.schedule-table th {
  padding: 16px 20px;
  font-size: 0.95rem;
  font-weight: 700;
  text-align: left;
}

.schedule-table td {
  padding: 16px 20px;
  border-bottom: 1px solid #E2E8F0;
  font-size: 0.95rem;
  color: var(--text-main);
  vertical-align: middle;
}

.schedule-table tr:last-child td {
  border-bottom: none;
}

.date-col {
  font-size: 1.05rem;
  color: var(--primary-navy);
}

.status-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 800;
}

.status-badge.status-open {
  background-color: #DCFCE7;
  color: #15803D;
  border: 1px solid #86EFAC;
}

.status-badge.status-warning {
  background-color: #FEE2E2;
  color: #B91C1C;
  border: 1px solid #FCA5A5;
}

.btn-table-reserve {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: var(--line-green);
  color: #FFFFFF;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 30px;
  transition: all 0.2s ease;
}

.btn-table-reserve:hover {
  background-color: var(--line-green-hover);
  transform: translateY(-1px);
}

.schedule-guide-box {
  background-color: var(--bg-subtle);
  max-width: 920px;
  margin: 0 auto 20px;
  padding: 14px 20px;
  border-radius: 8px;
  font-size: 0.92rem;
  color: var(--primary-navy);
}

/* 管理者ログインバー＆操作パネル */
.admin-panel-box {
  max-width: 920px;
  margin: 0 auto;
}

.text-right {
  text-align: right;
}

.btn-admin-login {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  padding: 6px 10px;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.btn-admin-login:hover {
  color: var(--accent-emerald);
  background-color: var(--bg-subtle);
}

.admin-status-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #FEF3C7;
  border: 1px solid #FCD34D;
  padding: 10px 18px;
  border-radius: 8px 8px 0 0;
}

.admin-tag {
  font-size: 0.85rem;
  font-weight: 800;
  color: #92400E;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-admin-logout {
  background-color: #FFFFFF;
  border: 1px solid #D97706;
  color: #B45309;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-admin-logout:hover {
  background-color: #B45309;
  color: #FFFFFF;
}

.admin-add-form {
  background-color: #FFFBEB;
  border: 1px solid #FCD34D;
  border-top: none;
  padding: 20px;
  border-radius: 0 0 8px 8px;
  margin-bottom: 20px;
}

.admin-add-form h4 {
  font-size: 0.95rem;
  color: #92400E;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.admin-form-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr auto;
  gap: 12px;
  align-items: flex-end;
}

.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: #78350F;
  margin-bottom: 4px;
}

.form-group input, .form-group select {
  width: 100%;
  padding: 8px 12px;
  border-radius: 6px;
  border: 1px solid #FBBF24;
  background-color: #FFFFFF;
  font-size: 0.85rem;
  font-family: inherit;
}

.btn-submit-event {
  background-color: var(--accent-emerald);
  color: #FFFFFF;
  border: none;
  font-size: 0.85rem;
  font-weight: 800;
  padding: 9px 18px;
  border-radius: 6px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-submit-event:hover {
  background-color: var(--accent-emerald-light);
}

.btn-delete-event {
  background: none;
  border: none;
  color: #EF4444;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.btn-delete-event:hover {
  background-color: #FEE2E2;
}

/* モーダルスタイル */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 31, 68, 0.7);
  backdrop-filter: blur(6px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-dialog {
  background-color: #FFFFFF;
  width: 100%;
  max-width: 420px;
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid var(--border-color);
  animation: modal-fade-in 0.25s ease-out;
}

@keyframes modal-fade-in {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

.modal-header {
  background-color: var(--primary-navy);
  color: #FFFFFF;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h3 {
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.modal-close {
  background: none;
  border: none;
  color: #FFFFFF;
  font-size: 1.6rem;
  cursor: pointer;
  line-height: 1;
}

.modal-body {
  padding: 24px 20px;
}

.modal-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.5;
}

.modal-input-group input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  font-size: 0.95rem;
  font-family: inherit;
}

.modal-input-group input:focus {
  outline: none;
  border-color: var(--accent-emerald);
  box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.15);
}

.error-msg {
  color: #DC2626;
  font-size: 0.82rem;
  font-weight: 700;
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 24px;
}

.btn-modal-cancel {
  padding: 10px 18px;
  border-radius: 6px;
  border: 1px solid var(--border-color);
  background-color: #FFFFFF;
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
}

.btn-modal-submit {
  padding: 10px 22px;
  border-radius: 6px;
  border: none;
  background-color: var(--primary-navy);
  color: #FFFFFF;
  font-size: 0.88rem;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-modal-submit:hover {
  background-color: var(--accent-emerald);
}

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

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

.access-info-box {
  background-color: #FFFFFF;
  padding: 36px 30px;
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
}

.facility-name {
  font-size: 1.5rem;
  color: var(--primary-navy);
  margin-bottom: 8px;
  font-weight: 900;
}

.facility-address {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.facility-address i {
  color: #EF4444;
}

.access-details-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 28px;
}

.access-item {
  display: flex;
  gap: 16px;
}

.acc-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background-color: var(--bg-subtle);
  color: var(--primary-navy);
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.acc-text strong {
  display: block;
  font-size: 1rem;
  color: var(--text-main);
  margin-bottom: 2px;
}

.acc-text p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.btn-gmap {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--primary-navy);
  color: #FFFFFF;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 50px;
  transition: all 0.25s ease;
}

.btn-gmap:hover {
  background-color: var(--accent-emerald);
}

.access-map-frame {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
}

/* FAQアコーディオン */
.faq-section {
  background-color: #FFFFFF;
}

.faq-accordion-wrap {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background-color: var(--bg-light);
  border-radius: 10px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  transition: all 0.25s ease;
}

.faq-item.active {
  border-color: var(--accent-emerald-light);
  box-shadow: var(--shadow-sm);
}

.faq-q {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  cursor: pointer;
  user-select: none;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--primary-navy);
}

.q-badge {
  width: 32px;
  height: 32px;
  background-color: var(--primary-navy);
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-en);
  font-size: 0.95rem;
  font-weight: 900;
  flex-shrink: 0;
}

.q-text {
  flex: 1;
}

.q-icon {
  font-size: 1rem;
  color: var(--text-muted);
  transition: transform 0.3s ease;
}

.faq-item.active .q-icon {
  transform: rotate(180deg);
  color: var(--accent-emerald);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-a-inner {
  display: flex;
  gap: 14px;
  padding: 0 24px 22px;
  color: var(--text-main);
  font-size: 0.95rem;
  line-height: 1.8;
}

.a-badge {
  width: 32px;
  height: 32px;
  background-color: #EF4444;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-en);
  font-size: 0.95rem;
  font-weight: 900;
  flex-shrink: 0;
}

/* ==================== フッター ==================== */
.site-footer {
  background-color: var(--primary-navy-dark);
  color: #CBD5E1;
  padding-top: 70px;
  padding-bottom: 30px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-logo {
  font-family: var(--font-en);
  font-size: 1.8rem;
  font-weight: 900;
  color: #FFFFFF;
  margin-bottom: 12px;
}

.footer-logo small {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  color: #94A3B8;
}

.footer-desc {
  font-size: 0.9rem;
  color: #94A3B8;
  margin-bottom: 12px;
  line-height: 1.6;
}

.footer-place {
  font-size: 0.85rem;
  color: #FEF08A;
}

.footer-nav-block h4, .footer-sns-block h4 {
  font-family: var(--font-en);
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: #FFFFFF;
  margin-bottom: 18px;
  border-left: 3px solid var(--accent-emerald);
  padding-left: 10px;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 0.9rem;
  color: #94A3B8;
  transition: all 0.2s ease;
}

.footer-links a:hover {
  color: #FFFFFF;
  padding-left: 6px;
}

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

.sns-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  color: #FFFFFF;
  transition: all 0.25s ease;
}

.sns-link.line {
  background-color: var(--line-green);
}

.sns-link.instagram {
  background: linear-gradient(45deg, #F09433, #DC2743, #BC1888);
}

.sns-link:hover {
  opacity: 0.9;
  transform: translateX(4px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
}

.copyright {
  font-size: 0.8rem;
  color: #64748B;
}

/* ==================== モバイル固定フッターCTA ==================== */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 31, 68, 0.95);
  backdrop-filter: blur(10px);
  padding: 10px 16px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  z-index: 999;
}

.mobile-cta-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--line-green);
  color: #FFFFFF;
  padding: 10px 20px;
  border-radius: 50px;
  box-shadow: 0 4px 14px rgba(6, 199, 85, 0.4);
}

.mobile-cta-btn i.fa-line {
  font-size: 1.8rem;
}

.mobile-cta-btn .cta-txt {
  display: flex;
  flex-direction: column;
  text-align: center;
  line-height: 1.2;
}

.mobile-cta-btn .cta-txt small {
  font-size: 0.72rem;
  color: #FEF08A;
  font-weight: 800;
}

.mobile-cta-btn .cta-txt strong {
  font-size: 0.95rem;
  font-weight: 900;
}

.mobile-cta-btn .cta-arrow {
  font-size: 0.9rem;
}

/* ==================== レスポンシブ対応 ==================== */
@media (max-width: 1024px) {
  .tiles-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-split-layout {
    grid-template-columns: 1fr;
  }

  .access-split {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  body {
    padding-bottom: 70px; /* モバイル固定バー用余白 */
  }

  .top-bar-left {
    display: none; /* スマホでは長すぎるSEOタイトルを非表示 */
  }

  .top-announcement-bar {
    text-align: center;
    padding: 8px 12px;
  }

  .top-bar-right {
    width: 100%;
    justify-content: center;
    font-size: 0.8rem;
    line-height: 1.4;
  }

  .header-contact-area .contact-text-box,
  .header-contact-area .contact-btn-box {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .global-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--primary-navy-dark);
    box-shadow: var(--shadow-lg);
  }

  .global-nav.active {
    display: block;
  }

  .nav-list {
    flex-direction: column;
  }

  .nav-link {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 16px 20px;
    justify-content: flex-start;
  }

  /* セクション共通見出し */
  .detail-section {
    padding: 52px 0;
  }

  .section-title-wrap {
    margin-bottom: 30px;
  }

  .sec-en {
    font-size: 0.95rem;
    margin-bottom: 4px;
    letter-spacing: 0.14em;
  }

  .sec-jp {
    font-size: 1.65rem;
    line-height: 1.35;
    margin-bottom: 8px;
  }

  .sec-sub {
    font-size: 0.88rem;
    line-height: 1.6;
    padding: 0 8px;
  }

  /* ヒーローセクション */
  .hero-section {
    min-height: auto;
    padding: 30px 0 20px;
  }

  .hero-content {
    padding: 40px 16px 30px;
  }

  .hero-badge {
    font-size: 0.82rem;
    padding: 6px 14px;
    margin-bottom: 18px;
  }

  .hero-badge strong {
    font-size: 1.05rem;
  }

  .hero-title .sub-catch {
    font-size: 1.15rem;
    line-height: 1.45;
    margin-bottom: 8px;
    letter-spacing: 0.04em;
  }

  .hero-title .main-catch {
    font-size: 2.1rem;
    line-height: 1.25;
    letter-spacing: 0.02em;
  }

  .hero-desc {
    font-size: 0.92rem;
    line-height: 1.75;
    margin-bottom: 22px;
  }

  .hero-feature-pills {
    gap: 8px;
    margin-bottom: 26px;
  }

  .hero-feature-pills .pill {
    font-size: 0.8rem;
    padding: 5px 12px;
  }

  .hero-cta-area {
    flex-direction: column;
    gap: 12px;
  }

  .btn-hero-primary {
    width: 100%;
    justify-content: center;
    font-size: 1.0rem;
    padding: 14px 20px;
  }

  .btn-hero-secondary {
    width: 100%;
    justify-content: center;
    font-size: 0.9rem;
    padding: 12px 18px;
  }

  /* 4大タイルカードのスマホ最適化（文字溢れ・変な改行を防止） */
  .info-tiles-section {
    padding: 50px 0;
  }

  .tiles-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .tile-card {
    aspect-ratio: auto;
    min-height: 210px;
    border-radius: 12px;
  }

  .tile-content {
    padding: 16px 10px;
  }

  .tile-icon {
    width: 44px;
    height: 44px;
    font-size: 1.25rem;
    margin-bottom: 8px;
  }

  .tile-title {
    font-size: 1.05rem;
    margin-bottom: 6px;
    line-height: 1.25;
  }

  .tile-desc {
    font-size: 0.76rem;
    line-height: 1.45;
    margin-bottom: 12px;
  }

  .tile-btn {
    font-size: 0.74rem;
    padding: 5px 12px;
  }

  /* SNSセクション */
  .social-section {
    padding: 50px 0;
  }

  .social-title {
    font-size: 1.6rem;
    line-height: 1.35;
  }

  .social-sub {
    font-size: 0.88rem;
    margin-bottom: 24px;
  }

  .social-buttons-wrap {
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
  }

  .social-btn {
    min-width: unset;
    width: 100%;
    padding: 14px 20px;
  }

  .social-btn .btn-main {
    font-size: 0.95rem;
  }

  .social-btn .btn-sub {
    font-size: 0.75rem;
  }

  .photo-gallery-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .gallery-img {
    aspect-ratio: 16 / 10;
  }

  .gallery-meta {
    padding: 12px 14px;
  }

  .gallery-meta p {
    font-size: 0.84rem;
  }

  /* 開催概要テーブル */
  .contact-table-section {
    padding: 50px 0;
  }

  .tbl-head {
    width: 32%;
    font-size: 0.82rem;
    padding: 12px 8px;
  }

  .tbl-body {
    width: 68%;
    font-size: 0.85rem;
    padding: 12px 10px;
    line-height: 1.55;
  }

  .facility-preview-card {
    margin-top: 24px;
  }

  .facility-img {
    height: auto;
    aspect-ratio: 16 / 9;
    max-height: 220px;
  }

  .facility-caption {
    padding: 14px 16px;
  }

  .facility-caption h4 {
    font-size: 1.05rem;
  }

  .facility-caption p {
    font-size: 0.84rem;
  }

  /* コミュニティ紹介 */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .about-card {
    padding: 24px 18px;
  }

  /* 料金システム */
  .fee-cards-wrap {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .fee-card {
    padding: 28px 18px;
  }

  .fee-amount .num {
    font-size: 2.8rem;
  }

  .gender-price .num {
    font-size: 2.0rem;
  }

  .fee-features li {
    font-size: 0.86rem;
  }

  /* 開催日程テーブル（横スクロール対応・スリム表示） */
  .schedule-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 8px;
    margin-bottom: 18px;
  }

  .schedule-table {
    min-width: 520px;
  }

  .schedule-table th {
    padding: 12px 10px;
    font-size: 0.82rem;
    white-space: nowrap;
  }

  .schedule-table td {
    padding: 12px 10px;
    font-size: 0.84rem;
    white-space: nowrap;
  }

  .schedule-table td.date-col {
    font-size: 0.9rem;
  }

  .btn-table-reserve {
    font-size: 0.78rem;
    padding: 5px 12px;
    white-space: nowrap;
  }

  .status-badge {
    font-size: 0.74rem;
    padding: 3px 8px;
  }

  .schedule-guide-box {
    font-size: 0.84rem;
    padding: 12px 14px;
    line-height: 1.5;
  }

  /* アクセスセクション */
  .access-info-box .facility-name {
    font-size: 1.2rem;
  }

  .facility-address {
    font-size: 0.85rem;
  }

  .access-details-list {
    margin: 18px 0;
    gap: 14px;
  }

  .access-item .acc-text strong {
    font-size: 0.88rem;
  }

  .access-item .acc-text p {
    font-size: 0.82rem;
  }

  .access-map-frame iframe {
    height: 300px;
  }

  /* よくある質問 */
  .faq-q {
    padding: 16px 14px;
    font-size: 0.92rem;
  }

  .faq-a-inner {
    padding: 14px 14px 18px;
    font-size: 0.86rem;
  }

  /* モバイル固定CTA */
  .mobile-sticky-cta {
    display: block;
  }
}

@media (max-width: 400px) {
  .hero-title .main-catch {
    font-size: 1.85rem;
  }

  .tiles-grid {
    gap: 8px;
  }

  .tile-content {
    padding: 14px 6px;
  }

  .tile-title {
    font-size: 0.95rem;
  }

  .tile-desc {
    font-size: 0.72rem;
  }

  .tile-btn {
    font-size: 0.7rem;
    padding: 4px 10px;
  }
}
