/* =========================================================
   Jokoa — style.css
   配色：ダリアピンク／ラベンダー／紫陽花ブルー／リーフグリーン
   ブレークポイント：900px（タブレット）／600px（スマホ）
   ========================================================= */

:root {
  --bg: #FFFBFA;
  --white: #FFFFFF;
  --text: #4A3A4E;
  --text-sub: #6E5A70;
  --line: #F3E3EA;

  --pink: #F2A7C3;
  --pink-l: #FCEAF1;
  --pink-d: #B83D74;   /* ボタン・リンク */
  --pink-dd: #8F2A58;  /* hover */
  --lav: #C3B1E1;
  --lav-l: #F2EDF9;
  --lav-d: #6B4A8E;
  --blue: #AFC8EC;
  --blue-l: #EBF2FB;
  --blue-d: #2E5A8F;
  --green: #A8CC8C;
  --green-l: #EEF6E8;
  --green-d: #4F7A3A;
  --yellow-l: #FFF6E3;
  --yellow-d: #8A6412;

  --font-head: 'Zen Maru Gothic', 'Hiragino Maru Gothic ProN', sans-serif;
  --font-body: 'Zen Kaku Gothic New', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;

  --container: 1120px;
  --gutter: 24px;
  --radius: 24px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.9;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--pink-d); text-decoration: none; }
a:hover { color: var(--pink-dd); }
h1, h2, h3 { font-family: var(--font-head); font-weight: 700; line-height: 1.5; margin: 0; }
p { margin: 0; }
strong { font-weight: 700; }

.container { width: 100%; max-width: calc(var(--container) + var(--gutter) * 2); margin: 0 auto; padding: 0 var(--gutter); }
.center { text-align: center; }
.sp-only { display: none; }

/* ---------- ボタン ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 48px; padding: 14px 32px;
  border-radius: 999px; font-weight: 700; line-height: 1.4;
  transition: background .2s, color .2s;
}
.btn-primary { background: var(--pink-d); color: var(--white); }
.btn-primary:hover { background: var(--pink-dd); color: var(--white); }
.btn-outline { background: var(--white); color: var(--pink-d); border: 2px solid var(--pink-d); }
.btn-outline:hover { background: var(--pink-l); }
.btn-lav { background: var(--white); color: var(--lav-d); border: 2px solid var(--lav); }
.btn-lav:hover { background: var(--lav-l); color: var(--lav-d); }
.text-link { font-weight: 700; border-bottom: 1px solid currentColor; padding-bottom: 2px; }

/* ---------- ヘッダー ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 251, 250, .96);
  border-bottom: 1px solid var(--line);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: 84px; }
.site-logo img { height: 52px; width: auto; }
.global-nav ul { display: flex; align-items: center; gap: 28px; list-style: none; margin: 0; padding: 0; font-size: 15px; font-weight: 500; }
.global-nav a { color: var(--text); }
.global-nav a:hover { color: var(--pink-d); }
.global-nav a[aria-current="page"] { color: var(--pink-d); font-weight: 700; border-bottom: 2px solid var(--pink); padding-bottom: 4px; }
.global-nav .btn { color: var(--white); padding: 10px 24px; min-height: 44px; }
.global-nav .btn[aria-current="page"] { border-bottom: 0; padding-bottom: 10px; background: var(--pink-dd); }
.nav-toggle { display: none; }

/* ---------- 花の装飾 ---------- */
.deco { position: absolute; pointer-events: none; user-select: none; }
.deco-corner-l { left: 0; top: 0; width: clamp(120px, 26vw, 340px); }
.deco-corner-r { right: 0; top: 0; width: clamp(120px, 26vw, 340px); transform: scaleX(-1); }
.deco-strip { left: 0; bottom: 0; width: 100%; height: clamp(80px, 12vw, 150px); object-fit: cover; object-position: left bottom; }
.flower-divider { display: block; width: 100%; height: clamp(80px, 12vw, 150px); object-fit: cover; object-position: right bottom; transform: scaleX(-1); }
.sprig { width: 72px; height: auto; margin: 0 auto 8px; }

/* ---------- セクション共通 ---------- */
.section { padding: 96px 0; }
.section-white { background: var(--white); }
.section-head { text-align: center; margin-bottom: 48px; }
.section-head h2 { font-size: 32px; }
.section-head p { margin-top: 12px; }
.grid { display: grid; gap: 32px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; }
.grid-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 16px; }
.placeholder {
  display: flex; align-items: center; justify-content: center; text-align: center;
  border: 2px dashed #D9C8D6; border-radius: 20px; background: #FAF3F6;
  color: var(--text-sub); font-size: 14px; line-height: 1.8; padding: 24px;
}
.tbd { color: var(--text-sub); }
.tags { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; margin: 0; padding: 0; }
.tags li { font-size: 13px; padding: 6px 14px; border-radius: 999px; background: var(--pink-l); line-height: 1.6; }

/* ---------- ページ見出し帯 ---------- */
.page-hero { position: relative; overflow: hidden; padding: 96px 0; text-align: center; }
.page-hero > .container { position: relative; }
.page-hero .en { display: block; font-size: 14px; font-weight: 700; letter-spacing: .12em; }
.page-hero h1 { font-size: 44px; margin-top: 8px; }
.page-hero p { margin-top: 16px; font-size: 17px; line-height: 2; }
.hero-pink { background: var(--pink-l); } .hero-pink .en { color: var(--pink-d); }
.hero-lav { background: var(--lav-l); } .hero-lav .en { color: var(--lav-d); }
.hero-blue { background: var(--blue-l); } .hero-blue .en { color: var(--blue-d); }

/* ---------- CTA ---------- */
.cta {
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
  padding: 64px 64px 160px; border-radius: 32px; background: var(--pink-l);
  margin: 96px auto;
}
.cta h2 { font-size: 30px; }
.cta p { margin-top: 12px; }
.cta .btn { flex-shrink: 0; position: relative; }
.cta > div { position: relative; }
.cta-blue { background: var(--blue-l); }
.cta-lav { background: var(--lav-l); }

/* ---------- フッター ---------- */
.site-footer { background: var(--text); color: var(--white); padding: 48px 0; }
.site-footer .container { display: flex; justify-content: space-between; align-items: flex-end; gap: 32px; }
.footer-name { font-family: var(--font-head); font-size: 26px; font-weight: 700; }
.footer-sub { font-size: 14px; margin-top: 6px; }
.footer-nav ul { display: flex; flex-wrap: wrap; gap: 12px 24px; list-style: none; margin: 0; padding: 0; font-size: 14px; }
.footer-nav a { color: var(--white); }
.footer-nav a:hover { color: var(--pink); }
.copyright { font-size: 12px; margin-top: 16px; opacity: .8; }

/* =========================================================
   ホーム
   ========================================================= */
.home-hero { position: relative; overflow: hidden; padding: 72px 0 170px; }
.home-hero .container { position: relative; display: grid; grid-template-columns: 1fr 440px; align-items: center; gap: 48px; }
.home-hero .blob { position: absolute; border-radius: 50%; }
.home-hero .blob-1 { right: 2%; top: 20px; width: 500px; height: 500px; background: var(--pink-l); }
.home-hero .blob-2 { right: 36%; top: 380px; width: 200px; height: 200px; background: var(--lav-l); }
.hero-tag { font-size: 15px; font-weight: 700; letter-spacing: .1em; }
.hero-tag .c1 { color: var(--pink-d); } .hero-tag .c2 { color: #6B58A8; } .hero-tag .c3 { color: #3F6FA8; } .hero-tag .dot { color: var(--lav); }
.home-hero h1 { font-size: 56px; line-height: 1.4; margin-top: 20px; margin-left: -0.5em; } /* 「の前の空きを詰めて左端を揃える */
.home-hero .lead { font-size: 20px; margin-top: 20px; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 36px; }
.hero-logo { width: 100%; max-width: 440px; border-radius: 50%; justify-self: center; }

.intro { text-align: center; }
.intro .catch { font-family: var(--font-head); font-size: 30px; font-weight: 700; color: var(--pink-d); }
.intro .body { max-width: 760px; margin: 28px auto 0; font-size: 17px; line-height: 2.1; }
.intro .yourself { font-family: var(--font-head); font-size: 20px; margin-top: 28px; }
.intro .text-link { display: inline-block; margin-top: 28px; }

.menu-card { display: flex; flex-direction: column; gap: 16px; padding: 40px 32px; border-radius: var(--radius); color: var(--text); transition: transform .2s; }
.menu-card:hover { transform: translateY(-4px); color: var(--text); }
.menu-card .title { font-family: var(--font-head); font-size: 24px; font-weight: 700; }
.menu-card .desc { font-size: 15px; }
.menu-card .more { font-weight: 700; margin-top: auto; }
.card-blue { background: var(--blue-l); } .card-blue .more { color: var(--blue-d); }
.card-lav { background: var(--lav-l); } .card-lav .more { color: var(--lav-d); }
.card-pink { background: var(--pink-l); } .card-pink .more { color: var(--pink-d); }

.target-card { display: flex; flex-direction: column; gap: 10px; padding: 28px 24px; border-radius: 20px; border: 1px solid; color: var(--text); background: var(--white); }
.target-card:hover { color: var(--text); background: var(--bg); }
.target-card .label { font-size: 13px; font-weight: 700; }
.target-card .name { font-family: var(--font-head); font-size: 18px; font-weight: 700; line-height: 1.6; }
.t-blue { border-color: #DCE7F6; } .t-blue .label { color: var(--blue-d); }
.t-green { border-color: #DDEBD3; } .t-green .label { color: var(--green-d); }
.t-pink { border-color: #F6D6E3; } .t-pink .label { color: var(--pink-d); }
.t-lav { border-color: #E4DAF2; } .t-lav .label { color: var(--lav-d); }

.profile { position: relative; display: grid; grid-template-columns: 380px 1fr; gap: 72px; align-items: center; }
.profile-photo { position: relative; }
.profile-photo .deco-a { left: -70px; top: -60px; width: 280px; }
.profile-photo .deco-b { right: -60px; bottom: -50px; width: 200px; transform: scale(-1, -1); }
.profile-photo img.photo { position: relative; width: 100%; aspect-ratio: 380 / 420; object-fit: cover; border-radius: 200px 200px 24px 24px; }
.profile-text .eyebrow { font-size: 14px; font-weight: 700; color: var(--pink-d); letter-spacing: .1em; }
.profile-text .role { margin-top: 12px; }
.profile-text h2 { font-size: 36px; margin-top: 4px; }
.profile-text h2 small { font-size: 18px; font-weight: 500; }
.profile-text .quals { margin-top: 16px; }
.profile-text .motto { font-family: var(--font-head); font-size: 17px; color: var(--text-sub); margin-top: 16px; }
.profile-text .btn { margin-top: 24px; }

.note-head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; margin-bottom: 40px; }
.note-head h2 { font-size: 32px; }
.note-card { display: flex; flex-direction: column; gap: 12px; color: var(--text); }
.note-card .thumb { height: 200px; }
.note-card .date { font-size: 13px; color: var(--text-sub); }
.note-card .title { font-size: 17px; font-weight: 700; line-height: 1.6; }

/* =========================================================
   講演・セミナー
   ========================================================= */
.lecture-hero { position: relative; overflow: hidden; background: var(--blue-l); padding: 72px 0; }
.lecture-hero .container { position: relative; display: grid; grid-template-columns: 1fr 520px; gap: 64px; align-items: center; }
.lecture-hero .en { font-size: 14px; font-weight: 700; letter-spacing: .12em; color: var(--blue-d); }
.lecture-hero h1 { font-size: 44px; margin-top: 8px; }
.lecture-hero .formula { font-family: var(--font-head); font-size: 22px; font-weight: 700; margin-top: 12px; }
.lecture-hero p { margin-top: 12px; line-height: 2; }
.lecture-hero .photo { position: relative; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 28px; }

.steps { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 40px; list-style: none; padding: 0; }
.steps li { width: 190px; aspect-ratio: 1; border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px; }
.steps .num { font-size: 13px; font-weight: 700; }
.steps .word { font-family: var(--font-head); font-size: 26px; font-weight: 700; }
.steps .arrow { width: auto; aspect-ratio: auto; color: var(--lav); font-size: 24px; }
.s1 { background: var(--blue-l); } .s1 .num { color: var(--blue-d); }
.s2 { background: var(--green-l); } .s2 .num { color: var(--green-d); }
.s3 { background: var(--lav-l); } .s3 .num { color: var(--lav-d); }
.s4 { background: var(--pink-l); } .s4 .num { color: var(--pink-d); }

.anchor-nav { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 8px; padding: 16px 20px; background: var(--white); border: 1px solid #EFE4EC; border-radius: 999px; text-align: center; font-weight: 700; font-size: 15px; }
.anchor-nav a { padding: 6px 4px; border-radius: 999px; }
.anchor-nav a:hover { background: var(--bg); }

.menu-block { display: grid; grid-template-columns: 400px 1fr; gap: 56px; align-items: start; padding-top: 72px; scroll-margin-top: 90px; }
.menu-block .media { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius); }
.menu-block .label { font-size: 14px; font-weight: 700; }
.menu-block h3 { font-size: 28px; margin-top: 8px; }
.menu-block .sub { font-size: 15px; color: var(--text-sub); margin-top: 6px; }
.menu-block .text { margin-top: 16px; line-height: 1.95; }
.menu-block .tags { margin-top: 16px; }
.menu-block .badges { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 16px; }
.menu-block .badges span { font-size: 14px; font-weight: 700; padding: 8px 16px; border-radius: 12px; background: var(--lav-l); }
.menu-block .target { font-size: 14px; color: var(--text-sub); margin-top: 16px; }
.m-blue .label { color: var(--blue-d); } .m-blue .tags li { background: var(--blue-l); } .m-blue .placeholder { border-color: #BFD2EC; background: #F4F8FD; }
.m-green .label { color: var(--green-d); } .m-green .tags li { background: var(--green-l); } .m-green .placeholder { border-color: #CFE2C2; background: #F6FAF2; }
.m-pink .label { color: var(--pink-d); } .m-pink .tags li { background: var(--pink-l); }
.m-lav .label { color: var(--lav-d); } .m-lav .tags li { background: var(--lav-l); }

.reason { padding: 32px 28px; border-radius: var(--radius); display: flex; flex-direction: column; gap: 12px; }
.reason .num { font-size: 14px; font-weight: 700; }
.reason h3 { font-size: 20px; }
.reason p { font-size: 15px; }
.r-pink { background: var(--pink-l); } .r-pink .num { color: var(--pink-d); }
.r-green { background: var(--green-l); } .r-green .num { color: var(--green-d); }
.r-lav { background: var(--lav-l); } .r-lav .num { color: var(--lav-d); }
.r-blue { background: var(--blue-l); } .r-blue .num { color: var(--blue-d); }
.r-yellow { background: var(--yellow-l); } .r-yellow .num { color: var(--yellow-d); }

.stat { padding: 32px; border-radius: 20px; background: var(--white); border: 1px solid #EFE4EC; text-align: center; }
.stat .big { display: block; font-family: var(--font-head); font-size: 40px; font-weight: 700; color: var(--pink-d); line-height: 1.4; }

.flow { list-style: none; padding: 0; margin: 0; display: grid; gap: 32px; }
.flow-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.flow-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.flow li { position: relative; padding: 28px 20px; border-radius: 20px; background: var(--bg); border: 1px solid var(--line); display: flex; flex-direction: column; gap: 8px; }
.flow li:not(:last-child)::after {
  content: "▶"; position: absolute; right: -25px; top: 50%; transform: translateY(-50%);
  font-size: 16px; color: #E98AB2; line-height: 1;
}
.flow .num { font-size: 13px; font-weight: 700; color: var(--pink-d); }
.flow .ttl { font-size: 18px; font-weight: 700; }
.flow .txt { font-size: 14px; line-height: 1.85; }
.flow-lav li { border-color: #E4DAF2; }
.flow-lav li:not(:last-child)::after { color: #A993D4; }
.flow-lav .num { color: var(--lav-d); }

/* =========================================================
   個人セッション
   ========================================================= */
.session-card { padding: 48px 40px; border-radius: 28px; background: var(--white); border: 1px solid; display: flex; flex-direction: column; gap: 18px; }
.session-card .type { font-size: 14px; font-weight: 700; }
.session-card h2 { font-size: 30px; }
.session-card .sub { font-size: 15px; color: var(--text-sub); margin-top: -10px; }
.session-card .placeholder { height: 220px; }
.session-card .info { display: grid; gap: 10px; padding: 20px 24px; border-radius: 16px; font-size: 15px; margin: 0; }
.session-card .info div { display: flex; justify-content: space-between; gap: 16px; }
.session-card .info dt { font-weight: 700; }
.session-card .info dd { margin: 0; }
.session-card .btn { align-self: flex-start; margin-top: auto; }
.sc-lav { border-color: #E4DAF2; } .sc-lav .type { color: var(--lav-d); } .sc-lav .info { background: var(--lav-l); }
.sc-pink { border-color: #F6D6E3; } .sc-pink .type { color: var(--pink-d); } .sc-pink .info { background: var(--pink-l); }

/* =========================================================
   Jokoaとは
   ========================================================= */
.greeting { display: grid; grid-template-columns: 380px 1fr; gap: 72px; align-items: start; }
.greeting .side { display: flex; flex-direction: column; gap: 24px; align-items: center; }
.greeting .side .logo { width: 220px; border-radius: 50%; }
.greeting .body { display: flex; flex-direction: column; gap: 22px; line-height: 2.05; }
.greeting .body h2 { font-size: 30px; }
.greeting .answer { font-family: var(--font-head); font-size: 20px; font-weight: 700; color: var(--pink-d); }
.greeting .motto { font-family: var(--font-head); font-size: 18px; line-height: 1.9; }
.greeting .sign { text-align: right; font-weight: 700; }
.name-origin { padding: 48px 56px; background: var(--green-l); border-radius: 28px; }
.name-origin h2 { font-size: 24px; }
.name-origin p { margin-top: 12px; line-height: 2; }
.policy-img { width: 100%; max-width: 640px; margin: 0 auto 48px; border-radius: 24px; }
.policy-item { padding: 28px 20px; border-radius: 20px; display: flex; flex-direction: column; gap: 10px; }
.policy-item .kana { font-family: var(--font-head); font-size: 36px; font-weight: 700; line-height: 1.2; }
.policy-item h3 { font-size: 17px; font-family: var(--font-body); }
.policy-item p { font-size: 14px; line-height: 1.85; }
.policy-summary { font-family: var(--font-head); font-size: 22px; font-weight: 700; text-align: center; margin-top: 40px; }
.p-a { background: var(--pink-l); } .p-a .kana { color: var(--pink-d); }
.p-i { background: var(--blue-l); } .p-i .kana { color: var(--blue-d); }
.p-u { background: var(--green-l); } .p-u .kana { color: var(--green-d); }
.p-e { background: var(--yellow-l); } .p-e .kana { color: var(--yellow-d); }
.p-o { background: var(--lav-l); } .p-o .kana { color: var(--lav-d); }
.profile-summary { text-align: center; }
.profile-summary .name { display: block; font-family: var(--font-head); font-size: 30px; font-weight: 700; margin: 6px 0; }
.long-profile { min-height: 280px; margin-top: 32px; }
.gallery { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.gallery img, .gallery .placeholder { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 20px; }

/* =========================================================
   お問い合わせ・フォーム
   ========================================================= */
.form-wrap { max-width: 760px; margin: 0 auto; padding: 56px; background: var(--white); border: 1px solid var(--line); border-radius: 28px; }
.form { display: flex; flex-direction: column; gap: 28px; }
.form fieldset { margin: 0; padding: 0; border: 0; }
.form legend, .form .field > span { font-weight: 700; font-size: 15px; }
.form legend { margin-bottom: 12px; }
.req { font-size: 12px; color: var(--white); background: var(--pink-d); padding: 2px 8px; border-radius: 6px; margin-left: 6px; font-weight: 500; }
.opt { font-size: 12px; color: var(--text-sub); margin-left: 6px; font-weight: 500; }
.kind-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.kind-grid label { display: flex; align-items: center; gap: 10px; padding: 14px 18px; border: 1px solid #E6D6E0; border-radius: 14px; font-size: 15px; cursor: pointer; min-height: 52px; }
.kind-grid label:has(input:checked) { border: 2px solid var(--pink-d); background: var(--pink-l); }
.kind-grid input { accent-color: var(--pink-d); width: 18px; height: 18px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field input, .field textarea {
  width: 100%; border: 1px solid #D9C8D6; border-radius: 12px; padding: 12px 14px;
  font-size: 16px; font-family: inherit; color: var(--text); background: var(--white);
}
.field input { min-height: 48px; }
.field input:focus, .field textarea:focus { outline: 2px solid var(--pink); outline-offset: 1px; border-color: var(--pink-d); }
.row-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.lecture-fields { padding: 28px; border-radius: 20px; background: #F4F8FD; display: flex; flex-direction: column; gap: 20px; }
.lecture-fields .note { font-size: 14px; font-weight: 700; color: var(--blue-d); }
.lecture-fields[hidden] { display: none; }
.agree { display: flex; align-items: center; gap: 10px; font-size: 15px; }
.agree input { width: 18px; height: 18px; accent-color: var(--pink-d); }
.form .btn { align-self: center; border: 0; font-family: inherit; font-size: 17px; padding: 18px 64px; cursor: pointer; }
.form-note { font-size: 13px; color: var(--text-sub); text-align: center; }
.honeypot { position: absolute; left: -9999px; }

/* プライバシーポリシー */
.policy-doc { max-width: 860px; margin: 0 auto; padding: 56px; background: var(--white); border: 1px solid var(--line); border-radius: 28px; }
.policy-doc h2 { font-size: 20px; margin-top: 32px; }
.policy-doc p { margin-top: 8px; }

/* =========================================================
   タブレット（〜900px）
   ========================================================= */
@media (max-width: 900px) {
  .section { padding: 72px 0; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid-5 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  /* ハンバーガーメニュー */
  .nav-toggle {
    display: flex; align-items: center; justify-content: center;
    width: 48px; height: 48px; border: 0; border-radius: 12px;
    background: var(--pink-l); color: var(--text); cursor: pointer;
  }
  .nav-toggle .close { display: none; }
  .nav-open .nav-toggle .open { display: none; }
  .nav-open .nav-toggle .close { display: block; }
  .global-nav {
    display: none; position: absolute; left: 0; right: 0; top: 100%;
    background: var(--bg); border-bottom: 1px solid var(--line);
    box-shadow: 0 12px 24px rgba(74, 58, 78, .08);
  }
  .nav-open .global-nav { display: block; }
  .global-nav ul { flex-direction: column; align-items: stretch; gap: 0; padding: 8px var(--gutter) 24px; font-size: 16px; }
  .global-nav li a { display: block; padding: 14px 4px; border-bottom: 1px solid var(--line); }
  .global-nav a[aria-current="page"] { border-bottom: 1px solid var(--line); padding-bottom: 14px; }
  .global-nav li:last-child a { margin-top: 20px; border-bottom: 0; text-align: center; }

  .home-hero .container { grid-template-columns: 1fr 320px; gap: 32px; }
  .home-hero h1 { font-size: 44px; }
  .home-hero .blob-1 { width: 380px; height: 380px; }

  .profile, .greeting { grid-template-columns: 300px 1fr; gap: 48px; }
  .lecture-hero .container { grid-template-columns: 1fr; }
  .lecture-hero .photo { max-width: 560px; }
  .menu-block { grid-template-columns: 1fr; gap: 24px; }
  .menu-block .media { max-width: 560px; }
  .steps { flex-wrap: wrap; }
  .steps li { width: 150px; }
  .steps .word { font-size: 22px; }
  .anchor-nav { grid-template-columns: repeat(2, minmax(0, 1fr)); border-radius: 24px; }
  .grid-2 { grid-template-columns: 1fr; }
  .cta { flex-direction: column; align-items: flex-start; padding: 48px 40px 150px; }
  .gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .site-footer .container { flex-direction: column; align-items: flex-start; }
}

/* =========================================================
   スマホ（〜600px）
   ========================================================= */
@media (max-width: 600px) {
  :root { --gutter: 16px; }
  body { font-size: 15px; }
  .sp-only { display: inline; }
  .pc-only { display: none; }
  .section { padding: 56px 0; }
  .section-head { margin-bottom: 32px; }
  .section-head h2, .note-head h2 { font-size: 24px; }
  .grid { gap: 16px; }
  .grid-3, .grid-4, .grid-5 { grid-template-columns: 1fr; }
  .site-header .container { min-height: 68px; }
  .site-logo img { height: 40px; }

  .home-hero { padding: 32px 0 120px; }
  .home-hero .container { grid-template-columns: 1fr; text-align: center; gap: 24px; }
  .home-hero .hero-logo { order: -1; max-width: 260px; }
  .home-hero .blob-1 { right: 50%; margin-right: -160px; width: 320px; height: 320px; top: 10px; }
  .home-hero .blob-2 { display: none; }
  .home-hero h1 { font-size: 32px; margin-top: 12px; margin-left: 0; }
  .home-hero .lead { font-size: 16px; margin-top: 12px; }
  .hero-buttons { flex-direction: column; margin-top: 24px; }
  .hero-buttons .btn { width: 100%; }

  .intro .catch { font-size: 22px; }
  .intro .body { font-size: 15px; text-align: left; }
  .intro .yourself { font-size: 17px; }
  .menu-card { padding: 28px 24px; }
  .menu-card .title { font-size: 20px; }

  .profile, .greeting { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .profile-photo, .greeting .side { max-width: 260px; margin: 0 auto; }
  .profile-photo .deco-a { left: -40px; top: -40px; width: 180px; }
  .profile-photo .deco-b { right: -40px; bottom: -30px; width: 140px; }
  .profile-text h2 { font-size: 26px; }
  .profile-text .btn { width: 100%; }
  .greeting .body { text-align: left; }
  .greeting .body h2 { font-size: 22px; text-align: center; }
  .greeting .side .logo { display: none; }

  .note-head { flex-direction: column; margin-bottom: 24px; }
  .note-card { flex-direction: row; align-items: center; }
  .note-card .thumb { width: 96px; height: 72px; flex-shrink: 0; padding: 4px; font-size: 10px; }

  .page-hero { padding: 64px 0; }
  .page-hero h1, .lecture-hero h1 { font-size: 30px; }
  .page-hero p { font-size: 15px; text-align: left; }
  .lecture-hero { padding: 48px 0; }
  .lecture-hero .formula { font-size: 18px; }

  .steps { gap: 8px; }
  .steps li { width: calc(50% - 8px); }
  .steps .arrow { display: none; }
  .anchor-nav { font-size: 13px; padding: 12px; }
  .menu-block { padding-top: 56px; }
  .menu-block h3 { font-size: 22px; }

  .session-card { padding: 32px 20px; }
  .session-card h2 { font-size: 24px; }
  .session-card .btn { width: 100%; }

  .cta { margin: 56px auto; padding: 36px 24px 120px; border-radius: 24px; }
  .cta h2 { font-size: 22px; }
  .cta .btn { width: 100%; }

  .name-origin { padding: 32px 24px; }
  .policy-summary { font-size: 18px; }
  .gallery { grid-template-columns: 1fr; }

  .form-wrap, .policy-doc { padding: 32px 20px; border-radius: 20px; }
  .kind-grid, .row-2 { grid-template-columns: 1fr; }
  .lecture-fields { padding: 20px 16px; }
  .form .btn { width: 100%; padding: 18px; }
}

/* =========================================================
   追加分（2026-09-26 最終版）
   ========================================================= */

/* ヘッダーのInstagram */
.nav-ig { display: flex; align-items: center; justify-content: center; width: 44px; height: 44px; }
.nav-ig img { width: 28px; height: 28px; }
.footer-ig { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; margin: -12px 0; }
.footer-ig img { width: 24px; height: 24px; }
.footer-nav ul { align-items: center; justify-content: flex-end; max-width: 860px; }

/* 写真の注記 */
.photo-fig { margin: 0; display: flex; flex-direction: column; gap: 6px; }
.photo-fig figcaption { font-size: 12px; color: var(--text-sub); text-align: right; }

/* 講師紹介の実績カード */
.mini-stats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; margin-top: 18px; }
.mini-stats div { padding: 14px 8px; border-radius: 16px; display: flex; flex-direction: column; align-items: center; text-align: center; font-size: 13px; line-height: 1.5; }
.mini-stats b { font-family: var(--font-head); font-size: 28px; line-height: 1.3; }
.mini-stats small { font-size: 15px; }
.mini-stats .s-pink { background: var(--pink-l); } .mini-stats .s-pink b { color: var(--pink-d); }
.mini-stats .s-lav { background: var(--lav-l); } .mini-stats .s-lav b { color: var(--lav-d); }
.mini-stats .s-blue { background: var(--blue-l); } .mini-stats .s-blue b { color: var(--blue-d); }
.as-of { display: block; text-align: right; font-size: 12px; color: var(--text-sub); margin-top: 6px; }

/* note 準備中 */
.soon { padding: 56px 40px; border-radius: 28px; background: var(--pink-l); text-align: center; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.soon .ttl { font-family: var(--font-head); font-size: 26px; font-weight: 700; color: var(--pink-d); }

/* 実績の数字（4つ） */
.stat small { font-size: 20px; }
.grid-4.stats { gap: 24px; }

/* 折りたたみ */
.acc { padding: 18px 26px; border-radius: 16px; background: var(--white); border: 1px solid #EFE4EC; }
.acc + .acc { margin-top: 12px; }
.acc summary { font-weight: 700; font-size: 17px; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 12px; min-height: 32px; }
.acc summary::-webkit-details-marker { display: none; }
.acc summary::after { content: "＋"; color: var(--pink-d); font-weight: 700; }
.acc[open] summary::after { content: "－"; }
.acc ul { margin: 14px 0 0; padding-left: 1.2em; display: flex; flex-direction: column; gap: 10px; font-size: 15px; line-height: 1.9; }
.acc .sub { font-size: 14px; color: var(--text-sub); }
.acc p { margin-top: 14px; font-size: 15px; line-height: 1.9; }
.acc dl { margin: 12px 0 0; display: grid; grid-template-columns: 80px 1fr; gap: 10px 16px; font-size: 15px; line-height: 1.9; }
.acc dt { font-weight: 700; }
.acc dd { margin: 0; }
.acc .etc { list-style: none; margin-left: -1.2em; color: var(--text-sub); }

/* 講演時間カード */
.time-card { position: relative; padding: 32px 28px; border-radius: 24px; background: var(--white); border: 1px solid #EFE4EC; display: flex; flex-direction: column; gap: 10px; }
.time-card .min { font-family: var(--font-head); font-size: 34px; font-weight: 700; line-height: 1.2; }
.time-card .min small { font-size: 18px; }
.time-card .style { font-weight: 700; font-size: 18px; }
.time-card .rec { font-size: 14px; color: var(--text-sub); }
.time-card.recommend { background: var(--pink-l); border: 2px solid var(--pink); }
.time-card .badge { position: absolute; top: -14px; right: 24px; background: var(--pink-d); color: var(--white); font-size: 13px; font-weight: 700; padding: 4px 14px; border-radius: 999px; }

/* 表（料金・比較・特商法） */
.panel { max-width: 900px; margin: 0 auto; padding: 40px 48px; background: var(--white); border: 1px solid #EFE4EC; border-radius: 28px; }
.panel h3 { font-size: 24px; margin-bottom: 16px; }
.data { width: 100%; border-collapse: collapse; font-size: 16px; line-height: 1.7; }
.data th, .data td { padding: 14px 10px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.data thead th { font-size: 14px; border-bottom: 2px solid #EFE4EC; }
.data tr:last-child th, .data tr:last-child td { border-bottom: 0; }
.data .r { text-align: right; }
.data .strong { font-weight: 700; }
.data .hl { background: var(--pink-l); }
.data .hl .price { color: var(--pink-d); font-size: 20px; }
.data .note { display: block; font-size: 13px; font-weight: 500; color: var(--text-sub); }
.data .hl .note { color: var(--pink-d); }
.notes { display: flex; flex-direction: column; gap: 4px; font-size: 13px; color: var(--text-sub); margin-top: 16px; }
.info-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; margin-top: 24px; }
.info-2 div { padding: 20px 24px; border-radius: 16px; font-size: 14px; line-height: 1.8; }
.info-2 b { display: block; font-size: 15px; margin-bottom: 4px; }

.compare th[scope="row"] { width: 150px; }
.compare .col-qtl { color: var(--lav-d); border-bottom-color: var(--lav); }
.compare .col-meguru { color: var(--pink-d); border-bottom-color: var(--pink); }
.compare .common { text-align: center; font-family: var(--font-head); font-size: 18px; font-weight: 700; color: var(--pink-d); }

.legal th { width: 240px; background: #FDF6F9; padding: 20px 28px; }
.legal td { padding: 20px 28px; }
.legal { border: 1px solid var(--line); border-radius: 24px; overflow: hidden; background: var(--white); font-size: 15px; line-height: 1.9; }

/* 個人セッション */
.question { text-align: center; font-family: var(--font-head); font-size: 22px; font-weight: 700; line-height: 1.9; }
.question .q1 { color: var(--lav-d); } .question .q2 { color: var(--pink-d); }
.session-card .voices { padding: 20px 24px; border-radius: 16px; font-size: 15px; line-height: 2; }
.sc-lav .voices { background: var(--lav-l); } .sc-pink .voices { background: var(--pink-l); }
.session-card .photo-fig img { width: 100%; aspect-ratio: 16 / 11; object-fit: cover; border-radius: 20px; }
.promise { padding: 32px; border-radius: 24px; background: var(--white); border: 1px solid #EFE4EC; display: flex; flex-direction: column; gap: 12px; }
.promise .num { font-family: var(--font-head); font-size: 28px; font-weight: 700; line-height: 1.2; }
.promise h3 { font-size: 18px; font-family: var(--font-body); }
.promise p { font-size: 15px; }
.otagaisama { max-width: 900px; margin: 24px auto 0; padding: 32px 40px; border-radius: 24px; background: var(--green-l); }
.otagaisama h3 { font-size: 20px; margin-bottom: 8px; }

/* Jokoaとは：ロングプロフィール */
.long-text { max-width: 760px; margin: 32px auto 0; display: flex; flex-direction: column; gap: 22px; line-height: 2.05; }
.long-text h3 { font-size: 22px; color: var(--pink-d); margin-top: 24px; }
.long-text .voices { padding: 24px 32px; border-radius: 20px; font-family: var(--font-head); line-height: 2.1; }
.long-text .v-pink { background: var(--pink-l); } .long-text .v-lav { background: var(--lav-l); }
.long-text .closing { font-family: var(--font-head); font-size: 18px; font-weight: 700; }
.qualification { max-width: 760px; margin: 32px auto 0; padding: 24px 36px; border-radius: 24px; background: var(--bg); border: 1px solid #EFE4EC; display: flex; align-items: center; gap: 32px; }
.qualification b { font-family: var(--font-head); color: var(--pink-d); font-size: 18px; }
.qualification span { font-size: 17px; font-weight: 700; }

/* フォーム：個人セッション欄 */
.session-fields { padding: 28px; border-radius: 20px; background: #F8F5FC; display: flex; flex-direction: column; gap: 20px; }
.session-fields[hidden] { display: none; }
.session-fields .note { font-size: 14px; font-weight: 700; color: var(--lav-d); }
.plan-grid, .date-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
.plan-grid label { display: flex; align-items: center; gap: 8px; padding: 12px 14px; border: 1px solid #DCCFEC; border-radius: 12px; background: var(--white); font-size: 14px; cursor: pointer; min-height: 48px; }
.plan-grid label:has(input:checked) { border: 2px solid var(--lav-d); }
.plan-grid input { accent-color: var(--lav-d); }
.field-help { font-size: 13px; color: var(--text-sub); font-weight: 500; }
.date-grid .field span { font-size: 13px; }
.date-grid input { min-height: 44px; font-size: 15px; }

@media (max-width: 900px) {
  .flow-4, .flow-5 { grid-template-columns: 1fr; gap: 32px; max-width: 560px; margin: 0 auto; }
  .flow li:not(:last-child)::after { content: "▼"; right: auto; left: 50%; top: auto; bottom: -26px; transform: translateX(-50%); }
  .grid-4.stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .panel { padding: 32px 28px; }
  .info-2 { grid-template-columns: 1fr; }
  .footer-nav ul { justify-content: flex-start; }
}

@media (max-width: 600px) {
  .nav-ig { width: auto; justify-content: flex-start; }
  .global-nav li a.nav-ig { display: flex; gap: 10px; }
  .mini-stats { gap: 8px; }
  .mini-stats b { font-size: 20px; }
  .mini-stats small { font-size: 12px; }
  .mini-stats div { font-size: 11px; padding: 12px 4px; }
  .soon { padding: 36px 20px; }
  .soon .ttl { font-size: 20px; }
  .grid-4.stats { gap: 12px; }
  .stat { padding: 20px 8px; font-size: 13px; }
  .stat .big { font-size: 28px; }
  .stat small { font-size: 14px; }
  .acc { padding: 16px 18px; }
  .acc summary { font-size: 15px; }
  .acc dl { grid-template-columns: 1fr; gap: 2px; }
  .acc dd { margin-bottom: 10px; }
  .panel { padding: 24px 16px; border-radius: 20px; }
  .panel h3 { font-size: 20px; }
  .data { font-size: 14px; }
  .data th, .data td { padding: 12px 6px; }
  .data .hl .price { font-size: 16px; }
  .question { font-size: 17px; }

  /* 表を縦積みにする */
  .stack thead { display: none; }
  .stack, .stack tbody, .stack tr, .stack th, .stack td { display: block; width: 100%; }
  .stack tr { padding: 12px 0; border-bottom: 1px solid var(--line); }
  .stack tr:last-child { border-bottom: 0; }
  .stack th, .stack td { border: 0; padding: 4px 4px; text-align: left; }
  .stack td[data-label]::before { content: attr(data-label); display: block; font-size: 12px; font-weight: 700; color: var(--text-sub); }
  .compare th[scope="row"] { width: auto; font-size: 15px; color: var(--text); }
  .compare .common { text-align: left; }
  .legal { border-radius: 16px; }
  .legal th { width: 100%; padding: 14px 16px 4px; background: transparent; color: var(--pink-d); }
  .legal td { padding: 0 16px 14px; }
  .legal tr { padding: 0; }

  .promise { padding: 24px 20px; }
  .otagaisama { padding: 24px 20px; }
  .long-text h3 { font-size: 19px; }
  .long-text .voices { padding: 18px 20px; }
  .qualification { flex-direction: column; gap: 6px; padding: 20px; text-align: center; }
  .session-fields { padding: 20px 16px; }
  .plan-grid, .date-grid { grid-template-columns: 1fr; }
}

.ig-label { display: none; }
@media (max-width: 900px) {
  .global-nav li a.nav-ig { display: flex; width: auto; height: auto; justify-content: flex-start; gap: 10px; }
  .ig-label { display: inline; }
}

/* ヒーロー下の花（切れない版） */
.deco-strip-float { left: 0; bottom: 0; width: 100%; height: auto; }
@media (max-width: 600px) {
  .deco-strip-float { height: 130px; object-fit: cover; object-position: 20% center; }
  .home-hero { padding-bottom: 150px; }
}
@media (max-width: 600px) {
  .data.stack .r { text-align: left; }
}
@media (max-width: 900px) {
  .home-hero .deco.pc-only { display: none; }
  .menu-block .photo-fig { max-width: 560px; }
  .home-hero .blob-2 { display: none; }
}

/* フォーム送信後 */
.form-done { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 14px; padding: 24px 0; }
.form-done[hidden] { display: none; }
.form-done .ttl { font-family: var(--font-head); font-size: 26px; font-weight: 700; color: var(--pink-d); }
.form-done .small { font-size: 13px; color: var(--text-sub); }
.form-done .btn { margin-top: 12px; }
.form-error { color: #B3261E; font-size: 14px; text-align: center; }
.form-error[hidden] { display: none; }
.form[hidden] { display: none; }
