@charset "UTF-8";
/* =========================================================
   CareMemory コラム（お役立ち情報）用スタイル
   ・style.css を読み込んだうえで、この順に読み込む
   ========================================================= */

/* ---------- 記事ヘッダー ---------- */
.col-head { background: linear-gradient(160deg, #f2f7ff 0%, #ffffff 60%, #eef4fc 100%); padding: 40px 0 44px; }
.breadcrumb { display: flex; flex-wrap: wrap; gap: 6px; font-size: 13px; color: var(--muted); margin-bottom: 20px; }
.breadcrumb li::after { content: "›"; margin-left: 8px; color: #aab3c2; }
.breadcrumb li:last-child::after { content: ""; }
.breadcrumb a { color: var(--muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--accent-dark); text-decoration: underline; }
.col-tag { display: inline-block; background: var(--navy); color: #fff; font-size: 12px; font-weight: 700; padding: 4px 14px; border-radius: 999px; }
.col-title { font-size: clamp(24px, 3.4vw, 38px); font-weight: 900; color: var(--navy); line-height: 1.45; margin: 14px 0 12px; }
.col-lead { font-size: 16px; color: var(--text); }
.col-date { margin-top: 14px; font-size: 13px; color: var(--muted); }

/* ---------- 本文 ---------- */
.col-body { padding: 48px 0 72px; }
.col-body h2 {
  font-size: clamp(20px, 2.6vw, 27px); color: var(--navy); line-height: 1.5;
  margin: 56px 0 18px; padding: 14px 18px; background: var(--sky); border-left: 6px solid var(--accent);
  border-radius: 0 8px 8px 0;
}
.col-body h2:first-child { margin-top: 0; }
.col-body h3 { font-size: clamp(17px, 2vw, 21px); color: var(--navy); margin: 32px 0 12px; padding-left: 14px; border-left: 4px solid var(--navy-2); }
.col-body p { margin: 0 0 1.4em; }
.col-body ul, .col-body ol { margin: 0 0 1.6em; padding-left: 0; }
.col-body ul > li { position: relative; padding-left: 24px; margin-bottom: 8px; }
.col-body ul > li::before { content: ""; position: absolute; left: 6px; top: 12px; width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }
.col-body ol { counter-reset: n; }
.col-body ol > li { counter-increment: n; position: relative; padding-left: 34px; margin-bottom: 10px; }
.col-body ol > li::before {
  content: counter(n); position: absolute; left: 0; top: 4px; width: 24px; height: 24px; border-radius: 50%;
  background: var(--navy); color: #fff; font-size: 13px; font-weight: 700; display: grid; place-items: center;
}
.col-body strong { color: var(--navy); }
.col-body a { color: var(--blue); }

/* 目次 */
.toc { background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 28px; margin-bottom: 44px; }
.toc h2 { all: unset; display: block; font-size: 17px; font-weight: 900; color: var(--navy); margin-bottom: 12px; }
.toc ol > li::before { background: var(--accent); }
.toc ol { margin-bottom: 0; }
.toc a { color: var(--text); text-decoration: none; }
.toc a:hover { color: var(--accent-dark); text-decoration: underline; }

/* 補足ボックス */
.note-box { border: 1px solid var(--line); border-left: 6px solid var(--navy-2); background: #fff; border-radius: 0 12px 12px 0; padding: 20px 24px; margin: 0 0 1.8em; box-shadow: var(--shadow); }
.note-box b { display: block; color: var(--navy); margin-bottom: 6px; }
.note-box.is-warn { border-left-color: var(--red); }
.note-box.is-point { border-left-color: var(--accent); background: #fffaf4; }
.note-box p:last-child, .note-box ul:last-child, .note-box ol:last-child { margin-bottom: 0; }

/* 表 */
.col-body .table-wrap { margin-bottom: 1.8em; }
.col-table { min-width: 520px; }
.col-table th, .col-table td { font-size: 15px; vertical-align: top; }
.col-table thead th { background: var(--navy); color: #fff; text-align: left; }
.col-table tbody th { background: var(--sky); color: var(--navy); width: 30%; text-align: left; }

/* 記事内CTA */
.col-cta { background: linear-gradient(120deg, var(--navy) 0%, var(--navy-2) 100%); color: #fff; border-radius: var(--radius); padding: 34px 32px; margin: 56px 0; }
.col-cta h2 { all: unset; display: block; font-size: clamp(19px, 2.4vw, 25px); font-weight: 900; line-height: 1.5; margin-bottom: 12px; }
.col-cta p { color: #dbe5f5; font-size: 15px; }
.col-cta .btn { margin-top: 8px; }
.col-cta-actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* 製品紹介 */
.col-product { border: 2px solid var(--accent); border-radius: var(--radius); overflow: hidden; margin: 56px 0 0; }
.col-product-head { background: var(--accent); color: #fff; font-weight: 900; padding: 10px 24px; }
.col-product-body { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: center; padding: 28px 24px; background: #fff; }
.col-product-body h3 { all: unset; display: block; font-size: clamp(18px, 2.2vw, 24px); font-weight: 900; color: var(--navy); line-height: 1.5; margin-bottom: 12px; }
.col-product-body p { font-size: 15px; }
.col-product-body ul { margin-bottom: 18px; }
@media (max-width: 767px) { .col-product-body { grid-template-columns: 1fr; padding: 20px; } }

/* 関連記事 */
.col-related { background: var(--bg-soft); padding: 56px 0; }
.col-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.col-card { display: block; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 24px; text-decoration: none; box-shadow: var(--shadow); }
.col-card:hover { border-color: var(--accent); transform: translateY(-2px); transition: .15s; }
.col-card span { font-size: 12px; font-weight: 700; color: var(--accent); }
.col-card b { display: block; color: var(--navy); font-size: 17px; line-height: 1.5; margin: 6px 0 8px; }
.col-card p { color: var(--muted); font-size: 14px; margin: 0; }
.col-card.is-soon { opacity: .65; pointer-events: none; }
@media (max-width: 900px) { .col-cards { grid-template-columns: 1fr; } }

/* 出典・免責 */
.col-source { font-size: 14px; color: var(--muted); border-top: 1px solid var(--line); margin-top: 48px; padding-top: 24px; }
.col-source h2 { all: unset; display: block; font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.col-source ul > li::before { background: #aab3c2; }

/* コラム一覧ページ */
.col-index-lead { text-align: center; color: var(--muted); margin: -20px 0 36px; }
