@charset "UTF-8";
/* ============================================================
   コラム一覧ページ（/column/）
   構成は naminamicl.jp/column/ を踏襲（記事カード一覧＋サイドバー:
   検索・カテゴリー・新着記事）。見た目はトップページのデザイン言語
   （style.css のトークン・糸/キャラ装飾）に合わせる。
   style.css は一切変更しないため、トップの見た目に影響しない。
   ============================================================ */

/* カテゴリ色の淡色（トークンから導出。color-mix 非対応環境は近似値） */
.page-column {
  --tint-red:     #F8E9E5;
  --tint-blue:    #E3EAEE;
  --tint-mustard: #F1ECDD;
  --tint-orange:  #F9E9E2;
}
@supports (background: color-mix(in srgb, red 10%, white)) {
  .page-column {
    --tint-red:     color-mix(in srgb, var(--red) 12%, #FFF);
    --tint-blue:    color-mix(in srgb, var(--blue) 11%, #FFF);
    --tint-mustard: color-mix(in srgb, var(--mustard) 17%, #FFF);
    --tint-orange:  color-mix(in srgb, var(--orange) 15%, #FFF);
  }
}

.page-column main {
  /* ヘッダーのロゴ（position:absolute）と本文が重ならないよう逃がす */
  padding-top: clamp(150px, 15vw, 200px);
}

/* 記事リンクは準備中（aria-disabled）の間はカーソルを変えない */
.page-column a[aria-disabled="true"] { cursor: default; }

/* パンくず -------------------------------------------------- */
.cl-breadcrumbs {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 var(--pad-x);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: .1em;
}
.cl-breadcrumbs ol { display: flex; flex-wrap: wrap; }
.cl-breadcrumbs li + li::before { content: "›"; margin: 0 .8em; }
.cl-breadcrumbs a { transition: opacity .25s; }
.cl-breadcrumbs a:hover { opacity: .6; }

/* 見出し（Column） ------------------------------------------ */
.cl-hero { position: relative; }
.cl-hero__inner {
  position: relative;
  max-width: var(--content-w);
  margin: 0 auto;
  padding-top: 12px;
  text-align: center;
}
.cl-hero__title {
  position: relative;
  width: min(430px, 78vw);
  margin: 0 auto;
  padding: clamp(34px, 4vw, 58px) 20px;
}
.cl-hero__oval {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
}
.cl-hero__title .section-title { position: relative; }
.cl-hero__sit-kid {
  position: absolute;
  left: 57%;
  top: -34%;
  width: 22%;
  min-width: 74px;
}
.cl-hero__crawl-kid {
  position: absolute;
  right: -28%;
  bottom: -4%;
  width: 33%;
  min-width: 110px;
}
.cl-hero__lead {
  max-width: 640px;
  margin: 36px auto 0;
  padding: 0 var(--pad-x);
  font-size: 15px;
  color: var(--muted);
  letter-spacing: .12em;
  line-height: 2.2;
  text-align: left;
}
.cl-hero__deco-blue    { left: 2.5%;  top: 80px;  width: 21%; }
.cl-hero__deco-mustard { left: 84.5%; top: 150px; width: 23%; }

/* 2カラムレイアウト ----------------------------------------- */
/* WebKit（iPhone の Safari/Chrome）は flex-wrap コンテナの最小幅を「折り返さない幅」で
   見積もるため、グリッドの min-width:auto 連鎖でカード列が viewport より広がり、
   ページ全体が右へはみ出す（幅390px以下の実機で「全体が右寄り」に見えた事故の根治。
   Chromium では再現しない）。各グリッドアイテムで min-width:0 を明示して遮断する。 */
.cl-list,
.cl-sidebar,
.cl-sidebar > .cl-panel,
.cl-cards > li,
.cl-card__body,
.cl-reco__body { min-width: 0; }

.cl-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: clamp(28px, 3.6vw, 56px);
  align-items: start;
  max-width: 1180px;
  margin: 72px auto 0;
  padding: 0 var(--pad-x);
  position: relative;
  z-index: 1;
}

/* 記事カード ------------------------------------------------ */
.cl-cards { display: grid; gap: 22px; }
.cl-card {
  display: grid;
  grid-template-columns: 236px minmax(0, 1fr);
  gap: clamp(18px, 2vw, 28px);
  align-items: center;
  background: #fff;
  border-radius: 26px;
  padding: 18px;
  transition: transform .35s var(--ease-soft), box-shadow .35s;
}
.cl-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 34px rgba(43, 34, 31, .08);
}

/* サムネイル（写真の代わりに、まるまるのキャラクターが遊ぶ色面） */
.cl-card__thumb {
  margin: 0;
  aspect-ratio: 3 / 2;
  border-radius: 18px;
  display: grid;
  place-items: end center;
  padding-bottom: 9%;
  overflow: hidden;
}
.cl-card__thumb img {
  height: 64%;
  width: auto;
  max-width: 84%;
  object-fit: contain;
}
.cl-card__thumb--red     { background: var(--tint-red); }
.cl-card__thumb--blue    { background: var(--tint-blue); }
.cl-card__thumb--mustard { background: var(--tint-mustard); }
.cl-card__thumb--orange  { background: var(--tint-orange); }

.cl-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 16px;
}
.cl-chip {
  display: inline-flex;
  align-items: center;
  gap: .5em;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .08em;
  padding: .3em 1em;
  border-radius: 999px;
}
.cl-chip::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
}
.cl-chip--red     { background: var(--tint-red); }
.cl-chip--blue    { background: var(--tint-blue); }
.cl-chip--mustard { background: var(--tint-mustard); }
.cl-chip--orange  { background: var(--tint-orange); }
.cl-chip--red::before     { background: var(--red); }
.cl-chip--blue::before    { background: var(--blue); }
.cl-chip--mustard::before { background: var(--mustard); }
.cl-chip--orange::before  { background: var(--orange); }

.cl-dates {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 2px 14px;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: .08em;
}
.cl-card__title {
  margin-top: 10px;
  font-size: clamp(15.5px, 1.3vw, 17.5px);
  font-weight: 700;
  letter-spacing: .1em;
  line-height: 1.85;
}
.cl-card__desc {
  margin-top: 8px;
  font-size: 13px;
  color: var(--muted);
  letter-spacing: .06em;
  line-height: 1.95;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.cl-empty {
  padding: 40px 8px;
  text-align: center;
  font-size: 14px;
  color: var(--muted);
  letter-spacing: .1em;
}
.cl-sample-note {
  margin-top: 30px;
  text-align: center;
  font-size: 11.5px;
  color: #A8A19D;
  letter-spacing: .1em;
}

/* サイドバー ------------------------------------------------ */
.cl-sidebar { display: grid; gap: 26px; position: relative; }
@media (min-width: 981px) {
  .cl-sidebar { position: sticky; top: 28px; }
}
.cl-panel {
  position: relative;
  background: #fff;
  border-radius: 26px;
  padding: 26px 26px 28px;
}
.cl-panel__title {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .22em;
  padding-bottom: .7em;
  border-bottom: 1.5px solid var(--band);
}

/* 検索（このページ内のコラムを絞り込み） */
.cl-search__hang-kid {
  position: absolute;
  right: 14px;
  top: -58px;
  width: 46px;
}
.cl-search__box {
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1.6px solid var(--ink);
  border-radius: 999px;
  padding: 5px 5px 5px 18px;
  background: #fff;
}
.cl-search__input {
  flex: 1;
  min-width: 0;
  border: 0;
  padding: .35em 0;
  font: inherit;
  font-size: 13.5px;
  letter-spacing: .08em;
  color: var(--ink);
  background: none;
  outline: none;
}
.cl-search__input::placeholder { color: #B5AEAA; }
.cl-search__btn {
  flex: 0 0 auto;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--red);
  display: grid;
  place-items: center;
  transition: transform .3s var(--ease-soft);
}
.cl-search__btn:hover { transform: scale(1.08) rotate(4deg); }
.cl-search__btn svg { width: 15px; height: 15px; display: block; }

/* おすすめコラム（編集部の常設ピックアップ。naminami #6212 に倣い件数は3件） */
.cl-reco__list { margin-top: 6px; }
.cl-reco__list li + li { border-top: 1px solid var(--band); }
.cl-reco__item {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 13px;
  align-items: start;
  padding: 14px 0;
  transition: opacity .25s;
}
.cl-reco__item:hover { opacity: .6; }
.cl-reco__list li:first-child .cl-reco__item { padding-top: 16px; }
.cl-reco__list li:last-child .cl-reco__item { padding-bottom: 4px; }
.cl-reco__thumb {
  margin: 0;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  display: grid;
  place-items: end center;
  padding-bottom: 8%;
  overflow: hidden;
}
.cl-reco__thumb img {
  height: 64%;
  width: auto;
  max-width: 84%;
  object-fit: contain;
}
.cl-reco__body { display: block; }
.cl-reco__body .cl-chip { font-size: 10px; padding: .22em .8em; }
.cl-reco__date {
  display: inline-block;
  margin-left: 8px;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: .08em;
  vertical-align: middle;
}
.cl-reco__title {
  display: block;
  margin-top: 5px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .05em;
  line-height: 1.75;
}

/* カテゴリー（押すと一覧を絞り込み） */
.cl-cat__list { margin-top: 8px; }
.cl-cat__list li + li { border-top: 1px dashed #DCD6D2; }
.cl-cat__btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  text-align: left;
  padding: .72em 2px;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: .1em;
  transition: color .25s;
}
.cl-cat__btn:hover { color: var(--red); }
.cl-cat__btn.is-active { color: var(--red); font-weight: 700; }
.cl-cat__count {
  font-size: 11px;
  color: var(--muted);
  border: 1px solid #DCD6D2;
  border-radius: 999px;
  padding: .05em .7em;
}
.cl-cat__btn.is-active .cl-cat__count { color: var(--red); border-color: currentColor; }
.cl-cat__planned {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: .72em 2px;
  font-size: 13.5px;
  letter-spacing: .1em;
  color: #A39C99;
}
.cl-cat__planned small {
  font-size: 10px;
  font-weight: 400;
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: .1em .6em;
  letter-spacing: .1em;
}

/* 新着記事 */
.cl-new__list { margin-top: 6px; }
.cl-new__item {
  display: block;
  padding: 13px 2px;
  border-bottom: 1px solid var(--band);
  transition: opacity .25s;
}
.cl-new__list li:last-child .cl-new__item { border-bottom: 0; padding-bottom: 4px; }
.cl-new__item:hover { opacity: .6; }
.cl-new__item time {
  display: block;
  font-size: 11.5px;
  color: var(--muted);
  letter-spacing: .1em;
}
.cl-new__item-title {
  display: block;
  margin-top: 2px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
  line-height: 1.8;
}
.cl-sidebar__deco-red {
  left: 60%;
  bottom: -230px;
  width: 52%;
}

/* CTA（予約導線） ------------------------------------------- */
.cl-cta { position: relative; }
.cl-cta__inner {
  position: relative;
  max-width: 880px;
  margin: 120px auto 0;
  background: var(--band);
  border-radius: 44px;
  padding: clamp(38px, 4.6vw, 60px) clamp(24px, 4vw, 56px);
  text-align: center;
}
.cl-cta__text {
  font-size: clamp(14.5px, 1.3vw, 16.5px);
  font-weight: 500;
  letter-spacing: .14em;
  line-height: 2.1;
}
.cl-cta__reserve {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 1.8vw, 26px);
  margin-top: 28px;
  background: #fff;
  border-radius: 999px;
  padding: 16px clamp(28px, 3.4vw, 48px);
  box-shadow: 0 6px 24px rgba(43, 34, 31, .06);
}
.cl-cta__divider { width: 1px; height: 30px; background: #DCD6D2; }
.cl-cta__blow-kid {
  position: absolute;
  left: 20px;
  top: -78px;
  width: 58px;
}
.cl-cta__deco-blue { left: 78%; bottom: -120px; width: 24%; }

/* コラムページのフッター余白 */
.page-column .site-footer { margin-top: 120px; }

/* ==========================================================
   レスポンシブ
   ========================================================== */
@media (max-width: 980px) {
  .cl-layout { grid-template-columns: 1fr; gap: 56px; }
  .cl-sidebar__deco-red { display: none; }
  /* 1カラム時は naminami のSP運用（#6212）に倣う:
     検索 → カテゴリー → おすすめ の順にし、記事一覧の直下と重複する「新着記事」は畳む */
  .cl-search { order: 1; }
  .cl-cat { order: 2; }
  .cl-reco { order: 3; }
  .cl-new { display: none; }
}

@media (max-width: 820px) {
  /* SPでは浮遊する糸の装飾を隠す（トップページと同じ運用。タイトル一体のキャラは残す） */
  .cl-hero__deco-blue,
  .cl-hero__deco-mustard,
  .cl-cta__deco-blue { display: none; }

  .cl-hero__title { width: min(300px, 72vw); padding: 28px 12px; }
  .cl-hero__sit-kid { min-width: 58px; }
  .cl-hero__crawl-kid { right: -11%; width: 27%; min-width: 84px; }
  .cl-hero__lead { margin-top: 26px; font-size: 13.5px; }

  .cl-layout { margin-top: 48px; }
  .cl-cards { gap: 14px; }
  .cl-card {
    grid-template-columns: 104px minmax(0, 1fr);
    gap: 14px;
    padding: 12px;
    border-radius: 20px;
  }
  .cl-card__thumb { border-radius: 12px; aspect-ratio: 1 / 1; padding-bottom: 7%; }
  .cl-card__thumb img { height: 62%; max-width: 84%; }
  .cl-card__meta { gap: 4px 10px; }
  .cl-chip { font-size: 10px; padding: .25em .8em; }
  .cl-dates { font-size: 10.5px; gap: 2px 10px; }
  .cl-card__title { margin-top: 6px; font-size: 14px; line-height: 1.7; letter-spacing: .06em; }
  .cl-card__desc { display: none; }
  .cl-sample-note { margin-top: 22px; }

  .cl-panel { border-radius: 20px; padding: 22px 20px 24px; }
  .cl-search__hang-kid { top: -52px; width: 40px; }

  .cl-cta__inner { margin-top: 80px; border-radius: 26px; }
  .cl-cta__reserve { padding: 13px 22px; width: 100%; max-width: 420px; }
  .cl-cta__reserve .reserve-link { font-size: 14px; letter-spacing: .1em; }
  .cl-cta__blow-kid { left: 12px; top: -64px; width: 46px; }

  .page-column .site-footer { margin-top: 80px; }
}

/* ==========================================================
   記事詳細ページ（/column/<slug>/）
   ========================================================== */
.cl-layout--article { margin-top: 8px; }
.page-column-article .cl-breadcrumbs { margin-bottom: 26px; }
.page-column-article .cl-breadcrumbs li:last-child {
  max-width: 24em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cl-art {
  background: #fff;
  border-radius: 26px;
  padding: clamp(26px, 3.4vw, 48px);
  min-width: 0;
}
.cl-art__title {
  margin-top: 14px;
  font-size: clamp(20px, 2vw, 27px);
  font-weight: 700;
  letter-spacing: .1em;
  line-height: 1.85;
}
.cl-art__eye {
  margin: 26px 0 0;
  aspect-ratio: 5 / 2;
  border-radius: 18px;
  display: grid;
  place-items: end center;
  padding-bottom: 3.5%;
  overflow: hidden;
}
.cl-art__eye img {
  height: 62%;
  width: auto;
  max-width: 70%;
  object-fit: contain;
}

/* コラム系のページは本文の左右に装飾（糸・キャラ）を画面外まで浮かせている。body の overflow-x:hidden は
   iPhone のブラウザでは横スクロールを止められない（viewport に伝播した hidden を無視する）ので、
   ページの器（main）で横方向だけ切る。clip は hidden と違いスクロールコンテナにならず、上にはみ出す
   タイトル脇の糸（top:-78px）や縦方向は切らない（2026-08-23 オーナー指摘: SP で右に余白）。
   サイドバー（.cl-sidebar は position:sticky）の外へ抜ける糸や、記事カード（.cl-art）の外へ出る糸も
   ここでまとめて切る。狭い器（.cl-sidebar / .cl-art）で切ると意匠どおりのはみ出しまで削れるため、
   切るのは main（＝ビューポート幅）だけにする。
   2026-08-25: 対象を記事ページ（.page-column-article）だけから、一覧・ハブを含む .page-column 全体へ
   広げた。コラム一覧が漏れていて横に 96px はみ出していた（#7335）。 */
.page-column > main#main { overflow-x: clip; }

/* 目次 */
.cl-art__toc {
  margin-top: 28px;
  background: var(--bg-warm);
  border-radius: 18px;
  padding: 20px 26px 22px;
}
.cl-art__toc-title {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .24em;
  padding-bottom: .5em;
  border-bottom: 1.5px solid var(--band);
}
.cl-art__toc ol {
  margin-top: 10px;
  counter-reset: toc;
}
.cl-art__toc li {
  counter-increment: toc;
  font-size: 13.5px;
  letter-spacing: .06em;
  padding: .34em 0;
}
.cl-art__toc li::before {
  content: counter(toc, decimal-leading-zero);
  color: var(--red);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  margin-right: .9em;
}
.cl-art__toc a { transition: opacity .25s; }
.cl-art__toc a:hover { opacity: .6; }
/* 開閉式（<details>）。見出し行をクリックで開く。既定は閉じる（lib/render.mjs tocHtml） */
.cl-art__toc summary.cl-art__toc-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  list-style: none;
  user-select: none;
}
.cl-art__toc summary.cl-art__toc-title::-webkit-details-marker { display: none; }
.cl-art__toc summary.cl-art__toc-title::after {
  content: "";
  width: 8px;
  height: 8px;
  margin-right: 4px;
  border-right: 2px solid var(--red);
  border-bottom: 2px solid var(--red);
  position: relative;
  top: -3px;
  transform: rotate(45deg);
  transition: transform .25s var(--ease-soft), top .25s var(--ease-soft);
}
.cl-art__toc details[open] > summary.cl-art__toc-title::after { top: 2px; transform: rotate(-135deg); }
.cl-art__toc details:not([open]) > summary.cl-art__toc-title { border-bottom-color: transparent; padding-bottom: 0; }

/* 本文 */
.cl-art__body {
  margin-top: 34px;
  font-size: 15px;
  line-height: 2.15;
  letter-spacing: .07em;
}
.cl-art__body > * + * { margin-top: 1.35em; }
.cl-art__body h2 {
  margin-top: 2.4em;
  padding-bottom: .55em;
  border-bottom: 1.5px solid var(--band);
  font-size: clamp(17.5px, 1.5vw, 20px);
  font-weight: 700;
  letter-spacing: .12em;
  line-height: 1.8;
  position: relative;
  padding-left: 1em;
}
.cl-art__body h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: .62em;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--red);
}
.cl-art__body h3 {
  margin-top: 1.9em;
  font-size: clamp(15.5px, 1.3vw, 17px);
  font-weight: 700;
  letter-spacing: .1em;
  line-height: 1.85;
}
/* FAQ（開閉式・details/summary） */
.cl-art__faq {
  margin-top: 14px;
  border: 1.5px solid var(--band);
  border-radius: 14px;
  background: #fff;
}
.cl-art__faq summary {
  list-style: none;
  cursor: pointer;
  position: relative;
  padding: 14px 46px 14px 18px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .08em;
  line-height: 1.9;
  border-radius: 14px;
  transition: background .25s;
}
.cl-art__faq summary::-webkit-details-marker { display: none; }
.cl-art__faq summary::first-letter { color: var(--red); }
.cl-art__faq summary:hover { background: var(--bg-warm); }
.cl-art__faq summary::after {
  content: "＋";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--red);
  font-size: 17px;
  font-weight: 500;
}
.cl-art__faq[open] summary::after { content: "−"; }
.cl-art__faq[open] summary { border-radius: 14px 14px 0 0; }
.cl-art__faq-a {
  padding: 12px 18px 16px;
  border-top: 1.5px dashed var(--band);
  font-size: 14.5px;
}
.cl-art__faq-a > * + * { margin-top: 1em; }
.cl-art__body a { color: var(--orange); border-bottom: 1px solid currentColor; padding-bottom: 1px; transition: opacity .25s; }
.cl-art__body a:hover { opacity: .65; }
.cl-art__body ul, .cl-art__body ol { padding-left: 1.5em; }
.cl-art__body ul li, .cl-art__body ol li { margin-top: .5em; }
.cl-art__body ul { list-style: none; padding-left: 1.2em; }
.cl-art__body ul > li { position: relative; }
.cl-art__body ul > li::before {
  content: "";
  position: absolute;
  left: -1.2em;
  top: .95em;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--mustard);
}
.cl-art__body ol { list-style: decimal; }
.cl-art__body blockquote {
  margin: 1.35em 0 0;
  padding: .2em 0 .2em 1.2em;
  border-left: 3px solid var(--mustard);
  color: var(--muted);
  font-size: 14px;
}
.cl-art__body blockquote > * + * { margin-top: .8em; }
.cl-art__caution {
  background: var(--tint-red);
  border-radius: 14px;
  padding: 1em 1.3em;
}

/* 表（SPは横スクロール） */
.cl-art__tablewrap {
  margin-top: 1.35em;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 14px;
  border: 1.5px solid var(--band);
}
.cl-art__body table {
  width: 100%;
  min-width: 480px;
  border-collapse: collapse;
  font-size: 13.5px;
  line-height: 1.9;
}
.cl-art__body th, .cl-art__body td {
  padding: 12px 16px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--band);
}
.cl-art__body thead th {
  background: var(--bg-warm);
  font-weight: 700;
  letter-spacing: .1em;
  white-space: nowrap;
}
.cl-art__body tbody tr:last-child th,
.cl-art__body tbody tr:last-child td { border-bottom: 0; }

/* 参考文献 */
.cl-art__refs {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.95;
}
.cl-art__refs a { word-break: break-all; }

/* 監修ボックス */
.cl-art__supervisor {
  margin-top: 44px;
  border: 1.5px solid var(--band);
  border-radius: 18px;
  padding: 20px 26px 22px;
}
.cl-art__supervisor-label {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .24em;
  color: var(--red);
}
.cl-art__supervisor-name {
  margin-top: .5em;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .1em;
}
.cl-art__supervisor-date {
  margin-top: .2em;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: .08em;
}
.cl-art__disclaimer {
  margin-top: .9em;
  padding-top: .8em;
  border-top: 1px solid var(--band);
  font-size: 12px;
  line-height: 1.8;
  color: var(--muted);
}

/* 関連記事・戻る */
.cl-art__related { margin-top: 36px; }
.cl-art__related-title {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .22em;
  padding-bottom: .6em;
  border-bottom: 1.5px solid var(--band);
}
.cl-art__related ul { margin-top: 12px; }
.cl-art__related li { padding: .4em 0; }
.cl-art__back { margin-top: 40px; text-align: center; }

@media (max-width: 820px) {
  .cl-art { border-radius: 20px; padding: 20px 18px 28px; }
  .cl-art__title { font-size: 18px; letter-spacing: .06em; }
  .cl-art__eye { aspect-ratio: 2 / 1; border-radius: 14px; }
  .cl-art__toc { padding: 16px 18px 18px; }
  .cl-art__body { font-size: 14px; letter-spacing: .04em; }
  /* 表（#7736）。SP では見出しの nowrap を解き、どの列にも文字数ぶんの床を敷く。
     見出しが1行のまま幅を食い切ると、見出しの無い列（<th></th>）には幅が残らない。
     日本語はどこでも折り返せるので、残らなかった列は「1文字ずつ改行」＝縦書きまで潰れる。
     min-width は原稿の md で表が増えても潰れないようにする構造側の歯止め。 */
  .cl-art__body th, .cl-art__body td { padding: 10px 12px; min-width: 4.5em; }
  .cl-art__body thead th { white-space: normal; }
  /* 横に続きがあることを見た目で伝える（iOS はスクロールバーが出ないので、
     切れた列に気づけない）。端まで送ると影が消えるよう、覆い（local）を影（scroll）の上に重ねる
     ＝ JS 不要で「まだ続きがある / もう無い」が出る。覆いの色は器の地色（#fff）。 */
  .cl-art__tablewrap {
    background-image:
      linear-gradient(to right, #fff 45%, rgba(255,255,255,0)),
      linear-gradient(to left,  #fff 45%, rgba(255,255,255,0)),
      radial-gradient(farthest-side at 0    50%, rgba(43,37,34,.18), rgba(43,37,34,0)),
      radial-gradient(farthest-side at 100% 50%, rgba(43,37,34,.18), rgba(43,37,34,0));
    background-position: left center, right center, left center, right center;
    background-size: 28px 100%, 28px 100%, 16px 100%, 16px 100%;
    background-repeat: no-repeat;
    background-attachment: local, local, scroll, scroll;
  }
  .page-column-article .cl-breadcrumbs li:last-child { max-width: 14em; }
}

/* ==========================================================
   準備中表示（未公開の記事カード・おすすめ）
   ========================================================== */
.cl-soon {
  display: inline-block;
  font-size: 10px;
  color: var(--muted);
  letter-spacing: .14em;
  border: 1px solid #CFC8C4;
  border-radius: 999px;
  padding: .15em .8em;
  vertical-align: middle;
}
.cl-reco__body .cl-soon { margin-left: 8px; }
.cl-card--soon { cursor: default; }
.cl-card--soon:hover { transform: none; box-shadow: none; }
.cl-card--soon .cl-card__title,
.cl-card--soon .cl-card__desc { color: var(--muted); }
.cl-reco__item--soon { cursor: default; }
.cl-reco__item--soon:hover { opacity: 1; }
.cl-reco__item--soon .cl-reco__title { color: var(--muted); }
