@charset "UTF-8";
/* ============================================================
   循環経済新聞 広告 → セミナー申込LP ／ 構成ラフ v2
   ------------------------------------------------------------
   配色は、いただいた実写（GIRLS TEAM のユニフォーム）から抽出。
     メイン   ターコイズ  #0FB5C0
     サブ     ピンク      #E8006F
     アクセント 蛍光イエロー #EAFF3D（マーカーとして少量だけ）
     差し色   墨          #14171A
     ニュートラル 白 / #F4F2ED

   書体
     和文 Zen Kaku Gothic New（400 / 700 / 900）
     欧文 Archivo（600 / 800）
   見出しは巨大タイポとして扱うが、すべてHTMLテキスト。画像化しない。
   ============================================================ */

:root {
  --tq: #0FB5C0;
  --tq-d: #0A8A93;
  --tq-l: #E4F7F8;
  --pk: #E8006F;
  --pk-l: #FDE7F0;
  --ink: #14171A;
  --off: #F4F2ED;
  --hl: #EAFF3D;
  --line: #DDD9D2;
  --sans: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  --latin: "Archivo", "Helvetica Neue", Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px; line-height: 1.85;
  color: var(--ink); background: #fff;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--pk); }
h1, h2, h3, h4 { line-height: 1.35; }

.wrap { width: min(1120px, calc(100% - 40px)); margin-inline: auto; }
.wrap--narrow { width: min(760px, calc(100% - 40px)); }
.sp { display: none; }

/* 蛍光マーカー。使いすぎると煽りに見えるので1セクション1〜2箇所まで */
.mk {
  background: linear-gradient(transparent 62%, var(--hl) 62%, var(--hl) 94%, transparent 94%);
  font-weight: 700;
}

/* ラフ告知バー（本番では削除） */
.roughbar {
  background: var(--ink); color: #fff; font-size: 11.5px; letter-spacing: .05em;
  padding: 7px 16px; text-align: center;
}
.roughbar b { color: var(--tq); font-weight: 700; }
.roughbar b + b { color: var(--pk); }

/* ============================================================
   画像プレースホルダ（本番では <img> に差し替え）
   ============================================================ */
.ph {
  position: relative; margin: 0; padding: 32px 16px 14px;
  border: 2px dashed #b9b3a9; border-radius: 6px;
  background: repeating-linear-gradient(-45deg, rgba(0,0,0,.03) 0 10px, transparent 10px 20px), var(--off);
  display: flex; flex-direction: column; justify-content: center; overflow: hidden;
}
.ph__id {
  position: absolute; top: 0; left: 0; background: var(--ink); color: #fff;
  font-family: var(--latin); font-size: 11px; font-weight: 800; letter-spacing: .08em;
  padding: 3px 9px; border-bottom-right-radius: 5px;
}
.ph__src {
  position: absolute; top: 0; right: 0; font-size: 10.5px; font-weight: 700; color: #fff;
  padding: 3px 9px; border-bottom-left-radius: 5px; background: var(--tq-d);
}
.ph__desc { margin: 0; font-size: 12.5px; line-height: 1.7; color: #4a463f; }
.ph__meta { margin: 6px 0 0; font-size: 11px; color: #7a746a; }
.ph .warn { color: var(--pk); }
.ph--4x3 { aspect-ratio: 4/3; }
.ph--16x9 { aspect-ratio: 16/9; }
.ph--3x4 { aspect-ratio: 3/4; }
.ph--phone { aspect-ratio: 9/16; max-width: 290px; margin-inline: auto; }
.ph--logo { min-height: 74px; width: 220px; padding: 26px 10px 8px; }
.ph--logo .ph__desc { font-size: 11px; }
.ph--badges { min-height: 92px; margin-bottom: 28px; }
.site-footer .ph { background: rgba(255,255,255,.07); border-color: #4a4640; }
.site-footer .ph__desc { color: #cdc8c0; }

/* ============================================================
   実画面キャプチャ（.ph を差し替えたもの）
   実在の画面であることが説得力そのものなので、装飾は最小限にして
   画面そのものを大きく見せる。氏名・金額は撮影時にダミー化済み。
   ============================================================ */
.shot { margin: 0; }
.shot img {
  width: 100%;
  border: 1px solid var(--line); border-radius: 8px; background: #fff;
  box-shadow: 0 18px 38px rgba(10,60,70,.13), 0 2px 6px rgba(10,60,70,.06);
}
.shot figcaption {
  margin-top: 10px; font-size: 11.5px; line-height: 1.7; color: #7a746a;
}
.shot--phone { max-width: 290px; margin-inline: auto; }
.shot--phone img { border-radius: 16px; }

/* 画面のイメージ図（SVG）。実キャプチャ .shot と違い、枠も影も付けない。
   実物と見分けが付かなくなるのを避けるため、必ず figcaption で「イメージ」と断る */
.gr-fig { margin: 0; }
.gr-fig figcaption {
  margin-top: 8px; font-size: 11.5px; line-height: 1.7; color: #7a746a;
}

/* 表組みの中の補足行。本文より一段落として添える */
.note-sm { display: inline-block; margin-top: 4px; font-size: 12.5px; color: #6f6a61; }

/* 数字の帯。「何の数字か分からない」という指摘を受けて、
   数値の直下にラベルを立て、その下に説明文を置く3段構成にした */
.num-lead {
  margin: 0 0 26px; text-align: center; font-size: 14px; color: rgba(255,255,255,.9);
}
.num-list .num-label {
  display: block; margin-bottom: 5px;
  font-family: var(--sans); font-size: 13.5px; font-weight: 700;
  line-height: 1.5; letter-spacing: .02em; color: #fff;
}

/* 認証・認定。SECURITY ACTION は交付された正規ロゴ、
   ISO・DX認定はロゴが入手できないためテキストのバッジ */
.certs-row {
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap; margin-bottom: 30px;
}
.certs-logo { margin: 0; background: #fff; border-radius: 10px; padding: 10px; }
/* 使用ガイドライン: Web掲載は縦34ピクセル以上。等比のまま拡縮する */
.certs-logo img { height: 84px; width: auto; }

/* JICQA登録マーク＋JAB認定シンボル。
   暗い地では視認性が落ちるので白い座に載せる（マーク自体は無加工・等比のまま）。
   登録番号－規格番号は説明書の指示どおりマークに添える。省略しないこと */
.certs-mark { margin: 0; background: #fff; border-radius: 10px; padding: 10px 14px 8px; }
.certs-mark__row { display: flex; align-items: flex-end; gap: 14px; }
.certs-mark__row img { height: 76px; width: auto; }
.certs-mark figcaption {
  margin-top: 6px; text-align: center;
  font-size: 10.5px; line-height: 1.5; color: #333; letter-spacing: .01em;
}

.certs {
  list-style: none; margin: 0; padding: 0; flex: 1 1 420px;
  display: flex; flex-wrap: wrap; gap: 10px;
}
.certs li {
  flex: 0 1 auto; padding: 9px 15px; border-radius: 8px;
  background: #fff;
}
.certs b {
  display: block; font-size: 13.5px; font-weight: 800; letter-spacing: .02em; color: var(--ink);
}
.certs span { display: block; margin-top: 2px; font-size: 11px; color: #6f6a61; }

.tbd {
  display: inline-block;
  background: repeating-linear-gradient(-45deg, var(--hl) 0 6px, #dcee2a 6px 12px);
  color: #4a4a00; font-weight: 700; font-size: .88em;
  padding: 0 7px; border-radius: 3px;
}

/* SVGグラフィック */
.gr { width: 100%; height: auto; }
.gr--band { margin: 40px 0 0; }

/* ============================================================
   ヘッダー
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(255,255,255,.92); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 8px 0; }

/* ロゴ。マークと社名テキストを1つのリンクにまとめる */
.site-logo { display: flex; align-items: center; gap: 11px; text-decoration: none; }
.site-logo img { height: 34px; width: auto; }
.site-logo__name {
  font-size: 13px; font-weight: 700; letter-spacing: .04em; color: var(--ink);
  padding-left: 11px; border-left: 1px solid var(--line);
}
@media (max-width: 600px) {
  .site-logo img { height: 26px; }
  /* 社名まで畳むと、ロゴだけが左端に残って右半分が空き「ヘッダーが切れている」ように見える。
     消さずに縮めて収める（申込ボタンは画面下部の .sticky-cta が担当する） */
  .site-logo__name { font-size: 11.5px; padding-left: 9px; letter-spacing: 0; }
}
@media (max-width: 360px) {
  .site-logo img { height: 22px; }
  .site-logo__name { font-size: 10.5px; padding-left: 7px; }
}

/* ============================================================
   ボタン
   ============================================================ */
.btn {
  display: inline-block; text-align: center; text-decoration: none;
  background: var(--pk); color: #fff; font-family: inherit; font-weight: 700;
  padding: 13px 26px; border: none; border-radius: 999px; cursor: pointer;
  font-size: 15px; line-height: 1.5; letter-spacing: .02em;
  box-shadow: 0 6px 0 #a80050; transition: transform .12s, box-shadow .12s;
}
.btn:hover { transform: translateY(2px); box-shadow: 0 4px 0 #a80050; }
.btn:active { transform: translateY(6px); box-shadow: 0 0 0 #a80050; }
.btn--sm { padding: 9px 18px; font-size: 13px; box-shadow: 0 4px 0 #a80050; }
.btn--lg { padding: 20px 44px; font-size: 18px; }
.btn--full { display: block; width: 100%; }

.cta-block { margin-top: 30px; }
.cta-block--center { text-align: center; margin: 48px 0 0; }
.cta-lead { margin: 0 0 18px; font-size: 16px; }
.cta-note { margin: 12px 0 0; font-size: 12.5px; color: #6f6a62; }

/* ============================================================
   1. ファーストビュー
   ============================================================ */
.fv { position: relative; overflow: hidden; padding: 56px 0 72px; background: #fff; }
/* 背後のターコイズ色面。写真の後ろを斜めに走る */
.fv-block {
  position: absolute; top: -80px; right: -140px; width: 720px; height: 720px;
  background: var(--tq); border-radius: 48px; transform: rotate(-14deg); opacity: .16;
}
.fv-vertical {
  position: absolute; top: 90px; right: 14px; z-index: 3;
  writing-mode: vertical-rl; font-size: 12px; letter-spacing: .32em;
  color: var(--tq-d); font-weight: 700;
}
.fv-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.02fr .98fr; gap: 24px; align-items: center; }

.fv-eyebrow {
  margin: 0 0 14px; font-size: 14px; font-weight: 700; color: var(--ink);
  display: inline-block; background: var(--hl); padding: 3px 12px; border-radius: 3px;
}
.fv-h1 { margin: 0 0 22px; font-weight: 900; letter-spacing: -.03em; }
/* 3行で組む前提。折り返すと構造が崩れるので nowrap で固定し、幅は vw で追従させる */
.fv-h1 span { display: block; font-size: clamp(34px, 5.5vw, 70px); line-height: 1.02; white-space: nowrap; }
.fv-h1__l1 { color: var(--ink); }
.fv-h1__l2 { color: var(--tq-d); margin-left: .35em; }
.fv-h1__l3 {
  color: transparent; -webkit-text-stroke: 2px var(--pk);
  margin-left: .7em; position: relative; z-index: 3;
}
.fv-lead { margin: 0 0 10px; font-size: 16px; }
.fv-latin {
  margin: 0 0 26px; font-family: var(--latin); font-weight: 600;
  font-size: 11.5px; letter-spacing: .22em; color: #8c867d;
}

.fv-badges { list-style: none; margin: 0; padding: 0; display: flex; gap: 10px; flex-wrap: wrap; }
.fv-badges li {
  flex: 1 1 108px; border: 2px solid var(--ink); border-radius: 10px;
  padding: 10px 12px; background: #fff;
}
.fv-badges b { display: block; font-family: var(--latin); font-weight: 800; font-size: 27px; line-height: 1.1; }
.fv-badges b small { font-family: var(--sans); font-size: 13px; font-weight: 700; margin-left: 2px; }
.fv-badges span { display: block; font-size: 11.5px; color: #6f6a62; }

/* 写真。左側の巨大タイポに少し食い込ませる */
.fv-visual { position: relative; }
.fv-photo { margin: 0; position: relative; }
.fv-photo img {
  width: 100%; border-radius: 14px;
  box-shadow: 0 24px 50px rgba(20,23,26,.18);
}
.fv-photo figcaption {
  position: relative; margin-top: 10px; padding: 26px 12px 10px;
  border: 2px dashed #b9b3a9; border-radius: 6px; background: var(--off);
  font-size: 11.5px; line-height: 1.65; color: #4a463f;
}
.fv-photo figcaption .ph__src { top: 0; right: 0; }

/* ============================================================
   2. 数字の帯
   ============================================================ */
.numbers { background: var(--tq); color: #fff; padding: 40px 0; }
.num-list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.num-list li { text-align: center; }
.num-list b {
  display: block; font-family: var(--latin); font-weight: 800;
  font-size: clamp(34px, 4.4vw, 54px); line-height: 1.05; letter-spacing: -.02em;
}
.num-list b small { font-family: var(--sans); font-size: 17px; font-weight: 700; margin-left: 2px; }
.num-list span { display: block; margin-top: 6px; font-size: 12.5px; line-height: 1.6; opacity: .92; }

/* ============================================================
   セクション共通
   ============================================================ */
.sec { padding: 76px 0; position: relative; }
.sec--cases { background: var(--off); }
.sec--how { background: var(--tq-l); }
.sec--fit { padding-top: 0; }
.sec--faq { background: var(--off); }

.sec-num {
  margin: 0 0 4px; font-family: var(--latin); font-weight: 800; font-size: 56px; line-height: 1;
  color: transparent; -webkit-text-stroke: 2px var(--tq); letter-spacing: .02em;
}
.sec-title { margin: 0 0 14px; font-size: clamp(26px, 3.6vw, 42px); font-weight: 900; letter-spacing: -.01em; line-height: 1.25; }
.sec-title--form { margin-bottom: 8px; }
.sec-lead { margin: 0 0 36px; font-size: 15.5px; color: #3c3830; }

/* ---------- 3. 共感 ---------- */
.kyokan-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 36px; align-items: center; }
.checklist { list-style: none; margin: 0; padding: 0; }
.checklist li {
  position: relative; padding: 12px 0 12px 40px; font-size: 15.5px;
  border-bottom: 1px solid var(--line);
}
.checklist li::before {
  content: ""; position: absolute; left: 0; top: 16px;
  width: 20px; height: 20px; border: 2.5px solid var(--ink); border-radius: 4px; background: #fff;
}
.checklist li::after {
  content: ""; position: absolute; left: 5px; top: 21px;
  width: 11px; height: 6px; border-left: 2.5px solid var(--pk); border-bottom: 2.5px solid var(--pk);
  transform: rotate(-45deg);
}
.kyokan-note { margin: 32px 0 0; font-size: 17px; font-weight: 700; }

/* ---------- 転換ブロック ----------
   真っ黒は使わない。むしろ明るく振る。
   奥行きは「暗さ」ではなく、影・重なり・ぼかし・傾きで作る。

   レイヤー（奥 → 手前）
     1. 白〜ターコイズのグラデーション（上下は白に抜けて、前後のセクションと地続き）
     2. 光のにじみ 3枚（ターコイズ／ピンク／イエロー）
     3. 方眼
     4. 巨大なゴースト文字
     5. 積まれた見積書（背面2枚＋本体カード）
     6. 見出し。黄色のスラブ＋ピンクの版ズレ＋手描きの下線
   ------------------------------------------------------------- */
.turn {
  position: relative; margin-top: 72px; padding: 84px 0 92px; overflow: hidden;
  color: var(--ink);
  background:
    radial-gradient(90% 70% at 78% 18%, rgba(15,181,192,.22) 0%, rgba(15,181,192,0) 60%),
    linear-gradient(180deg, #FFFFFF 0%, #E9F8FA 26%, #DCF3F6 62%, #FFFFFF 100%);
}

/* 上端を白へ抜いて、前のセクションとの境目を消す */
.turn::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 140px; z-index: 1;
  pointer-events: none;
  background: linear-gradient(#fff, rgba(255,255,255,0));
}

.turn-layers { position: absolute; inset: 0; pointer-events: none; }

/* 2. 光のにじみ。明るい画面なので、色は薄く大きく */
.turn-glow { position: absolute; border-radius: 50%; filter: blur(80px); }
.turn-glow--tq {
  width: 620px; height: 620px; top: -220px; right: -110px;
  background: radial-gradient(circle, rgba(15,181,192,.55), rgba(15,181,192,0) 70%);
}
.turn-glow--pk {
  width: 480px; height: 480px; bottom: -220px; left: -80px;
  background: radial-gradient(circle, rgba(232,0,111,.30), rgba(232,0,111,0) 70%);
}
/* イエローは入れすぎるとターコイズと混ざって濁るので、薄く小さく */
.turn-glow--yl {
  width: 300px; height: 300px; top: 4%; left: 34%;
  background: radial-gradient(circle, rgba(234,255,61,.38), rgba(234,255,61,0) 70%);
}

/* 3. 方眼（設計図の質感） */
.turn-grid {
  position: absolute; inset: -40px;
  background-image:
    repeating-linear-gradient(0deg, rgba(10,138,147,.13) 0 1px, transparent 1px 56px),
    repeating-linear-gradient(90deg, rgba(10,138,147,.13) 0 1px, transparent 1px 56px);
  transform: rotate(-3deg);
  mask-image: radial-gradient(110% 85% at 50% 45%, #000 25%, transparent 100%);
  -webkit-mask-image: radial-gradient(110% 85% at 50% 45%, #000 25%, transparent 100%);
}

/* 4. 巨大なゴースト文字。「外注ゼロ」を文字で言わずに背景で言う */
.turn-ghost {
  position: absolute; right: -2%; bottom: -18px; white-space: nowrap;
  font-family: var(--latin); font-weight: 800; font-size: clamp(90px, 15vw, 210px);
  line-height: .8; letter-spacing: -.02em;
  color: transparent; -webkit-text-stroke: 2px rgba(10,138,147,.16);
}

.turn-inner { position: relative; z-index: 2; }

/* 5. 積まれた見積書 */
.turn-stack { position: relative; display: inline-block; max-width: 660px; margin: 0 0 44px; }
.turn-sheet {
  position: absolute; inset: 0; border-radius: 14px; background: #fff;
  border: 1px solid rgba(10,60,70,.10);
}
.turn-sheet--2 { transform: rotate(2.4deg) translate(10px, 8px); box-shadow: 0 10px 24px rgba(10,60,70,.10); }
.turn-sheet--3 { transform: rotate(5deg) translate(20px, 16px); box-shadow: 0 10px 24px rgba(10,60,70,.08); }

.turn-card {
  position: relative; z-index: 2;
  padding: 26px 30px; border-radius: 14px; background: #fff;
  border: 1px solid rgba(10,60,70,.10);
  box-shadow: 0 26px 50px rgba(10,60,70,.16), 0 3px 8px rgba(10,60,70,.08);
  transform: rotate(-1deg);
}
.turn-label {
  margin: 0 0 8px; font-size: 11.5px; font-weight: 700; letter-spacing: .16em; color: var(--tq-d);
}
.turn-small { margin: 0; font-size: 15px; line-height: 1.8; color: #3C4448; }
.turn-small b { color: var(--ink); font-weight: 700; }
/* 見積を見送ったことを、文字を足さずに示す。本文にかからないよう角の外へ出す */
.turn-x { position: absolute; right: -20px; top: -20px; width: 54px; height: 54px; opacity: .85; }
.turn-x::before, .turn-x::after {
  content: ""; position: absolute; left: 0; top: 25px; width: 54px; height: 6px;
  background: var(--pk); border-radius: 3px;
}
.turn-x::before { transform: rotate(45deg); }
.turn-x::after  { transform: rotate(-45deg); }

/* 6. 見出し */
.turn-big {
  position: relative; margin: 0; display: inline-block;
  font-size: clamp(28px, 5vw, 58px); font-weight: 900; line-height: 1.18;
  letter-spacing: -.02em; color: var(--ink);
}
/* 黄色のスラブ。文字の後ろに斜めに敷く */
.turn-slab {
  position: absolute; left: -14px; right: -14px; top: 12%; bottom: 14%;
  background: var(--hl); transform: rotate(-1.4deg); border-radius: 3px; z-index: 0;
}
.turn-big__t { position: relative; z-index: 2; }
/* ピンクの版ズレ */
.turn-big::before {
  content: attr(data-text); position: absolute; left: 4px; top: 4px; z-index: 1;
  color: var(--pk); opacity: .38; white-space: nowrap;
}
.turn-stroke { display: block; width: min(520px, 88%); height: 22px; margin-top: 10px; }

/* ---------- 4. 実例 ---------- */
.case { background: #fff; border-radius: 12px; padding: 30px 32px 34px; margin-bottom: 22px; }
.case-head { display: flex; align-items: baseline; gap: 16px; margin-bottom: 22px; }
.case-no {
  font-family: var(--latin); font-weight: 800; font-size: 46px; line-height: 1;
  color: transparent; -webkit-text-stroke: 2px var(--pk); flex: none;
}
.case-no--sm { font-size: 26px; -webkit-text-stroke-width: 1.5px; }
.case-head h3 { margin: 0; font-size: clamp(19px, 2.3vw, 26px); font-weight: 900; }
.case-body { display: grid; grid-template-columns: 1fr 320px; gap: 32px; align-items: start; }
.case--rev .case-body { grid-template-columns: 320px 1fr; }
.case--rev .case-text { order: 2; }
.case--rev .case-visual { order: 1; }

.ba { margin: 0; display: grid; grid-template-columns: 76px 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 6px; overflow: hidden; }
.ba dt { background: var(--off); padding: 11px 12px; font-size: 12px; font-weight: 800; font-family: var(--latin); letter-spacing: .04em; }
.ba dt:last-of-type { background: var(--tq-l); color: var(--tq-d); }
.ba dd { background: #fff; margin: 0; padding: 11px 14px; font-size: 14.5px; }

.insight { margin: 22px 0 0; padding: 20px 22px; background: var(--pk-l); border-radius: 10px; }
.insight h4 { margin: 0 0 10px; font-size: 15.5px; font-weight: 900; color: var(--pk); }
.insight ul { margin: 0 0 12px; padding-left: 1.2em; font-size: 14.5px; }
.insight li { margin-bottom: 7px; }
.insight p { margin: 0; font-size: 14.5px; }

.fold-guide { margin: 36px 0 14px; font-size: 14px; color: #6f6a62; }
.folds { display: grid; gap: 10px; }
.fold { background: #fff; border-radius: 10px; }
.fold > summary {
  cursor: pointer; list-style: none; padding: 16px 24px;
  display: flex; align-items: center; gap: 14px; font-size: 17px; font-weight: 700;
}
.fold > summary::-webkit-details-marker { display: none; }
.fold > summary::after { content: "＋"; margin-left: auto; color: var(--pk); font-size: 20px; font-weight: 700; }
.fold[open] > summary::after { content: "−"; }
.fold[open] > summary { border-bottom: 1px solid var(--line); }
.fold-body { display: grid; grid-template-columns: 1fr 300px; gap: 28px; padding: 24px; align-items: start; }
.fold-insight { margin: 16px 0 0; font-size: 14.5px; }
.fold-gr { position: relative; }
.gr-legend { list-style: none; margin: 10px 0 0; padding: 0; display: flex; gap: 8px; flex-wrap: wrap; font-size: 12px; font-weight: 700; }
.gr-legend li { padding: 3px 12px; border-radius: 999px; border: 2px solid var(--ink); }
.gr-legend--back { background: var(--tq); color: #fff; border-color: var(--tq); }
.gr-legend--out { border-color: var(--pk); color: var(--pk); }

/* ---------- 5. 作り方 ---------- */
.how-grid { display: grid; grid-template-columns: 1fr 280px; gap: 40px; align-items: start; }
.pillars { list-style: none; counter-reset: p; margin: 0; padding: 0; }
.pillars li { position: relative; padding: 0 0 26px 60px; margin-bottom: 26px; border-bottom: 1px solid rgba(20,23,26,.12); counter-increment: p; }
.pillars li:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.pillars li::before {
  content: counter(p); position: absolute; left: 0; top: -4px;
  font-family: var(--latin); font-weight: 800; font-size: 40px; line-height: 1;
  color: #fff; -webkit-text-stroke: 2px var(--tq-d);
}
.pillars h3 { margin: 0 0 6px; font-size: 19px; font-weight: 900; }
.pillars p { margin: 0; font-size: 15px; }

/* ---------- 6. セミナー概要 ---------- */
.outline-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 32px; align-items: start; }
.tbl { width: 100%; border-collapse: collapse; background: #fff; }
.tbl th, .tbl td { border: 1px solid var(--line); padding: 12px 15px; font-size: 14.5px; text-align: left; vertical-align: top; }
.tbl th { background: var(--off); width: 96px; font-weight: 700; white-space: nowrap; }

.program { list-style: none; margin: 0; padding: 0; border: 2px solid var(--ink); border-radius: 10px; overflow: hidden; }
.program li { display: flex; align-items: center; gap: 16px; padding: 12px 18px; border-bottom: 1px solid var(--line); }
.program li:last-child { border-bottom: none; }
.program li.is-main { background: var(--tq); color: #fff; }
.program b { font-family: var(--latin); font-weight: 800; font-size: 26px; line-height: 1; flex: none; width: 62px; }
.program b small { font-family: var(--sans); font-size: 12px; font-weight: 700; }
.program span { font-size: 14.5px; line-height: 1.5; }
.program span small { font-size: 12.5px; opacity: .85; }

.why500 { margin: 40px 0 0; padding: 26px 30px; background: var(--pk); color: #fff; border-radius: 12px; }
.why500 h3 { margin: 0 0 8px; font-size: 19px; font-weight: 900; }
.why500 p { margin: 0; font-size: 15px; }

/* ---------- 7. 向き不向き ---------- */
.fit-grid { display: grid; grid-template-columns: 1.25fr 1fr; gap: 22px; }
.fit { border-radius: 12px; padding: 26px 28px; }
.fit--yes { background: var(--tq-l); border: 2px solid var(--tq); }
.fit--no { background: var(--off); border: 2px solid var(--line); }
.fit h3 { margin: 0 0 12px; font-size: 18px; font-weight: 900; }
.fit--yes h3 { color: var(--tq-d); }
.fit ul { margin: 0; padding-left: 1.2em; font-size: 14.5px; }
.fit li { margin-bottom: 7px; }
.honest { margin: 16px 0 0; font-size: 14.5px; }

/* ---------- 8. サービス ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.svc { background: #fff; border: 2px solid var(--ink); border-radius: 12px; padding: 24px; }
.svc h3 { margin: 14px 0 6px; font-size: 16.5px; font-weight: 900; }
.svc p { margin: 0; font-size: 13.5px; color: #4a463f; }
.ic { width: 42px; height: 42px; stroke: var(--tq-d); stroke-width: 2.6; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.svc-note { margin: 24px 0 0; font-size: 13.5px; color: #6f6a62; }

/* ---------- 9. FAQ ---------- */
.qa { background: #fff; border-radius: 10px; margin-bottom: 9px; }
.qa > summary { cursor: pointer; list-style: none; padding: 15px 20px; font-size: 15.5px; font-weight: 700; display: flex; align-items: center; }
.qa > summary::-webkit-details-marker { display: none; }
.qa > summary::before { content: "Q"; font-family: var(--latin); font-weight: 800; color: var(--pk); margin-right: 12px; }
.qa > summary::after { content: "＋"; margin-left: auto; color: var(--pk); }
.qa[open] > summary::after { content: "−"; }
.qa p { margin: 0; padding: 0 20px 16px 46px; font-size: 14.5px; }

/* ---------- 10. フォーム ---------- */
.sec--form { background: var(--tq); }
.sec--form .sec-title, .sec--form .sec-lead { color: #fff; }
.entry { margin-top: 26px; background: #fff; border-radius: 14px; padding: 30px; }
.entry label { display: block; margin-bottom: 16px; }
.entry label > span { display: block; font-size: 13.5px; font-weight: 700; margin-bottom: 5px; }
.entry em { font-style: normal; font-size: 10.5px; color: #fff; background: var(--pk); padding: 2px 7px; border-radius: 3px; margin-left: 6px; vertical-align: 1px; }
.entry input[type="text"], .entry input[type="email"], .entry input[type="tel"], .entry select, .entry textarea {
  width: 100%; padding: 12px; font-size: 15px; font-family: inherit;
  border: 2px solid var(--line); border-radius: 8px; background: #fff;
}
.entry input:focus, .entry select:focus, .entry textarea:focus { outline: none; border-color: var(--tq); }
.entry small { display: block; margin-top: 4px; font-size: 12px; color: #6f6a62; }
.row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.entry .agree { display: flex; align-items: flex-start; gap: 9px; margin: 22px 0; }
.entry .agree input { margin-top: 6px; width: 18px; height: 18px; }
.entry .agree span { font-weight: 400; font-size: 14px; }
.form-note { margin: 12px 0 0; font-size: 12px; text-align: center; }

/* 申込（Peatix導線）------------------------------------------- */
.slots { list-style: none; margin: 26px 0 0; padding: 0; display: grid; gap: 12px; }
.slot {
  background: #fff; border-radius: 12px; padding: 16px 20px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.slot-when { display: flex; align-items: baseline; gap: 10px; }
.slot-when b { font-family: var(--latin); font-weight: 800; font-size: 30px; line-height: 1; }
.slot-when b small { font-size: 20px; font-weight: 600; margin: 0 1px; }
.slot-dow {
  font-size: 12px; font-weight: 700; color: #fff; background: var(--ink);
  border-radius: 3px; padding: 2px 6px; align-self: center;
}
.slot-time { font-size: 14px; font-weight: 700; color: #4a463f; }
/* 満席・締切の回は .slot--closed を付ける。ボタンは押せなくする */
.slot--closed { opacity: .55; }
.slot--closed .btn { background: #9b968e; box-shadow: 0 6px 0 #7d786f; pointer-events: none; }

.slot-notes {
  margin: 20px 0 0; padding: 18px 22px 18px 40px;
  background: rgba(255,255,255,.16); border-radius: 12px;
  color: #fff; font-size: 13.5px; line-height: 1.9;
}
.slot-notes li { margin-bottom: 2px; }
.sec--form .form-note { color: #fff; font-size: 13px; line-height: 1.8; margin-top: 18px; }

@media (max-width: 600px) {
  .slot { flex-direction: column; align-items: stretch; gap: 12px; text-align: center; }
  .slot-when { justify-content: center; }
  .slot .btn { width: 100%; }
}

/* ---------- 11. フッター ---------- */
.site-footer { background: var(--ink); color: #cdc8c0; padding: 44px 0 96px; }
.foot-name { margin: 0 0 6px; font-size: 18px; font-weight: 900; color: #fff; }
.foot-addr { margin: 0; font-size: 13.5px; }
.foot-links { list-style: none; display: flex; flex-wrap: wrap; gap: 20px; margin: 16px 0 0; padding: 0; font-size: 13px; }
.foot-links a { color: #cdc8c0; }

/* ---------- 追従CTA ---------- */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 50; display: none;
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  background: rgba(20,23,26,.94);
  transform: translateY(120%); transition: transform .25s ease;
}
.sticky-cta.is-visible { transform: translateY(0); }

/* ============================================================
   レスポンシブ
   ============================================================ */
/* 大きい画面のときだけ、共感セクションのグラフィックを右へ少しはみ出させる。
   はみ出し量は wrap の左右余白（この幅では60px）より小さくして横スクロールを出さない */
@media (min-width: 1240px) {
  .kyokan-visual .gr { width: calc(100% + 52px); max-width: none; }
}

@media (max-width: 960px) {
  .fv-inner, .kyokan-grid, .how-grid, .outline-grid { grid-template-columns: 1fr; }
  .case-body, .case--rev .case-body, .fold-body { grid-template-columns: 1fr; }
  .case--rev .case-text { order: 1; }
  .case--rev .case-visual { order: 2; }
  .fit-grid { grid-template-columns: 1fr; }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .num-list { grid-template-columns: repeat(2, 1fr); gap: 20px 12px; }
  .case-visual .ph, .fold-body .ph { max-width: 440px; }
  .how-grid .ph--3x4 { max-width: 260px; }
  .fv-vertical { display: none; }
}
@media (max-width: 600px) {
  body { font-size: 15px; }
  .sp { display: block; }
  .sec { padding: 52px 0; }
  .fv { padding: 32px 0 44px; }
  .fv-h1 span { font-size: clamp(34px, 11vw, 48px); }
  .fv-h1__l3 { -webkit-text-stroke-width: 1.6px; }
  /* スマホは、巨大タイポの直後に写真を出して最初の1画面で手を止める。
     バッジとCTAはその下に回す */
  .fv-inner { display: flex; flex-direction: column; align-items: stretch; }
  .fv-copy { display: contents; }
  .fv-eyebrow { order: 1; align-self: flex-start; }
  .fv-h1 { order: 2; }
  .fv-lead { order: 3; }
  .fv-visual { order: 4; margin: 4px 0 22px; }
  .fv-latin { order: 5; margin-bottom: 14px; }
  .fv-badges { order: 6; }
  .cta-block { order: 7; }
  .fv-badges li { flex: 1 1 calc(33% - 8px); padding: 8px 10px; }
  .fv-badges b { font-size: 21px; }
  .svc-grid { grid-template-columns: 1fr; }
  .row2 { grid-template-columns: 1fr; gap: 0; }
  .case { padding: 22px 18px 26px; }
  .case-head { gap: 12px; }
  .case-no { font-size: 34px; }
  .fold > summary { padding: 14px 16px; font-size: 15.5px; }
  .fold-body { padding: 18px 16px; }
  .ba { grid-template-columns: 66px 1fr; }
  .tbl th { width: 82px; padding: 10px 12px; }
  .tbl td { padding: 10px 12px; }
  .program b { width: 54px; font-size: 22px; }
  .entry { padding: 22px 18px; }
  .turn { padding: 56px 0 64px; }
  .turn-stack { margin-bottom: 34px; }
  .turn-card { padding: 20px 22px; transform: none; }
  .turn-sheet--2 { transform: rotate(2deg) translate(7px, 6px); }
  .turn-sheet--3 { transform: rotate(4deg) translate(14px, 12px); }
  .turn-x { width: 40px; height: 40px; right: -8px; top: -14px; }
  .turn-x::before, .turn-x::after { width: 40px; top: 18px; height: 5px; }
  /* 見出しが2行に折り返すため、版ズレのゴーストは位置が合わない。スマホでは出さない */
  .turn-big::before { display: none; }
  .turn-slab { top: 6%; bottom: 8%; }
  .turn-ghost { bottom: -6px; -webkit-text-stroke-width: 1.5px; }
  .sticky-cta { display: block; }
  .site-header .btn { display: none; }
}
