/*
Theme Name: ESPLAT FUTSAL SCHOOL
Theme URI: https://esplatfutsal.net/

Author: ESPLAT FUTSAL SCHOOL
Description: サッカーが上手くなるフットサルスクール ESPLAT FUTSAL SCHOOL のランディングページ用WordPressテーマ
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: esplat-futsal
*/

/* ===== Variables ===== */
:root {
  /* ESPLAT FUTSAL SCHOOL ブランド色（統一） */
  --esplat-navy: #0B2135; /* ロゴの濃紺 */
  --esplat-turquoise: #0BD4BF; /* ロゴのネオンターコイズ */

  /* 既存変数をブランド色に上書き */
  --color-primary: var(--esplat-turquoise);
  --color-primary-dark: var(--esplat-navy); /* hoverで濃紺 */
  --color-accent: var(--esplat-turquoise);
  --color-dark: var(--esplat-navy);
  --color-dark-gray: var(--esplat-navy);
  --color-text: #1a1a1a;
  --color-text-light: #555;
  --color-bg: #ffffff;
  --color-bg-alt: #f5f5f5;
  --color-border: #e5e5e5;
  --font-main: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, sans-serif;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --radius: 8px;
}

/* ===== Reset ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 96px;
}

body {
  font-family: var(--font-main);
  color: var(--color-text);
  line-height: 1.7;
  overflow-x: hidden;
}

/* コンテナ・コンテンツ幅：スマホで横突き抜け防止 */
main,
.container,
.section,
[class*="section"] {
  max-width: 100%;
}

a {
  color: var(--esplat-turquoise);
  text-decoration: none;
}

a:hover {
  color: var(--esplat-navy);
}

/* 画像・アイコン：巨大化防止 */
img,
embed,
object,
video {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

/* ===== Announcement bar (右→左流れ) ===== */
.announcement-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  height: 40px;
  background: linear-gradient(90deg, var(--color-primary) 0%, #00b3a8 50%, var(--color-primary-dark) 100%);
  color: rgba(255,255,255,0.98);
  display: flex;
  align-items: center;
  overflow: hidden;
  font-size: 0.9rem;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0,0,0,0.35);
}

.announcement-bar__track {
  display: flex;
  animation: announcement-scroll 30s linear infinite;
}

.announcement-bar__text {
  padding-right: 3rem;
}

@keyframes announcement-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== Header ===== */
.header {
  position: fixed;
  top: 40px;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #021b33;
  box-shadow: 0 2px 12px rgba(0,0,0,0.35);
  transition: background 0.3s, box-shadow 0.3s;
}

.header.scrolled {
  background: rgba(2,27,51,0.96);
  backdrop-filter: blur(12px);
}

.header .nav a {
  color: rgba(255,255,255,0.9);
}

.header.scrolled .nav a {
  color: rgba(255,255,255,0.9);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-weight: 900;
  letter-spacing: 0.05em;
  color: #fff;
}

.logo-main {
  font-size: 1.4rem;
  line-height: 1.1;
}

.logo-sub {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  margin-top: 0.1rem;
  opacity: 0.9;
}

.logo-tagline {
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-top: 0.25rem;
  opacity: 0.7;
}

/* ロゴ画像（テキストロゴの代替） */
.logo.logo-img {
  display: block;
  line-height: 0;
}
.logo.logo-img img {
  display: block;
  height: 42px;
  width: auto;
  max-height: 48px;
}

.header.scrolled .logo {
  color: var(--color-text);
}

.header.scrolled .logo span {
  color: inherit;
}

.header.scrolled .logo .logo-sub {
  color: var(--color-primary);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
}

.nav {
  display: flex;
  align-items: center;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu li {
  margin: 0;
  padding: 0;
}

.nav a {
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

.header .nav a:hover {
  color: var(--color-primary);
}

.header.scrolled .nav a:hover {
  color: var(--color-primary);
}

.btn-trial-nav {
  background: #fff;
  color: var(--color-dark) !important;
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
}

.btn-trial-nav:hover {
  background: var(--color-primary);
  color: white !important;
}

.header.scrolled .btn-trial-nav {
  background: var(--color-primary);
  color: white !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: #fff;
  transition: background 0.3s;
}

.header.scrolled .hamburger span {
  background: var(--color-text);
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 0.9rem 2rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
  text-align: center;
  transition: all 0.2s;
}

.btn-primary {
  background: var(--color-primary);
  color: white;
}

.btn-primary:hover {
  background: var(--color-primary-dark);
  transform: translateY(-1px);
}

.btn-secondary {
  background: var(--color-primary);
  color: #fff;
  border: 2px solid var(--color-primary);
}

.btn-secondary:hover {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  color: #fff;
}

.btn-line {
  background: var(--color-primary);
  color: #fff;
}

.btn-line:hover {
  background: var(--color-primary-dark);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
}

.btn-outline:hover {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  color: #fff;
}

/* ヘッダー内の試験用CTAも標準色に統一 */
.btn-trial-nav {
  background: var(--color-primary);
  color: #fff !important;
  border: 2px solid var(--color-primary);
}

.btn-trial-nav:hover {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  color: #fff !important;
}

.btn-lg {
  padding: 1.1rem 2.5rem;
  font-size: 1rem;
}

/* ===== Hero ===== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  padding: calc(8rem + 36px) 1.5rem 4rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--color-dark);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2,27,51,0.40) 0%, rgba(2,27,51,0.85) 100%);
}

.hero-content {
  color: #fff;
}

/* ===== Trial Popup ===== */
.trial-popup {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: none;
}

.trial-popup[aria-hidden="false"] {
  display: block;
}

.trial-popup__overlay {
  position: absolute;
  inset: 0;
  background: rgba(2, 27, 51, 0.78);
}

.trial-popup__dialog {
  position: relative;
  width: min(560px, calc(100vw - 2rem));
  margin: 12vh auto 0;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.45);
}

.trial-popup__close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: rgba(0,0,0,0.35);
  color: #fff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.trial-popup__media {
  position: relative;
  height: 200px;
  background-image:
    linear-gradient(180deg, rgba(2,27,51,0.2) 0%, rgba(2,27,51,0.5) 100%),
    url(assets/img/popup-bg.png);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trial-popup__logo {
  position: relative;
  z-index: 1;
  height: 52px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
}

.trial-popup__body {
  padding: 1.25rem 1.25rem 1.5rem;
  text-align: left;
}

.trial-popup__eyebrow {
  font-size: 0.8rem;
  color: var(--color-text-light);
  margin-bottom: 0.35rem;
}

.trial-popup__title {
  font-size: 1.4rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
  color: var(--color-text);
}

.trial-popup__text {
  font-size: 0.95rem;
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.trial-popup__actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.trial-popup__actions .btn {
  flex: 1 1 180px;
}

body.is-trial-popup-open {
  overflow: hidden;
}

.hero-label {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.95);
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.hero-year {
  font-size: 1.05rem;
  color: var(--color-primary);
  font-weight: 700;
  letter-spacing: 0.15em;
  margin-bottom: 0.75rem;
}

.hero-title {
  font-size: clamp(1.5rem, 4.5vw, 2.8rem);
  font-weight: 900;
  line-height: 1.35;
  margin-bottom: 0.75rem;
}

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
  opacity: 0.95;
}

.hero-tagline {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
  max-width: 580px;
  margin: 0 auto 2rem;
  line-height: 1.8;
}

.hero .btn-secondary {
  border-color: rgba(255,255,255,0.8);
  color: #fff;
}

.hero .btn-secondary:hover {
  background: #fff;
  color: var(--color-dark);
  border-color: #fff;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.5);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ===== Section ===== */
.section {
  padding: 5rem 1.5rem;
}

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

/* ===== 固定ページ（Gutenberg）でフルワイドにする ===== */
/* entry-content 側で max-width/padding が効いているテーマでも、ESPLAT 用カスタムHTMLは横いっぱいに広げる */
.entry-content {
  max-width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  font-family: var(--font-main);
}

.entry-content .container {
  max-width: none !important;
  width: 100%;
}

/* カスタムHTMLブロック（WordPress標準）のみ全幅化 */
.entry-content .wp-block-custom-html {
  max-width: none;
}

.entry-content .wp-block-custom-html .esplat-custom-block,
.entry-content .wp-block-custom-html .esplat-v2-wrap,
.entry-content .wp-block-custom-html .esplat-page-block {
  width: 100%;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
@media (min-width: 1024px) {
  .container {
    max-width: 1000px;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title-en {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  color: var(--color-primary);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 900;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--color-text-light);
  margin-top: 0.25rem;
}

/* ===== ESPLAT / Why / Features / Skills ===== */
.esplat-section,
.why-section,
.features-section {
  background: var(--color-bg);
  padding-bottom: 0;
}

.features-section .container {
  padding-bottom: 0;
}

.features-block {
  background: #fff;
  padding: 2rem 1.5rem 2.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--color-border);
  max-width: 640px;
  margin: 0 auto;
}

.features-visual {
  height: 120px;
  margin-top: 2rem;
  background-size: cover;
  background-position: center;
  border-radius: 0 0 var(--radius) var(--radius);
  overflow: hidden;
}

.skills-section {
  background: var(--color-bg-alt);
  padding-top: 2.5rem;
}

.esplat-content {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.esplat-content p {
  margin-bottom: 1rem;
}

/* ===== 私たちの教育理念 ===== */
.philosophy-section {
  background: var(--color-bg);
}

.philosophy-section__headline {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-top: 0.5rem;
}

.philosophy-content {
  max-width: 720px;
  margin: 0 auto;
}

.philosophy-content p {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--color-text-light);
  margin-bottom: 1.25rem;
}

.philosophy-content p:last-child {
  margin-bottom: 0;
}

/* ===== 3つの基本姿勢 ===== */
.attitude-section {
  background: var(--color-bg-alt);
}

.attitude-section__message {
  max-width: 640px;
  margin: 1rem auto 0;
  font-size: 0.95rem;
  color: var(--color-text-light);
  line-height: 1.8;
  text-align: center;
}

.attitude-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.attitude-card {
  background: #fff;
  padding: 1.75rem 1.75rem 1.75rem 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-left: 6px solid var(--color-primary);
  position: relative;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.2s ease;
}

.attitude-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.attitude-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  color: var(--color-primary);
}

.attitude-card__icon-svg {
  width: 40px;
  height: 40px;
}

.attitude-card h4 {
  font-size: 1.1rem;
  color: var(--color-text);
  margin-bottom: 0.75rem;
}

.attitude-card p {
  font-size: 0.95rem;
  color: var(--color-text-light);
  line-height: 1.8;
  margin: 0;
}

.attitude-pyramid-message {
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
}

.attitude-pyramid {
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.attitude-pyramid__row {
  position: relative;
}

.attitude-pyramid__layer {
  display: block;
  width: 100%;
  text-align: left;
  background: #fff;
  padding: 0.9rem 1.25rem;
  border: none;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-left: 4px solid var(--color-primary);
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s, box-shadow 0.2s;
}

.attitude-pyramid__layer:hover {
  background: var(--color-bg-alt);
}

.attitude-pyramid__layer[aria-expanded="true"] {
  box-shadow: 0 6px 24px rgba(0,0,0,0.12);
}

.attitude-pyramid__top { border-left-color: var(--color-primary-dark); }
.attitude-pyramid__mid { border-left-color: var(--color-primary); }
.attitude-pyramid__base { border-left-color: var(--color-accent); }

.attitude-pyramid__label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--color-primary);
  margin-bottom: 0.35rem;
}

.attitude-pyramid__summary {
  font-size: 0.95rem;
  color: var(--color-text);
  margin: 0;
}

.attitude-pyramid__detail {
  padding: 0.75rem 1.25rem;
  margin-top: 0.35rem;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: var(--color-text-light);
  background: var(--color-bg-alt);
  border-radius: var(--radius);
  border-left: 3px solid var(--color-primary);
}

.attitude-pyramid__detail[hidden] {
  display: none;
}

/* ===== 5つの力 ===== */
.five-powers-section {
  background: var(--color-bg);
}

.five-powers-cards {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 900px;
  margin: 0 auto;
}

.five-powers-card {
  position: relative;
  background: var(--color-bg-alt);
  padding: 1.75rem 1.75rem 1.75rem 2.5rem;
  border-radius: var(--radius);
  border-left: 4px solid var(--color-primary);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  overflow: hidden;
}

.five-powers-card__bg-num {
  position: absolute;
  top: 50%;
  right: 1.5rem;
  transform: translateY(-50%);
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1;
  color: var(--color-primary);
  opacity: 0.12;
  pointer-events: none;
}

.five-powers-card--02 .five-powers-card__bg-num { right: auto; left: 1.5rem; }
.five-powers-card--04 .five-powers-card__bg-num { right: auto; left: 1.5rem; }

.five-powers-card__icon {
  display: block;
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.five-powers-card h4 {
  font-size: 1.08rem;
  color: var(--color-text);
  margin-bottom: 0.35rem;
  position: relative;
  z-index: 1;
}

.five-powers-card__sub {
  font-size: 0.85rem;
  color: var(--color-primary);
  font-weight: 600;
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 1;
}

.five-powers-card__sub-inline {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-primary);
}

.five-powers-card p {
  font-size: 0.95rem;
  color: var(--color-text-light);
  line-height: 1.8;
  margin: 0;
  position: relative;
  z-index: 1;
}

.why-cards {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.why-cards--three {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.why-card {
  background: var(--color-bg-alt);
  padding: 2rem;
  border-radius: var(--radius);
  border-left: 4px solid var(--color-primary);
}

.why-card--hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.why-card--hover:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}

.why-card__icon {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 1rem;
  color: var(--color-primary);
}

.why-card__icon-svg {
  width: 44px;
  height: 44px;
}

.why-card__catchphrase-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

.why-card h4 {
  font-size: 1.12rem;
  margin-bottom: 0.75rem;
  color: var(--color-primary);
}

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

.why-card__catchphrase {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-primary);
  background: rgba(0,212,192,0.08);
  border-left: 4px solid var(--color-primary);
  border-radius: 0 var(--radius) var(--radius) 0;
  line-height: 1.5;
}

.why-more {
  margin-top: 2.5rem;
}

.why-more__lead {
  text-align: center;
  font-size: 0.95rem;
  color: var(--color-text-light);
  margin-bottom: 1.25rem;
}

.why-cards--list {
  gap: 1rem;
}

.why-card--compact {
  padding: 1.25rem 1.5rem;
}

.why-card--compact h4 {
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.why-card--compact p {
  font-size: 0.9rem;
  margin: 0;
}

/* ===== Responsive tweak for attitude / five-powers / why ===== */
@media (max-width: 1024px) {
  .attitude-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-cards--three {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .five-powers-card {
    padding: 1.25rem 1rem;
  }

  .five-powers-card__bg-num {
    font-size: 3.6rem;
    right: 1rem;
  }

  .five-powers-card--02 .five-powers-card__bg-num,
  .five-powers-card--04 .five-powers-card__bg-num {
    left: 1rem;
  }

  .why-cards--three {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .five-powers-card__bg-num {
    font-size: 3.2rem;
  }
}

.skills-block {
  max-width: 640px;
  margin: 0 auto;
  background: #fff;
  padding: 2rem 1.5rem 2.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-left: 4px solid var(--color-primary);
}

.skills-lead {
  font-size: 0.95rem;
  color: var(--color-text-light);
  margin-top: 0.25rem;
  margin-bottom: 1rem;
}

.features-list,
.skills-list {
  list-style: none;
  max-width: 560px;
  margin: 0 auto;
}

.features-list li,
.skills-list li {
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
  border-bottom: 1px solid var(--color-border);
}

.features-list li:last-child,
.skills-list li:last-child {
  border-bottom: none;
}

.features-list li::before,
.skills-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 700;
}

.timetable-rules {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 0.9rem;
  color: var(--color-text-light);
}

.schedule-item .time {
  font-weight: 600;
  min-width: 120px;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.cta-links {
  text-align: center;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.cta-links p {
  margin-bottom: 0.5rem;
}

.cta-links a {
  color: var(--color-primary);
  text-decoration: underline;
}

.cta-qr {
  text-align: center;
  margin-top: 1.5rem;
}

.cta-qr img {
  max-width: 200px;
}

/* ===== Trial ===== */
.trial-section {
  background: var(--color-bg-alt);
}

.trial-highlight {
  text-align: center;
  margin-bottom: 2rem;
}

.badge {
  display: inline-block;
  background: var(--color-accent);
  color: var(--color-text);
  padding: 0.5rem 1.25rem;
  border-radius: 2rem;
  font-weight: 700;
}

.trial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.trial-card {
  background: white;
  padding: 1.5rem;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
}

.trial-card-icon {
  font-size: 2rem;
  font-weight: 900;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.trial-card h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.trial-card p {
  font-size: 0.9rem;
  color: var(--color-text-light);
}

.trial-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.trial-note {
  text-align: center;
  font-size: 0.9rem;
  color: var(--color-text-light);
  margin-top: 1rem;
}

/* ===== Trial section（添付デザイン・サイト色） ===== */
.trial-section--design {
  background: var(--color-dark);
  color: #fff;
  position: relative;
  padding: 3.5rem 1.5rem 4rem;
}

.trial-section__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.trial-section__bg::before,
.trial-section__bg::after {
  content: '';
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(0,212,192,0.08);
}

.trial-section__bg::before {
  top: -80px;
  left: -80px;
}

.trial-section__bg::after {
  bottom: -100px;
  right: -80px;
}

.trial-section--design .container {
  position: relative;
  z-index: 1;
}

.trial-section__lead {
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 1rem;
}

.trial-section__title-block {
  max-width: 520px;
  margin: 0 auto 2rem;
  padding: 1.75rem 2rem 1.5rem;
  background: rgba(255,255,255,0.08);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.15);
}

.trial-section__title {
  text-align: center;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 900;
  margin-bottom: 1rem;
  color: #fff;
}

.trial-section__status {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 0.75rem;
}

.trial-section__status-char {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  padding: 0.25rem 0.35rem;
  background: var(--color-primary);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 4px;
}

.trial-section__campaign {
  text-align: center;
  font-size: 1rem;
  color: rgba(255,255,255,0.95);
  margin-bottom: 0;
}

.trial-section__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
  max-width: 900px;
  margin: 0 auto 2.5rem;
}

.trial-section__card {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: var(--radius);
  padding: 1.5rem 1rem;
  text-align: center;
  color: #fff;
}

.trial-section__icon {
  display: block;
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
  color: var(--color-primary);
}

.trial-section__card h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
  color: #fff;
}

.trial-section__card p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.9);
  margin: 0;
}

.trial-section__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.trial-section__btn-line {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-outline-light {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.8);
  color: #fff;
}

.btn-outline-light:hover {
  background: #fff;
  color: var(--color-dark);
}

.trial-section__note {
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  margin-top: 1.25rem;
  margin-bottom: 0;
}

.trial-line-qr {
  text-align: center;
  margin-top: 2rem;
}

.trial-line-qr img {
  max-width: 200px;
  height: auto;
}

.timetable-image {
  margin-top: 2rem;
  text-align: center;
}

.timetable-image img {
  max-width: 100%;
  height: auto;
}

/* ===== Why Futsal ===== */
.why-section {
  background: white;
}

.why-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 2.5rem;
  font-size: 1.05rem;
}

.strengths-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Evidence style (esplatfutsal.net) */
.evidence-style {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.evidence-card {
  background: var(--color-bg-alt);
  padding: 2.5rem;
  border-radius: var(--radius);
  position: relative;
  border-left: 4px solid var(--color-primary);
}

.evidence-label {
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  color: var(--color-primary);
  display: block;
  margin-bottom: 1rem;
}

.evidence-number {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 0.75rem;
}

.evidence-number .big-num {
  font-size: 3.5rem;
  color: var(--color-primary);
  line-height: 1;
}

.evidence-card h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

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

.evidence-source {
  display: block;
  font-size: 0.75rem;
  color: var(--color-text-light);
  margin-top: 1rem;
  opacity: 0.8;
}

.strength-card {
  background: var(--color-bg-alt);
  padding: 2rem;
  border-radius: var(--radius);
  border-left: 4px solid var(--color-primary);
}

.strength-number {
  font-size: 0.8rem;
  font-weight: 900;
  color: var(--color-primary);
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.strength-card h4 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.strength-card p {
  font-size: 0.95rem;
  color: var(--color-text-light);
}

.why-conclusion {
  margin-top: 3rem;
  padding: 2rem;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: white;
  border-radius: var(--radius);
  text-align: center;
}

.conclusion-main {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.why-conclusion p:last-child {
  font-size: 0.95rem;
  opacity: 0.95;
}

/* ===== Concept ===== */
.concept-section {
  background: var(--color-bg-alt);
}

.concept-main {
  text-align: center;
  margin-bottom: 2rem;
}

.concept-tagline {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.concept-desc {
  font-size: 1rem;
  color: var(--color-text-light);
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.8;
}

.concept-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.concept-card {
  background: white;
  padding: 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.concept-card h5 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--color-primary);
}

.concept-card p {
  font-size: 0.9rem;
  color: var(--color-text-light);
}

.concept-values {
  background: white;
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.concept-values h4 {
  margin-bottom: 1rem;
}

.concept-values ul {
  list-style: none;
}

.concept-values li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.concept-values li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 700;
}

/* ===== Method (石関メソッド) ===== */
.method-section {
  background: var(--color-dark);
  color: #fff;
}

.method-section .section-title-en,
.method-section .section-title {
  color: #fff;
}

.method-quote {
  text-align: center;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.8;
  margin-bottom: 1rem;
  font-style: italic;
}

.method-quote cite {
  display: block;
  font-size: 0.95rem;
  font-style: normal;
  margin-top: 0.75rem;
  color: rgba(255,255,255,0.8);
}

.method-formula {
  text-align: center;
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  margin-bottom: 2rem;
  color: var(--color-primary);
}

.method-desc {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.9);
}

.method-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.method-card {
  background: rgba(255,255,255,0.05);
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.1);
}

.method-card h5 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--color-primary);
}

.method-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
}

/* ===== Info ===== */
.info-section {
  background: var(--color-bg);
}

.info-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 960px;
  margin: 0 auto;
}

.info-card {
  background: var(--color-bg-alt);
  padding: 1.75rem 1.75rem 1.9rem;
  border-radius: var(--radius);
}

.info-card-campaign {
  border: 2px solid #d4e000;
  background: #f4ff61;
  color: #1a1a1a;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
}

.info-label {
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  color: var(--color-primary);
  display: block;
  margin-bottom: 0.75rem;
}

.info-card h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.info-card p {
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  color: var(--color-text-light);
}

.info-badge {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-primary);
}

.info-card-campaign .info-label,
.info-card-campaign .info-badge,
.info-card-campaign h4,
.info-card-campaign p {
  color: #1a1a1a;
}

.info-card-campaign .info-label {
  color: #0a4a24;
}

/* 無料体験について：幅をキャンペーンより小さく・元の色 */
.info-card-trial {
  max-width: 72%;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .info-card-trial {
    max-width: 92%;
  }
}

/* ===== Access (updated) ===== */
.access-venue {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.access-address {
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.access-route {
  text-align: center;
  max-width: 400px;
  margin: 0 auto 1rem;
}

.access-route p {
  margin-bottom: 1rem;
}

.access-note {
  font-size: 0.9rem;
  color: var(--color-text-light);
  margin-bottom: 1rem;
}

/* ===== CTA (updated) ===== */
.cta-heading {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.cta-note {
  font-size: 0.9rem;
  margin-top: 1rem;
  color: rgba(255,255,255,0.9);
}

.cta-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
  font-size: 0.95rem;
}

/* ===== Coaches (updated) ===== */
.coach-label {
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  color: var(--color-primary);
  display: block;
  margin-bottom: 0.5rem;
}

.coach-name-en {
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  color: var(--color-text-light);
  margin-bottom: 1rem;
}

.coach-tags {
  list-style: none;
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}

.coach-tags li {
  font-size: 0.8rem;
  background: var(--color-bg-alt);
  padding: 0.25rem 0.75rem;
  border-radius: 2rem;
}

.coach-social {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.25rem;
  flex-wrap: wrap;
}

.coach-social__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.coach-social__icon {
  flex-shrink: 0;
}

.coach-social__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.coach-social__youtube {
  background: #ff0000;
}

.coach-social__youtube:hover {
  background: #cc0000;
}

.coach-social__instagram {
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.coach-social__instagram:hover {
  opacity: 0.95;
}

/* ===== Timetable（画像デザイン） ===== */
.timetable-section {
  background: #1e2a4a;
  color: #fff;
}

.timetable-container {
  max-width: 1100px;
}

.timetable-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.timetable-title-en {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 900;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
  color: #fff;
}

.timetable-title-ja {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255,255,255,0.95);
}

.timetable-line {
  display: inline-block;
  width: 40px;
  height: 3px;
  border-radius: 2px;
}

.timetable-line-left {
  background: #3b82f6;
}

.timetable-line-right {
  background: #ef4444;
}

.timetable-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.timetable-col {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.timetable-col-head {
  text-align: center;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fff;
}

.timetable-col-body {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.timetable-block {
  background: rgba(50, 60, 90, 0.8);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 10px;
  padding: 0;
  overflow: hidden;
}

.timetable-block-tag {
  padding: 0.4rem 0.6rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-align: center;
  color: #fff;
}

.timetable-block-time {
  padding: 0.5rem 0.75rem 0.2rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
}

.timetable-block-info {
  padding: 0 0.75rem 0.6rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.85);
}

/* クラス別カラー */
.timetable-block-kids .timetable-block-tag { background: #dc2626; }
.timetable-block-junior1 .timetable-block-tag { background: #eab308; color: #1a1a1a; }
.timetable-block-junior2 .timetable-block-tag { background: #16a34a; }
.timetable-block-junior3 .timetable-block-tag { background: #2563eb; }
.timetable-block-kyoka .timetable-block-tag { background: #7c3aed; }
.timetable-block-jyg .timetable-block-tag { background: #0ea5e9; }

.timetable-legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 1.5rem;
  padding: 1rem 0;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.9);
}

.timetable-legend-dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 3px;
  margin-right: 0.35rem;
  vertical-align: middle;
}

.timetable-dot-kids { background: #dc2626; }
.timetable-dot-junior1 { background: #eab308; }
.timetable-dot-junior2 { background: #16a34a; }
.timetable-dot-junior3 { background: #2563eb; }
.timetable-dot-kyoka { background: #7c3aed; }
.timetable-dot-jyg { background: #0ea5e9; }

.timetable-note {
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  margin-top: 1rem;
}

@media (max-width: 900px) {
  .timetable-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .timetable-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== Price ===== */
.price-section {
  background: var(--color-bg-alt);
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.price-card {
  background: white;
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.price-card-featured {
  border: 2px solid var(--color-primary);
}

.price-card h4 {
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
}

.price-age {
  font-size: 0.9rem;
  color: var(--color-text-light);
  margin-bottom: 0.5rem;
}

.price-duration {
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.price-options {
  border-top: 1px solid var(--color-border);
  padding-top: 1rem;
}

.price-options p {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.price-options span {
  margin-right: 1rem;
}

.price-note {
  font-size: 0.8rem;
  color: var(--color-text-light);
  margin-top: 0.5rem;
}

/* 入会金・年会費・ユニフォーム（月謝の上に表示） */
.price-fees-top {
  background: white;
  padding: 1.75rem 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 2rem;
}

.price-fees-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem 2rem;
  margin-bottom: 1rem;
}

.price-fee-item {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.5rem;
}

.price-fee-label {
  font-weight: 700;
  color: var(--color-text);
  min-width: 6em;
}

.price-fee-value {
  font-size: 1.05rem;
  color: var(--color-text);
}

.price-fee-campaign {
  color: var(--color-primary);
  font-weight: 700;
  font-size: 0.95rem;
}

.price-subtitle {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-text-light);
  margin-bottom: 1rem;
  text-align: center;
}

.price-others h4,
.price-others p {
  margin-bottom: 0.75rem;
}

.price-others ul {
  list-style: none;
  margin-bottom: 1rem;
}

.price-others li {
  padding: 0.5rem 0;
}

.highlight {
  color: var(--color-primary);
  font-weight: 700;
}

.price-disclaimer {
  font-size: 0.85rem;
  color: var(--color-text-light);
  margin: 0;
  padding-top: 0.75rem;
  border-top: 1px solid var(--color-border);
}

/* ===== Coaches ===== */
.coaches-section {
  background: white;
}

.coaches-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;
  max-width: 640px;
  margin: 0 auto;
}

.coach-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 0;
  width: 100%;
}

.coach-avatar {
  width: 280px;
  height: 280px;
  max-width: 100%;
  margin: 0 auto 1.5rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
}

.coach-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.coach-card .coach-role {
  font-size: 0.9rem;
  color: var(--color-primary);
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-align: center;
}

.coach-card h4 {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
  text-align: center;
}

.coach-name-kana {
  font-size: 0.85rem;
  color: var(--color-text-light);
  margin-bottom: 1rem;
  text-align: center;
}

.coach-desc {
  font-size: 0.95rem;
  color: var(--color-text-light);
  text-align: center;
  line-height: 1.8;
  max-width: 640px;
  margin: 0 auto 1rem;
}

/* ===== Enrollment ===== */
.enrollment-section {
  background: var(--color-bg-alt);
}

.enrollment-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.enrollment-step {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.step-num {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: var(--color-primary);
  color: white;
  border-radius: 50%;
  font-weight: 900;
  line-height: 40px;
  margin-bottom: 1rem;
}

.enrollment-step h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.enrollment-step p {
  font-size: 0.9rem;
  color: var(--color-text-light);
}

/* ===== Access ===== */
.access-section {
  background: white;
}

.access-map-wrap {
  width: 100%;
  margin-bottom: 1.5rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.access-map {
  display: block;
  width: 100%;
  height: 320px;
  min-height: 280px;
}

.access-content {
  text-align: center;
  padding: 2rem;
}

.access-content h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.access-details {
  margin-top: 1rem;
}

.access-details a {
  color: var(--color-primary);
  font-weight: 600;
}

.access-details a:hover {
  text-decoration: underline;
}

/* ===== CTA ===== */
.cta-section {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: #fff;
  text-align: center;
}

.cta-section .section-header,
.cta-section .section-title,
.cta-section h2,
.cta-section h3,
.cta-section p,
.cta-section .cta-links,
.cta-section .cta-links p {
  color: #fff;
}

.cta-section .cta-links a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.cta-section .cta-links a:hover {
  color: rgba(255,255,255,0.9);
}

.cta-section h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.cta-section p {
  margin-bottom: 1.5rem;
  opacity: 0.95;
}

/* CTA内のアウトラインボタンは白で統一（モバイルでの視認性崩れ防止） */
.cta-section .btn-outline {
  border-color: #fff;
  color: #fff;
}

.cta-section .btn-outline:hover {
  background: var(--color-primary-dark);
  color: #fff;
  border-color: var(--color-primary-dark);
}

.cta-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.cta-btns .btn-secondary,
.cta-btns .btn-line {
  border: 2px solid white;
  background: transparent;
  color: white;
}

.cta-btns .btn-secondary:hover,
.cta-btns .btn-line:hover {
  background: white;
  color: var(--color-primary);
}

/* ===== Footer ===== */
.footer {
  background: var(--color-text);
  color: white;
  padding: 3rem 1.5rem;
}

.footer-inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.footer-logo {
  font-weight: 900;
  font-size: 1rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.footer-tagline {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.footer-links .footer-menu {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: center;
}

.footer-links .footer-menu li {
  margin: 0;
  padding: 0;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-copy {
  font-size: 0.8rem;
  opacity: 0.6;
}

/* ===== Responsive（スマホ）：コンテナ・見出し・1カラム強制 ===== */
@media screen and (max-width: 768px) {
  .nav,
  .header-cta {
    display: none;
  }

  .nav.open,
  .nav.open .nav-menu {
    display: flex;
    flex-direction: column;
  }

  .nav.open {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--color-dark);
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  .nav.open .nav-menu {
    width: 100%;
    align-items: stretch;
  }

  .nav.open a {
    color: #fff !important;
    padding: 0.6rem 0;
  }

  .nav.open .btn-trial-nav {
    background: var(--color-primary) !important;
    color: white !important;
  }

  .hamburger {
    display: flex;
  }

  .header-inner {
    padding: 0.75rem 1rem;
    flex-wrap: wrap;
  }

  .logo.logo-img img {
    height: 36px;
    max-height: 40px;
  }

  .announcement-bar {
    height: 36px;
    font-size: 0.8rem;
  }

  .header {
    top: 36px;
  }

  /* コンテナ：左右パディング強制（15px〜20px） */
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .section {
    padding: 3rem 20px;
  }

  /* 見出し：スマホで巨大化防止 */
  h1,
  .hero-title {
    font-size: clamp(1.15rem, 5vw, 1.5rem) !important;
  }

  h2,
  .section-title,
  .section-title-en + .section-title {
    font-size: clamp(1.1rem, 4vw, 1.4rem) !important;
  }

  /* 多カラム → 縦1列に統一 */
  .trial-section__grid,
  .attitude-cards,
  .why-cards--three,
  .price-grid,
  .price-fees-inner,
  .timetable-grid,
  .concept-cards,
  .method-cards {
    grid-template-columns: 1fr !important;
  }

  .trial-section__btns,
  .hero-btns,
  .cta-buttons,
  .trial-popup__actions,
  .footer-links,
  .footer-links .footer-menu {
    flex-direction: column !important;
  }

  .coaches-grid {
    flex-direction: column;
  }

  .timetable-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: calc(36px + 5rem) 1rem 3rem;
  }

  .hero-title {
    font-size: clamp(1.25rem, 5vw, 2rem);
  }

  .hero-sub,
  .hero-tagline {
    font-size: 0.9rem;
  }

  .hero-btns {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }

  .hero-btns .btn {
    width: 100%;
  }

  .hero-desc br {
    display: none;
  }

  .trial-section--design {
    padding: 2.5rem 1rem 3rem;
  }

  .trial-section--design .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .trial-section__lead {
    font-size: 0.85rem;
  }

  .trial-section__title-block {
    padding: 1.25rem 1rem;
    margin-bottom: 1.5rem;
  }

  .trial-section__title {
    font-size: 1.5rem;
  }

  .trial-section__status-char {
    min-width: 1.75rem;
    font-size: 0.85rem;
  }

  .trial-section__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }

  .trial-section__btns {
    flex-direction: column;
  }

  .trial-section__btns .btn {
    width: 100%;
  }

  .trial-section__note {
    font-size: 0.8rem;
  }

  .philosophy-content p {
    font-size: 0.95rem;
  }

  .attitude-section__message {
    font-size: 0.9rem;
    padding: 0 0.5rem;
  }

  .attitude-pyramid {
    margin: 1.5rem auto 2rem;
  }

  .attitude-pyramid__top,
  .attitude-pyramid__mid,
  .attitude-pyramid__base {
    padding: 0.75rem 1rem;
  }

  .attitude-pyramid p {
    font-size: 0.9rem;
  }

  .attitude-cards {
    margin-bottom: 1.5rem;
  }

  .attitude-card {
    padding: 1.25rem 1rem;
  }


  .attitude-card h4 {
    font-size: 1rem;
  }

  .five-powers-card {
    padding: 1.25rem 1rem;
  }

  .five-powers-card h4 {
    font-size: 1rem;
  }

  .five-powers-card__sub-inline {
    display: block;
    margin-top: 0.25rem;
  }

  .why-card {
    padding: 1.5rem 1rem;
  }

  .why-card h4 {
    font-size: 1rem;
  }

  .why-card p,
  .why-card__catchphrase {
    font-size: 0.9rem;
  }

  .section-title {
    font-size: clamp(1.25rem, 5vw, 1.75rem);
  }

  .section-subtitle {
    font-size: 0.9rem;
  }

  .trial-btns {
    flex-direction: column;
  }

  .trial-btns .btn {
    width: 100%;
  }

  .strength-card {
    padding: 1.5rem;
  }

  .schedule-item {
    flex-direction: column;
    align-items: flex-start;
  }


  .price-fees-top {
    padding: 1.25rem 1rem;
  }

  .price-fees-inner {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
  }

  .price-fee-item {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--color-border);
  }

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

  .price-subtitle {
    font-size: 1rem;
    margin-bottom: 0.75rem;
  }

  .access-map {
    height: 260px;
  }


  .cta-buttons .btn,
  .cta-section .cta-buttons .btn {
    width: 100%;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }

  .cta-links {
    font-size: 0.9rem;
  }

  .footer {
    padding: 2rem 1rem;
  }

  .footer-links,
  .footer-links .footer-menu {
    gap: 0.75rem;
  }

  .info-card {
    padding: 1.25rem 1rem;
  }

  .info-card h4 {
    font-size: 1.1rem;
  }

  .coach-card {
    padding: 1.25rem 1rem;
  }

  .coach-desc {
    font-size: 0.9rem;
  }

  .timetable-legend {
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
  }

  .timetable-legend-item {
    font-size: 0.8rem;
  }

  .trial-popup__dialog {
    width: calc(100vw - 1.5rem);
    margin: 2vh auto 0;
  }

  .trial-popup__body {
    padding: 1rem 1rem 1.25rem;
  }

  .trial-popup__actions {
    flex-direction: column;
  }

  .trial-popup__actions .btn {
    width: 100%;
  }

  /* ポップアップボタンの高さを抑える（モバイルでの過大表示対策） */
  .trial-popup__actions {
    gap: 0.5rem;
  }

  .trial-popup__actions .btn,
  .trial-popup__actions .btn-lg {
    padding: 0.85rem 1rem !important;
    font-size: 0.95rem;
    line-height: 1.2;
  }

  section[id] {
    scroll-margin-top: 88px;
  }
}

@media screen and (max-width: 480px) {
  .announcement-bar {
    height: 32px;
    font-size: 0.75rem;
  }

  .header {
    top: 32px;
  }

  .hero {
    padding: calc(32px + 4.5rem) 15px 2.5rem;
  }

  /* 極小画面：パディング15px */
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .section {
    padding: 2.5rem 15px;
  }

  /* さらに小さい画面向け */
  .trial-popup__actions .btn,
  .trial-popup__actions .btn-lg {
    padding: 0.8rem 0.95rem !important;
    font-size: 0.93rem;
  }

  .timetable-col-head {
    font-size: 0.9rem;
  }

  .timetable-block-time {
    font-size: 0.85rem;
  }

  .timetable-block-info {
    font-size: 0.7rem;
  }
}

/* Hero logo */
.hero-logo { margin-bottom: 1.5rem; }
.hero-logo img { height: 96px; width: auto; filter: drop-shadow(0 6px 16px rgba(0,0,0,0.45)); }
@media (min-width: 768px) { .hero-logo img { height: 120px; } }

/* Hide duplicate trial nav button in header */
.nav-menu .btn-trial-nav { display: none; }
