@charset "UTF-8";

/*!
Theme Name: Cocoon Child
Description: Cocoon専用の子テーマ
Theme URI: https://wp-cocoon.com/
Author: わいひら
Author URI: https://nelog.jp/
Template: cocoon-master
Version: 1.1.3
*/


/* =========================================================
   りちょいす 共通設定
========================================================= */

:root {
  --rc-text: #1f2937;
  --rc-heading: #111827;
  --rc-subtext: #667085;

  --rc-border: #e7eaf0;
  --rc-bg-soft: #f7f8fa;
  --rc-bg-lighter: #f8fafc;

  --rc-accent: #2f6fed;
  --rc-accent-dark: #2459bf;
  --rc-accent-soft: #eef4ff;

  --rc-dark: #111827;
  --rc-white: #ffffff;
}


/* =========================================================
   Cocoon 全体レイアウト調整
   現状は全ページ1カラム
========================================================= */

.sidebar {
  display: none;
}

.content-in {
  display: block;
}

main.main {
  width: 100%;
  max-width: none;
}

.main {
  border: 0;
}

a {
  transition:
    color 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease,
    opacity 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}


/* =========================================================
   共通ボタン
========================================================= */

.rechoice-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 50px;
  padding: 0 24px;

  border-radius: 8px;

  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;

  text-decoration: none !important;
  box-sizing: border-box;
}

.rechoice-button-primary,
.rechoice-button-primary:link,
.rechoice-button-primary:visited {
  background: var(--rc-accent) !important;
  border: 1px solid var(--rc-accent) !important;
  color: #ffffff !important;
}

.rechoice-button-primary:hover {
  background: var(--rc-accent-dark) !important;
  border-color: var(--rc-accent-dark) !important;
  color: #ffffff !important;

  transform: translateY(-1px);
}

.rechoice-button-secondary,
.rechoice-button-secondary:link,
.rechoice-button-secondary:visited {
  background: #ffffff !important;
  border: 1px solid var(--rc-border) !important;
  color: var(--rc-heading) !important;
}

.rechoice-button-secondary:hover {
  border-color: #cfd5df !important;
  color: var(--rc-heading) !important;

  transform: translateY(-1px);
}


/* =========================================================
   TOPページ
========================================================= */

.home .content-in {
  width: 100%;
  max-width: none;
}

.home main.main {
  width: 100%;
  max-width: none;

  padding: 0;
  margin: 0;

  border: 0;
}

.home .article {
  width: 100%;
}

.home .entry-content {
  width: 100%;
  max-width: none;

  margin: 0;
}

.home #content,
.home .content {
  margin-top: 0;
}

.home .main {
  background: transparent;
}

.home .entry-title,
.home .date-tags,
.home .author-info {
  display: none;
}


/* TOP共通 */

.rechoice-home {
  color: var(--rc-text);
}

.rechoice-home .rechoice-inner {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.rechoice-home h1,
.rechoice-home h2,
.rechoice-home h3 {
  margin-top: 0;
  padding: 0;

  border: 0;
  background: none;

  color: var(--rc-text);
}

.rechoice-home a {
  text-decoration: none;
}

.rechoice-home p {
  line-height: 1.9;
}


/* =========================================================
   TOP HERO
========================================================= */

.rechoice-hero {
  padding: 96px 0 88px;

  background:
    radial-gradient(
      circle at 85% 20%,
      rgba(47, 111, 237, 0.08),
      transparent 30%
    ),
    linear-gradient(
      180deg,
      #ffffff 0%,
      #fafbfc 100%
    );
}

.rechoice-hero-label,
.rechoice-section-label {
  margin: 0 0 18px;

  color: var(--rc-accent);

  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.rechoice-hero-title {
  margin: 0;

  color: var(--rc-heading);

  font-size: clamp(40px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.03em;
}

.rechoice-hero-text {
  max-width: 620px;

  margin: 28px 0 0;

  color: var(--rc-subtext);

  font-size: 18px;
}

.rechoice-hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;

  margin-top: 34px;
}


/* =========================================================
   TOP 共通セクション
========================================================= */

.rechoice-home .rechoice-section {
  padding: 88px 0;
}

.rechoice-home .rechoice-section:nth-of-type(even) {
  background: var(--rc-bg-soft);
}

.rechoice-section-title {
  margin-bottom: 16px;

  color: var(--rc-heading);

  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.rechoice-section-lead {
  max-width: 720px;

  margin: 0 0 42px;

  color: var(--rc-subtext);

  font-size: 16px;
}

.rechoice-section-more {
  margin-top: 28px;
}

.rechoice-section-more a {
  color: var(--rc-accent);

  font-weight: 700;
}


/* =========================================================
   TOP 悩みカード
========================================================= */

.rechoice-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.rechoice-card {
  display: block;

  padding: 26px;

  border: 1px solid var(--rc-border);
  border-radius: 14px;

  background: #ffffff;

  color: var(--rc-text) !important;
}

.rechoice-card:hover {
  transform: translateY(-3px);

  border-color: #d4dae4;

  box-shadow: 0 12px 30px rgba(16, 24, 40, 0.08);
}

.rechoice-card-number {
  display: block;

  margin-bottom: 16px;

  color: var(--rc-accent);

  font-size: 12px;
  font-weight: 700;
}

.rechoice-card h3 {
  margin-bottom: 12px;

  font-size: 20px;
  line-height: 1.45;
}

.rechoice-card p {
  margin: 0;

  color: var(--rc-subtext);

  font-size: 14px;
}

.rechoice-card-link {
  display: inline-block;

  margin-top: 18px;

  color: var(--rc-accent);

  font-size: 13px;
  font-weight: 700;
}


/* =========================================================
   TOP 選択肢
========================================================= */

.rechoice-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.rechoice-choice {
  display: flex;
  gap: 18px;

  padding: 24px;

  border: 1px solid var(--rc-border);
  border-radius: 12px;

  background: #ffffff;

  color: var(--rc-text) !important;
}

.rechoice-choice:hover {
  transform: translateY(-2px);

  box-shadow: 0 10px 24px rgba(16, 24, 40, 0.06);
}

.rechoice-choice-number {
  flex: 0 0 auto;

  color: var(--rc-accent);

  font-size: 13px;
  font-weight: 700;
}

.rechoice-choice h3 {
  margin-bottom: 8px;

  font-size: 19px;
}

.rechoice-choice p {
  margin: 0;

  color: var(--rc-subtext);

  font-size: 14px;
}


/* =========================================================
   TOP 記事
========================================================= */

.rechoice-article-placeholder {
  padding: 34px;

  border: 1px dashed #cfd5df;
  border-radius: 12px;

  background: #ffffff;

  color: var(--rc-subtext);
}


/* =========================================================
   TOP CASE
========================================================= */

.rechoice-case-sample {
  padding: 32px;

  border: 1px solid var(--rc-border);
  border-radius: 16px;

  background: #ffffff;
}

.rechoice-case-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;

  margin-bottom: 20px;
}

.rechoice-case-meta span {
  display: inline-block;

  padding: 6px 10px;

  border-radius: 999px;

  background: var(--rc-bg-soft);

  color: var(--rc-subtext);

  font-size: 12px;
  font-weight: 700;
}

.rechoice-case-sample h3 {
  margin-bottom: 14px;

  font-size: 22px;
}

.rechoice-coming-soon {
  margin-top: 20px;

  color: var(--rc-accent);

  font-size: 13px;
  font-weight: 700;
}


/* =========================================================
   TOP ABOUT
========================================================= */

.rechoice-about-inner {
  max-width: 820px;
}

.rechoice-about-text p {
  margin-bottom: 14px;

  color: var(--rc-subtext);

  font-size: 16px;
}


/* =========================================================
   TOP 最終CTA
========================================================= */

.rechoice-last-cta {
  padding: 88px 0;

  background: var(--rc-dark);

  color: #ffffff;
}

.rechoice-last-cta h2 {
  margin-bottom: 14px;

  color: #ffffff;

  font-size: clamp(32px, 4vw, 46px);
}

.rechoice-last-cta p {
  color: #d1d5db;
}


/* =========================================================
   下層ページ共通
========================================================= */

.rechoice-subpage {
  padding: 72px 0 96px;

  color: var(--rc-text);
}

.rechoice-subpage > .rechoice-inner {
  width: min(920px, calc(100% - 48px));
  margin: 0 auto;
}


/* 独自見出しがある下層ページだけWP標準タイトルを非表示 */

body:has(.rechoice-subpage) .entry-title,
body:has(.rechoice-theme-page) .entry-title {
  display: none;
}


.rechoice-subpage > .rechoice-inner > .rechoice-section-label {
  margin-bottom: 18px;
}

.rechoice-subpage > .rechoice-inner > h2:first-of-type {
  margin: 0 0 24px;
  padding: 0;

  border: 0;
  background: none;

  color: var(--rc-heading);

  font-size: clamp(36px, 5vw, 52px);
  line-height: 1.25;
  letter-spacing: -0.03em;
}

.rechoice-subpage > .rechoice-inner > h2:first-of-type + p {
  color: var(--rc-subtext);

  font-size: 18px;
}


/* =========================================================
   悩みから探す
========================================================= */

.rechoice-nayami-section {
  position: relative;

  margin-top: 72px;
  padding: 40px 44px;

  border: 1px solid var(--rc-border);
  border-radius: 16px;

  background: #ffffff;
}

.rechoice-nayami-section .rechoice-card-number {
  margin-bottom: 12px;

  color: var(--rc-accent);

  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.rechoice-nayami-section h2 {
  margin: 0 0 20px;
  padding: 0;

  border: 0;
  background: none;

  color: var(--rc-heading);

  font-size: 30px;
  line-height: 1.4;
}

.rechoice-nayami-section h3 {
  margin: 34px 0 14px;
  padding: 0;

  border: 0;
  background: none;

  color: var(--rc-heading);

  font-size: 19px;
}

.rechoice-nayami-section p {
  color: #4b5563;
}

.rechoice-nayami-section ul {
  margin: 18px 0 26px;
  padding: 20px 24px 20px 46px;

  border-radius: 10px;

  background: var(--rc-bg-lighter);
}

.rechoice-nayami-section li {
  margin: 7px 0;
}

.rechoice-nayami-section > p:last-child {
  margin-top: 28px;
}

.rechoice-nayami-section > p:last-child a {
  display: inline-block;

  color: var(--rc-accent);

  font-weight: 700;
}


/* 悩みページ最後 */

.rechoice-nayami-next {
  margin-top: 88px;
  padding: 52px;

  border-radius: 18px;

  background: var(--rc-dark);

  color: #ffffff;
}

.rechoice-nayami-next h2 {
  margin: 0 0 14px;
  padding: 0;

  border: 0;
  background: none;

  color: #ffffff;

  font-size: 32px;
}

.rechoice-nayami-next p {
  color: #d1d5db;
}

.rechoice-nayami-next .rechoice-button {
  margin-top: 16px;
}


/* =========================================================
   選択肢を調べる
========================================================= */

.rechoice-choices-page {
  color: var(--rc-text);
}

.rechoice-choices-page > .rechoice-inner {
  width: min(920px, calc(100% - 48px));
  margin: 0 auto;
}


/* 選択肢本体 */

.rechoice-choice-section {
  margin-top: 72px;
  padding: 40px 44px;

  border: 1px solid var(--rc-border);
  border-radius: 16px;

  background: #ffffff;
}

.rechoice-choice-section:hover {
  transform: translateY(-2px);

  box-shadow: 0 12px 30px rgba(16, 24, 40, 0.06);
}

.rechoice-choice-section .rechoice-card-number {
  margin-bottom: 12px;

  color: var(--rc-accent);

  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.rechoice-choice-section h2 {
  margin: 0 0 20px;
  padding: 0;

  border: 0;
  background: none;

  color: var(--rc-heading);

  font-size: 30px;
  line-height: 1.4;
}

.rechoice-choice-section h3 {
  margin: 34px 0 14px;
  padding: 0;

  border: 0;
  background: none;

  color: var(--rc-heading);

  font-size: 19px;
  line-height: 1.5;
}

.rechoice-choice-section p {
  color: #4b5563;
}

.rechoice-choice-section ul {
  margin: 18px 0 26px;
  padding: 20px 24px 20px 46px;

  border-radius: 10px;

  background: var(--rc-bg-lighter);
}

.rechoice-choice-section li {
  margin: 7px 0;

  line-height: 1.8;
}


/* 選択肢：次にできること */

.rechoice-choice-action {
  margin-top: 32px;
  padding: 24px 26px;

  border-left: 4px solid var(--rc-accent);
  border-radius: 8px;

  background: var(--rc-accent-soft);
}

.rechoice-choice-action strong {
  display: block;

  margin-bottom: 8px;

  color: var(--rc-heading);

  font-size: 15px;
}

.rechoice-choice-action p {
  margin: 0;

  color: #475467;
}


/* 選択肢：最終CTA */

.rechoice-choice-summary {
  margin-top: 88px;
  padding: 52px;

  border-radius: 18px;

  background: var(--rc-dark);

  color: #ffffff;
}

.rechoice-choice-summary .rechoice-section-label {
  color: #7da7ff;
}

.rechoice-choice-summary h2 {
  margin: 0 0 18px;
  padding: 0;

  border: 0;
  background: none;

  color: #ffffff;

  font-size: 32px;
  line-height: 1.4;
}

.rechoice-choice-summary p {
  color: #d1d5db;
}

.rechoice-choice-summary-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;

  margin-top: 30px;
}


/* 選択肢：最終CTA副ボタン */

.rechoice-choice-summary .rechoice-button-secondary,
.rechoice-choice-summary .rechoice-button-secondary:link,
.rechoice-choice-summary .rechoice-button-secondary:visited {
  background: transparent !important;
  border: 1px solid #ffffff !important;
  color: #ffffff !important;
  opacity: 1 !important;
}

.rechoice-choice-summary .rechoice-button-secondary:hover {
  background: #ffffff !important;
  border-color: #ffffff !important;
  color: var(--rc-dark) !important;
}


/* =========================================================
   テーマから探す
========================================================= */

.rechoice-theme-page {
  width: min(920px, calc(100% - 48px));

  margin: 0 auto;
  padding: 72px 0 96px;

  color: var(--rc-text);
}


/* テーマ冒頭 */

.rechoice-theme-intro {
  max-width: 760px;

  margin-bottom: 56px;
}

.rechoice-theme-intro .rechoice-section-label {
  margin-bottom: 16px;

  color: var(--rc-accent);

  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.rechoice-theme-intro h1 {
  margin: 0 0 20px;
  padding: 0;

  border: 0;
  background: none;

  color: var(--rc-heading);

  font-size: clamp(36px, 5vw, 52px);
  line-height: 1.25;
  letter-spacing: -0.03em;
}

.rechoice-theme-intro p {
  margin: 0 0 14px;

  color: var(--rc-subtext);

  font-size: 16px;
  line-height: 1.9;
}


/* テーマカード */

.rechoice-theme-section {
  margin-top: 28px;
  padding: 34px 36px;

  border: 1px solid var(--rc-border);
  border-radius: 14px;

  background: #ffffff;
}

.rechoice-theme-section:hover {
  transform: translateY(-2px);

  box-shadow: 0 10px 28px rgba(16, 24, 40, 0.06);
}

.rechoice-theme-section .rechoice-card-number {
  margin: 0 0 10px;

  color: var(--rc-accent);

  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.rechoice-theme-section h2 {
  margin: 0 0 16px;
  padding: 0;

  border: 0;
  background: none;

  color: var(--rc-heading);

  font-size: 27px;
  line-height: 1.4;
}

.rechoice-theme-section > p {
  margin: 0 0 18px;

  color: #4b5563;

  line-height: 1.9;
}

.rechoice-theme-section h3 {
  margin: 28px 0 12px;
  padding: 0;

  border: 0;
  background: none;

  color: var(--rc-heading);

  font-size: 17px;
  line-height: 1.5;
}

.rechoice-theme-section ul {
  margin: 16px 0 24px;
  padding: 18px 22px 18px 42px;

  border-radius: 10px;

  background: var(--rc-bg-lighter);
}

.rechoice-theme-section li {
  margin: 6px 0;

  line-height: 1.8;
}

.rechoice-theme-link {
  display: inline-flex;
  align-items: center;

  margin-top: 4px;

  color: var(--rc-accent) !important;

  font-size: 14px;
  font-weight: 700;

  text-decoration: none !important;
}

.rechoice-theme-link:hover {
  transform: translateX(3px);

  color: var(--rc-accent-dark) !important;
}


/* テーマ最終CTA */

.rechoice-theme-guide {
  margin-top: 72px;
  padding: 48px 50px;

  border-radius: 18px;

  background: var(--rc-dark);

  color: #ffffff;
}

.rechoice-theme-guide .rechoice-section-label {
  margin-bottom: 14px;

  color: #7da7ff;
}

.rechoice-theme-guide h2 {
  margin: 0 0 18px;
  padding: 0;

  border: 0;
  background: none;

  color: #ffffff;

  font-size: 31px;
  line-height: 1.4;
}

.rechoice-theme-guide p {
  margin: 0 0 12px;

  color: #d1d5db;

  line-height: 1.9;
}

.rechoice-theme-guide-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;

  margin-top: 28px;
}

.rechoice-theme-guide-links .rechoice-button-secondary,
.rechoice-theme-guide-links .rechoice-button-secondary:link,
.rechoice-theme-guide-links .rechoice-button-secondary:visited {
  background: transparent !important;
  border: 1px solid #ffffff !important;
  color: #ffffff !important;
  opacity: 1 !important;
}

.rechoice-theme-guide-links .rechoice-button-secondary:hover {
  background: #ffffff !important;
  border-color: #ffffff !important;
  color: var(--rc-dark) !important;
}


/* =========================================================
   通常記事
========================================================= */

.single-post .main {
  width: 100%;
  max-width: none;
}

.single-post .article {
  width: 100%;
}

.single-post .entry-content {
  width: min(800px, calc(100% - 48px));
  max-width: none;

  margin: 0 auto;

  color: var(--rc-text);
}

.rechoice-article {
  color: var(--rc-text);

  font-size: 17px;
  line-height: 1.95;
}

.rechoice-article p {
  margin: 0 0 1.55em;
}

.rechoice-article a {
  color: var(--rc-accent);

  text-decoration: underline;
  text-underline-offset: 3px;
}

.rechoice-article strong {
  color: var(--rc-heading);

  font-weight: 700;
}


/* 記事冒頭 */

.rechoice-article-lead {
  margin-bottom: 34px !important;

  color: #475467;

  font-size: 18px;
  line-height: 1.95;
}


/* 記事H2 */

.rechoice-article h2 {
  position: relative;

  margin: 72px 0 28px;
  padding: 0 0 14px 18px;

  border: 0;
  border-bottom: 1px solid #e5e7eb;

  background: none;

  color: var(--rc-heading);

  font-size: 28px;
  line-height: 1.45;
}

.rechoice-article h2::before {
  content: "";

  position: absolute;
  left: 0;
  top: 4px;

  width: 4px;
  height: calc(100% - 18px);

  border-radius: 999px;

  background: var(--rc-accent);
}


/* 記事H3 */

.rechoice-article h3 {
  margin: 42px 0 18px;
  padding: 0;

  border: 0;
  background: none;

  color: var(--rc-text);

  font-size: 21px;
  line-height: 1.5;
}

.rechoice-article h3::before {
  content: "—";

  margin-right: 8px;

  color: var(--rc-accent);

  font-weight: 700;
}


/* 記事リスト */

.rechoice-article ul,
.rechoice-article ol {
  margin: 22px 0 30px;
  padding: 22px 26px 22px 46px;

  border-radius: 10px;

  background: var(--rc-bg-lighter);
}

.rechoice-article li {
  margin: 8px 0;

  line-height: 1.8;
}


/* =========================================================
   記事：この記事の結論
========================================================= */

.rechoice-article-summary {
  margin: 42px 0 54px;
  padding: 30px 32px;

  border: 1px solid #dbe7ff;
  border-radius: 14px;

  background: #f4f7ff;
}

.rechoice-article-summary-label {
  margin-bottom: 16px !important;

  color: var(--rc-accent);

  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.rechoice-article-summary p:last-child {
  margin-bottom: 0;
}


/* =========================================================
   記事：チェックボックス
========================================================= */

.rechoice-check-box {
  margin: 30px 0 38px;
  padding: 26px 28px;

  border: 1px solid var(--rc-border);
  border-radius: 12px;

  background: var(--rc-bg-lighter);
}

.rechoice-check-box > p:first-child {
  margin-bottom: 14px;
}

.rechoice-check-box ul {
  margin: 0;
  padding: 0;

  list-style: none;

  background: transparent;
}

.rechoice-check-box li {
  position: relative;

  margin: 10px 0;
  padding-left: 28px;
}

.rechoice-check-box li::before {
  content: "✓";

  position: absolute;
  left: 0;
  top: 0;

  color: var(--rc-accent);

  font-weight: 700;
}


/* =========================================================
   記事：今できること
========================================================= */

.rechoice-next-actions {
  margin: 48px 0 60px;
}

.rechoice-next-actions-title {
  margin-bottom: 18px !important;

  color: var(--rc-heading);

  font-size: 18px;
  font-weight: 700;
}

.rechoice-next-actions-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.rechoice-next-action {
  padding: 24px 22px;

  border: 1px solid var(--rc-border);
  border-radius: 12px;

  background: #ffffff;
}

.rechoice-next-action h3 {
  margin: 0 0 10px;

  font-size: 18px;
}

.rechoice-next-action h3::before {
  content: none;
}

.rechoice-next-action p {
  margin: 0;

  color: var(--rc-subtext);

  font-size: 14px;
  line-height: 1.8;
}


/* =========================================================
   記事：最終CTA
========================================================= */

.rechoice-article-choice {
  margin: 72px 0 68px;
  padding: 42px 44px;

  border-radius: 16px;

  background: var(--rc-dark);

  color: #ffffff;
}

.rechoice-article-choice .rechoice-section-label {
  margin-bottom: 14px;

  color: #7da7ff;
}

.rechoice-article-choice h2 {
  margin: 0 0 16px;
  padding: 0;

  border: 0;
  background: none;

  color: #ffffff;

  font-size: 30px;
}

.rechoice-article-choice h2::before {
  content: none;
}

.rechoice-article-choice p {
  color: #d1d5db;
}

.rechoice-article-choice-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;

  margin-top: 28px;
}

.rechoice-article-choice-buttons a.rechoice-button,
.rechoice-article-choice-buttons a.rechoice-button:link,
.rechoice-article-choice-buttons a.rechoice-button:visited {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;

  min-width: 160px;
  min-height: 48px;

  padding: 12px 22px !important;

  border-radius: 8px !important;

  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;

  text-decoration: none !important;
}


/* 記事CTA 青ボタン */

.rechoice-article-choice-buttons a.rechoice-button-primary,
.rechoice-article-choice-buttons a.rechoice-button-primary:link,
.rechoice-article-choice-buttons a.rechoice-button-primary:visited {
  background: var(--rc-accent) !important;
  border: 1px solid var(--rc-accent) !important;
  color: #ffffff !important;
}

.rechoice-article-choice-buttons a.rechoice-button-primary:hover {
  background: var(--rc-accent-dark) !important;
  border-color: var(--rc-accent-dark) !important;
  color: #ffffff !important;
}


/* 記事CTA 白ボタン */

.rechoice-article-choice-buttons a.rechoice-button-secondary,
.rechoice-article-choice-buttons a.rechoice-button-secondary:link,
.rechoice-article-choice-buttons a.rechoice-button-secondary:visited {
  background: #ffffff !important;
  border: 1px solid #ffffff !important;
  color: var(--rc-dark) !important;
  opacity: 1 !important;
}

.rechoice-article-choice-buttons a.rechoice-button-secondary:hover {
  background: #f3f4f6 !important;
  border-color: #f3f4f6 !important;
  color: var(--rc-dark) !important;
}


/* =========================================================
   記事タイトル・日付・パンくず
========================================================= */

.single-post .entry-title {
  width: min(800px, calc(100% - 48px));

  margin-left: auto;
  margin-right: auto;

  color: var(--rc-heading);

  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.4;
  letter-spacing: -0.02em;
}

.single-post .date-tags {
  width: min(800px, calc(100% - 48px));

  margin-left: auto;
  margin-right: auto;
}

.single-post .breadcrumb {
  max-width: 800px;

  margin-left: auto;
  margin-right: auto;
}


/* =========================================================
   記事目次
========================================================= */

.single-post .toc {
  width: min(800px, calc(100% - 48px));

  margin: 34px auto 50px;
  padding: 24px 28px;

  border: 1px solid var(--rc-border);
  border-radius: 12px;

  background: #ffffff;
}

.single-post .toc-title {
  margin-bottom: 14px;

  font-weight: 700;
  text-align: left;
}

.single-post .toc-list {
  font-size: 14px;
  line-height: 1.8;
}


/* =========================================================
   記事SNS・関連記事
========================================================= */

.single-post .sns-share,
.single-post .related-entry-heading,
.single-post .related-list {
  width: min(800px, calc(100% - 48px));

  margin-left: auto;
  margin-right: auto;
}


/* =========================================================
   レスポンシブ 1023px以下
========================================================= */

@media screen and (max-width: 1023px) {

  .rechoice-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}


/* =========================================================
   レスポンシブ 834px以下
========================================================= */

@media screen and (max-width: 834px) {

  /* TOP */

  .rechoice-home .rechoice-inner {
    width: min(100% - 32px, 1120px);
  }

  .rechoice-hero {
    padding: 72px 0 64px;
  }

  .rechoice-home .rechoice-section {
    padding: 64px 0;
  }

  .rechoice-choice-grid {
    grid-template-columns: 1fr;
  }


  /* 下層共通 */

  .rechoice-subpage {
    padding: 52px 0 72px;
  }

  .rechoice-subpage > .rechoice-inner,
  .rechoice-choices-page > .rechoice-inner {
    width: calc(100% - 32px);
  }


  /* 悩み */

  .rechoice-nayami-section {
    margin-top: 48px;
    padding: 28px;
  }

  .rechoice-nayami-next {
    margin-top: 64px;
    padding: 34px 28px;
  }


  /* 選択肢 */

  .rechoice-choice-section {
    margin-top: 48px;
    padding: 28px;
  }

  .rechoice-choice-summary {
    margin-top: 64px;
    padding: 34px 28px;
  }


  /* テーマ */

  .rechoice-theme-page {
    width: calc(100% - 32px);

    padding: 52px 0 72px;
  }

  .rechoice-theme-intro {
    margin-bottom: 42px;
  }

  .rechoice-theme-section {
    margin-top: 22px;
    padding: 28px;
  }

  .rechoice-theme-guide {
    margin-top: 56px;
    padding: 36px 30px;
  }


  /* 記事 */

  .single-post .entry-content,
  .single-post .entry-title,
  .single-post .date-tags,
  .single-post .breadcrumb,
  .single-post .toc,
  .single-post .sns-share,
  .single-post .related-entry-heading,
  .single-post .related-list {
    width: calc(100% - 32px);
  }

  .rechoice-article {
    font-size: 16px;
  }

  .rechoice-article h2 {
    margin-top: 58px;

    font-size: 25px;
  }

  .rechoice-article h3 {
    margin-top: 34px;

    font-size: 19px;
  }

  .rechoice-next-actions-grid {
    grid-template-columns: 1fr;
  }

  .rechoice-article-choice {
    padding: 34px 28px;
  }

}


/* =========================================================
   レスポンシブ 480px以下
========================================================= */

@media screen and (max-width: 480px) {

  /* TOP */

  .rechoice-home .rechoice-inner {
    width: calc(100% - 28px);
  }

  .rechoice-hero {
    padding: 56px 0 52px;
  }

  .rechoice-hero-title {
    font-size: 36px;
  }

  .rechoice-hero-text {
    font-size: 16px;
  }

  .rechoice-hero-buttons {
    display: grid;
    grid-template-columns: 1fr;
  }

  .rechoice-button {
    width: 100%;
  }

  .rechoice-card-grid {
    grid-template-columns: 1fr;
  }

  .rechoice-card,
  .rechoice-choice,
  .rechoice-case-sample {
    padding: 20px;
  }

  .rechoice-section-title {
    font-size: 28px;
  }


  /* 下層共通 */

  .rechoice-subpage > .rechoice-inner,
  .rechoice-choices-page > .rechoice-inner {
    width: calc(100% - 28px);
  }


  /* 悩み */

  .rechoice-nayami-section {
    padding: 22px 20px;
  }

  .rechoice-nayami-section h2 {
    font-size: 25px;
  }


  /* 選択肢 */

  .rechoice-choice-section {
    padding: 22px 20px;
  }

  .rechoice-choice-section h2 {
    font-size: 25px;
  }

  .rechoice-choice-action {
    padding: 20px;
  }

  .rechoice-choice-summary {
    padding: 30px 22px;
  }

  .rechoice-choice-summary h2 {
    font-size: 27px;
  }

  .rechoice-choice-summary-links {
    display: grid;
    grid-template-columns: 1fr;
  }

  .rechoice-choice-summary-links .rechoice-button {
    width: 100%;
  }


  /* テーマ */

  .rechoice-theme-page {
    width: calc(100% - 28px);

    padding: 42px 0 60px;
  }

  .rechoice-theme-intro h1 {
    font-size: 34px;
  }

  .rechoice-theme-section {
    padding: 22px 20px;
  }

  .rechoice-theme-section h2 {
    font-size: 24px;
  }

  .rechoice-theme-guide {
    padding: 30px 22px;
  }

  .rechoice-theme-guide h2 {
    font-size: 27px;
  }

  .rechoice-theme-guide-links {
    display: grid;
    grid-template-columns: 1fr;
  }

  .rechoice-theme-guide-links .rechoice-button {
    width: 100%;
  }


  /* 記事 */

  .single-post .entry-content,
  .single-post .entry-title,
  .single-post .date-tags,
  .single-post .breadcrumb,
  .single-post .toc,
  .single-post .sns-share,
  .single-post .related-entry-heading,
  .single-post .related-list {
    width: calc(100% - 28px);
  }

  .rechoice-article-lead {
    font-size: 16px;
  }

  .rechoice-article h2 {
    padding-left: 14px;

    font-size: 23px;
  }

  .rechoice-article h3 {
    font-size: 18px;
  }

  .rechoice-article-summary,
  .rechoice-check-box,
  .rechoice-article-choice {
    padding: 24px 20px;
  }

  .rechoice-article ul,
  .rechoice-article ol {
    padding: 18px 18px 18px 38px;
  }

  .rechoice-article-choice h2 {
    font-size: 26px;
  }

  .rechoice-article-choice-buttons {
    display: grid;
    grid-template-columns: 1fr;
  }

  .rechoice-article-choice-buttons .rechoice-button {
    width: 100%;
  }

}

/************************************
** りちょいす 選択肢チャート
************************************/

html {
  scroll-behavior: smooth;
}

.rechoice-chart-section {
  padding: 88px 0;
  background: #ffffff;
}

.rechoice-chart-section .rechoice-inner {
  width: min(1040px, calc(100% - 48px));
  margin: 0 auto;
}

.rechoice-chart-section > .rechoice-inner > h2 {
  margin: 0 0 18px;
  padding: 0;
  border: 0;
  background: none;
  color: #111827;
  font-size: clamp(32px, 4vw, 44px);
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.rechoice-chart-lead {
  max-width: 760px;
  margin: 0 0 46px;
  color: #667085;
  font-size: 16px;
  line-height: 1.9;
}


/************************************
** チャート共通ブロック
************************************/

.rechoice-chart-block {
  scroll-margin-top: 100px;
  margin-top: 34px;
  padding: 34px 36px;
  border: 1px solid #e7eaf0;
  border-radius: 16px;
  background: #ffffff;
}

.rechoice-chart-start {
  margin-top: 0;
}

.rechoice-chart-number {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.rechoice-chart-block h3 {
  margin: 0 0 20px;
  padding: 0;
  border: 0;
  background: none;
  color: #111827;
  font-size: 26px;
  line-height: 1.45;
}

.rechoice-chart-question {
  margin: 0 0 22px;
  color: #1f2937;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
}


/************************************
** 選択肢グリッド
************************************/

.rechoice-chart-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.rechoice-chart-options-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.rechoice-chart-options-four {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.rechoice-chart-options-five {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.rechoice-chart-options-main {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}


/************************************
** 選択肢ボタン共通
************************************/

.rechoice-chart-option,
.rechoice-chart-option:link,
.rechoice-chart-option:visited {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 112px;
  padding: 20px 22px;
  border: 1px solid #dfe3ea;
  border-radius: 12px;
  background: #ffffff;
  color: #1f2937 !important;
  text-decoration: none !important;
  box-sizing: border-box;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease,
    background-color 0.18s ease;
}

.rechoice-chart-option:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(16, 24, 40, 0.07);
}

.rechoice-chart-option strong {
  display: block;
  margin-bottom: 7px;
  font-size: 17px;
  line-height: 1.5;
}

.rechoice-chart-option span {
  display: block;
  color: #667085;
  font-size: 13px;
  line-height: 1.7;
}


/************************************
** START 4ルート色分け
************************************/

/* WORK */
.rechoice-chart-options-main
.rechoice-chart-option[data-choice="work"] {
  background: #eef5ff;
  border-color: #c9dcff;
}

.rechoice-chart-options-main
.rechoice-chart-option[data-choice="work"] strong {
  color: #2f6fed;
}

.rechoice-chart-options-main
.rechoice-chart-option[data-choice="work"]:hover {
  background: #e3efff;
  border-color: #9fc0ff;
}


/* INCOME */
.rechoice-chart-options-main
.rechoice-chart-option[data-choice="income"] {
  background: #eefaf4;
  border-color: #c6ead7;
}

.rechoice-chart-options-main
.rechoice-chart-option[data-choice="income"] strong {
  color: #26845b;
}

.rechoice-chart-options-main
.rechoice-chart-option[data-choice="income"]:hover {
  background: #e3f6ec;
  border-color: #9bd7b9;
}


/* MONEY */
.rechoice-chart-options-main
.rechoice-chart-option[data-choice="money"] {
  background: #fff7e8;
  border-color: #f1d8a8;
}

.rechoice-chart-options-main
.rechoice-chart-option[data-choice="money"] strong {
  color: #a96916;
}

.rechoice-chart-options-main
.rechoice-chart-option[data-choice="money"]:hover {
  background: #fff1d5;
  border-color: #e7bd72;
}


/* UNCLEAR */
.rechoice-chart-options-main
.rechoice-chart-option[data-choice="unclear"] {
  background: #f6f1ff;
  border-color: #d9c8f4;
}

.rechoice-chart-options-main
.rechoice-chart-option[data-choice="unclear"] strong {
  color: #7750b6;
}

.rechoice-chart-options-main
.rechoice-chart-option[data-choice="unclear"]:hover {
  background: #efe6ff;
  border-color: #c3a8ec;
}


/************************************
** WORK ブルー
************************************/

#chart-work,
#chart-work-change,
#chart-work-content,
#chart-work-style,
#chart-work-relations,
#chart-work-unclear,
#chart-work-grow {
  border-color: #d7e5ff;
  background: #fbfdff;
}

#chart-work .rechoice-chart-number {
  color: #2f6fed;
}

#chart-work .rechoice-chart-option,
#chart-work-change .rechoice-chart-option,
#chart-work-content .rechoice-chart-option,
#chart-work-style .rechoice-chart-option,
#chart-work-relations .rechoice-chart-option,
#chart-work-unclear .rechoice-chart-option,
#chart-work-grow .rechoice-chart-option {
  border-color: #d7e5ff;
  background: #f5f9ff;
}

#chart-work .rechoice-chart-option:hover,
#chart-work-change .rechoice-chart-option:hover,
#chart-work-content .rechoice-chart-option:hover,
#chart-work-style .rechoice-chart-option:hover,
#chart-work-relations .rechoice-chart-option:hover,
#chart-work-unclear .rechoice-chart-option:hover,
#chart-work-grow .rechoice-chart-option:hover {
  border-color: #a8c7ff;
  background: #edf5ff;
}

#chart-work .rechoice-chart-option strong,
#chart-work-change .rechoice-chart-option strong,
#chart-work-content .rechoice-chart-option strong,
#chart-work-style .rechoice-chart-option strong,
#chart-work-relations .rechoice-chart-option strong,
#chart-work-unclear .rechoice-chart-option strong,
#chart-work-grow .rechoice-chart-option strong {
  color: #315fae;
}


/************************************
** INCOME グリーン
************************************/

#chart-income,
#chart-income-job,
#chart-income-outside {
  border-color: #d2eadf;
  background: #fbfefc;
}

#chart-income .rechoice-chart-number {
  color: #26845b;
}

#chart-income .rechoice-chart-option,
#chart-income-job .rechoice-chart-option,
#chart-income-outside .rechoice-chart-option {
  border-color: #d2eadf;
  background: #f3fbf7;
}

#chart-income .rechoice-chart-option:hover,
#chart-income-job .rechoice-chart-option:hover,
#chart-income-outside .rechoice-chart-option:hover {
  border-color: #a6d8bf;
  background: #eaf8f1;
}

#chart-income .rechoice-chart-option strong,
#chart-income-job .rechoice-chart-option strong,
#chart-income-outside .rechoice-chart-option strong {
  color: #277456;
}


/************************************
** MONEY オレンジ
************************************/

#chart-money,
#chart-money-now,
#chart-money-future {
  border-color: #eeddbd;
  background: #fffdfa;
}

#chart-money .rechoice-chart-number {
  color: #a96916;
}

#chart-money .rechoice-chart-option,
#chart-money-now .rechoice-chart-option,
#chart-money-future .rechoice-chart-option {
  border-color: #eeddbd;
  background: #fff9ef;
}

#chart-money .rechoice-chart-option:hover,
#chart-money-now .rechoice-chart-option:hover,
#chart-money-future .rechoice-chart-option:hover {
  border-color: #e2c58e;
  background: #fff4df;
}

#chart-money .rechoice-chart-option strong,
#chart-money-now .rechoice-chart-option strong,
#chart-money-future .rechoice-chart-option strong {
  color: #99621b;
}


/************************************
** UNCLEAR パープル
************************************/

#chart-unclear {
  border-color: #ded1f2;
  background: #fdfbff;
}

#chart-unclear .rechoice-chart-number {
  color: #7750b6;
}

#chart-unclear .rechoice-chart-option {
  border-color: #ded1f2;
  background: #f8f4ff;
}

#chart-unclear .rechoice-chart-option:hover {
  border-color: #c8b2e9;
  background: #f1eaff;
}

#chart-unclear .rechoice-chart-option strong {
  color: #714fa4;
}


/************************************
** チャート末尾
************************************/

.rechoice-chart-free {
  margin-top: 46px;
  padding: 30px 32px;
  border-radius: 14px;
  background: #f7f8fa;
  text-align: center;
}

.rechoice-chart-free p {
  margin: 0 0 12px;
  color: #667085;
}

.rechoice-chart-free p strong {
  color: #1f2937;
}

.rechoice-chart-free-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin: 22px 0;
}

.rechoice-chart-free-links a {
  color: #2f6fed;
  font-weight: 700;
  text-decoration: none;
}

.rechoice-chart-free-links a:hover {
  text-decoration: underline;
}


/************************************
** アンカー位置を見やすく
************************************/

#choice-check,
#chart-work,
#chart-work-change,
#chart-work-content,
#chart-work-style,
#chart-work-relations,
#chart-work-unclear,
#chart-work-grow,
#chart-income,
#chart-income-job,
#chart-income-outside,
#chart-money,
#chart-money-now,
#chart-money-future,
#chart-unclear {
  scroll-margin-top: 100px;
}


/************************************
** 834px以下
************************************/

@media screen and (max-width: 834px) {

  .rechoice-chart-section {
    padding: 64px 0;
  }

  .rechoice-chart-section .rechoice-inner {
    width: calc(100% - 32px);
  }

  .rechoice-chart-block {
    padding: 28px;
  }

  .rechoice-chart-options-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rechoice-chart-options-three,
  .rechoice-chart-options-five {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}


/************************************
** 480px以下
************************************/

@media screen and (max-width: 480px) {

  .rechoice-chart-section {
    padding: 52px 0;
  }

  .rechoice-chart-section .rechoice-inner {
    width: calc(100% - 28px);
  }

  .rechoice-chart-section > .rechoice-inner > h2 {
    font-size: 30px;
  }

  .rechoice-chart-lead {
    font-size: 15px;
  }

  .rechoice-chart-block {
    margin-top: 24px;
    padding: 22px 18px;
    border-radius: 14px;
  }

  .rechoice-chart-block h3 {
    font-size: 22px;
  }

  .rechoice-chart-question {
    font-size: 18px;
  }

  .rechoice-chart-options,
  .rechoice-chart-options-main,
  .rechoice-chart-options-three,
  .rechoice-chart-options-four,
  .rechoice-chart-options-five {
    grid-template-columns: 1fr;
  }

  .rechoice-chart-option,
  .rechoice-chart-option:link,
  .rechoice-chart-option:visited {
    min-height: 92px;
    padding: 17px 18px;
  }

  .rechoice-chart-option strong {
    font-size: 16px;
  }

  .rechoice-chart-free {
    padding: 24px 18px;
  }

}

/************************************
** チャート末尾 3導線ボタン
************************************/

.rechoice-chart-free-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 720px;
  margin: 24px auto;
}

.rechoice-chart-free-links a,
.rechoice-chart-free-links a:link,
.rechoice-chart-free-links a:visited {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 12px 18px;
  border: 1px solid #c9dcff;
  border-radius: 10px;
  background: #ffffff;
  color: #2f6fed !important;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  text-decoration: none !important;
  transition:
    transform 0.18s ease,
    background-color 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}

.rechoice-chart-free-links a:hover {
  transform: translateY(-2px);
  border-color: #9fc0ff;
  background: #eef5ff;
  box-shadow: 0 8px 18px rgba(16, 24, 40, 0.06);
  text-decoration: none !important;
}

@media screen and (max-width: 600px) {

  .rechoice-chart-free-links {
    grid-template-columns: 1fr;
  }

}

/************************************
** 最終CTA ほかの探し方
************************************/

.rechoice-last-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.rechoice-last-nav > span {
  margin-right: 4px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
}

.rechoice-last-nav a,
.rechoice-last-nav a:link,
.rechoice-last-nav a:visited {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 7px 14px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff !important;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  text-decoration: none !important;
  transition:
    transform 0.18s ease,
    background-color 0.18s ease,
    border-color 0.18s ease;
}

.rechoice-last-nav a:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.12);
  text-decoration: none !important;
}

@media screen and (max-width: 600px) {

  .rechoice-last-nav {
    align-items: stretch;
  }

  .rechoice-last-nav > span {
    width: 100%;
    margin: 0 0 2px;
  }

  .rechoice-last-nav a {
    flex: 1 1 100%;
  }

}

/************************************
** りちょいす 記事デザイン強化
************************************/

/* ================================
   記事全体
================================ */

.rechoice-article {
  color: #1f2937;
  line-height: 1.95;
}

.rechoice-article p {
  margin: 0 0 1.35em;
}

.rechoice-article ul {
  margin: 1.2em 0 1.8em;
  padding: 24px 28px 24px 48px;
  border-radius: 10px;
  background: #f7f9fc;
}

.rechoice-article li {
  margin: 0.55em 0;
}


/* ================================
   H2 / H3
================================ */

.rechoice-article > h2 {
  position: relative;
  margin: 64px 0 26px;
  padding: 0 0 14px 18px;
  border: 0;
  border-bottom: 1px solid #dfe4ec;
  background: none;
  color: #111827;
  font-size: 28px;
  line-height: 1.5;
}

.rechoice-article > h2::before {
  content: "";
  position: absolute;
  top: 6px;
  bottom: 18px;
  left: 0;
  width: 4px;
  border-radius: 4px;
  background: #2f6fed;
}

.rechoice-article > h3 {
  margin: 38px 0 14px;
  padding: 12px 16px;
  border: 1px solid #e2e7ef;
  border-left: 4px solid #a9c4f8;
  border-radius: 6px;
  background: #fafcff;
  color: #1f2937;
  font-size: 19px;
  line-height: 1.55;
}


/* ================================
   導入
================================ */

.rechoice-article-lead {
  margin-bottom: 34px;
}

.rechoice-article-lead p:first-child {
  font-size: 18px;
  font-weight: 700;
  color: #111827;
}


/* ================================
   この記事の結論
================================ */

.rechoice-article-summary {
  position: relative;
  margin: 38px 0 54px;
  padding: 30px 32px;
  border: 1px solid #cfe0ff;
  border-radius: 14px;
  background: #f3f7ff;
}

.rechoice-article-summary::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  border-radius: 14px 14px 0 0;
  background: #2f6fed;
}

.rechoice-article-summary-label {
  margin: 0 0 16px !important;
  color: #2f6fed;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.rechoice-article-summary p:last-child {
  margin-bottom: 0;
}


/* ================================
   記事内注記
================================ */

.rechoice-article-note {
  margin: 30px 0 42px;
  padding: 22px 24px;
  border-left: 4px solid #7aa7f7;
  border-radius: 8px;
  background: #f7faff;
}

.rechoice-article-note p {
  margin: 0;
  color: #46556c;
  font-size: 14px;
}


/* ================================
   比較表
================================ */

.rechoice-table-wrap {
  overflow-x: auto;
  margin: 28px 0 34px;
  border: 1px solid #e0e5ec;
  border-radius: 12px;
  background: #ffffff;
}

.rechoice-compare-table {
  width: 100%;
  min-width: 650px;
  margin: 0;
  border-collapse: collapse;
  table-layout: fixed;
}

.rechoice-compare-table th,
.rechoice-compare-table td {
  padding: 16px 18px;
  border: 0;
  border-bottom: 1px solid #e7ebf0;
  border-right: 1px solid #e7ebf0;
  vertical-align: top;
  line-height: 1.7;
}

.rechoice-compare-table th:last-child,
.rechoice-compare-table td:last-child {
  border-right: 0;
}

.rechoice-compare-table tbody tr:last-child th,
.rechoice-compare-table tbody tr:last-child td {
  border-bottom: 0;
}

.rechoice-compare-table thead th {
  background: #f1f5fb;
  color: #1f2937;
  font-size: 14px;
  font-weight: 700;
  text-align: left;
}

.rechoice-compare-table tbody th {
  width: 21%;
  background: #f9fafc;
  color: #334155;
  font-weight: 700;
}


/* ================================
   最後の判断材料リンク
================================ */

.rechoice-article-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 30px 0 52px;
}

.rechoice-article-link-card,
.rechoice-article-link-card:link,
.rechoice-article-link-card:visited {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 110px;
  padding: 22px 24px;
  border: 1px solid #d9e2f0;
  border-radius: 12px;
  background: #ffffff;
  color: #1f2937 !important;
  text-decoration: none !important;
  box-sizing: border-box;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease,
    background-color 0.18s ease;
}

.rechoice-article-link-card:hover {
  transform: translateY(-2px);
  border-color: #a8c3f3;
  background: #f6f9ff;
  box-shadow: 0 10px 24px rgba(16, 24, 40, 0.07);
}

.rechoice-article-link-card strong {
  display: block;
  margin-bottom: 8px;
  color: #1f2937;
  font-size: 16px;
  line-height: 1.5;
}

.rechoice-article-link-card span {
  color: #2f6fed;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.6;
}


/* ================================
   記事末尾
================================ */

.rechoice-article-ending {
  margin-top: 52px;
  padding: 36px 38px;
  border-radius: 14px;
  background: #101828;
  color: #ffffff;
}

.rechoice-article-ending h2 {
  margin: 0 0 14px;
  padding: 0;
  border: 0;
  background: none;
  color: #ffffff;
  font-size: 30px;
}

.rechoice-article-ending h2::before {
  display: none;
}

.rechoice-article-ending p {
  margin: 0;
  color: #d7deea;
}


/* ================================
   選択肢セクションを視覚的に整理
   「比較すると、次の選択肢が見えてくる」
   配下のH3を軽いカード調に
================================ */

.rechoice-article h2:nth-of-type(5) ~ h3 {
  position: relative;
}

/* ================================
   リンク標準
================================ */

.rechoice-article a {
  text-underline-offset: 3px;
}


/* ================================
   PCで本文の視覚的なリズムを強化
================================ */

@media screen and (min-width: 769px) {

  .rechoice-article-summary,
  .rechoice-article-note,
  .rechoice-table-wrap,
  .rechoice-article-links,
  .rechoice-article-ending {
    margin-left: 0;
    margin-right: 0;
  }

}


/* ================================
   タブレット
================================ */

@media screen and (max-width: 834px) {

  .rechoice-article > h2 {
    margin-top: 54px;
    font-size: 25px;
  }

  .rechoice-article-summary {
    padding: 26px 28px;
  }

  .rechoice-article-links {
    grid-template-columns: 1fr;
  }

}


/* ================================
   スマホ
================================ */

@media screen and (max-width: 480px) {

  .rechoice-article {
    line-height: 1.85;
  }

  .rechoice-article > h2 {
    margin: 46px 0 22px;
    padding-left: 14px;
    font-size: 22px;
  }

  .rechoice-article > h2::before {
    top: 5px;
    bottom: 15px;
  }

  .rechoice-article > h3 {
    margin-top: 30px;
    padding: 10px 13px;
    font-size: 17px;
  }

  .rechoice-article ul {
    padding: 18px 18px 18px 36px;
  }

  .rechoice-article-summary {
    margin: 28px 0 42px;
    padding: 24px 20px;
  }

  .rechoice-article-note {
    padding: 18px;
  }

  .rechoice-article-link-card,
  .rechoice-article-link-card:link,
  .rechoice-article-link-card:visited {
    min-height: 94px;
    padding: 18px;
  }

  .rechoice-article-ending {
    padding: 28px 22px;
  }

  .rechoice-article-ending h2 {
    font-size: 25px;
  }

}

/************************************
** /theme/ CMS関連記事カード
************************************/

.rechoice-topic-posts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 28px 0 22px;
}

.rechoice-topic-card {
  margin: 0;
  border: 0;
  background: transparent;
}

.rechoice-topic-card-link,
.rechoice-topic-card-link:link,
.rechoice-topic-card-link:visited {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 270px;
  padding: 24px;
  border: 1px solid #dbe5f3;
  border-radius: 14px;
  background: #ffffff;
  color: #1f2937 !important;
  text-decoration: none !important;
  box-sizing: border-box;
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    background-color 0.18s ease;
}

.rechoice-topic-card-link:hover {
  transform: translateY(-3px);
  border-color: #adc8f3;
  background: #fbfdff;
  box-shadow: 0 12px 28px rgba(16, 24, 40, 0.08);
}

.rechoice-topic-card-image {
  overflow: hidden;
  margin: -24px -24px 20px;
  border-radius: 14px 14px 0 0;
  aspect-ratio: 16 / 9;
  background: #f2f5f9;
}

.rechoice-topic-card-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rechoice-topic-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.rechoice-topic-card-date {
  margin: 0 0 12px !important;
  color: #8a94a6;
  font-size: 12px;
  line-height: 1.5;
}

.rechoice-topic-card-title {
  margin: 0 0 14px !important;
  padding: 0 !important;
  border: 0 !important;
  background: none !important;
  color: #182230 !important;
  font-size: 17px !important;
  font-weight: 700;
  line-height: 1.65;
}

.rechoice-topic-card-title::before,
.rechoice-topic-card-title::after {
  display: none !important;
}

.rechoice-topic-card-excerpt {
  margin: 0 0 20px !important;
  color: #667085;
  font-size: 13px;
  line-height: 1.8;
}

.rechoice-topic-card-more {
  display: inline-block;
  margin-top: auto;
  color: #2f6fed;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
}

.rechoice-topic-empty {
  margin: 24px 0;
  padding: 24px;
  border-radius: 12px;
  background: #f7f9fc;
  color: #667085;
  font-size: 14px;
}


/************************************
** タブレット
************************************/

@media screen and (max-width: 834px) {

  .rechoice-topic-posts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}


/************************************
** スマホ
************************************/

@media screen and (max-width: 600px) {

  .rechoice-topic-posts {
    grid-template-columns: 1fr;
  }

  .rechoice-topic-card-link,
  .rechoice-topic-card-link:link,
  .rechoice-topic-card-link:visited {
    min-height: 0;
    padding: 20px;
  }

  .rechoice-topic-card-image {
    margin: -20px -20px 18px;
  }

}

/************************************
** /theme/ テーマハブ専用
************************************/

.rechoice-theme-page {
  padding: 72px 0 88px;
  background: #ffffff;
}

.rechoice-theme-page .rechoice-inner {
  width: min(1080px, calc(100% - 48px));
  margin: 0 auto;
}

.rechoice-theme-page h1 {
  margin: 0 0 18px;
  padding: 0;
  border: 0;
  background: none;
  color: #111827;
  font-size: clamp(34px, 5vw, 48px);
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.rechoice-theme-lead {
  max-width: 760px;
  margin: 0 0 42px;
  color: #667085;
  font-size: 16px;
  line-height: 1.9;
}


/************************************
** 上部テーマナビ
************************************/

.rechoice-theme-nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 0 0 64px;
}

.rechoice-theme-nav-card,
.rechoice-theme-nav-card:link,
.rechoice-theme-nav-card:visited {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 132px;
  padding: 24px 26px;
  border: 1px solid #dfe4ec;
  border-radius: 16px;
  text-decoration: none !important;
  box-sizing: border-box;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease,
    background-color 0.18s ease;
}

.rechoice-theme-nav-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(16, 24, 40, 0.08);
}

.rechoice-theme-nav-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 20px;
  line-height: 1.5;
}

.rechoice-theme-nav-card span {
  display: block;
  font-size: 13px;
  line-height: 1.75;
  color: #667085;
}


/* 仕事 */
.rechoice-theme-nav-work {
  background: #eef5ff;
  border-color: #c9dcff;
}

.rechoice-theme-nav-work strong {
  color: #2f6fed;
}

.rechoice-theme-nav-work:hover {
  background: #e5efff;
  border-color: #a8c7ff;
}


/* 収入 */
.rechoice-theme-nav-income {
  background: #eefaf4;
  border-color: #c8ead8;
}

.rechoice-theme-nav-income strong {
  color: #26845b;
}

.rechoice-theme-nav-income:hover {
  background: #e5f7ee;
  border-color: #a6d9bf;
}


/* お金 */
.rechoice-theme-nav-money {
  background: #fff7e8;
  border-color: #efd8aa;
}

.rechoice-theme-nav-money strong {
  color: #a96916;
}

.rechoice-theme-nav-money:hover {
  background: #fff1d8;
  border-color: #e4c07b;
}


/************************************
** 大テーマ
************************************/

.rechoice-theme-group {
  scroll-margin-top: 100px;
  margin-top: 68px;
  padding: 40px;
  border: 1px solid #e4e8ef;
  border-radius: 20px;
}

.rechoice-theme-group:first-of-type {
  margin-top: 0;
}

.rechoice-theme-group-head {
  margin-bottom: 36px;
}

.rechoice-theme-group-label {
  margin: 0 0 8px !important;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.rechoice-theme-group-head h2 {
  margin: 0 0 14px;
  padding: 0;
  border: 0;
  background: none;
  color: #111827;
  font-size: 32px;
  line-height: 1.45;
}

.rechoice-theme-group-head p:last-child {
  margin: 0;
  color: #667085;
  line-height: 1.9;
}


/* 仕事 */
.rechoice-theme-group-work {
  background: #fbfdff;
  border-color: #d9e7ff;
}

.rechoice-theme-group-work .rechoice-theme-group-label {
  color: #2f6fed;
}


/* 収入 */
.rechoice-theme-group-income {
  background: #fbfefc;
  border-color: #d5eadf;
}

.rechoice-theme-group-income .rechoice-theme-group-label {
  color: #26845b;
}


/* お金 */
.rechoice-theme-group-money {
  background: #fffdfa;
  border-color: #efdfc1;
}

.rechoice-theme-group-money .rechoice-theme-group-label {
  color: #a96916;
}


/************************************
** 小テーマ
************************************/

.rechoice-theme-topic {
  scroll-margin-top: 100px;
  margin-top: 30px;
  padding: 30px;
  border: 1px solid #e1e6ed;
  border-radius: 16px;
  background: #ffffff;
}

.rechoice-theme-topic:first-of-type {
  margin-top: 0;
}

.rechoice-theme-topic-head {
  margin-bottom: 22px;
}

.rechoice-theme-topic-number {
  margin: 0 0 6px !important;
  color: #8b95a7;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.rechoice-theme-topic-head h3 {
  margin: 0 0 10px;
  padding: 0;
  border: 0;
  background: none;
  color: #1f2937;
  font-size: 23px;
  line-height: 1.5;
}

.rechoice-theme-topic-head p:last-child {
  margin: 0;
  color: #667085;
  font-size: 14px;
  line-height: 1.85;
}


/* 大テーマごとのアクセント */
.rechoice-theme-group-work .rechoice-theme-topic {
  border-color: #dce8fb;
}

.rechoice-theme-group-work .rechoice-theme-topic-number {
  color: #5b83c7;
}

.rechoice-theme-group-income .rechoice-theme-topic {
  border-color: #d8eadf;
}

.rechoice-theme-group-income .rechoice-theme-topic-number {
  color: #4f9a75;
}

.rechoice-theme-group-money .rechoice-theme-topic {
  border-color: #eadfc9;
}

.rechoice-theme-group-money .rechoice-theme-topic-number {
  color: #b07a32;
}


/************************************
** CMS記事カード
************************************/

.rechoice-topic-posts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 24px 0 20px;
}

.rechoice-topic-card {
  margin: 0;
  border: 0;
  background: transparent;
}

.rechoice-topic-card-link,
.rechoice-topic-card-link:link,
.rechoice-topic-card-link:visited {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 260px;
  padding: 22px;
  border: 1px solid #dfe5ed;
  border-radius: 13px;
  background: #ffffff;
  color: #1f2937 !important;
  text-decoration: none !important;
  box-sizing: border-box;
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    background-color 0.18s ease;
}

.rechoice-topic-card-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(16, 24, 40, 0.07);
}

.rechoice-theme-group-work .rechoice-topic-card-link:hover {
  border-color: #a9c6f3;
  background: #fbfdff;
}

.rechoice-theme-group-income .rechoice-topic-card-link:hover {
  border-color: #a7d6be;
  background: #fbfefc;
}

.rechoice-theme-group-money .rechoice-topic-card-link:hover {
  border-color: #dfc18b;
  background: #fffdfa;
}

.rechoice-topic-card-image {
  overflow: hidden;
  margin: -22px -22px 18px;
  border-radius: 13px 13px 0 0;
  aspect-ratio: 16 / 9;
  background: #f3f5f8;
}

.rechoice-topic-card-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rechoice-topic-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.rechoice-topic-card-date {
  margin: 0 0 10px !important;
  color: #98a2b3;
  font-size: 11px;
  line-height: 1.4;
}

.rechoice-topic-card-title {
  margin: 0 0 12px !important;
  padding: 0 !important;
  border: 0 !important;
  background: none !important;
  color: #182230 !important;
  font-size: 16px !important;
  font-weight: 700;
  line-height: 1.65;
}

.rechoice-topic-card-title::before,
.rechoice-topic-card-title::after {
  display: none !important;
}

.rechoice-topic-card-excerpt {
  margin: 0 0 18px !important;
  color: #667085;
  font-size: 13px;
  line-height: 1.8;
}

.rechoice-topic-card-more {
  display: inline-block;
  margin-top: auto;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
}

.rechoice-theme-group-work .rechoice-topic-card-more {
  color: #2f6fed;
}

.rechoice-theme-group-income .rechoice-topic-card-more {
  color: #26845b;
}

.rechoice-theme-group-money .rechoice-topic-card-more {
  color: #a96916;
}


/************************************
** 記事0件
************************************/

.rechoice-topic-empty {
  margin: 22px 0;
  padding: 20px 22px;
  border: 1px dashed #d7dde6;
  border-radius: 11px;
  background: #f8fafc;
  color: #7b8495;
  font-size: 14px;
  line-height: 1.7;
}


/************************************
** もっと見る
************************************/

.rechoice-theme-topic-more {
  margin: 22px 0 0 !important;
  text-align: right;
}

.rechoice-theme-topic-more a,
.rechoice-theme-topic-more a:link,
.rechoice-theme-topic-more a:visited {
  font-size: 14px;
  font-weight: 700;
  text-decoration: none !important;
}

.rechoice-theme-group-work .rechoice-theme-topic-more a {
  color: #2f6fed;
}

.rechoice-theme-group-income .rechoice-theme-topic-more a {
  color: #26845b;
}

.rechoice-theme-group-money .rechoice-theme-topic-more a {
  color: #a96916;
}

.rechoice-theme-topic-more a:hover {
  text-decoration: underline !important;
}


/************************************
** UNCLEAR
************************************/

.rechoice-theme-unclear {
  margin-top: 68px;
  padding: 40px;
  border: 1px solid #ded1f2;
  border-radius: 18px;
  background: #f9f6ff;
}

.rechoice-theme-unclear h2 {
  margin: 0 0 16px;
  padding: 0;
  border: 0;
  background: none;
  color: #32294a;
  font-size: 28px;
  line-height: 1.5;
}

.rechoice-theme-unclear > p {
  color: #6f6485;
  line-height: 1.85;
}

.rechoice-theme-unclear .rechoice-section-label {
  color: #7750b6;
}

.rechoice-theme-unclear-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}


/************************************
** スクロール
************************************/

#work-career,
#job-content,
#work-style,
#workplace,
#career-future,
#skill-up,
#income-sidejob,
#salary-up,
#market-value,
#small-income,
#side-job,
#skill-income,
#money-life,
#household,
#saving,
#future-money,
#asset-building {
  scroll-margin-top: 100px;
}


/************************************
** タブレット
************************************/

@media screen and (max-width: 900px) {

  .rechoice-theme-nav {
    grid-template-columns: 1fr;
  }

  .rechoice-theme-group {
    padding: 32px;
  }

  .rechoice-topic-posts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}


/************************************
** スマホ
************************************/

@media screen and (max-width: 600px) {

  .rechoice-theme-page {
    padding: 52px 0 68px;
  }

  .rechoice-theme-page .rechoice-inner {
    width: calc(100% - 28px);
  }

  .rechoice-theme-page h1 {
    font-size: 32px;
  }

  .rechoice-theme-lead {
    font-size: 15px;
  }

  .rechoice-theme-nav-card,
  .rechoice-theme-nav-card:link,
  .rechoice-theme-nav-card:visited {
    min-height: 108px;
    padding: 20px;
  }

  .rechoice-theme-nav-card strong {
    font-size: 18px;
  }

  .rechoice-theme-group {
    margin-top: 48px;
    padding: 22px 18px;
    border-radius: 15px;
  }

  .rechoice-theme-group-head {
    margin-bottom: 28px;
  }

  .rechoice-theme-group-head h2 {
    font-size: 26px;
  }

  .rechoice-theme-topic {
    margin-top: 22px;
    padding: 20px 16px;
    border-radius: 13px;
  }

  .rechoice-theme-topic-head h3 {
    font-size: 20px;
  }

  .rechoice-topic-posts {
    grid-template-columns: 1fr;
  }

  .rechoice-topic-card-link,
  .rechoice-topic-card-link:link,
  .rechoice-topic-card-link:visited {
    min-height: 0;
    padding: 20px;
  }

  .rechoice-topic-card-image {
    margin: -20px -20px 18px;
  }

  .rechoice-theme-topic-more {
    text-align: left;
  }

  .rechoice-theme-unclear {
    margin-top: 48px;
    padding: 28px 22px;
  }

  .rechoice-theme-unclear h2 {
    font-size: 24px;
  }

  .rechoice-theme-unclear-actions {
    flex-direction: column;
  }

  .rechoice-theme-unclear-actions .rechoice-button {
    width: 100%;
    box-sizing: border-box;
    text-align: center;
  }

}

/************************************
** 記事内H3のカード化を解除
************************************/

.rechoice-article > h3 {
  margin: 38px 0 14px;
  padding: 0 0 8px;
  border: 0;
  border-bottom: 1px solid #e5e9ef;
  border-radius: 0;
  background: transparent;
  color: #1f2937;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.55;
}

/* 不要な疑似要素が出ないようにする */
.rechoice-article > h3::before,
.rechoice-article > h3::after {
  display: none !important;
  content: none !important;
}

/* 記事本文中の空divが高さを持たないようにする */
.rechoice-article div:empty {
  display: none;
}

/* 選択肢カードだけはカードデザインを維持 */
.rechoice-article-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 30px 0 52px;
}

.rechoice-article-link-card,
.rechoice-article-link-card:link,
.rechoice-article-link-card:visited {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 110px;
  padding: 22px 24px;
  border: 1px solid #d9e2f0;
  border-radius: 12px;
  background: #ffffff;
  color: #1f2937 !important;
  text-decoration: none !important;
}

@media screen and (max-width: 600px) {
  .rechoice-article-links {
    grid-template-columns: 1fr;
  }
}

/* 悩みから探す：カード内だけリンク下線なし */
.rechoice-nayami-page a.rechoice-card,
.rechoice-nayami-page a.rechoice-card * {
  text-decoration: none !important;
}

/************************************
** 悩みから探す：LAST CTA
** TOP同様の全幅背景
************************************/

.rechoice-last-cta {
  position: relative;
  left: 50%;
  width: 100vw;
  margin-left: -50vw;
  padding: 72px 0;
  background: #101828;
  color: #ffffff;
}

/* 中身は本文幅に戻す */
.rechoice-last-cta .rechoice-inner {
  width: min(100% - 40px, 1100px);
  margin: 0 auto;
}

/* STILL THINKING? */
.rechoice-last-cta .rechoice-section-label {
  margin: 0 0 26px;
  color: #ffffff;
}

/* 見出し */
.rechoice-last-cta h2,
.rechoice-last-cta .rechoice-section-title,
.rechoice-last-cta h2.rechoice-section-title {
  margin: 0 0 18px !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: #ffffff !important;
}

/* Cocoon等の見出し装飾を解除 */
.rechoice-last-cta h2::before,
.rechoice-last-cta h2::after,
.rechoice-last-cta .rechoice-section-title::before,
.rechoice-last-cta .rechoice-section-title::after {
  display: none !important;
  content: none !important;
}

/* 本文 */
.rechoice-last-cta > .rechoice-inner > p:not(.rechoice-section-label) {
  color: #d7deea;
}

/* ボタン */
.rechoice-last-cta .rechoice-hero-buttons {
  margin-top: 28px;
}

/* スマホ */
@media screen and (max-width: 600px) {
  .rechoice-last-cta {
    padding: 52px 0;
  }

  .rechoice-last-cta .rechoice-inner {
    width: min(100% - 32px, 1100px);
  }
}

/************************************
** /choices/ 選択肢を調べる
************************************/

/* =========================
   基本
========================= */

.rechoice-choices-page {
  color: #172033;
}

.rechoice-choices-page .rechoice-inner {
  width: min(100% - 40px, 1100px);
  margin: 0 auto;
}

.rechoice-choices-page .rechoice-section {
  padding: 72px 0;
}

.rechoice-choices-page .rechoice-section-label {
  margin: 0 0 20px;
  color: #2f6fed;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .14em;
}

.rechoice-choices-page .rechoice-section-title {
  margin: 0 0 24px;
}

.rechoice-choices-page .rechoice-section-lead {
  margin: 0 0 18px;
  line-height: 1.9;
  color: #657086;
}


/* =========================
   INTRO
========================= */

.rechoice-choices-intro {
  padding-top: 48px !important;
}


/* =========================
   9つの選択肢ナビ
========================= */

.rechoice-choice-index {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 44px;
}

.rechoice-choice-index-card {
  display: flex;
  flex-direction: column;
  min-height: 180px;
  padding: 24px;
  border: 1px solid #d8e1f0;
  border-radius: 14px;
  background: #ffffff;
  text-decoration: none !important;
  transition:
    transform .2s ease,
    border-color .2s ease,
    box-shadow .2s ease;
}

.rechoice-choice-index-card *,
.rechoice-choice-index-card:hover *,
.rechoice-choice-index-card:focus * {
  text-decoration: none !important;
}

.rechoice-choice-index-card:hover {
  transform: translateY(-3px);
  border-color: #9bb9f5;
  box-shadow: 0 10px 30px rgba(23, 32, 51, .07);
}

.rechoice-choice-number {
  display: block;
  margin-bottom: 24px;
  color: #2f6fed;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
}

.rechoice-choice-index-card strong {
  display: block;
  margin-bottom: 10px;
  color: #172033;
  font-size: 18px;
  line-height: 1.5;
}

.rechoice-choice-index-card > span:last-child {
  margin-top: auto;
  color: #657086;
  font-size: 14px;
  line-height: 1.7;
}


/* =========================
   各選択肢セクション
========================= */

.rechoice-choice-detail {
  border-top: 1px solid #edf0f5;
  background: #ffffff;
}


/* =========================
   説明ボックス
========================= */

.rechoice-choice-detail-box {
  margin-top: 32px;
  padding: 30px 32px;
  border-radius: 14px;
  background: #f5f7fa;
}

.rechoice-choice-detail-box h3 {
  margin: 0 0 20px;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  font-size: 19px;
}

.rechoice-choice-detail-box ul {
  margin: 0 0 22px;
  padding-left: 1.4em;
}

.rechoice-choice-detail-box li {
  margin-bottom: 8px;
  line-height: 1.8;
}

.rechoice-choice-detail-box p:last-child {
  margin-bottom: 0;
}


/* =========================
   テーマへのリンクカード
========================= */

.rechoice-article-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.rechoice-article-link-card {
  display: flex;
  flex-direction: column;
  min-height: 120px;
  padding: 22px 24px;
  border: 1px solid #d8e1f0;
  border-radius: 12px;
  background: #ffffff;
  text-decoration: none !important;
  transition:
    transform .2s ease,
    border-color .2s ease;
}

.rechoice-article-link-card *,
.rechoice-article-link-card:hover *,
.rechoice-article-link-card:focus * {
  text-decoration: none !important;
}

.rechoice-article-link-card:hover {
  transform: translateY(-2px);
  border-color: #9bb9f5;
}

.rechoice-article-link-card strong {
  margin-bottom: 12px;
  color: #172033;
  font-size: 16px;
  line-height: 1.6;
}

.rechoice-article-link-card span {
  margin-top: auto;
  color: #2f6fed;
  font-size: 14px;
  font-weight: 600;
}


/* =========================
   LAST CTA
   TOP / nayami と同じ全幅仕様
========================= */

.rechoice-choices-page .rechoice-last-cta {
  position: relative;
  left: 50%;
  width: 100vw;
  margin-left: -50vw;
  padding: 72px 0;
  background: #101828;
  color: #ffffff;
}

.rechoice-choices-page .rechoice-last-cta .rechoice-inner {
  width: min(100% - 40px, 1100px);
  margin: 0 auto;
}

.rechoice-choices-page .rechoice-last-cta .rechoice-section-label {
  margin: 0 0 26px;
  color: #ffffff;
}

.rechoice-choices-page .rechoice-last-cta h2 {
  margin: 0 0 20px !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: #ffffff !important;
}

.rechoice-choices-page .rechoice-last-cta h2::before,
.rechoice-choices-page .rechoice-last-cta h2::after {
  display: none !important;
  content: none !important;
}

.rechoice-choices-page .rechoice-last-cta p:not(.rechoice-section-label) {
  color: #d7deea;
  line-height: 1.9;
}

.rechoice-choices-page .rechoice-last-cta .rechoice-hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}


/* =========================
   SP
========================= */

@media screen and (max-width: 768px) {

  .rechoice-choices-page .rechoice-section {
    padding: 52px 0;
  }

  .rechoice-choice-index {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 32px;
  }

  .rechoice-choice-index-card {
    min-height: 0;
    padding: 20px;
  }

  .rechoice-choice-number {
    margin-bottom: 14px;
  }

  .rechoice-article-links {
    grid-template-columns: 1fr;
  }

  .rechoice-choice-detail-box {
    padding: 24px 20px;
  }

  .rechoice-choices-page .rechoice-last-cta {
    padding: 52px 0;
  }

  .rechoice-choices-page .rechoice-last-cta .rechoice-inner,
  .rechoice-choices-page .rechoice-inner {
    width: min(100% - 32px, 1100px);
  }

}

/************************************
** TOP 判断材料を読む：CMS記事3枚
************************************/

/* 3大テーマを3列表示 */
.rechoice-top-article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

/* 各カード */
.rechoice-top-article-card {
  margin: 0;
  border: 0;
  background: transparent;
}

.rechoice-top-article-link,
.rechoice-top-article-link:link,
.rechoice-top-article-link:visited {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 310px;
  padding: 26px;
  border: 1px solid #e1e6ee;
  border-radius: 15px;
  background: #ffffff;
  color: #1f2937 !important;
  text-decoration: none !important;
  box-sizing: border-box;
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    background-color 0.18s ease;
}

.rechoice-top-article-link *,
.rechoice-top-article-link:hover *,
.rechoice-top-article-link:focus * {
  text-decoration: none !important;
}

.rechoice-top-article-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(16, 24, 40, 0.07);
}

/* アイキャッチがある場合 */
.rechoice-top-article-image {
  overflow: hidden;
  margin: -26px -26px 22px;
  border-radius: 15px 15px 0 0;
  aspect-ratio: 16 / 9;
  background: #f3f5f8;
}

.rechoice-top-article-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 本文部分 */
.rechoice-top-article-body {
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* 大テーマラベル */
.rechoice-top-article-category {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 10px;
  padding: 5px 9px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.4;
}

/* 日付 */
.rechoice-top-article-date {
  margin: 0 0 16px !important;
  color: #98a2b3 !important;
  font-size: 11px;
  line-height: 1.4;
}

/* 記事タイトル */
.rechoice-top-article-title {
  margin: 0 0 14px !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  color: #182230 !important;
  font-size: 18px !important;
  font-weight: 700;
  line-height: 1.65;
}

.rechoice-top-article-title::before,
.rechoice-top-article-title::after {
  display: none !important;
  content: none !important;
}

/* 抜粋 */
.rechoice-top-article-excerpt {
  margin: 0 0 22px !important;
  color: #667085 !important;
  font-size: 13px;
  line-height: 1.85;
}

/* 読む */
.rechoice-top-article-more {
  display: inline-block;
  margin-top: auto;
  font-size: 13px;
  font-weight: 700;
}


/************************************
** 3大テーマの色分け
************************************/

/* 仕事・キャリア */
.rechoice-top-article-work .rechoice-top-article-category {
  background: #eef5ff;
  color: #2f6fed;
}

.rechoice-top-article-work .rechoice-top-article-more {
  color: #2f6fed;
}

.rechoice-top-article-work .rechoice-top-article-link:hover {
  border-color: #afc9f7;
  background: #fbfdff;
}


/* 収入・副業 */
.rechoice-top-article-income .rechoice-top-article-category {
  background: #eefaf4;
  color: #26845b;
}

.rechoice-top-article-income .rechoice-top-article-more {
  color: #26845b;
}

.rechoice-top-article-income .rechoice-top-article-link:hover {
  border-color: #abd8c1;
  background: #fbfefc;
}


/* お金・暮らし */
.rechoice-top-article-money .rechoice-top-article-category {
  background: #fff7e8;
  color: #a96916;
}

.rechoice-top-article-money .rechoice-top-article-more {
  color: #a96916;
}

.rechoice-top-article-money .rechoice-top-article-link:hover {
  border-color: #e2c48e;
  background: #fffdfa;
}


/************************************
** 判断材料セクション下部導線
************************************/

.rechoice-articles .rechoice-section-more {
  margin-top: 28px;
  text-align: right;
}

.rechoice-articles .rechoice-section-more a {
  color: #2f6fed;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none !important;
}

.rechoice-articles .rechoice-section-more a:hover {
  text-decoration: underline !important;
}


/************************************
** タブレット
************************************/

@media screen and (max-width: 900px) {

  .rechoice-top-article-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}


/************************************
** スマホ
************************************/

@media screen and (max-width: 600px) {

  .rechoice-top-article-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .rechoice-top-article-link,
  .rechoice-top-article-link:link,
  .rechoice-top-article-link:visited {
    min-height: 0;
    padding: 22px;
  }

  .rechoice-top-article-image {
    margin: -22px -22px 20px;
  }

  .rechoice-articles .rechoice-section-more {
    text-align: left;
  }

}

/************************************
** りちょいすケース 記事専用CSS
************************************/


/* =========================
   CASE HERO
========================= */

.rechoice-case-article .rechoice-case-hero {
  margin: 0 0 48px;
  padding: 42px 38px;
  border: 1px solid #dfe5ee;
  border-radius: 18px;
  background: #f8fafc;
}

.rechoice-case-article .rechoice-case-hero .rechoice-section-label {
  margin: 0 0 8px;
  color: #2f6fed;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
}

.rechoice-case-article .rechoice-case-no {
  margin: 0 0 20px;
  color: #98a2b3;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
}

.rechoice-case-article .rechoice-case-title {
  margin: 0 0 28px !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  color: #172033 !important;
  font-size: clamp(27px, 4vw, 38px) !important;
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: -.02em;
}

.rechoice-case-article .rechoice-case-title::before,
.rechoice-case-article .rechoice-case-title::after {
  display: none !important;
  content: none !important;
}


/* =========================
   PROFILE
========================= */

.rechoice-case-profile {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.rechoice-case-profile span {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border: 1px solid #d8e1f0;
  border-radius: 999px;
  background: #ffffff;
  color: #475467;
  font-size: 12px;
  font-weight: 600;
}


/* =========================
   冒頭
========================= */

.rechoice-case-article .rechoice-article-lead {
  margin-bottom: 46px;
}

.rechoice-case-article .rechoice-article-lead p {
  line-height: 2;
}


/* =========================
   このケースのポイント
========================= */

.rechoice-case-article .rechoice-article-summary {
  margin: 42px 0 56px;
  padding: 28px 30px;
  border-left: 4px solid #2f6fed;
  border-radius: 0 12px 12px 0;
  background: #f3f7ff;
}

.rechoice-case-article .rechoice-article-summary-label {
  margin: 0 0 14px;
  color: #2f6fed;
  font-size: 13px;
  font-weight: 700;
}

.rechoice-case-article .rechoice-article-summary p:last-child {
  margin-bottom: 0;
}


/* =========================
   3つの選択肢
========================= */

.rechoice-case-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 30px 0 54px;
}

.rechoice-case-option {
  display: flex;
  flex-direction: column;
  min-height: 210px;
  padding: 24px;
  border: 1px solid #dfe5ee;
  border-radius: 14px;
  background: #ffffff;
}

.rechoice-case-option-number {
  margin: 0 0 20px !important;
  color: #2f6fed;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
}

.rechoice-case-option h3 {
  margin: 0 0 14px !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  color: #172033 !important;
  font-size: 17px !important;
  line-height: 1.6;
}

.rechoice-case-option h3::before,
.rechoice-case-option h3::after {
  display: none !important;
  content: none !important;
}

.rechoice-case-option p:last-child {
  margin: auto 0 0 !important;
  color: #667085;
  font-size: 13px;
  line-height: 1.8;
}


/* =========================
   CASE本文 H2
========================= */

.rechoice-case-article > h2 {
  margin-top: 68px;
}


/* =========================
   補足
========================= */

.rechoice-case-article .rechoice-article-note {
  margin: 34px 0;
  padding: 24px 26px;
  border: 1px solid #dbe6f8;
  border-radius: 12px;
  background: #f8fbff;
}

.rechoice-case-article .rechoice-article-note p:last-child {
  margin-bottom: 0;
}


/************************************
** CASE 比較表
** PC：通常テーブル
** SP：縦型カード
************************************/

.rechoice-case-article .rechoice-table-wrap {
  width: 100%;
  margin: 30px 0 42px;
  overflow: visible;
}

.rechoice-case-article .rechoice-compare-table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
}

.rechoice-case-article .rechoice-compare-table th,
.rechoice-case-article .rechoice-compare-table td {
  padding: 16px 18px;
  border: 1px solid #e1e6ee;
  text-align: left;
  vertical-align: top;
  line-height: 1.7;
  word-break: normal;
  overflow-wrap: anywhere;
}

.rechoice-case-article .rechoice-compare-table thead th {
  background: #f3f6fa;
  color: #344054;
  font-size: 13px;
}

.rechoice-case-article .rechoice-compare-table thead th:first-child {
  width: 24%;
}

.rechoice-case-article .rechoice-compare-table tbody th {
  background: #fafbfc;
  color: #172033;
  font-weight: 700;
}


/************************************
** スマホ：表をカード化
************************************/

@media screen and (max-width: 600px) {

  .rechoice-case-article .rechoice-table-wrap {
    margin: 26px 0 38px;
  }

  .rechoice-case-article .rechoice-compare-table,
  .rechoice-case-article .rechoice-compare-table tbody,
  .rechoice-case-article .rechoice-compare-table tr,
  .rechoice-case-article .rechoice-compare-table th,
  .rechoice-case-article .rechoice-compare-table td {
    display: block;
    width: 100%;
    box-sizing: border-box;
  }

  .rechoice-case-article .rechoice-compare-table thead {
    display: none;
  }

  .rechoice-case-article .rechoice-compare-table tr {
    margin-bottom: 14px;
    overflow: hidden;
    border: 1px solid #dfe5ee;
    border-radius: 12px;
    background: #ffffff;
  }

  .rechoice-case-article .rechoice-compare-table tbody th {
    padding: 16px 18px;
    border: 0;
    border-bottom: 1px solid #e7ebf0;
    background: #f5f7fa;
    color: #172033;
    font-size: 15px;
  }

  .rechoice-case-article .rechoice-compare-table td {
    position: relative;
    padding: 42px 18px 16px;
    border: 0;
    border-bottom: 1px solid #edf0f4;
    color: #475467;
    font-size: 14px;
  }

  .rechoice-case-article .rechoice-compare-table td:last-child {
    border-bottom: 0;
  }

  .rechoice-case-article .rechoice-compare-table td:nth-of-type(1)::before {
    content: "得られるもの";
  }

  .rechoice-case-article .rechoice-compare-table td:nth-of-type(2)::before {
    content: "気をつけたいこと";
  }

  .rechoice-case-article .rechoice-compare-table td::before {
    position: absolute;
    top: 14px;
    left: 18px;
    color: #2f6fed;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .04em;
  }

}

/* =========================
   CASE結論
========================= */

.rechoice-case-article .rechoice-article-ending {
  margin: 70px 0 64px;
  padding: 38px 36px;
  border-radius: 16px;
  background: #172033;
  color: #ffffff;
}

.rechoice-case-article .rechoice-article-ending .rechoice-section-label {
  margin: 0 0 18px;
  color: #9fc0ff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
}

.rechoice-case-article .rechoice-article-ending h2 {
  margin: 0 0 22px !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  color: #ffffff !important;
  font-size: 25px !important;
  line-height: 1.6;
}

.rechoice-case-article .rechoice-article-ending h2::before,
.rechoice-case-article .rechoice-article-ending h2::after {
  display: none !important;
  content: none !important;
}

.rechoice-case-article .rechoice-article-ending p {
  color: #e4e9f1;
  line-height: 1.9;
}

.rechoice-case-article .rechoice-article-ending p:last-child {
  margin-bottom: 0;
}


/* =========================
   関連判断材料
========================= */

.rechoice-case-article .rechoice-article-links {
  margin-bottom: 60px;
}


/* =========================
   スマホ
========================= */

@media screen and (max-width: 768px) {

  .rechoice-case-article .rechoice-case-hero {
    margin-bottom: 36px;
    padding: 28px 22px;
    border-radius: 14px;
  }

  .rechoice-case-article .rechoice-case-title {
    font-size: 26px !important;
  }

  .rechoice-case-profile {
    gap: 6px;
  }

  .rechoice-case-profile span {
    padding: 6px 10px;
    font-size: 11px;
  }

  .rechoice-case-article .rechoice-article-summary {
    margin: 34px 0 44px;
    padding: 22px 20px;
  }

  .rechoice-case-options {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .rechoice-case-option {
    min-height: 0;
    padding: 20px;
  }

  .rechoice-case-option-number {
    margin-bottom: 10px !important;
  }

  .rechoice-case-article > h2 {
    margin-top: 52px;
  }

  .rechoice-case-article .rechoice-article-ending {
    margin: 54px 0 48px;
    padding: 30px 22px;
  }

  .rechoice-case-article .rechoice-article-ending h2 {
    font-size: 22px !important;
  }

}