/* =========================================================
   無垢研鑽 LP
   配色・書体は既存のコミュニティHP（デモ）を踏襲
   ========================================================= */
:root {
  --ink: #16130F;
  --ink-soft: #4A4238;
  --ink-mute: #857B6D;
  --paper: #F8F6F0;
  --paper-2: #F0ECE2;
  --white: #FFFFFF;
  --line: #DED8CA;
  --shu: #D6452E;        /* 朱：行動・CTA */
  --shu-deep: #B0341F;
  --shu-soft: #FBE9E5;
  --ai: #276076;         /* 藍：情報 */
  --ai-soft: #E7EFF1;
  --todo: #B7791F;       /* 要確認マーカー */
  --todo-bg: #FFF6E0;
  --r: 14px;
  --serif: "Shippori Mincho B1", "Hiragino Mincho ProN", "Yu Mincho", serif;
  --gothic: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  --antique: "Zen Kaku Gothic Antique", "Hiragino Kaku Gothic ProN", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 76px; }
body {
  font-family: var(--gothic);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.9;
  letter-spacing: 0.03em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
.sp-only { display: none; }

/* ---------- 要確認マーカー（公開前にすべて解消する） ---------- */
.todo {
  display: inline-block;
  font-family: var(--gothic); font-size: 0.76em; font-weight: 700; line-height: 1.6;
  color: var(--todo); background: var(--todo-bg);
  border: 1px dashed var(--todo); border-radius: 6px;
  padding: 0 7px; letter-spacing: 0.02em; vertical-align: middle;
}
.draft-bar {
  background: var(--todo-bg); color: var(--todo); border-bottom: 1px dashed var(--todo);
  font-size: 0.74rem; font-weight: 700; text-align: center; padding: 5px 16px; line-height: 1.6;
}

/* ---------- スクロール演出 ---------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- ボタン ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 16px 34px; border-radius: 999px; font-weight: 700; font-size: 1rem; letter-spacing: 0.06em;
  transition: transform .2s, background .2s; border: 1.5px solid transparent; text-align: center; line-height: 1.5;
}
.btn-primary { background: var(--shu); color: #fff; box-shadow: 0 8px 22px rgba(214,69,46,0.26); }
.btn-primary:hover { background: var(--shu-deep); transform: translateY(-2px); }
.btn-lg { padding: 19px 40px; font-size: 1.05rem; }
.btn .arrow { transition: transform .2s; }
.btn:hover .arrow { transform: translateX(4px); }
.cta-note { margin-top: 10px; font-size: 0.8rem; color: var(--ink-soft); }

/* ---------- ヘッダー ---------- */
header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(248, 246, 240, 0.9);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  max-width: 1160px; margin: 0 auto; padding: 12px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.logo img { height: 32px; width: auto; }
nav ul { display: flex; align-items: center; gap: 24px; font-size: 0.84rem; font-weight: 700; }
nav a { color: var(--ink-soft); transition: color .2s; white-space: nowrap; }
nav a:hover { color: var(--shu); }
.nav-cta { background: var(--shu); color: #fff !important; padding: 9px 20px; border-radius: 999px; font-size: 0.82rem; }
.nav-cta:hover { background: var(--shu-deep); }

/* ---------- ヒーロー（文字と写真を左右に分け、写真に文字を重ねない） ---------- */
.hero {
  max-width: 1160px; margin: 0 auto; padding: 64px 24px 88px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
  min-height: min(calc(100vh - 90px), 760px);
}
.hero-kicker {
  display: inline-block; font-family: var(--antique); font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.14em; color: var(--ai); border-bottom: 2px solid var(--shu); padding-bottom: 4px;
}
.hero-title {
  margin-top: 26px; font-family: var(--serif); font-weight: 800;
  font-size: clamp(1.7rem, 3.35vw, 2.7rem); line-height: 1.5; letter-spacing: 0.03em;
}
.hero-title .line { display: block; white-space: nowrap; }
.hero-title .em { color: var(--shu); }
.hero-actions { margin-top: 34px; }
.hero-photo { border-radius: 24px; overflow: hidden; box-shadow: 0 24px 50px rgba(22,19,15,0.12); }
.hero-photo img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: 62% 30%; }

/* ---------- セクション共通 ---------- */
section { padding: 100px 24px; }
.inner { max-width: 1040px; margin: 0 auto; }
.narrow { max-width: 760px; margin: 0 auto; }
.alt { background: var(--paper-2); }
.dark { background: var(--ink); color: var(--paper); }
.sec-head { margin-bottom: 44px; }
.sec-head.center { text-align: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--antique); font-size: 0.74rem; font-weight: 700; letter-spacing: 0.28em;
  color: var(--ai); text-transform: uppercase;
}
.dark .eyebrow { color: #7FB6C6; }
.eyebrow .idx { font-family: var(--serif); font-size: 0.95rem; color: var(--shu); letter-spacing: 0; }
.eyebrow .tick { width: 26px; height: 2px; background: var(--shu); }
.sec-title { font-family: var(--serif); font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800; letter-spacing: 0.06em; margin-top: 12px; line-height: 1.4; }
.sec-lead { margin-top: 12px; font-size: 0.98rem; color: var(--ink-soft); }
.sub-title { font-family: var(--serif); font-size: 1.35rem; font-weight: 800; letter-spacing: 0.05em; margin: 64px 0 22px; }
.src { margin-top: 10px; font-size: 0.74rem; color: var(--ink-mute); text-align: center; }

/* ---------- 01 無垢研鑽とは ---------- */
.concept-catch { font-family: var(--serif); font-size: clamp(1.5rem, 3.6vw, 2.2rem); font-weight: 800; line-height: 1.7; letter-spacing: 0.04em; }
.concept-catch .u { background: linear-gradient(transparent 64%, rgba(214,69,46,0.22) 64%); }
.concept-body { margin-top: 22px; max-width: 760px; color: var(--ink-soft); font-size: 1.12rem; line-height: 2.05; }
.values { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.values li { background: var(--white); border: 1px solid var(--line); border-radius: var(--r); padding: 26px 20px; }
.values .v-no { display: block; font-family: var(--serif); font-size: 1.6rem; font-weight: 800; color: var(--shu); line-height: 1; margin-bottom: 14px; }
.values h4 { font-family: var(--serif); font-size: 1.2rem; font-weight: 800; line-height: 1.5; letter-spacing: 0.02em; }
.values p { margin-top: 8px; font-size: 0.86rem; color: var(--ink-soft); line-height: 1.8; }

/* ---------- 02 活動内容 ---------- */
.acts { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.act { background: var(--white); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; }
.act-media { position: relative; aspect-ratio: 16 / 9; background: var(--paper-2); }
.act-media img { width: 100%; height: 100%; object-fit: cover; }
.act-body { padding: 24px 26px 26px; }
.act-no { font-family: var(--serif); font-size: 0.85rem; font-weight: 800; color: var(--shu); }
.act h3 { font-family: var(--serif); font-size: 1.3rem; font-weight: 800; letter-spacing: 0.04em; line-height: 1.5; }
.act p { margin-top: 6px; font-size: 0.92rem; color: var(--ink-soft); }
.act .note { font-size: 0.84rem; }
.meta { margin-top: 12px; display: grid; gap: 4px; font-size: 0.88rem; }
.meta div { display: grid; grid-template-columns: 3em 1fr; gap: 8px; }
.meta dt { color: var(--ai); font-weight: 700; }
.maplink { margin-left: 8px; color: var(--ai); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.placeholder {
  position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  background: repeating-linear-gradient(45deg, var(--paper-2), var(--paper-2) 12px, #E9E4D8 12px, #E9E4D8 24px);
  color: var(--ink-soft); font-size: 0.86rem; font-weight: 700; text-align: center; padding: 16px;
}
.placeholder .pl-ic { font-size: 1.8rem; line-height: 1; }
.video { margin-top: 20px; }
.video-frame { position: relative; aspect-ratio: 16 / 7; border-radius: var(--r); overflow: hidden; border: 1px solid var(--line); }

/* ---------- 03 代表 ---------- */
.rep { display: grid; grid-template-columns: 260px 1fr; gap: 44px; align-items: center; }
.rep-photo { border-radius: var(--r); overflow: hidden; }
.rep-name { font-family: var(--serif); font-size: 2.1rem; font-weight: 800; letter-spacing: 0.12em; }
.rep-name small { display: block; font-size: 0.76rem; letter-spacing: 0.2em; color: #7FB6C6; font-family: var(--antique); font-weight: 700; }
.rep-bio { margin-top: 18px; font-size: 1.08rem; line-height: 2.05; color: #DAD3C8; }
.rep-bio p + p { margin-top: 12px; }
.rep-bio strong { color: var(--paper); }
.dark .sub-title { color: var(--paper); }
.works { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.works li { border: 1px solid #3A342C; border-radius: 12px; padding: 20px 24px; font-weight: 700; font-size: 1.05rem; background: rgba(255,255,255,0.04); }
.disclaimer { margin-top: 16px; font-size: 0.86rem; color: #9A9184; }

/* ---------- 04 メンバー ---------- */
.group-photo { margin: 0; border-radius: var(--r); overflow: hidden; }
.group-photo img { width: 100%; }
.numbers { margin-top: 28px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; text-align: center; }
.numbers li { background: var(--white); border: 1px solid var(--line); border-radius: var(--r); padding: 22px 12px; }
.numbers .num { display: block; font-family: var(--serif); font-size: clamp(2rem, 5vw, 2.8rem); font-weight: 800; color: var(--shu); line-height: 1.2; }
.numbers .num small { font-size: 0.5em; }
.numbers .lbl { font-size: 0.86rem; font-weight: 700; color: var(--ink-soft); line-height: 1.6; }
.voices { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.voice-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--r); padding: 24px; display: flex; flex-direction: column; }
.voice-card p { font-size: 0.92rem; flex: 1; }
.voice-card cite { margin-top: 12px; font-style: normal; font-size: 0.76rem; font-weight: 700; color: var(--ai); }
.results { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.results li { position: relative; background: var(--white); border: 1px solid var(--line); border-radius: 12px; padding: 16px 20px 16px 50px; font-weight: 700; line-height: 1.7; }
.results li::before { content: "✓"; position: absolute; left: 18px; top: 16px; width: 22px; height: 22px; border-radius: 6px; background: var(--shu); color: #fff; font-size: 0.8rem; display: flex; align-items: center; justify-content: center; }
.results cite { display: block; font-style: normal; font-size: 0.74rem; color: var(--ai); }
.interview-note { margin-top: 40px; text-align: center; font-size: 0.9rem; color: var(--ink-soft); }

/* ---------- 05 こんな方へ ---------- */
.checks { display: grid; gap: 10px; }
.checks li { position: relative; background: var(--white); border: 1px solid var(--line); border-radius: 12px; padding: 16px 22px 16px 58px; font-weight: 700; }
.checks li::before { content: "✓"; position: absolute; left: 20px; top: 50%; transform: translateY(-50%); width: 26px; height: 26px; border-radius: 50%; background: var(--shu); color: #fff; font-size: 0.85rem; display: flex; align-items: center; justify-content: center; }
.range { margin-top: 24px; text-align: center; font-size: 0.94rem; color: var(--ink-soft); }

/* ---------- 06 料金・入会 ---------- */
.join-wrap { max-width: 860px; margin: 0 auto; background: var(--white); border: 2px solid var(--shu); border-radius: 20px; padding: 40px 40px 44px; }
.recruit { text-align: center; }
.recruit .badge { display: inline-block; background: var(--shu); color: #fff; font-weight: 700; font-size: 0.84rem; letter-spacing: 0.1em; padding: 4px 16px; border-radius: 999px; }
.recruit p { margin-top: 10px; font-size: 0.95rem; }
.price { margin-top: 28px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.price div { background: var(--paper); border-radius: 12px; padding: 18px 10px; text-align: center; }
.price dt { font-size: 0.8rem; font-weight: 700; color: var(--ink-mute); }
.price dd { margin-top: 2px; font-family: var(--serif); font-size: 1.6rem; font-weight: 800; line-height: 1.4; }
.price dd small { font-size: 0.5em; margin-left: 2px; }
.price .p-sub { font-size: 0.74rem; color: var(--ink-mute); }
.flow { margin-top: 28px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.flow li { text-align: center; background: var(--paper); border-radius: 12px; padding: 22px 16px; display: flex; flex-direction: column; align-items: center; }
.flow .f-no { display: inline-flex; width: 34px; height: 34px; font-size: 1.05rem; border-radius: 50%; background: var(--shu-soft); color: var(--shu); font-family: var(--serif); font-weight: 800; align-items: center; justify-content: center; }
.flow h4 { margin-top: 10px; font-family: var(--serif); font-size: 1.1rem; font-weight: 800; line-height: 1.5; }
.flow p { margin-top: 4px; font-size: 0.82rem; }
.apply { margin-top: 34px; text-align: center; }
.apply .lead { font-family: var(--serif); font-size: 1.12rem; font-weight: 800; margin-bottom: 16px; }

/* ---------- 07 FAQ ---------- */
.faq { display: grid; gap: 10px; }
.faq details { background: var(--white); border: 1px solid var(--line); border-radius: 12px; }
.faq summary { list-style: none; cursor: pointer; padding: 18px 52px 18px 54px; position: relative; font-weight: 700; line-height: 1.6; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::before { content: "Q"; position: absolute; left: 22px; top: 16px; font-family: var(--serif); font-size: 1.15rem; font-weight: 800; color: var(--shu); }
.faq summary::after { content: "+"; position: absolute; right: 22px; top: 50%; transform: translateY(-50%); font-size: 1.4rem; color: var(--ink-mute); transition: transform .2s; }
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq .a { padding: 0 24px 20px 54px; position: relative; font-size: 0.92rem; color: var(--ink-soft); }
.faq .a::before { content: "A"; position: absolute; left: 22px; top: -2px; font-family: var(--serif); font-size: 1.15rem; font-weight: 800; color: var(--ai); }
.faq .a p + p { margin-top: 6px; }

/* ---------- 最終CTA ---------- */
.final { text-align: center; }
.final .catch { font-family: var(--serif); font-size: clamp(1.7rem, 4vw, 2.4rem); font-weight: 800; line-height: 1.6; letter-spacing: 0.05em; }
.final .catch .em { color: var(--shu); }
.final .lead { margin: 14px 0 30px; color: #CFC7BA; }
.contact-box { margin-top: 40px; font-size: 0.86rem; color: #B9B1A4; }
.contact-link { color: var(--paper); text-decoration: underline; text-underline-offset: 3px; }

/* ---------- フッター ---------- */
footer { background: var(--paper-2); border-top: 1px solid var(--line); padding: 40px 24px 100px; text-align: center; }
footer .f-logo { height: 40px; width: auto; margin: 0 auto 10px; }
footer p { font-size: 0.82rem; color: var(--ink-soft); }
footer .copy { margin-top: 14px; font-size: 0.72rem; color: var(--ink-mute); }

/* ---------- スマホ追従CTA ---------- */
.float-cta { position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 60; display: none; transform: translateY(140%); transition: transform .35s cubic-bezier(.2,.7,.2,1); }
.float-cta.show { transform: none; }
.float-cta .btn { width: 100%; padding: 15px 20px; box-shadow: 0 10px 30px rgba(22,19,15,0.25); }

/* =========================================================
   レスポンシブ
   ========================================================= */
@media (max-width: 960px) {
  nav ul li:not(:last-child) { display: none; }
  .hero { grid-template-columns: 1fr; gap: 32px; padding: 44px 20px 64px; min-height: 0; }
  .hero-photo img { aspect-ratio: 16 / 10; object-position: 60% 28%; }
  .float-cta { display: block; }
}

@media (max-width: 760px) {
  section { padding: 72px 20px; }
  .header-inner { padding: 10px 16px; }
  .logo img { height: 26px; }
  .nav-cta { padding: 8px 14px; font-size: 0.76rem; }
  .weapons, .acts, .voices, .results, .works { grid-template-columns: 1fr; }
  .rep { grid-template-columns: 1fr; gap: 24px; }
  .rep-photo { max-width: 220px; }
  .join-wrap { padding: 30px 18px 34px; }
  .flow { grid-template-columns: 1fr; row-gap: 10px; }
}

@media (max-width: 600px) {
  .sp-only { display: inline; }
  .pc-only { display: none; }
  .hero { padding-top: 36px; }
  .hero-kicker { font-size: 0.74rem; letter-spacing: 0.08em; }
  .hero-title { margin-top: 18px; font-size: clamp(1.45rem, 6.9vw, 2rem); }
    .hero-actions { margin-top: 26px; align-items: stretch; }
  .hero-recruit { text-align: center; font-size: 0.8rem; }
  .btn-lg { padding: 17px 20px; font-size: 1rem; width: 100%; }
  .numbers { gap: 8px; }
  .numbers li { padding: 16px 4px; }
  .numbers .lbl { font-size: 0.7rem; }
  .price { gap: 6px; }
  .price dd { font-size: 1.2rem; }
  .price div { padding: 14px 4px; }
  .faq summary { padding: 16px 44px 16px 46px; font-size: 0.94rem; }
  .faq summary::before, .faq .a::before { left: 16px; }
  .faq .a { padding: 0 18px 18px 46px; }
}

/* ---------- 日本語の改行を文節単位に（対応ブラウザのみ） ---------- */

.recruit .sep { margin: 0 12px; color: var(--ink-mute); }

@media (max-width: 600px) {
  .recruit p span:not(.sep) { display: block; }
  .recruit .sep { display: none; }
  .join-wrap { padding: 28px 14px 30px; }
  .flow { grid-template-columns: 1fr; row-gap: 10px; }
  .flow li { display: flex; align-items: center; gap: 12px; text-align: left; flex-wrap: wrap; }
  .flow h4 { margin-top: 0; }
  .flow p { width: 100%; padding-left: 42px; }
  .btn-lg { font-size: 0.95rem; letter-spacing: 0.02em; padding: 17px 14px; }
}
.price dd small { white-space: nowrap; }
@media (max-width: 600px) { .price dd small { display: block; font-size: 0.55em; line-height: 1.4; } }

/* ---------- 定例会でやっていること ---------- */
.regular { margin-top: 8px; }
.reg-flow { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.reg-flow li { position: relative; background: var(--white); border: 1px solid var(--line); border-radius: var(--r); padding: 22px 20px; }
.reg-flow li:not(:last-child)::after { content: ""; position: absolute; right: -9px; top: 50%; transform: translateY(-50%); border: 6px solid transparent; border-left: 7px solid var(--shu); z-index: 2; }
.rf-no { display: inline-flex; width: 28px; height: 28px; border-radius: 50%; background: var(--shu); color: #fff; font-family: var(--serif); font-weight: 800; align-items: center; justify-content: center; font-size: 0.9rem; }
.reg-flow h4 { margin-top: 8px; font-family: var(--serif); font-size: 1.15rem; font-weight: 800; }
.reg-flow p { margin-top: 4px; font-size: 0.86rem; color: var(--ink-soft); line-height: 1.8; }
.reg-label { margin: 36px 0 14px; font-weight: 700; color: var(--ai); letter-spacing: 0.08em; }
.theme-block { margin-bottom: 26px; }
.theme-items { margin-top: 12px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.ti { background: var(--white); border: 1px solid var(--line); border-radius: var(--r); padding: 20px 22px; }
.ti h4 { font-family: var(--serif); font-size: 1.12rem; font-weight: 800; line-height: 1.5; }
.ti p { margin-top: 6px; font-size: 0.88rem; color: var(--ink-soft); line-height: 1.8; }
.t-kind { display: inline-block; background: var(--ink); color: #fff; font-size: 0.85rem; font-weight: 700; letter-spacing: 0.12em; padding: 4px 18px; border-radius: 999px; }

/* ---------- メンバー構成・入会理由 ---------- */
.stats { margin-top: 28px; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.stat-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--r); padding: 26px 24px; }
.stat-card h4 { font-family: var(--serif); font-size: 1.1rem; font-weight: 800; margin-bottom: 14px; }
.stat-sub { font-size: 0.78rem; font-weight: 700; color: var(--ink-mute); margin: 14px 0 6px; }
.stat-card h4 + .stat-sub { margin-top: 0; }
.chips { display: flex; flex-wrap: wrap; gap: 6px; }
.chips span { background: var(--paper); border: 1px solid var(--line); border-radius: 999px; padding: 3px 12px; font-size: 0.82rem; font-weight: 500; }
.chips b { margin-left: 5px; color: var(--ai); font-family: var(--serif); }
.bars { display: grid; gap: 12px; }
.b-head { display: flex; justify-content: space-between; gap: 10px; font-size: 0.86rem; line-height: 1.5; }
.b-head b { font-family: var(--serif); color: var(--shu); white-space: nowrap; }
.b-track { margin-top: 4px; height: 8px; background: var(--shu-soft); border-radius: 999px; overflow: hidden; }
.b-track i { display: block; height: 100%; width: 0; background: var(--shu); border-radius: 999px; transition: width 1.1s cubic-bezier(.2,.7,.2,1); }
.reveal.in .b-track i { width: var(--w); }
.reason-note { margin-top: 18px; padding-top: 14px; border-top: 1px dashed var(--line); font-size: 0.86rem; font-weight: 700; }
.numbers { margin-top: 0; }

@media (max-width: 960px) {
  .values { grid-template-columns: repeat(3, 1fr); }
  .themes { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .values { grid-template-columns: 1fr 1fr; }
  .reg-flow { grid-template-columns: 1fr 1fr; }
  .reg-flow li:nth-child(2)::after { display: none; }
  .stats { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .values { grid-template-columns: 1fr; }
  .values li { display: grid; grid-template-columns: auto 1fr; column-gap: 14px; padding: 18px 18px; }
  .values .v-no { grid-row: span 2; margin: 2px 0 0; font-size: 1.4rem; }
  .values p { margin-top: 2px; }
  .reg-flow { grid-template-columns: 1fr; }
  .reg-flow li::after { display: none; }
}

/* ---------- 募集の帯 ---------- */
.recruit-band { background: var(--shu); color: #fff; padding: 20px 24px; }
.rb-inner { max-width: 1040px; margin: 0 auto; display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 14px 24px; }
.rb-badge { font-family: var(--serif); font-size: 1.25rem; font-weight: 800; letter-spacing: 0.1em; background: #fff; color: var(--shu); padding: 5px 20px; border-radius: 999px; white-space: nowrap; }
.rb-main { font-size: 1.15rem; font-weight: 700; letter-spacing: 0.06em; }
.rb-main b { font-family: var(--serif); font-size: 1.3em; margin: 0 2px; }
.rb-cta { display: inline-flex; align-items: center; gap: 8px; background: var(--ink); color: #fff; font-weight: 700; font-size: 0.95rem; padding: 13px 26px; border-radius: 999px; transition: transform .2s, background .2s; white-space: nowrap; }
.rb-cta:hover { transform: translateY(-2px); background: #000; }

/* ---------- 動画・ギャラリー ---------- */
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-frame { aspect-ratio: 16 / 9; }
.gallery { margin-top: 20px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.gallery figure { margin: 0; border-radius: var(--r); overflow: hidden; }
.gallery img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform .5s; }
.gallery figure:hover img { transform: scale(1.05); }

@media (max-width: 760px) {
  .rb-inner { flex-direction: column; gap: 12px; text-align: center; }
  .rb-badge { font-size: 1.1rem; }
  .rb-main { font-size: 1rem; }
  .gallery { grid-template-columns: 1fr 1fr; gap: 8px; }
}

/* ---------- ヒーローのロゴ ---------- */
.hero-logo { width: min(460px, 92%); margin: 0 0 6px; }

/* ---------- ポッドキャスト ---------- */
.podcasts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.podcasts iframe { width: 100%; border: 0; border-radius: 12px; }
@media (max-width: 760px) { .podcasts { grid-template-columns: 1fr; } }
@media (max-width: 600px) { .hero-logo { width: 66%; margin: 16px 0 2px; } }

/* ---------- 動画のサムネイル（クリックで再生） ---------- */
.video-frame.yt { display: block; width: 100%; padding: 0; border: 1px solid var(--line); cursor: pointer; background: var(--ink); }
.video-frame.yt img { width: 100%; height: 100%; object-fit: cover; }
.yt-btn { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); width: 84px; height: 60px; border-radius: 14px; background: rgba(214,69,46,0.92); transition: transform .2s, background .2s; }
.yt-btn::after { content: ""; position: absolute; left: 50%; top: 50%; transform: translate(-40%,-50%); border-style: solid; border-width: 12px 0 12px 20px; border-color: transparent transparent transparent #fff; }
.video-frame.yt:hover .yt-btn { background: var(--shu); transform: translate(-50%,-50%) scale(1.06); }

/* ---------- メンバー構成のグラフ ---------- */
.stat-card h4 small { font-size: 0.72rem; font-weight: 500; color: var(--ink-mute); margin-left: 8px; }
.stat-card h4.mt { margin-top: 26px; }
.stat-card.wide { grid-column: 1 / -1; }
.b-head b { color: var(--ai); }
.b-track i { background: var(--ai); }
.b-track { background: var(--ai-soft); }
.bar.hot .b-head b { color: var(--shu); }
.bar.hot .b-track { background: var(--shu-soft); }
.bar.hot .b-track i { background: var(--shu); }

@media (max-width: 960px) { .theme-items { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .theme-items { grid-template-columns: 1fr; } .yt-btn { width: 64px; height: 46px; } }

/* ---------- 円グラフ ---------- */
.pie-wrap { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.pie { width: 152px; height: 152px; border-radius: 50%; flex-shrink: 0; box-shadow: 0 6px 18px rgba(22,19,15,0.08); }
.legend { flex: 1; min-width: 190px; display: grid; gap: 7px; }
.legend li { display: grid; grid-template-columns: 12px 1fr auto auto; align-items: center; gap: 10px; font-size: 0.88rem; }
.legend .sw { width: 12px; height: 12px; border-radius: 3px; }
.legend b { font-family: var(--serif); color: var(--ink); }
.legend .lg-p { font-family: var(--serif); color: var(--ai); font-weight: 800; min-width: 3em; text-align: right; }
.b-head b em { font-style: normal; margin-left: 8px; color: var(--ink-mute); font-family: var(--gothic); font-size: 0.86em; font-weight: 700; }
.chart-note { margin-top: 12px; font-size: 0.78rem; color: var(--ink-mute); }

/* ---------- ポッドキャスト ---------- */
.pod { background: rgba(255,255,255,0.05); border: 1px solid #3A342C; border-radius: var(--r); padding: 20px 20px 16px; }
.pod h4 { font-family: var(--serif); font-size: 1.15rem; font-weight: 800; color: var(--paper); }
.pod p { margin: 6px 0 14px; font-size: 0.88rem; color: #B9B1A4; line-height: 1.8; }

/* ---------- メンバーインタビュー ---------- */
.interviews { display: grid; gap: 20px; }
.iv { background: var(--white); border: 1px solid var(--line); border-radius: var(--r); padding: 28px 30px 30px; }
.iv-head { display: flex; align-items: center; gap: 22px; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.iv-head img { width: 96px; height: 96px; border-radius: 50%; object-fit: cover; object-position: 50% 12%; flex-shrink: 0; }
.iv-head h4 { font-family: var(--serif); font-size: 1.45rem; font-weight: 800; letter-spacing: 0.06em; }
.iv-head h4 span { font-size: 0.6em; margin-left: 4px; font-weight: 700; }
.iv-role { margin-top: 4px; font-size: 0.86rem; color: var(--ink-soft); }
.iv-qa { margin-top: 20px; display: grid; gap: 16px; }
.iv-qa dt { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; color: var(--shu); }
.iv-qa dd { margin-top: 4px; font-size: 0.98rem; line-height: 1.95; }

@media (max-width: 760px) {
  .pie-wrap { gap: 16px; }
  .pie { width: 126px; height: 126px; }
  .iv { padding: 22px 18px 24px; }
  .iv-head { gap: 14px; }
  .iv-head img { width: 76px; height: 76px; }
  .iv-head h4 { font-size: 1.25rem; }
}

/* ---------- 「こんな方へ」の締めの一文 ---------- */
.foryou-lead { margin-top: 26px; text-align: center; font-family: var(--serif); font-size: clamp(1.15rem, 2.6vw, 1.45rem); font-weight: 800; line-height: 1.9; letter-spacing: 0.04em; }

/* ---------- 日本語の改行 ----------
   ブラウザ標準の折り返し（行は右端まで使う）。
   auto-phrase や text-wrap: balance は行が途中で終わり読みづらいため使わない */

@media (max-width: 760px) {
  /* 円グラフの凡例は幅が足りず3行に折り返すため、グラフの下に全幅で置く */
  .pie-wrap { flex-direction: column; align-items: flex-start; gap: 18px; }
  .legend { width: 100%; }
  .legend li { grid-template-columns: 12px 1fr auto auto; }
  .b-head { font-size: 0.84rem; }
}

/* ---------- 追加調整 ---------- */
.sec-lead.big { font-size: clamp(1.02rem, 2.2vw, 1.22rem); line-height: 2; color: var(--ink); }
.sec-lead.big b { font-weight: 800; }
.act h3 small { display: block; font-family: var(--gothic); font-size: 0.78rem; font-weight: 700; color: var(--ink-mute); margin-top: 2px; }
.sec-title rt { font-size: 0.34em; font-weight: 700; letter-spacing: 0.08em; color: var(--ink-mute); }
.join-wrap .price { margin-top: 0; }

/* ---------- スマホ用：先頭に戻るボタン ---------- */
.to-top {
  position: fixed; right: 14px; bottom: 78px; z-index: 61;
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(255,255,255,0.94); color: var(--ink);
  border: 1px solid var(--line); box-shadow: 0 6px 18px rgba(22,19,15,0.18);
  font-size: 1.1rem; line-height: 1; cursor: pointer;
  display: none; align-items: center; justify-content: center;
  opacity: 0; transform: translateY(10px); transition: opacity .25s, transform .25s;
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
}
.to-top.show { opacity: 1; transform: none; }
@media (max-width: 960px) { .to-top { display: flex; } }
