/* ============================================================
   オガタのeBay生活 — 共通スタイル
   方針：温かみのある緑×ベージュ×蜂蜜色／丸ゴシック中心
        eBay初心者・副業の方への、押し売りなくほんわかとしたトーン
   ============================================================ */

/* ---------- フォント読み込み ---------- */
@import url('https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@400;500;700&family=Noto+Sans+JP:wght@400;500;700&family=Klee+One:wght@400;600&display=swap');

/* ---------- カラー変数 ---------- */
:root {
  /* 背景色 */
  --bg-base:     #faf6ed;   /* メインベージュ */
  --bg-card:     #fdfbf3;   /* カード地 */
  --bg-soft:     #e8eedc;   /* 淡い緑（教材色を継承・親しみ） */
  --bg-warm:     #f5e9c8;   /* 蜂蜜色グラデ用 */
  --bg-honey:    #f0e6c8;   /* 蜂蜜の濃いめ */

  /* 線 */
  --line:        #d8e0c8;   /* 通常の線 */
  --line-soft:   #c8d4b8;   /* 破線・薄い線 */

  /* メインカラー（緑） */
  --green:       #6b8e5a;   /* メインアクセント緑 */
  --green-deep:  #2f4232;   /* 見出し色・濃緑 */
  --green-mid:   #4a5d44;
  --green-text:  #6a7868;

  /* アクセント（蜂蜜色） */
  --honey:       #c2924a;
  --honey-deep:  #6b4a1a;
  --honey-light: #f5e08c;   /* マーカー用 */

  /* テキスト */
  --text:        #2f4232;
  --text-soft:   #4a5d44;
  --text-mute:   #8a9c7c;

  /* シャドウ */
  --shadow-sm:   0 2px 8px rgba(47, 66, 50, 0.06);
  --shadow-md:   0 4px 18px rgba(47, 66, 50, 0.08);

  /* レイアウト */
  --radius-sm:   6px;
  --radius:      10px;
  --radius-lg:   12px;
  --container:   1120px;
  --container-narrow: 820px;
}

/* ---------- リセット ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Noto Sans JP", -apple-system, "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.85;
  color: var(--text);
  background: var(--bg-base);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .15s; }
button { font-family: inherit; cursor: pointer; }

/* ---------- コンテナ ---------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 48px; }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 48px; }

/* ============================================================
   ヘッダー
   ============================================================ */
.site-header {
  background: var(--bg-base);
  border-bottom: 1px solid var(--line);
  padding: 18px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: saturate(140%) blur(8px);
  background-color: rgba(250, 246, 237, 0.94);
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.site-logo__badge {
  width: 44px; height: 44px;
  background: var(--green);
  border-radius: 50%;
  color: var(--bg-card);
  display: flex; align-items: center; justify-content: center;
  font-family: "Klee One", cursive;
  font-weight: 600;
  font-size: 18px;
  line-height: 1;
}
.site-logo__name {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 19px;
  color: var(--green-deep);
  line-height: 1.3;
}
.site-logo__sub {
  display: block;
  font-family: "Klee One", cursive;
  font-weight: 400;
  font-size: 14px;
  color: var(--honey);
  margin-top: 2px;
}

/* ナビゲーション */
.nav-primary { display: flex; align-items: center; gap: 4px; }
.nav-primary a {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: var(--text-soft);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: background-color .15s;
}
.nav-primary a:hover { background: var(--bg-soft); color: var(--green-deep); }
.nav-primary a.is-active { background: var(--bg-soft); color: var(--green-deep); }

/* モバイルメニュートグル */
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 6px 10px;
  color: var(--green-deep);
}

/* ============================================================
   セクション見出し（共通）
   ============================================================ */
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.section-head__small {
  font-family: "Klee One", cursive;
  font-size: 14.5px;
  color: var(--honey);
  margin-bottom: 4px;
}
.section-head h2 {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--green-deep);
  letter-spacing: 0.02em;
  margin: 0;
}
.section-head__more {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 14.5px;
  color: var(--green);
}

/* ============================================================
   フッター
   ============================================================ */
.site-footer {
  background: var(--green-deep);
  color: var(--bg-soft);
  padding: 48px 48px 24px;
  margin-top: 80px;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(216, 224, 200, 0.2);
}
.site-footer__brand .name {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--bg-card);
  margin-bottom: 8px;
}
.site-footer__brand p {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 14px;
  line-height: 1.95;
  color: #a8b89c;
  margin: 0;
}
.footer-col h5 {
  font-family: "Klee One", cursive;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--honey-light);
  margin: 0 0 12px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 7px; }
.footer-col a {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 14.5px;
  color: var(--bg-soft);
}
.footer-col a:hover { color: var(--honey-light); }
.site-footer__bottom {
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  font-family: "Klee One", cursive;
  font-size: 14px;
  color: var(--text-mute);
}

/* ============================================================
   パンくず
   ============================================================ */
.breadcrumb {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 14px;
  color: var(--text-mute);
  padding: 18px 0 6px;
}
.breadcrumb a { color: var(--text-soft); }
.breadcrumb a:hover { color: var(--green-deep); }
.breadcrumb .sep { margin: 0 8px; color: var(--line); }

/* ============================================================
   記事ヘッダー
   ============================================================ */
.article-hero {
  padding: 28px 0 32px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 36px;
}
.article-hero__meta-row {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 16px;
}
.article-hero__category {
  display: inline-block;
  font-family: "Klee One", cursive;
  font-size: 14px;
  color: var(--green);
  background: var(--bg-soft);
  padding: 4px 12px;
  border-radius: 99px;
  font-weight: 600;
}
.article-hero__title {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 30px;
  line-height: 1.6;
  color: var(--green-deep);
  margin: 0 0 18px;
  letter-spacing: 0.005em;
}
.article-hero__lead {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 15px;
  line-height: 2;
  color: var(--text-soft);
  margin-bottom: 20px;
}
.article-hero__byline {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 14.5px;
  color: var(--text-mute);
}
.article-hero__byline .author {
  display: flex; align-items: center; gap: 8px;
  color: var(--text-soft);
}
.article-hero__byline .author-avatar {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--bg-honey);
display: inline-flex; align-items: center; justify-content: center;
  font-family: "Klee One", cursive;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--honey-deep);
}

/* ============================================================
   目次
   ============================================================ */
.toc {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px 26px;
  margin: 0 0 36px;
}
.toc__label {
  font-family: "Klee One", cursive;
  font-size: 14px;
  color: var(--honey);
  margin-bottom: 4px;
}
.toc__title {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--green-deep);
  letter-spacing: 0.05em;
  margin: 0 0 14px;
  padding-bottom: 10px;
  border-bottom: 1px dotted var(--line);
}
.toc ol { counter-reset: toc; list-style: none; padding: 0; margin: 0; }
.toc li {
  counter-increment: toc;
  padding: 5px 0;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 14px;
  position: relative;
  padding-left: 32px;
  color: var(--text);
}
.toc li::before {
  content: counter(toc, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 7px;
  font-family: "Klee One", cursive;
  font-weight: 600;
  font-size: 14px;
  color: var(--honey);
}
.toc a { color: var(--text-soft); transition: color .15s; }
.toc a:hover { color: var(--green-deep); }
.toc ol ol { padding-left: 0; margin-top: 4px; }
.toc ol ol li { font-size: 14.5px; padding-left: 32px; color: var(--text-mute); }
.toc ol ol li::before { content: "—"; color: var(--line); }

/* ============================================================
   記事本文（教材スタイルとも整合）
   ============================================================ */
.article-body {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 16px;
  line-height: 2;
}
.article-body p { margin: 1em 0; }
.article-body strong { font-weight: 700; color: var(--green-deep); }
.article-body h2 {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--green-deep);
  line-height: 1.55;
  margin: 2.4em 0 1em;
  padding: 14px 0 0 16px;
  border-left: 4px solid var(--green);
}
.article-body h3 {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--green-mid);
  margin: 1.8em 0 0.6em;
  padding-bottom: 0.4em;
  border-bottom: 1px solid var(--line);
}
.article-body h4 {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--green-deep);
  margin: 1.4em 0 0.4em;
}
.article-body ul, .article-body ol { padding-left: 1.4em; margin: 1em 0; }
.article-body li { margin-bottom: .5em; }

.article-body blockquote {
  border-left: 3px solid var(--honey);
  padding: .8em 1.2em;
  background: var(--bg-card);
  margin: 1.4em 0;
  color: var(--text-soft);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

/* 動画埋め込み（記事内・YouTubeの自然な埋め込み） */
.article-body .video-embed {
  margin: 1.8em 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-soft);
  position: relative;
  aspect-ratio: 16 / 9;
}
.article-body .video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.article-body .video-embed + .video-caption {
  font-family: "Klee One", cursive;
  font-size: 14px;
  color: var(--honey);
  text-align: center;
  margin: -1em 0 1.8em;
}

/* ============================================================
   著者カード
   ============================================================ */
.author-card {
  margin: 32px 0;
  padding: 24px;
  background: var(--bg-warm);
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 20px;
  align-items: start;
}
.author-card__avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--bg-honey);
display: flex; align-items: center; justify-content: center;
  font-family: "Klee One", cursive;
  font-weight: 600;
  font-size: 28px;
  color: var(--honey-deep);
}
.author-card__photo {
  width: 80px; height: 80px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center center;
  background: #2d1b3d;
  flex-shrink: 0;
}
.author-card__label {
  font-family: "Klee One", cursive;
  font-size: 14px;
  color: var(--honey);
  margin-bottom: 4px;
}
.author-card__name {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--green-deep);
  margin: 0 0 4px;
}
.author-card__role {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 14px;
  color: var(--green);
  margin: 0 0 8px;
}
.author-card__bio {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 14.5px;
  line-height: 1.85;
  color: var(--text-soft);
  margin: 0;
}

/* ============================================================
   関連記事
   ============================================================ */
.related {
  margin: 48px 0 24px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
}
.related__title {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--green-deep);
  margin: 0 0 20px;
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.related__title small {
  font-family: "Klee One", cursive;
  font-size: 14.5px;
  color: var(--honey);
  font-weight: 400;
}
.related__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.related-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all .2s;
  display: flex; flex-direction: column;
}
.related-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--green);
}
.related-card__thumb {
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--bg-soft) 0%, var(--bg-honey) 100%);
  position: relative;
  border-bottom: 1px solid var(--line);
}
.related-card__thumb .ph-mark {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: "Klee One", cursive;
  font-size: 14px;
  color: rgba(107, 142, 90, 0.5);
}
.related-card__body { padding: 14px 16px 18px; }
.related-card__cat {
  display: inline-block;
  font-family: "Klee One", cursive;
  font-size: 14px;
  color: var(--green);
  background: var(--bg-soft);
  padding: 2px 9px;
  border-radius: 99px;
  margin-bottom: 8px;
}
.related-card__title {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--green-deep);
  margin: 0;
  line-height: 1.55;
}

/* ============================================================
   トップページ専用
   ============================================================ */

/* ---- ヒーロー ---- */
.home-hero {
  padding: 40px 48px 36px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 36px;
  align-items: center;
  max-width: 1120px;
  margin: 0 auto;
}
.home-hero__greeting {
  font-family: "Klee One", cursive;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--honey);
  margin-bottom: 12px;
}
.home-hero__title {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 30px;
  line-height: 1.6;
  color: var(--green-deep);
  margin: 0 0 18px;
}
.home-hero__title mark {
  background: linear-gradient(transparent 65%, var(--honey-light) 65%);
  padding: 0 2px;
  color: inherit;
}
.home-hero__lead {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 14px;
  line-height: 1.95;
  color: var(--text-soft);
  max-width: 95%;
  margin: 0;
}
.home-hero__author {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px dashed var(--line-soft);
  display: flex; align-items: center; gap: 12px;
}
.home-hero__author .ava {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--bg-honey);
display: flex; align-items: center; justify-content: center;
  font-family: "Klee One", cursive;
  font-weight: 600;
  font-size: 16px;
  color: var(--honey-deep);
}
.home-hero__author .who {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 14.5px;
  color: var(--text-soft);
  line-height: 1.65;
}
.home-hero__author .who strong { font-weight: 700; color: var(--green-deep); font-size: 14px; }
.home-hero__author .who small { font-size: 14px; color: var(--text-mute); display: block; }

.home-hero__visual {
  aspect-ratio: 5 / 4;
  max-height: 380px;
  background: linear-gradient(160deg, var(--bg-soft) 0%, var(--bg-honey) 100%);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}
.home-hero__visual::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1.5px dashed rgba(107, 142, 90, 0.35);
  border-radius: 8px;
}

/* 写真版（実写を入れたとき） */
.home-hero__visual--photo {
  background: #2d1b3d; /* 紫の壁と馴染ませる */
}
.home-hero__visual--photo::before { display: none; }
.home-hero__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

/* ヒーロー左下：著者の実写（小さい円） */
.home-hero__author-photo {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center center;
  background: #2d1b3d;
  flex-shrink: 0;
}
.home-hero__visual .photo-mark {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 12px;
  font-family: "Klee One", cursive;
  font-size: 14px;
  color: var(--green);
  padding: 32px;
}
.home-hero__visual .photo-mark .icon {
  font-family: "Klee One", cursive;
  font-weight: 600;
  font-size: 64px;
  color: rgba(107, 142, 90, 0.25);
  line-height: 1;
}
.home-hero__visual .sticker {
  position: absolute;
  top: 28px; right: 28px;
  background: var(--honey);
  color: var(--bg-card);
  font-family: "Klee One", cursive;
  font-weight: 600;
  font-size: 14px;
  padding: 6px 12px;
  border-radius: 99px;
  transform: rotate(4deg);
}

/* ---- 価値観バッジ ---- */
.values-row {
  margin: 0 auto;
  max-width: 1120px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px 26px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.values-row__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding-right: 24px;
  border-right: 1px dashed var(--line);
}
.values-row__item:last-child { border-right: none; padding-right: 0; }
.values-row__icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--bg-soft);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.values-row__icon svg { width: 22px; height: 22px; color: var(--green); }
.values-row__text { font-family: "Zen Maru Gothic", sans-serif; }
.values-row__val {
  font-size: 15px; color: var(--green-deep); font-weight: 700;
  line-height: 1.5; margin-bottom: 4px;
}
.values-row__desc { font-size: 14px; color: var(--green-text); line-height: 1.7; }

/* ---- 初心者の方へ（ステップ） ---- */
.first-time { padding: 48px 48px 28px; max-width: 1120px; margin: 0 auto; }
.first-time__intro {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 14px;
  line-height: 1.95;
  color: var(--text-soft);
  margin-bottom: 24px;
  max-width: 80%;
}
.step-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.step-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px;
  display: flex; flex-direction: column; gap: 12px;
  transition: all .2s;
}
.step-card:hover { transform: translateY(-2px); border-color: var(--green); }
.step-card__num {
  font-family: "Klee One", cursive; font-weight: 600; font-size: 14.5px;
  color: var(--bg-card); background: var(--green);
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.step-card h3 {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700; font-size: 16px; color: var(--green-deep);
  line-height: 1.55;
  margin: 0;
}
.step-card p {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 14.5px; line-height: 1.85; color: var(--green-text);
  margin: 0;
}
.step-card__arrow {
  font-family: "Klee One", cursive;
  font-size: 14.5px; color: var(--honey);
  margin-top: auto; padding-top: 10px;
}

/* ---- 最近の記事 ---- */
.recent { padding: 16px 48px 28px; max-width: 1120px; margin: 0 auto; }
.recent__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.recent-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all .2s;
  display: block;
}
.recent-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--green); }
.recent-card__ph {
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--bg-soft) 0%, var(--bg-honey) 100%);
  position: relative;
}
.recent-card__ph .ph-mark {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: "Klee One", cursive;
  font-size: 14.5px; color: rgba(107, 142, 90, 0.5);
}
.recent-card__play {
  position: absolute; bottom: 12px; left: 12px;
  background: rgba(47, 66, 50, 0.9);
  color: var(--bg-card);
  font-family: "Klee One", cursive;
  font-weight: 600; font-size: 14px;
  padding: 5px 10px 5px 22px;
  border-radius: 99px;
}
.recent-card__play::before {
  content: "";
  position: absolute; left: 9px; top: 50%; transform: translateY(-50%);
  width: 0; height: 0;
  border-left: 7px solid var(--bg-card);
  border-top: 4.5px solid transparent;
  border-bottom: 4.5px solid transparent;
}
.recent-card__body { padding: 16px 18px 20px; }
.recent-card__cat {
  display: inline-block;
  font-family: "Klee One", cursive;
  font-size: 14px;
  color: var(--green);
  background: var(--bg-soft);
  padding: 3px 10px;
  border-radius: 99px;
  margin-bottom: 10px;
}
.recent-card__title {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700; font-size: 15px; line-height: 1.6;
  color: var(--green-deep); margin: 0 0 10px;
}
.recent-card__meta {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 14px; color: var(--text-mute);
}

/* ---- カテゴリ ---- */
.cats { padding: 16px 48px 36px; max-width: 1120px; margin: 0 auto; }
.cats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.cat-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  display: flex; flex-direction: column; gap: 8px;
  transition: background-color .2s;
  cursor: pointer;
}
.cat-card:hover { background: var(--bg-soft); }
.cat-card__icon {
  width: 36px; height: 36px;
  background: var(--bg-soft);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 4px;
}
.cat-card__icon svg { width: 18px; height: 18px; color: var(--green); }
.cat-card h4 {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700; font-size: 14px;
  color: var(--green-deep); margin: 0;
}
.cat-card__count {
  font-family: "Klee One", cursive;
  font-size: 14px; color: var(--honey);
}

/* ---- 夫婦のこと ---- */
.couple {
  background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-warm) 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 56px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.couple__photo {
  aspect-ratio: 5 / 4;
  background: linear-gradient(135deg, var(--bg-soft) 0%, var(--bg-honey) 100%);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}
.couple__photo::before {
  content: ""; position: absolute; inset: 16px;
  border: 1.5px dashed rgba(107, 142, 90, 0.3);
  border-radius: 6px;
}
.couple__photo .ph-mark {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: "Klee One", cursive;
  font-size: 14.5px; color: var(--green);
  text-align: center; padding: 24px;
}
.couple__photo .corner-tag {
  position: absolute; top: 16px; left: 16px;
  font-family: "Klee One", cursive;
  font-size: 14px; color: var(--honey);
  background: rgba(253, 251, 243, 0.9);
  padding: 4px 10px;
  border-radius: 99px;
  border: 1px solid var(--honey);
}
.couple__label {
  font-family: "Klee One", cursive;
  font-size: 14.5px; color: var(--honey);
  margin-bottom: 8px;
}
.couple h2 {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700; font-size: 26px;
  color: var(--green-deep); line-height: 1.6;
  margin: 0 0 18px;
}
.couple p {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 14px; line-height: 2;
  color: var(--text-soft); margin: 0 0 14px;
}
.couple p.note {
  font-size: 14.5px; color: var(--green-text); margin-top: 8px;
}
.couple__cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--bg-card);
  border: 1.5px solid var(--honey);
  border-radius: 99px;
  padding: 10px 20px 10px 16px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700; font-size: 14.5px;
  color: var(--honey-deep);
  margin-top: 8px;
  transition: all .15s;
}
.couple__cta:hover { background: var(--honey); color: var(--bg-card); }
.couple__cta::before {
  content: "";
  width: 0; height: 0;
  border-left: 8px solid currentColor;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  flex-shrink: 0;
}

/* ---- 受講生のこと ---- */
.students { padding: 48px 48px 32px; }
.students__row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.student-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px;
  display: flex; flex-direction: column; gap: 12px;
}
.student-card__top { display: flex; align-items: center; gap: 12px; }
.student-card__ava {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--bg-soft);
  border: 1.5px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  font-family: "Klee One", cursive;
  font-weight: 600; font-size: 16px;
  color: var(--green);
}
.student-card__who {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700; font-size: 14px;
  color: var(--green-deep);
}
.student-card__who small {
  display: block;
  font-weight: 400; font-size: 14px;
  color: var(--text-mute);
  margin-top: 2px;
}
.student-card__quote {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 14.5px; line-height: 1.85;
  color: var(--text-soft);
  font-weight: 500;
  padding-left: 14px;
  border-left: 2px solid var(--honey);
  margin: 0;
}

/* ============================================================
   レスポンシブ
   ============================================================ */
@media (max-width: 980px) {
  .home-hero { grid-template-columns: 1fr; padding: 40px 32px; }
  .home-hero__visual { max-width: 480px; margin: 0 auto; }
  .values-row { margin: 0 32px; grid-template-columns: 1fr; }
  .values-row__item { border-right: none; border-bottom: 1px dashed var(--line); padding-right: 0; padding-bottom: 16px; }
  .values-row__item:last-child { border-bottom: none; padding-bottom: 0; }
  .first-time, .recent, .cats, .students { padding-left: 32px; padding-right: 32px; }
  .step-cards, .recent__grid, .students__row { grid-template-columns: 1fr; }
  .cats__grid { grid-template-columns: repeat(2, 1fr); }
  .couple { grid-template-columns: 1fr; padding: 40px 32px; gap: 32px; }
  .related__grid { grid-template-columns: 1fr 1fr; }
  .site-footer__grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 720px) {
  .site-header { padding: 14px 20px; }
  .site-logo__name { font-size: 16px; }
  .nav-primary { display: none; }
  .nav-primary.is-open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--bg-base);
    border-bottom: 1px solid var(--line);
    padding: 12px 16px;
    gap: 2px;
  }
  .nav-primary.is-open a { padding: 10px 14px; }
  .nav-toggle { display: inline-flex; align-items: center; }
  .home-hero__title { font-size: 26px; }
  .article-hero__title { font-size: 22px; }
  .related__grid { grid-template-columns: 1fr; }
  .site-footer { padding: 36px 24px 20px; }
  .site-footer__grid { grid-template-columns: 1fr; gap: 24px; }
  .site-footer__bottom { flex-direction: column; gap: 8px; text-align: center; }
  .author-card { grid-template-columns: 64px 1fr; gap: 14px; padding: 18px; }
  .author-card__avatar { width: 64px; height: 64px; font-size: 22px; }
  .container, .container-narrow { padding: 0 20px; }
  .first-time, .recent, .cats, .students { padding-left: 20px; padding-right: 20px; }
  .first-time__intro { max-width: 100%; }
  .cats__grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .couple { padding: 32px 20px; }
}
/* ============================================================
   対話セクション（キャラクター画像入り）— 記事本文で使用
   ============================================================ */

/* シーン書き */
.dialog-scene {
  margin: 1.6em 0;
  padding: 14px 22px;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border-left: 3px solid var(--line);
  font-family: "Klee One", cursive;
  font-size: 14.5px;
  color: var(--text-mute);
  text-align: center;
  letter-spacing: 0.05em;
}

/* 対話 */
.speech {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 14px;
  margin: 1.2em 0;
  align-items: flex-start;
}
.speech .who-photo {
  width: 64px; height: 64px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--bg-card);
object-position: center 30%;
}
.speech.papa .bubble { background: var(--bg-soft); color: var(--text); }
.speech.mama { grid-template-columns: 1fr 64px; }
.speech.mama .who-photo { order: 2; }
.speech.mama .bubble {
  background: #f5e9c8;
  color: var(--honey-deep);
  border: 1px solid #e9d8a8;
  order: 1;
  text-align: left;
}
.speech .bubble {
  position: relative;
  padding: 14px 18px;
  border-radius: 14px;
  font-size: 15px;
  line-height: 1.85;
}
.speech.papa .bubble::before {
  content: "";
  position: absolute;
  left: -8px; top: 22px;
  border: 7px solid transparent;
  border-right-color: var(--bg-soft);
}
.speech.mama .bubble::before {
  content: "";
  position: absolute;
  right: -8px; top: 22px;
  border: 7px solid transparent;
  border-left-color: #f5e9c8;
}
.speech .name {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--honey);
  display: block;
  margin-bottom: 4px;
  letter-spacing: 0.05em;
}
.speech.mama .name { text-align: right; }

/* 地の文（説明モード） */
.narrative {
  margin: 1.5em 0;
  padding: 22px 26px;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--bg-soft);
  position: relative;
}
.narrative__label {
  position: absolute;
  top: -10px;
  left: 22px;
  background: var(--bg-base);
  padding: 0 10px;
  font-family: "Klee One", cursive;
  font-size: 14px;
  color: var(--honey);
  letter-spacing: 0.1em;
}
.narrative p {
  font-size: 14.5px;
  line-height: 1.95;
  margin: 0.8em 0;
  color: var(--text-soft);
}
.narrative p:first-child { margin-top: 0; }
.narrative p:last-child { margin-bottom: 0; }
.narrative strong { color: var(--green-deep); font-weight: 700; }

/* 重要ポイント枠 */
.key-point {
  margin: 1.6em 0;
  padding: 22px 26px;
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-warm) 100%);
  border: 1.5px solid var(--honey);
  border-radius: var(--radius-lg);
}
.key-point__label {
  font-family: "Klee One", cursive;
  font-size: 14px;
  color: var(--honey);
  margin-bottom: 6px;
  letter-spacing: 0.1em;
}
.key-point__title {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--honey-deep);
  margin-bottom: 10px;
}
.key-point ul {
  margin: 0;
  padding-left: 1.4em;
  font-size: 14px;
  line-height: 1.95;
  color: var(--text-soft);
}
.key-point li { margin-bottom: 4px; }

/* チェックリスト */
.checklist {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin: 1.4em 0;
}
.checklist__title {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--green-deep);
  margin-bottom: 8px;
  padding-bottom: 6px;
  border-bottom: 1px dotted var(--line);
}
.checklist ul { list-style: none; padding: 0; margin: 0; }
.checklist li {
  position: relative;
  padding: 6px 0 6px 24px;
  font-size: 14px;
  line-height: 1.85;
}
.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 6px;
  color: var(--green);
  font-weight: 700;
}

/* おかあさんのひとこと */
.mama-voice {
  margin: 1.4em 0;
  padding: 18px 22px 18px 80px;
  background: var(--bg-base);
  border: 1.5px dashed var(--honey);
  border-radius: var(--radius-lg);
  position: relative;
  font-size: 14px;
  line-height: 1.95;
  color: var(--honey-deep);
}
.mama-voice__photo {
  position: absolute;
  left: 16px; top: 16px;
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 30%;
}
.mama-voice__label {
  font-family: "Klee One", cursive;
  font-size: 14px;
  color: var(--honey);
  margin-bottom: 4px;
  letter-spacing: 0.1em;
  display: block;
}

/* セクション見出し（記事本文用、対話含むケース） */
.article-body h2.section-mark {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--green-deep);
  border-left: 4px solid var(--green);
  padding: 12px 0 12px 16px;
  margin: 2.4em 0 1em;
  background: linear-gradient(90deg, var(--bg-soft) 0%, transparent 100%);
}

/* ============================================================
   記事サムネイル（CSSで作る画像不要のサムネ）
   ============================================================ */
.recent-card__thumb {
  aspect-ratio: 4 / 3;
  position: relative;
  overflow: hidden;
  padding: 22px 26px;
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid var(--line);
}

/* 装飾の円 */
.recent-card__thumb::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  opacity: 0.15;
  background: currentColor;
}
.recent-card__thumb::after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  opacity: 0.08;
  background: currentColor;
}

/* 番号 */
.thumb__num {
  font-family: "Klee One", cursive;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.05em;
  position: relative;
  z-index: 2;
}

/* カテゴリーバッジ */
.thumb__cat {
  display: inline-block;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #fdfbf3;
  background: currentColor;
  padding: 4px 12px;
  border-radius: 99px;
  margin-top: 6px;
  align-self: flex-start;
  position: relative;
  z-index: 2;
}
.thumb__cat::before {
  content: attr(data-label);
}
/* 文字色を白にして、背景はaccentカラーに */
.recent-card__thumb .thumb__cat {
  color: var(--bg-card);
  background: currentColor;
}

/* ↑↑ 親要素の color から取得するため、span の外側で打ち消す ↑↑ */
.thumb__cat {
  color: #fdfbf3 !important;
}

/* タイトル */
.thumb__title {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.45;
  color: var(--green-deep);
  margin-top: auto;
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
  letter-spacing: 0.01em;
}

/* サイト名 */
.thumb__sitename {
  font-family: "Klee One", cursive;
  font-weight: 600;
  font-size: 14px;
  color: currentColor;
  opacity: 0.7;
  padding-top: 10px;
  border-top: 2px solid currentColor;
  border-image: linear-gradient(to right, currentColor 30px, transparent 30px) 1;
  align-self: flex-start;
  position: relative;
  z-index: 2;
}

/* ===== カテゴリーごとの配色 ===== */
.thumb--basics   { background: linear-gradient(135deg, #e8eedc 0%, #f5e9c8 100%); color: #6b8e5a; }
.thumb--listing  { background: linear-gradient(135deg, #fdf6e3 0%, #f5e9c8 100%); color: #c2924a; }
.thumb--research { background: linear-gradient(135deg, #e0ebd8 0%, #d8e0c8 100%); color: #4a7340; }
.thumb--shipping { background: linear-gradient(135deg, #dde6e4 0%, #c8d4d2 100%); color: #456a68; }
.thumb--duty     { background: linear-gradient(135deg, #f5e0d4 0%, #e9c8b8 100%); color: #a05a3a; }
.thumb--trouble  { background: linear-gradient(135deg, #f0dad4 0%, #e0c0b8 100%); color: #a04438; }
.thumb--mind     { background: linear-gradient(135deg, #e8e0ed 0%, #d8c8e0 100%); color: #6a4a7a; }
.thumb--tools    { background: linear-gradient(135deg, #fbf0d4 0%, #f5e08c 100%); color: #8a6f2a; }

/* タイトルだけは濃い緑で固定（読みやすさ優先） */
.recent-card__thumb .thumb__title { color: var(--green-deep); }






/* ============================================================
   ★最終パッチ：v4戻し（大画像なし・テキスト中心・著者カードのみ）
   ============================================================ */

/* === コンテナ全体の最大幅統一 === */
.home-hero,
.values-row,
.first-time,
.recent,
.cats,
.couple,
.students {
  max-width: 1080px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
.couple {
  max-width: 100% !important;
  background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-warm) 100%);
}
.couple > * {
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}

/* === ヒーロー：右側の大画像を消し、テキスト中心 === */
.home-hero {
  padding: 48px 32px 40px !important;
  display: block !important;
  text-align: left !important;
  max-width: 760px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
.home-hero > div:first-child {
  width: 100%;
}

/* ★ 右側の大画像を完全削除 */
.home-hero__visual,
.home-hero__visual--photo {
  display: none !important;
}

.home-hero__greeting {
  font-size: 14.5px !important;
  margin-bottom: 12px !important;
}
.home-hero__title {
  font-size: 32px !important;
  line-height: 1.55 !important;
  margin: 0 0 18px !important;
}
.home-hero__lead {
  font-size: 14.5px !important;
  line-height: 1.95 !important;
  max-width: 100% !important;
}

/* 著者カード：44pxの小さな円のみ */
.home-hero__author {
  margin-top: 26px !important;
  padding-top: 22px !important;
  border-top: 1px dashed var(--line-soft);
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
}
.home-hero__author-photo {
  width: 44px !important;
  height: 44px !important;
  border-radius: 50% !important;
  object-fit: cover !important;
  object-position: center 35% !important;
  flex-shrink: 0 !important;
}
.home-hero__author .who {
  font-size: 14.5px !important;
  line-height: 1.65 !important;
}

/* === ヘッダー：「尾」削除 === */
.site-logo__badge { display: none !important; }
.site-logo { padding-left: 0 !important; gap: 0 !important; }
.site-header { padding: 14px 32px !important; }
.site-logo__name { font-size: 17px !important; }
.site-logo__sub { font-size: 14px !important; }

/* === 記事カード === */
.recent__grid {
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 18px !important;
}
.recent-card__thumb {
  aspect-ratio: 16 / 10 !important;
  padding: 18px 20px !important;
}
.thumb__num { font-size: 14px !important; }
.thumb__cat {
  font-size: 14px !important;
  padding: 3px 10px !important;
  margin-top: 4px !important;
}
.thumb__title {
  font-size: 18px !important;
  line-height: 1.4 !important;
  margin-bottom: 8px !important;
}
.thumb__sitename {
  font-size: 14px !important;
  padding-top: 6px !important;
  width: 50px !important;
}
.recent-card__body { padding: 12px 16px 16px !important; }
.recent-card__title {
  font-size: 15px !important;
  line-height: 1.5 !important;
}
.recent-card__meta { font-size: 14px !important; }

/* === カテゴリーカード === */
.cats__grid {
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 12px !important;
}
.cat-card { padding: 16px !important; }
.cat-card__icon { width: 32px !important; height: 32px !important; }
.cat-card__icon svg { width: 16px !important; height: 16px !important; }
.cat-card h4 { font-size: 14.5px !important; }
.cat-card__count { font-size: 14px !important; }

/* === セクション見出し === */
.section-head h2 { font-size: 19px !important; }
.section-head__small { font-size: 14px !important; }

/* === ステップカード === */
.step-cards {
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 14px !important;
}
.step-card { padding: 18px !important; }
.step-card h3 { font-size: 15px !important; }
.step-card p { font-size: 14px !important; }

/* === 受講生カード === */
.students__row {
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 14px !important;
}
.student-card { padding: 18px !important; }

/* === 夫婦の写真も縮小 === */
.couple__photo {
  max-width: 360px !important;
  max-height: 280px !important;
}

/* === レスポンシブ === */
@media (max-width: 980px) {
  .recent__grid, .step-cards, .students__row {
    grid-template-columns: 1fr 1fr !important;
  }
  .cats__grid { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 720px) {
  .home-hero { padding: 32px 20px !important; }
  .home-hero__title { font-size: 24px !important; }
  .recent__grid, .step-cards, .students__row {
    grid-template-columns: 1fr !important;
  }
}

/* ============================================================
   公式LINEバナー
   ============================================================ */
.line-banner {
  max-width: 1080px !important;
  margin: 28px auto !important;
  padding: 0 32px !important;
}
.line-banner__inner {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 20px;
  align-items: center;
  background: linear-gradient(135deg, #fdfbf3 0%, #f5e9c8 100%);
  border: 1.5px solid #c2924a;
  border-radius: 14px;
  padding: 20px 24px;
  text-decoration: none;
  color: inherit;
  transition: all .2s;
  position: relative;
  overflow: hidden;
}
.line-banner__inner:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(194, 146, 74, 0.18);
  border-color: #6b8e5a;
}
.line-banner__inner::before {
  content: "";
  position: absolute;
  top: -30px; right: -30px;
  width: 120px; height: 120px;
  background: rgba(107, 142, 90, 0.06);
  border-radius: 50%;
  pointer-events: none;
}

.line-banner__icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: #06C755;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(6, 199, 85, 0.25);
}
.line-banner__icon svg {
  width: 38px;
  height: 38px;
}

.line-banner__text {
  font-family: "Zen Maru Gothic", sans-serif;
  position: relative;
  z-index: 1;
}
.line-banner__small {
  font-family: "Klee One", cursive;
  font-size: 14px;
  color: #c2924a;
  margin-bottom: 4px;
  letter-spacing: 0.05em;
}
.line-banner__title {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: #2f4232;
  line-height: 1.5;
  margin-bottom: 4px;
}
.line-banner__title strong {
  color: #6b4a1a;
  background: linear-gradient(transparent 65%, #f5e08c 65%);
  padding: 0 2px;
}
.line-banner__sub {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 14px;
  color: #6a7868;
  line-height: 1.6;
}

.line-banner__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #06C755;
  color: #fff;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 14px;
  padding: 12px 22px;
  border-radius: 99px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background-color .15s;
  position: relative;
  z-index: 1;
}
.line-banner__inner:hover .line-banner__cta {
  background: #04a649;
}
.line-banner__cta svg {
  width: 14px;
  height: 14px;
}

/* レスポンシブ */
@media (max-width: 720px) {
  .line-banner {
    padding: 0 20px !important;
    margin: 20px auto !important;
  }
  .line-banner__inner {
    grid-template-columns: 48px 1fr;
    gap: 14px;
    padding: 16px 18px;
  }
  .line-banner__icon {
    width: 48px; height: 48px;
  }
  .line-banner__icon svg { width: 32px; height: 32px; }
  .line-banner__title { font-size: 15px; }
  .line-banner__sub { font-size: 14px; }
  .line-banner__cta {
    grid-column: 1 / -1;
    justify-content: center;
    margin-top: 8px;
    padding: 10px 18px;
    font-size: 14.5px;
  }
}

/* === 記事ヒーローの著者アイコンを実写に === */
.article-hero__byline .author-avatar--photo {
  width: 30px !important;
  height: 30px !important;
  border-radius: 50% !important;
  background: none !important;
  object-fit: cover !important;
  object-position: center 35% !important;
  display: inline-block !important;
padding: 0 !important;
}

/* === 対話セクションの最終強制パッチ === */
.speech.mama .bubble {
  background: #f5e9c8 !important;
  color: #6b4a1a !important;
  border: 1px solid #e9d8a8 !important;
  text-align: left !important;
}
.speech.mama .bubble::before {
  border-left-color: #f5e9c8 !important;
}
.speech.mama .name { text-align: right !important; }

/* 強制: bubble内すべて左寄せ */
.speech .bubble,
.speech.mama .bubble,
.speech.papa .bubble {
  text-align: left !important;
}
.speech .bubble * {
  text-align: left !important;
}

/* === 名前ラベルを吹き出しの外（上）に出す === */
.speech .bubble {
  position: relative;
}
.speech .name {
  position: absolute;
  top: -22px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--honey);
  letter-spacing: 0.05em;
  margin-bottom: 0;
  display: block;
  background: transparent;
  padding: 0;
}
.speech.papa .name {
  left: 4px;
}
.speech.mama .name {
  right: 4px;
  text-align: right !important;
}
/* 吹き出し本体に上部余白を作って、名前と被らないように */
.speech {
  margin-top: 1.8em !important;
  margin-bottom: 1.2em !important;
}

/* === フッターSNSアイコン群 === */
.site-footer__sns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  padding: 24px 0;
  margin: 0 0 8px;
  border-top: 1px solid rgba(216, 224, 200, 0.15);
}
.site-footer__sns a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(216, 224, 200, 0.08);
  border: 1px solid rgba(216, 224, 200, 0.15);
  border-radius: 99px;
  color: var(--bg-soft);
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
  transition: all .15s;
}
.site-footer__sns a:hover {
  background: var(--honey);
  border-color: var(--honey);
  color: var(--bg-card);
  transform: translateY(-2px);
}
.site-footer__sns svg {
  flex-shrink: 0;
}

@media (max-width: 720px) {
  .site-footer__sns {
    gap: 8px;
    padding: 18px 0;
  }
  .site-footer__sns a {
    padding: 7px 12px;
    font-size: 14px;
  }
}

/* === YouTubeセクション（トップページ） === */
.youtube-section {
  max-width: 1080px !important;
  margin: 36px auto !important;
  padding: 0 32px !important;
}
.youtube-section__intro {
  margin-bottom: 22px;
  text-align: center;
}
.youtube-section__intro p {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 14px;
  line-height: 1.95;
  color: var(--text-soft);
  margin: 0;
}
.youtube-section__embed {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--bg-soft);
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 22px;
  border: 1px solid var(--line);
}
.youtube-section__embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.youtube-section__cta {
  text-align: center;
  margin-top: 22px;
}
.youtube-section__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 28px;
  background: #FF0000;
  color: #fff;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 14px;
  border-radius: 99px;
  text-decoration: none;
  box-shadow: 0 3px 10px rgba(255, 0, 0, 0.15);
  transition: all .15s;
}
.youtube-section__btn:hover {
  background: #cc0000;
  transform: translateY(-2px);
  box-shadow: 0 5px 14px rgba(255, 0, 0, 0.22);
}
.youtube-section__handle {
  font-family: "Klee One", cursive;
  font-size: 14.5px;
  color: var(--honey);
  margin-top: 10px;
}

@media (max-width: 720px) {
  .youtube-section { padding: 0 20px !important; }
  .youtube-section__btn {
    font-size: 14.5px;
    padding: 11px 22px;
  }
}

/* === 記事末尾YouTube誘導（リサーチ系以外） === */
.article-youtube {
  margin: 32px 0;
  padding: 22px 26px;
  background: linear-gradient(135deg, #fdfbf3 0%, #f5e9c8 100%);
  border: 1.5px solid var(--honey);
  border-radius: 14px;
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 18px;
  align-items: center;
}
.article-youtube__icon {
  width: 56px;
  height: 56px;
  background: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.article-youtube__text {
  font-family: "Zen Maru Gothic", sans-serif;
}
.article-youtube__label {
  font-family: "Klee One", cursive;
  font-size: 14px;
  color: var(--honey);
  margin: 0 0 4px;
  letter-spacing: 0.05em;
}
.article-youtube__title {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--green-deep);
  margin: 0 0 4px;
}
.article-youtube__sub {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.7;
  margin: 0;
}
.article-youtube__btn {
  display: inline-flex;
  align-items: center;
  background: #FF0000;
  color: #fff;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 14.5px;
  padding: 11px 20px;
  border-radius: 99px;
  white-space: nowrap;
  flex-shrink: 0;
  text-decoration: none;
  transition: all .15s;
}
.article-youtube__btn:hover {
  background: #cc0000;
  transform: translateY(-2px);
}

@media (max-width: 720px) {
  .article-youtube {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 18px;
  }
  .article-youtube__icon {
    margin: 0 auto;
  }
  .article-youtube__btn {
    width: fit-content;
    margin: 0 auto;
  }
}

/* === 動画一覧ページ === */
.videos-hero {
  max-width: 1080px;
  margin: 32px auto;
  padding: 0 32px;
}
.videos-hero__inner {
  background: linear-gradient(135deg, #fdfbf3 0%, #f5e9c8 100%);
  border: 1.5px solid var(--honey);
  border-radius: 14px;
  padding: 32px 36px;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 28px;
  align-items: center;
}
.videos-hero__icon {
  width: 80px;
  height: 80px;
  background: #fff;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}
.videos-hero__label {
  font-family: "Klee One", cursive;
  font-size: 14.5px;
  color: var(--honey);
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}
.videos-hero__title {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--green-deep);
  line-height: 1.55;
  margin: 0 0 12px;
}
.videos-hero__lead {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 15px;
  line-height: 1.85;
  color: var(--text-soft);
  margin: 0 0 8px;
}
.videos-hero__handle {
  font-family: "Klee One", cursive;
  font-size: 14px;
  color: var(--honey);
  margin: 0;
  letter-spacing: 0.05em;
}

.videos-main {
  max-width: 1080px;
  margin: 36px auto;
  padding: 0 32px;
}
.videos-main__embed {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--bg-soft);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 4px 18px rgba(47, 66, 50, 0.08);
}
.videos-main__embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.videos-main__cta {
  text-align: center;
  margin-top: 28px;
}
.videos-main__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  background: #FF0000;
  color: #fff;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 15px;
  border-radius: 99px;
  text-decoration: none;
  box-shadow: 0 3px 10px rgba(255, 0, 0, 0.15);
  transition: all .15s;
}
.videos-main__btn:hover {
  background: #cc0000;
  transform: translateY(-2px);
  box-shadow: 0 5px 14px rgba(255, 0, 0, 0.22);
}
.videos-main__note {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 14px;
  color: var(--text-mute);
  margin-top: 12px;
}

.videos-categories {
  max-width: 1080px;
  margin: 48px auto;
  padding: 0 32px;
}
.videos-cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 22px;
}
.videos-cat-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 20px;
}
.videos-cat-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.videos-cat-card h3 {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--green-deep);
  margin: 0 0 6px;
}
.videos-cat-card p {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-soft);
  margin: 0;
}
.videos-categories__note {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 14.5px;
  color: var(--text-mute);
  text-align: center;
  margin-top: 24px;
  line-height: 1.85;
}

.videos-couple {
  max-width: 1080px;
  margin: 48px auto;
  padding: 0 32px;
}
.videos-couple__inner {
  background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-warm) 100%);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 36px 40px;
}
.videos-couple__label {
  font-family: "Klee One", cursive;
  font-size: 14.5px;
  color: var(--honey);
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}
.videos-couple__inner h2 {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--green-deep);
  line-height: 1.55;
  margin: 0 0 14px;
}
.videos-couple__inner p {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 15px;
  line-height: 1.95;
  color: var(--text-soft);
  margin: 0 0 12px;
}
.videos-couple__note {
  color: var(--green-text) !important;
  font-size: 14.5px !important;
}

@media (max-width: 720px) {
  .videos-hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 24px;
  }
  .videos-hero__icon { margin: 0 auto; }
  .videos-hero__title { font-size: 18px; }
  .videos-cat-grid { grid-template-columns: repeat(2, 1fr); }
  .videos-couple__inner { padding: 24px; }
}

/* === YouTubeチャンネルカード（埋め込みの代替） === */
.videos-main__channel-card,
.youtube-section__channel-card {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 22px;
  align-items: center;
  background: #fff;
  border: 2px solid #FF0000;
  border-radius: 14px;
  padding: 24px 28px;
  text-decoration: none;
  color: inherit;
  margin: 16px 0 22px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
  transition: all .2s;
}
.videos-main__channel-card:hover,
.youtube-section__channel-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 0, 0, 0.14);
}
.videos-main__channel-icon,
.youtube-section__channel-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.videos-main__channel-text p,
.youtube-section__channel-text p {
  margin: 0;
  font-family: "Zen Maru Gothic", sans-serif;
}
.videos-main__channel-label {
  font-family: "Klee One", cursive !important;
  font-size: 14px !important;
  color: #c2924a !important;
  letter-spacing: 0.05em !important;
  margin-bottom: 4px !important;
}
.videos-main__channel-name,
.youtube-section__channel-name {
  font-weight: 700 !important;
  font-size: 18px !important;
  color: var(--green-deep) !important;
  margin-bottom: 4px !important;
}
.videos-main__channel-handle,
.youtube-section__channel-handle {
  font-family: "Klee One", cursive !important;
  font-size: 14px !important;
  color: #8a9c7c !important;
}
.videos-main__channel-arrow,
.youtube-section__channel-arrow {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 14.5px;
  color: #FF0000;
  white-space: nowrap;
}

@media (max-width: 720px) {
  .videos-main__channel-card,
  .youtube-section__channel-card {
    grid-template-columns: 56px 1fr;
    gap: 14px;
    padding: 18px;
  }
  .videos-main__channel-arrow,
  .youtube-section__channel-arrow {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 6px;
    padding-top: 12px;
    border-top: 1px dotted #d8e0c8;
  }
  .videos-main__channel-name,
  .youtube-section__channel-name {
    font-size: 15px !important;
  }
}

/* === 動画埋め込み下キャプション === */
.videos-main__embed-note {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 14px;
  color: var(--text-mute);
  text-align: center;
  margin: 12px 0 22px;
  line-height: 1.7;
}

/* === 動画サムネイルグリッド === */
.videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin: 22px 0 28px;
}
.youtube-section__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 22px 0 24px;
}

.video-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: all .2s;
}
.video-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(47, 66, 50, 0.12);
  border-color: var(--green);
}
.video-card__thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--bg-soft);
  overflow: hidden;
}
.video-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.video-card__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0);
  transition: background .2s;
}
.video-card__play svg {
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.6));
  opacity: 0.9;
  transition: all .2s;
}
.video-card:hover .video-card__play {
  background: rgba(0, 0, 0, 0.2);
}
.video-card:hover .video-card__play svg {
  transform: scale(1.15);
  opacity: 1;
}
.video-card__body {
  padding: 14px 16px 16px;
}
.video-card__title {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.55;
  color: var(--green-deep);
  margin: 0 0 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.video-card__date {
  font-family: "Klee One", cursive;
  font-size: 14px;
  color: var(--text-mute);
  margin: 0;
}
.video-card--small .video-card__title {
  font-size: 14.5px;
}

.videos-empty {
  background: var(--bg-card);
  border: 1px dashed var(--line);
  border-radius: 12px;
  padding: 40px 20px;
  text-align: center;
  font-family: "Zen Maru Gothic", sans-serif;
  color: var(--text-mute);
  font-size: 14.5px;
  line-height: 1.85;
  margin-bottom: 24px;
}
.videos-empty p {
  margin: 4px 0;
}

@media (max-width: 980px) {
  .videos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .youtube-section__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 720px) {
  .videos-grid {
    grid-template-columns: 1fr;
  }
  .youtube-section__grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   ★ 中高年配慮フォントサイズ調整パッチ（最優先）
   PC: 本文17px・行間2.0、スマホ: 本文16px（変更なし）
   ============================================================ */

/* === 本文ベース === */
body {
  font-size: 17px !important;
  line-height: 2.0 !important;
}

/* === 記事本文 === */
.article-body {
  font-size: 17px !important;
  line-height: 2.0 !important;
}

/* === 記事ヒーロー === */
.article-hero__title {
  font-size: 30px !important;
  line-height: 1.6 !important;
}
.article-hero__lead {
  font-size: 16px !important;
  line-height: 2.0 !important;
}
.article-hero__byline {
  font-size: 14px !important;
}

/* === セクション見出し === */
.article-body h2,
.article-body h2.section-mark {
  font-size: 24px !important;
  line-height: 1.55 !important;
}
.article-body h3 {
  font-size: 19px !important;
}

/* === 対話セクション === */
.speech .bubble {
  font-size: 16px !important;
  line-height: 1.9 !important;
}
.speech .name {
  font-size: 14.5px !important;
}

/* === 地の文（説明モード） === */
.narrative p {
  font-size: 16px !important;
  line-height: 2.0 !important;
}
.narrative ul,
.narrative ol,
.narrative li {
  font-size: 16px !important;
  line-height: 2.0 !important;
}
.narrative__label {
  font-size: 14.5px !important;
}

/* === 重要ポイント === */
.key-point ul,
.key-point li {
  font-size: 15.5px !important;
  line-height: 2.0 !important;
}
.key-point__title {
  font-size: 17px !important;
}
.key-point__label {
  font-size: 14.5px !important;
}

/* === チェックリスト === */
.checklist li {
  font-size: 15.5px !important;
  line-height: 1.95 !important;
}
.checklist__title {
  font-size: 15px !important;
}

/* === おかあさんの一言 === */
.mama-voice {
  font-size: 15.5px !important;
  line-height: 2.0 !important;
}
.mama-voice__label {
  font-size: 14px !important;
}

/* === シーン書き === */
.dialog-scene {
  font-size: 14px !important;
}

/* === ナビゲーション === */
.nav-primary a {
  font-size: 15px !important;
}

/* === 記事カード（一覧表示） === */
.recent-card__title {
  font-size: 15px !important;
  line-height: 1.6 !important;
}
.recent-card__cat {
  font-size: 14px !important;
}
.recent-card__meta {
  font-size: 14px !important;
}

/* === 関連記事 === */
.related-card__title {
  font-size: 15px !important;
  line-height: 1.6 !important;
}
.related__title {
  font-size: 20px !important;
}

/* === 著者カード === */
.author-card__name {
  font-size: 17px !important;
}
.author-card__bio {
  font-size: 14px !important;
  line-height: 1.95 !important;
}

/* === ホームヒーロー === */
.home-hero__title {
  font-size: 33px !important;
  line-height: 1.55 !important;
}
.home-hero__lead {
  font-size: 16px !important;
  line-height: 2.0 !important;
}

/* === パンくず・補助テキスト === */
.breadcrumb {
  font-size: 14.5px !important;
}

/* === スマホはこれまで通り（16px、line-height 1.85） === */
@media (max-width: 720px) {
  body {
    font-size: 16px !important;
    line-height: 1.85 !important;
  }
  .article-body {
    font-size: 16px !important;
    line-height: 1.85 !important;
  }
  .article-hero__title {
    font-size: 24px !important;
  }
  .article-hero__lead {
    font-size: 15px !important;
    line-height: 1.9 !important;
  }
  .article-body h2,
  .article-body h2.section-mark {
    font-size: 20px !important;
  }
  .article-body h3 {
    font-size: 17px !important;
  }
  .speech .bubble {
    font-size: 15px !important;
    line-height: 1.85 !important;
  }
  .narrative p,
  .narrative ul,
  .narrative ol,
  .narrative li {
    font-size: 15px !important;
    line-height: 1.85 !important;
  }
  .key-point ul,
  .key-point li,
  .checklist li,
  .mama-voice {
    font-size: 14.5px !important;
    line-height: 1.85 !important;
  }
  .home-hero__title {
    font-size: 26px !important;
  }
}

/* ============================================================
   ★★★ 最終フォントサイズ統一パッチ（最優先・全体底上げ）
   方針：PCで14px未満を全て14〜15pxに底上げ
        スマホは別途調整（小さくても問題なし）
   ============================================================ */

/* === 全体の最小フォントサイズ底上げ === */
/* よく使われる小さい要素を全て14px以上に */

/* メタ情報・補助テキスト系（最小値を14pxに） */
.recent-card__cat,
.recent-card__meta,
.recent-card__title,
.related-card__cat,
.related-card__title,
.section-head__small,
.section-head__more,
.toc__label,
.toc__title,
.toc li,
.toc ol ol li,
.cat-card h4,
.cat-card__count,
.step-card p,
.student-card__who small,
.student-card__quote,
.values-row__desc,
.values-row__val,
.author-card__label,
.author-card__role,
.author-card__bio,
.couple p,
.couple p.note,
.couple__label,
.home-hero__greeting,
.home-hero__author .who,
.home-hero__author .who small,
.breadcrumb,
.line-banner__small,
.line-banner__sub,
.line-banner__title,
.thumb__num,
.thumb__cat,
.thumb__title,
.thumb__sitename,
.dialog-scene,
.narrative__label,
.key-point__label,
.key-point__title,
.checklist__title,
.mama-voice,
.mama-voice__label,
.video-card__title,
.video-card__date,
.videos-main__channel-label,
.videos-main__channel-name,
.videos-main__channel-handle,
.videos-main__channel-arrow,
.videos-main__note,
.videos-main__embed-note,
.videos-couple__inner h2,
.videos-couple__inner p,
.videos-couple__note,
.videos-couple__label,
.videos-hero__title,
.videos-hero__lead,
.videos-hero__handle,
.videos-hero__label,
.videos-empty p,
.youtube-section__handle,
.article-youtube__label,
.article-youtube__title,
.article-youtube__sub,
.article-youtube__btn,
.site-footer__bottom,
.site-footer__brand p,
.site-footer__brand .name,
.footer-col h5,
.footer-col a,
.site-footer__sns a,
.site-logo__name,
.site-logo__sub,
.nav-primary a {
  /* リセット用クラス、各クラスごとに下記で個別指定 */
}

/* === 以下、個別に底上げ === */

/* パンくず */
.breadcrumb { font-size: 14px !important; }

/* ホームヒーロー */
.home-hero__greeting { font-size: 14px !important; }
.home-hero__title { font-size: 28px !important; line-height: 1.6 !important; }
.home-hero__lead { font-size: 16px !important; line-height: 2.0 !important; }
.home-hero__author .who { font-size: 14.5px !important; line-height: 1.7 !important; }
.home-hero__author .who strong { font-size: 15.5px !important; }
.home-hero__author .who small { font-size: 14.5px !important; }

/* 3つの価値カード */
.values-row__val { font-size: 16px !important; line-height: 1.55 !important; }
.values-row__desc { font-size: 14px !important; line-height: 1.85 !important; }

/* セクションヘッド */
.section-head h2 { font-size: 22px !important; }
.section-head__small { font-size: 14px !important; }
.section-head__more { font-size: 14px !important; }

/* ステップカード */
.step-card h3 { font-size: 16px !important; }
.step-card p { font-size: 14px !important; line-height: 1.85 !important; }
.step-card__num { font-size: 14px !important; }
.step-card__arrow { font-size: 14px !important; }

/* 記事カード */
.recent-card__cat { font-size: 14.5px !important; }
.recent-card__title { font-size: 15.5px !important; line-height: 1.6 !important; }
.recent-card__meta { font-size: 14.5px !important; }

/* サムネイル（CSS自動生成サムネ） */
.thumb__num { font-size: 14.5px !important; }
.thumb__cat { font-size: 14px !important; padding: 4px 12px !important; }
.thumb__title { font-size: 17px !important; line-height: 1.4 !important; }
.thumb__sitename { font-size: 14px !important; }

/* カテゴリーカード */
.cat-card h4 { font-size: 14.5px !important; }
.cat-card__count { font-size: 14px !important; }

/* 受講生カード */
.student-card__who { font-size: 15px !important; }
.student-card__who small { font-size: 14px !important; }
.student-card__quote { font-size: 14px !important; line-height: 1.85 !important; }

/* 夫婦のこと */
.couple h2 { font-size: 24px !important; }
.couple p { font-size: 15.5px !important; line-height: 1.95 !important; }
.couple p.note { font-size: 14.5px !important; }
.couple__label { font-size: 14px !important; }
.couple__cta { font-size: 14px !important; }

/* 著者カード */
.author-card__label { font-size: 14.5px !important; }
.author-card__name { font-size: 17px !important; }
.author-card__role { font-size: 14.5px !important; }
.author-card__bio { font-size: 14.5px !important; line-height: 1.95 !important; }

/* 関連記事 */
.related__title { font-size: 20px !important; }
.related__title small { font-size: 14px !important; }
.related-card__cat { font-size: 14px !important; }
.related-card__title { font-size: 15.5px !important; line-height: 1.55 !important; }

/* 目次 */
.toc__label { font-size: 14.5px !important; }
.toc__title { font-size: 15px !important; }
.toc li { font-size: 15px !important; }
.toc ol ol li { font-size: 14px !important; }

/* 記事ヒーロー */
.article-hero__title { font-size: 28px !important; line-height: 1.6 !important; }
.article-hero__lead { font-size: 16.5px !important; line-height: 2.0 !important; }
.article-hero__byline { font-size: 14px !important; }
.article-hero__category { font-size: 14.5px !important; }

/* 記事本文 */
.article-body { font-size: 17px !important; line-height: 2.0 !important; }
.article-body h2,
.article-body h2.section-mark { font-size: 23px !important; line-height: 1.55 !important; }
.article-body h3 { font-size: 19px !important; }
.article-body h4 { font-size: 17px !important; }

/* 対話 */
.dialog-scene { font-size: 14px !important; }
.speech .bubble { font-size: 16px !important; line-height: 1.9 !important; }
.speech .name { font-size: 14.5px !important; }

/* narrative */
.narrative p { font-size: 16px !important; line-height: 2.0 !important; }
.narrative ul, .narrative ol, .narrative li { font-size: 16px !important; line-height: 2.0 !important; }
.narrative__label { font-size: 14.5px !important; }

/* key-point */
.key-point__label { font-size: 14.5px !important; }
.key-point__title { font-size: 17px !important; }
.key-point ul, .key-point li { font-size: 15.5px !important; line-height: 1.95 !important; }

/* checklist */
.checklist__title { font-size: 15.5px !important; }
.checklist li { font-size: 15.5px !important; line-height: 1.95 !important; }

/* mama-voice */
.mama-voice { font-size: 15.5px !important; line-height: 1.95 !important; }
.mama-voice__label { font-size: 14.5px !important; }

/* LINE banner */
.line-banner__small { font-size: 14.5px !important; }
.line-banner__title { font-size: 17px !important; line-height: 1.55 !important; }
.line-banner__sub { font-size: 15px !important; line-height: 1.65 !important; }
.line-banner__cta { font-size: 14.5px !important; }

/* ヘッダー */
.site-logo__name { font-size: 17px !important; }
.site-logo__sub { font-size: 14.5px !important; }
.nav-primary a { font-size: 15px !important; }

/* フッター */
.site-footer__brand .name { font-size: 17px !important; }
.site-footer__brand p { font-size: 15px !important; line-height: 1.85 !important; }
.footer-col h5 { font-size: 14px !important; }
.footer-col a { font-size: 14px !important; }
.site-footer__bottom { font-size: 14px !important; }
.site-footer__sns a { font-size: 14.5px !important; }

/* 記事末尾YouTube誘導 */
.article-youtube__label { font-size: 14.5px !important; }
.article-youtube__title { font-size: 16px !important; }
.article-youtube__sub { font-size: 14px !important; line-height: 1.7 !important; }
.article-youtube__btn { font-size: 14px !important; }

/* 動画カード */
.video-card__title { font-size: 14.5px !important; line-height: 1.55 !important; }
.video-card--small .video-card__title { font-size: 14px !important; }
.video-card__date { font-size: 14px !important; }

/* 動画一覧ヒーロー */
.videos-hero__label { font-size: 14px !important; }
.videos-hero__title { font-size: 22px !important; line-height: 1.55 !important; }
.videos-hero__lead { font-size: 14.5px !important; line-height: 1.85 !important; }
.videos-hero__handle { font-size: 14.5px !important; }

/* 動画チャンネルカード */
.videos-main__channel-label { font-size: 14px !important; }
.videos-main__channel-name { font-size: 18px !important; }
.videos-main__channel-handle { font-size: 14.5px !important; }
.videos-main__channel-arrow { font-size: 14px !important; }
.videos-main__btn { font-size: 15px !important; }
.videos-main__note { font-size: 14.5px !important; }

/* 動画ページの下のセクション */
.videos-couple__label { font-size: 14px !important; }
.videos-couple__inner h2 { font-size: 20px !important; }
.videos-couple__inner p { font-size: 14.5px !important; line-height: 1.95 !important; }
.videos-couple__note { font-size: 14px !important; }

/* === スマホ調整（PCより少し小さく、でも12px未満にはしない） === */
@media (max-width: 720px) {
  body { font-size: 16px !important; line-height: 1.85 !important; }
  .article-body { font-size: 16px !important; line-height: 1.85 !important; }
  .home-hero__title { font-size: 24px !important; }
  .home-hero__lead { font-size: 15px !important; line-height: 1.9 !important; }
  .article-hero__title { font-size: 22px !important; }
  .article-hero__lead { font-size: 15px !important; line-height: 1.85 !important; }
  .article-body h2,
  .article-body h2.section-mark { font-size: 19px !important; }
  .article-body h3 { font-size: 17px !important; }
  .speech .bubble { font-size: 15px !important; line-height: 1.85 !important; }
  .narrative p,
  .narrative ul, .narrative ol, .narrative li {
    font-size: 14.5px !important; line-height: 1.85 !important;
  }
  .key-point ul, .key-point li,
  .checklist li,
  .mama-voice { font-size: 14px !important; line-height: 1.85 !important; }
  .recent-card__title { font-size: 14.5px !important; }
  .related-card__title { font-size: 14.5px !important; }
  .thumb__title { font-size: 16px !important; }
}

/* ============================================================
   お問い合わせページ・コンサルページ共通スタイル
   ============================================================ */

/* ヒーロー（共通骨格） */
.contact-hero,
.consulting-hero {
  max-width: 1080px;
  margin: 32px auto;
  padding: 0 32px;
}
.contact-hero__inner,
.consulting-hero__inner {
  background: linear-gradient(135deg, #fdfbf3 0%, #f5e9c8 100%);
  border: 1.5px solid var(--honey);
  border-radius: 14px;
  padding: 44px 48px;
  text-align: center;
}
.consulting-hero__inner {
  padding: 56px 48px;
}
.contact-hero__label,
.consulting-hero__label {
  font-family: "Klee One", cursive;
  font-size: 14px;
  color: var(--honey);
  margin-bottom: 14px;
  letter-spacing: 0.05em;
}
.contact-hero__title,
.consulting-hero__title {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 30px;
  color: var(--green-deep);
  line-height: 1.55;
  margin: 0 0 18px;
}
.consulting-hero__title {
  font-size: 34px;
}
.contact-hero__lead,
.consulting-hero__lead {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 16px;
  line-height: 2.0;
  color: var(--text-soft);
  margin: 0;
  max-width: 700px;
  margin: 0 auto;
}

/* ============================================================
   お問い合わせフォーム
   ============================================================ */

.contact-form-section,
.consulting-form-section {
  max-width: 760px;
  margin: 36px auto;
  padding: 0 32px;
}

.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 36px 40px;
  box-shadow: 0 3px 12px rgba(47, 66, 50, 0.06);
}

.contact-form__alert {
  background: #fce5e0;
  border: 1px solid #d97a6c;
  border-radius: 8px;
  padding: 14px 18px;
  margin-bottom: 22px;
  color: #8a3a2a;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 14.5px;
  line-height: 1.7;
}

.contact-form__row {
  margin-bottom: 24px;
}
.contact-form__row label {
  display: block;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--green-deep);
  margin-bottom: 8px;
}
.contact-form__row .required {
  display: inline-block;
  background: #d97a6c;
  color: #fff;
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 4px;
  margin-left: 6px;
  font-weight: 700;
}
.contact-form__row .optional {
  display: inline-block;
  background: #b8c4ac;
  color: #fff;
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 4px;
  margin-left: 6px;
  font-weight: 700;
}
.contact-form__row input[type="text"],
.contact-form__row input[type="email"],
.contact-form__row select,
.contact-form__row textarea {
  width: 100%;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 15px;
  line-height: 1.7;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-sizing: border-box;
  transition: all .15s;
}
.contact-form__row input:focus,
.contact-form__row select:focus,
.contact-form__row textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(107, 142, 90, 0.15);
}
.contact-form__row textarea {
  resize: vertical;
  min-height: 160px;
  font-family: "Zen Maru Gothic", sans-serif;
}
.contact-form__hint {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 13px;
  color: var(--text-mute);
  margin: 6px 0 0;
}
.contact-form__error {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 14px;
  color: #c45a47;
  margin: 8px 0 0;
}

.contact-form__submit {
  text-align: center;
  margin-top: 32px;
}
.contact-form__submit button {
  background: var(--green);
  color: #fff;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 16px;
  padding: 14px 56px;
  border: none;
  border-radius: 99px;
  cursor: pointer;
  transition: all .15s;
  box-shadow: 0 3px 10px rgba(107, 142, 90, 0.2);
}
.contact-form__submit button:hover {
  background: var(--green-deep);
  transform: translateY(-2px);
  box-shadow: 0 5px 16px rgba(107, 142, 90, 0.3);
}
.contact-form__privacy {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 13px;
  color: var(--text-mute);
  margin: 14px 0 0;
}

/* ============================================================
   送信完了
   ============================================================ */

.contact-success {
  background: var(--bg-card);
  border: 2px solid var(--green);
  border-radius: 14px;
  padding: 48px 36px;
  text-align: center;
}
.contact-success__icon {
  margin-bottom: 18px;
}
.contact-success h2 {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--green-deep);
  margin: 0 0 16px;
}
.contact-success p {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 15.5px;
  line-height: 2.0;
  color: var(--text-soft);
  margin: 0 0 14px;
}
.contact-success__note {
  font-size: 13.5px !important;
  color: var(--text-mute) !important;
}
.contact-success__sns {
  margin: 24px 0;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.contact-success__sns a {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 14px;
  padding: 10px 22px;
  border: 1px solid var(--green);
  border-radius: 99px;
  color: var(--green-deep);
  text-decoration: none;
  transition: all .15s;
}
.contact-success__sns a:hover {
  background: var(--green);
  color: #fff;
}
.contact-success__back {
  display: inline-block;
  margin-top: 12px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 14px;
  color: var(--green);
  text-decoration: none;
  border-bottom: 1px dotted var(--green);
}

/* ============================================================
   その他の連絡手段（お問い合わせページ下部）
   ============================================================ */

.contact-other {
  margin-top: 36px;
  padding: 28px 32px;
  background: var(--bg-warm);
  border-radius: 12px;
  border: 1px solid var(--line);
}
.contact-other h3 {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--green-deep);
  margin: 0 0 10px;
}
.contact-other > p {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 14px;
  line-height: 1.85;
  color: var(--text-soft);
  margin: 0 0 18px;
}
.contact-other__sns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.contact-other__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  border-radius: 99px;
  transition: all .15s;
}
.contact-other__btn.line {
  background: #00B900;
  color: #fff;
}
.contact-other__btn.line:hover {
  background: #009d00;
}
.contact-other__btn.x {
  background: #1a1a1a;
  color: #fff;
}
.contact-other__btn.x:hover {
  background: #333;
}

/* ============================================================
   コンサル誘導カード（お問い合わせページ下部）
   ============================================================ */

.contact-consulting-link {
  margin-top: 36px;
  padding: 32px 36px;
  background: linear-gradient(135deg, #faf6ed 0%, #f5e9c8 100%);
  border: 1.5px solid var(--honey);
  border-radius: 14px;
  text-align: center;
}
.contact-consulting-link__pre {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 14.5px;
  line-height: 1.95;
  color: var(--text-soft);
  margin: 0 0 18px;
}
.contact-consulting-link__btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 32px;
  background: var(--honey);
  color: #fff;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 15px;
  border-radius: 99px;
  text-decoration: none;
  box-shadow: 0 3px 10px rgba(194, 146, 74, 0.25);
  transition: all .15s;
}
.contact-consulting-link__btn:hover {
  background: #a87a3a;
  transform: translateY(-2px);
  box-shadow: 0 5px 16px rgba(194, 146, 74, 0.35);
}
.contact-consulting-link__btn .arrow {
  font-size: 18px;
}

/* ============================================================
   コンサルページ専用
   ============================================================ */

.consulting-target {
  max-width: 1080px;
  margin: 56px auto;
  padding: 0 32px;
}
.consulting-target__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 24px;
}
.consulting-target__card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 28px 30px;
  position: relative;
}
.consulting-target__num {
  font-family: "Klee One", cursive;
  font-size: 14px;
  color: var(--honey);
  margin-bottom: 12px;
  letter-spacing: 0.08em;
}
.consulting-target__card h3 {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 17px;
  line-height: 1.55;
  color: var(--green-deep);
  margin: 0 0 12px;
}
.consulting-target__card p {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 14.5px;
  line-height: 1.95;
  color: var(--text-soft);
  margin: 0;
}

.consulting-what {
  max-width: 1080px;
  margin: 56px auto;
  padding: 0 32px;
}
.consulting-what__list {
  margin-top: 24px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 32px;
}
.consulting-what__item {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px dotted var(--line);
}
.consulting-what__item:last-child {
  border-bottom: none;
}
.consulting-what__check {
  width: 30px;
  height: 30px;
  background: var(--green);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}
.consulting-what__item h4 {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--green-deep);
  margin: 0 0 8px;
}
.consulting-what__item p {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 14.5px;
  line-height: 1.95;
  color: var(--text-soft);
  margin: 0;
}

.consulting-feature {
  max-width: 1080px;
  margin: 56px auto;
  padding: 0 32px;
}
.consulting-feature__inner {
  background: linear-gradient(135deg, #f5f0e3 0%, #e8eedc 100%);
  border: 1px solid var(--green);
  border-radius: 14px;
  padding: 40px 44px;
}
.consulting-feature__label {
  font-family: "Klee One", cursive;
  font-size: 14px;
  color: var(--honey);
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}
.consulting-feature__inner h2 {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--green-deep);
  line-height: 1.55;
  margin: 0 0 20px;
}
.consulting-feature__inner p {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 15.5px;
  line-height: 2.0;
  color: var(--text-soft);
  margin: 0 0 14px;
}

.consulting-form-intro {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 15px;
  line-height: 1.95;
  color: var(--text-soft);
  text-align: center;
  margin: 18px 0 28px;
}

/* ============================================================
   スマホ対応
   ============================================================ */

@media (max-width: 720px) {
  .contact-hero__inner,
  .consulting-hero__inner {
    padding: 32px 24px;
  }
  .contact-hero__title { font-size: 22px !important; }
  .consulting-hero__title { font-size: 26px !important; }
  .contact-hero__lead,
  .consulting-hero__lead { font-size: 14.5px !important; }
  .contact-form { padding: 24px 22px; }
  .consulting-target__grid { grid-template-columns: 1fr; }
  .consulting-what__list { padding: 4px 22px; }
  .consulting-feature__inner { padding: 28px 24px; }
  .consulting-feature__inner h2 { font-size: 18px; }
}

/* === ナビ「個人コンサル」CTA強調 === */
.nav-primary .nav-primary__cta {
  background: var(--honey) !important;
  color: #fff !important;
  padding: 6px 16px !important;
  border-radius: 99px !important;
  font-weight: 700 !important;
  margin-left: 4px;
  transition: all .15s;
}
.nav-primary .nav-primary__cta:hover {
  background: #a87a3a !important;
  transform: translateY(-1px);
}
.nav-primary .nav-primary__cta::after {
  display: none !important;
}

/* === 外部リンクボタン（記事内CTA） === */
.external-btn {
  display: inline-flex;
  align-items: center;
  padding: 13px 28px;
  background: var(--green);
  color: #fff !important;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 15px;
  border-radius: 99px;
  text-decoration: none !important;
  box-shadow: 0 3px 10px rgba(107, 142, 90, 0.22);
  transition: all .15s;
  border-bottom: none !important;
}
.external-btn:hover {
  background: var(--green-deep);
  transform: translateY(-2px);
  box-shadow: 0 5px 16px rgba(107, 142, 90, 0.32);
  text-decoration: none !important;
}
.external-btn::after {
  display: none !important;
}

/* === Compassとの違い 比較セクション === */
.consulting-vs {
  max-width: 1080px;
  margin: 56px auto;
  padding: 0 32px;
}
.consulting-vs__intro {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 15px;
  line-height: 1.95;
  color: var(--text-soft);
  text-align: center;
  margin: 18px 0 32px;
}
.consulting-vs__table {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.consulting-vs__col {
  border-radius: 14px;
  padding: 32px 30px;
  border: 1.5px solid;
}
.consulting-vs__col.ogata {
  background: linear-gradient(180deg, #faf6ed 0%, #f5e9c8 100%);
  border-color: var(--honey);
}
.consulting-vs__col.compass {
  background: linear-gradient(180deg, #f0f5ea 0%, #e8eedc 100%);
  border-color: var(--green);
}
.consulting-vs__head {
  text-align: center;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.15);
  padding-bottom: 18px;
  margin-bottom: 18px;
}
.consulting-vs__label {
  font-family: "Klee One", cursive;
  font-size: 13px;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}
.consulting-vs__col.ogata .consulting-vs__label {
  color: var(--honey);
}
.consulting-vs__col.compass .consulting-vs__label {
  color: var(--green-deep);
}
.consulting-vs__head h3 {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 19px;
  color: var(--green-deep);
  line-height: 1.45;
  margin: 0;
}
.consulting-vs__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.consulting-vs__list li {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px dotted rgba(0, 0, 0, 0.08);
  align-items: start;
}
.consulting-vs__list li:last-child {
  border-bottom: none;
}
.consulting-vs__key {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--text-mute);
  padding-top: 1px;
}
.consulting-vs__val {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--text-soft);
}
.consulting-vs__note {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 14.5px;
  line-height: 1.95;
  color: var(--text-soft);
  text-align: center;
  margin-top: 28px;
  padding: 20px 24px;
  background: var(--bg-warm);
  border-radius: 10px;
  border: 1px solid var(--line);
}

@media (max-width: 720px) {
  .consulting-vs__table {
    grid-template-columns: 1fr;
  }
  .consulting-vs__col {
    padding: 24px 22px;
  }
  .consulting-vs__list li {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

/* === コンサルページ ランディング型訴求セクション === */
.consulting-pitch {
  max-width: 760px;
  margin: 64px auto 56px;
  padding: 0 32px;
}

.consulting-pitch__intro {
  text-align: center;
  margin-bottom: 36px;
}
.consulting-pitch__small {
  font-family: "Klee One", cursive;
  font-size: 14px;
  color: var(--honey);
  letter-spacing: 0.05em;
  margin-bottom: 14px;
}
.consulting-pitch__h2 {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 30px;
  color: var(--green-deep);
  line-height: 1.5;
  margin: 0;
  letter-spacing: -0.01em;
}

.consulting-pitch__body {
  background: var(--bg-card);
  border-left: 4px solid var(--honey);
  padding: 36px 40px;
  border-radius: 4px;
}

.consulting-pitch__body p {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 16px;
  line-height: 2.0;
  color: var(--text-soft);
  margin: 0 0 22px;
}

.consulting-pitch__lead {
  font-size: 17px !important;
  border-bottom: 1px dashed var(--line);
  padding-bottom: 22px;
  margin-bottom: 28px !important;
}

.consulting-pitch__sub {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 19px;
  color: var(--green-deep);
  margin: 36px 0 18px;
  padding-left: 14px;
  border-left: 4px solid var(--green);
  line-height: 1.5;
}

.consulting-pitch__fit {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}
.consulting-pitch__fit li {
  background: var(--bg-warm);
  padding: 18px 22px;
  border-radius: 8px;
  margin-bottom: 12px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 15px;
  line-height: 1.95;
  color: var(--text-soft);
  border-left: 3px solid var(--green);
}
.consulting-pitch__fit li strong:first-child {
  display: block;
  margin-bottom: 6px;
  color: var(--green-deep);
}

.consulting-pitch__not-fit {
  font-style: italic;
  color: var(--text-mute) !important;
  font-size: 14.5px !important;
}

.consulting-pitch__notfit-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  background: #faf6ed;
  border: 1px dashed var(--honey);
  border-radius: 8px;
  padding: 20px 24px;
}
.consulting-pitch__notfit-list li {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 14.5px;
  line-height: 1.85;
  color: var(--text-soft);
  padding: 6px 0 6px 22px;
  position: relative;
}
.consulting-pitch__notfit-list li::before {
  content: "✕";
  position: absolute;
  left: 0;
  top: 6px;
  color: #c45a47;
  font-weight: 700;
}

.consulting-pitch__close {
  text-align: center;
  font-size: 16px !important;
  font-weight: 500;
  color: var(--green-deep) !important;
  margin-top: 32px !important;
  padding-top: 24px;
  border-top: 1px dashed var(--line);
}

@media (max-width: 720px) {
  .consulting-pitch__h2 { font-size: 24px; }
  .consulting-pitch__body { padding: 24px 22px; }
  .consulting-pitch__lead { font-size: 15.5px !important; }
  .consulting-pitch__body p { font-size: 14.5px; line-height: 1.9; }
  .consulting-pitch__sub { font-size: 17px; }
  .consulting-pitch__fit li { font-size: 14px; padding: 14px 16px; }
  .consulting-pitch__notfit-list li { font-size: 13.5px; }
}

/* === ★著者写真（ogata-avatar.jpg）：画像自体を引きの構図に再加工済み === */

/* 対話の中の写真（64px円） */
.speech .who-photo[src*="ogata-avatar"] {
  object-position: center center !important;
}

/* 著者カード写真（80px円） */
.author-card__photo[src*="ogata-avatar"] {
  object-position: center center !important;
}

/* ヒーロー左下の小円（48px） */
.home-hero__author-photo[src*="ogata-avatar"] {
  object-position: center center !important;
}

/* === カテゴリー別記事一覧ページ === */
.cat-hero {
  max-width: 1080px;
  margin: 32px auto 28px;
  padding: 0 32px;
}
.cat-hero__inner {
  background: linear-gradient(135deg, #fdfbf3 0%, #f5e9c8 100%);
  border: 1.5px solid var(--honey);
  border-radius: 14px;
  padding: 36px 40px;
  text-align: center;
}
.cat-hero__label {
  font-family: "Klee One", cursive;
  font-size: 14px;
  color: var(--honey);
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}
.cat-hero__title {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 28px;
  color: var(--green-deep);
  line-height: 1.5;
  margin: 0 0 14px;
}
.cat-hero__lead {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 15px;
  line-height: 1.95;
  color: var(--text-soft);
  margin: 0 0 14px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
.cat-hero__count {
  font-family: "Klee One", cursive;
  font-size: 13px;
  color: var(--green);
  margin: 12px 0 0;
}

.cat-list {
  max-width: 1080px;
  margin: 0 auto 56px;
  padding: 0 32px;
}
.cat-list__back {
  text-align: center;
  margin-top: 36px;
}
.cat-list__back-btn {
  display: inline-block;
  padding: 11px 28px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 14px;
  color: var(--green-deep);
  border: 1px solid var(--green);
  border-radius: 99px;
  text-decoration: none;
  transition: all .15s;
}
.cat-list__back-btn:hover {
  background: var(--green);
  color: #fff;
}

@media (max-width: 720px) {
  .cat-hero__inner { padding: 24px 22px; }
  .cat-hero__title { font-size: 22px; }
}

/* ============================================================
   /start/ 初心者の方へ ページ
   ============================================================ */

.start-hero {
  max-width: 1080px;
  margin: 32px auto 28px;
  padding: 0 32px;
}
.start-hero__inner {
  background: linear-gradient(135deg, #fdfbf3 0%, #f5e9c8 100%);
  border: 1.5px solid var(--honey);
  border-radius: 14px;
  padding: 48px 48px;
  text-align: center;
}
.start-hero__label {
  font-family: "Klee One", cursive;
  font-size: 14px;
  color: var(--honey);
  letter-spacing: 0.05em;
  margin-bottom: 14px;
}
.start-hero__title {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 32px;
  color: var(--green-deep);
  line-height: 1.55;
  margin: 0 0 18px;
}
.start-hero__lead {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 16px;
  line-height: 2.0;
  color: var(--text-soft);
  margin: 0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.start-flow,
.start-faq,
.start-next {
  max-width: 1080px;
  margin: 56px auto;
  padding: 0 32px;
}
.start-flow__list {
  margin-top: 24px;
}
.start-flow__item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 22px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 28px 30px;
  margin-bottom: 16px;
  align-items: start;
}
.start-flow__num {
  font-family: "Klee One", cursive;
  font-size: 36px;
  color: var(--honey);
  line-height: 1;
  letter-spacing: 0.02em;
}
.start-flow__body h3 {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--green-deep);
  margin: 0 0 10px;
  line-height: 1.5;
}
.start-flow__body p {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 15px;
  line-height: 1.95;
  color: var(--text-soft);
  margin: 0 0 14px;
}
.start-flow__btn {
  display: inline-block;
  padding: 8px 20px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 14px;
  color: var(--green-deep);
  border: 1px solid var(--green);
  border-radius: 99px;
  text-decoration: none;
  transition: all .15s;
}
.start-flow__btn:hover {
  background: var(--green);
  color: #fff;
}

.start-faq__list {
  margin-top: 24px;
}
.start-faq__item {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 22px 26px;
  margin-bottom: 12px;
}
.start-faq__item h4 {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--green-deep);
  margin: 0 0 10px;
}
.start-faq__item p {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 15px;
  line-height: 1.95;
  color: var(--text-soft);
  margin: 0;
}

.start-next__inner {
  background: linear-gradient(135deg, #f5f0e3 0%, #e8eedc 100%);
  border: 1.5px solid var(--green);
  border-radius: 14px;
  padding: 40px 44px;
  text-align: center;
}
.start-next__inner h2 {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--green-deep);
  margin: 0 0 16px;
}
.start-next__inner p {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 15.5px;
  line-height: 2.0;
  color: var(--text-soft);
  margin: 0 0 24px;
}
.start-next__buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.start-next__btn {
  padding: 12px 28px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 14.5px;
  border-radius: 99px;
  text-decoration: none;
  transition: all .15s;
}
.start-next__btn.primary {
  background: var(--green);
  color: #fff;
}
.start-next__btn.primary:hover {
  background: var(--green-deep);
}
.start-next__btn.secondary {
  background: var(--honey);
  color: #fff;
}
.start-next__btn.secondary:hover {
  background: #a87a3a;
}
.start-next__btn.ghost {
  background: transparent;
  color: var(--green-deep);
  border: 1px solid var(--green);
}
.start-next__btn.ghost:hover {
  background: var(--green);
  color: #fff;
}

/* ============================================================
   /students/ 受講生のこと ページ
   ============================================================ */

.students-hero {
  max-width: 1080px;
  margin: 32px auto 28px;
  padding: 0 32px;
}
.students-hero__inner {
  background: linear-gradient(135deg, #f5f0e3 0%, #e8eedc 100%);
  border: 1.5px solid var(--green);
  border-radius: 14px;
  padding: 44px 48px;
  text-align: center;
}
.students-hero__label {
  font-family: "Klee One", cursive;
  font-size: 14px;
  color: var(--honey);
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}
.students-hero__title {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 30px;
  color: var(--green-deep);
  line-height: 1.5;
  margin: 0 0 16px;
}
.students-hero__lead {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 15.5px;
  line-height: 2.0;
  color: var(--text-soft);
  margin: 0;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.students-profile,
.students-voice,
.students-cta {
  max-width: 1080px;
  margin: 56px auto;
  padding: 0 32px;
}

.students-profile__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 24px;
}
.students-profile__card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 28px 30px;
}
.students-profile__num {
  font-family: "Klee One", cursive;
  font-size: 14px;
  color: var(--honey);
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}
.students-profile__card h3 {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--green-deep);
  margin: 0 0 12px;
  line-height: 1.55;
}
.students-profile__card p {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 14.5px;
  line-height: 1.95;
  color: var(--text-soft);
  margin: 0;
}

.students-voice__intro {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 15px;
  line-height: 1.95;
  color: var(--text-soft);
  text-align: center;
  margin: 18px 0 32px;
}
.students-voice__intro small {
  display: block;
  font-size: 13px;
  color: var(--text-mute);
  margin-top: 6px;
}
.students-voice__list {
  display: grid;
  gap: 18px;
}
.students-voice__item {
  background: var(--bg-card);
  border-left: 4px solid var(--honey);
  border-radius: 4px;
  padding: 24px 28px;
}
.students-voice__meta {
  display: flex;
  gap: 16px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.students-voice__who {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--green-deep);
}
.students-voice__period {
  font-family: "Klee One", cursive;
  font-size: 13px;
  color: var(--text-mute);
}
.students-voice__quote {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 16px;
  line-height: 1.95;
  color: var(--green-deep);
  font-weight: 500;
  margin: 0 0 12px;
  padding-left: 16px;
  border-left: 2px solid var(--honey);
  font-style: italic;
}
.students-voice__detail {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 14.5px;
  line-height: 1.95;
  color: var(--text-soft);
  margin: 0;
}

.students-cta__inner {
  background: linear-gradient(135deg, #fdfbf3 0%, #f5e9c8 100%);
  border: 1.5px solid var(--honey);
  border-radius: 14px;
  padding: 40px 44px;
  text-align: center;
}
.students-cta__inner h2 {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--green-deep);
  margin: 0 0 16px;
}
.students-cta__inner p {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 15.5px;
  line-height: 2.0;
  color: var(--text-soft);
  margin: 0 0 14px;
}
.students-cta__buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 22px;
}
.students-cta__btn {
  padding: 12px 28px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 14.5px;
  border-radius: 99px;
  text-decoration: none;
  transition: all .15s;
}
.students-cta__btn.primary {
  background: var(--honey);
  color: #fff;
}
.students-cta__btn.primary:hover {
  background: #a87a3a;
}
.students-cta__btn.ghost {
  background: transparent;
  color: var(--green-deep);
  border: 1px solid var(--green);
}
.students-cta__btn.ghost:hover {
  background: var(--green);
  color: #fff;
}

/* ============================================================
   /about/ 夫婦のこと ページ
   ============================================================ */

.about-hero {
  max-width: 1080px;
  margin: 32px auto 28px;
  padding: 0 32px;
}
.about-hero__inner {
  background: linear-gradient(135deg, #fdfbf3 0%, #f5e9c8 100%);
  border: 1.5px solid var(--honey);
  border-radius: 14px;
  padding: 44px 48px;
  text-align: center;
}
.about-hero__label {
  font-family: "Klee One", cursive;
  font-size: 14px;
  color: var(--honey);
  letter-spacing: 0.05em;
  margin-bottom: 14px;
}
.about-hero__title {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 32px;
  color: var(--green-deep);
  line-height: 1.5;
  margin: 0 0 18px;
}
.about-hero__lead {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 16px;
  line-height: 2.0;
  color: var(--text-soft);
  margin: 0;
}

.about-couple,
.about-family,
.about-mission,
.about-cta {
  max-width: 1080px;
  margin: 56px auto;
  padding: 0 32px;
}

.about-couple__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.about-couple__card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 32px 30px;
  text-align: center;
}
.about-couple__photo-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}
.about-couple__photo {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center center;
}
.about-couple__name {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--green-deep);
  margin-bottom: 6px;
}
.about-couple__role {
  font-family: "Klee One", cursive;
  font-size: 14px;
  color: var(--honey);
  margin-bottom: 18px;
  letter-spacing: 0.02em;
}
.about-couple__profile {
  text-align: left;
  border-top: 1px dashed var(--line);
  padding-top: 18px;
}
.about-couple__profile p {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 14.5px;
  line-height: 2.0;
  color: var(--text-soft);
  margin: 0;
}

.about-family__inner {
  background: linear-gradient(135deg, #f5f0e3 0%, #e8eedc 100%);
  border-left: 4px solid var(--green);
  border-radius: 4px;
  padding: 36px 40px;
}
.about-family__label {
  font-family: "Klee One", cursive;
  font-size: 14px;
  color: var(--honey);
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}
.about-family__inner h2 {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--green-deep);
  margin: 0 0 18px;
}
.about-family__inner p {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 15.5px;
  line-height: 2.0;
  color: var(--text-soft);
  margin: 0 0 16px;
}

.about-mission__inner {
  background: linear-gradient(135deg, #fdfbf3 0%, #f5e9c8 100%);
  border-left: 4px solid var(--honey);
  border-radius: 4px;
  padding: 36px 40px;
}
.about-mission__label {
  font-family: "Klee One", cursive;
  font-size: 14px;
  color: var(--honey);
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}
.about-mission__inner h2 {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--green-deep);
  margin: 0 0 18px;
}
.about-mission__lead {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 18px !important;
  line-height: 1.85 !important;
  color: var(--green-deep) !important;
  text-align: center;
  padding: 16px 24px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  margin: 0 0 22px !important;
}
.about-mission__inner p {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 15.5px;
  line-height: 2.0;
  color: var(--text-soft);
  margin: 0 0 16px;
}

.about-cta h2 {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--green-deep);
  text-align: center;
  margin: 0 0 28px;
}
.about-cta__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.about-cta__item {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 26px 24px;
  text-align: center;
  text-decoration: none;
  transition: all .15s;
}
.about-cta__item:hover {
  border-color: var(--green);
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(47, 66, 50, 0.1);
}
.about-cta__item h3 {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--green-deep);
  margin: 0 0 10px;
}
.about-cta__item p {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 13.5px;
  line-height: 1.85;
  color: var(--text-soft);
  margin: 0;
}

/* ============================================================
   /about/privacy/ /about/terms/ 法務系ページ共通
   ============================================================ */

.legal-page {
  max-width: 800px;
  margin: 32px auto 64px;
  padding: 0 32px;
}
.legal-page__inner {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 44px 48px;
}
.legal-page__label {
  font-family: "Klee One", cursive;
  font-size: 14px;
  color: var(--honey);
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  text-align: center;
}
.legal-page__title {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 26px;
  color: var(--green-deep);
  text-align: center;
  margin: 0 0 28px;
  line-height: 1.5;
}
.legal-page__intro {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 15px;
  line-height: 2.0;
  color: var(--text-soft);
  margin: 0 0 32px;
  padding: 18px 22px;
  background: var(--bg-warm);
  border-radius: 8px;
}
.legal-page h2 {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--green-deep);
  margin: 32px 0 14px;
  padding-left: 12px;
  border-left: 4px solid var(--honey);
  line-height: 1.5;
}
.legal-page p {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 15px;
  line-height: 2.0;
  color: var(--text-soft);
  margin: 0 0 14px;
}
.legal-page ul {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 15px;
  line-height: 2.0;
  color: var(--text-soft);
  padding-left: 1.4em;
  margin: 0 0 16px;
}
.legal-page li {
  margin-bottom: 6px;
}
.legal-page__date {
  margin-top: 40px !important;
  padding-top: 20px;
  border-top: 1px dashed var(--line);
  text-align: right;
  font-size: 14px !important;
  color: var(--text-mute) !important;
}
.legal-page a {
  color: var(--green);
  border-bottom: 1px dotted var(--green);
}

/* ============================================================
   スマホ対応
   ============================================================ */

@media (max-width: 720px) {
  .start-hero__inner,
  .students-hero__inner,
  .about-hero__inner {
    padding: 32px 24px;
  }
  .start-hero__title,
  .about-hero__title {
    font-size: 24px !important;
  }
  .students-hero__title {
    font-size: 22px !important;
  }
  .start-flow__item {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .start-flow__num {
    font-size: 28px;
  }
  .students-profile__grid,
  .about-couple__grid,
  .about-cta__list {
    grid-template-columns: 1fr;
  }
  .about-family__inner,
  .about-mission__inner {
    padding: 24px 22px;
  }
  .start-next__inner,
  .students-cta__inner {
    padding: 28px 22px;
  }
  .start-next__btn,
  .students-cta__btn {
    width: 100%;
    text-align: center;
  }
  .legal-page__inner {
    padding: 28px 22px;
  }
  .legal-page__title {
    font-size: 22px;
  }
}

/* === 特商法表記の表 === */
.tokushoho-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0 32px;
  font-family: "Zen Maru Gothic", sans-serif;
}
.tokushoho-table th,
.tokushoho-table td {
  border: 1px solid var(--line);
  padding: 16px 20px;
  text-align: left;
  vertical-align: top;
  font-size: 14.5px;
  line-height: 1.85;
}
.tokushoho-table th {
  background: var(--bg-warm);
  font-weight: 700;
  color: var(--green-deep);
  width: 30%;
  white-space: nowrap;
}
.tokushoho-table td {
  background: var(--bg-card);
  color: var(--text-soft);
}
.tokushoho-table td small {
  font-size: 13px;
  color: var(--text-mute);
  display: inline-block;
  margin-top: 4px;
  line-height: 1.7;
}
.tokushoho-table a {
  color: var(--green);
  border-bottom: 1px dotted var(--green);
}

@media (max-width: 720px) {
  .tokushoho-table th,
  .tokushoho-table td {
    display: block;
    width: 100%;
    border: none;
    padding: 12px 16px;
  }
  .tokushoho-table th {
    background: var(--green-deep);
    color: #fff;
    font-size: 13.5px;
    padding: 8px 16px;
    border-radius: 4px;
    margin-top: 8px;
  }
  .tokushoho-table td {
    border-bottom: 1px dashed var(--line);
    padding-bottom: 16px;
  }
  .tokushoho-table tr:last-child td {
    border-bottom: none;
  }
}

/* === ★ about-cta カードをリンクとして明確に === */
.about-cta__item {
  position: relative;
  cursor: pointer;
}
.about-cta__item::after {
  content: "→";
  display: block;
  margin-top: 12px;
  font-size: 18px;
  color: var(--honey);
  font-weight: 700;
  transition: transform .2s;
}
.about-cta__item:hover::after {
  transform: translateX(4px);
}

/* === ★ start/students/about のレイアウト調整：左寄りすぎを修正 === */

/* start のFAQ・FLOW・NEXT のテキスト中央寄せ */
.start-flow__item {
  text-align: left;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.start-faq__item {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* students のプロフィール・voice 中央寄せ */
.students-profile__card {
  text-align: left;
}
.students-voice__item {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* about のテキスト全体を中央寄せ */
.about-couple__card {
  text-align: center;
}
.about-couple__profile {
  text-align: left;
}
.about-family__inner,
.about-mission__inner {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.about-cta {
  text-align: center;
}

/* ★ コンテナの最大幅を抑えて中央集約 */
.start-flow,
.start-faq,
.start-next,
.students-profile,
.students-voice,
.students-cta,
.about-couple,
.about-family,
.about-mission,
.about-cta {
  max-width: 960px;  /* 1080→960 */
}

/* === 受講生のこと：moreメッセージ === */
.students-voice__more {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 15px;
  line-height: 1.95;
  color: var(--text-soft);
  text-align: center;
  margin: 32px 0 0;
  padding: 22px 26px;
  background: var(--bg-warm);
  border-radius: 10px;
  border: 1px dashed var(--line);
}
