/* =====================================================================
   POSELECT NOTE - style.css
   モバイルファースト / 外部ライブラリ・Webフォント不使用
   色やサイズは :root の変数を書き換えるだけで全体に反映されます
   ===================================================================== */

/* ---------- デザイントークン ---------- */
:root {
  --color-primary:      #1558c0;
  --color-primary-dark: #0d3f8f;
  --color-accent:       #1558c0;
  --color-text:         #1f2328;
  --color-text-muted:   #5c636a;
  --color-text-faint:   #858c94;
  --color-bg:           #ffffff;
  --color-bg-alt:       #f6f8fb;
  --color-bg-tint:      #eef4fd;
  --color-border:       #e3e6ea;
  --color-border-soft:  #eef0f3;

  --radius:      14px;   /* 角を大きめに取って硬さを和らげています */
  --radius-lg:   22px;
  /* 影は輪郭を出すためではなく浮きを示すためのもの。薄く広く。 */
  --shadow:      0 1px 4px rgba(16, 24, 40, .04);
  --shadow-md:   0 8px 28px rgba(16, 24, 40, .06);

  --wrap:        1080px;   /* サイト全体の最大幅 */
  --wrap-narrow: 720px;    /* 記事本文の最大幅 */
  --gutter:      clamp(18px, 5vw, 28px);

  --font: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Hiragino Kaku Gothic ProN",
          "Noto Sans JP", "Yu Gothic", Meiryo, sans-serif;
}

/* ---------- リセット ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 16px; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.85;
  color: var(--color-text);
  background: var(--color-bg);
  overflow-wrap: break-word;
  word-break: normal;
  line-break: strict;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: var(--color-accent); text-underline-offset: .18em; }
a:hover { opacity: .8; }
h1, h2, h3, h4, p, ul, ol, dl, figure, blockquote { margin: 0; }
ul, ol { padding-left: 1.3em; }
button { font: inherit; color: inherit; }
table { border-collapse: collapse; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

/* 読み上げ専用テキスト */
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
/* キーボード操作時のスキップリンク */
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--color-primary); color: #fff; padding: 10px 16px; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }
:focus-visible { outline: 3px solid #7aa7ea; outline-offset: 2px; }

/* ---------- レイアウト ---------- */
.wrap        { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.wrap--narrow{ max-width: var(--wrap-narrow); }
.section     { padding-block: clamp(44px, 8vw, 76px); }
.section--alt{ background: var(--color-bg-alt); }
.section__head { margin-bottom: clamp(22px, 4.5vw, 32px); }
.section__title {
  font-size: clamp(19px, 4.4vw, 24px);
  line-height: 1.5; font-weight: 700; letter-spacing: .01em;
}
.section__desc { font-size: 14.5px; color: var(--color-text-muted); margin-top: 6px; }
.section__more { margin-top: 22px; text-align: center; }

/* ---------- 広告表記（サイト共通・最上部の帯） ---------- */
.notice-bar {
  background: var(--color-bg-alt);
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text-muted);
  font-size: 12px; line-height: 1.6; text-align: center;
  padding: 8px var(--gutter);
}
.notice-bar a { color: var(--color-text-muted); }

/* ---------- ヘッダー ---------- */
.header { border-bottom: 1px solid var(--color-border); background: #fff; }
.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 14px; padding-block: 14px;
}
.header__brand { display: flex; align-items: baseline; gap: 9px; text-decoration: none; color: var(--color-text); }
.header__name {
  font-size: 17px; font-weight: 800; letter-spacing: .06em;
}
.header__tagline { font-size: 11px; color: var(--color-text-faint); letter-spacing: .02em; }
.header__nav ul { display: flex; gap: 16px; list-style: none; margin: 0; padding: 0; font-size: 13.5px; }
.header__nav a { color: var(--color-text-muted); text-decoration: none; white-space: nowrap; }
.header__nav a:hover { color: var(--color-primary); opacity: 1; }

/* スマホでは横幅に収まらないため、ブランドとナビを上下に分けます */
@media (max-width: 700px) {
  .header__inner { flex-direction: column; align-items: flex-start; gap: 7px; padding-block: 12px; }
  .header__nav { width: 100%; }
  .header__nav ul {
    gap: 16px; font-size: 13px;
    overflow-x: auto; -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .header__nav ul::-webkit-scrollbar { display: none; }
}
@media (max-width: 359px) {
  .header__name { font-size: 16px; }
  .header__tagline { display: none; }
}

/* ---------- ヒーロー（トップページ） ---------- */
.hero {
  background: linear-gradient(180deg, var(--color-bg-tint) 0%, #ffffff 100%);
  padding-block: clamp(38px, 9vw, 68px);
  border-bottom: 1px solid var(--color-border-soft);
}
.hero__inner { max-width: 640px; margin-inline: auto; text-align: center; }
.hero__name {
  font-size: clamp(26px, 7vw, 40px); font-weight: 700;
  letter-spacing: .08em; line-height: 1.25; margin-bottom: 14px;
}
.hero__concept {
  font-size: clamp(15px, 3.9vw, 18px); font-weight: 700;
  color: var(--color-primary-dark); margin-bottom: 16px;
}
.hero__lead { font-size: 15px; color: var(--color-text-muted); text-align: left; }
@media (min-width: 600px) { .hero__lead { text-align: center; } }
.hero__actions { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 24px; }

/* ---------- ボタン ---------- */
.btn {
  display: inline-block; padding: 12px 22px; border-radius: 999px;
  background: var(--color-primary); color: #fff;
  font-size: 14.5px; font-weight: 700; text-decoration: none; text-align: center;
  border: 2px solid var(--color-primary);
  transition: background .15s ease, color .15s ease;
  -webkit-tap-highlight-color: transparent;
}
.btn:hover { background: var(--color-primary-dark); border-color: var(--color-primary-dark); opacity: 1; }
.btn--ghost { background: #fff; color: var(--color-primary); }
.btn--ghost:hover { background: var(--color-bg-tint); color: var(--color-primary-dark); }
/* config.js にURLが未設定のCTAは表示しない（リンク切れ防止） */
.btn.is-unset, a[data-cta].is-unset { display: none; }

/* ---------- カテゴリーチップ ---------- */
.chips { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; margin: 0; padding: 0; }
.chip {
  display: inline-block; padding: 6px 14px; border-radius: 999px;
  background: #fff; border: 1px solid var(--color-border);
  font-size: 13px; color: var(--color-text-muted); text-decoration: none;
}
.chip:hover { border-color: var(--color-primary); color: var(--color-primary); opacity: 1; }
.chip--current { background: var(--color-primary); border-color: var(--color-primary); color: #fff; }

/* ---------- カテゴリーカード ---------- */
.catgrid { display: grid; gap: 12px; list-style: none; margin: 0; padding: 0; }
@media (min-width: 640px) { .catgrid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 940px) { .catgrid { grid-template-columns: repeat(4, 1fr); } }
.catcard {
  display: block; height: 100%; padding: 22px;
  background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius);
  text-decoration: none; color: inherit; transition: border-color .15s ease, box-shadow .15s ease;
}
.catcard:hover { border-color: var(--color-primary); box-shadow: var(--shadow-md); opacity: 1; }
.catcard__name { display: block; font-size: 15.5px; font-weight: 700; margin-bottom: 4px; }
.catcard__desc { display: block; font-size: 13px; color: var(--color-text-muted); line-height: 1.7; }
.catcard__count { display: block; margin-top: 10px; font-size: 12px; color: var(--color-text-faint); }

/* ---------- 記事リスト ---------- */
.postlist { list-style: none; margin: 0; padding: 0; display: grid; gap: 0; }
.postlist__item { border-bottom: 1px solid var(--color-border-soft); }
.postlist__item:first-child { border-top: 1px solid var(--color-border-soft); }
.postlink { display: block; padding: 22px 2px; text-decoration: none; color: inherit; }
.postlink:hover { opacity: 1; }
.postlink:hover .postlink__title { color: var(--color-primary); }
.postlink__meta {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
  font-size: 12px; color: var(--color-text-faint); margin-bottom: 6px;
}
.postlink__cat {
  background: var(--color-bg-tint); color: var(--color-primary-dark);
  border-radius: 6px; padding: 2px 8px; font-weight: 700; font-size: 11.5px;
}
.postlink__pr {
  background: #fff3d6; color: #8a6100; border-radius: 6px;
  padding: 2px 8px; font-weight: 700; font-size: 11.5px;
}
.postlink__title {
  display: block;
  font-size: 16.5px; font-weight: 700; line-height: 1.6;
  transition: color .15s ease; margin-bottom: 5px;
}
.postlink__excerpt { display: block; font-size: 13.5px; color: var(--color-text-muted); line-height: 1.75; }
@media (min-width: 768px) { .postlink__title { font-size: 17.5px; } }

/* ---------- パンくず ---------- */
.breadcrumb { padding-block: 12px; font-size: 12px; color: var(--color-text-faint); }
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: 6px; list-style: none; margin: 0; padding: 0; }
.breadcrumb li::after { content: "›"; margin-left: 6px; color: var(--color-border); }
.breadcrumb li:last-child::after { content: ""; }
.breadcrumb a { color: var(--color-text-muted); text-decoration: none; }

/* ---------- 記事ページ ---------- */
.article { padding-bottom: clamp(36px, 8vw, 56px); }
.article__header { padding-block: 8px 28px; border-bottom: 1px solid var(--color-border-soft); margin-bottom: 32px; }
.article__meta { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; font-size: 12px; color: var(--color-text-faint); margin-bottom: 10px; }
.article__title { font-size: clamp(22px, 5.6vw, 31px); line-height: 1.55; font-weight: 700; letter-spacing: .005em; }
.article__lead { margin-top: 14px; font-size: 15px; color: var(--color-text-muted); }

/* 記事単位の広告表記（body[data-pr="true"] のときだけ表示） */
.pr-article { display: none; }
body[data-pr="true"] .pr-article {
  display: block;
  background: #fffaf0; border: 1px solid #f0dcb4; border-radius: var(--radius);
  padding: 12px 14px; font-size: 12.5px; line-height: 1.7; color: #7a5a10;
  margin-bottom: 22px;
}
body[data-pr="true"] .pr-article strong { color: #8a6100; }

/* 目次 */
.toc {
  background: var(--color-bg-alt); border: 1px solid var(--color-border);
  border-radius: var(--radius); padding: 16px 18px; margin-bottom: 30px;
}
.toc__title { font-size: 13.5px; font-weight: 700; color: var(--color-text-muted); margin-bottom: 8px; }
.toc__list { margin: 0; padding-left: 1.35em; font-size: 14px; }
.toc__list li { margin-bottom: 4px; }
.toc__list a { color: var(--color-text); text-decoration: none; }
.toc__list a:hover { color: var(--color-primary); text-decoration: underline; }

/* 記事本文 */
.article__body { font-size: 16px; }
.article__body > * + * { margin-top: 1.45em; }
.article__body h2 {
  font-size: clamp(18px, 4.6vw, 21px); line-height: 1.55; font-weight: 700;
  margin-top: 2.8em; padding: 0 0 12px 0; border-bottom: 2px solid var(--color-primary);
}
.article__body h3 {
  font-size: clamp(16px, 4.1vw, 18px); line-height: 1.6; font-weight: 700;
  margin-top: 2.3em; padding-left: 13px; border-left: 4px solid var(--color-bg-tint);
}
.article__body ul, .article__body ol { padding-left: 1.4em; }
.article__body li + li { margin-top: .5em; }
.article__body strong { font-weight: 700; background: linear-gradient(transparent 62%, #dbe9fb 62%); }
.article__body a { text-decoration: underline; }

.callout {
  background: var(--color-bg-alt); border-left: 4px solid var(--color-primary);
  border-radius: 0 var(--radius) var(--radius) 0; padding: 18px 20px; font-size: 14.5px;
}
.callout__title { font-weight: 700; font-size: 14.5px; margin-bottom: 4px; }

.checklist { list-style: none; padding-left: 0; }
.checklist li { position: relative; padding-left: 30px; }
.checklist li::before {
  content: ""; position: absolute; left: 6px; top: .62em;
  width: 11px; height: 6px; border-left: 2.5px solid var(--color-primary);
  border-bottom: 2.5px solid var(--color-primary); transform: rotate(-45deg);
}

.article__body table { width: 100%; font-size: 14.5px; }
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.article__body th, .article__body td {
  border: 1px solid var(--color-border); padding: 10px 12px; text-align: left; vertical-align: top;
}
.article__body th { background: var(--color-bg-alt); font-weight: 700; white-space: nowrap; }

/* 記事末の更新情報 */
.article__foot {
  margin-top: 2.6em; padding-top: 18px; border-top: 1px solid var(--color-border-soft);
  font-size: 12.5px; color: var(--color-text-faint);
}

/* 関連記事 */
.related { margin-top: clamp(34px, 7vw, 48px); }
.related__title { font-size: 16px; font-weight: 700; margin-bottom: 12px; }

/* ---------- 比較表（スマホではカード状に組み替える） ---------- */
.compare { width: 100%; font-size: 14.5px; }
.compare th, .compare td { border: 1px solid var(--color-border); padding: 10px 12px; text-align: left; vertical-align: top; }
.compare thead th { background: var(--color-bg-alt); font-weight: 700; }
.compare tbody th { background: #fff; font-weight: 700; white-space: normal; }
.compare .mark { font-weight: 700; }

@media (max-width: 599px) {
  .compare, .compare thead, .compare tbody, .compare tr, .compare th, .compare td { display: block; width: 100%; }
  .compare thead { display: none; }
  .compare tr {
    border: 1px solid var(--color-border); border-radius: var(--radius);
    padding: 14px 16px; margin-bottom: 12px; background: #fff;
  }
  .compare th, .compare td { border: 0; padding: 0; }
  .compare tbody th {
    font-size: 16px; padding-bottom: 9px; margin-bottom: 8px;
    border-bottom: 1px solid var(--color-border-soft);
  }
  /* 既定は「ラベル / 内容」の2列。
     ◎○△ の記号を含む表だけ .compare--mark を付けて3列にする */
  .compare td {
    display: grid; grid-template-columns: 5.2em 1fr;
    align-items: baseline; gap: 8px; padding: 5px 0;
  }
  .compare--mark td { grid-template-columns: 5.2em 1.8em 1fr; }
  .compare td::before {
    content: attr(data-label);
    font-size: 13px; font-weight: 700; color: var(--color-text-muted);
  }
  .compare td .mark { text-align: center; }
}

/* ---------- 記事内の内部リンクCTA（広告ではない導線） ---------- */
.inline-cta {
  background: var(--color-bg-tint);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  text-align: center;
}
.inline-cta__text { font-size: 14.5px; color: var(--color-text-muted); margin-bottom: 14px; text-align: left; }
.inline-cta__title { font-size: 15px; font-weight: 700; text-align: left; margin-bottom: 10px; }
.inline-cta__list {
  list-style: none; padding-left: 0; margin: 0 0 16px;
  text-align: left; font-size: 14px; line-height: 1.75; color: var(--color-text);
}
.inline-cta__list li { position: relative; padding-left: 23px; }
.inline-cta__list li + li { margin-top: 6px; }
.inline-cta__list li::before {
  content: ""; position: absolute; left: 5px; top: .62em;
  width: 10px; height: 5px;
  border-left: 2.5px solid var(--color-primary); border-bottom: 2.5px solid var(--color-primary);
  transform: rotate(-45deg);
}
.inline-cta .btn { display: block; width: 100%; max-width: 400px; margin-inline: auto; padding: 15px 20px; font-size: 15.5px; }
.inline-cta__note { display: block; font-size: 11.5px; color: var(--color-text-faint); margin-top: 10px; }

/* ---------- 向いている人 / そうでない人 の2カード ---------- */
.fit-grid { display: grid; gap: 14px; margin: 1.4em 0 1em; }
@media (min-width: 700px) { .fit-grid { grid-template-columns: repeat(2, 1fr); } }
.fit-card {
  background: #fff; border: 1px solid var(--color-border);
  border-radius: var(--radius); padding: 18px 18px 16px;
  border-top: 4px solid var(--color-border);
}
.fit-card--yes { border-top-color: var(--color-primary); }
.fit-card--no  { border-top-color: #b9c0c8; }
.fit-card__title { font-size: 15.5px; font-weight: 700; margin-bottom: 10px; line-height: 1.5; }
.fit-card--yes .fit-card__title { color: var(--color-primary-dark); }
.fit-card--no  .fit-card__title { color: var(--color-text-muted); }
.fit-card__list { list-style: none; padding-left: 0; margin: 0; font-size: 14.5px; line-height: 1.75; }
.fit-card__list li { position: relative; padding-left: 22px; }
.fit-card__list li + li { margin-top: 7px; }
.fit-card--yes .fit-card__list li::before {
  content: ""; position: absolute; left: 4px; top: .62em; width: 10px; height: 5px;
  border-left: 2.5px solid var(--color-primary); border-bottom: 2.5px solid var(--color-primary);
  transform: rotate(-45deg);
}
.fit-card--no .fit-card__list li::before {
  content: ""; position: absolute; left: 4px; top: .95em; width: 11px; height: 2px; background: #b9c0c8;
}

/* ---------- 広告バナー（A8.net素材） ---------- */
/* 468×60 等の固定幅バナーがスマホではみ出さないようにする */
.ad-banner { margin: 2.2em 0; text-align: center; }
.ad-banner__label {
  display: block; font-size: 11px; letter-spacing: .06em;
  color: var(--color-text-faint); margin-bottom: 6px;
}
.ad-banner a { display: inline-block; max-width: 100%; line-height: 0; }
.ad-banner img { max-width: 100%; height: auto; display: inline-block; }
/* 1×1 の計測用画像がレイアウトに影響しないようにする */
.ad-banner img[width="1"] { position: absolute; width: 1px; height: 1px; }
.ad-banner { position: relative; }

/* ---------- 出典・確認日の注記 ---------- */
.source-note {
  font-size: 12.5px; color: var(--color-text-faint);
  border-left: 3px solid var(--color-border); padding-left: 12px; line-height: 1.75;
}

/* ---------- 固定ページ（about / privacy / disclosure） ---------- */
.doc { padding-block: 10px clamp(40px, 8vw, 60px); }
.doc__title { font-size: clamp(22px, 5.4vw, 30px); line-height: 1.45; font-weight: 800; margin-bottom: 8px; }
.doc__updated { font-size: 12.5px; color: var(--color-text-faint); margin-bottom: 2em; }
.doc > * + * { margin-top: 1.1em; }
.doc h2 {
  font-size: clamp(17px, 4.3vw, 20px); line-height: 1.55; font-weight: 700;
  margin-top: 2.1em; padding-bottom: 9px; border-bottom: 2px solid var(--color-primary);
}
.doc h3 { font-size: 16px; font-weight: 700; margin-top: 1.7em; }
.doc ul, .doc ol { padding-left: 1.4em; }
.doc li + li { margin-top: .45em; }
.doc table { width: 100%; font-size: 14.5px; }
.doc th, .doc td { border: 1px solid var(--color-border); padding: 11px 13px; text-align: left; vertical-align: top; }
.doc th { background: var(--color-bg-alt); width: 32%; font-weight: 700; }
@media (max-width: 560px) {
  .doc table, .doc tbody, .doc tr, .doc th, .doc td { display: block; width: 100%; }
  .doc tr { border-bottom: 0; }
  .doc th { border-bottom: 0; }
  .doc td { margin-bottom: 10px; }
}

/* ---------- フッター ---------- */
.footer { background: #1c2128; color: #c3c9d1; font-size: 13px; margin-top: 0; }
.footer__inner { padding-block: 32px 26px; }
.footer__brand { font-size: 15px; font-weight: 800; letter-spacing: .06em; color: #fff; margin-bottom: 4px; }
.footer__concept { font-size: 12.5px; color: #9aa2ac; margin-bottom: 20px; }
.footer__nav { display: flex; flex-wrap: wrap; gap: 10px 20px; margin-bottom: 20px; list-style: none; padding: 0; }
.footer__nav a { color: #e2e6ea; text-decoration: none; font-size: 13px; }
.footer__nav a:hover { text-decoration: underline; opacity: 1; }
.footer__note {
  font-size: 11.5px; line-height: 1.85; color: #949ba4;
  border-top: 1px solid #2c333c; padding-top: 16px;
}
.footer__copy { margin-top: 14px; font-size: 11.5px; color: #7d858f; }

/* ---------- 404 ---------- */
.notfound { text-align: center; padding-block: clamp(50px, 12vw, 90px); }
.notfound__code { font-size: 54px; font-weight: 800; color: var(--color-bg-tint); line-height: 1; }
.notfound__title { font-size: clamp(19px, 4.6vw, 24px); font-weight: 700; margin: 10px 0 12px; }
.notfound__text { font-size: 14.5px; color: var(--color-text-muted); margin-bottom: 26px; }

/* ---------- PC ---------- */
@media (min-width: 768px) {
  body { font-size: 16.5px; }
  .article__body { font-size: 17px; }
  .header__nav ul { gap: 20px; font-size: 14px; }
}

/* ---------- 問い合わせフォーム（/contact） ---------- */
.form { margin-top: 1.8em; }
.form__row { margin-bottom: 1.5em; }
.form__label {
  display: block; font-weight: 700; font-size: 14.5px; margin-bottom: 7px;
}
.form__req, .form__opt {
  display: inline-block; font-size: 11.5px; font-weight: 700;
  border-radius: 4px; padding: 1px 7px; margin-left: 6px; vertical-align: 2px;
}
.form__req { background: var(--color-primary); color: #fff; }
.form__opt { background: var(--color-bg-tint); color: var(--color-text-muted); }
.form__input {
  width: 100%; padding: 12px 14px; font-size: 16px; /* 16px 未満だと iOS で拡大されます */
  font-family: inherit; line-height: 1.6; color: var(--color-text);
  background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius);
  -webkit-appearance: none; appearance: none;
}
.form__input:focus-visible {
  outline: 2px solid var(--color-primary); outline-offset: 1px; border-color: var(--color-primary);
}
select.form__input {
  background-image: linear-gradient(45deg, transparent 50%, var(--color-text-muted) 50%),
                    linear-gradient(135deg, var(--color-text-muted) 50%, transparent 50%);
  background-position: calc(100% - 19px) 50%, calc(100% - 14px) 50%;
  background-size: 5px 5px, 5px 5px; background-repeat: no-repeat; padding-right: 38px;
}
.form__textarea { resize: vertical; min-height: 180px; }
.form__help { font-size: 12.5px; color: var(--color-text-faint); margin-top: 6px; }
.form__error { font-size: 13px; color: #b3261e; margin-top: 6px; font-weight: 700; }
/* 自動送信対策の項目。人には見せません */
.form__trap { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form__consent { font-size: 13px; color: var(--color-text-muted); margin: 1.6em 0 1.2em; }
.form__actions { margin: 0; }
.form__actions .btn { width: 100%; max-width: 400px; padding: 15px 20px; font-size: 15.5px; }
.form__actions .btn:disabled { opacity: .5; cursor: not-allowed; }
.form__status {
  margin-top: 1.2em; padding: 13px 15px; border-radius: var(--radius);
  font-size: 14px; font-weight: 700;
}
.form__status.is-sending { background: var(--color-bg-tint); color: var(--color-text-muted); }
.form__status.is-done    { background: #e4f1ea; color: #1e7a52; }
.form__status.is-error   { background: #fbe9e7; color: #b3261e; }

/* ---------- 楽天の商品リンク（楽天ツール発行のカードを並べる） ----------
   カードの表組み・画像・リンク・1×1計測imgは発行されたまま使います。
   ここでは並べ方と、計測imgがレイアウトに影響しないようにする指定だけを行います。 */
.rk-items { margin: 1.6em 0 .6em; }
.rk-items__label {
  display: block; text-align: center; font-size: 11px; letter-spacing: .06em;
  color: var(--color-text-faint); margin-bottom: 8px;
}
.rk-items__list {
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: center;
  /* カード（約165px）を2枚ずつ並べる。PCでも4枚が「3＋1」に割れないようにする */
  max-width: 360px; margin-inline: auto;
}
.rk-item { position: relative; }
.rk-item table { margin: 0; background: #fff; }
.rk-item a { text-decoration: none; }
.rk-item img[width="1"] { position: absolute; width: 1px; height: 1px; }
