@charset "UTF-8";

/*!
Theme Name: Cocoon Child
Description: Cocoon専用の子テーマ
Template:   cocoon-master
Version:    2.0
*/

/* ============================================================
   0. デザイントークン
   ============================================================ */
:root {
  /* color */
  --sc-bg:            #FFFFFF;
  --sc-bg-section:    #F7F7F8;
  --sc-text:          #2B2B2E;
  --sc-heading:       #1A1A1D;
  --sc-border:        #E4E4E7;
  --sc-muted:         #6B6B72;
  --sc-pink:          #E01B60;   /* 見出し下線・リンク・カテゴリラベルのみ */
  --sc-pink-dark:     #B01049;
  --sc-pink-tint:     rgba(224, 27, 96, 0.30);
  --sc-green:         #17914F;   /* CVボタン専用 */
  --sc-green-hover:   #127A42;
  --sc-on-green:      #FFFFFF;

  /* type */
  --sc-font: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  --sc-fs-body: 16px;
  --sc-lh-body: 1.8;

  /* space */
  --sc-content-w: 680px;
  --sc-gap-section: 72px;
  --sc-h2-top: 64px;
  --sc-h2-bottom: 28px;
  --sc-p-gap: 1.9em;

  /* shape */
  --sc-radius: 6px;
  --sc-radius-lg: 10px;
}

/* ============================================================
   1. ベース（記事本文）
   ============================================================ */
body {
  font-family: var(--sc-font);
  color: var(--sc-text);
  background: var(--sc-bg);
}

.entry-content {
  max-width: var(--sc-content-w);
  margin-inline: auto;
  font-size: var(--sc-fs-body);
  line-height: var(--sc-lh-body);
  color: var(--sc-text);
  letter-spacing: 0.01em;
}

.entry-content p {
  margin: 0 0 var(--sc-p-gap);
}

.entry-content a {
  color: var(--sc-pink);
  text-decoration: underline;
  text-underline-offset: 0.18em;
  text-decoration-thickness: 1px;
  transition: color 0.15s ease;
}
.entry-content a:hover,
.entry-content a:focus-visible {
  color: var(--sc-pink-dark);
}

.entry-content strong,
.entry-content b {
  font-weight: 700;
  color: var(--sc-heading);
}

.entry-content img {
  max-width: 100%;
  height: auto;
}

/* ============================================================
   2. 見出し（h2の下線だけピンク）
   ============================================================ */
.entry-content h2 {
  position: relative;
  margin: var(--sc-h2-top) 0 var(--sc-h2-bottom);
  padding: 0 0 16px;
  border-bottom: 1px solid var(--sc-border);
  font-size: 24px;
  line-height: 1.5;
  font-weight: 700;
  color: var(--sc-heading);
  background: none;
}
.entry-content h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 64px;
  height: 3px;
  background: var(--sc-pink);
}

.entry-content h3 {
  margin: 52px 0 18px;
  padding: 2px 0 2px 14px;
  border: none;
  border-left: 4px solid var(--sc-pink);
  border-radius: 0;
  font-size: 20px;
  line-height: 1.55;
  font-weight: 700;
  color: var(--sc-heading);
  background: none;
}

.entry-content h4 {
  margin: 40px 0 14px;
  padding: 0;
  border: none;
  font-size: 17px;
  line-height: 1.6;
  font-weight: 700;
  color: var(--sc-heading);
  background: none;
}

/* ============================================================
   3. リスト
   ============================================================ */
.entry-content ul,
.entry-content ol {
  margin: 0 0 var(--sc-p-gap);
  padding-left: 1.4em;
}
.entry-content li {
  margin-bottom: 0.6em;
}
.entry-content li::marker {
  color: var(--sc-muted);
}
.entry-content ul ul,
.entry-content ol ol {
  margin: 0.6em 0 0;
}

/* ============================================================
   フェーズ2：記事内パーツ
   （ボックス4種は保留。実際の記事投稿でクラス名を確認後に追加）
   ============================================================ */

/* ----------------------------------------------------------
   番号付きステップ（登録手順の中心パーツ）
   ---------------------------------------------------------- */
.entry-content .sc-step {
  counter-reset: sc-step;
  list-style: none;
  margin: 36px 0 var(--sc-p-gap);
  padding: 0;
}
.entry-content .sc-step > li {
  counter-increment: sc-step;
  position: relative;
  margin: 0;
  padding: 0 0 36px 56px;
}
.entry-content .sc-step > li::before {
  content: counter(sc-step);
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1px solid var(--sc-heading);
  border-radius: 50%;
  background: var(--sc-bg);
  color: var(--sc-heading);
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
}
.entry-content .sc-step > li::after {
  content: "";
  position: absolute;
  left: 16px;
  top: 38px;
  bottom: 6px;
  width: 1px;
  background: var(--sc-border);
}
.entry-content .sc-step > li:last-child {
  padding-bottom: 0;
}
.entry-content .sc-step > li:last-child::after {
  display: none;
}
.entry-content .sc-step-title {
  margin: 4px 0 8px;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.6;
  color: var(--sc-heading);
}
.entry-content .sc-step p {
  margin-bottom: 0.9em;
}
.entry-content .sc-step p:last-child {
  margin-bottom: 0;
}
.entry-content .sc-step-note {
  font-size: 14px;
  color: var(--sc-muted);
}

/* ----------------------------------------------------------
   比較表（スマホ横スクロール／1列目固定）
   ---------------------------------------------------------- */
.entry-content .sc-compare { margin: 36px 0; }
.entry-content .sc-compare-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--sc-border);
  border-radius: var(--sc-radius);
}
.entry-content .sc-compare table {
  width: 100%;
  min-width: 560px;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 14px;
  line-height: 1.7;
  background: var(--sc-bg);
}
.entry-content .sc-compare th,
.entry-content .sc-compare td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--sc-border);
  border-right: 1px solid var(--sc-border);
  text-align: left;
  vertical-align: top;
  background: var(--sc-bg);
}
.entry-content .sc-compare thead th {
  background: var(--sc-bg-section);
  color: var(--sc-heading);
  font-weight: 700;
  white-space: nowrap;
}
.entry-content .sc-compare tr:last-child th,
.entry-content .sc-compare tr:last-child td { border-bottom: none; }
.entry-content .sc-compare th:last-child,
.entry-content .sc-compare td:last-child { border-right: none; }
.entry-content .sc-compare th:first-child,
.entry-content .sc-compare td:first-child {
  position: sticky;
  left: 0;
  z-index: 1;
  min-width: 116px;
  background: var(--sc-bg);
  font-weight: 700;
  color: var(--sc-heading);
  box-shadow: 1px 0 0 var(--sc-border);
}
.entry-content .sc-compare thead th:first-child {
  z-index: 2;
  background: var(--sc-bg-section);
}
.entry-content .sc-compare-note {
  margin: 10px 0 0;
  font-size: 12px;
  color: var(--sc-muted);
}

/* ----------------------------------------------------------
   ランキング（装飾を抑えた順位表示）
   ---------------------------------------------------------- */
.entry-content .sc-rank {
  list-style: none;
  margin: 36px 0;
  padding: 0;
  display: grid;
  gap: 18px;
}
.entry-content .sc-rank > li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
  margin: 0;
  padding: 20px;
  border: 1px solid var(--sc-border);
  border-radius: var(--sc-radius);
  background: var(--sc-bg);
}
.entry-content .sc-rank-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--sc-radius);
  background: var(--sc-bg-section);
  border: 1px solid var(--sc-border);
  color: var(--sc-muted);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.04em;
}
.entry-content .sc-rank-badge .sc-rank-num {
  font-size: 18px;
  line-height: 1;
}
.entry-content .sc-rank > li:first-child .sc-rank-badge {
  background: var(--sc-heading);
  border-color: var(--sc-heading);
  color: #FFFFFF;
}
.entry-content .sc-rank-title {
  margin: 0 0 6px;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--sc-heading);
}
.entry-content .sc-rank-body p { margin: 0 0 8px; font-size: 15px; }
.entry-content .sc-rank-meta { margin: 0; font-size: 13px; color: var(--sc-muted); }

/* ----------------------------------------------------------
   吹き出し（Cocoon標準 .speech-wrap を上書き）
   ---------------------------------------------------------- */
.entry-content .speech-wrap {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin: 32px 0;
  padding: 0;
  border: none;
  background: none;
}
.entry-content .speech-wrap.sbp-r {
  flex-direction: row-reverse;
}
.entry-content .speech-person {
  flex: 0 0 auto;
  width: 56px;
  text-align: center;
}
.entry-content .speech-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--sc-border);
  background: var(--sc-bg-section);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sc-muted);
  font-size: 11px;
  letter-spacing: 0.02em;
}
.entry-content .speech-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.entry-content .speech-name {
  margin-top: 6px;
  font-size: 11px;
  line-height: 1.4;
  color: var(--sc-muted);
}
.entry-content .speech-balloon {
  position: relative;
  flex: 1 1 auto;
  margin: 0;
  padding: 16px 18px;
  border: 1px solid var(--sc-border);
  border-radius: var(--sc-radius-lg);
  background: var(--sc-bg);
  font-size: 15px;
  line-height: 1.8;
}
.entry-content .speech-balloon::before,
.entry-content .speech-balloon::after {
  content: "";
  position: absolute;
  top: 20px;
  width: 0;
  height: 0;
  border: 8px solid transparent;
}
.entry-content .sbp-l .speech-balloon::before {
  left: -17px;
  border-right-color: var(--sc-border);
}
.entry-content .sbp-l .speech-balloon::after {
  left: -15px;
  border-right-color: var(--sc-bg);
}
.entry-content .sbp-r .speech-balloon {
  background: var(--sc-bg-section);
}
.entry-content .sbp-r .speech-balloon::before {
  right: -17px;
  border-left-color: var(--sc-border);
}
.entry-content .sbp-r .speech-balloon::after {
  right: -15px;
  border-left-color: var(--sc-bg-section);
}
.entry-content .speech-balloon p:last-child {
  margin-bottom: 0;
}

/* ----------------------------------------------------------
   FAQ（details / summary・JS不使用）
   ---------------------------------------------------------- */
.entry-content .sc-faq { margin: 36px 0; }
.entry-content .sc-faq-item { border-bottom: 1px solid var(--sc-border); }
.entry-content .sc-faq-item:last-child { border-bottom: none; }
.entry-content .sc-faq-item > summary {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 18px 36px 18px 0;
  position: relative;
  cursor: pointer;
  list-style: none;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.7;
  color: var(--sc-heading);
}
.entry-content .sc-faq-item > summary::-webkit-details-marker { display: none; }
.entry-content .sc-faq-item > summary::before {
  content: "Q";
  flex: 0 0 auto;
  color: var(--sc-muted);
  font-size: 14px;
  line-height: 1.85;
  letter-spacing: 0.04em;
}
.entry-content .sc-faq-item > summary::after {
  content: "";
  position: absolute;
  right: 8px;
  top: 26px;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--sc-muted);
  border-bottom: 2px solid var(--sc-muted);
  transform: translateY(-4px) rotate(45deg);
  transition: transform 0.15s ease;
}
.entry-content .sc-faq-item[open] > summary::after {
  transform: translateY(0) rotate(225deg);
}
.entry-content .sc-faq-item > summary:hover { color: var(--sc-pink); }
.entry-content .sc-faq-body {
  display: flex;
  gap: 12px;
  padding: 0 8px 20px 0;
  font-size: 15px;
  line-height: 1.85;
  color: var(--sc-text);
}
.entry-content .sc-faq-body::before {
  content: "A";
  flex: 0 0 auto;
  color: var(--sc-muted);
  font-size: 14px;
  line-height: 1.85;
  letter-spacing: 0.04em;
}
.entry-content .sc-faq-body p:last-child { margin-bottom: 0; }

/* ----------------------------------------------------------
   まとめボックス
   ---------------------------------------------------------- */
.entry-content .sc-summary {
  margin: 52px 0;
  padding: 32px 28px;
  border: 1px solid var(--sc-border);
  border-radius: var(--sc-radius-lg);
  background: var(--sc-bg-section);
}
.entry-content .sc-summary-title {
  margin: 0 0 14px;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.6;
  color: var(--sc-heading);
}
.entry-content .sc-summary ul { margin: 0; padding-left: 1.3em; font-size: 15px; }
.entry-content .sc-summary li:last-child { margin-bottom: 0; }

/* ============================================================
   フェーズ3：CVエリア3種
   ============================================================ */
.entry-content .sc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 14px 28px;
  border: none;
  border-radius: 999px;
  background: var(--sc-green);
  color: var(--sc-on-green);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.15s ease;
}
.entry-content .sc-btn:hover,
.entry-content .sc-btn:focus-visible {
  background: var(--sc-green-hover);
  color: var(--sc-on-green);
  text-decoration: none;
}
.entry-content .sc-btn-lg {
  width: 100%;
  min-height: 64px;
  font-size: 18px;
}
.entry-content .sc-btn .sc-btn-icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  font-size: 11px;
  line-height: 1;
}
.entry-content .sc-btn-note {
  margin: 12px 0 0;
  font-size: 13px;
  color: var(--sc-muted);
  line-height: 1.7;
}

/* ① 上部：1行の見出し＋ボタン */
.entry-content .sc-cv-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin: 52px 0;
  padding: 22px 20px;
  text-align: center;
  border: 1px solid var(--sc-border);
  border-radius: var(--sc-radius);
  background: var(--sc-bg);
}
.entry-content .sc-cv-top .sc-cv-lead {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  color: var(--sc-heading);
  line-height: 1.6;
}
.entry-content .sc-cv-top .sc-btn-note {
  margin: 0;
}
.entry-content .sc-cv-top .sc-btn {
  min-height: 48px;
  padding: 12px 26px;
  font-size: 15px;
  white-space: nowrap;
}

/* ② 中部：ボックス型 */
.entry-content .sc-cv-mid {
  margin: var(--sc-gap-cv) 0;
  padding: 30px 26px;
  border: 1px solid #CFCFD6;
  border-radius: var(--sc-radius-lg);
  background: var(--sc-bg-section);
  text-align: center;
}
.entry-content .sc-cv-mid .sc-cv-title {
  margin: 0 0 16px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
  color: var(--sc-heading);
}
.entry-content .sc-cv-list {
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
  display: inline-block;
  text-align: left;
}
.entry-content .sc-cv-list li {
  position: relative;
  margin: 0 0 10px;
  padding-left: 24px;
  font-size: 15px;
  line-height: 1.75;
}
.entry-content .sc-cv-list li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 0.62em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sc-muted);
}
.entry-content .sc-cv-mid .sc-btn {
  width: 100%;
  max-width: 420px;
  min-height: 56px;
}

/* ③ 下部：いちばん目立たせる */
.entry-content .sc-cv-bottom {
  margin: var(--sc-gap-cv) 0;
  padding: 36px 24px;
  border: 2px solid var(--sc-green);
  border-radius: var(--sc-radius-lg);
  background: var(--sc-bg);
  text-align: center;
}
.entry-content .sc-cv-bottom .sc-cv-title {
  margin: 0 0 8px;
  font-size: 22px;
  line-height: 1.5;
  font-weight: 700;
  color: var(--sc-heading);
}
.entry-content .sc-cv-bottom .sc-cv-sub {
  margin: 0 0 22px;
  font-size: 14px;
  color: var(--sc-muted);
  line-height: 1.8;
}
.entry-content .sc-cv-bottom .sc-cv-list {
  margin: 0 0 26px;
}

/* ============================================================
   フェーズ4：リード文・免責事項
   ============================================================ */
.entry-content .sc-lead {
  margin: 40px 0 0;
  padding: 0;
  border: none;
  font-size: 16px;
  line-height: 1.9;
  color: var(--sc-text);
}
.entry-content .sc-lead p:last-child {
  margin-bottom: 0;
}

.entry-content .sc-disclaimer {
  margin: 24px 0 0;
  padding: 18px 20px;
  border: 1px solid var(--sc-border);
  border-radius: var(--sc-radius);
  background: var(--sc-bg-section);
  font-size: 12px;
  line-height: 1.9;
  color: var(--sc-muted);
}
.entry-content .sc-disclaimer p {
  margin: 0 0 0.8em;
}
.entry-content .sc-disclaimer p:last-child {
  margin-bottom: 0;
}
.entry-content .sc-disclaimer-title {
  display: block;
  margin-bottom: 6px;
  font-size: 15px;
  font-weight: 700;
  color: var(--sc-heading);
}

/* ============================================================
   フェーズ5：トップページ（フロントページ）
   記事ページと同じトークン・同じ部品を使用。JS不要。
   ピンクは記事ページと同じ --sc-pink（#E01B60）をそのまま使用。
   ============================================================ */
.sc-home {
  --sc-gap-section: 56px;
  font-size: var(--sc-fs-body);
  line-height: var(--sc-lh-body);
  color: var(--sc-text);
  letter-spacing: 0.01em;
}
.sc-home a {
  color: var(--sc-text);
  text-decoration: none;
  transition: color 0.15s ease;
}
.sc-home a:hover,
.sc-home a:focus-visible {
  color: var(--sc-pink);
}

/* --- セクション枠組み --- */
.sc-home .sc-sec {
  margin: var(--sc-gap-section) 0 0;
}
.sc-home .sc-sec-head {
  margin: 0 0 26px;
  padding: 0;
}
.sc-home .sc-sec-title {
  position: relative;
  margin: 0;
  padding: 0 0 0 14px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--sc-heading);
  letter-spacing: 0.02em;
}
.sc-home .sc-sec-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.22em;
  bottom: 0.22em;
  width: 3px;
  border-radius: 2px;
  background: var(--sc-pink);
}
.sc-home .sc-sec-sub {
  margin: 10px 0 0;
  padding-left: 14px;
  font-size: 14px;
  line-height: 1.8;
  color: var(--sc-muted);
}

/* --- ヒーロー（画像なし） --- */
.sc-home .sc-hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
  margin: 24px 0 0;
  padding: 28px 22px 26px;
  border-radius: var(--sc-radius-lg);
  background: var(--sc-bg-section);
}
.sc-home .sc-hero-eyebrow {
  display: inline-block;
  margin: 0 0 14px;
  padding: 5px 13px;
  border: none;
  border-radius: 999px;
  background: var(--sc-pink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.5;
  color: #FFFFFF;
}
.sc-home .sc-hero-title {
  margin: 0;
  font-size: 29px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.01em;
  color: var(--sc-heading);
}
.sc-home .sc-hero-title .sc-hero-em {
  color: var(--sc-pink);
}
.sc-home .sc-hero-sub {
  margin: 12px 0 0;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.7;
  color: var(--sc-heading);
}
.sc-home .sc-freshness {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: 100%;
  margin: 18px 0 0;
  padding: 7px 14px;
  border: 1px solid var(--sc-border);
  border-radius: 999px;
  background: var(--sc-bg);
  font-size: 13px;
  line-height: 1.6;
  color: var(--sc-muted);
}
.sc-home .sc-freshness strong {
  color: var(--sc-heading);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.sc-home .sc-freshness > span {
  overflow-wrap: anywhere;
}
.sc-home .sc-freshness::before {
  content: "";
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sc-pink);
}

/* --- はじめての方はここから（3ステップ） --- */
.sc-home .sc-step-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.sc-home .sc-step-item {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 22px 22px 20px;
  border: 1px solid var(--sc-border);
  border-radius: var(--sc-radius-lg);
  background: var(--sc-bg);
  transition: border-color 0.15s ease, background-color 0.15s ease;
}
.sc-home a.sc-step-item:hover,
.sc-home a.sc-step-item:focus-visible {
  border-color: #CFCFD6;
  background: var(--sc-bg-section);
  color: var(--sc-text);
}
.sc-home .sc-step-item.is-pending {
  border-style: dashed;
  background: var(--sc-bg-section);
}
.sc-home .sc-step-thumb {
  display: block;
  aspect-ratio: 16 / 9;
  margin: 0 0 16px;
  border-radius: var(--sc-radius);
  background: var(--sc-bg-section);
  overflow: hidden;
}
.sc-home .sc-step-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.sc-home .sc-step-num {
  display: block;
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1;
  color: var(--sc-pink);
  font-variant-numeric: tabular-nums;
}
.sc-home .sc-step-item.is-pending .sc-step-num {
  color: var(--sc-muted);
}
.sc-home .sc-step-title {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  color: var(--sc-heading);
}
.sc-home .sc-step-item.is-pending .sc-step-title {
  color: var(--sc-muted);
}
.sc-home .sc-step-desc {
  margin: 0 0 14px;
  font-size: 13px;
  line-height: 1.8;
  color: var(--sc-text);
}
.sc-home .sc-step-item.is-pending .sc-step-desc {
  color: var(--sc-muted);
}
.sc-home .sc-step-link {
  margin: auto 0 0;
  font-size: 13px;
  line-height: 1.7;
  color: var(--sc-pink);
  font-weight: 500;
}
.sc-home a.sc-step-item:hover .sc-step-link,
.sc-home a.sc-step-item:focus-visible .sc-step-link {
  color: var(--sc-pink-dark);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}
.sc-home .sc-step-pending {
  margin: auto 0 0;
  font-size: 12px;
  line-height: 1.7;
  color: var(--sc-muted);
}

/* --- まず読むべき記事 --- */
.sc-home .sc-pick-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.sc-home .sc-pick-card {
  display: block;
  position: relative;
  height: 100%;
  padding: 28px 24px 24px;
  border: 1px solid var(--sc-border);
  border-radius: var(--sc-radius-lg);
  background: var(--sc-bg);
  transition: border-color 0.15s ease, background-color 0.15s ease;
}
.sc-home .sc-pick-card:hover,
.sc-home .sc-pick-card:focus-visible {
  border-color: #CFCFD6;
  background: var(--sc-bg-section);
  color: var(--sc-text);
}
.sc-home .sc-pick-thumb {
  display: block;
  aspect-ratio: 16 / 9;
  margin: 0 0 18px;
  border-radius: var(--sc-radius);
  background: var(--sc-bg-section);
  overflow: hidden;
}
.sc-home .sc-pick-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.sc-home .sc-pick-index {
  display: block;
  margin: 0 0 14px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
  color: var(--sc-pink);
  font-variant-numeric: tabular-nums;
}
.sc-home .sc-pick-cat {
  display: inline-block;
  margin: 0 0 12px;
  padding: 4px 10px;
  border: 1px solid var(--sc-border);
  border-radius: var(--sc-radius);
  background: var(--sc-bg-section);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.5;
  color: var(--sc-muted);
}
.sc-home .sc-pick-title {
  margin: 0 0 12px;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.6;
  color: var(--sc-heading);
}
.sc-home .sc-pick-desc {
  margin: 0 0 18px;
  font-size: 14px;
  line-height: 1.85;
  color: var(--sc-text);
}
.sc-home .sc-pick-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  margin: 0;
  padding: 0;
  font-size: 12px;
  line-height: 1.6;
  color: var(--sc-muted);
}
.sc-home .sc-pick-meta .sc-pick-updated {
  font-weight: 700;
  color: var(--sc-text);
  font-variant-numeric: tabular-nums;
}

/* --- 中部CV（記事ページの中部CVを流用） --- */
.sc-home .sc-home-cv {
  max-width: none;
  margin: var(--sc-gap-section) 0 0;
}
.sc-home .sc-home-cv .sc-cv-mid {
  margin: 0;
}
.sc-home .sc-home-cv .sc-cv-mid .sc-cv-list {
  display: block;
  max-width: 420px;
  margin-inline: auto;
}
.sc-home .sc-home-cv .sc-cv-mid .sc-btn {
  display: flex;
  margin-inline: auto;
}

/* --- カテゴリー別記事一覧 --- */
.sc-home .sc-catsec {
  margin: 0 0 20px;
  padding: 22px 22px 14px;
  border: 1px solid var(--sc-border);
  border-radius: var(--sc-radius-lg);
  background: var(--sc-bg);
}
.sc-home .sc-catsec:last-child {
  margin-bottom: 0;
}
.sc-home .sc-catsec-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 6px 16px;
  margin: 0 0 6px;
  padding: 0;
}
.sc-home .sc-catsec-name {
  position: relative;
  margin: 0;
  padding: 0 0 0 13px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--sc-heading);
  letter-spacing: 0.02em;
}
.sc-home .sc-catsec-name::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sc-pink);
}
.sc-home .sc-catsec-count {
  margin-left: 10px;
  font-size: 12px;
  font-weight: 500;
  color: var(--sc-muted);
  font-variant-numeric: tabular-nums;
}
.sc-home .sc-catsec-more {
  flex: 0 0 auto;
  font-size: 13px;
  font-weight: 500;
  color: var(--sc-pink);
}
.sc-home .sc-catsec-more:hover,
.sc-home .sc-catsec-more:focus-visible {
  color: var(--sc-pink-dark);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}
.sc-home .sc-catsec-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.sc-home .sc-catsec-list li {
  border-bottom: 1px solid var(--sc-border);
}
.sc-home .sc-catsec-list li:last-child {
  border-bottom: none;
}
.sc-home .sc-catsec-list a {
  display: grid;
  grid-template-columns: 96px 1fr;
  align-items: center;
  gap: 4px 16px;
  padding: 14px 2px;
}
.sc-home .sc-catsec-thumb {
  display: block;
  aspect-ratio: 16 / 10;
  border-radius: var(--sc-radius);
  background: var(--sc-bg-section);
  overflow: hidden;
}
.sc-home .sc-catsec-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.sc-home .sc-catsec-body {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.sc-home .sc-catsec-title {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
}
.sc-home .sc-catsec-date {
  margin: 0;
  font-size: 12px;
  line-height: 1.6;
  color: var(--sc-muted);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

/* --- このサイトについて（サイトコンセプト） --- */
.sc-home .sc-home-concept {
  padding: 28px 24px;
  border: 1px solid var(--sc-border);
  border-radius: var(--sc-radius-lg);
  background: var(--sc-bg-section);
}
.sc-home .sc-home-concept-title {
  margin: 0 0 12px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--sc-heading);
}
.sc-home .sc-home-concept .sc-profile-bio {
  margin: 0;
  font-size: 14px;
  line-height: 1.85;
  color: var(--sc-text);
}
.sc-home .sc-profile-policy {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}
.sc-home .sc-profile-policy li {
  padding: 5px 11px;
  border: 1px solid var(--sc-border);
  border-radius: 999px;
  background: var(--sc-bg);
  font-size: 12px;
  line-height: 1.5;
  color: var(--sc-muted);
}

@media screen and (min-width: 782px) {
  .sc-home {
    --sc-gap-section: 88px;
  }
  .sc-home .sc-hero {
    padding: 36px 40px;
  }
  .sc-home .sc-hero-title {
    font-size: 34px;
    line-height: 1.45;
  }
  .sc-home .sc-hero-sub {
    font-size: 16px;
  }
  .sc-home .sc-sec-title {
    font-size: 24px;
  }
  .sc-home .sc-pick-card {
    display: grid;
    grid-template-columns: 300px 1fr;
    grid-template-rows: auto auto auto 1fr auto;
    gap: 0 28px;
    padding: 32px 28px 26px;
  }
  .sc-home .sc-pick-thumb {
    grid-row: 1 / -1;
    grid-column: 1;
    margin: 0;
    aspect-ratio: 16 / 9;
    align-self: start;
  }
  .sc-home .sc-pick-index,
  .sc-home .sc-pick-cat,
  .sc-home .sc-pick-title,
  .sc-home .sc-pick-desc,
  .sc-home .sc-pick-meta {
    grid-column: 2;
    align-self: start;
  }
  .sc-home .sc-pick-cat {
    justify-self: start;
  }
  .sc-home .sc-pick-meta {
    align-self: end;
  }
  .sc-home .sc-step-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .sc-home .sc-catsec-list a {
    grid-template-columns: 112px 1fr auto;
  }
  .sc-home .sc-catsec-body {
    gap: 0;
  }
  .sc-home .sc-catsec {
    margin-bottom: 24px;
    padding: 26px 26px 16px;
  }
  .sc-home .sc-home-concept {
    padding: 32px 32px;
  }
}


/* ============================================================
   フェーズ6：サイドバー（Cocoon標準 .sidebar / .widget-sidebar を上書き）
   最上部＝広告枠（追従なし）、その下のCVウィジェットのみ追従
   ============================================================ */
.sidebar {
  padding: 0;
  border: none;
  background: none;
  font-size: 14px;
  line-height: 1.8;
  color: var(--sc-text);
}
.sidebar .widget-sidebar {
  margin: 0 0 40px;
  padding: 0;
  border: none;
  background: none;
}
.sidebar .widget-sidebar:last-child {
  margin-bottom: 0;
}
.sidebar .widget-sidebar-title {
  margin: 0 0 16px;
  padding: 0 0 12px;
  border: none;
  border-bottom: 1px solid var(--sc-border);
  background: none;
  color: var(--sc-heading);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.6;
  text-align: left;
}
.sidebar a {
  color: var(--sc-text);
  text-decoration: none;
}
.sidebar a:hover {
  color: var(--sc-pink);
  text-decoration: underline;
}

/* --- 広告枠（最上部・追従なし） --- */
.sc-promo {
  max-width: 300px;
  margin-inline: auto;
  border: 1px dashed var(--sc-border);
  border-radius: var(--sc-radius);
  background: var(--sc-bg-section);
  overflow: hidden;
}
.sc-promo-slot {
  aspect-ratio: 300 / 250;
}
.sc-promo-label {
  display: block;
  margin: 0 0 8px;
  color: var(--sc-muted);
  font-size: 11px;
  letter-spacing: 0.12em;
}

/* --- サイドバーCV（広告の下・スクロール追従） --- */
.sc-side-cv {
  border: 1px solid #CFCFD6;
  border-radius: var(--sc-radius-lg);
  background: var(--sc-bg-section);
  padding: 20px 18px;
  text-align: center;
}
.sc-side-cv-title {
  margin: 0 0 6px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.6;
  color: var(--sc-heading);
}
.sc-side-cv-sub {
  margin: 0 0 14px;
  font-size: 12px;
  line-height: 1.7;
  color: var(--sc-muted);
}
.sc-side-cv .sc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--sc-green);
  color: var(--sc-on-green);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  text-decoration: none;
  transition: background-color 0.15s ease;
}
.sc-side-cv .sc-btn:hover,
.sc-side-cv .sc-btn:focus-visible {
  background: var(--sc-green-hover);
  color: var(--sc-on-green);
  text-decoration: none;
}
.sc-side-cv .sc-btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  font-size: 11px;
  line-height: 1;
}
.sc-side-cv-note {
  margin: 10px 0 0;
  font-size: 11px;
  color: var(--sc-muted);
  line-height: 1.6;
}
@media screen and (min-width: 1030px) {
  .sidebar .sc-widget-cv {
    position: sticky;
    top: 24px;
    z-index: 2;
  }
}

/* --- プロフィール --- */
.sc-profile {
  text-align: center;
  border: 1px solid var(--sc-border);
  border-radius: var(--sc-radius-lg);
  background: var(--sc-bg);
  padding: 24px 20px;
}
.sc-profile-avatar {
  width: 72px;
  height: 72px;
  margin: 0 auto 12px;
  border-radius: 50%;
  border: 1px solid var(--sc-border);
  background: var(--sc-bg-section);
  overflow: hidden;
}
.sc-profile-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.sc-profile-name {
  margin: 0 0 4px;
  font-size: 15px;
  font-weight: 700;
  color: var(--sc-heading);
}
.sc-profile-role {
  margin: 0 0 12px;
  font-size: 12px;
  color: var(--sc-muted);
}
.sc-profile-bio {
  margin: 0;
  font-size: 13px;
  line-height: 1.85;
  color: var(--sc-text);
  text-align: left;
}

/* --- カテゴリ --- */
.sc-side-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.sc-side-list li {
  border-bottom: 1px solid var(--sc-border);
}
.sc-side-list li:last-child {
  border-bottom: none;
}
.sc-side-list a {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 2px;
  font-size: 14px;
}
.sc-side-list .sc-count {
  color: var(--sc-muted);
  font-size: 12px;
}

/* --- 新着記事 --- */
.sc-side-posts {
  list-style: none;
  margin: 0;
  padding: 0;
}
.sc-side-posts li {
  border-bottom: 1px solid var(--sc-border);
}
.sc-side-posts li:last-child {
  border-bottom: none;
}
.sc-side-posts a {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 12px;
  padding: 14px 2px;
}
.sc-side-posts .sc-thumb {
  aspect-ratio: 16 / 10;
  border: 1px solid var(--sc-border);
  border-radius: 4px;
  background: var(--sc-bg-section);
  overflow: hidden;
}
.sc-side-posts .sc-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.sc-side-posts .sc-side-title {
  margin: 0 0 4px;
  font-size: 13px;
  line-height: 1.6;
  font-weight: 500;
  color: var(--sc-text);
}
.sc-side-posts .sc-side-date {
  margin: 0;
  font-size: 11px;
  color: var(--sc-muted);
}

/* ============================================================
   フェーズ6補足：本番で実際に運用中のウィジェットのクラス名に合わせる
   （プロフィールはテキストウィジェット直書き、新着記事は独自ウィジェット）
   ============================================================ */

/* プロフィールウィジェット内の疑似要素装飾を除去（Cocoon側の自動装飾） */
#text-1 .textwidget::before,
#text-1 .textwidget::after,
#text-1 .textwidget *::before,
#text-1 .textwidget *::after,
.profile-box::before,
.profile-box::after,
.profile-box *::before,
.profile-box *::after {
  display: none !important;
  content: none !important;
}

.sidebar .profile-box {
  text-align: center;
  border: 1px solid var(--sc-border);
  border-radius: var(--sc-radius-lg);
  background: var(--sc-bg);
  padding: 24px 20px;
}
.sidebar .profile-avatar {
  width: 72px;
  height: 72px;
  margin: 0 auto 12px;
  border-radius: 50%;
  border: 1px solid var(--sc-border);
  object-fit: cover;
  display: block;
}
.sidebar .profile-name {
  margin: 0 0 4px;
  font-size: 15px;
  font-weight: 700;
  color: var(--sc-heading);
  text-align: center;
}
.sidebar .profile-bio {
  margin: 0;
  font-size: 13px;
  line-height: 1.85;
  color: var(--sc-text);
  text-align: left;
}

.sidebar .recent-posts-thumb {
  list-style: none;
  margin: 0;
  padding: 0;
}
.sidebar .recent-posts-thumb li {
  border-bottom: 1px solid var(--sc-border);
}
.sidebar .recent-posts-thumb li:last-child {
  border-bottom: none;
}
.sidebar .recent-posts-thumb li a {
  display: grid;
  grid-template-columns: 72px 1fr;
  align-items: center;
  gap: 12px;
  padding: 14px 2px;
}
.sidebar .recent-posts-thumb img,
.sidebar .rpt-no-img {
  aspect-ratio: 16 / 10;
  width: 100%;
  border: 1px solid var(--sc-border);
  border-radius: 4px;
  object-fit: cover;
  background: var(--sc-bg-section);
  display: block;
}
.sidebar .rpt-title {
  font-size: 13px;
  line-height: 1.6;
  font-weight: 500;
  color: var(--sc-text);
}

.sidebar .widget_categories ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.sidebar .widget_categories li {
  border-bottom: 1px solid var(--sc-border);
}
.sidebar .widget_categories li:last-child {
  border-bottom: none;
}
.sidebar .widget_categories li a {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 2px;
  font-size: 14px;
}

/* ============================================================
   フェーズ2補足：ボックス4種
   Cocoon本体のソース（css/entry-content.css）で実在を確認済み
   ポイント → .information-box / 注意 → .alert-box / 補足 → .blank-box
   ============================================================ */
.entry-content .information-box,
.entry-content .alert-box,
.entry-content .blank-box {
  margin: 36px 0;
  padding: 24px 26px;
  border: 1px solid var(--sc-border);
  border-radius: var(--sc-radius);
  background: var(--sc-bg);
  font-size: 15px;
  line-height: 1.85;
  color: var(--sc-text);
}
.entry-content .information-box {
  background: var(--sc-bg-section);
  border-color: var(--sc-border);
}
.entry-content .alert-box {
  background: #FDF8E3;
  border-color: #EBDFA8;
}
.entry-content .blank-box {
  background: var(--sc-bg);
  border-style: dashed;
}
.entry-content .information-box p:last-child,
.entry-content .alert-box p:last-child,
.entry-content .blank-box p:last-child {
  margin-bottom: 0;
}
/* Cocoon純正のアイコン（FontAwesome）を無効化 */
.entry-content .information-box::before,
.entry-content .alert-box::before,
.entry-content .blank-box::before,
.entry-content .common-icon-box::before {
  content: none;
}
.entry-content .box-title,
.entry-content .sc-box-title {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  padding: 0;
  border: none;
  background: none;
  color: var(--sc-muted);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.6;
  border-radius: 0;
}
.entry-content .box-title::before,
.entry-content .sc-box-title::before {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid currentColor;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
}
.entry-content .information-box .box-title { color: #45454C; }
.entry-content .information-box .box-title::before {
  content: "\2713";
  background: #FFFFFF;
}
.entry-content .alert-box .box-title { color: #775C10; }
.entry-content .alert-box .box-title::before {
  content: "!";
  background: #FFFFFF;
  border-radius: 3px;
  transform: none;
}
.entry-content .blank-box .box-title { color: #5A5A61; }
.entry-content .blank-box .box-title::before {
  content: "i";
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  background: var(--sc-bg-section);
}

/* ============================================================
   復旧：ヘッダー・グローバルナビ・ハンバーガーメニュー・フッター
   （全面書き換え時に引き継ぎ漏れしていたサイト外枠のCSS）
   ============================================================ */

/* --- ヘッダー（ロゴ／グローバルメニュー） --- */
#header-container {
  border-bottom: 1px solid var(--sc-border);
  background: var(--sc-bg);
  position: sticky;
  top: 0;
  z-index: 100;
}

/* --- 年齢確認バー --- */
.sc-age-note {
  border-bottom: 1px solid var(--sc-border);
  background: var(--sc-bg-section);
  color: var(--sc-muted);
  font-size: 12px;
  line-height: 1.7;
  letter-spacing: 0.02em;
  padding: 10px 20px;
  text-align: center;
}
.sc-age-note strong {
  color: var(--sc-text);
  font-weight: 700;
}
.header-container-in.hlt-top-menu {
  align-items: center;
}
.header-container-in.hlt-top-menu .header {
  display: flex;
  align-items: center;
  height: 76px;
}
#header-in {
  display: flex;
  align-items: center;
  gap: 24px;
  max-width: 1256px;
  margin-inline: auto;
  padding: 0 20px;
}
.tagline {
  display: none;
}
.header-container-in.hlt-top-menu .logo-image {
  padding-top: 24px;
}
.logo-header {
  display: flex;
  align-items: center;
  height: 100%;
  margin: 0;
  padding: 0;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.logo-header a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--sc-heading);
  text-decoration: none;
}
.logo-header img {
  height: 32px;
  width: auto;
  display: block;
}

/* --- グローバルナビ（PC） --- */
#navi {
  background: none;
  border: none;
  display: flex;
  align-items: center;
  height: 76px;
}
.navi-in {
  display: flex;
  align-items: center;
  max-width: 1256px;
  width: 100%;
  height: 100%;
  margin-inline: auto;
  padding: 0 20px;
}
#navi ul.menu-header {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
}
#navi ul.menu-header > li {
  flex-shrink: 0;
  width: auto;
  height: auto;
}
#navi ul.menu-header > li > a {
  display: block;
  width: auto;
  height: auto;
  padding: 20px;
  border-radius: var(--sc-radius);
  color: var(--sc-text);
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  text-decoration: none;
  transition: background-color 0.15s ease, color 0.15s ease;
}
#navi ul.menu-header > li > a .caption-wrap,
#navi ul.menu-header > li > a .caption-wrap > div {
  width: auto;
  height: auto;
  display: block;
}
#navi ul.menu-header > li > a:hover {
  background: var(--sc-bg-section);
  color: var(--sc-pink);
}
#navi ul.menu-header > li.current-menu-item > a {
  color: var(--sc-pink);
  box-shadow: inset 0 -2px 0 var(--sc-pink);
}
#navi .sub-menu {
  background: #FFFFFF;
  border: 1px solid var(--sc-border);
  border-top: 2px solid var(--sc-pink);
  box-shadow: 0 4px 12px rgba(0,0,0,.08);
  border-radius: 0 0 4px 4px;
}
#navi .sub-menu a {
  color: var(--sc-text);
  font-size: 13px;
  padding: 10px 16px;
  border-bottom: 1px solid var(--sc-border);
}
#navi .sub-menu a:hover {
  color: var(--sc-pink);
  background: var(--sc-bg-section);
}

/* --- ハンバーガーボタン（スマホ専用） --- */
#hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 300;
  flex-shrink: 0;
}
#hamburger-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--sc-heading);
  border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
  transform-origin: center;
}
#hamburger-btn.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
#hamburger-btn.is-open span:nth-child(2) { opacity: 0; }
#hamburger-btn.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* --- スマホメニュー（ドロワー） --- */
#sp-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 200;
}
#sp-menu-overlay.is-open { display: block; }

#sp-menu {
  position: fixed;
  top: 0;
  left: -280px;
  width: 280px;
  height: 100vh;
  background: #FFFFFF;
  z-index: 250;
  overflow-y: auto;
  transition: left .3s ease;
  box-shadow: 4px 0 16px rgba(0,0,0,.15);
}
#sp-menu.is-open { left: 0; }

#sp-menu .sp-menu-header {
  background: var(--sc-pink);
  padding: 14px 16px;
  font-weight: 700;
  color: #FFFFFF;
  font-size: 15px;
  letter-spacing: .04em;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#sp-menu-close {
  background: transparent;
  border: none;
  color: #FFFFFF;
  font-size: 1.2rem;
  cursor: pointer;
  padding: 4px 8px;
  line-height: 1;
  opacity: .8;
}
#sp-menu-close:hover { opacity: 1; }

#sp-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
#sp-menu ul li {
  margin: 0;
  border-bottom: 1px solid var(--sc-border);
}
#sp-menu ul li a {
  display: block;
  padding: 14px 16px;
  color: var(--sc-text);
  font-size: 14px;
  font-weight: 500;
}
#sp-menu ul li a:hover {
  background: var(--sc-bg-section);
  color: var(--sc-pink);
}
#sp-menu .sub-menu { background: var(--sc-bg-section); }
#sp-menu .sub-menu li a {
  padding-left: 32px;
  font-size: 13px;
  color: var(--sc-muted);
}

/* --- レスポンシブ：834px以下でPCナビを隠しハンバーガーを表示 --- */
@media screen and (max-width: 834px) {
  #navi { display: none !important; }
  #hamburger-btn {
    display: flex !important;
    position: fixed !important;
    top: 10px !important;
    right: 12px !important;
    z-index: 1000 !important;
  }
}

/* --- SNSシェア・フォローボタン 非表示 --- */
.sns-share,
.sns-buttons,
.sns-follow,
.sns-follow-message,
.follow-button,
.shr-button,
.sns-count-box,
.share-button,
.sns-row,
.bc-sns-row,
.wp-block-social-links {
  display: none;
}

/* --- フッター --- */
#footer {
  background: #22232a;
  border-top: none;
}
.footer-bottom {
  padding: 28px 24px 40px;
}
.footer-bottom-content {
  float: none;
  width: 100%;
  max-width: 1140px;
  margin-inline: auto;
  text-align: center;
}
.footer-bottom-logo {
  display: none;
}
#navi-footer {
  margin: 0 0 20px;
}
#navi-footer-in ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 24px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 13px;
}
#navi-footer-in ul li {
  width: auto;
  border: none;
}
#navi-footer-in a {
  color: rgba(255,255,255,.75);
  text-decoration: none;
  display: inline-block;
}
#navi-footer-in a:hover {
  color: #FFFFFF;
  text-decoration: underline;
}
.source-org.copyright {
  color: rgba(255,255,255,.45);
  font-size: 12px;
}

.wrap {
  margin-top: 10px;
  margin-bottom: 10px;
}
