/* ════════════════════════════════
   COLORFUL EXTRAS
   ピンクチェック柄・カラフルテキスト
════════════════════════════════ */

/* ─── カラフルテキストユーティリティ ─── */
.c-yellow { color: #C8A000; font-weight: 900; }
.c-pink   { color: #F9779B; font-weight: 900; }
.c-blue   { color: #4A90D9; font-weight: 900; }

/* グラデーションテキスト */
.text-grad {
  background: linear-gradient(90deg, #E6B800 0%, #F9779B 55%, #5AAAE0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* マーカーハイライト */
.hl-yellow {
  background: linear-gradient(transparent 55%, #FFF5B0 55%);
  padding: 0 2px;
}
.hl-pink {
  background: linear-gradient(transparent 55%, #FFD9E4 55%);
  padding: 0 2px;
}

/* ─── セクション別アクセントカラー ─── */
#news     .label-en { color: #4A90D9; }
#problems .label-en { color: #F9779B; }
#reasons  .label-en { color: #C8A000; }
#courses  .label-en { color: #4A90D9; }
#gallery  .label-en { color: #F9779B; }
#trainer  .label-en { color: #C8A000; }
#voice    .label-en { color: #F9779B; }
#faq      .label-en { color: #4A90D9; }
#access   .label-en { color: #C8A000; }

#problems .section-title::after { background: #F9779B; }
#gallery  .section-title::after { background: #F9779B; }
#voice    .section-title::after { background: #F9779B; }
#faq      .section-title::after { background: #4A90D9; }
#access   .section-title::after { background: linear-gradient(90deg, #FFCD00, #F9779B, #7CB5E3); }

/* ─── ヒーローアクセントのグラデーション ─── */
.hero-title .accent {
  background: linear-gradient(90deg, #E6B800 0%, #F9779B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: normal;
  display: block;
}

/* ─── ピンクチェック柄パターン ─── */
/* voiceセクション（お客様の声） */
.voice {
  background-color: #FFF0F5;
  background-image:
    linear-gradient(45deg, #FFD9E4 25%, transparent 25%),
    linear-gradient(135deg, #FFD9E4 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, #FFD9E4 75%),
    linear-gradient(135deg, transparent 75%, #FFD9E4 75%);
  background-size: 20px 20px;
  background-position: 0 0, 10px 0, 10px -10px, 0px 10px;
  padding: 80px 0 0;
}

/* heroセクション右上のチェック装飾 */
.hero::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 280px; height: 280px;
  background-image:
    linear-gradient(45deg, rgba(255,147,177,.15) 25%, transparent 25%),
    linear-gradient(135deg, rgba(255,147,177,.15) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, rgba(255,147,177,.15) 75%),
    linear-gradient(135deg, transparent 75%, rgba(255,147,177,.15) 75%);
  background-size: 20px 20px;
  background-position: 0 0, 10px 0, 10px -10px, 0px 10px;
  pointer-events: none;
  z-index: 0;
}

/* newsセクションにも薄いチェック */
.news {
  background-color: #FFFBEC;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 23px, rgba(255,205,0,.2) 23px, rgba(255,205,0,.2) 24px),
    repeating-linear-gradient(90deg, transparent, transparent 23px, rgba(255,205,0,.2) 23px, rgba(255,205,0,.2) 24px);
}

/* ─── カラフルなセクション区切りストライプ ─── */
.section-stripe {
  height: 5px;
  background: linear-gradient(90deg,
    #FFCD00 0%, #FFCD00 33%,
    #FF93B1 33%, #FF93B1 66%,
    #7CB5E3 66%, #7CB5E3 100%);
  display: block;
}

/* ─── Voiceカード - ピンクチェック対応 ─── */
.voice-card {
  background: #fff;
}

/* ─── reasonsカード装飾番号 ─── */
.reason-num {
  font-family: 'Raleway', sans-serif;
  font-size: 64px; font-weight: 900;
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: 'Noto Sans JP', sans-serif;
  background: #FFFFFF;
  color: #444444;
  line-height: 1.75;
  font-size: 16px;
  overflow-x: hidden;
}

/* ─── Design Tokens ─── */
:root {
  --yellow:      #FFCD00;
  --yellow-dk:   #E6B800;
  --yellow-lt:   #FFF5B0;
  --yellow-pale: #FFFBEC;
  --yellow-bg:   #FEF7D9;
  --pink:        #FF93B1;
  --pink-dk:     #F9779B;
  --pink-lt:     #FFD9E4;
  --pink-pale:   #FFF0F5;
  --blue:        #7CB5E3;
  --blue-lt:     #CBE7F4;
  --blue-pale:   #EEF6FD;
  --dark:        #333333;
  --mid:         #666666;
  --muted:       #999999;
  --white:       #FFFFFF;
  --bg:          #FAFAFA;
  --border:      #E8E8E8;
  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --shadow:      0 2px 12px rgba(0,0,0,.08);
  --shadow-md:   0 4px 24px rgba(0,0,0,.10);
  --shadow-soft: 0 1px 6px rgba(0,0,0,.06);
}

/* ─── Base ─── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.section { padding: 80px 0; position: relative; }
img { max-width: 100%; display: block; }

/* ─── 写真画像 ─── */
img.hero-img-main,
img.trainer-img,
img.facility-ph {
  object-fit: cover;
  width: 100%;
  display: block;
}

/* ─── Typography ─── */
.label-en {
  font-family: 'Raleway', 'Cormorant Garamond', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: .25em; text-transform: uppercase;
  color: var(--muted); display: block; margin-bottom: 8px;
}
.section-title {
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 900; line-height: 1.3; color: var(--dark);
  margin-bottom: 8px;
  position: relative; display: inline-block;
}
.section-title::after {
  content: '';
  display: block;
  width: 48px; height: 4px;
  background: var(--yellow);
  border-radius: 2px;
  margin: 10px auto 0;
}
.serif-accent { font-style: italic; color: var(--pink); }
.section-sub { color: var(--mid); font-size: 14px; margin-top: 12px; margin-bottom: 48px; line-height: 1.8; }
.section-header { text-align: center; }

/* ─── Buttons ─── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Noto Sans JP', sans-serif; font-weight: 700;
  border-radius: 6px; text-decoration: none;
  cursor: pointer; border: none; transition: all .18s ease;
  letter-spacing: .03em;
}
.btn-primary {
  background: var(--yellow); color: var(--dark);
  padding: 14px 36px; font-size: 14px;
  box-shadow: 0 3px 12px rgba(255,205,0,.35);
}
.btn-primary:hover {
  background: var(--yellow-dk);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,205,0,.4);
}
.btn-outline {
  background: transparent; color: var(--dark);
  padding: 12px 28px; font-size: 14px;
  border: 2px solid var(--dark);
}
.btn-outline:hover { background: var(--dark); color: #fff; transform: translateY(-2px); }
.btn-ghost {
  background: rgba(255,255,255,.2); color: #fff;
  padding: 12px 28px; font-size: 14px;
  border: 2px solid rgba(255,255,255,.6);
}
.btn-ghost:hover { background: rgba(255,255,255,.35); transform: translateY(-2px); }
.btn-line {
  background: #00B900; color: #fff;
  padding: 14px 36px; font-size: 14px;
  border-color: #00B900;
  box-shadow: 0 3px 12px rgba(0,185,0,.3);
}
.btn-line:hover {
  background: #00A300;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,185,0,.4);
}

/* ─── Image Placeholder ─── */
.img-ph {
  background: linear-gradient(135deg, var(--yellow-pale) 0%, var(--yellow-bg) 100%);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); font-size: 13px; font-weight: 500; gap: 6px;
}

/* ─── Wave Divider (非表示) ─── */
.wave-top, .wave-bottom { display: none; }
svg.wave-divider { display: none; }

/* ────────────────────────────────
   HEADER
──────────────────────────────── */
header {
  position: sticky; top: 0; z-index: 200;
  background: #fff;
  border-bottom: 3px solid var(--yellow);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 32px; max-width: 1200px; margin: 0 auto;
}
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-mark {
  width: 40px; height: 40px;
  background: var(--yellow);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: none;
}
.logo-text { font-weight: 900; font-size: 14px; color: var(--dark); line-height: 1.2; }
.logo-en { font-size: 10px; color: var(--muted); letter-spacing: .08em; display: block; }
nav { display: flex; align-items: center; gap: 4px; }
nav a {
  color: var(--mid); text-decoration: none; font-size: 13px; font-weight: 500;
  padding: 6px 12px; border-radius: 4px;
  transition: background .15s, color .15s;
}
nav a:hover { color: var(--dark); background: var(--yellow-pale); }
nav a::after { display: none; }
.header-tel { font-size: 13px; color: var(--dark); font-weight: 700; }
.header-tel small { font-weight: 400; font-size: 11px; display: block; text-align: center; color: var(--muted); }
@media (max-width: 800px) { nav { display: none; } .header-tel { display: none; } }

/* ────────────────────────────────
   HERO
──────────────────────────────── */
.hero {
  min-height: 88vh;
  background: var(--yellow-pale);
  display: flex; align-items: center;
  position: relative; overflow: hidden; padding: 0;
  border-bottom: 1px solid var(--border);
}
/* 装飾要素は非表示 */
.hero-deco1, .hero-deco2, .hero-deco-ring, .hero-deco-ring2 { display: none; }

.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
  position: relative; z-index: 1;
  padding: 80px 32px;
  width: 100%; max-width: 1200px; margin: 0 auto;
}
.hero-copy {}
.hero-en {
  font-size: 11px; font-weight: 700;
  letter-spacing: .25em; color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 14px; display: flex; align-items: center; gap: 10px;
}
.hero-en::before { display: none; }
.hero-title {
  font-size: clamp(28px, 3.6vw, 46px);
  font-weight: 900; line-height: 1.2;
  color: var(--dark); margin-bottom: 20px;
}
.hero-title .accent {
  color: var(--pink);
  display: block;
}
.hero-sub {
  font-size: 14px; color: var(--mid); line-height: 1.9;
  margin-bottom: 32px;
  border-left: 4px solid var(--yellow);
  padding-left: 16px;
}
.hero-actions { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }
.hero-note {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: var(--muted); padding: 8px 16px;
  background: #fff; border-radius: 4px;
  border: 1px solid var(--border); width: fit-content;
}
.hero-right { position: relative; }
.hero-img-main {
  width: 100%; aspect-ratio: 4/5;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
}
.hero-float-card {
  position: absolute; bottom: -16px; left: -24px;
  background: #fff; border-radius: 12px;
  padding: 14px 18px; box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 12px;
  border: 1px solid var(--border);
}
.hero-float-icon {
  width: 44px; height: 44px; background: var(--yellow-pale);
  border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 22px;
}
.hero-float-num { font-size: 22px; font-weight: 900; color: var(--dark); line-height: 1; }
.hero-float-label { font-size: 11px; color: var(--muted); margin-top: 2px; }
.hero-float-tag {
  position: absolute; top: 16px; right: -12px;
  background: var(--pink); color: #fff;
  font-size: 11px; font-weight: 700; padding: 5px 12px;
  border-radius: 4px; box-shadow: 0 3px 10px rgba(255,147,177,.4);
}
@media (max-width: 800px) {
  .hero-inner { grid-template-columns: 1fr; padding: 48px 20px; }
  .hero-right { display: none; }
  .hero { min-height: auto; }
}

/* Wave after hero - 非表示 */
.hero-wave { display: none; }

/* ────────────────────────────────
   TRUST BAR
──────────────────────────────── */
.trust-bar {
  background: var(--dark); padding: 0;
}
.trust-inner {
  display: flex; justify-content: center; align-items: stretch;
  gap: 0; flex-wrap: wrap; max-width: 1200px; margin: 0 auto;
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  padding: 18px 36px; font-size: 13px; font-weight: 700; color: #fff;
  border-right: 1px solid rgba(255,255,255,.12);
  transition: background .15s;
}
.trust-item:hover { background: rgba(255,255,255,.06); }
.trust-item:last-child { border-right: none; }
.trust-icon { font-size: 20px; }
.trust-item small { display: block; font-size: 11px; color: rgba(255,255,255,.5); font-weight: 400; }

/* ────────────────────────────────
   NEWS
──────────────────────────────── */
.news { background: var(--yellow-pale); padding: 72px 0 64px; }

.news-list {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.news-item {
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  border-left: 4px solid var(--yellow);
  overflow: hidden;
  transition: box-shadow .18s, transform .18s;
}
.news-item:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

/* ヘッダー部（常時表示・クリック領域） */
.news-header {
  width: 100%;
  background: none;
  border: 0;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  display: grid;
  grid-template-columns: 160px 1fr;
  align-items: center;
  gap: 8px 24px;
  padding: 18px 60px 18px 24px;
  position: relative;
  transition: background .18s;
}
.news-item.is-open .news-header { background: var(--yellow-pale); }

.news-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-start;
  flex-shrink: 0;
}
.news-date {
  font-size: 13px;
  font-weight: 700;
  color: var(--mid);
  letter-spacing: .04em;
  white-space: nowrap;
}
.news-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 3px;
  letter-spacing: .06em;
  white-space: nowrap;
}
.news-tag--info  { background: var(--blue-pale); color: #3A6FA0; }
.news-tag--event { background: var(--yellow-lt); color: #7A5A00; }
.news-tag--media { background: var(--pink-pale); color: #A03060; }

.news-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.55;
  margin: 0;
  min-width: 0;
}

.news-arrow {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--yellow-lt);
  color: var(--dark);
  border-radius: 50%;
  transition: transform .25s ease;
  pointer-events: none;
}
.news-arrow svg { display: block; }
.news-item.is-open .news-arrow { transform: translateY(-50%) rotate(180deg); }

/* 詳細（折りたたみ） */
.news-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
.news-item.is-open .news-body { max-height: 600px; }
.news-desc {
  padding: 0 24px 18px 184px;
  margin: 0;
  font-size: 13px;
  color: var(--mid);
  line-height: 1.85;
  border-top: 1px dashed var(--border);
  padding-top: 14px;
}

@media (max-width: 800px) {
  .news-header {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 14px 50px 14px 16px;
  }
  .news-meta { flex-direction: row; align-items: center; }
  .news-desc { padding: 14px 16px 16px 16px; }
}

/* ────────────────────────────────
   PROBLEMS
──────────────────────────────── */
.problems { background: var(--white); padding: 80px 0 0; }
.problems-grid {
  display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; margin-bottom: 40px;
}
.problem-item {
  background: var(--bg); border-radius: var(--radius-md);
  padding: 22px 20px; display: flex; align-items: flex-start; gap: 14px;
  transition: box-shadow .18s, transform .18s; cursor: default;
  border: 1px solid var(--border);
  border-top: 3px solid var(--pink-lt);
}
.problem-item:hover { box-shadow: var(--shadow); transform: translateY(-2px); border-top-color: var(--pink); }
.problem-icon {
  width: 46px; height: 46px; border-radius: 10px;
  background: #fff; display: flex; align-items: center; justify-content: center;
  font-size: 24px; flex-shrink: 0; box-shadow: var(--shadow-soft); border: 1px solid var(--border);
}
.problem-body {}
.problem-text { font-size: 14px; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.problem-sub { font-size: 12px; color: var(--muted); line-height: 1.6; }
.problems-cta-block {
  background: var(--dark);
  border-radius: var(--radius-md); padding: 36px 44px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  position: relative; overflow: hidden;
}
.problems-cta-block::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 6px; height: 100%; background: var(--yellow);
}
.problems-cta-block p { font-size: 18px; font-weight: 700; color: #fff; position: relative; z-index: 1; }
.problems-cta-block small { font-size: 13px; color: rgba(255,255,255,.65); display: block; }
@media (max-width: 600px) { .problems-grid { grid-template-columns: 1fr; } }

/* wave between sections */
.wave-divider { display: none; }

/* ────────────────────────────────
   REASONS
──────────────────────────────── */
.reasons {
  background: var(--yellow-pale); padding: 80px 0 0;
}
.reasons-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.reason-card {
  background: var(--white); border-radius: var(--radius-md); padding: 32px 24px;
  box-shadow: var(--shadow-soft); position: relative; overflow: hidden;
  transition: transform .18s, box-shadow .18s;
  border: 1px solid var(--border);
  border-top: 4px solid var(--yellow);
}
.reason-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.reason-card:nth-child(2) { border-top-color: var(--pink); }
.reason-card:nth-child(3) { border-top-color: var(--blue); }
.reason-dot { display: none; }
.reason-num {
  font-size: 56px; font-weight: 900; color: var(--yellow);
  opacity: .15; position: absolute; top: 8px; right: 14px; line-height: 1;
}
.reason-card:nth-child(2) .reason-num { color: var(--pink); }
.reason-card:nth-child(3) .reason-num { color: var(--blue); }
.reason-icon {
  width: 56px; height: 56px; border-radius: 10px;
  background: var(--yellow-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; margin-bottom: 18px;
  border: 1px solid var(--border);
}
.reason-card:nth-child(2) .reason-icon { background: var(--pink-pale); }
.reason-card:nth-child(3) .reason-icon { background: var(--blue-pale); }
.reason-title { font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.reason-body { font-size: 13px; color: var(--mid); line-height: 1.85; }
@media (max-width: 800px) { .reasons-grid { grid-template-columns: 1fr; } }

/* ────────────────────────────────
   COURSES
──────────────────────────────── */
.courses { background: var(--white); padding: 80px 0 0; }
.courses-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; align-items: start; }
.course-card {
  border-radius: var(--radius-md); overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border);
  transition: transform .18s, box-shadow .18s;
  background: var(--white);
}
.course-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.course-card.featured {
  border: 2px solid var(--yellow);
  box-shadow: var(--shadow-md);
}
.course-card.featured:hover { transform: translateY(-4px); }
.course-head {
  padding: 24px 22px 18px; position: relative;
}
.course-card:nth-child(1) .course-head { background: var(--yellow-pale); }
.course-card.featured .course-head { background: var(--yellow-bg); }
.course-card:nth-child(2) .course-head { background: var(--blue-pale); }
.course-card:nth-child(3) .course-head { background: var(--pink-pale); }
.course-badge {
  position: absolute; top: 12px; right: 12px;
  background: var(--yellow); color: var(--dark);
  font-size: 10px; font-weight: 700; padding: 3px 10px; border-radius: 3px;
}
.course-icon { font-size: 30px; margin-bottom: 10px; }
.course-name { font-size: 17px; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.course-target { font-size: 12px; color: var(--muted); }
.course-body { padding: 20px 22px 26px; }
.price-heading { font-size: 11px; color: var(--muted); font-weight: 500; margin-bottom: 8px; letter-spacing: .05em; }
.price-table { width: 100%; border-collapse: collapse; margin-bottom: 14px; }
.price-table th { background: var(--yellow-pale); color: var(--dark); font-size: 11px; font-weight: 700; padding: 7px 10px; text-align: left; }
.price-table td { padding: 8px 10px; font-size: 13px; border-bottom: 1px solid var(--border); color: var(--dark); }
.price-table td:last-child { font-weight: 700; color: #333; text-align: right; }
.price-consult { font-size: 20px; font-weight: 900; color: var(--dark); margin-bottom: 6px; }
.price-note { font-size: 12px; color: var(--muted); margin-bottom: 14px; line-height: 1.65; }
.course-features { list-style: none; }
.course-features li { font-size: 13px; color: var(--mid); padding: 6px 0; border-bottom: 1px dashed var(--border); display: flex; gap: 8px; align-items: flex-start; }
.course-features li:last-child { border-bottom: none; }
.course-features li::before { content: '✓'; color: var(--yellow-dk); font-weight: 700; flex-shrink: 0; }
@media (max-width: 800px) {
  .courses-grid { grid-template-columns: 1fr; }
  .course-card.featured { transform: none; }
}

/* ────────────────────────────────
   GALLERY (Instagram)
──────────────────────────────── */
.gallery { background: var(--yellow-pale); padding: 80px 0 0; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 10px;
}
.gallery-item {
  border-radius: var(--radius-sm); overflow: hidden;
  background: var(--yellow-bg); position: relative;
  transition: transform .18s; cursor: pointer;
  border: 1px solid var(--border);
}
.gallery-item:hover { transform: scale(1.02); }
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }
.gallery-ph {
  width: 100%; height: 100%; min-height: 160px;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); font-size: 24px;
  background: var(--yellow-bg);
}
.gallery-item.tall .gallery-ph { min-height: 332px; }
.gallery-item.wide .gallery-ph { min-height: 160px; }
.gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0);
  display: flex; align-items: center; justify-content: center;
  transition: background .18s;
}
.gallery-item:hover .gallery-overlay { background: rgba(0,0,0,.08); }
.gallery-footer { text-align: center; margin-top: 24px; }
.gallery-insta {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700; color: #C13584;
  padding: 10px 24px; border: 2px solid #C13584;
  border-radius: 6px; text-decoration: none; transition: all .18s;
}
.gallery-insta:hover { background: linear-gradient(45deg,#FCAF45,#E1306C,#833AB4); color: #fff; border-color: transparent; }

/* Behold Instagram ウィジェット */
[id^="behold-widget-"] { width: 100%; }

/* 訓練所の様子 — PC: 4枚横並び / スマホ: カルーセル */
.gallery-carousel {
  position: relative;
  margin: 22px 0 0;
}
.carousel-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.carousel-slide {
  aspect-ratio: 4 / 3;
  border-radius: 10px;
  border: 1px solid var(--border);
  overflow: hidden;
  background: var(--yellow-bg);
}
.carousel-slide img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.carousel-arrow,
.carousel-dots { display: none; }

@media (max-width: 768px) {
  .gallery-carousel { max-width: 560px; margin: 22px auto 0; }
  .carousel-track {
    display: flex;
    grid-template-columns: none;
    gap: 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: var(--yellow-bg);
  }
  .carousel-track::-webkit-scrollbar { display: none; }
  .carousel-slide {
    flex: 0 0 100%;
    scroll-snap-align: center;
    border: none;
    border-radius: 0;
  }
  .carousel-arrow {
    position: absolute; top: calc(50% - 14px);
    transform: translateY(-50%);
    width: 34px; height: 34px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,.9);
    color: var(--dark);
    font-size: 20px; line-height: 1;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,.12);
    z-index: 2;
  }
  .carousel-prev { left: 8px; }
  .carousel-next { right: 8px; }
  .carousel-dots {
    display: flex; justify-content: center; gap: 8px;
    margin-top: 14px;
  }
  .carousel-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(0,0,0,.18);
    padding: 0; cursor: pointer;
    transition: background .18s, transform .18s;
  }
  .carousel-dot.is-active { background: #F9779B; transform: scale(1.2); }
}

/* ────────────────────────────────
   TRAINER
──────────────────────────────── */
.trainer { background: var(--white); padding: 80px 0 0; }
.trainer-inner {
  display: grid; grid-template-columns: 300px 1fr;
  gap: 60px; align-items: center;
}
.trainer-photo { position: relative; }
.trainer-img {
  width: 100%; aspect-ratio: 3/4;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
}
.trainer-cert {
  position: absolute; bottom: -12px; right: -12px;
  background: var(--yellow); color: var(--dark);
  border-radius: 10px; padding: 12px 16px;
  font-size: 13px; font-weight: 700;
  box-shadow: var(--shadow-md); text-align: center;
}
.trainer-cert small { display: block; font-size: 10px; opacity: .7; font-weight: 400; margin-top: 2px; }
.trainer-en {
  font-size: 11px; font-weight: 700; letter-spacing: .2em;
  color: var(--muted); text-transform: uppercase; margin-bottom: 8px;
  display: flex; align-items: center; gap: 8px;
}
.trainer-en::before { display: none; }
.trainer-name { font-size: 26px; font-weight: 900; color: var(--dark); margin-bottom: 4px; }
.trainer-role { font-size: 13px; color: var(--muted); margin-bottom: 18px; }
.tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.tag {
  background: var(--yellow-pale); color: var(--dark);
  font-size: 11px; font-weight: 700; padding: 4px 12px; border-radius: 4px;
  border: 1px solid var(--border);
}
.trainer-quote {
  background: var(--yellow-pale);
  border-radius: var(--radius-sm);
  border-left: 4px solid var(--yellow);
  padding: 18px 20px; font-size: 14px; color: var(--dark);
  line-height: 1.9; margin-bottom: 18px; position: relative;
}
.trainer-quote::before {
  content: '"';
  font-size: 56px; color: var(--yellow); line-height: 1;
  position: absolute; top: -4px; left: 12px; opacity: .3;
}
.trainer-quote p { padding-left: 20px; }
.trainer-bio { font-size: 13px; color: var(--mid); line-height: 1.9; }
@media (max-width: 800px) {
  .trainer-inner { grid-template-columns: 1fr; }
  .trainer-photo { max-width: 240px; margin: 0 auto; }
}

/* ────────────────────────────────
   VOICE
──────────────────────────────── */
.voice { background: var(--yellow-pale); padding: 80px 0 0; }
.voice-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.voice-card {
  background: var(--white); border-radius: var(--radius-md);
  padding: 24px 20px; box-shadow: var(--shadow-soft);
  border: 1px solid var(--border);
  border-top: 4px solid var(--yellow);
  transition: transform .18s, box-shadow .18s; position: relative;
}
.voice-card:nth-child(2) { border-top-color: var(--pink); }
.voice-card:nth-child(3) { border-top-color: var(--blue); }
.voice-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.voice-qleft {
  font-size: 56px; color: var(--yellow); opacity: .2;
  line-height: 1; position: absolute; top: 12px; left: 16px;
}
.voice-stars { color: #F5A623; font-size: 14px; margin-bottom: 10px; letter-spacing: 2px; }
.voice-text { font-size: 13px; color: var(--dark); line-height: 1.85; margin-bottom: 16px; }
.voice-divider { width: 28px; height: 2px; background: var(--border); margin-bottom: 12px; }
.voice-foot { display: flex; align-items: center; gap: 10px; }
.voice-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--yellow-pale); display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0; border: 1px solid var(--border);
}
.voice-name { font-size: 13px; font-weight: 700; color: var(--dark); }
.voice-dog { font-size: 11px; color: var(--muted); }
@media (max-width: 800px) { .voice-grid { grid-template-columns: 1fr; } }

/* ────────────────────────────────
   FAQ
──────────────────────────────── */
.faq { background: var(--white); padding: 80px 0 0; }
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item {
  margin-bottom: 8px; border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border); background: var(--white);
}
.faq-item:hover { border-color: var(--yellow); }
.faq-q {
  width: 100%; background: none; border: none; text-align: left; cursor: pointer;
  padding: 18px 20px; display: flex; align-items: center; gap: 14px;
  font-family: 'Noto Sans JP', sans-serif; font-size: 14px; font-weight: 700; color: var(--dark);
}
.faq-item.open .faq-q { background: var(--yellow-pale); }
.faq-badge {
  width: 26px; height: 26px; background: var(--yellow); color: var(--dark); border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 900; flex-shrink: 0;
}
.faq-arrow { margin-left: auto; color: var(--muted); font-size: 14px; transition: transform .22s; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .28s ease; }
.faq-item.open .faq-a { max-height: 220px; }
.faq-a-inner {
  padding: 0 20px 18px 60px;
  font-size: 13px; color: var(--mid); line-height: 1.9;
  border-top: 1px dashed var(--border);
}

/* ────────────────────────────────
   ACCESS
──────────────────────────────── */
.access { background: var(--yellow-pale); padding: 80px 0 0; }
.access-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 40px; align-items: start;
}
.map-ph { width: 100%; aspect-ratio: 4/3; border-radius: var(--radius-md); border: 1px solid var(--border); }
.access-panel {}
.access-name { font-size: 18px; font-weight: 700; color: var(--dark); margin-bottom: 18px; }
.access-row {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 12px 0; border-bottom: 1px solid var(--border);
  font-size: 13px; color: var(--dark);
}
.access-row:last-of-type { border-bottom: none; }
.access-label {
  width: 52px; flex-shrink: 0; background: var(--yellow); color: var(--dark);
  font-size: 10px; font-weight: 700; padding: 3px 6px; border-radius: 4px;
  text-align: center; margin-top: 2px; letter-spacing: .04em;
}
.facility-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 22px; }
.facility-ph { width: 100%; aspect-ratio: 4/3; border-radius: 10px; border: 1px solid var(--border); }
@media (max-width: 800px) { .access-inner { grid-template-columns: 1fr; } }

/* ────────────────────────────────
   FINAL CTA
──────────────────────────────── */
.final-cta {
  background: var(--white); padding: 0;
}
.final-cta-inner {
  background: var(--dark);
  border-radius: 0; padding: 80px 32px; text-align: center;
  position: relative; overflow: hidden; margin: 0;
  border-top: 6px solid var(--yellow);
}
.final-cta-inner::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 100%; height: 6px; background: linear-gradient(90deg, var(--yellow), var(--pink), var(--blue));
  top: -6px;
}
.final-cta-inner::after { display: none; }
.final-cta-en {
  font-size: 11px; font-weight: 700; letter-spacing: .25em;
  color: rgba(255,255,255,.4); text-transform: uppercase;
  margin-bottom: 14px; position: relative; z-index: 1;
}
.final-cta-title {
  font-size: clamp(20px, 3vw, 28px); font-weight: 900; color: #fff;
  margin-bottom: 12px; line-height: 1.4; position: relative; z-index: 1;
}
.final-cta-sub { color: rgba(255,255,255,.65); font-size: 14px; margin-bottom: 32px; position: relative; z-index: 1; }
.final-cta-btn {
  background: var(--yellow); color: var(--dark);
  font-size: 15px; font-weight: 700;
  padding: 16px 52px; border-radius: 6px;
  text-decoration: none; display: inline-block;
  box-shadow: 0 4px 20px rgba(255,205,0,.3);
  transition: all .18s; position: relative; z-index: 1;
}
.final-cta-btn:hover { background: var(--yellow-dk); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(255,205,0,.35); }
.final-cta-btn.btn-line { background: #00B900; color: #fff; box-shadow: 0 4px 20px rgba(0,185,0,.3); }
.final-cta-btn.btn-line:hover { background: #00A300; box-shadow: 0 8px 28px rgba(0,185,0,.35); }
.final-cta-note { color: rgba(255,255,255,.45); font-size: 12px; margin-top: 14px; position: relative; z-index: 1; }

/* ────────────────────────────────
   FOOTER
──────────────────────────────── */
footer {
  background: #222222; color: rgba(255,255,255,.55);
  padding: 52px 0 28px;
  position: relative; overflow: hidden;
}
.footer-inner {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 36px;
}
.footer-brand {}
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.footer-logo-mark {
  width: 34px; height: 34px; background: var(--yellow); border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
}
.footer-logo-name { color: #fff; font-weight: 700; font-size: 14px; }
.footer-en { font-size: 10px; color: rgba(255,255,255,.3); letter-spacing: .08em; margin-bottom: 12px; }
.footer-address { font-size: 12px; line-height: 2; }
.footer-section-title { color: rgba(255,255,255,.35); font-size: 10px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; margin-bottom: 12px; }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { color: rgba(255,255,255,.5); text-decoration: none; font-size: 13px; transition: color .15s; }
.footer-links a:hover { color: var(--yellow); }
.footer-tel { font-size: 20px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.footer-hours { font-size: 12px; line-height: 1.9; }
.footer-copy {
  text-align: center; font-size: 11px;
  border-top: 1px solid rgba(255,255,255,.08); padding-top: 22px;
}
@media (max-width: 800px) {
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
}

/* ── Padding bottom adjustments ── */
.section-bottom { padding-bottom: 0; }

/* ─── 装飾イラスト ─── */
.deco-illus { display: none; }
