/* ======================================================
   095 beauty school SAMPLE — 小顔調整スクール&サロン
   切らない、打たない。手だけで導く小顔。
   Palette: ivory #FBF8F5 / mauve #9B7E8E / champagne #C8AE86 / smoke #6B6168 / sumi #3A343A
   Font: Marcellus (EN serif) × Zen Kaku Gothic New (JP) × Inter (UI)
   ★ reveal は最初から CSS-only（JS非依存・絶対に消えない）
   ★ アイコン+見出しは横並び / モバイルメニューに 閉じる×・HOME
   ====================================================== */

:root {
  --ivory:    #FBF8F5;
  --ivory-2:  #F3ECE4;
  --mauve:    #9B7E8E;
  --mauve-d:  #7E6172;
  --champ:    #C8AE86;
  --champ-d:  #A98E63;
  --smoke:    #6B6168;
  --sumi:     #3A343A;
  --sumi-soft:#564E55;
  --line:     #E7DDD2;
  --white:    #FFFFFF;

  --font-en: 'Marcellus', 'Times New Roman', serif;
  --font-jp: 'Zen Kaku Gothic New', sans-serif;
  --font-ui: 'Inter', sans-serif;

  --container: 1180px;
  --gap: clamp(96px, 12vw, 168px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { overflow-x: hidden; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-jp);
  background: var(--ivory);
  color: var(--sumi);
  line-height: 1.95;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 28px; }

/* ─── DEMO BAR ─────────────────────────────────────────── */
#demo-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1200;
  background: rgba(58,52,58,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200,174,134,0.3);
  padding: 7px 0;
}
.demo-bar-inner {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  font-size: 0.7rem; color: rgba(251,248,245,0.45);
  font-family: var(--font-ui); letter-spacing: 0.02em;
}
.demo-badge {
  font-size: 0.54rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  background: rgba(200,174,134,0.22); color: #E0CBA6;
  padding: 3px 10px; border-radius: 20px; flex-shrink: 0;
}
.demo-link { color: #E0CBA6; font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.demo-copy { color: rgba(251,248,245,0.25); font-size: 0.62rem; margin-left: 4px; }
@media (max-width: 640px) { .demo-copy { display: none; } }

/* ─── HEADER ───────────────────────────────────────────── */
.site-header {
  position: fixed; top: 36px; left: 0; right: 0; z-index: 1000;
  background: rgba(251,248,245,0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  transition: padding .35s ease;
}
.site-header.is-shrunk { padding: 0; }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 28px;
  transition: padding .35s ease;
}
.site-header.is-shrunk .header-inner { padding: 10px 28px; }

.site-logo { display: flex; flex-direction: column; gap: 2px; line-height: 1.1; }
.site-logo .logo-en { font-family: var(--font-en); font-size: 23px; letter-spacing: 0.16em; color: var(--sumi); padding-right: 0.16em; }
.site-logo .logo-jp { font-family: var(--font-jp); font-size: 10px; font-weight: 500; letter-spacing: 0.34em; color: var(--mauve); padding-right: 0.34em; }

.header-nav { display: flex; align-items: center; gap: 26px; font-family: var(--font-jp); font-size: 13px; font-weight: 500; letter-spacing: 0.06em; }
.header-nav a { color: var(--sumi-soft); transition: color .25s ease; position: relative; }
.header-nav a:hover { color: var(--mauve-d); }
.header-nav a::after { content:''; position: absolute; left: 0; bottom: -5px; width: 0; height: 1px; background: var(--champ); transition: width .3s ease; }
.header-nav a:hover::after { width: 100%; }
.header-nav .mobile-nav-close, .header-nav .mobile-nav-home { display: none; }
.header-cta {
  font-family: var(--font-jp); font-weight: 700; font-size: 12px !important;
  color: var(--white) !important; background: var(--mauve);
  padding: 11px 22px; border-radius: 30px; letter-spacing: 0.06em;
  transition: background .25s ease;
}
.header-cta::after { display: none !important; }
.header-cta:hover { background: var(--mauve-d); color: var(--white) !important; }

.hamburger { display: none; width: 44px; height: 44px; background: none; border: none; cursor: pointer; position: relative; z-index: 1100; }
.hamburger span, .hamburger span::before, .hamburger span::after {
  content:''; display: block; position: absolute; width: 24px; height: 1.5px; background: var(--sumi); left: 10px;
  transition: transform .35s ease, top .35s ease, opacity .25s ease;
}
.hamburger span { top: 21px; }
.hamburger span::before { top: -7px; }
.hamburger span::after { top: 7px; }
.hamburger.is-active span { background: transparent; }
.hamburger.is-active span::before { top: 0; transform: rotate(45deg); }
.hamburger.is-active span::after { top: 0; transform: rotate(-45deg); }

/* ─── REVEAL（CSS-only / 最初から）─────────────────────── */
.reveal { opacity: 1; animation: reveal-in 0.95s cubic-bezier(.2,.7,.2,1) both; }
@keyframes reveal-in { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.reveal-up1 { animation-delay: .08s; }
.reveal-up2 { animation-delay: .16s; }
.reveal-up3 { animation-delay: .24s; }
@media (prefers-reduced-motion: reduce) { .reveal { animation: none; opacity: 1; transform: none; } }

/* ─── HERO（フルブリード写真＋下部テキスト）──────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: flex-end;
  padding-top: calc(36px + 80px);
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg::after { content:''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(58,52,58,.66) 0%, rgba(58,52,58,.18) 45%, rgba(58,52,58,.28) 100%); }
.hero-inner { position: relative; z-index: 2; max-width: var(--container); margin: 0 auto; width: 100%; padding: 0 28px clamp(56px, 8vw, 100px); color: #fff; }
.hero-label {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-en); font-size: 14px; letter-spacing: 0.22em; text-transform: uppercase;
  color: #E0CBA6; margin-bottom: 26px;
}
.hero-label::before { content:''; width: 36px; height: 1px; background: #E0CBA6; }
.hero h1 {
  font-family: var(--font-jp); font-weight: 700;
  font-size: clamp(34px, 5.6vw, 68px); line-height: 1.4; letter-spacing: 0.04em;
  margin-bottom: 28px; text-shadow: 0 2px 30px rgba(0,0,0,.25);
}
.hero h1 .accent { color: #E8D3B0; }
.hero-lead { max-width: 560px; font-size: 16px; line-height: 2.1; color: rgba(255,255,255,.92); margin-bottom: 38px; }
.hero-actions { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.btn-prim {
  font-family: var(--font-jp); font-weight: 700; font-size: 14px; letter-spacing: 0.06em;
  color: #fff; background: var(--mauve); padding: 16px 38px; border-radius: 32px;
  transition: background .25s ease, transform .25s ease;
}
.btn-prim:hover { background: var(--mauve-d); transform: translateY(-2px); }
.btn-ghost {
  font-family: var(--font-jp); font-weight: 700; font-size: 14px; letter-spacing: 0.06em;
  color: #fff; border: 1px solid rgba(255,255,255,.55); padding: 16px 34px; border-radius: 32px;
  transition: border-color .25s ease, background .25s ease;
}
.btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,.12); }

/* ─── SECTION 共通 ─────────────────────────────────────── */
.section { padding: var(--gap) 0; position: relative; }
.section-head { text-align: center; max-width: 660px; margin: 0 auto clamp(48px,6vw,76px); }
.section-head.left { text-align: left; margin-left: 0; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-en); font-size: 14px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--champ-d); margin-bottom: 18px;
}
.eyebrow::before, .eyebrow::after { content:''; width: 24px; height: 1px; background: var(--champ); }
.section-head.left .eyebrow::after { display: none; }
.section-title {
  font-family: var(--font-jp); font-weight: 700;
  font-size: clamp(27px, 3.8vw, 44px); line-height: 1.5; letter-spacing: 0.04em; color: var(--sumi);
}
.section-title .en { display: block; font-family: var(--font-en); font-size: 0.44em; letter-spacing: 0.16em; color: var(--mauve); margin-bottom: 14px; }
.section-desc { margin-top: 20px; font-size: 16px; line-height: 2.15; color: var(--sumi-soft); }

/* ─── CONCEPT（写真＋文）───────────────────────────────── */
.concept-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(40px,6vw,84px); align-items: center; }
.concept-photo { position: relative; border-radius: 4px; overflow: hidden; aspect-ratio: 4/5; }
.concept-photo img { width: 100%; height: 100%; object-fit: cover; }
.concept-photo .frame { position: absolute; inset: 14px -14px -14px 14px; border: 1px solid var(--champ); z-index: -1; }
.concept-body .quote {
  font-family: var(--font-jp); font-weight: 700;
  font-size: clamp(20px, 2.4vw, 28px); line-height: 1.75; letter-spacing: 0.04em; color: var(--mauve-d);
  margin: 26px 0; padding-left: 20px; border-left: 2px solid var(--champ);
}
.concept-body p { font-size: 16px; line-height: 2.15; color: var(--sumi-soft); margin-bottom: 18px; }

/* ─── お悩み（worry）──────────────────────────────────── */
.worry-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 40px; max-width: 880px; margin-left:auto; margin-right:auto; }
.worry-item {
  display: flex; align-items: flex-start; gap: 14px;
  background: var(--white); border: 1px solid var(--line); border-radius: 6px; padding: 22px 24px;
}
.worry-item .check { flex-shrink: 0; width: 24px; height: 24px; color: var(--mauve); margin-top: 2px; }
.worry-item p { font-size: 14.5px; line-height: 1.85; color: var(--sumi-soft); }

/* ─── 比較（感覚 vs 構造）─────────────────────────────── */
.compare-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 52px; }
.compare-col { border-radius: 8px; padding: 36px 32px; }
.compare-col.bad { background: var(--ivory-2); border: 1px solid var(--line); }
.compare-col.good { background: var(--sumi); color: #fff; }
.compare-col h3 { font-family: var(--font-jp); font-weight: 700; font-size: 19px; margin-bottom: 6px; }
.compare-col .tag { font-family: var(--font-en); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 18px; display: block; }
.compare-col.bad .tag { color: var(--smoke); }
.compare-col.good .tag { color: #E0CBA6; }
.compare-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.compare-col li { display: flex; gap: 12px; font-size: 14.5px; line-height: 1.8; }
.compare-col li::before { content:''; flex-shrink: 0; width: 18px; height: 18px; margin-top: 3px; }
.compare-col.bad li::before { background: var(--smoke); -webkit-mask:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round'%3E%3Cpath d='M6 6l12 12M18 6L6 18'/%3E%3C/svg%3E") center/contain no-repeat; mask:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round'%3E%3Cpath d='M6 6l12 12M18 6L6 18'/%3E%3C/svg%3E") center/contain no-repeat; }
.compare-col.good li::before { background: #E0CBA6; -webkit-mask:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12l5 5L20 6'/%3E%3C/svg%3E") center/contain no-repeat; mask:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12l5 5L20 6'/%3E%3C/svg%3E") center/contain no-repeat; }

/* ─── STEP（評価→施術→変化→定着）─────────────────────── */
.step-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); margin-top: 52px; }
.step-cell { background: var(--white); padding: 36px 26px; text-align: center; }
.step-num { font-family: var(--font-en); font-size: 14px; letter-spacing: 0.18em; color: var(--champ-d); margin-bottom: 16px; }
.step-cell h3 { font-family: var(--font-jp); font-weight: 700; font-size: 19px; color: var(--mauve-d); margin-bottom: 12px; }
.step-cell p { font-size: 13.5px; line-height: 1.9; color: var(--sumi-soft); }

/* ─── FEATURE（横並びアイコン）────────────────────────── */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.feature-card { background: var(--white); border: 1px solid var(--line); border-radius: 8px; padding: 36px 30px; }
.feature-head { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.feature-icon { flex-shrink: 0; width: 46px; height: 46px; border-radius: 50%; background: rgba(155,126,142,0.12); color: var(--mauve); display: flex; align-items: center; justify-content: center; }
.feature-icon svg { width: 24px; height: 24px; }
.feature-card h3 { font-family: var(--font-jp); font-weight: 700; font-size: 18px; color: var(--sumi); }
.feature-card p { font-size: 14px; line-height: 2; color: var(--sumi-soft); }

/* ─── MENU（コース）───────────────────────────────────── */
.menu-list { display: flex; flex-direction: column; gap: 20px; margin-top: 52px; }
.menu-row { display: grid; grid-template-columns: 200px 1fr auto; gap: 36px; align-items: center; background: var(--white); border: 1px solid var(--line); border-radius: 8px; padding: 30px 34px; }
.menu-row .menu-en { font-family: var(--font-en); font-size: 13px; letter-spacing: 0.16em; color: var(--champ-d); }
.menu-row h3 { font-family: var(--font-jp); font-weight: 700; font-size: 20px; color: var(--sumi); margin-top: 4px; }
.menu-row .menu-body p { font-size: 14px; line-height: 1.95; color: var(--sumi-soft); }
.menu-row .menu-price { font-family: var(--font-en); font-size: 22px; color: var(--mauve-d); white-space: nowrap; text-align: right; }
.menu-row .menu-price small { display: block; font-family: var(--font-jp); font-size: 11px; color: var(--smoke); }

/* ─── VOICE（お客様/卒業生の声）───────────────────────── */
.voice-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 52px; }
.voice-card { background: var(--white); border: 1px solid var(--line); border-radius: 8px; padding: 32px; position: relative; }
.voice-card::before { content:'\201C'; position: absolute; top: 14px; right: 24px; font-family: var(--font-en); font-size: 60px; color: var(--ivory-2); line-height: 1; }
.voice-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.voice-avatar { width: 44px; height: 44px; border-radius: 50%; background: rgba(200,174,134,0.2); color: var(--champ-d); display: flex; align-items: center; justify-content: center; font-family: var(--font-en); font-size: 16px; }
.voice-meta .who { font-family: var(--font-jp); font-weight: 700; font-size: 14px; color: var(--sumi); }
.voice-meta .who small { display: block; font-weight: 400; font-size: 12px; color: var(--smoke); }
.voice-card p { font-size: 14px; line-height: 2.05; color: var(--sumi-soft); position: relative; z-index: 1; }

/* ─── PROFILE（講師）─────────────────────────────────── */
.profile-wrap { display: grid; grid-template-columns: 1fr 1.4fr; gap: clamp(36px,5vw,72px); align-items: center; }
.profile-photo { border-radius: 4px; overflow: hidden; aspect-ratio: 4/5; position: relative; }
.profile-photo img { width: 100%; height: 100%; object-fit: cover; }
.profile-body p { font-size: 15px; line-height: 2.15; color: var(--sumi-soft); margin-bottom: 18px; }
.profile-sign { margin-top: 28px; font-family: var(--font-jp); font-weight: 700; font-size: 16px; color: var(--sumi); }
.profile-sign .role { display: block; font-family: var(--font-en); font-size: 12px; letter-spacing: 0.16em; color: var(--mauve); margin-bottom: 4px; }

/* ─── CTA ──────────────────────────────────────────────── */
.cta-band { background: var(--mauve); color: #fff; border-radius: clamp(20px,4vw,40px); margin: 0 28px; padding: clamp(64px,9vw,110px) 28px; text-align: center; position: relative; overflow: hidden; }
.cta-band::before, .cta-band::after { content:''; position: absolute; border-radius: 50%; background: rgba(255,255,255,.1); }
.cta-band::before { width: 220px; height: 220px; top: -70px; left: -50px; }
.cta-band::after { width: 160px; height: 160px; bottom: -60px; right: -30px; }
.cta-band .inner { position: relative; z-index: 2; }
.cta-band .eyebrow { color: rgba(255,255,255,.9); justify-content: center; }
.cta-band .eyebrow::before, .cta-band .eyebrow::after { background: rgba(255,255,255,.6); }
.cta-band h2 { font-family: var(--font-jp); font-weight: 700; font-size: clamp(26px,4vw,42px); letter-spacing: 0.04em; margin-bottom: 18px; }
.cta-band p { max-width: 520px; margin: 0 auto 36px; font-size: 15px; line-height: 2; color: rgba(255,255,255,.9); }
.cta-band .btn-prim { background: #fff; color: var(--mauve-d); }
.cta-band .btn-prim:hover { background: var(--ivory); color: var(--mauve-d); }

/* ─── FOOTER ──────────────────────────────────────────── */
.site-footer { background: var(--sumi); color: rgba(251,248,245,.72); padding: 72px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 56px; }
.footer-brand .f-logo { font-family: var(--font-en); font-size: 24px; letter-spacing: 0.16em; color: var(--ivory); margin-bottom: 4px; }
.footer-brand .f-logo-jp { font-size: 11px; letter-spacing: 0.3em; color: var(--champ); margin-bottom: 20px; }
.footer-brand p { font-size: 13px; line-height: 1.95; color: rgba(251,248,245,.6); }
.footer-col h4 { font-family: var(--font-en); font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--champ); margin-bottom: 18px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 13px; color: rgba(251,248,245,.7); transition: color .25s ease; }
.footer-col a:hover { color: var(--champ); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 26px; border-top: 1px solid rgba(251,248,245,.12); font-family: var(--font-en); font-size: 12px; letter-spacing: 0.1em; color: rgba(251,248,245,.45); }

/* ─── INTERIOR PAGES ──────────────────────────────────── */
.page-hero { padding: calc(36px + 80px + 70px) 0 70px; text-align: center; background: var(--ivory-2); border-bottom: 1px solid var(--line); }
.page-hero .eyebrow { justify-content: center; }
.page-hero h1 { font-family: var(--font-jp); font-weight: 700; font-size: clamp(30px,5vw,56px); letter-spacing: 0.06em; color: var(--sumi); margin-bottom: 12px; }
.page-hero .page-sub { font-family: var(--font-en); font-size: 15px; letter-spacing: 0.16em; color: var(--mauve); }

.curriculum-list { max-width: 820px; margin: 52px auto 0; }
.curriculum-item { display: grid; grid-template-columns: 56px 1fr; gap: 24px; padding: 28px 0; border-bottom: 1px solid var(--line); }
.curriculum-item .num { font-family: var(--font-en); font-size: 22px; color: var(--champ-d); }
.curriculum-item h3 { font-family: var(--font-jp); font-weight: 700; font-size: 18px; color: var(--sumi); margin-bottom: 8px; }
.curriculum-item p { font-size: 14px; line-height: 2; color: var(--sumi-soft); }

.info-table { width: 100%; border-top: 1px solid var(--line); max-width: 840px; margin: 0 auto; }
.info-table tr { border-bottom: 1px solid var(--line); }
.info-table th, .info-table td { padding: 18px 8px; text-align: left; vertical-align: top; font-size: 14px; }
.info-table th { font-family: var(--font-en); font-size: 12px; letter-spacing: 0.12em; color: var(--mauve); width: 150px; text-transform: uppercase; font-weight: 400; }
.info-table td { color: var(--sumi-soft); }

.privacy-body { max-width: 800px; margin: 0 auto; }
.privacy-body h2 { font-family: var(--font-jp); font-weight: 700; font-size: 20px; color: var(--sumi); margin: 40px 0 16px; padding-bottom: 8px; border-bottom: 1px solid var(--line); }
.privacy-body h2:first-child { margin-top: 0; }
.privacy-body p { font-size: 14px; line-height: 2.1; color: var(--sumi-soft); margin-bottom: 14px; }
.privacy-body ul { margin: 10px 0 16px 20px; }
.privacy-body li { font-size: 14px; line-height: 2; color: var(--sumi-soft); margin-bottom: 6px; }

/* narrow container */
.container.narrow { max-width: 820px; }

/* legal / privacy (.legal-*) */
.legal-intro { font-size: 15px; line-height: 2.15; color: var(--sumi-soft); margin-bottom: 32px; padding-bottom: 28px; border-bottom: 1px solid var(--line); }
.legal-body h2 { font-family: var(--font-jp); font-weight: 700; font-size: 19px; color: var(--sumi); margin: 36px 0 14px; }
.legal-body p { font-size: 14px; line-height: 2.1; color: var(--sumi-soft); margin-bottom: 14px; }
.legal-body ul { margin: 10px 0 16px 20px; }
.legal-body li { font-size: 14px; line-height: 2; color: var(--sumi-soft); margin-bottom: 6px; }
.legal-body strong { color: var(--sumi); font-weight: 700; }
.legal-contact { background: var(--ivory-2); border: 1px solid var(--line); border-radius: 8px; padding: 22px 26px; margin: 20px 0; }
.legal-contact small { color: var(--smoke); font-size: 12px; }
.legal-date { margin-top: 32px; font-family: var(--font-en); font-size: 13px; letter-spacing: 0.08em; color: var(--smoke); }

/* profile additions */
.profile-cap { position: absolute; left: 0; bottom: 0; background: var(--sumi); padding: 8px 16px; }
.profile-cap .en { font-family: var(--font-en); font-size: 11px; letter-spacing: 0.16em; color: #E0CBA6; }
.profile-name { font-family: var(--font-jp); font-weight: 700; font-size: clamp(24px,3vw,34px); color: var(--sumi); letter-spacing: 0.04em; margin-bottom: 22px; }
.profile-name small { display: block; font-family: var(--font-en); font-size: 13px; letter-spacing: 0.12em; color: var(--mauve); margin-top: 8px; }
.profile-lead { font-family: var(--font-jp); font-weight: 700; font-size: clamp(18px,2.2vw,24px); line-height: 1.8; color: var(--mauve-d); margin-bottom: 24px; padding-left: 18px; border-left: 2px solid var(--champ); }
.profile-body strong { color: var(--sumi); font-weight: 700; }

/* timeline */
.timeline { list-style: none; max-width: 820px; margin: 52px auto 0; }
.timeline li { display: grid; grid-template-columns: 90px 1fr; gap: 28px; padding: 28px 0; border-bottom: 1px solid var(--line); }
.timeline .t-year { font-family: var(--font-en); font-size: 14px; letter-spacing: 0.1em; color: var(--champ-d); padding-top: 4px; }
.timeline .t-body h3 { font-family: var(--font-jp); font-weight: 700; font-size: 18px; color: var(--sumi); margin-bottom: 8px; }
.timeline .t-body p { font-size: 14px; line-height: 2; color: var(--sumi-soft); }

/* pull quote */
.pull-quote { text-align: center; max-width: 720px; margin: 0 auto; }
.pull-quote p { font-family: var(--font-jp); font-weight: 700; font-size: clamp(20px,2.6vw,30px); line-height: 1.8; color: var(--mauve-d); letter-spacing: 0.04em; }
.pull-quote cite { display: block; margin-top: 24px; font-family: var(--font-en); font-style: normal; font-size: 13px; letter-spacing: 0.12em; color: var(--smoke); }

/* contact (.contact-intro / channels / field) */
.contact-lead { font-family: var(--font-jp); font-weight: 700; font-size: clamp(22px,2.6vw,30px); line-height: 1.7; color: var(--sumi); letter-spacing: 0.04em; margin-bottom: 20px; }
.contact-intro > p { font-size: 14.5px; line-height: 2.1; color: var(--sumi-soft); margin-bottom: 28px; }
.contact-channels { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
.ch-card { background: var(--white); border: 1px solid var(--line); border-radius: 10px; padding: 24px 26px; }
.ch-head { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.ch-ico { flex-shrink: 0; width: 38px; height: 38px; border-radius: 50%; background: rgba(155,126,142,0.12); color: var(--mauve); display: flex; align-items: center; justify-content: center; font-family: var(--font-en); font-size: 17px; }
.ch-head h3 { font-family: var(--font-jp); font-weight: 700; font-size: 16px; color: var(--sumi); }
.ch-card p { font-size: 13.5px; line-height: 1.9; color: var(--sumi-soft); margin-bottom: 14px; }
.btn-line { display: inline-block; background: #06C755; color: #fff; font-family: var(--font-jp); font-weight: 700; font-size: 13.5px; padding: 11px 26px; border-radius: 28px; }
.btn-line small { font-weight: 400; font-size: 11px; opacity: .85; }
.ch-mail { font-family: var(--font-en); font-size: 16px; color: var(--mauve-d); letter-spacing: 0.04em; border-bottom: 1px solid var(--champ); padding-bottom: 2px; }
.contact-info { display: flex; flex-direction: column; gap: 14px; border-top: 1px solid var(--line); padding-top: 24px; margin-top: 0; }
.contact-info > div { display: grid; grid-template-columns: 130px 1fr; gap: 16px; align-items: baseline; }
.contact-info dt { font-family: var(--font-en); font-size: 12px; letter-spacing: 0.12em; color: var(--mauve); text-transform: uppercase; }
.contact-info dd { font-size: 14px; color: var(--sumi); }
.contact-info dd small { display: block; font-size: 11.5px; color: var(--smoke); margin-top: 2px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-family: var(--font-jp); font-weight: 700; font-size: 13px; color: var(--sumi); }
.field .req { font-size: 10px; color: #fff; background: var(--mauve); padding: 2px 8px; border-radius: 10px; margin-left: 6px; letter-spacing: 0.04em; }
.field input, .field select, .field textarea { font-family: var(--font-jp); font-size: 14px; color: var(--sumi); background: var(--white); border: 1px solid var(--line); border-radius: 6px; padding: 13px 16px; transition: border-color .25s ease; width: 100%; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--mauve); }
.field textarea { resize: vertical; }
.agree { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--sumi-soft); }
.agree a { color: var(--mauve-d); border-bottom: 1px solid var(--champ); }
.btn-submit { font-family: var(--font-jp); font-weight: 700; font-size: 15px; color: #fff; background: var(--mauve); border: none; border-radius: 30px; padding: 16px 48px; cursor: pointer; align-self: flex-start; transition: background .25s ease; }
.btn-submit:hover { background: var(--mauve-d); }

/* ─── NEWS（お知らせ）──────────────────────────────── */
.news-list { max-width: 840px; margin: 0 auto; border-top: 1px solid var(--line); }
.news-item { display: grid; grid-template-columns: 122px 92px 1fr; gap: 22px; align-items: center; padding: 22px 6px; border-bottom: 1px solid var(--line); transition: background .25s ease; color: var(--sumi); }
.news-item:hover { background: var(--ivory-2); }
.news-date { font-family: var(--font-en); font-size: 13px; letter-spacing: 0.06em; color: var(--smoke); }
.news-cat { justify-self: start; font-size: 11px; font-weight: 700; letter-spacing: 0.04em; color: var(--mauve-d); background: rgba(155,126,142,0.12); padding: 4px 13px; border-radius: 20px; white-space: nowrap; }
.news-title { font-size: 14.5px; line-height: 1.7; color: var(--sumi-soft); transition: color .25s ease; }
.news-item:hover .news-title { color: var(--mauve-d); }
.news-more { text-align: center; margin-top: 44px; }
.article-meta { display: inline-flex; align-items: center; gap: 14px; margin-top: 18px; }
.article-back { text-align: center; margin-top: 52px; }
.article-back a { font-family: var(--font-jp); font-weight: 700; font-size: 13px; color: var(--mauve-d); border-bottom: 1px solid var(--champ); padding-bottom: 3px; }

/* voice page full grid */
.voice-page-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }

/* contact */
.contact-wrap { display: grid; grid-template-columns: 1fr 1.4fr; gap: clamp(40px,6vw,80px); }
.contact-info p { font-size: 14px; line-height: 2; color: var(--sumi-soft); margin-bottom: 18px; }
.contact-info .line-block { background: var(--ivory-2); border: 1px solid var(--line); border-radius: 8px; padding: 24px; text-align: center; margin-top: 24px; }
.contact-info .line-block .line-btn { display: inline-block; background: #06C755; color: #fff; font-family: var(--font-jp); font-weight: 700; font-size: 14px; padding: 12px 32px; border-radius: 30px; margin-top: 8px; }
.contact-info dl { display: flex; flex-direction: column; gap: 16px; margin-top: 24px; }
.contact-info dt { font-family: var(--font-en); font-size: 12px; letter-spacing: 0.12em; color: var(--mauve); text-transform: uppercase; margin-bottom: 4px; }
.contact-info dd { font-size: 14px; color: var(--sumi); }
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field label { font-family: var(--font-jp); font-weight: 700; font-size: 13px; color: var(--sumi); }
.form-field label .req { color: var(--mauve); margin-left: 4px; }
.form-field input, .form-field select, .form-field textarea {
  font-family: var(--font-jp); font-size: 14px; color: var(--sumi); background: var(--white);
  border: 1px solid var(--line); border-radius: 6px; padding: 13px 16px; transition: border-color .25s ease;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { outline: none; border-color: var(--mauve); }
.form-field textarea { min-height: 150px; resize: vertical; }
.form-submit { font-family: var(--font-jp); font-weight: 700; font-size: 15px; color: #fff; background: var(--mauve); border: none; border-radius: 30px; padding: 16px 48px; cursor: pointer; align-self: flex-start; margin-top: 8px; transition: background .25s ease; }
.form-submit:hover { background: var(--mauve-d); }
.form-note { font-size: 12px; color: var(--smoke); }

/* ─── MOBILE ──────────────────────────────────────────── */
@media (max-width: 880px) {
  .header-nav { position: fixed; inset: 0; background: var(--ivory); z-index: 1000; flex-direction: column; align-items: flex-start; justify-content: center; gap: 24px; padding: 80px 36px; clip-path: inset(0 0 100% 0); transition: clip-path .5s cubic-bezier(.2,.7,.2,1); }
  .header-nav.is-open { clip-path: inset(0 0 0 0); }
  .header-nav a { font-size: 21px; opacity: 0; transform: translateY(10px); transition: opacity .4s ease, transform .4s ease; }
  .header-nav.is-open a { opacity: 1; transform: translateY(0); transition-delay: calc(var(--i,0) * 0.06s + 0.15s); }
  .header-nav .mobile-nav-close { display: block; position: absolute; top: 56px; right: 28px; background: none; border: none; cursor: pointer; font-family: var(--font-jp); font-weight: 700; font-size: 14px; color: var(--sumi-soft); padding: 8px; }
  .header-nav .mobile-nav-home { display: block; color: var(--mauve-d) !important; }
  .header-cta { padding: 13px 26px; font-size: 15px !important; }
  .hamburger { display: block; }
  .site-header.menu-active { background: var(--ivory) !important; backdrop-filter: none !important; -webkit-backdrop-filter: none !important; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  :root { --gap: 80px; }
  .hero h1 { font-size: clamp(28px,7vw,42px); }
  .hero-lead { font-size: 15px; }

  /* 1カラム原則 */
  .concept-grid, .compare-wrap, .profile-wrap, .contact-wrap { grid-template-columns: 1fr !important; gap: 32px; }
  .feature-grid, .voice-grid, .voice-page-grid { grid-template-columns: 1fr; }
  .worry-grid { grid-template-columns: 1fr; }
  .step-grid { grid-template-columns: 1fr 1fr; }
  .menu-row { grid-template-columns: 1fr; gap: 12px; text-align: left; }
  .menu-row .menu-price { text-align: left; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; gap: 14px; text-align: center; }

  .info-table th, .info-table td { display: block; width: 100%; padding: 6px 0; }
  .info-table th { padding-top: 14px; }

  /* contact スマホ強制1カラム */
  .form-row, [class*="form-row"] { display: block !important; grid-template-columns: 1fr !important; }
  .contact-form input, .contact-form select, .contact-form textarea, .form-row > .form-field, .form-row > div { width: 100% !important; max-width: 100% !important; box-sizing: border-box; }
  .form-row .form-field { margin-bottom: 18px; }

  .curriculum-item { grid-template-columns: 40px 1fr; gap: 16px; }

  .timeline li { grid-template-columns: 60px 1fr; gap: 16px; }
  .contact-info > div { grid-template-columns: 1fr; gap: 4px; }
  .section-head.left { text-align: left; }

  .news-item { grid-template-columns: auto 1fr; gap: 6px 14px; padding: 18px 4px; }
  .news-date { grid-column: 1; }
  .news-cat { grid-column: 2; }
  .news-title { grid-column: 1 / -1; }
}

@media (max-width: 480px) {
  .step-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}
