@charset "utf-8";
/* ATHENA CLUB 共通スタイル。トークンはここだけで定義する。
   書体は日本語ゴシック1種、太さは400と700のみ。セリフ体は使わない。 */

:root {
  color-scheme: light;

  --paper: #FFFFFF;
  --band: #F6F4EF;
  --ink: #1A1916;
  --muted: #5A564E;
  --gold: #C5A258;
  --gold-deep: #806326;
  --line: #E6E2D9;
  --line-strong: #79746B;
  --dark: #0D0D0D;
  --on-dark: #E8E2D8;
  --on-dark-muted: #B8B0A3;
  --focus: #205E9B;

  --sans: "Hiragino Kaku Gothic ProN", "Yu Gothic Medium", YuGothic, "Noto Sans JP", sans-serif;

  --text: 19px;
  --text-small: 15px;
  --text-label: 12px;
  --heading: 24px;

  --wrap: 1200px;
  --gutter: 32px;
  --prose: 570px;
  --header-h: 78px;

  --space-1: 8px;
  --space-2: 12px;
  --space-3: 16px;
  --space-4: 24px;
  --space-5: 32px;
  --space-6: 48px;
  --space-7: 64px;
  --space-8: 88px;

  --radius: 2px;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body, h1, h2, h3, p, ul, ol, li, dl, dt, dd, figure, blockquote, table { margin: 0; padding: 0; }
ul, ol { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
table { border-collapse: collapse; width: 100%; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  font-size: var(--text);
  line-height: 1.9;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }
a:hover { text-decoration-thickness: 2px; }

:focus-visible { outline: 2px solid var(--focus); outline-offset: 2px; }

h1, h2 { font-size: var(--heading); font-weight: 700; line-height: 1.75; letter-spacing: 0.02em; }
h3 { font-size: var(--text); font-weight: 700; line-height: 1.75; }

/* ---------- layout ---------- */
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: var(--space-8) 0; }
.band { background: var(--band); }
.prose { max-width: var(--prose); }
.prose p + p { margin-top: var(--space-4); }

.visually-hidden {
  position: absolute; width: 1px; height: 1px; margin: -1px;
  padding: 0; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: var(--gutter); top: -100px; z-index: 20;
  background: var(--ink); color: var(--paper); padding: var(--space-2) var(--space-4);
  font-size: var(--text-small); font-weight: 700; text-decoration: none;
}
.skip-link:focus { top: var(--space-2); }

/* ---------- eyebrow ---------- */
.eyebrow {
  display: flex; align-items: center; gap: 14px;
  color: var(--gold-deep);
  font-size: var(--text-label); font-weight: 700; letter-spacing: 0.14em;
  line-height: 1.6;
}
.eyebrow::before { content: ""; width: 40px; height: 1px; background: var(--gold); flex: none; }
.section-head { margin-bottom: var(--space-6); }
.section-head h2 { margin-top: var(--space-3); }
.section-head p { margin-top: var(--space-3); color: var(--muted); max-width: var(--prose); }

/* ---------- buttons ---------- */
.button {
  display: inline-block;
  background: var(--ink); color: var(--paper);
  border: 1px solid transparent;
  font-size: var(--text-small); font-weight: 700; line-height: 1.6;
  padding: 14px 24px; border-radius: var(--radius); text-decoration: none;
  white-space: nowrap;
}
.button:hover { background: #33302A; }
.button--light { background: var(--paper); color: var(--ink); }
.button--light:hover { background: var(--band); }
/* 副次の導線。塗りのボタンは主CTAに取っておく */
.button--outline { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.button--outline:hover { background: var(--paper); }

.text-link { font-weight: 700; text-underline-offset: 4px; }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 10;
  background: var(--paper); border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; gap: 36px; height: var(--header-h); }
.wordmark {
  font-size: 20px; font-weight: 700; letter-spacing: 0.10em;
  white-space: nowrap; text-decoration: none;
}
.site-menu { margin-left: auto; }
.site-menu ul { display: flex; gap: 26px; white-space: nowrap; }
.site-menu a { font-size: var(--text-small); text-decoration: none; }
.site-menu a:hover { text-decoration: underline; text-underline-offset: 4px; }
.nav-cta { flex: none; }
/* メニュー内のCTAはハンバーガー表示時だけ使う */
.site-menu .nav-cta { display: none; }
.menu-toggle {
  display: none; width: 44px; height: 44px; margin-left: auto;
  align-items: center; justify-content: center;
}
.menu-toggle span { display: block; width: 22px; height: 1px; background: var(--ink); position: relative; }
.menu-toggle span::before,
.menu-toggle span::after { content: ""; position: absolute; left: 0; width: 22px; height: 1px; background: var(--ink); }
.menu-toggle span::before { top: -7px; }
.menu-toggle span::after { top: 7px; }
.menu-toggle[aria-expanded="true"] span { background: transparent; }
.menu-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 620px;
  display: flex; align-items: center;
  background-image: url(../hero.webp);
  background-size: cover;
  background-position: 50% 56%;
  background-repeat: no-repeat;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(13, 13, 13, 0.86) 0%, rgba(13, 13, 13, 0.74) 42%, rgba(13, 13, 13, 0.32) 100%);
}
.hero .wrap { position: relative; z-index: 1; padding-top: 72px; padding-bottom: 72px; }
.hero .eyebrow { color: var(--gold); }
.hero h1 { color: var(--paper); margin: 26px 0 20px; }
.hero-lead { color: var(--on-dark); max-width: var(--prose); margin-bottom: 38px; }

.hero--band { background: var(--band); padding: var(--space-8) 0; }
.hero--band h1 { margin: 26px 0 20px; }
.hero--band .hero-lead { color: var(--muted); }
.hero-meta { font-size: var(--text-small); color: var(--muted); margin-bottom: var(--space-5); }
.hero-meta strong { font-weight: 700; color: var(--ink); }
.hero-actions { display: flex; align-items: center; gap: var(--space-4); flex-wrap: wrap; }

/* ---------- notice ---------- */
.notice { background: var(--band); border-top: 1px solid var(--gold); border-bottom: 1px solid var(--gold); }
.notice .wrap { padding-top: var(--space-4); padding-bottom: var(--space-4); }
.notice-inner { display: flex; align-items: baseline; gap: var(--space-4); flex-wrap: wrap; }
.notice-title { font-weight: 700; }
.notice-summary { color: var(--muted); font-size: var(--text-small); }
.notice-link { margin-left: auto; font-weight: 700; font-size: var(--text-small); text-underline-offset: 4px; }
.notice-detail { width: 100%; font-size: var(--text-small); color: var(--muted); }
.notice-detail summary { cursor: pointer; font-weight: 700; color: var(--ink); }

/* ---------- next sessions ---------- */
.dates-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.dates-cell { border-left: 1px solid var(--line); padding: 4px 28px; }
.dates-cell:first-child { border-left: 0; padding-left: 0; }
.dates-city { font-size: var(--text-small); color: var(--muted); line-height: 1.6; }
.dates-day { font-size: var(--heading); font-weight: 700; line-height: 1.5; }
.dates-note { font-size: var(--text-small); color: var(--muted); line-height: 1.6; }
.dates-cell .button { margin-top: var(--space-3); }

/* ---------- 受講の進め方 ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-5); }
.step { border-top: 1px solid var(--line); padding-top: var(--space-3); }
.step-number {
  font-size: var(--text-label); font-weight: 700; letter-spacing: 0.14em; color: var(--gold-deep);
}
.step h3 { margin: var(--space-2) 0; }
.step p { font-size: var(--text-small); color: var(--muted); line-height: 1.8; }

/* ---------- cards ---------- */
.cards-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-5); }
.card { border-top: 1px solid var(--line); padding-top: var(--space-3); }
.card h3 { margin: var(--space-2) 0 var(--space-2); }
.card p { font-size: var(--text-small); color: var(--muted); line-height: 1.8; }

/* ---------- curriculum ---------- */
.curriculum-table caption { text-align: left; font-size: var(--text-small); color: var(--muted); padding-bottom: var(--space-3); }
.curriculum-table th, .curriculum-table td {
  border-bottom: 1px solid var(--line); padding: var(--space-3) var(--space-3) var(--space-3) 0;
  text-align: left; vertical-align: top; font-size: var(--text-small); line-height: 1.8;
}
.curriculum-table thead th { font-weight: 700; border-bottom: 1px solid var(--line-strong); white-space: nowrap; }
.curriculum-table .col-no { width: 72px; white-space: nowrap; }
.curriculum-table .col-date { width: 168px; white-space: nowrap; }
.curriculum-table tbody th { font-weight: 700; white-space: nowrap; }
.curriculum-table tr.is-past th, .curriculum-table tr.is-past td { color: var(--muted); }
.curriculum-table tr[aria-current] th::after {
  content: "次回"; display: inline-block; margin-left: var(--space-1);
  color: var(--gold-deep); font-size: var(--text-label); font-weight: 700; letter-spacing: 0.14em;
}
.calendar-note { font-size: var(--text-small); color: var(--muted); margin-bottom: var(--space-3); }
.table-note { font-size: var(--text-small); color: var(--muted); margin-top: var(--space-3); }

/* ---------- timeline (1日の流れ) ---------- */
.timeline { margin-top: var(--space-6); }
.timeline h3 { margin-bottom: var(--space-3); }
.timeline dl { display: grid; grid-template-columns: 96px 1fr; row-gap: var(--space-2); font-size: var(--text-small); line-height: 1.8; }
.timeline dt { font-weight: 700; }
.timeline dd { color: var(--muted); }

/* ---------- instructor ---------- */
.instructor-grid { display: grid; grid-template-columns: 300px 1fr; gap: var(--space-7); align-items: start; }
.instructor-name { font-size: var(--heading); font-weight: 700; line-height: 1.5; }
.instructor-role { font-size: var(--text-small); color: var(--muted); margin-bottom: var(--space-4); }
.instructor-copy p { max-width: var(--prose); }
.instructor-copy p + p { margin-top: var(--space-4); }
.timeline-list { border-top: 1px solid var(--gold); padding-top: var(--space-4); margin-top: var(--space-5); }
.timeline-list dl { display: grid; grid-template-columns: 96px 1fr; row-gap: var(--space-3); font-size: 17px; line-height: 1.8; }
.timeline-list dt { font-weight: 700; }
.timeline-list dd { color: var(--muted); }

/* ---------- pricing ---------- */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-5); }
.price-item { border-top: 1px solid var(--line); padding-top: var(--space-3); }
.price-label { font-size: var(--text-small); color: var(--muted); }
.price-value { font-size: var(--heading); font-weight: 700; line-height: 1.5; }
.price-note { font-size: var(--text-small); color: var(--muted); line-height: 1.8; }
.price-total { border-top: 1px solid var(--line-strong); margin-top: var(--space-5); padding-top: var(--space-4); }
.price-total .price-value { font-size: var(--heading); }
.price-anchor { font-size: var(--text-small); color: var(--muted); margin-bottom: var(--space-4); }

/* ---------- faq ---------- */
.faq-item { border-top: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-item summary { padding: var(--space-4) 0; font-weight: 700; cursor: pointer; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "＋"; float: right; color: var(--gold-deep); font-weight: 700; }
.faq-item[open] summary::after { content: "−"; }
.faq-item p { padding-bottom: var(--space-4); color: var(--muted); max-width: var(--prose); }

/* ---------- closing ---------- */
.closing { background: var(--dark); color: var(--on-dark); padding: var(--space-8) 0; }
.closing h2 { color: var(--paper); margin: 26px 0 20px; }
.closing .eyebrow { color: var(--gold); }
.closing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-7); }
.closing-secondary { border-top: 1px solid var(--gold); padding-top: var(--space-4); }
.closing-secondary h3 { color: var(--paper); }
.closing p { color: var(--on-dark-muted); max-width: var(--prose); }
.closing .button--light { margin-top: var(--space-4); }
.closing a:not(.button) { color: var(--on-dark); }
.share { margin-top: var(--space-6); display: flex; gap: var(--space-4); font-size: var(--text-small); flex-wrap: wrap; }
.share button { text-decoration: underline; text-underline-offset: 4px; }
.share button[data-copied] { text-decoration: none; color: var(--gold); }

/* ---------- footer ---------- */
.site-footer { border-top: 1px solid var(--line); padding: var(--space-7) 0 var(--space-6); }
.footer-top { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-6); }
.footer-brand .wordmark { display: inline-block; margin-bottom: var(--space-2); }
.footer-contact { font-size: var(--text-small); color: var(--muted); }
.footer-nav ul { display: flex; flex-wrap: wrap; gap: var(--space-4); font-size: var(--text-small); }
.footer-social { display: flex; gap: var(--space-2); margin-top: var(--space-3); }
.footer-social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; margin-left: -10px;
  color: var(--muted); border-radius: var(--radius);
}
.footer-social a:first-child { margin-left: -10px; }
.footer-social a:hover { color: var(--ink); }
.footer-social svg { display: block; }
.footer-bottom {
  display: flex; justify-content: space-between; gap: var(--space-4); flex-wrap: wrap;
  border-top: 1px solid var(--line); margin-top: var(--space-6); padding-top: var(--space-4);
  font-size: var(--text-small); color: var(--muted);
}
.footer-legal { display: flex; gap: var(--space-4); flex-wrap: wrap; }

/* ---------- dialog ---------- */
.form-dialog {
  border: 1px solid var(--line-strong); border-radius: var(--radius);
  padding: 0; max-width: 480px; width: calc(100% - 40px);
  color: var(--ink); background: var(--paper);
}
.form-dialog::backdrop { background: rgba(13, 13, 13, 0.45); }
.dialog-inner { padding: var(--space-5); }
.dialog-heading { display: flex; align-items: flex-start; gap: var(--space-4); margin-bottom: var(--space-4); }
.dialog-heading h2 { font-size: var(--heading); }
.dialog-close { width: 44px; height: 44px; margin-left: auto; flex: none; font-size: 20px; line-height: 1; }
.dialog-note { font-size: var(--text-small); color: var(--muted); margin-bottom: var(--space-4); }
.form-options li { border-top: 1px solid var(--line); }
.form-options li:last-child { border-bottom: 1px solid var(--line); }
.form-options a {
  display: flex; align-items: center; min-height: 56px;
  font-weight: 700; text-decoration: none;
}
.form-options a::after { content: "→"; margin-left: auto; color: var(--gold-deep); }
body.dialog-open, body.menu-open { overflow: hidden; }

/* ---------- misc ---------- */
.chapter-links { display: flex; gap: var(--space-4); flex-wrap: wrap; }
.schedule-card { border-top: 1px solid var(--gold); padding-top: var(--space-4); max-width: var(--prose); }
.schedule-card dl { display: grid; grid-template-columns: 96px 1fr; row-gap: var(--space-2); font-size: var(--text-small); line-height: 1.8; }
.schedule-card dt { font-weight: 700; }
.schedule-card dd { color: var(--muted); }
.tools-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-5); }
.inline-cta { margin-top: var(--space-6); }

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  :root { --header-h: 72px; --gutter: 24px; }
  .section { padding: var(--space-7) 0; }
  .menu-toggle { display: flex; }
  .site-menu {
    display: none; position: absolute; left: 0; right: 0; top: var(--header-h);
    background: var(--band); border-bottom: 1px solid var(--line); padding: var(--space-4) var(--gutter);
  }
  body.menu-open .site-menu { display: block; }
  .site-menu ul { display: block; white-space: normal; }
  .site-menu li { border-top: 1px solid var(--line); }
  .site-menu li:first-child { border-top: 0; }
  .site-menu a { display: flex; align-items: center; min-height: 48px; }
  .header-inner > .nav-cta { display: none; }
  .site-menu .nav-cta { display: block; margin-bottom: var(--space-4); }
  .hero { min-height: 560px; }
  .hero .wrap { padding-top: 56px; padding-bottom: 56px; }
  .dates-grid { grid-template-columns: 1fr; }
  .dates-cell { border-left: 0; border-top: 1px solid var(--line); padding: var(--space-3) 0; }
  .dates-cell:first-child { padding-left: 0; }
  .cards-4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .instructor-grid { grid-template-columns: 1fr; gap: var(--space-5); }
  .instructor-photo { max-width: 300px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .closing-grid { grid-template-columns: 1fr; gap: var(--space-5); }
  .footer-top { grid-template-columns: 1fr; }
  .tools-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  :root { --gutter: 20px; }
  .section { padding: var(--space-6) 0; }
  .hero { min-height: 520px; background-position: 62% 56%; }
  .hero .wrap { padding-top: 48px; padding-bottom: 48px; }
  .cards-4 { grid-template-columns: 1fr; }
  .timeline dl, .schedule-card dl, .timeline-list dl { grid-template-columns: 72px 1fr; }
  .notice-link { margin-left: 0; }
  .curriculum-table thead { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
  .curriculum-table tr { display: block; border-bottom: 1px solid var(--line); padding: var(--space-3) 0; }
  .curriculum-table th, .curriculum-table td { display: block; border: 0; padding: 0; }
  .curriculum-table .col-no, .curriculum-table .col-date { width: auto; }
  .curriculum-table td[data-session-date] { color: var(--muted); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}
