/* ===== リセット・基本設定 ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Noto Sans JP', sans-serif;
  color: #333;
  background: #fff;
  line-height: 1.7;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ===== カラー変数 ===== */
:root {
  --primary: #FF6B35;
  --primary-dark: #e05520;
  --secondary: #4CAF50;
  --accent: #2196F3;
  --yellow: #FFC107;
  --light-bg: #FFF8F4;
  --colored-bg: #F0F9F0;
  --text: #333;
  --text-light: #666;
  --border: #e0e0e0;
  --white: #fff;
  --radius: 16px;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-hover: 0 8px 32px rgba(0,0,0,0.14);
}

/* ===== コンテナ ===== */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* ===== ボタン ===== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 16px rgba(255,107,53,0.35);
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,107,53,0.45);
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}
.btn-full { width: 100%; text-align: center; }

/* ===== ヘッダー ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255, 248, 244, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}
.site-header.scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
}
.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.logo-img { height: 48px; width: auto; mix-blend-mode: multiply; }

/* ナビゲーション */
.global-nav ul {
  display: flex;
  align-items: center;
  gap: 4px;
}
.global-nav a {
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  transition: all 0.2s;
}
.global-nav a:hover { background: var(--light-bg); color: var(--primary); }
.nav-cta {
  background: var(--primary) !important;
  color: #fff !important;
  padding: 8px 16px !important;
  border-radius: 50px !important;
}
.nav-cta:hover { background: var(--primary-dark) !important; }

/* ハンバーガー */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== ヒーロー ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: linear-gradient(135deg, #FFF8F4 0%, #FFF3E8 40%, #F0F9FF 100%);
  padding: 100px 24px 60px;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.5;
}
.shape-1 { width: 360px; height: 360px; background: #FFE0CC; top: -80px; right: -80px; }
.shape-2 { width: 240px; height: 240px; background: #C8E6C9; bottom: 20px; left: -80px; }
.shape-3 { width: 120px; height: 120px; background: #BBDEFB; top: 40%; left: 3%; }
.shape-4 { width: 60px; height: 60px; background: #FFF176; top: 15%; right: 20%; }
.shape-5 { width: 40px; height: 40px; background: #F8BBD9; bottom: 20%; right: 8%; }

/* 2カラムレイアウト */
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
}
.hero-content { text-align: left; }
.hero-illust img {
  width: 100%;
  max-width: 480px;
  border-radius: 24px;
  box-shadow: 0 12px 48px rgba(0,0,0,0.12);
  display: block;
  margin-left: auto;
}

.hero-label {
  display: inline-block;
  background: var(--light-bg);
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
  border: 1px solid rgba(255,107,53,0.2);
}
.hero-logo-wrap { margin-bottom: 24px; }
.hero-logo { max-height: 220px; width: auto; mix-blend-mode: multiply; }
.hero-catch {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 14px;
  line-height: 1.5;
}
.hero-catch strong { color: var(--primary); }
.hero-sub {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 36px;
  line-height: 1.8;
}
.hero-area {
  display: inline-block;
  font-size: 0.85rem;
  color: #fff;
  background: #FF6B35;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 28px;
  font-weight: 700;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

/* ===== お知らせバー ===== */
.notice-bar {
  background: var(--secondary);
  color: #fff;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 0.9rem;
}
.notice-badge {
  background: #fff;
  color: var(--secondary);
  font-weight: 700;
  font-size: 0.75rem;
  padding: 2px 10px;
  border-radius: 50px;
  white-space: nowrap;
}

/* ===== セクション共通 ===== */
.section { padding: 80px 0; }
.section-colored { background: var(--colored-bg); }
.section-light { background: var(--light-bg); }
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-title-group {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  border-bottom: 4px solid var(--primary);
  padding-bottom: 12px;
  border-radius: 2px;
  margin-bottom: 0;
}
.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.section-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 900;
  color: var(--text);
}
.section-title::after { display: none; }
.section-desc {
  margin-top: 16px;
  color: var(--text-light);
  font-size: 1rem;
}

/* ===== 施設について ===== */
.about-illust-row {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 56px;
}
.about-illust-img img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}
.about-illust-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.about-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
}
.about-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.about-icon { font-size: 2.5rem; margin-bottom: 16px; }
.about-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.about-card p { font-size: 0.875rem; color: var(--text-light); }

.facility-info { background: #fff; border-radius: var(--radius); padding: 40px; box-shadow: var(--shadow); }
.info-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 24px; padding-bottom: 12px; border-bottom: 2px solid var(--primary); }
.info-table { width: 100%; border-collapse: collapse; }
.info-table th, .info-table td { padding: 12px 16px; border-bottom: 1px solid var(--border); font-size: 0.9rem; text-align: left; }
.info-table th { width: 180px; color: var(--text-light); font-weight: 500; background: #fafafa; }
.info-table a { color: var(--primary); font-weight: 700; }
.info-table tr:last-child th, .info-table tr:last-child td { border-bottom: none; }

/* ===== 指導方針 ===== */
.policy-lead { text-align: center; margin-bottom: 48px; }
.policy-main-catch {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 900;
  color: var(--text);
  line-height: 1.5;
}
.policy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.policy-item {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 24px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.policy-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 100%;
  background: var(--primary);
}
.policy-num {
  font-size: 2rem;
  font-weight: 900;
  color: rgba(255,107,53,0.15);
  margin-bottom: 8px;
  line-height: 1;
}
.policy-item h3 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; color: var(--primary); }
.policy-item p { font-size: 0.875rem; color: var(--text-light); }

/* ===== 施設の様子（ギャラリー） ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 8px;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #fff;
}
.gallery-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.gallery-item:hover img {
  transform: scale(1.03);
}
.gallery-caption {
  text-align: center;
  padding: 12px;
  font-size: 0.9rem;
  color: var(--text-light);
  font-weight: 500;
}
@media (max-width: 600px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item img { height: 220px; }
}

/* ===== 指導内容 ===== */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}
.program-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}
.program-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.program-card-img { width: 100%; aspect-ratio: 4/3; overflow: hidden; }
.program-card-img img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.program-card-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.program-badge {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.program-badge-blue { background: var(--accent); }
.program-icon { font-size: 2.5rem; margin-bottom: 16px; }
.program-card h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 16px; }
.program-desc { font-size: 0.9rem; color: var(--text-light); margin-bottom: 20px; line-height: 1.8; flex: 1; }
.program-points { display: flex; flex-direction: column; gap: 8px; }
.program-points li {
  font-size: 0.875rem;
  font-weight: 500;
  padding: 8px 14px;
  background: var(--light-bg);
  border-radius: 8px;
  color: var(--primary);
}
.program-points li::before { content: '✓ '; }
.program-note { font-size: 0.8rem; color: var(--text-light); margin-top: 16px; }

/* ===== 指導時間 ===== */
.schedule-wrap { max-width: 900px; margin: 0 auto; }
.schedule-intro { text-align: center; color: var(--text-light); margin-bottom: 20px; font-size: 0.95rem; }
.schedule-legend {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.legend-gym, .legend-swim {
  font-size: 0.875rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 50px;
}
.legend-gym { background: #E8F5E9; color: var(--secondary); }
.legend-swim { background: #E3F2FD; color: var(--accent); }

.schedule-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 16px;
}
.schedule-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  min-width: 560px;
}
.schedule-table thead th {
  background: #f5f5f5;
  padding: 14px 8px;
  font-size: 0.875rem;
  font-weight: 700;
  text-align: center;
  border-bottom: 2px solid var(--border);
}
.schedule-table thead th:first-child { width: 56px; }
.swim-col { background: #EBF5FB !important; }
.col-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 50px;
  margin-top: 4px;
}
.swim-tag { background: var(--accent); color: #fff; }
.gym-tag { background: var(--secondary); color: #fff; }
.part-label {
  text-align: center;
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--text-light);
  background: #fafafa;
  border-right: 1px solid var(--border);
  padding: 16px 8px;
}
.gym-cell {
  text-align: center;
  padding: 14px 8px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #2E7D32;
  background: #F1F8F1;
  border: 1px solid #E8F5E9;
  line-height: 1.6;
}
.swim-cell {
  text-align: center;
  padding: 14px 8px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #1565C0;
  background: #EBF5FB;
  border: 1px solid #D6EAF8;
  line-height: 1.6;
}
.schedule-table tbody tr:hover td { filter: brightness(0.97); }
.schedule-note { font-size: 0.82rem; color: var(--text-light); margin-top: 8px; padding-left: 4px; }

/* ===== ご利用の流れ ===== */
.flow-requirement {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: #FFF3E0;
  border-radius: var(--radius);
  padding: 28px 32px;
  margin-bottom: 48px;
  border-left: 4px solid var(--yellow);
}
.requirement-icon { font-size: 2rem; flex-shrink: 0; }
.flow-requirement h3 { font-weight: 700; margin-bottom: 6px; }
.flow-requirement p { font-size: 0.9rem; color: var(--text-light); }
.flow-requirement strong { color: var(--text); }

.flow-steps { display: flex; flex-direction: column; gap: 24px; margin-bottom: 48px; }
.flow-step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 32px;
  box-shadow: var(--shadow);
}
.step-num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  flex-shrink: 0;
  width: 56px;
  text-align: center;
  background: var(--light-bg);
  border-radius: 12px;
  padding: 10px 0;
}
.step-body h3 { font-weight: 700; margin-bottom: 8px; font-size: 1.05rem; }
.step-body p { font-size: 0.9rem; color: var(--text-light); }
.step-body strong { color: var(--text); }

.fee-box {
  background: linear-gradient(135deg, #FF6B35, #FF8C5A);
  color: #fff;
  border-radius: var(--radius);
  padding: 36px 40px;
}
.fee-box h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 20px; opacity: 0.9; }
.fee-content { display: flex; flex-wrap: wrap; gap: 32px; align-items: flex-start; }
.fee-main { display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; }
.fee-label { font-size: 0.9rem; opacity: 0.85; }
.fee-amount { font-size: 2.5rem; font-weight: 900; }
.fee-note { font-size: 0.85rem; opacity: 0.8; }
.fee-notes { display: flex; flex-direction: column; gap: 6px; }
.fee-notes li { font-size: 0.875rem; opacity: 0.9; padding-left: 1em; position: relative; }
.fee-notes li::before { content: '※'; position: absolute; left: 0; }
.fee-notes strong { opacity: 1; }

/* ===== 保護者の声 ===== */
.voices-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.voice-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}
.voice-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.voice-icon { font-size: 1.8rem; margin-bottom: 16px; color: var(--primary); }
.voice-text { font-size: 0.9rem; color: var(--text-light); line-height: 1.8; margin-bottom: 20px; }
.voice-author { font-size: 0.8rem; font-weight: 700; color: var(--primary); }

/* ===== アクセス ===== */
.access-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  align-items: start;
}
.access-info h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 16px; }
.access-address { font-size: 1rem; margin-bottom: 12px; line-height: 1.8; }
.access-tel { margin-bottom: 28px; }
.access-tel a { font-size: 1.3rem; font-weight: 700; color: var(--primary); }
.access-transit h4 { font-size: 0.9rem; font-weight: 700; margin-bottom: 12px; color: var(--text-light); }
.access-transit ul { display: flex; flex-direction: column; gap: 10px; }
.access-transit li { font-size: 0.9rem; }
.transit-note { font-size: 0.8rem; color: var(--text-light); margin-top: 12px; }
.access-map { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.access-map iframe { width: 100%; height: 380px; border: none; display: block; }

/* ===== お問い合わせ ===== */
.section-contact { background: #fafafa; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: start;
}
.contact-tel-box {
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
}
.contact-tel-box h3 { font-size: 1rem; margin-bottom: 20px; opacity: 0.9; }
.tel-link {
  display: block;
  font-size: 1.6rem;
  font-weight: 900;
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}
.tel-hours { font-size: 0.8rem; opacity: 0.75; }
.contact-email { margin-top: 28px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.25); }
.contact-email h3 { font-size: 1rem; margin-bottom: 10px; opacity: 0.9; }
.contact-line { margin-top: 28px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.25); }
.contact-line h3 { font-size: 1rem; margin-bottom: 14px; opacity: 0.9; }
.line-btn { display: inline-block; margin-bottom: 16px; }
.line-btn img { border-radius: 8px; }
.line-qr { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.line-qr img { width: 120px; height: 120px; border-radius: 12px; background: #fff; padding: 6px; }
.line-qr p { font-size: 0.8rem; opacity: 0.8; }
.email-link { font-size: 0.95rem; font-weight: 700; word-break: break-all; text-decoration: underline; }

.contact-form-box {
  background: #fff;
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
}
.contact-form-box h3 { font-size: 1rem; font-weight: 700; margin-bottom: 24px; }
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.875rem; font-weight: 500; }
.required {
  font-size: 0.7rem;
  color: #fff;
  background: #e53935;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 6px;
}
.form-group input, .form-group select, .form-group textarea {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 0.9rem;
  font-family: inherit;
  transition: border-color 0.2s;
  outline: none;
  background: #fafafa;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--primary);
  background: #fff;
}
.form-note { font-size: 0.8rem; color: var(--text-light); text-align: center; margin-top: -8px; }

/* ===== フッター ===== */
.site-footer {
  background: #222;
  color: #ccc;
  padding: 48px 24px 24px;
}
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-logo { margin-bottom: 20px; }
.footer-logo-img { height: 48px; width: auto; opacity: 0.85; }
.footer-info { margin-bottom: 24px; font-size: 0.875rem; line-height: 1.8; }
.footer-info a { color: #ccc; }
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid #444;
}
.footer-nav a { font-size: 0.875rem; color: #aaa; transition: color 0.2s; }
.footer-nav a:hover { color: var(--primary); }
.copyright { font-size: 0.8rem; color: #666; text-align: center; }

/* ===== レスポンシブ ===== */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero-content { text-align: center; }
  .hero-btns { justify-content: center; }
  .hero-logo { max-height: 160px; margin: 0 auto; }
  .hero-illust img { max-width: 420px; margin: 0 auto; }
  .about-illust-row { grid-template-columns: 1fr; }
  .about-illust-img img { max-width: 400px; margin: 0 auto; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .global-nav {
    display: none;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: #fff;
    border-top: 1px solid var(--border);
    padding: 16px 24px 24px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  }
  .global-nav.open { display: block; }
  .global-nav ul { flex-direction: column; gap: 0; }
  .global-nav a { display: block; padding: 14px 8px; border-bottom: 1px solid var(--border); border-radius: 0; }
  .global-nav ul li:last-child a { border-bottom: none; }

  .hero { padding: 90px 24px 56px; min-height: auto; }
  .hero-logo { max-height: 180px; }
  .hero-btns { flex-direction: column; align-items: center; }
  .hero-btns .btn { width: 100%; max-width: 320px; text-align: center; }

  .section { padding: 56px 0; }
  .about-illust-cards { grid-template-columns: 1fr 1fr; }
  .policy-grid { grid-template-columns: 1fr; }
  .programs-grid { grid-template-columns: 1fr; }
  .access-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .voices-grid { grid-template-columns: 1fr; }

  .info-table th { width: 120px; }
  .flow-step { flex-direction: column; gap: 16px; padding: 24px 20px; }
  .step-num { width: auto; padding: 6px 14px; font-size: 1.5rem; display: inline-block; }
  .fee-content { flex-direction: column; gap: 16px; }
  .facility-info { padding: 28px 20px; }
  .contact-form-box { padding: 28px 20px; }
  .fee-box { padding: 28px 24px; }

  .access-map iframe { height: 280px; }
  .flow-requirement { flex-direction: column; gap: 12px; padding: 24px 20px; }
}

@media (max-width: 480px) {
  .about-illust-cards { grid-template-columns: 1fr; }
  .hero-logo { max-height: 160px; }
  .info-table { font-size: 0.82rem; }
  .info-table th { width: 100px; }
  .contact-tel-box { padding: 28px 20px; }
  .tel-link { font-size: 1.3rem; }
  .notice-bar { flex-direction: column; gap: 6px; text-align: center; }
}
