/* ============================================================
   Takana.Kids v2 — White × Vivid Pink/Red
   Concept: Fresh Apparel Magazine × Energetic Kids
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;0,900;1,700&family=DM+Sans:ital,wght@0,400;0,500;0,700;1,400&family=Barlow+Condensed:wght@700;900&display=swap');

/* ── Variables ─────────────────────────────────────────── */
:root {
  --white:   #FFFFFF;
  --off:     #FAF8F5;
  --paper:   #F5F2EE;
  --ink:     #1A1A1A;
  --ink-mid: #555555;
  --ink-lt:  #999999;
  --pink:    #FF2D6E;   /* vivid pink */
  --red:     #FF1F1F;   /* vivid red */
  --coral:   #FF6B4A;   /* coral bridge */
  --pink-lt: #FFF0F5;   /* pale pink bg */
  --border:  #E8E4DE;
  --font-disp: 'Playfair Display', serif;
  --font-body: 'DM Sans', sans-serif;
  --font-cond: 'Barlow Condensed', sans-serif;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 2px 12px rgba(0,0,0,.07);
  --shadow-md: 0 8px 32px rgba(0,0,0,.10);
  --shadow-lg: 0 20px 60px rgba(0,0,0,.12);
}

/* ── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font: inherit; }

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--ink);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── Layout ─────────────────────────────────────────────── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 28px; }
section { padding: 100px 0; }

/* ── Scroll reveal ──────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .35s var(--ease), transform .35s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }

/* ── Label ──────────────────────────────────────────────── */
.label {
  font-family: var(--font-cond);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--pink);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.label::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--pink);
  flex-shrink: 0;
}

/* ── Section title ──────────────────────────────────────── */
.section-title {
  font-family: var(--font-disp);
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--ink);
}
.section-title em {
  font-style: italic;
  color: var(--pink);
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 700;
  background: var(--pink);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 100px;
  transition: transform .2s, box-shadow .2s, background .2s;
  box-shadow: 0 4px 20px rgba(255,45,110,.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255,45,110,.4);
  background: #e8175a;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 700;
  background: transparent;
  color: var(--ink);
  padding: 13px 32px;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  transition: border-color .2s, background .2s;
}
.btn-ghost:hover { border-color: var(--ink); background: var(--paper); }

.btn-outline-pink {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 700;
  background: transparent;
  color: var(--pink);
  padding: 13px 32px;
  border: 1.5px solid var(--pink);
  border-radius: 100px;
  transition: background .2s, color .2s;
}
.btn-outline-pink:hover { background: var(--pink); color: var(--white); }

/* ─────────────────────────────────────────────────────────
   HEADER
───────────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 68px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
}

.site-logo {
  font-family: var(--font-cond);
  font-size: .7rem;
  font-weight: 900;
  color: var(--ink);
  letter-spacing: .1em;
  text-transform: uppercase;
  line-height: 1.25;
  display: flex;
  flex-direction: column;
}
.site-logo em { font-style: normal; color: var(--pink); font-size: .95rem; letter-spacing: .06em; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}

.site-nav a {
  font-family: var(--font-body);
  font-size: .82rem;
  font-weight: 500;
  color: var(--ink-mid);
  padding: 7px 12px;
  border-radius: 100px;
  transition: color .2s, background .2s;
}
.site-nav a:hover { color: var(--ink); background: var(--paper); }

.nav-cta {
  background: var(--pink) !important;
  color: var(--white) !important;
  font-weight: 700 !important;
  padding: 9px 20px !important;
  border-radius: 100px !important;
  margin-left: 8px;
  box-shadow: 0 3px 14px rgba(255,45,110,.25);
  transition: transform .2s, box-shadow .2s !important;
}
.nav-cta:hover {
  transform: translateY(-1px) !important;
  box-shadow: 0 6px 20px rgba(255,45,110,.35) !important;
  background: var(--pink) !important;
  color: var(--white) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.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
───────────────────────────────────────────────────────── */
.hero {
  padding-top: 68px;
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px 80px 28px;
  max-width: 620px;
  margin-left: auto;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-cond);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--pink);
  background: var(--pink-lt);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
  width: fit-content;
}

.hero-title {
  font-family: var(--font-disp);
  font-size: clamp(2.8rem, 5vw, 4.4rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 24px;
}
.hero-title em {
  font-style: italic;
  color: var(--pink);
  display: block;
}

.hero-sub {
  font-size: 1rem;
  color: var(--ink-mid);
  line-height: 1.85;
  margin-bottom: 40px;
  max-width: 440px;
}

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }

.hero-right {
  position: relative;
  overflow: hidden;
}

.hero-photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 3px;
  height: 100%;
}

.hero-photo-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.hero-photo-grid img:hover { transform: scale(1.04); }

/* ── Stats bar ──────────────────────────────────────────── */
.stats-bar {
  background: var(--ink);
  padding: 0;
}

.stats-inner {
  display: flex;
  align-items: stretch;
  max-width: 1160px;
  margin: 0 auto;
}

.stat-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 22px 16px;
  border-right: 1px solid rgba(255,255,255,.08);
  gap: 3px;
}
.stat-item:last-child { border-right: none; }

.stat-num {
  font-family: var(--font-cond);
  font-size: 2rem;
  font-weight: 900;
  color: var(--pink);
  line-height: 1;
}
.stat-label {
  font-size: .72rem;
  color: rgba(255,255,255,.45);
  letter-spacing: .05em;
}

/* ─────────────────────────────────────────────────────────
   EVENT
───────────────────────────────────────────────────────── */
.event-section { background: var(--off); }

.event-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 20px;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  margin-top: 48px;
}

.event-info {
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.event-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-cond);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  background: var(--red);
  color: var(--white);
  padding: 5px 14px;
  border-radius: 100px;
  width: fit-content;
}

.event-title {
  font-family: var(--font-disp);
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1.3;
  color: var(--ink);
}

.event-desc {
  font-size: .9rem;
  color: var(--ink-mid);
  line-height: 1.8;
}

.event-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.event-img { overflow: hidden; }
.event-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.event-img:hover img { transform: scale(1.04); }

/* ─────────────────────────────────────────────────────────
   FEATURES
───────────────────────────────────────────────────────── */
.features-section { background: var(--white); }

.features-header { margin-bottom: 56px; }

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

.feature-card {
  background: var(--off);
  border-radius: 16px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform .25s, box-shadow .25s;
  border: 1.5px solid transparent;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--pink);
}

.feature-num {
  font-family: var(--font-cond);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .15em;
  color: var(--pink);
}

.feature-img {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  object-fit: cover;
}

.feature-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
}

.feature-desc {
  font-size: .83rem;
  color: var(--ink-mid);
  line-height: 1.75;
}

/* ─────────────────────────────────────────────────────────
   PROGRAMS
───────────────────────────────────────────────────────── */
.programs-section { background: var(--off); }

.programs-header { margin-bottom: 48px; }

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

.program-card {
  border-radius: 16px;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform .3s, box-shadow .3s;
}
.program-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.program-thumb {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.program-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.program-card:hover .program-thumb img { transform: scale(1.06); }

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

.program-cat {
  font-family: var(--font-cond);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 6px;
}

.program-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}

.program-desc {
  font-size: .8rem;
  color: var(--ink-mid);
  margin-bottom: 14px;
  line-height: 1.6;
}

.program-price {
  font-family: var(--font-cond);
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--pink);
}

.programs-cta { text-align: center; margin-top: 40px; }

/* ─────────────────────────────────────────────────────────
   JOURNEY
───────────────────────────────────────────────────────── */
.journey-section {
  background: linear-gradient(135deg, var(--pink) 0%, var(--coral) 50%, #FF8C42 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.journey-section::before {
  content: 'JOURNEY';
  position: absolute;
  right: -40px; top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-cond);
  font-size: 16vw;
  font-weight: 900;
  color: rgba(255,255,255,.08);
  pointer-events: none;
  line-height: 1;
  white-space: nowrap;
}

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

.journey-text .label { color: rgba(255,255,255,.7); }
.journey-text .label::before { background: rgba(255,255,255,.7); }

.journey-heading {
  font-family: var(--font-disp);
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  margin: 14px 0 22px;
}

.journey-desc {
  font-size: .92rem;
  color: rgba(255,255,255,.82);
  line-height: 1.9;
  margin-bottom: 32px;
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 700;
  background: var(--white);
  color: var(--pink);
  padding: 14px 32px;
  border-radius: 100px;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 20px rgba(0,0,0,.15);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,.2); }

/* stamp */
.stamp-block {
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 20px;
  padding: 32px;
}

.stamp-block-title {
  font-family: var(--font-cond);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  margin-bottom: 20px;
}

.stamp-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin-bottom: 8px;
}

.stamp-cell {
  aspect-ratio: 1;
  border: 1.5px solid rgba(255,255,255,.3);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-cond);
  font-size: .85rem;
  font-weight: 700;
  color: rgba(255,255,255,.4);
  cursor: pointer;
  transition: all .2s;
  user-select: none;
}
.stamp-cell:hover { background: rgba(255,255,255,.15); color: var(--white); }
.stamp-cell.stamped {
  background: var(--white);
  border-color: var(--white);
  color: var(--pink);
}

.stamp-finish {
  grid-column: span 5;
  background: var(--ink);
  color: var(--white);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 11px;
  border-radius: 10px;
  text-align: center;
  cursor: pointer;
  transition: opacity .2s;
}
.stamp-finish:hover { opacity: .8; }

.stamp-note {
  font-size: .72rem;
  color: rgba(255,255,255,.45);
  text-align: center;
  margin-top: 10px;
}

/* ─────────────────────────────────────────────────────────
   PRICING
───────────────────────────────────────────────────────── */
.pricing-section { background: var(--white); }
.pricing-header { margin-bottom: 48px; }

.pricing-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 28px;
  background: var(--paper);
  padding: 5px;
  border-radius: 100px;
  width: fit-content;
}

.pricing-tab {
  font-family: var(--font-body);
  font-size: .83rem;
  font-weight: 700;
  padding: 10px 24px;
  border-radius: 100px;
  color: var(--ink-lt);
  transition: all .2s;
  cursor: pointer;
}
.pricing-tab.active { background: var(--pink); color: var(--white); }

.pricing-table-wrap { display: none; }
.pricing-table-wrap.active { display: block; }

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.pricing-table th,
.pricing-table td {
  padding: 14px 20px;
  text-align: left;
  font-size: .87rem;
}

.pricing-table thead th {
  font-family: var(--font-cond);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--ink-lt);
  background: var(--paper);
  border-bottom: 1px solid var(--border);
}

.pricing-table td {
  color: var(--ink);
  border-bottom: 1px solid var(--border);
}
.pricing-table tbody tr:last-child td { border-bottom: none; }

.pricing-table td:last-child {
  font-family: var(--font-cond);
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--pink);
  text-align: right;
  white-space: nowrap;
}

.pricing-table tbody tr:hover td { background: var(--pink-lt); }

.pricing-example {
  margin-top: 20px;
  padding: 18px 24px;
  background: var(--pink-lt);
  border: 1.5px solid rgba(255,45,110,.15);
  border-radius: 12px;
  font-size: .85rem;
  color: var(--ink-mid);
  line-height: 1.7;
}
.pricing-example strong { color: var(--pink); }

/* ─────────────────────────────────────────────────────────
   HOW IT WORKS
───────────────────────────────────────────────────────── */
.flow-section { background: var(--off); }
.flow-header { margin-bottom: 64px; }

.flow-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.flow-steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 10%;
  right: 10%;
  height: 1.5px;
  background: linear-gradient(90deg, var(--pink), var(--coral));
  opacity: .3;
}

.flow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.flow-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--coral));
  color: var(--white);
  font-family: var(--font-cond);
  font-size: 1.8rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(255,45,110,.3);
}

.flow-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 12px;
}

.flow-title {
  font-size: .95rem;
  font-weight: 700;
  color: var(--ink);
}

.flow-desc {
  font-size: .78rem;
  color: var(--ink-mid);
  line-height: 1.7;
}

.flow-cta { text-align: center; margin-top: 56px; }

/* ─────────────────────────────────────────────────────────
   GALLERY
───────────────────────────────────────────────────────── */
.gallery-section { background: var(--white); }
.gallery-header { margin-bottom: 48px; }

.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-auto-rows: 200px;
  gap: 6px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 10px;
}
.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(4) { grid-column: span 2; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.gallery-item:hover img { transform: scale(1.07); }

.gallery-insta { margin-top: 36px; text-align: center; }

.insta-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .85rem;
  font-weight: 700;
  color: var(--ink-mid);
  padding: 12px 24px;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  transition: color .2s, border-color .2s;
}
.insta-link:hover { color: var(--pink); border-color: var(--pink); }
.insta-link img { width: 20px; height: 20px; border-radius: 4px; }

/* ─────────────────────────────────────────────────────────
   FAQ
───────────────────────────────────────────────────────── */
.faq-section { background: var(--off); }
.faq-header { margin-bottom: 56px; }
.faq-list { max-width: 760px; }

.faq-item {
  border-bottom: 1.5px solid var(--border);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  font-size: .93rem;
  font-weight: 700;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  transition: color .2s;
}
.faq-q:hover { color: var(--pink); }
.faq-q > span:first-child { flex: 1; }

.faq-icon {
  width: 28px;
  height: 28px;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: .85rem;
  color: var(--ink-lt);
  transition: transform .3s, background .2s, border-color .2s, color .2s;
  margin-left: auto;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--pink);
  border-color: var(--pink);
  color: var(--white);
}

.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq-item.open .faq-a { max-height: 300px; }

.faq-a-inner {
  padding: 0 0 24px;
  font-size: .88rem;
  color: var(--ink-mid);
  line-height: 1.85;
}

/* ─────────────────────────────────────────────────────────
   ABOUT
───────────────────────────────────────────────────────── */
.about-section { background: var(--white); }
.about-header { margin-bottom: 56px; }

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

.about-card {
  background: var(--off);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  border: 1.5px solid transparent;
  transition: border-color .2s, box-shadow .2s;
}
.about-card:hover { border-color: var(--pink); box-shadow: var(--shadow-sm); }

.about-img {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
}

.about-org-name {
  font-size: .95rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}

.about-org-desc {
  font-size: .8rem;
  color: var(--ink-mid);
  line-height: 1.75;
  margin-bottom: 10px;
}

.about-links { display: flex; gap: 8px; flex-wrap: wrap; }

.about-link {
  font-size: .75rem;
  font-weight: 700;
  color: var(--pink);
  border: 1px solid rgba(255,45,110,.3);
  padding: 4px 12px;
  border-radius: 100px;
  transition: background .2s;
}
.about-link:hover { background: var(--pink-lt); }

.recruit-strip {
  margin-top: 16px;
  background: linear-gradient(135deg, var(--ink) 0%, #333 100%);
  color: var(--white);
  border-radius: 16px;
  padding: 40px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.recruit-text { font-size: .95rem; opacity: .85; line-height: 1.7; }

/* ─────────────────────────────────────────────────────────
   ACCESS
───────────────────────────────────────────────────────── */
.access-section { background: var(--off); }
.access-header { margin-bottom: 56px; }

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

.access-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
}
.access-img img { width: 100%; height: 100%; object-fit: cover; }

.access-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 32px;
}

.access-table tr { border-bottom: 1.5px solid var(--border); }

.access-table th {
  font-family: var(--font-cond);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--ink-lt);
  padding: 14px 0;
  width: 90px;
  vertical-align: top;
  padding-right: 16px;
}

.access-table td {
  font-size: .88rem;
  color: var(--ink);
  padding: 14px 0;
  line-height: 1.65;
}

/* ─────────────────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────────────────── */
.site-footer {
  background: var(--ink);
  color: var(--white);
  padding: 64px 0 32px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 32px;
}

.footer-logo {
  font-family: var(--font-disp);
  font-size: 1.3rem;
  font-weight: 900;
  margin-bottom: 12px;
}
.footer-logo em { font-style: italic; color: var(--pink); }

.footer-tagline {
  font-size: .8rem;
  color: rgba(255,255,255,.4);
  line-height: 1.7;
}

.footer-heading {
  font-family: var(--font-cond);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  margin-bottom: 16px;
}

.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: .83rem; color: rgba(255,255,255,.5); transition: color .2s; }
.footer-links a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copy { font-size: .75rem; color: rgba(255,255,255,.25); }

/* ─────────────────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { max-width: 100%; padding: 60px 28px; margin: 0; }
  .hero-right { height: 55vw; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .programs-grid { grid-template-columns: repeat(2, 1fr); }
  .flow-steps { grid-template-columns: repeat(2, 1fr); }
  .flow-steps::before { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .recruit-strip { flex-direction: column; align-items: flex-start; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  section { padding: 72px 0; }

  .site-nav {
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 28px;
    gap: 4px;
    transform: translateY(-120%);
    transition: transform .35s var(--ease);
    z-index: 999;
    box-shadow: var(--shadow-md);
  }
  .site-nav.open { transform: translateY(0); }
  .site-nav a { width: 100%; padding: 10px 12px; font-size: .9rem; }
  .nav-cta { margin-left: 0 !important; }
  .nav-toggle { display: flex; }

  .event-card { grid-template-columns: 1fr; }
  .event-img { aspect-ratio: 16/9; }
  .event-info { padding: 36px 28px; }

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

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

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

  .flow-steps { grid-template-columns: 1fr; }
  .flow-step { flex-direction: row; text-align: left; }
  .flow-img { display: none; }

  .gallery-masonry { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 140px; }
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(4) { grid-column: span 1; grid-row: span 1; }

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

  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
}

/* ============================================================
   SUB-PAGE STYLES (ramen / contact / about)
   ============================================================ */

/* ── Legacy compat variables ──────────────────────────────── */
:root {
  --dark:   #1A1A1A;
  --orange: #FF2D6E;
  --yellow: #FF2D6E;
  --bg:     #FAF8F5;
  --mid:    #555555;
  --r:      12px;
  --r-lg:   20px;
  --sh:     0 2px 12px rgba(0,0,0,.07);
}

/* ── Page hero (contact / about) ──────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--pink) 0%, var(--coral) 100%);
  color: var(--white);
  padding: 140px 28px 80px;
  text-align: center;
}

.page-eyebrow {
  font-family: var(--font-cond);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  margin-bottom: 20px;
}

.page-title {
  font-family: var(--font-disp);
  font-size: clamp(2.4rem, 7vw, 5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
}
.page-title span { font-style: italic; }

.page-sub {
  font-size: .95rem;
  color: rgba(255,255,255,.8);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.85;
}

/* ── Sections ─────────────────────────────────────────────── */
.section { padding: 80px 0; }
.section-inner { max-width: 1160px; margin: 0 auto; padding: 0 28px; }

.section-white { background: var(--white); }
.section-light { background: var(--off); }
.section-dark  { background: var(--ink); }

.section-label {
  font-family: var(--font-cond);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--pink);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.section-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--pink);
  flex-shrink: 0;
}
.section-label.inv { color: rgba(255,255,255,.55); }
.section-label.inv::before { background: rgba(255,255,255,.4); }

.section-title {
  font-family: var(--font-disp);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 32px;
}
.section-title.inv { color: var(--white); }

/* ── Cursor / pgbar (carry-over from old CSS) ─────────────── */
#cursor-dot, #cursor-ring { display: none; }
#pgbar {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: var(--pink);
  width: 0%;
  z-index: 9999;
  transition: width .1s;
}

/* ── Buttons (legacy names) ───────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: .88rem;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 100px;
  transition: transform .2s, box-shadow .2s, opacity .2s;
  cursor: pointer;
}
.btn-lg { padding: 14px 36px; font-size: .95rem; }

.btn-orange {
  background: var(--pink);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(255,45,110,.3);
}
.btn-orange:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(255,45,110,.4); }

.btn-outline-inv {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.45);
}
.btn-outline-inv:hover { border-color: var(--white); background: rgba(255,255,255,.08); }

/* ── Plan cards ───────────────────────────────────────────── */
.plan-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh);
  border-top: 4px solid var(--border);
  position: relative;
  transition: transform .3s, box-shadow .3s;
}
.plan-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.plan-border-blue  { border-top-color: #3B7FD4; }
.plan-border-amber { border-top-color: #F0A500; }
.plan-border-orange { border-top-color: var(--pink); }

.plan-card-img { width: 100%; height: 180px; object-fit: cover; }

.plan-inner { padding: 20px 20px 12px; }

.plan-num {
  font-family: var(--font-cond);
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .15em;
  color: var(--pink);
  display: block;
  margin-bottom: 6px;
}

.plan-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}

.plan-desc { font-size: .82rem; color: var(--ink-mid); }

.plan-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  background: var(--pink-lt);
}
.plan-bg-blue  { background: #EBF3FD; }
.plan-bg-amber { background: #FEF7E5; }
.plan-bg-orange { background: var(--pink-lt); }

.plan-price-num {
  font-family: var(--font-cond);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--pink);
}
.plan-col-blue  { color: #3B7FD4; }
.plan-col-amber { color: #F0A500; }

.plan-price-note { font-size: .75rem; color: var(--ink-mid); }

.plan-disc-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  background: var(--paper);
  border-top: 1px solid var(--border);
}

.plan-disc-label { font-size: .75rem; color: var(--ink-lt); }

.plan-disc-num {
  font-family: var(--font-cond);
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--pink);
}

.plan-rec {
  position: absolute;
  top: 12px; right: 12px;
  background: var(--pink);
  color: var(--white);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  padding: 4px 10px;
  border-radius: 100px;
  z-index: 1;
}

/* ── Info boxes ───────────────────────────────────────────── */
.info-green {
  background: #F0FDF4;
  border: 1.5px solid #86EFAC;
  border-radius: 10px;
  padding: 14px 18px;
  font-size: .88rem;
  color: #166534;
  line-height: 1.7;
}

.info-red {
  background: var(--pink-lt);
  border: 1.5px solid rgba(255,45,110,.25);
  border-radius: 10px;
  padding: 14px 18px;
  font-size: .88rem;
  color: #9F1239;
  line-height: 1.7;
}

/* ── CTA box ──────────────────────────────────────────────── */
.cta-box {
  background: linear-gradient(135deg, var(--pink) 0%, var(--coral) 100%);
  border-radius: var(--r-lg);
  padding: 48px 40px;
  text-align: center;
  color: var(--white);
}

.cta-title {
  font-family: var(--font-disp);
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 10px;
}

.cta-sub {
  font-size: .88rem;
  color: rgba(255,255,255,.75);
  margin-bottom: 24px;
}

.cta-btn-w {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--pink);
  font-weight: 700;
  font-size: .95rem;
  padding: 14px 36px;
  border-radius: 100px;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 20px rgba(0,0,0,.15);
}
.cta-btn-w:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,.2); }

/* ── Step cards (ramen process) ───────────────────────────── */
.step-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.step-card {
  background: var(--off);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
}
.step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.step-badge {
  font-family: var(--font-cond);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .18em;
  background: var(--pink);
  color: var(--white);
  padding: 6px 14px;
}

.step-img-wrap { aspect-ratio: 16/9; overflow: hidden; }
.step-img-wrap img { width: 100%; height: 100%; object-fit: cover; }

.step-body { padding: 18px 20px 22px; }

.step-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}

.step-desc { font-size: .82rem; color: var(--ink-mid); line-height: 1.7; }

/* ── Timeline ─────────────────────────────────────────────── */
.timeline { display: flex; flex-direction: column; gap: 0; }

.tl-row {
  display: grid;
  grid-template-columns: 1fr 32px 1fr;
  align-items: center;
  gap: 16px;
  min-height: 72px;
}

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

.tl-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  justify-self: center;
  position: relative;
}
.tl-dot::before {
  content: '';
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 58px;
  background: rgba(255,255,255,.1);
}
.tl-row:last-child .tl-dot::before { display: none; }

.tl-dot-o { background: var(--pink); }
.tl-dot-y { background: var(--coral); }

.tl-card {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 10px;
}
.tl-card-o { background: rgba(255,45,110,.15); }
.tl-card-y { background: rgba(255,107,74,.15); }

.tl-part {
  font-family: var(--font-cond);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .15em;
  margin-bottom: 4px;
}
.tl-part-o { color: var(--pink); }
.tl-part-y { color: var(--coral); }

.tl-time { font-size: .88rem; font-weight: 700; color: var(--white); }

.tl-note { font-size: .82rem; color: rgba(255,255,255,.5); }

/* ── Gallery grid ─────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}

.gallery-item {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 8px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.gallery-item:hover img { transform: scale(1.07); }

/* ── Grid helpers ─────────────────────────────────────────── */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

/* ── Map ──────────────────────────────────────────────────── */
.map-frame {
  width: 100%;
  aspect-ratio: 4/3;
  border: none;
  border-radius: var(--r-lg);
}

/* ── Access table ─────────────────────────────────────────── */
.access-table { width: 100%; border-collapse: collapse; }
.access-table tr { border-bottom: 1px solid var(--border); }
.access-table th {
  font-family: var(--font-cond);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-lt);
  padding: 12px 0;
  width: 80px;
  vertical-align: top;
  padding-right: 14px;
  white-space: nowrap;
}
.access-table td { font-size: .86rem; color: var(--ink); padding: 12px 0; line-height: 1.65; }

/* ── FAQ (sub-page variant) ───────────────────────────────── */
.faq-wrap { display: flex; flex-direction: column; }

.faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 0;
  font-size: .92rem;
  font-weight: 700;
  color: var(--ink);
  text-align: left;
  background: none;
  border: none;
  border-bottom: 1.5px solid var(--border);
  cursor: pointer;
  transition: color .2s;
}
.faq-btn:hover { color: var(--pink); }

.faq-q {
  font-family: var(--font-cond);
  font-size: 1rem;
  font-weight: 900;
  color: var(--pink);
  flex-shrink: 0;
}

.faq-plus {
  margin-left: auto;
  font-size: 1.2rem;
  color: var(--ink-lt);
  flex-shrink: 0;
  transition: transform .3s, color .2s;
}

.faq-item.open .faq-plus { transform: rotate(45deg); color: var(--pink); }

.faq-body {
  max-height: 0;
  overflow: hidden;
  font-size: .88rem;
  color: var(--ink-mid);
  line-height: 1.85;
  transition: max-height .4s var(--ease), padding .4s;
  padding: 0 0 0 2px;
}
.faq-item.open .faq-body { max-height: 200px; padding: 16px 0 20px 2px; }

/* ── LINE button ──────────────────────────────────────────── */
.line-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: #06C755;
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  padding: 16px 36px;
  border-radius: 100px;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 20px rgba(6,199,85,.3);
}
.line-btn img { width: 36px; height: 36px; border-radius: 6px; flex-shrink: 0; }
.line-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(6,199,85,.4); }

/* ── Fixed reserve bar ────────────────────────────────────── */
.fixed-reserve {
  position: fixed;
  bottom: -80px;
  left: 0; right: 0;
  z-index: 900;
  text-align: center;
  padding: 12px 20px;
  background: var(--pink);
  transition: bottom .4s var(--ease);
}
.fixed-reserve.show { bottom: 0; }
.fixed-reserve a {
  color: var(--white);
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .05em;
}

/* ── Step flow (contact) ──────────────────────────────────── */
.step-flow { display: flex; flex-direction: column; gap: 0; margin-top: 40px; }

.step-row {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.step-row:last-child { border-bottom: none; }

.step-n {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--coral));
  color: var(--white);
  font-family: var(--font-cond);
  font-size: 1.3rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-t {
  font-size: .95rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}

.step-d { font-size: .85rem; color: var(--ink-mid); line-height: 1.75; }

/* ── Flow list (about) ────────────────────────────────────── */
.flow-list { display: flex; flex-direction: column; gap: 56px; margin-top: 48px; }

.flow-item {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

.flow-num {
  font-family: var(--font-cond);
  font-size: 3rem;
  font-weight: 900;
  color: var(--pink);
  opacity: .25;
  line-height: 1;
  flex-shrink: 0;
  width: 64px;
}

.flow-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
}

.flow-desc {
  font-size: .88rem;
  color: var(--ink-mid);
  line-height: 1.85;
  margin-bottom: 16px;
}

.flow-img {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: var(--r-lg);
}

/* ── Org links ────────────────────────────────────────────── */
.org-links { display: flex; gap: 8px; flex-wrap: wrap; }

.org-link {
  font-size: .78rem;
  font-weight: 700;
  color: var(--pink);
  border: 1px solid rgba(255,45,110,.3);
  padding: 4px 14px;
  border-radius: 100px;
  transition: background .2s;
}
.org-link:hover { background: var(--pink-lt); }

/* ── Footer (sub-page) ────────────────────────────────────── */
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  flex-wrap: wrap;
}

.footer-logo {
  font-family: var(--font-disp);
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 10px;
  display: block;
}
.footer-logo span { color: var(--pink); font-style: italic; }

.footer-desc {
  font-size: .8rem;
  color: rgba(255,255,255,.4);
  line-height: 1.7;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 20px;
}
.footer-nav a { font-size: .83rem; color: rgba(255,255,255,.5); transition: color .2s; }
.footer-nav a:hover { color: var(--white); }

.footer-copy { font-size: .75rem; color: rgba(255,255,255,.25); }

/* ── Back to top ──────────────────────────────────────────── */
#back-top {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 44px; height: 44px;
  background: var(--pink);
  color: var(--white);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(255,45,110,.35);
  transition: transform .2s, opacity .2s;
  opacity: 0;
  pointer-events: none;
  z-index: 800;
}
#back-top.show { opacity: 1; pointer-events: auto; }
#back-top:hover { transform: translateY(-3px); }
#back-top svg { width: 18px; height: 18px; stroke: var(--white); stroke-width: 2.5; fill: none; }

/* ── Delay helpers ────────────────────────────────────────── */
.d1 { transition-delay: .08s; }
.d2 { transition-delay: .16s; }
.d3 { transition-delay: .24s; }

/* ── Sub-page responsive ──────────────────────────────────── */
@media (max-width: 768px) {
  .step-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-2 { grid-template-columns: 1fr; }
  .tl-row { grid-template-columns: 1fr 24px 1fr; }
  .flow-item { flex-direction: column; gap: 16px; }
  .flow-num { font-size: 2rem; width: auto; }
}

/* ── Notice box 文字色修正 ──────────────────────────────── */
.notice-box { border: 1px solid rgba(255,255,255,.15); border-radius: 14px; padding: 28px 32px; }
.notice-title { font-size: .72rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; margin-bottom: 16px; color: rgba(255,255,255,.5) !important; }
.notice-list { display: flex; flex-direction: column; gap: 10px; padding-left: 0; list-style: none; }
.notice-list li { font-size: .87rem; color: rgba(255,255,255,.75) !important; line-height: 1.75; padding-left: 16px; position: relative; }
.notice-list li::before { content: "—"; position: absolute; left: 0; color: var(--pink); font-weight: 700; }

/* ── Programs section 文字可視化 ──────────────────────────── */
.program-body { background: var(--white); }
.programs-section .program-cat,
.programs-section .program-name,
.programs-section .program-desc,
.programs-section .program-price { color: initial; }
.program-cat { color: var(--pink) !important; }
.program-name { color: var(--ink) !important; }
.program-desc { color: var(--ink-mid) !important; }
.program-price { color: var(--pink) !important; }

/* ── Logo 2-line fix ─────────────────────────────────────── */
.footer-logo, .footer-logo em { font-family: var(--font-cond); }

/* ── About page: value grid スマホ対応 ─────────────────────── */
@media (max-width: 768px) {
  [style*="grid-template-columns:repeat(5,1fr)"] { grid-template-columns: repeat(2, 1fr) !important; }
  [style*="grid-template-columns:1fr 1fr"] { grid-template-columns: 1fr !important; }
  [style*="display:flex;gap:32px;align-items:flex-start;flex-wrap:wrap"] { flex-direction: column !important; }
  [style*="width:220px"] { width: 100% !important; max-width: 300px !important; }
}
@media (max-width: 768px) {
  .faq-q {
    align-items: flex-start;
  }

  .faq-q > span:first-child {
    flex: 1;
    min-width: 0;
    word-break: break-word;
  }
}

@media (max-width: 768px) {
  .faq-btn {
    gap: 8px;
  }

  .faq-btn .faq-q {
    flex-shrink: 0;
  }

  .faq-btn > span:nth-child(2) {
    flex: 1;
    min-width: 0;
    text-align: left;
    word-break: break-word;
  }

  .faq-plus {
    flex-shrink: 0;
    margin-left: auto;
  }
}
/* ===== うどんページ専用カラー（他ページ影響なし） ===== */
body.page-udon {
  --orange: #C8961E;
  --pink:   #C8961E;
  --coral:  #A87A10;
  --pink-lt: #FDF6E3;
}
body.page-udon #pgbar { background: #C8961E; }
body.page-udon .fixed-reserve { background: #C8961E; }
body.page-udon #back-top { background: #C8961E; box-shadow: 0 4px 16px rgba(200,150,30,.35); }
body.page-udon .notice-list li::before { color: #C8961E; }

/* ===== FAQのQ文字が右に寄る修正 ===== */
.faq-btn {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 20px 0;
  width: 100%;
}
.faq-btn .faq-q {
  flex-shrink: 0;
  width: 28px;
}
.faq-btn > span:nth-child(2) {
  flex: 1;
  min-width: 0;
  word-break: break-word;
  text-align: left;
}
.faq-plus {
  flex-shrink: 0;
  margin-left: auto;
}