/* ============================================================
   オガタの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: #c2924a;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(194, 146, 74, 0.28);
}
.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: #c2924a;
  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: #a87a3a;
}
.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);
}

/* ===== Minimal Line Search ===== */
.mini-search {
  display: inline-flex;
  align-items: center;
  position: relative;
}
.mini-search__toggle {
  background: transparent;
  border: none;
  padding: 8px;
  cursor: pointer;
  color: #c2924a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  transition: transform .2s, color .2s;
  font: inherit;
}
.mini-search__toggle:hover { transform: scale(1.08); color: #a87a3a; }
.mini-search__field {
  position: relative;
  width: 0;
  overflow: hidden;
  transition: width .5s cubic-bezier(.55, 0, .15, 1);
  display: flex;
  align-items: center;
}
.mini-search__field::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 6px;
  height: 1.5px;
  background: #c2924a;
  width: 0;
  transition: width .45s cubic-bezier(.55, 0, .15, 1) .05s;
}
.mini-search__input {
  width: 100%;
  border: none;
  background: transparent;
  font-family: "Noto Sans JP", -apple-system, sans-serif;
  font-size: 16px;
  color: #2f4232;
  padding: 8px 4px 10px 12px;
  outline: none;
  opacity: 0;
  transition: opacity .25s ease .35s;
  min-width: 0;
}
.mini-search__input::placeholder { color: #b8b8a8; font-style: italic; }
.mini-search__submit {
  background: transparent;
  border: none;
  cursor: pointer;
  color: #c2924a;
  padding: 6px 10px;
  font-family: "Klee One", cursive;
  font-size: 13px;
  font-weight: 600;
  opacity: 0;
  transition: opacity .25s ease .4s;
  white-space: nowrap;
  margin-left: 4px;
}
.mini-search__submit:hover { color: #a87a3a; }
.mini-search.is-open .mini-search__field { width: 320px; }
.mini-search.is-open .mini-search__field::after { width: 100%; }
.mini-search.is-open .mini-search__input { opacity: 1; }
.mini-search.is-open .mini-search__submit { opacity: 1; }

@media (max-width: 600px) {
  .mini-search.is-open .mini-search__field { width: 220px; }
  .mini-search__input { font-size: 15px; }
}

/* ===== Search section on top & blog list (centered, with the mini-search) ===== */
.search-section {
  padding: 56px 24px 60px;
  background: #fdfaf2;
  border-top: 1px solid #e8dfc6;
  border-bottom: 1px solid #e8dfc6;
  margin: 36px 0 0;
  text-align: center;
}
.search-section__inner { max-width: 720px; margin: 0 auto; }
.search-section__small {
  font-family: "Klee One", cursive;
  font-size: 14px;
  color: #c2924a;
  letter-spacing: .04em;
  margin-bottom: 10px;
}
.search-section__title {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: #2f4232;
  line-height: 1.55;
  margin: 0 0 10px;
}
.search-section__lead {
  font-size: 14px;
  color: #6a7868;
  line-height: 1.85;
  margin: 0 0 28px;
}
.search-section .mini-search { justify-content: center; }
@media (max-width: 600px) {
  .search-section { padding: 40px 18px 44px; }
  .search-section__title { font-size: 18px; }
}

/* blog list page search wrapper */
.blog-list-search {
  margin: 8px 0 32px;
  padding: 26px 24px;
  background: #fdfaf2;
  border-radius: 14px;
  border: 1px solid #e8dfc6;
  text-align: center;
}

/* ===== Nav search icon (header) — uses mini-search; just spacing ===== */
.nav-primary .mini-search { margin-left: 6px; }
@media (max-width: 900px) {
  /* モバイルメニュー内では展開済みフォームとして見せる方が自然 */
  .nav-primary .mini-search .mini-search__field { width: 100%; }
  .nav-primary .mini-search .mini-search__field::after { width: 100%; }
  .nav-primary .mini-search .mini-search__input { opacity: 1; padding-left: 4px; }
  .nav-primary .mini-search .mini-search__submit { opacity: 1; }
  .nav-primary .mini-search { width: 100%; padding: 8px 12px; }
}


/* main全体をふわっと表示 */
#main {
  animation: pageFadeSlide .65s cubic-bezier(.22, .9, .3, 1) both;
}

/* セクションごとの時間差（順次フェードイン） */
#main > section,
#main > nav.breadcrumb {
  animation: pageFadeSlide .7s cubic-bezier(.22, .9, .3, 1) both;
}
#main > nav.breadcrumb { animation-delay: .05s; }
#main > section:nth-of-type(1) { animation-delay: .12s; }
#main > section:nth-of-type(2) { animation-delay: .22s; }
#main > section:nth-of-type(3) { animation-delay: .32s; }
#main > section:nth-of-type(4) { animation-delay: .40s; }
#main > section:nth-of-type(5) { animation-delay: .46s; }
#main > section:nth-of-type(n+6) { animation-delay: .50s; }

/* 動きを減らす設定をしているユーザーには無効化 */
@media (prefers-reduced-motion: reduce) {
  #main,
  #main > section,
  #main > nav.breadcrumb {
    animation: none !important;
  }
}

/* ===== Reveal Animation System (inspired by ando-shippo) ===== */

/* 基本: スクロールで画面内に入った時にふわっと現れる */
[data-reveal] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.4s cubic-bezier(.16, 1, .3, 1), transform 1.4s cubic-bezier(.16, 1, .3, 1);
}
[data-reveal].is-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* 上から下に降りてくるバリエーション */
[data-reveal="down"] {
  transform: translateY(-30px);
}

/* 拡大しながら浮かび上がる(画像向け) */
[data-reveal="zoom"] {
  transform: translateY(20px) scale(.96);
}
[data-reveal="zoom"].is-revealed {
  transform: translateY(0) scale(1);
}

/* 横からスライド */
[data-reveal="left"] {
  transform: translateX(-40px);
  opacity: 0;
}
[data-reveal="left"].is-revealed {
  transform: translateX(0);
  opacity: 1;
}
[data-reveal="right"] {
  transform: translateX(40px);
  opacity: 0;
}
[data-reveal="right"].is-revealed {
  transform: translateX(0);
  opacity: 1;
}

/* 遅延つきの順次表示 */
[data-reveal-delay="1"] { transition-delay: .1s; }
[data-reveal-delay="2"] { transition-delay: .2s; }
[data-reveal-delay="3"] { transition-delay: .3s; }
[data-reveal-delay="4"] { transition-delay: .45s; }
[data-reveal-delay="5"] { transition-delay: .6s; }
[data-reveal-delay="6"] { transition-delay: .75s; }
[data-reveal-delay="7"] { transition-delay: .9s; }

/* ===== テキスト分割アニメーション (1行ずつ) ===== */
.split-lines {
  overflow: hidden;
}
.split-lines .line {
  display: block;
  overflow: hidden;
}
.split-lines .line__inner {
  display: block;
  transform: translateY(110%);
  transition: transform 1.2s cubic-bezier(.16, 1, .3, 1);
}
.split-lines.is-revealed .line__inner {
  transform: translateY(0);
}
.split-lines.is-revealed .line:nth-child(2) .line__inner { transition-delay: .12s; }
.split-lines.is-revealed .line:nth-child(3) .line__inner { transition-delay: .24s; }
.split-lines.is-revealed .line:nth-child(4) .line__inner { transition-delay: .36s; }

/* ===== Hero entrance (special: starts on load) ===== */
.home-hero .home-hero__greeting,
.home-hero .home-hero__title,
.home-hero .home-hero__lead,
.home-hero .author-credit {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1.3s cubic-bezier(.16, 1, .3, 1), transform 1.3s cubic-bezier(.16, 1, .3, 1);
}
body.hero-revealed .home-hero .home-hero__greeting { opacity: 1; transform: translateY(0); transition-delay: .15s; }
body.hero-revealed .home-hero .home-hero__title    { opacity: 1; transform: translateY(0); transition-delay: .35s; }
body.hero-revealed .home-hero .home-hero__lead     { opacity: 1; transform: translateY(0); transition-delay: .65s; }
body.hero-revealed .home-hero .author-credit       { opacity: 1; transform: translateY(0); transition-delay: .85s; }

/* ===== 軽いパララックス (スクロール量に応じて背景がわずかに動く) ===== */
.parallax-bg {
  will-change: transform;
}

/* ===== reduced motion 対応 ===== */
@media (prefers-reduced-motion: reduce) {
  [data-reveal],
  .split-lines .line__inner,
  .home-hero .home-hero__greeting,
  .home-hero .home-hero__title,
  .home-hero .home-hero__lead,
  .home-hero .author-credit {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ===== About系セクション 上品リニューアル(全枠を撤去) ===== */
.about-hero { 
  max-width: none !important; 
  padding: 100px 24px 60px !important; 
  margin: 0 !important; 
}
.about-hero__inner {
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  max-width: 720px;
  margin: 0 auto;
}
.about-hero__label {
  font-family: "Cormorant Garamond", "Klee One", serif !important;
  font-style: italic !important;
  font-size: 14px !important;
  letter-spacing: .12em !important;
  color: #c2924a !important;
  margin-bottom: 18px !important;
}
.about-hero__title {
  font-size: clamp(32px, 5vw, 48px) !important;
  letter-spacing: .04em !important;
  color: #2a2520 !important;
  margin-bottom: 28px !important;
  line-height: 1.5 !important;
}
.about-hero__lead {
  font-size: 15px !important;
  line-height: 2.05 !important;
  color: #6a635a !important;
}

/* about-couple カードを枠なし・写真大きく・上品に */
.about-couple { padding: 60px 24px !important; margin: 0 !important; max-width: none !important; }
.about-couple__grid { max-width: 1080px; margin: 0 auto; gap: 60px !important; }
.about-couple__card {
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  text-align: center;
  box-shadow: none !important;
}
.about-couple__photo-wrap {
  width: 140px !important; height: 140px !important;
  margin: 0 auto 24px !important;
  border: 1px solid #d7cfbe !important;
}
.about-couple__photo { border-radius: 50% !important; }
.about-couple__name {
  font-size: 19px !important;
  letter-spacing: .04em;
  margin-bottom: 6px !important;
  color: #2a2520 !important;
}
.about-couple__role {
  font-family: "Cormorant Garamond", "Klee One", serif !important;
  font-style: italic !important;
  font-size: 13px !important;
  letter-spacing: .08em !important;
  color: #c2924a !important;
  margin-bottom: 24px !important;
  padding-bottom: 24px !important;
  border-bottom: 1px solid #d7cfbe !important;
  border-top: none !important;
}
.about-couple__profile p {
  font-size: 14.5px !important;
  line-height: 2.05 !important;
  color: #6a635a !important;
  text-align: left;
}

/* family / mission も同じく枠なし、罫線で区切り */
.about-family,
.about-mission {
  padding: 80px 24px !important;
  margin: 0 !important;
  max-width: none !important;
}
.about-family { background: #fdfaf2; }
.about-mission { background: #f3ecda; }
.about-family__inner,
.about-mission__inner {
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  border-left: none !important;
  padding: 0 !important;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.about-family__label,
.about-mission__label {
  font-family: "Cormorant Garamond", "Klee One", serif !important;
  font-style: italic !important;
  font-size: 14px !important;
  letter-spacing: .12em !important;
  color: #c2924a !important;
  margin-bottom: 14px !important;
}
.about-family__inner h2,
.about-mission__inner h2 {
  font-size: clamp(26px, 3.5vw, 36px) !important;
  letter-spacing: .04em !important;
  color: #2a2520 !important;
  margin-bottom: 32px !important;
  line-height: 1.5 !important;
}
.about-family__inner p,
.about-mission__inner p {
  font-size: 15px !important;
  line-height: 2.05 !important;
  color: #6a635a !important;
  text-align: left;
  margin-bottom: 1.5em !important;
}
.about-mission__lead {
  background: transparent !important;
  border-radius: 0 !important;
  padding: 24px 0 !important;
  margin: 0 0 32px !important;
  border-top: 1px solid #c2924a;
  border-bottom: 1px solid #c2924a;
  font-size: 18px !important;
  font-weight: 700 !important;
  color: #2a2520 !important;
  letter-spacing: .04em;
}

/* CTA リスト */
.about-cta { padding: 80px 24px !important; margin: 0 !important; max-width: none !important; }
.about-cta h2 {
  font-size: clamp(24px, 3vw, 30px) !important;
  letter-spacing: .04em !important;
  margin-bottom: 48px !important;
  text-align: center;
  color: #2a2520 !important;
}
.about-cta__list {
  max-width: 1080px;
  margin: 0 auto;
  gap: 0 !important;
}
.about-cta__item {
  background: transparent !important;
  border: 1px solid #d7cfbe !important;
  border-radius: 0 !important;
  padding: 36px 28px !important;
  margin: -0.5px !important;
  box-shadow: none !important;
  transition: background .25s !important;
}
.about-cta__item:hover {
  background: #fdfaf2 !important;
  transform: none !important;
  border-color: #c2924a !important;
  box-shadow: none !important;
}
.about-cta__item h3 {
  font-size: 17px !important;
  letter-spacing: .04em !important;
  color: #2a2520 !important;
  margin-bottom: 12px !important;
}
.about-cta__item p {
  font-size: 13.5px !important;
  line-height: 1.95 !important;
  color: #6a635a !important;
}

/* breadcrumb もシンプルに */
.breadcrumb {
  max-width: 1080px;
  margin: 24px auto 0;
  padding: 0 32px;
  font-size: 12.5px;
  color: #6a635a;
  letter-spacing: .04em;
}
.breadcrumb a { color: #c2924a; text-decoration: none; }
.breadcrumb a:hover { color: #a87a3a; }
.breadcrumb .sep { margin: 0 8px; color: #c2924a; opacity: .5; }

@media (max-width: 720px) {
  .about-hero { padding: 60px 20px 40px !important; }
  .about-couple__grid { grid-template-columns: 1fr !important; gap: 40px !important; }
  .about-family, .about-mission { padding: 56px 20px !important; }
  .about-cta__list { grid-template-columns: 1fr !important; }
  .about-cta__item { margin: 0 !important; }
  .about-cta__item + .about-cta__item { margin-top: -1px !important; }
}

/* ===== Page hero standardization (all pages) ===== */
.start-hero, .students-hero, .contact-hero, .consulting-hero, .videos-hero,
.search-page > .search-page__small + .search-page__heading {
  /* 個別調整は子セレクタで */
}

.start-hero, .students-hero, .contact-hero, .consulting-hero, .videos-hero {
  max-width: none !important;
  padding: 100px 24px 60px !important;
  margin: 0 !important;
  text-align: center;
}
.start-hero__inner, .students-hero__inner, .contact-hero__inner,
.consulting-hero__inner, .videos-hero__inner {
  background: transparent !important;
  border: none !important;
  border-left: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  max-width: 720px !important;
  margin: 0 auto !important;
  box-shadow: none !important;
}
.start-hero__label, .students-hero__label, .contact-hero__label,
.consulting-hero__label, .videos-hero__label {
  font-family: "Cormorant Garamond", "Klee One", serif !important;
  font-style: italic !important;
  font-size: 14px !important;
  letter-spacing: .12em !important;
  color: #c2924a !important;
  margin-bottom: 18px !important;
}
.start-hero__title, .start-hero__inner h1,
.students-hero__title, .students-hero__inner h1,
.contact-hero__title, .contact-hero__inner h1,
.consulting-hero__title, .consulting-hero__inner h1,
.videos-hero__title, .videos-hero__inner h1 {
  font-family: "Zen Maru Gothic", sans-serif !important;
  font-weight: 700 !important;
  font-size: clamp(30px, 4.5vw, 46px) !important;
  letter-spacing: .04em !important;
  color: #2a2520 !important;
  margin: 0 0 28px !important;
  line-height: 1.5 !important;
}
.start-hero__lead, .start-hero__inner p,
.students-hero__lead, .students-hero__inner p,
.contact-hero__lead, .contact-hero__inner p,
.consulting-hero__lead, .consulting-hero__inner p,
.videos-hero__lead, .videos-hero__inner p,
.videos-hero__text {
  font-size: 15px !important;
  line-height: 2.05 !important;
  color: #6a635a !important;
  text-align: center;
}

/* Hero icons (consulting-hero__icon, videos-hero__icon等) */
.consulting-hero__icon, .videos-hero__icon, .start-hero__icon {
  margin: 0 auto 24px !important;
  background: transparent !important;
  border: 1px solid #c2924a !important;
  width: 56px !important; height: 56px !important;
  color: #c2924a !important;
  box-shadow: none !important;
}

/* ===== カード型セクションを枠なしに ===== */
/* start-flow / start-faq / start-next / students-voice / students-profile / 
   consulting-feature / consulting-target / consulting-vs / consulting-pitch / consulting-what / 
   videos-main / videos-couple / contact-form-section など */
.start-flow, .start-faq, .start-next,
.students-profile, .students-voice, .students-cta,
.consulting-feature, .consulting-target, .consulting-vs,
.consulting-pitch, .consulting-what, .consulting-form-section,
.videos-main, .videos-couple,
.contact-form-section {
  padding: 80px 24px !important;
  margin: 0 !important;
  max-width: none !important;
}
/* 偶数番セクションを薄ベージュで交互に */
.start-flow, .start-next,
.students-voice, .students-cta,
.consulting-target, .consulting-pitch, .consulting-form-section,
.videos-couple {
  background: #fdfaf2;
}
.consulting-vs { background: #f3ecda; }

/* セクション内コンテンツ幅 */
.start-flow > *, .start-faq > *, .start-next > *,
.students-profile > *, .students-voice > *, .students-cta > *,
.consulting-feature > *, .consulting-target > *, .consulting-vs > *,
.consulting-pitch > *, .consulting-what > *, .consulting-form-section > *,
.videos-main > *, .videos-couple > *,
.contact-form-section > * {
  max-width: 1080px;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* 各セクションの h2 を統一 */
.start-flow h2, .start-faq h2, .start-next h2,
.students-profile h2, .students-voice h2, .students-cta h2,
.consulting-feature h2, .consulting-target h2, .consulting-vs h2,
.consulting-pitch h2, .consulting-what h2, .consulting-form-section h2,
.videos-main h2, .videos-couple h2,
.contact-form-section h2 {
  font-family: "Zen Maru Gothic", sans-serif !important;
  font-weight: 700 !important;
  font-size: clamp(26px, 3.5vw, 36px) !important;
  letter-spacing: .04em !important;
  color: #2a2520 !important;
  text-align: center;
  margin: 0 0 48px !important;
  line-height: 1.5 !important;
}

/* 内部のラベル(英字eyebrow風) */
.start-flow__label, .start-faq__label, .start-next__label,
.students-profile__label, .students-voice__label, .students-cta__label,
.consulting-feature__label, .consulting-target__label, .consulting-vs__label,
.consulting-pitch__label, .consulting-what__label,
.videos-main__label, .videos-couple__label,
.contact-form-section__label {
  font-family: "Cormorant Garamond", "Klee One", serif !important;
  font-style: italic !important;
  font-size: 14px !important;
  letter-spacing: .12em !important;
  color: #c2924a !important;
  text-align: center;
  display: block;
  margin-bottom: 14px !important;
}

/* 中のカード(item, card)の枠を削除して罫線分割に */
.start-flow__list, .start-faq__list, .start-next__list,
.students-voice__list, .students-profile__grid,
.consulting-feature__grid, .consulting-target__list,
.consulting-vs__grid, .consulting-pitch__list,
.consulting-what__list,
.videos-grid, .videos-couple__grid {
  gap: 0 !important;
}

.start-flow__item, .start-faq__item, .start-next__item,
.students-voice__item, .students-profile__card,
.consulting-feature__item, .consulting-target__item,
.consulting-vs__item, .consulting-pitch__item,
.consulting-what__item,
.videos-couple__card {
  background: transparent !important;
  border: 1px solid #d7cfbe !important;
  border-radius: 0 !important;
  padding: 32px 28px !important;
  margin: -0.5px !important;
  box-shadow: none !important;
  transition: background .25s !important;
}

/* ボタンを上品に */
.start-hero__cta, .students-hero__cta, .contact-hero__cta,
.consulting-hero__cta, .videos-hero__cta,
.start-next__cta, .students-cta__btn,
.consulting-cta__btn, .consulting-pitch__cta {
  background: transparent !important;
  border: 1px solid #c2924a !important;
  color: #c2924a !important;
  border-radius: 0 !important;
  padding: 18px 44px !important;
  font-weight: 500 !important;
  letter-spacing: .08em !important;
  font-size: 14px !important;
  box-shadow: none !important;
  transition: background .25s, color .25s !important;
}
.start-hero__cta:hover, .students-hero__cta:hover, .contact-hero__cta:hover,
.consulting-hero__cta:hover, .videos-hero__cta:hover,
.start-next__cta:hover, .students-cta__btn:hover,
.consulting-cta__btn:hover, .consulting-pitch__cta:hover {
  background: #c2924a !important;
  color: #fff !important;
  transform: none !important;
}

/* 動画カード(videos-grid内の各card) */
.video-card {
  border: 1px solid #d7cfbe !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  margin: -0.5px !important;
  transition: opacity .25s !important;
}
.video-card:hover { opacity: .9 !important; transform: none !important; box-shadow: none !important; }
.video-card__thumb { border-radius: 0 !important; }

@media (max-width: 720px) {
  .start-hero, .students-hero, .contact-hero, .consulting-hero, .videos-hero {
    padding: 60px 20px 40px !important;
  }
  .start-flow, .start-faq, .start-next,
  .students-profile, .students-voice, .students-cta,
  .consulting-feature, .consulting-target, .consulting-vs,
  .consulting-pitch, .consulting-what, .consulting-form-section,
  .videos-main, .videos-couple,
  .contact-form-section {
    padding: 56px 20px !important;
  }
}

/* ===== Hero entrance for all pages ===== */
.start-hero__inner > *,
.students-hero__inner > *,
.contact-hero__inner > *,
.consulting-hero__inner > *,
.videos-hero__inner > *,
.about-hero__inner > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1.3s cubic-bezier(.16, 1, .3, 1), transform 1.3s cubic-bezier(.16, 1, .3, 1);
}
body.hero-revealed .start-hero__inner > *,
body.hero-revealed .students-hero__inner > *,
body.hero-revealed .contact-hero__inner > *,
body.hero-revealed .consulting-hero__inner > *,
body.hero-revealed .videos-hero__inner > *,
body.hero-revealed .about-hero__inner > * {
  opacity: 1;
  transform: translateY(0);
}
body.hero-revealed .start-hero__inner > *:nth-child(1),
body.hero-revealed .students-hero__inner > *:nth-child(1),
body.hero-revealed .contact-hero__inner > *:nth-child(1),
body.hero-revealed .consulting-hero__inner > *:nth-child(1),
body.hero-revealed .videos-hero__inner > *:nth-child(1),
body.hero-revealed .about-hero__inner > *:nth-child(1) { transition-delay: .15s; }
body.hero-revealed .start-hero__inner > *:nth-child(2),
body.hero-revealed .students-hero__inner > *:nth-child(2),
body.hero-revealed .contact-hero__inner > *:nth-child(2),
body.hero-revealed .consulting-hero__inner > *:nth-child(2),
body.hero-revealed .videos-hero__inner > *:nth-child(2),
body.hero-revealed .about-hero__inner > *:nth-child(2) { transition-delay: .35s; }
body.hero-revealed .start-hero__inner > *:nth-child(3),
body.hero-revealed .students-hero__inner > *:nth-child(3),
body.hero-revealed .contact-hero__inner > *:nth-child(3),
body.hero-revealed .consulting-hero__inner > *:nth-child(3),
body.hero-revealed .videos-hero__inner > *:nth-child(3),
body.hero-revealed .about-hero__inner > *:nth-child(3) { transition-delay: .55s; }
body.hero-revealed .start-hero__inner > *:nth-child(n+4),
body.hero-revealed .students-hero__inner > *:nth-child(n+4),
body.hero-revealed .contact-hero__inner > *:nth-child(n+4),
body.hero-revealed .consulting-hero__inner > *:nth-child(n+4),
body.hero-revealed .videos-hero__inner > *:nth-child(n+4),
body.hero-revealed .about-hero__inner > *:nth-child(n+4) { transition-delay: .75s; }

@media (prefers-reduced-motion: reduce) {
  .start-hero__inner > *, .students-hero__inner > *, .contact-hero__inner > *,
  .consulting-hero__inner > *, .videos-hero__inner > *, .about-hero__inner > * {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ===== 全ページ: 文字サイズ底上げ & 中央寄せ修正 ===== */
.start-flow p, .start-flow li,
.start-faq p, .start-faq li, .start-faq dt, .start-faq dd,
.start-next p, .start-next li,
.students-profile p, .students-voice p, .students-cta p,
.consulting-feature p, .consulting-target p, .consulting-target li,
.consulting-vs p, .consulting-vs li,
.consulting-pitch p, .consulting-pitch li,
.consulting-what p, .consulting-what li,
.consulting-form-section p,
.videos-main p, .videos-couple p,
.contact-form-section p,
.about-couple__profile p,
.about-family__inner p,
.about-mission__inner p,
.about-cta__item p {
  font-size: 16px !important;
  line-height: 2.1 !important;
  color: #4a443c !important;
}

.start-flow__item h3, .start-faq__item h3, .start-next__item h3,
.students-voice__item h3,
.consulting-feature__item h3, .consulting-target__item h3,
.consulting-vs__item h3, .consulting-pitch__item h3,
.consulting-what__item h3,
.about-cta__item h3 {
  font-size: 18px !important;
  line-height: 1.7 !important;
  color: #2a2520 !important;
  margin-bottom: 14px !important;
}

.about-hero__lead, .start-hero__lead, .students-hero__lead,
.contact-hero__lead, .consulting-hero__lead, .videos-hero__lead,
.start-hero__inner p, .students-hero__inner p, .contact-hero__inner p,
.consulting-hero__inner p, .videos-hero__inner p {
  font-size: 16px !important;
  line-height: 2.1 !important;
}

/* ===== 中央寄せ修正: 全セクションのインナーを確実にcenter ===== */
/* セクション本体 - flex化はせず、子要素のmax-width+autoマージンで中央寄せ */
/* 各セクションの直下要素を確実にmax-width 1080pxで中央寄せ */
.start-flow > *, .start-faq > *, .start-next > *,
.students-profile > *, .students-voice > *, .students-cta > *,
.consulting-feature > *, .consulting-target > *, .consulting-vs > *,
.consulting-pitch > *, .consulting-what > *, .consulting-form-section > *,
.videos-main > *, .videos-couple > *,
.contact-form-section > *,
.about-couple > *, .about-family > *, .about-mission > *, .about-cta > * {
  width: 100% !important;
  max-width: 1080px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  box-sizing: border-box;
}

.section-head {
  width: 100%;
  max-width: 1080px;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* ===== Andou-shippo風 上品な順次フェードイン (上書き) ===== */
[data-reveal] {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1.6s cubic-bezier(.16, 1, .3, 1), transform 1.6s cubic-bezier(.16, 1, .3, 1);
}
[data-reveal].is-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* セクション内の子要素も順次リズムよく出る */
[data-reveal] .section-head,
[data-reveal] > .start-flow__list > *,
[data-reveal] > .start-faq__list > *,
[data-reveal] > .start-next__list > *,
[data-reveal] > .students-voice__list > *,
[data-reveal] > .students-profile__grid > *,
[data-reveal] > .consulting-feature__grid > *,
[data-reveal] > .consulting-target__list > *,
[data-reveal] > .consulting-vs__grid > *,
[data-reveal] > .consulting-pitch__list > *,
[data-reveal] > .consulting-what__list > *,
[data-reveal] .videos-grid > *,
[data-reveal] .recent__grid > *,
[data-reveal] .cats__grid > *,
[data-reveal] > .about-couple__grid > *,
[data-reveal] > .about-cta__list > *,
[data-reveal] > .values-row__item {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 1.4s cubic-bezier(.16, 1, .3, 1), transform 1.4s cubic-bezier(.16, 1, .3, 1);
}
[data-reveal].is-revealed .section-head,
[data-reveal].is-revealed > .start-flow__list > *,
[data-reveal].is-revealed > .start-faq__list > *,
[data-reveal].is-revealed > .start-next__list > *,
[data-reveal].is-revealed > .students-voice__list > *,
[data-reveal].is-revealed > .students-profile__grid > *,
[data-reveal].is-revealed > .consulting-feature__grid > *,
[data-reveal].is-revealed > .consulting-target__list > *,
[data-reveal].is-revealed > .consulting-vs__grid > *,
[data-reveal].is-revealed > .consulting-pitch__list > *,
[data-reveal].is-revealed > .consulting-what__list > *,
[data-reveal].is-revealed .videos-grid > *,
[data-reveal].is-revealed .recent__grid > *,
[data-reveal].is-revealed .cats__grid > *,
[data-reveal].is-revealed > .about-couple__grid > *,
[data-reveal].is-revealed > .about-cta__list > *,
[data-reveal].is-revealed > .values-row__item {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal].is-revealed > * > *:nth-child(1),
[data-reveal].is-revealed > .start-flow__list > *:nth-child(1),
[data-reveal].is-revealed > .start-faq__list > *:nth-child(1),
[data-reveal].is-revealed > .start-next__list > *:nth-child(1),
[data-reveal].is-revealed .recent__grid > *:nth-child(1),
[data-reveal].is-revealed .cats__grid > *:nth-child(1),
[data-reveal].is-revealed .videos-grid > *:nth-child(1) { transition-delay: .15s; }
[data-reveal].is-revealed > .start-flow__list > *:nth-child(2),
[data-reveal].is-revealed > .start-faq__list > *:nth-child(2),
[data-reveal].is-revealed > .start-next__list > *:nth-child(2),
[data-reveal].is-revealed .recent__grid > *:nth-child(2),
[data-reveal].is-revealed .cats__grid > *:nth-child(2),
[data-reveal].is-revealed .videos-grid > *:nth-child(2),
[data-reveal].is-revealed > .values-row__item:nth-child(2) { transition-delay: .3s; }
[data-reveal].is-revealed > .start-flow__list > *:nth-child(3),
[data-reveal].is-revealed > .start-faq__list > *:nth-child(3),
[data-reveal].is-revealed > .start-next__list > *:nth-child(3),
[data-reveal].is-revealed .recent__grid > *:nth-child(3),
[data-reveal].is-revealed .cats__grid > *:nth-child(3),
[data-reveal].is-revealed .videos-grid > *:nth-child(3),
[data-reveal].is-revealed > .values-row__item:nth-child(3) { transition-delay: .45s; }
[data-reveal].is-revealed > .start-flow__list > *:nth-child(4),
[data-reveal].is-revealed > .start-faq__list > *:nth-child(4),
[data-reveal].is-revealed > .start-next__list > *:nth-child(4),
[data-reveal].is-revealed .recent__grid > *:nth-child(4),
[data-reveal].is-revealed .cats__grid > *:nth-child(4),
[data-reveal].is-revealed .videos-grid > *:nth-child(4) { transition-delay: .6s; }
[data-reveal].is-revealed > .start-flow__list > *:nth-child(n+5),
[data-reveal].is-revealed > .start-faq__list > *:nth-child(n+5),
[data-reveal].is-revealed > .start-next__list > *:nth-child(n+5),
[data-reveal].is-revealed .recent__grid > *:nth-child(n+5),
[data-reveal].is-revealed .cats__grid > *:nth-child(n+5),
[data-reveal].is-revealed .videos-grid > *:nth-child(n+5) { transition-delay: .75s; }

/* ===== 大見出しを1行ずつタイピング風に出す ===== */
.about-hero__title, .start-hero__title, .students-hero__title,
.contact-hero__title, .consulting-hero__title, .videos-hero__title,
.section-head h2, .home-hero__title {
  display: block;
}
.reveal-text-line {
  display: block;
  overflow: hidden;
  position: relative;
}
.reveal-text-line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: currentColor;
  transform: scaleX(1);
  transform-origin: right center;
  transition: transform 1.2s cubic-bezier(.86, 0, .07, 1);
}
.is-revealed .reveal-text-line::after,
body.hero-revealed .reveal-text-line::after {
  transform: scaleX(0);
  transition-delay: .2s;
}

/* ===== 画像のスロームームーム ===== */
.couple__photo, .recent-card__thumb img,
.video-card__thumb img, .lp-tool-card img,
.about-couple__photo, .home-hero__photo {
  transition: transform 1.4s cubic-bezier(.16, 1, .3, 1);
}
[data-reveal].is-revealed .couple__photo,
[data-reveal].is-revealed .recent-card__thumb img,
[data-reveal].is-revealed .video-card__thumb img,
[data-reveal].is-revealed .lp-tool-card img,
[data-reveal].is-revealed .about-couple__photo {
  /* 画像は静止からスムーズに表示。スクロールでズームしない方が上品 */
}

/* スクロール量に応じて画像がゆっくりズーム(parallax-zoom) */
.parallax-zoom {
  overflow: hidden;
}
.parallax-zoom > img {
  transform: scale(1.08);
  transition: transform 12s linear;
}
.parallax-zoom.is-active > img {
  transform: scale(1);
}

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  [data-reveal], [data-reveal] * {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .reveal-text-line::after { display: none !important; }
}

/* ===== section-head とパンくずを 720px max-widthで中央寄せ ===== */
.section-head {
  max-width: 720px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: left;
  padding: 0 24px;
}
.start-flow__list, .start-faq__list, .start-next__list {
  max-width: 720px !important;
  margin: 0 auto !important;
}
.breadcrumb {
  max-width: 720px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding: 0 24px;
}
@media (min-width: 900px) {
  .section-head, .breadcrumb,
  .start-flow__list, .start-faq__list, .start-next__list {
    padding-left: 0;
    padding-right: 0;
  }
}

/* ===== Header refinement (final) ===== */
/* サブタイトルを完全に非表示 */
.site-logo__sub { display: none !important; }

/* ロゴ全体をシンプル&コンパクトに */
.site-logo__name {
  font-size: 18px !important;
  letter-spacing: .04em !important;
  white-space: nowrap;
}
.site-logo__badge { display: none !important; }
.site-logo {
  gap: 0 !important;
  padding: 0 !important;
}

/* ヘッダーのpadding調整 */
.site-header {
  padding: 18px 40px !important;
}

/* ナビ項目間の余白を整える */
.nav-primary {
  gap: 2px !important;
}
.nav-primary a {
  padding: 8px 14px !important;
  font-size: 13.5px !important;
  white-space: nowrap;
  letter-spacing: .03em;
}

/* ===== コンテンツ最大幅を 1100px に拡張 ===== */
.section-head,
.breadcrumb,
.start-flow__list, .start-faq__list, .start-next__list {
  max-width: 1100px !important;
  padding: 0 32px !important;
}
@media (min-width: 1200px) {
  .section-head, .breadcrumb,
  .start-flow__list, .start-faq__list, .start-next__list {
    padding: 0 !important;
  }
}

.start-flow > *, .start-faq > *, .start-next > *,
.students-profile > *, .students-voice > *, .students-cta > *,
.consulting-feature > *, .consulting-target > *, .consulting-vs > *,
.consulting-pitch > *, .consulting-what > *, .consulting-form-section > *,
.videos-main > *, .videos-couple > *,
.contact-form-section > *,
.about-couple > *, .about-family > *, .about-mission > *, .about-cta > * {
  max-width: 1100px !important;
}

/* ヒーロー内の幅も同じく拡張 */
.about-hero__inner, .start-hero__inner, .students-hero__inner,
.contact-hero__inner, .consulting-hero__inner, .videos-hero__inner {
  max-width: 880px !important;  /* ヒーローはやや絞ってリーダブルに */
}

@media (max-width: 900px) {
  .site-header { padding: 14px 20px !important; }
  .site-logo__name { font-size: 16px !important; }
  .nav-primary a { padding: 8px 10px !important; font-size: 13px !important; }
}

/* ===== 中央寄せ強制(margin auto) ===== */
.section-head,
.breadcrumb,
.start-flow__list, .start-faq__list, .start-next__list,
.students-voice__list, .students-profile__grid, .students-cta__inner,
.consulting-feature__grid, .consulting-target__list, .consulting-vs__grid,
.consulting-pitch__list, .consulting-what__list, .consulting-form-section__inner,
.videos-grid, .videos-couple__grid,
.contact-form-section__inner,
.about-couple__grid, .about-family__inner, .about-mission__inner, .about-cta__list {
  margin-left: auto !important;
  margin-right: auto !important;
}

/* ===== Final centering fix (about / contact / 全ページ確実中央寄せ) ===== */
.about-family__inner,
.about-mission__inner,
.about-couple__grid,
.about-cta__list {
  width: 100%;
  max-width: 880px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding: 0 32px;
  box-sizing: border-box;
}

/* contactページの「その他の連絡手段」ボックス */
.contact-form-section,
.contact-form-section__inner {
  text-align: center;
}
.contact-form-section__inner > * {
  max-width: 880px;
  margin-left: auto !important;
  margin-right: auto !important;
}
.contact-other,
.contact-others,
.contact-form-section h3,
.contact-form-section .other-contacts,
.contact-form-section .sns-buttons {
  max-width: 880px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: left;
}

/* ===== Contact-other ボックスの中央寄せ + Instagram色 ===== */
.contact-other {
  max-width: 880px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
.contact-other__btn.instagram {
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #fff;
}
.contact-other__btn.instagram:hover {
  filter: brightness(1.05);
}

/* ===== About家族・Missionの本文をきちんと中央軸に揃える ===== */
.about-family__inner,
.about-mission__inner {
  max-width: 720px !important;
  width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding: 0 24px !important;
  text-align: center !important;
  box-sizing: border-box !important;
}
.about-family__inner p,
.about-mission__inner p {
  text-align: left !important;  /* 段落の中身は左揃えのまま、ブロック自体が中央配置 */
  display: block;
}

/* contact-other ボックスを上品にリフォーム */
.contact-other {
  max-width: 720px !important;
  margin: 36px auto 0 !important;
  background: transparent !important;  /* ベージュ背景を撤去 */
  border: none !important;             /* 枠線も撤去 */
  border-radius: 0 !important;
  padding: 0 !important;
  text-align: center;
}
.contact-other h3 {
  font-family: "Zen Maru Gothic", sans-serif !important;
  font-weight: 700 !important;
  font-size: 19px !important;
  letter-spacing: .04em !important;
  color: #2a2520 !important;
  margin-bottom: 10px !important;
  text-align: center !important;
}
.contact-other > p {
  font-size: 14.5px !important;
  line-height: 1.95 !important;
  color: #6a635a !important;
  margin-bottom: 24px !important;
  text-align: center !important;
}
.contact-other__sns {
  justify-content: center !important;
  gap: 14px !important;
}

/* ===== Contact form 上品リフォーム ===== */
.contact-form {
  max-width: 640px !important;
  margin: 0 auto !important;
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  box-shadow: none !important;
}

/* ラベル: 中央寄せやめて左揃えに */
.contact-form__row {
  margin-bottom: 32px !important;
}
.contact-form__row label {
  display: flex !important;
  align-items: baseline;
  gap: 10px;
  font-family: "Zen Maru Gothic", sans-serif !important;
  font-weight: 700 !important;
  font-size: 15px !important;
  color: #2a2520 !important;
  margin-bottom: 12px !important;
  letter-spacing: .04em;
  text-align: left !important;
  justify-content: flex-start !important;
}

/* 必須/任意バッジを上品な小タグに */
.contact-form__row .required,
.contact-form__row .optional {
  display: inline-block !important;
  background: transparent !important;
  border: 1px solid currentColor !important;
  border-radius: 0 !important;
  padding: 2px 8px !important;
  font-family: "Cormorant Garamond", "Klee One", serif !important;
  font-style: italic !important;
  font-weight: 400 !important;
  font-size: 11px !important;
  letter-spacing: .08em !important;
  line-height: 1.4 !important;
}
.contact-form__row .required { color: #c2924a !important; }
.contact-form__row .optional { color: #8a8a7a !important; }

/* 入力欄: 罫線一本のミニマル */
.contact-form__row input[type="text"],
.contact-form__row input[type="email"],
.contact-form__row select,
.contact-form__row textarea {
  width: 100% !important;
  background: transparent !important;
  border: none !important;
  border-bottom: 1px solid #d7cfbe !important;
  border-radius: 0 !important;
  padding: 14px 4px !important;
  font-family: "Noto Sans JP", -apple-system, sans-serif !important;
  font-size: 15px !important;
  color: #2a2520 !important;
  transition: border-color .25s !important;
  box-sizing: border-box !important;
  box-shadow: none !important;
}
.contact-form__row textarea {
  border: 1px solid #d7cfbe !important;
  padding: 14px !important;
  min-height: 200px !important;
  resize: vertical;
  line-height: 1.85;
}
.contact-form__row input:focus,
.contact-form__row select:focus,
.contact-form__row textarea:focus {
  outline: none !important;
  border-color: #c2924a !important;
  box-shadow: none !important;
}

.contact-form__hint {
  text-align: center !important;
  font-size: 13px !important;
  color: #8a8a7a !important;
  margin-top: 12px !important;
}

/* 送信ボタン: サイト統一の四角線画スタイル */
.contact-form__submit {
  text-align: center !important;
  margin-top: 40px !important;
}
.contact-form__submit button {
  background: transparent !important;
  border: 1px solid #c2924a !important;
  color: #c2924a !important;
  border-radius: 0 !important;
  padding: 18px 56px !important;
  font-family: "Zen Maru Gothic", sans-serif !important;
  font-weight: 500 !important;
  font-size: 14px !important;
  letter-spacing: .12em !important;
  cursor: pointer;
  transition: background .25s, color .25s !important;
  box-shadow: none !important;
}
.contact-form__submit button:hover {
  background: #c2924a !important;
  color: #fff !important;
  transform: none !important;
  box-shadow: none !important;
}

/* 個人情報注記 */
.contact-form__privacy {
  text-align: center;
  font-size: 12.5px;
  color: #8a8a7a;
  margin-top: 18px !important;
}

/* ===== Consulting-pitch 中央寄せ&装飾上品化 ===== */
.consulting-pitch__intro,
.consulting-pitch__body,
.consulting-pitch__intro > *,
.consulting-pitch__body > * {
  max-width: 720px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  width: 100%;
  box-sizing: border-box;
}

.consulting-pitch__intro {
  text-align: center;
}

/* h2 大きく */
.consulting-pitch__h2 {
  font-family: "Zen Maru Gothic", sans-serif !important;
  font-size: clamp(28px, 4vw, 40px) !important;
  letter-spacing: .04em !important;
  color: #2a2520 !important;
  font-weight: 700 !important;
  line-height: 1.55 !important;
}

.consulting-pitch__small {
  font-family: "Cormorant Garamond", "Klee One", serif !important;
  font-style: italic !important;
  font-size: 14px !important;
  letter-spacing: .12em !important;
  color: #c2924a !important;
  margin-bottom: 14px !important;
}

/* 緑の左太縦ラインの小見出しを撤去、上品な英字eyebrow + 横ラインに */
.consulting-pitch__sub {
  border-left: none !important;
  background: transparent !important;
  padding: 0 !important;
  margin: 56px 0 24px !important;
  text-align: center;
  font-family: "Zen Maru Gothic", sans-serif !important;
  font-size: 22px !important;
  font-weight: 700 !important;
  color: #2a2520 !important;
  letter-spacing: .04em;
  position: relative;
  padding-bottom: 18px !important;
}
.consulting-pitch__sub::after {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  background: #c2924a;
  margin: 18px auto 0;
}

/* 「こんな方に向いてます」のリストを罫線分割で上品に */
.consulting-pitch__fit {
  list-style: none;
  padding: 0 !important;
  margin: 0 !important;
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
}
.consulting-pitch__fit > li {
  background: transparent !important;
  border: none !important;
  border-bottom: 1px solid #d7cfbe !important;
  border-radius: 0 !important;
  padding: 24px 0 !important;
  margin: 0 !important;
}
.consulting-pitch__fit > li:last-child {
  border-bottom: none !important;
}
.consulting-pitch__fit > li strong {
  display: block;
  margin-bottom: 8px;
  color: #2a2520;
  font-size: 16px;
}

/* 「逆に向いていない方」点線枠を撤去、上品罫線に */
.consulting-pitch__notfit-list {
  list-style: none;
  padding: 24px 0 !important;
  margin: 0 !important;
  background: transparent !important;
  border: none !important;
  border-top: 1px solid #d7cfbe !important;
  border-bottom: 1px solid #d7cfbe !important;
  border-radius: 0 !important;
}
.consulting-pitch__notfit-list > li {
  padding: 12px 0 !important;
  font-size: 15px;
  line-height: 2;
  color: #6a635a;
}
.consulting-pitch__notfit-list > li::before {
  content: "—";
  color: #c2924a;
  margin-right: 10px;
}

.consulting-pitch__not-fit {
  text-align: center;
  margin-bottom: 18px !important;
}

/* セクション全体の左の太い緑罫線を撤去 */
.consulting-pitch {
  border-left: none !important;
  background: #fdfaf2 !important;
  padding: 80px 24px !important;
}

/* 末尾「やはり個別に話を…」中央寄せ */
.consulting-pitch__body > p:last-of-type,
.consulting-pitch__body > .consulting-pitch__close {
  text-align: center;
  margin-top: 32px !important;
}

/* リード文 */
.consulting-pitch__lead {
  font-size: 15px !important;
  line-height: 2.05 !important;
  color: #6a635a !important;
}

@media (max-width: 720px) {
  .consulting-pitch { padding: 56px 20px !important; }
  .consulting-pitch__sub { font-size: 18px !important; }
}

/* ===== 大見出し1行ずつ + 画像スロームーズーム ===== */
/* h2/h1 を「マスクで下から立ち上がる」 */
.about-hero__title, .start-hero__title, .students-hero__title,
.contact-hero__title, .consulting-hero__title, .videos-hero__title,
.section-head h2, .home-hero__title,
.consulting-pitch__h2, .gift-hero__title,
.about-family__inner h2, .about-mission__inner h2 {
  position: relative;
}
.about-hero__title > *, .start-hero__title > *, .students-hero__title > *,
.contact-hero__title > *, .consulting-hero__title > *, .videos-hero__title > *,
.section-head h2 > *,
.consulting-pitch__h2 > *,
.about-family__inner h2 > *, .about-mission__inner h2 > * {
  display: inline-block;
}

/* 全体的にデフォルトの fade-up を強化 */
[data-reveal] {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 1.8s cubic-bezier(.16, 1, .3, 1), transform 1.8s cubic-bezier(.16, 1, .3, 1);
}
[data-reveal].is-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* 罫線アニメーション: 画面に入ったら左から右に伸びる */
.consulting-pitch__sub::after,
.about-family__inner h2 + p,
[data-reveal] .section-head__small + h2::after {
  /* デフォは静止 */
}

.consulting-pitch__sub::after {
  width: 0 !important;
  transition: width 1.4s cubic-bezier(.16, 1, .3, 1) .4s;
}
[data-reveal].is-revealed .consulting-pitch__sub::after {
  width: 40px !important;
}

/* セクション内のリスト要素を時間差で順次フェード */
.consulting-pitch__fit > li,
.consulting-pitch__notfit-list > li,
.about-cta__item,
.start-flow__item, .start-faq__item, .start-next__item,
.students-voice__item, .students-profile__card,
.consulting-feature__item, .consulting-target__card,
.consulting-vs__col, .consulting-what__item,
.video-card, .recent-card,
.cats__item {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.5s cubic-bezier(.16, 1, .3, 1), transform 1.5s cubic-bezier(.16, 1, .3, 1);
}
[data-reveal].is-revealed .consulting-pitch__fit > li,
[data-reveal].is-revealed .consulting-pitch__notfit-list > li,
[data-reveal].is-revealed .about-cta__item,
[data-reveal].is-revealed .start-flow__item,
[data-reveal].is-revealed .start-faq__item,
[data-reveal].is-revealed .start-next__item,
[data-reveal].is-revealed .students-voice__item,
[data-reveal].is-revealed .students-profile__card,
[data-reveal].is-revealed .consulting-feature__item,
[data-reveal].is-revealed .consulting-target__card,
[data-reveal].is-revealed .consulting-vs__col,
[data-reveal].is-revealed .consulting-what__item,
[data-reveal].is-revealed .video-card,
[data-reveal].is-revealed .recent-card,
[data-reveal].is-revealed .cats__item {
  opacity: 1;
  transform: translateY(0);
}

/* 時間差遅延 */
[data-reveal].is-revealed .consulting-pitch__fit > li:nth-child(1),
[data-reveal].is-revealed .consulting-pitch__notfit-list > li:nth-child(1),
[data-reveal].is-revealed .about-cta__item:nth-child(1),
[data-reveal].is-revealed .start-flow__item:nth-child(1),
[data-reveal].is-revealed .start-faq__item:nth-child(1),
[data-reveal].is-revealed .start-next__item:nth-child(1),
[data-reveal].is-revealed .students-voice__item:nth-child(1),
[data-reveal].is-revealed .students-profile__card:nth-child(1),
[data-reveal].is-revealed .consulting-feature__item:nth-child(1),
[data-reveal].is-revealed .consulting-target__card:nth-child(1),
[data-reveal].is-revealed .consulting-vs__col:nth-child(1),
[data-reveal].is-revealed .consulting-what__item:nth-child(1),
[data-reveal].is-revealed .video-card:nth-child(1),
[data-reveal].is-revealed .recent-card:nth-child(1),
[data-reveal].is-revealed .cats__item:nth-child(1) { transition-delay: .3s; }

[data-reveal].is-revealed .consulting-pitch__fit > li:nth-child(2),
[data-reveal].is-revealed .consulting-pitch__notfit-list > li:nth-child(2),
[data-reveal].is-revealed .about-cta__item:nth-child(2),
[data-reveal].is-revealed .start-flow__item:nth-child(2),
[data-reveal].is-revealed .start-faq__item:nth-child(2),
[data-reveal].is-revealed .start-next__item:nth-child(2),
[data-reveal].is-revealed .students-voice__item:nth-child(2),
[data-reveal].is-revealed .students-profile__card:nth-child(2),
[data-reveal].is-revealed .consulting-feature__item:nth-child(2),
[data-reveal].is-revealed .consulting-target__card:nth-child(2),
[data-reveal].is-revealed .consulting-vs__col:nth-child(2),
[data-reveal].is-revealed .consulting-what__item:nth-child(2),
[data-reveal].is-revealed .video-card:nth-child(2),
[data-reveal].is-revealed .recent-card:nth-child(2),
[data-reveal].is-revealed .cats__item:nth-child(2) { transition-delay: .45s; }

[data-reveal].is-revealed .consulting-pitch__fit > li:nth-child(3),
[data-reveal].is-revealed .consulting-pitch__notfit-list > li:nth-child(3),
[data-reveal].is-revealed .about-cta__item:nth-child(3),
[data-reveal].is-revealed .start-flow__item:nth-child(3),
[data-reveal].is-revealed .start-faq__item:nth-child(3),
[data-reveal].is-revealed .start-next__item:nth-child(3),
[data-reveal].is-revealed .students-voice__item:nth-child(3),
[data-reveal].is-revealed .students-profile__card:nth-child(3),
[data-reveal].is-revealed .consulting-feature__item:nth-child(3),
[data-reveal].is-revealed .consulting-target__card:nth-child(3),
[data-reveal].is-revealed .consulting-what__item:nth-child(3),
[data-reveal].is-revealed .video-card:nth-child(3),
[data-reveal].is-revealed .recent-card:nth-child(3),
[data-reveal].is-revealed .cats__item:nth-child(3) { transition-delay: .6s; }

[data-reveal].is-revealed .consulting-pitch__fit > li:nth-child(4),
[data-reveal].is-revealed .start-flow__item:nth-child(4),
[data-reveal].is-revealed .video-card:nth-child(4),
[data-reveal].is-revealed .recent-card:nth-child(4),
[data-reveal].is-revealed .cats__item:nth-child(4) { transition-delay: .75s; }

[data-reveal].is-revealed .consulting-pitch__fit > li:nth-child(5),
[data-reveal].is-revealed .video-card:nth-child(n+5),
[data-reveal].is-revealed .recent-card:nth-child(n+5),
[data-reveal].is-revealed .cats__item:nth-child(n+5) { transition-delay: .9s; }

@media (prefers-reduced-motion: reduce) {
  [data-reveal] *, [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ===== consulting-form-section の全体中央寄せ + 上品アニメ ===== */
.consulting-form-section {
  background: var(--top-cream, #fdfaf2) !important;
  padding: 100px 24px !important;
  text-align: center;
}
.consulting-form-section > *,
.consulting-form-section .section-head,
.consulting-form-section .consulting-form-intro,
.consulting-form-section form,
.consulting-form-section .contact-form {
  max-width: 720px !important;
  width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important;
  box-sizing: border-box;
}
.consulting-form-section .section-head {
  text-align: center !important;
  margin-bottom: 36px !important;
  padding: 0 !important;
}
.consulting-form-section .section-head h2 {
  text-align: center !important;
}
.consulting-form-section .section-head__small {
  display: block;
  text-align: center !important;
}
.consulting-form-intro {
  text-align: center !important;
  font-size: 15px !important;
  line-height: 2.05 !important;
  color: #6a635a !important;
  margin-bottom: 48px !important;
  padding: 0 24px;
}

/* セクション直下のセパレーター線(横ライン)が画面端まで広がる問題を抑制 */
.consulting-form-section hr,
.consulting-form-section::before {
  display: none !important;
}

/* ===== 安藤七宝店風 上品アニメーション 強化 ===== */
/* セクション見出しのeyebrow → h2 → 本文 の順次フェード */
[data-reveal] .section-head__small,
[data-reveal] .section-head h2,
[data-reveal] .consulting-pitch__small,
[data-reveal] .consulting-pitch__h2 {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1.4s cubic-bezier(.16, 1, .3, 1), transform 1.4s cubic-bezier(.16, 1, .3, 1);
}
[data-reveal].is-revealed .section-head__small,
[data-reveal].is-revealed .consulting-pitch__small {
  opacity: 1;
  transform: translateY(0);
  transition-delay: .15s !important;
}
[data-reveal].is-revealed .section-head h2,
[data-reveal].is-revealed .consulting-pitch__h2 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: .35s !important;
}

/* 段落テキストもふわっと */
[data-reveal] p {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1.4s cubic-bezier(.16, 1, .3, 1) .55s, transform 1.4s cubic-bezier(.16, 1, .3, 1) .55s;
}
[data-reveal].is-revealed p {
  opacity: 1;
  transform: translateY(0);
}

/* ===== consulting-form-section 全要素強制中央寄せ ===== */
.consulting-form-section {
  text-align: center !important;
}
.consulting-form-section .section-head,
.consulting-form-section .section-head > div,
.consulting-form-section .section-head > div > * {
  text-align: center !important;
  max-width: 720px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
.consulting-form-section .section-head__small,
.consulting-form-section .section-head h2 {
  text-align: center !important;
  display: block !important;
}
.consulting-form-section form,
.consulting-form-section .contact-form,
.consulting-form-section form > *,
.consulting-form-section .contact-form > *,
.consulting-form-section .contact-form__row {
  max-width: 640px !important;
  width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: left;  /* 入力欄ラベルは左揃え */
  box-sizing: border-box !important;
}
.consulting-form-section .contact-form__submit {
  text-align: center !important;
}

/* ===== consulting-feature 枠撤去&上品化 ===== */
.consulting-feature {
  background: var(--top-cream, #fdfaf2) !important;
  padding: 100px 24px !important;
  margin: 0 !important;
}
.consulting-feature__inner {
  background: transparent !important;
  border: none !important;
  border-left: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  box-shadow: none !important;
  max-width: 720px !important;
  margin: 0 auto !important;
  text-align: center;
}
.consulting-feature__label {
  font-family: "Cormorant Garamond", "Klee One", serif !important;
  font-style: italic !important;
  font-size: 14px !important;
  letter-spacing: .12em !important;
  color: #c2924a !important;
  margin-bottom: 18px !important;
  text-align: center !important;
}
.consulting-feature__inner h2 {
  font-family: "Zen Maru Gothic", sans-serif !important;
  font-size: clamp(26px, 3.5vw, 36px) !important;
  font-weight: 700 !important;
  letter-spacing: .04em !important;
  line-height: 1.55 !important;
  color: #2a2520 !important;
  margin-bottom: 32px !important;
  text-align: center !important;
}
.consulting-feature__inner p {
  font-size: 16px !important;
  line-height: 2.1 !important;
  color: #4a443c !important;
  text-align: left !important;
  margin-bottom: 1.5em !important;
}

/* ===== 全ページ高軸を720pxに完全統一 ===== */
/* セクション直下の全要素を720pxに固定 */
.start-flow > *, .start-faq > *, .start-next > *,
.students-profile > *, .students-voice > *, .students-cta > *,
.consulting-feature > *, .consulting-target > *, .consulting-vs > *,
.consulting-pitch > *, .consulting-what > *, .consulting-form-section > *,
.videos-main > *, .videos-couple > *,
.contact-form-section > *,
.about-couple > *, .about-family > *, .about-mission > *, .about-cta > * {
  max-width: 720px !important;
  width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important;
  box-sizing: border-box;
}

/* セクション見出し(section-head)も720pxに */
.section-head, .breadcrumb,
.start-flow__list, .start-faq__list, .start-next__list {
  max-width: 720px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* リスト系も720px統一 */
.consulting-target__grid,
.consulting-vs__table,
.consulting-vs__grid,
.consulting-feature__grid,
.consulting-what__list,
.consulting-pitch__fit,
.consulting-pitch__notfit-list,
.students-voice__list,
.students-profile__grid,
.about-cta__list,
.about-couple__grid,
.videos-grid {
  max-width: 720px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* compass比較テーブルなど横長カードはちょっと余裕もたせる */
.consulting-vs__table {
  max-width: 760px !important;
}

/* 各カード内の中身は普通に表示 */
.about-couple__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

/* ===== 上品アニメーション 完成版 ===== */
/* 大見出しが下から立ち上がる(2行ずつ) */
.consulting-pitch__h2,
.about-hero__title,
.consulting-hero__title,
.start-hero__title,
.students-hero__title,
.contact-hero__title,
.videos-hero__title,
.section-head h2,
.consulting-feature__inner h2,
.about-family__inner h2,
.about-mission__inner h2 {
  overflow: hidden;
  display: block;
}

/* 大見出しの中身を「マスクで上から下へ」覆い隠して、下に滑り込む */
[data-reveal] .section-head h2,
[data-reveal] .consulting-pitch__h2,
[data-reveal] .consulting-feature__inner h2,
[data-reveal] .about-family__inner h2,
[data-reveal] .about-mission__inner h2 {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 1.6s cubic-bezier(.16, 1, .3, 1) .25s, transform 1.6s cubic-bezier(.16, 1, .3, 1) .25s;
}
[data-reveal].is-revealed .section-head h2,
[data-reveal].is-revealed .consulting-pitch__h2,
[data-reveal].is-revealed .consulting-feature__inner h2,
[data-reveal].is-revealed .about-family__inner h2,
[data-reveal].is-revealed .about-mission__inner h2 {
  opacity: 1;
  transform: translateY(0);
}

/* 罫線(短い装飾線)が画面に入ったら左から右にスーッと描かれる */
.section-head h2 + *::after,
.about-mission__lead {
  /* 装飾セパレーター */
}

/* 全body内のh2に短い装飾線を追加 */
.section-head h2,
.consulting-pitch__h2,
.consulting-feature__inner h2,
.about-family__inner h2,
.about-mission__inner h2 {
  position: relative;
  padding-bottom: 24px;
  margin-bottom: 32px !important;
}
.section-head h2::after,
.consulting-pitch__h2::after,
.consulting-feature__inner h2::after,
.about-family__inner h2::after,
.about-mission__inner h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background: #c2924a;
  transition: width 1.4s cubic-bezier(.16, 1, .3, 1) .8s;
}
[data-reveal].is-revealed .section-head h2::after,
[data-reveal].is-revealed .consulting-pitch__h2::after,
[data-reveal].is-revealed .consulting-feature__inner h2::after,
[data-reveal].is-revealed .about-family__inner h2::after,
[data-reveal].is-revealed .about-mission__inner h2::after {
  width: 40px;
}

/* セクション全体が画面に入る時、もっとゆっくり、より深く */
[data-reveal] {
  opacity: 0;
  transform: translateY(80px);
  transition: opacity 2s cubic-bezier(.16, 1, .3, 1), transform 2s cubic-bezier(.16, 1, .3, 1);
}

/* リード文が見出しの後に追従 */
[data-reveal] .section-head + *,
[data-reveal] .consulting-pitch__lead,
[data-reveal] .consulting-feature__inner > p:first-of-type {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1.4s cubic-bezier(.16, 1, .3, 1) .9s, transform 1.4s cubic-bezier(.16, 1, .3, 1) .9s;
}
[data-reveal].is-revealed .section-head + *,
[data-reveal].is-revealed .consulting-pitch__lead,
[data-reveal].is-revealed .consulting-feature__inner > p:first-of-type {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] *, [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .section-head h2::after,
  .consulting-pitch__h2::after,
  .consulting-feature__inner h2::after,
  .about-family__inner h2::after,
  .about-mission__inner h2::after {
    width: 40px !important;
  }
}

/* ===== 最終強制中央寄せ (z-index 最高優先) ===== */
/* セクション本体は背景色のみ、テキスト中央配置 */
.start-flow, .start-faq, .start-next,
.students-profile, .students-voice, .students-cta,
.consulting-feature, .consulting-target, .consulting-vs,
.consulting-pitch, .consulting-what, .consulting-form-section,
.videos-main, .videos-couple,
.contact-form-section,
.about-couple, .about-family, .about-mission, .about-cta {
  text-align: center !important;
}

/* セクション直下の全要素を強制720px中央 */
.start-flow > *, .start-faq > *, .start-next > *,
.students-profile > *, .students-voice > *, .students-cta > *,
.consulting-feature > *, .consulting-target > *, .consulting-vs > *,
.consulting-pitch > *, .consulting-what > *, .consulting-form-section > *,
.videos-main > *, .videos-couple > *,
.contact-form-section > *,
.about-couple > *, .about-family > *, .about-mission > *, .about-cta > * {
  max-width: 720px !important;
  width: calc(100% - 48px) !important;
  margin-left: auto !important;
  margin-right: auto !important;
  display: block !important;
  box-sizing: border-box !important;
}

/* section-head/breadcrumbも強制720px中央 */
section .section-head,
section.recent .section-head,
.consulting-form-section .section-head,
.section-head {
  max-width: 720px !important;
  width: calc(100% - 48px) !important;
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
}
.section-head > * {
  text-align: center !important;
}
.section-head h2 {
  text-align: center !important;
  display: block !important;
}

.breadcrumb {
  max-width: 720px !important;
  width: calc(100% - 48px) !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* リスト系も720px */
.consulting-target__grid, .consulting-vs__table, .consulting-vs__grid,
.consulting-feature__grid, .consulting-what__list,
.consulting-pitch__fit, .consulting-pitch__notfit-list,
.students-voice__list, .students-profile__grid,
.about-cta__list, .about-couple__grid,
.videos-grid {
  max-width: 720px !important;
  width: calc(100% - 48px) !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* 段落本文は中央720px枠の中での左揃え */
section p {
  text-align: left;
}
.section-head h2 + p, .consulting-pitch__lead, .about-mission__lead {
  text-align: center !important;
}

/* ===== 全見出しを強制中央揃え ===== */
.section-head h2,
.section-head__small,
.consulting-pitch__h2,
.consulting-pitch__small,
.consulting-feature__inner h2,
.consulting-feature__label,
.about-family__inner h2,
.about-family__label,
.about-mission__inner h2,
.about-mission__label,
section h2,
section .section-head__small,
section [class*="__label"] {
  text-align: center !important;
  display: block !important;
  width: 100%;
}

/* ===== Grid系を復活: display:block強制を解除 ===== */
.videos-grid,
.youtube-section__grid,
.consulting-target__grid,
.consulting-vs__grid,
.consulting-vs__table,
.consulting-feature__grid,
.about-couple__grid,
.about-cta__list,
.students-profile__grid,
.recent__grid,
.cats__grid,
.values-row,
.start-flow__list, .start-faq__list, .start-next__list,
.consulting-pitch__fit, .consulting-pitch__notfit-list,
.consulting-what__list,
.students-voice__list {
  display: grid !important;
}
.videos-grid, .youtube-section__grid {
  grid-template-columns: repeat(3, 1fr) !important;
}
.consulting-target__grid, .consulting-feature__grid,
.about-couple__grid, .students-profile__grid,
.about-cta__list {
  grid-template-columns: repeat(2, 1fr) !important;
}

/* リストはdisplay: gridだとカード横並びにしてしまうので block戻す */
.consulting-pitch__fit, .consulting-pitch__notfit-list,
.consulting-what__list, .students-voice__list,
.start-flow__list, .start-faq__list, .start-next__list {
  display: block !important;
}

/* 既存の .video-card 等もちゃんとflex/blockで並ぶように */
.video-card, .youtube-section__card, .recent-card, .cats__item,
.consulting-target__card, .consulting-feature__item, .consulting-vs__col,
.about-couple__card, .students-profile__card, .about-cta__item {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
}

@media (max-width: 720px) {
  .videos-grid, .youtube-section__grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .consulting-target__grid, .consulting-feature__grid,
  .about-couple__grid, .students-profile__grid,
  .about-cta__list {
    grid-template-columns: 1fr !important;
  }
}


/* ===== v5の動画ページCSSを強制復活 (最優先) ===== */
.video-embed {
  margin: 1.8em 0 !important;
  border-radius: var(--radius-lg) !important;
  overflow: hidden !important;
  background: var(--bg-soft) !important;
  position: relative !important;
  aspect-ratio: 16 / 9 !important;
}
.video-embed iframe {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  border: 0 !important;
}
.video-embed + .video-caption {
  font-family: "Klee One", cursive !important;
  font-size: 14px !important;
  color: var(--honey) !important;
  text-align: center !important;
  margin: -1em 0 1.8em !important;
}
.youtube-section {
  max-width: 1080px !important;
  margin: 36px auto !important;
  padding: 0 32px !important;
}
.youtube-section__intro {
  margin-bottom: 22px !important;
  text-align: center !important;
}
.youtube-section__intro p {
  font-family: "Zen Maru Gothic", sans-serif !important;
  font-size: 14px !important;
  line-height: 1.95 !important;
  color: var(--text-soft) !important;
  margin: 0 !important;
}
.youtube-section__embed {
  position: relative !important;
  aspect-ratio: 16 / 9 !important;
  background: var(--bg-soft) !important;
  border-radius: 14px !important;
  overflow: hidden !important;
  margin-bottom: 22px !important;
  border: 1px solid var(--line) !important;
}
.youtube-section__embed iframe {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  border: 0 !important;
}
.youtube-section__cta {
  text-align: center !important;
  margin-top: 22px !important;
}
.youtube-section__btn {
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  padding: 13px 28px !important;
  background: #FF0000 !important;
  color: #fff !important;
  font-family: "Zen Maru Gothic", sans-serif !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  border-radius: 99px !important;
  text-decoration: none !important;
  box-shadow: 0 3px 10px rgba(255, 0, 0, 0.15) !important;
  transition: all .15s !important;
}
.youtube-section__btn:hover {
  background: #cc0000 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 5px 14px rgba(255, 0, 0, 0.22) !important;
}
.youtube-section__handle {
  font-family: "Klee One", cursive !important;
  font-size: 14.5px !important;
  color: var(--honey) !important;
  margin-top: 10px !important;
}
.youtube-section { padding: 0 20px !important; }
.youtube-section__btn {
    font-size: 14.5px !important;
    padding: 11px 22px !important;
  }
.videos-hero {
  max-width: 1080px !important;
  margin: 32px auto !important;
  padding: 0 32px !important;
}
.videos-hero__inner {
  background: linear-gradient(135deg, #fdfbf3 0%, #f5e9c8 100%) !important;
  border: 1.5px solid var(--honey) !important;
  border-radius: 14px !important;
  padding: 32px 36px !important;
  display: grid !important;
  grid-template-columns: 80px 1fr !important;
  gap: 28px !important;
  align-items: center !important;
}
.videos-hero__icon {
  width: 80px !important;
  height: 80px !important;
  background: #fff !important;
  border-radius: 16px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08) !important;
}
.videos-hero__label {
  font-family: "Klee One", cursive !important;
  font-size: 14.5px !important;
  color: var(--honey) !important;
  margin-bottom: 8px !important;
  letter-spacing: 0.05em !important;
}
.videos-hero__title {
  font-family: "Zen Maru Gothic", sans-serif !important;
  font-weight: 700 !important;
  font-size: 22px !important;
  color: var(--green-deep) !important;
  line-height: 1.55 !important;
  margin: 0 0 12px !important;
}
.videos-hero__lead {
  font-family: "Zen Maru Gothic", sans-serif !important;
  font-size: 15px !important;
  line-height: 1.85 !important;
  color: var(--text-soft) !important;
  margin: 0 0 8px !important;
}
.videos-hero__handle {
  font-family: "Klee One", cursive !important;
  font-size: 14px !important;
  color: var(--honey) !important;
  margin: 0 !important;
  letter-spacing: 0.05em !important;
}
.videos-main {
  max-width: 1080px !important;
  margin: 36px auto !important;
  padding: 0 32px !important;
}
.videos-main__embed {
  position: relative !important;
  aspect-ratio: 16 / 9 !important;
  background: var(--bg-soft) !important;
  border-radius: 14px !important;
  overflow: hidden !important;
  border: 1px solid var(--line) !important;
  box-shadow: 0 4px 18px rgba(47, 66, 50, 0.08) !important;
}
.videos-main__embed iframe {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  border: 0 !important;
}
.videos-main__cta {
  text-align: center !important;
  margin-top: 28px !important;
}
.videos-main__btn {
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  padding: 14px 30px !important;
  background: #FF0000 !important;
  color: #fff !important;
  font-family: "Zen Maru Gothic", sans-serif !important;
  font-weight: 700 !important;
  font-size: 15px !important;
  border-radius: 99px !important;
  text-decoration: none !important;
  box-shadow: 0 3px 10px rgba(255, 0, 0, 0.15) !important;
  transition: all .15s !important;
}
.videos-main__btn:hover {
  background: #cc0000 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 5px 14px rgba(255, 0, 0, 0.22) !important;
}
.videos-main__note {
  font-family: "Zen Maru Gothic", sans-serif !important;
  font-size: 14px !important;
  color: var(--text-mute) !important;
  margin-top: 12px !important;
}
.videos-categories {
  max-width: 1080px !important;
  margin: 48px auto !important;
  padding: 0 32px !important;
}
.videos-cat-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 16px !important;
  margin-bottom: 22px !important;
}
.videos-cat-card {
  background: var(--bg-card) !important;
  border: 1px solid var(--line) !important;
  border-radius: 12px !important;
  padding: 20px !important;
}
.videos-cat-card__icon {
  width: 40px !important;
  height: 40px !important;
  border-radius: 8px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-bottom: 12px !important;
}
.videos-cat-card h3 {
  font-family: "Zen Maru Gothic", sans-serif !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  color: var(--green-deep) !important;
  margin: 0 0 6px !important;
}
.videos-cat-card p {
  font-family: "Zen Maru Gothic", sans-serif !important;
  font-size: 14px !important;
  line-height: 1.7 !important;
  color: var(--text-soft) !important;
  margin: 0 !important;
}
.videos-categories__note {
  font-family: "Zen Maru Gothic", sans-serif !important;
  font-size: 14.5px !important;
  color: var(--text-mute) !important;
  text-align: center !important;
  margin-top: 24px !important;
  line-height: 1.85 !important;
}
.videos-couple {
  max-width: 1080px !important;
  margin: 48px auto !important;
  padding: 0 32px !important;
}
.videos-couple__inner {
  background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-warm) 100%) !important;
  border: 1px solid var(--line) !important;
  border-radius: 14px !important;
  padding: 36px 40px !important;
}
.videos-couple__label {
  font-family: "Klee One", cursive !important;
  font-size: 14.5px !important;
  color: var(--honey) !important;
  margin-bottom: 8px !important;
  letter-spacing: 0.05em !important;
}
.videos-couple__inner h2 {
  font-family: "Zen Maru Gothic", sans-serif !important;
  font-weight: 700 !important;
  font-size: 18px !important;
  color: var(--green-deep) !important;
  line-height: 1.55 !important;
  margin: 0 0 14px !important;
}
.videos-couple__inner p {
  font-family: "Zen Maru Gothic", sans-serif !important;
  font-size: 15px !important;
  line-height: 1.95 !important;
  color: var(--text-soft) !important;
  margin: 0 0 12px !important;
}
.videos-couple__note {
  color: var(--green-text) !important;
  font-size: 14.5px !important;
}
.videos-hero__inner {
    grid-template-columns: 1fr !important;
    text-align: center !important;
    padding: 24px !important;
  }
.videos-hero__icon { margin: 0 auto !important; }
.videos-hero__title { font-size: 18px !important; }
.videos-cat-grid { grid-template-columns: repeat(2, 1fr) !important; }
.videos-couple__inner { padding: 24px !important; }
.videos-main__channel-card,
.youtube-section__channel-card {
  display: grid !important;
  grid-template-columns: 80px 1fr auto !important;
  gap: 22px !important;
  align-items: center !important;
  background: #fff !important;
  border: 2px solid #FF0000 !important;
  border-radius: 14px !important;
  padding: 24px 28px !important;
  text-decoration: none !important;
  color: inherit !important;
  margin: 16px 0 22px !important;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06) !important;
  transition: all .2s !important;
}
.videos-main__channel-card:hover,
.youtube-section__channel-card:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(255, 0, 0, 0.14) !important;
}
.videos-main__channel-icon,
.youtube-section__channel-icon {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
}
.videos-main__channel-text p,
.youtube-section__channel-text p {
  margin: 0 !important;
  font-family: "Zen Maru Gothic", sans-serif !important;
}
.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 !important;
  font-weight: 700 !important;
  font-size: 14.5px !important;
  color: #FF0000 !important;
  white-space: nowrap !important;
}
.videos-main__channel-card,
  .youtube-section__channel-card {
    grid-template-columns: 56px 1fr !important;
    gap: 14px !important;
    padding: 18px !important;
  }
.videos-main__channel-arrow,
  .youtube-section__channel-arrow {
    grid-column: 1 / -1 !important;
    text-align: center !important;
    margin-top: 6px !important;
    padding-top: 12px !important;
    border-top: 1px dotted #d8e0c8 !important;
  }
.videos-main__channel-name,
  .youtube-section__channel-name {
    font-size: 15px !important;
  }
.videos-main__embed-note {
  font-family: "Zen Maru Gothic", sans-serif !important;
  font-size: 14px !important;
  color: var(--text-mute) !important;
  text-align: center !important;
  margin: 12px 0 22px !important;
  line-height: 1.7 !important;
}
.videos-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 22px !important;
  margin: 22px 0 28px !important;
}
.youtube-section__grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 18px !important;
  margin: 22px 0 24px !important;
}
.video-card {
  background: var(--bg-card) !important;
  border: 1px solid var(--line) !important;
  border-radius: 12px !important;
  overflow: hidden !important;
  text-decoration: none !important;
  color: inherit !important;
  display: flex !important;
  flex-direction: column !important;
  transition: all .2s !important;
}
.video-card:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 6px 18px rgba(47, 66, 50, 0.12) !important;
  border-color: var(--green) !important;
}
.video-card__thumb {
  position: relative !important;
  aspect-ratio: 16 / 9 !important;
  background: var(--bg-soft) !important;
  overflow: hidden !important;
}
.video-card__thumb img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}
.video-card__play {
  position: absolute !important;
  inset: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: rgba(0, 0, 0, 0) !important;
  transition: background .2s !important;
}
.video-card__play svg {
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.6)) !important;
  opacity: 0.9 !important;
  transition: all .2s !important;
}
.video-card:hover .video-card__play {
  background: rgba(0, 0, 0, 0.2) !important;
}
.video-card:hover .video-card__play svg {
  transform: scale(1.15) !important;
  opacity: 1 !important;
}
.video-card__body {
  padding: 14px 16px 16px !important;
}
.video-card__title {
  font-family: "Zen Maru Gothic", sans-serif !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  line-height: 1.55 !important;
  color: var(--green-deep) !important;
  margin: 0 0 8px !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
}
.video-card__date {
  font-family: "Klee One", cursive !important;
  font-size: 14px !important;
  color: var(--text-mute) !important;
  margin: 0 !important;
}
.video-card--small .video-card__title {
  font-size: 14.5px !important;
}
.videos-empty {
  background: var(--bg-card) !important;
  border: 1px dashed var(--line) !important;
  border-radius: 12px !important;
  padding: 40px 20px !important;
  text-align: center !important;
  font-family: "Zen Maru Gothic", sans-serif !important;
  color: var(--text-mute) !important;
  font-size: 14.5px !important;
  line-height: 1.85 !important;
  margin-bottom: 24px !important;
}
.videos-empty p {
  margin: 4px 0 !important;
}
.videos-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
.youtube-section__grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
.videos-grid {
    grid-template-columns: 1fr !important;
  }
.youtube-section__grid {
    grid-template-columns: 1fr !important;
  }
.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 {
  /* リセット用クラス、各クラスごとに下記で個別指定 */
}
.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; }

/* ===== videos表示の最終強制 ===== */
.videos-main { display: block !important; }
.videos-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 22px !important;
  max-width: 1100px !important;
  width: 100% !important;
  margin: 22px auto 28px !important;
  padding: 0 24px !important;
  box-sizing: border-box !important;
}
.video-card {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
}
.videos-empty {
  display: block !important;
  text-align: center;
  padding: 40px 24px;
}
.videos-main__channel-card {
  display: flex !important;
  max-width: 720px !important;
  margin: 36px auto !important;
}
.videos-main__cta {
  display: block !important;
  text-align: center !important;
  margin: 36px auto !important;
}

@media (max-width: 900px) {
  .videos-grid { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 600px) {
  .videos-grid { grid-template-columns: 1fr !important; }
}

/* ===== 動画一覧の最終強制(アニメ無効+3列維持) ===== */
/* スクロールアニメで動画が消えないよう、video-card関連のreveal系を完全無効 */
.videos-main,
.videos-grid,
.video-card,
.video-card *,
.videos-empty,
.videos-main__channel-card,
.videos-main__cta,
.videos-couple,
.videos-couple * {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
  animation: none !important;
}

/* 3列グリッドを最優先で適用(他の display: block 指定を無効化) */
section.videos-main .videos-grid,
.videos-main .videos-grid,
.videos-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 22px !important;
  max-width: 1100px !important;
  width: auto !important;
  margin: 22px auto 28px !important;
  padding: 0 24px !important;
  box-sizing: border-box !important;
}
.video-card {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  background: #fff !important;
  border: 1px solid #e8dfc6 !important;
  border-radius: 12px !important;
  overflow: hidden !important;
  text-decoration: none !important;
  transition: transform .2s, box-shadow .2s !important;
}
.video-card:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 20px rgba(0,0,0,.08) !important;
}
.video-card__thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: #f0ebda;
  overflow: hidden;
}
.video-card__thumb img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}
.video-card__play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0,0,0,.6);
  border-radius: 50%;
  width: 56px; height: 56px;
  display: flex !important;
  align-items: center;
  justify-content: center;
}
.video-card__body {
  padding: 16px !important;
}
.video-card__title {
  font-size: 14.5px !important;
  line-height: 1.55 !important;
  color: #2a2520 !important;
  margin: 0 0 8px !important;
  font-weight: 700;
}
.video-card__date {
  font-size: 13px !important;
  color: #8a8a7a !important;
  margin: 0 !important;
}

@media (max-width: 900px) {
  .videos-grid { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 600px) {
  .videos-grid { grid-template-columns: 1fr !important; }
}

/* ===== ピンポイント修正 ===== */

/* 1. about-ctaの「このサイトの読み方」コンテンツが消える問題 */
.about-cta {
  padding: 80px 24px !important;
  text-align: center;
}
.about-cta h2 {
  text-align: center !important;
  margin-bottom: 40px !important;
}
.about-cta__list {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 0 !important;
  max-width: 1080px !important;
  margin: 0 auto !important;
  opacity: 1 !important;
  transform: none !important;
}
.about-cta__item {
  display: block !important;
  opacity: 1 !important;
  transform: none !important;
  background: transparent !important;
  border: 1px solid #d7cfbe !important;
  padding: 36px 24px !important;
  text-decoration: none !important;
  color: inherit !important;
  margin: -0.5px !important;
  text-align: center;
}
.about-cta__item:hover {
  background: #fdfaf2 !important;
}
.about-cta__item h3 {
  font-size: 17px !important;
  margin-bottom: 12px !important;
  color: #2a2520 !important;
}
.about-cta__item p {
  font-size: 13.5px !important;
  line-height: 1.85 !important;
  color: #6a635a !important;
  margin: 0 !important;
}
@media (max-width: 720px) {
  .about-cta__list { grid-template-columns: 1fr !important; }
  .about-cta__item { margin: 0 !important; border-bottom: none !important; }
  .about-cta__item:last-child { border-bottom: 1px solid #d7cfbe !important; }
}

/* 2. 動画一覧: YouTubeチャンネルカード+登録ボタン+「こんな方の役に立ちます」を整える */
.videos-main__channel-card {
  display: flex !important;
  align-items: center;
  gap: 20px;
  max-width: 720px !important;
  margin: 60px auto !important;
  padding: 24px 28px !important;
  background: transparent !important;
  border: 1px solid #d7cfbe !important;
  border-radius: 0 !important;
  text-decoration: none !important;
  color: inherit !important;
}
.videos-main__channel-card:hover {
  background: #fdfaf2 !important;
}
.videos-main__channel-icon {
  flex-shrink: 0;
}
.videos-main__channel-text {
  flex: 1;
}
.videos-main__cta {
  text-align: center;
  margin: 40px auto 0 !important;
}
.videos-main__btn {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  background: #FF0000 !important;
  color: #fff !important;
  padding: 14px 28px !important;
  border-radius: 999px !important;
  text-decoration: none !important;
  font-weight: 700;
}


.videos-couple__inner {
  max-width: 720px !important;
  margin: 0 auto !important;
  text-align: center;
}
.videos-couple h2 {
  text-align: center !important;
  margin-bottom: 32px !important;
}
.videos-couple p {
  text-align: left !important;
}

/* 3. about-mission の「全てのeBay初心者...」の中央寄せ */
.about-mission__lead {
  max-width: 600px !important;
  margin: 0 auto 32px !important;
  padding: 24px 0 !important;
  text-align: center !important;
  border-top: 1px solid #c2924a;
  border-bottom: 1px solid #c2924a;
}

/* 4. 記事一覧「すべての記事」見出しのバランス */
.articles-list__head h2 {
  font-size: clamp(26px, 3.5vw, 36px) !important;
  text-align: center !important;
  margin-bottom: 18px !important;
  position: relative;
  padding-bottom: 18px;
}
.articles-list__head h2::after {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  background: #c2924a;
  margin: 18px auto 0;
}

/* 5. 記事カードの緑系背景を撤去(再修正) */
.recent-card,
.recent__grid .recent-card,
.cat-articles__card,
.articles-list__card {
  background: #fff !important;
  background-image: none !important;
  border: 1px solid #e8dfc6 !important;
  border-radius: 12px !important;
  box-shadow: none !important;
  position: relative;
}
.recent-card::before,
.recent-card::after,
.cat-articles__card::before,
.cat-articles__card::after,
.articles-list__card::before,
.articles-list__card::after {
  display: none !important;
  content: none !important;
}

/* 6. 検索フォームが大きすぎる問題 */
.articles-list__search,
.articles-list__search form {
  max-width: 480px !important;
  margin: 0 auto 40px !important;
}

/* ===== バランス修正(3箇所) ===== */

/* 1. 動画一覧 「こんな方の役に立ちます」のベージュ濃い背景ボックスを撤去 */

.videos-couple__label {
  font-family: "Cormorant Garamond", "Klee One", serif !important;
  font-style: italic !important;
  font-size: 14px !important;
  letter-spacing: .12em !important;
  color: #c2924a !important;
  margin-bottom: 14px !important;
  text-align: center !important;
  display: block;
}
.videos-couple h2 {
  font-size: clamp(24px, 3vw, 30px) !important;
  text-align: center !important;
  margin-bottom: 32px !important;
  color: #2a2520 !important;
}
.videos-couple p {
  text-align: left !important;
  font-size: 15px !important;
  line-height: 2.05 !important;
  color: #6a635a !important;
  margin-bottom: 1.5em !important;
}

/* 2. 夫婦のこと: ヒーローのリード文を中央寄せに */
.about-hero {
  text-align: center !important;
  padding: 100px 24px 60px !important;
}
.about-hero__inner {
  max-width: 720px !important;
  width: 100% !important;
  margin: 0 auto !important;
  text-align: center !important;
}
.about-hero__inner > * {
  text-align: center !important;
  display: block !important;
}
.about-hero__lead {
  text-align: center !important;
  margin: 0 auto !important;
}

/* 写真2枚+プロフィールも中央寄せ */
.about-couple {
  padding: 60px 24px !important;
  text-align: center;
}
.about-couple__grid {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 60px !important;
  max-width: 880px !important;
  margin: 0 auto !important;
}
.about-couple__card {
  text-align: center !important;
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  box-shadow: none !important;
}

/* 3. 個人コンサル の「こんな方に、向いています」リストの整え */
.consulting-pitch__sub {
  text-align: center !important;
  font-size: 22px !important;
  margin: 56px auto 32px !important;
  padding-bottom: 18px !important;
  position: relative;
  border-left: none !important;
  background: transparent !important;
  max-width: 720px;
  width: 100%;
}
.consulting-pitch__sub::after {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  background: #c2924a;
  margin: 18px auto 0;
  position: static !important;
  transform: none !important;
  left: auto !important;
}

/* リスト項目を整える(統一感ある間隔と中央寄せ) */
.consulting-pitch__fit {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 auto !important;
  max-width: 720px !important;
  text-align: left !important;
}
.consulting-pitch__fit > li {
  padding: 24px 0 !important;
  border-bottom: 1px solid #d7cfbe !important;
  margin: 0 !important;
  background: transparent !important;
  border-top: none !important;
  border-left: none !important;
  border-right: none !important;
  border-radius: 0 !important;
  text-align: left !important;
}
.consulting-pitch__fit > li:last-child {
  border-bottom: none !important;
}
.consulting-pitch__fit > li strong {
  display: block !important;
  margin-bottom: 8px !important;
  color: #2a2520 !important;
  font-size: 16px !important;
  line-height: 1.7 !important;
}
.consulting-pitch__fit > li p,
.consulting-pitch__fit > li {
  font-size: 14.5px !important;
  line-height: 1.95 !important;
  color: #6a635a !important;
}

/* リード文も中央寄せに */
.consulting-pitch__lead {
  text-align: center !important;
  max-width: 720px !important;
  margin: 0 auto 24px !important;
}
.consulting-pitch__body > p {
  max-width: 720px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}


/* ===== consulting-pitch 最終決定版(他のCSSを全部上書き) ===== */
.consulting-pitch {
  padding: 80px 24px !important;
  background: #fdfaf2 !important;
  text-align: center !important;
}

.consulting-pitch__intro,
.consulting-pitch__body {
  max-width: 720px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  width: 100% !important;
  box-sizing: border-box !important;
  text-align: left !important;
}

.consulting-pitch__intro {
  text-align: center !important;
  margin-bottom: 48px !important;
}

.consulting-pitch__body > * {
  max-width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.consulting-pitch__body p {
  text-align: left !important;
}

.consulting-pitch h2,
.consulting-pitch h3,
.consulting-pitch__sub,
.consulting-pitch__lead,
.consulting-pitch__not-fit {
  text-align: center !important;
}

.consulting-pitch__fit,
.consulting-pitch__notfit-list {
  list-style: none !important;
  padding: 0 !important;
}

/* ===== 緑の左縦罫線を完全撤去 + 中央寄せ強制 ===== */
.consulting-pitch,
.consulting-pitch *,
.consulting-pitch::before,
.consulting-pitch::after,
.consulting-pitch *::before,
.consulting-pitch *::after {
  border-left: none !important;
}

/* セクション全体を中央寄席ベースに */
.consulting-pitch {
  text-align: center !important;
  display: block !important;
}

/* 内側のすべてのコンテナを画面中央に */
.consulting-pitch__intro,
.consulting-pitch__body {
  max-width: 720px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  width: calc(100% - 48px) !important;
  padding: 0 !important;
  text-align: left !important;
}
.consulting-pitch__intro {
  text-align: center !important;
}

.consulting-pitch__body p,
.consulting-pitch__body ul,
.consulting-pitch__body li {
  margin-left: auto !important;
  margin-right: auto !important;
}

/* ===== videos-hero の枠を撤去 ===== */
.videos-hero {
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  padding: 80px 24px 40px !important;
  text-align: center !important;
}
.videos-hero__inner {
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
  max-width: 720px !important;
  margin: 0 auto !important;
}

/* ===== free-tool LP 全要素中央寄せ ===== */
.lp-wrap,
.lp-wrap > * {
  max-width: 720px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  width: calc(100% - 48px) !important;
  box-sizing: border-box !important;
}
.lp-section {
  text-align: center !important;
}
.lp-eyebrow,
.lp-h1, .lp-h2,
.lp-cta__eyebrow,
.lp-cta__h {
  text-align: center !important;
}
.lp-lead,
.lp-intro,
.lp-cta__lead,
.lp-cta__note,
.lp-tool-caption,
.lp-sig {
  text-align: center !important;
  max-width: 720px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
.lp-steps {
  max-width: 720px !important;
  margin: 0 auto !important;
  list-style: none !important;
  padding: 0 !important;
  text-align: left;
}
.lp-steps > li {
  padding: 18px 0 !important;
  border-bottom: 1px solid #d7cfbe !important;
  text-align: left !important;
}
.lp-steps > li:last-child {
  border-bottom: none !important;
}
.lp-tool-card {
  max-width: 720px !important;
  margin: 24px auto !important;
}
.lp-cta {
  max-width: 600px !important;
  margin: 48px auto !important;
  background: transparent !important;
  border: 1px solid #d7cfbe !important;
  border-radius: 0 !important;
  padding: 36px 28px !important;
  text-align: center !important;
}
.lp-line-btn {
  display: inline-block !important;
  margin: 16px auto 0 !important;
}
.lp-divider {
  max-width: 60px !important;
  margin: 32px auto !important;
}

/* ===== 「まず、ここから読んでみてください」の改行禁止(再修正) ===== */
section.first-time .section-head h2,
.first-time .section-head h2,
.first-time h2 {
  white-space: nowrap !important;
  overflow: visible !important;
  max-width: none !important;
  width: auto !important;
  display: inline-block !important;
  font-size: clamp(20px, 2.5vw, 30px) !important;
}
@media (max-width: 720px) {
  section.first-time .section-head h2,
  .first-time .section-head h2,
  .first-time h2 {
    white-space: normal !important;
    font-size: 20px !important;
    display: block !important;
  }
}

/* ===== gift-hero / first-time の中央寄せ強制 ===== */
.gift-hero,
.first-time {
  text-align: center !important;
}
.gift-hero__inner,
.first-time .section-head,
.first-time__intro {
  max-width: 720px !important;
  margin: 0 auto !important;
  text-align: center !important;
  padding-left: 24px;
  padding-right: 24px;
  box-sizing: border-box;
}
.gift-hero__small,
.gift-hero__title,
.gift-hero__lead,
.gift-hero__btn {
  text-align: center !important;
}
.gift-hero__btn {
  display: inline-block !important;
}
.first-time .section-head__small,
.first-time h2 {
  text-align: center !important;
  display: block !important;
}

/* ===== first-time の section-head を中央寄せ ===== */
.first-time .section-head {
  display: flex !important;
  justify-content: space-between !important;
  align-items: flex-end !important;
  max-width: 1080px !important;
  margin: 0 auto 32px !important;
  padding: 0 32px !important;
  position: relative;
}
.first-time .section-head > div {
  flex: 1;
  text-align: center !important;
  padding-left: 200px;  /* 右側のリンクと同じ幅で左にダミーpadding、見出しを中央に押す */
}
.first-time .section-head > div .section-head__small,
.first-time .section-head > div h2 {
  text-align: center !important;
}
.first-time .section-head__more {
  flex-shrink: 0;
  width: 200px;
  text-align: right;
}

@media (max-width: 720px) {
  .first-time .section-head {
    flex-direction: column !important;
    align-items: center !important;
  }
  .first-time .section-head > div {
    padding-left: 0 !important;
  }
  .first-time .section-head__more {
    width: auto !important;
    margin-top: 16px;
  }
}

/* ===== トップの section-head 全部を中央寄せ ===== */
.recent .section-head,
.cats .section-head,
.youtube-section .section-head,
.search-section .section-head,
.first-time .section-head {
  display: flex !important;
  justify-content: space-between !important;
  align-items: flex-end !important;
  max-width: 1080px !important;
  margin: 0 auto 32px !important;
  padding: 0 32px !important;
  position: relative;
}
.recent .section-head > div,
.cats .section-head > div,
.youtube-section .section-head > div,
.search-section .section-head > div,
.first-time .section-head > div {
  flex: 1;
  text-align: center !important;
  padding-left: 200px;
}
.recent .section-head > div .section-head__small,
.recent .section-head > div h2,
.cats .section-head > div .section-head__small,
.cats .section-head > div h2,
.youtube-section .section-head > div .section-head__small,
.youtube-section .section-head > div h2,
.search-section .section-head > div .section-head__small,
.search-section .section-head > div h2,
.first-time .section-head > div .section-head__small,
.first-time .section-head > div h2 {
  text-align: center !important;
  display: block !important;
}
.recent .section-head__more,
.cats .section-head__more,
.youtube-section .section-head__more,
.search-section .section-head__more,
.first-time .section-head__more {
  flex-shrink: 0;
  width: 200px;
  text-align: right;
}

@media (max-width: 720px) {
  .recent .section-head,
  .cats .section-head,
  .youtube-section .section-head,
  .search-section .section-head,
  .first-time .section-head {
    flex-direction: column !important;
    align-items: center !important;
  }
  .recent .section-head > div,
  .cats .section-head > div,
  .youtube-section .section-head > div,
  .search-section .section-head > div,
  .first-time .section-head > div {
    padding-left: 0 !important;
  }
  .recent .section-head__more,
  .cats .section-head__more,
  .youtube-section .section-head__more,
  .search-section .section-head__more,
  .first-time .section-head__more {
    width: auto !important;
    margin-top: 16px;
  }
}

/* ===== cats / youtube-section の見出しを改行禁止+確実に中央 ===== */
.cats .section-head h2,
.youtube-section .section-head h2 {
  white-space: nowrap !important;
  overflow: visible !important;
  font-size: clamp(20px, 2.5vw, 28px) !important;
}
@media (max-width: 720px) {
  .cats .section-head h2,
  .youtube-section .section-head h2 {
    white-space: normal !important;
    font-size: 20px !important;
  }
}

/* ===== recent (新しく書いた記事) と cats (気になるところから読む) を確実中央 ===== */
.recent .section-head h2,
.cats .section-head h2 {
  white-space: nowrap !important;
  overflow: visible !important;
  font-size: clamp(20px, 2.5vw, 28px) !important;
  text-align: center !important;
  display: block !important;
}
@media (max-width: 720px) {
  .recent .section-head h2,
  .cats .section-head h2 {
    white-space: normal !important;
    font-size: 20px !important;
  }
}

/* ===== section-head 改行禁止強化(min-width確保) ===== */
.recent .section-head > div,
.cats .section-head > div,
.youtube-section .section-head > div,
.first-time .section-head > div {
  min-width: 0 !important;
  flex: 1 1 auto !important;
}
.recent .section-head > div h2,
.cats .section-head > div h2,
.youtube-section .section-head > div h2,
.first-time .section-head > div h2 {
  white-space: nowrap !important;
  overflow: visible !important;
  display: inline-block !important;
  text-align: center !important;
}
/* h2が左寄りになるのを防ぐため、flexの並びを調整 */
.recent .section-head,
.cats .section-head,
.youtube-section .section-head,
.first-time .section-head {
  flex-wrap: nowrap !important;
}
@media (max-width: 720px) {
  .recent .section-head > div h2,
  .cats .section-head > div h2,
  .youtube-section .section-head > div h2,
  .first-time .section-head > div h2 {
    white-space: normal !important;
    display: block !important;
  }
}

/* ===== section-head 中央寄せ完全版(リンクをabsoluteに) ===== */
.recent .section-head,
.cats .section-head,
.youtube-section .section-head,
.search-section .section-head,
.first-time .section-head {
  display: block !important;
  position: relative !important;
  max-width: 1080px !important;
  margin: 0 auto 32px !important;
  padding: 0 32px !important;
  text-align: center !important;
}
.recent .section-head > div,
.cats .section-head > div,
.youtube-section .section-head > div,
.search-section .section-head > div,
.first-time .section-head > div {
  text-align: center !important;
  padding-left: 0 !important;
}
.recent .section-head > div .section-head__small,
.recent .section-head > div h2,
.cats .section-head > div .section-head__small,
.cats .section-head > div h2,
.youtube-section .section-head > div .section-head__small,
.youtube-section .section-head > div h2,
.search-section .section-head > div .section-head__small,
.search-section .section-head > div h2,
.first-time .section-head > div .section-head__small,
.first-time .section-head > div h2 {
  text-align: center !important;
  display: block !important;
}
.recent .section-head__more,
.cats .section-head__more,
.youtube-section .section-head__more,
.search-section .section-head__more,
.first-time .section-head__more {
  position: absolute !important;
  right: 32px !important;
  bottom: 0 !important;
  width: auto !important;
}

@media (max-width: 720px) {
  .recent .section-head__more,
  .cats .section-head__more,
  .youtube-section .section-head__more,
  .search-section .section-head__more,
  .first-time .section-head__more {
    position: static !important;
    display: block !important;
    text-align: center !important;
    margin-top: 16px !important;
  }
}

/* ===== search-section内のリード文・フォームを中央寄せ ===== */
.search-section {
  text-align: center !important;
}
.search-section > *,
.search-section p,
.search-section .search-section__lead,
.search-section form {
  max-width: 480px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
}

/* ===== search-section の改行禁止と虫眼鏡中央寄せ ===== */
.search-section .search-section__lead,
.search-section p {
  max-width: 700px !important;
  width: auto !important;
  white-space: normal !important;
}
/* リード文を1行で収める */
.search-section__lead {
  font-size: 14px !important;
  line-height: 1.85 !important;
}

/* 検索フォーム全体を中央配置 + 虫眼鏡を真ん中 */
.search-section__form,
.search-section form {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  max-width: 480px !important;
  margin: 24px auto 0 !important;
  border-bottom: 1px solid #c2924a !important;
  padding-bottom: 8px !important;
}
.search-section__input {
  flex: 1 !important;
  text-align: center !important;
}
.search-section__btn {
  flex-shrink: 0 !important;
  margin-left: 8px !important;
}

/* ===== search-section の専用フォーム(独立) ===== */
.search-section {
  text-align: center !important;
  padding: 56px 24px !important;
}
.search-section__inner {
  max-width: 720px !important;
  margin: 0 auto !important;
  text-align: center !important;
}
.search-section__small,
.search-section__title,
.search-section__lead {
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
.search-section__lead {
  max-width: 700px !important;
  font-size: 14px !important;
  line-height: 1.85 !important;
  margin: 0 auto 24px !important;
  white-space: nowrap !important;
}
.search-section__form {
  display: flex !important;
  align-items: center !important;
  max-width: 480px !important;
  margin: 24px auto 0 !important;
  border-bottom: 1px solid #c2924a !important;
  padding-bottom: 8px !important;
  gap: 8px;
}
.search-section__input {
  flex: 1 !important;
  border: none !important;
  background: transparent !important;
  font-size: 15px !important;
  outline: none !important;
  padding: 8px !important;
  text-align: center !important;
}
.search-section__btn {
  flex-shrink: 0 !important;
  background: transparent !important;
  border: none !important;
  color: #c2924a !important;
  cursor: pointer !important;
  padding: 8px 12px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

@media (max-width: 720px) {
  .search-section__lead {
    white-space: normal !important;
  }
}

/* ===== search-section__inner と form の中央寄せ最終強制 ===== */
.search-section__inner {
  display: block !important;
  width: 100% !important;
  max-width: 720px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
}
.search-section__form {
  display: flex !important;
  margin-left: auto !important;
  margin-right: auto !important;
  max-width: 480px !important;
  width: 100% !important;
}
.search-section__lead {
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
  width: auto !important;
  display: block !important;
}

/* ===== contact ヒーローのリード文 改行調整 ===== */
.contact-hero__lead,
.contact-hero p {
  max-width: 760px !important;
  width: auto !important;
  margin: 0 auto !important;
  text-align: center !important;
  font-size: 14.5px !important;
  line-height: 2 !important;
}

/* ===== about / videos の本文中央寄せ + 改行幅調整 ===== */

/* aboutページ family/mission の本文 */
.about-family,
.about-mission {
  text-align: center !important;
}
.about-family__inner,
.about-mission__inner,
.about-family p,
.about-mission p {
  max-width: 720px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
.about-family p,
.about-mission p {
  text-align: left !important;
  font-size: 15px !important;
  line-height: 2.05 !important;
  padding: 0 !important;
}
.about-family h2,
.about-mission h2,
.about-family__small,
.about-mission__small {
  text-align: center !important;
}

/* videos-hero リード文の幅を広げる(改行を回避) */
.videos-hero__lead {
  max-width: 760px !important;
  width: auto !important;
  margin: 0 auto 12px !important;
  text-align: center !important;
  font-size: 14.5px !important;
  line-height: 2 !important;
}

/* ===== about-family / about-mission の本文を最強優先で中央寄せ ===== */
section.about-family,
section.about-mission {
  text-align: center !important;
  padding: 80px 24px !important;
}
section.about-family > *,
section.about-mission > *,
section.about-family .about-family__inner,
section.about-mission .about-mission__inner {
  max-width: 720px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  width: auto !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
section.about-family p,
section.about-mission p,
.about-family__inner p,
.about-mission__inner p {
  max-width: 720px !important;
  margin: 0 auto 1.5em !important;
  text-align: left !important;
  font-size: 15px !important;
  line-height: 2.05 !important;
  padding: 0 !important;
}
section.about-family h2,
section.about-mission h2 {
  text-align: center !important;
}

/* videos-hero__lead 強制中央 + 幅広め */
section.videos-hero .videos-hero__lead,
.videos-hero__lead {
  max-width: 760px !important;
  width: auto !important;
  margin: 0 auto 12px !important;
  text-align: center !important;
  font-size: 14.5px !important;
  line-height: 2 !important;
  padding: 0 !important;
}

/* ===== students-cta 中央寄せ ===== */
section.students-cta {
  text-align: center !important;
  padding: 80px 24px !important;
}
section.students-cta .students-cta__inner {
  max-width: 720px !important;
  margin: 0 auto !important;
  text-align: center !important;
}
section.students-cta h2 {
  text-align: center !important;
  margin-bottom: 32px !important;
}
section.students-cta p {
  text-align: center !important;
  font-size: 15px !important;
  line-height: 2 !important;
  margin: 0 auto 1.5em !important;
  max-width: 720px !important;
}
section.students-cta .students-cta__buttons {
  display: flex !important;
  justify-content: center !important;
  gap: 16px !important;
  flex-wrap: wrap !important;
  margin-top: 32px !important;
}
section.students-cta .students-cta__btn {
  display: inline-block !important;
  padding: 14px 32px !important;
  text-decoration: none !important;
  font-size: 14.5px !important;
  font-weight: 700 !important;
  border: 1px solid #c2924a !important;
  border-radius: 0 !important;
  transition: background .2s !important;
}
section.students-cta .students-cta__btn.primary {
  background: #c2924a !important;
  color: #fff !important;
}
section.students-cta .students-cta__btn.ghost {
  background: transparent !important;
  color: #c2924a !important;
}
section.students-cta .students-cta__btn:hover {
  opacity: .85 !important;
}


/* ===== videos-couple v5枠付きデザイン復活 ===== */
.videos-couple {
  max-width: 1080px !important;
  margin: 48px auto !important;
  padding: 0 32px !important;
  background: transparent !important;
}
.videos-couple__inner {
  background: linear-gradient(180deg, #fdfaf2 0%, #f5e9c8 100%) !important;
  border: 1px solid #e8dfc6 !important;
  border-radius: 14px !important;
  padding: 36px 40px !important;
  text-align: center !important;
  max-width: none !important;
  margin: 0 !important;
}
.videos-couple__inner h2 {
  font-family: "Zen Maru Gothic", sans-serif !important;
  font-weight: 700 !important;
  font-size: 22px !important;
  color: #2f4232 !important;
  text-align: center !important;
  margin: 0 0 14px !important;
}
.videos-couple__label {
  text-align: center !important;
  display: block !important;
  font-family: "Klee One", cursive !important;
  font-size: 14.5px !important;
  color: #c2924a !important;
  margin-bottom: 8px !important;
}
.videos-couple__inner p {
  text-align: left !important;
  font-size: 15px !important;
  line-height: 1.95 !important;
  margin: 0 0 12px !important;
  max-width: none !important;
}
@media (max-width: 720px) {
  .videos-couple__inner { padding: 24px !important; }
}

/* ===== videos-couple 中央寄せ ===== */
.videos-couple,
.videos-couple__inner,
.videos-couple__text {
  text-align: center !important;
}
.videos-couple__inner p,
.videos-couple p,
.videos-couple__note {
  text-align: center !important;
  max-width: 600px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* ===== about-family 中央寄せ ===== */
section.about-family,
section.about-family .about-family__inner,
section.about-family p {
  text-align: center !important;
}
section.about-family p {
  max-width: 720px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* ===== about-mission 中央寄せ ===== */
section.about-mission,
section.about-mission .about-mission__inner,
section.about-mission p {
  text-align: center !important;
}
section.about-mission p {
  max-width: 720px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* ===== about-mission の本文の改行を自然に ===== */
section.about-mission p {
  max-width: 760px !important;
  font-size: 14.5px !important;
  line-height: 2 !important;
}

/* ===== videos-main__note の中央寄せ ===== */
.videos-main__cta {
  text-align: center !important;
}
.videos-main__note {
  text-align: center !important;
  max-width: 600px !important;
  margin: 16px auto 0 !important;
}

/* ===== トップ.students の section-head 中央寄せ ===== */
section.students > .section-head {
  display: block !important;
  position: relative !important;
  max-width: 1080px !important;
  margin: 0 auto 32px !important;
  padding: 0 32px !important;
  text-align: center !important;
}
section.students > .section-head > div {
  text-align: center !important;
  padding-left: 0 !important;
}
section.students > .section-head > div .section-head__small,
section.students > .section-head > div h2 {
  text-align: center !important;
  display: block !important;
}
section.students > .section-head h2 {
  white-space: nowrap !important;
  font-size: clamp(20px, 2.5vw, 28px) !important;
}
section.students > .section-head .section-head__more {
  position: absolute !important;
  right: 32px !important;
  bottom: 0 !important;
  width: auto !important;
}
@media (max-width: 720px) {
  section.students > .section-head h2 { white-space: normal !important; }
  section.students > .section-head .section-head__more {
    position: static !important;
    display: block !important;
    text-align: center !important;
    margin-top: 16px !important;
  }
}


/* ===== v5オリジナルの couple セクション復活(完全版) ===== */
.couple {
  background: linear-gradient(180deg, #fdfaf2 0%, #f5e9c8 100%) !important;
  border-top: 1px solid #e8dfc6 !important;
  border-bottom: 1px solid #e8dfc6 !important;
  padding: 56px 48px !important;
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 48px !important;
  align-items: center !important;
  max-width: 100% !important;
  margin: 0 !important;
  text-align: left !important;
}
.couple > * {
  max-width: 1080px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: left !important;
}
.couple__photo {
  aspect-ratio: 5 / 4 !important;
  background: linear-gradient(135deg, #f5e9c8 0%, #e8d09a 100%) !important;
  border-radius: 14px !important;
  position: relative !important;
  overflow: hidden !important;
  padding: 0 !important;
}
.couple__photo::before {
  content: "" !important;
  position: absolute !important;
  inset: 16px !important;
  border: 1.5px dashed rgba(107, 142, 90, 0.3) !important;
  border-radius: 6px !important;
  display: block !important;
}
.couple__photo .ph-mark {
  position: absolute !important;
  inset: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-family: "Klee One", cursive !important;
  font-size: 14.5px !important;
  color: #6b8e5a !important;
  text-align: center !important;
  padding: 24px !important;
}
.couple__photo .corner-tag {
  position: absolute !important;
  top: 16px !important;
  left: 16px !important;
  font-family: "Klee One", cursive !important;
  font-size: 14px !important;
  color: #c2924a !important;
  background: rgba(253, 251, 243, 0.9) !important;
  padding: 4px 10px !important;
  border-radius: 99px !important;
  border: 1px solid #c2924a !important;
}
.couple__label {
  font-family: "Klee One", cursive !important;
  font-size: 14.5px !important;
  color: #c2924a !important;
  margin-bottom: 8px !important;
  text-align: left !important;
  display: block !important;
}
.couple h2 {
  font-family: "Zen Maru Gothic", sans-serif !important;
  font-weight: 700 !important;
  font-size: 26px !important;
  color: #2f4232 !important;
  line-height: 1.6 !important;
  margin: 0 0 18px !important;
  text-align: left !important;
}
.couple p {
  font-family: "Zen Maru Gothic", sans-serif !important;
  font-size: 14px !important;
  line-height: 2 !important;
  color: #6a635a !important;
  margin: 0 0 14px !important;
  text-align: left !important;
  max-width: none !important;
}
.couple p.note {
  font-size: 14.5px !important;
  color: #6b8e5a !important;
  margin-top: 8px !important;
}
.couple__cta {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  background: #fdfbf3 !important;
  border: 1.5px solid #c2924a !important;
  color: #c2924a !important;
  padding: 12px 24px !important;
  border-radius: 99px !important;
  text-decoration: none !important;
  font-weight: 700 !important;
  margin-top: 16px !important;
}
.couple__cta::before,
.couple__cta::after {
  content: none !important;
  display: none !important;
}
@media (max-width: 720px) {
  .couple {
    grid-template-columns: 1fr !important;
    padding: 40px 24px !important;
  }
}

/* ===== couple__photo のYouTube埋め込み ===== */
.couple__photo {
  background: #000 !important;
  padding: 0 !important;
}
.couple__photo::before {
  display: none !important;
  content: none !important;
}
.couple__video {
  width: 100% !important;
  height: 100% !important;
  border: none !important;
  display: block !important;
  border-radius: 14px !important;
}

/* ===== カテゴリ別ページの記事一覧を確実に表示 ===== */
.cat-articles,
.cat-articles__grid,
.cat-articles__card,
.recent-card,
.recent-card__thumb,
.recent-card__body,
.articles-list__card {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
}
.cat-articles__grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 24px !important;
  max-width: 1080px !important;
  margin: 0 auto !important;
  padding: 0 24px !important;
}
@media (max-width: 900px) {
  .cat-articles__grid { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 600px) {
  .cat-articles__grid { grid-template-columns: 1fr !important; }
}


/* ===== v5オリジナル recent-card__thumb レイアウト復活 ===== */
.recent-card__thumb {
  aspect-ratio: 4 / 3 !important;
  position: relative !important;
  overflow: hidden !important;
  padding: 22px 26px !important;
  display: flex !important;
  flex-direction: column !important;
  border-bottom: 1px solid #e8dfc6 !important;
}
.recent-card__thumb::before {
  content: "" !important;
  position: absolute !important;
  top: -40px !important;
  right: -40px !important;
  width: 160px !important;
  height: 160px !important;
  border-radius: 50% !important;
  opacity: 0.15 !important;
  background: currentColor !important;
  display: block !important;
}
.recent-card__thumb::after {
  content: "" !important;
  position: absolute !important;
  bottom: -30px !important;
  left: -30px !important;
  width: 100px !important;
  height: 100px !important;
  border-radius: 50% !important;
  opacity: 0.08 !important;
  background: currentColor !important;
  display: block !important;
}
.thumb__num {
  font-family: "Klee One", cursive !important;
  font-weight: 600 !important;
  font-size: 16px !important;
  letter-spacing: 0.05em !important;
  position: relative !important;
  z-index: 2 !important;
  display: block !important;
}
.thumb__cat {
  display: inline-block !important;
  font-family: "Zen Maru Gothic", sans-serif !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  color: #fdfbf3 !important;
  background: currentColor !important;
  padding: 4px 12px !important;
  border-radius: 99px !important;
  margin: 12px 0 !important;
  position: relative !important;
  z-index: 2 !important;
  width: auto !important;
  align-self: flex-start !important;
}
.recent-card__thumb .thumb__cat {
  color: #fdfbf3 !important;
}
.thumb__title {
  font-family: "Zen Maru Gothic", sans-serif !important;
  font-weight: 700 !important;
  font-size: 22px !important;
  line-height: 1.45 !important;
  color: #2f4232 !important;
  margin-top: auto !important;
  margin-bottom: 12px !important;
  position: relative !important;
  z-index: 2 !important;
  display: block !important;
}
.thumb__sitename {
  font-family: "Klee One", cursive !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  position: relative !important;
  z-index: 2 !important;
  display: block !important;
  opacity: 0.6 !important;
}

/* カテゴリーごとの accent 色 */
.thumb--basics   { color: #6b8e5a !important; }
.thumb--listing  { color: #c2924a !important; }
.thumb--research { color: #5b8b9a !important; }
.thumb--duty     { color: #a86b5b !important; }
.thumb--shipping { color: #6b7e9a !important; }
.thumb--tools    { color: #8a7d6b !important; }
.thumb--trouble  { color: #b85a5a !important; }
.thumb--mind     { color: #8a6b9a !important; }

.recent-card__thumb.thumb--basics,
.recent-card__thumb.thumb--listing,
.recent-card__thumb.thumb--research,
.recent-card__thumb.thumb--duty,
.recent-card__thumb.thumb--shipping,
.recent-card__thumb.thumb--tools,
.recent-card__thumb.thumb--trouble,
.recent-card__thumb.thumb--mind {
  background: #fdfaf2 !important;
}

/* ===== サムネ内サイト名の改行禁止 ===== */
.thumb__sitename {
  white-space: nowrap !important;
  font-size: 13px !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

/* ===== サムネ内 サイト名を右上に小さく配置 ===== */
.recent-card__thumb {
  position: relative !important;
}
.thumb__sitename {
  position: absolute !important;
  top: 22px !important;
  right: 26px !important;
  font-family: "Klee One", cursive !important;
  font-weight: 400 !important;
  font-size: 11px !important;
  z-index: 3 !important;
  white-space: nowrap !important;
  opacity: 0.55 !important;
  letter-spacing: 0.02em !important;
  display: inline-block !important;
}
