@charset "UTF-8";

/* =========================================================
   NPO法人居酒屋甲子園「令和8年熊本地震」支援金サイト
   白地 / 墨黒 / 朱赤 の和モダン。装飾は最小限、可読性を最優先。
   ========================================================= */

:root {
  --ink:      #1a1a1a;
  --ink-mid:  #4a4a4a;
  --ink-sub:  #6e6e6e;
  --accent:   #c1272d;
  --accent-d: #9e1b20;
  --tint:     #f4f4f2;
  --tint-red: #fbeceb;
  --line:     #dadada;
  --line-soft:#e8e8e6;
  --bg:       #ffffff;

  --wrap: 760px;
  --radius: 0;

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

*, *::before, *::after { box-sizing: border-box; }

html {
  color-scheme: light;
  scroll-behavior: smooth;
  scroll-padding-top: 72px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.9;
  font-feature-settings: "palt" 1;
  text-underline-offset: .2em;
}

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

h1, h2, h3, p, dl, dd, ol, ul, figure { margin: 0; }
ol, ul { padding: 0; list-style: none; }

a { color: var(--accent-d); }

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: 22px;
}

/* ---------- skip link ---------- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--ink);
  color: #fff;
  padding: 10px 16px;
  text-decoration: none;
}
.skip-link:focus { left: 0; }

:where(a, button):focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: #fff;
  border-bottom: 1px solid var(--line-soft);
}
.site-header__inner {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 60px;
  padding-block: 8px;
}
.site-header__brand { display: block; line-height: 0; }
.site-header__brand img { width: 132px; }
.site-header__label {
  font-size: 11px;
  letter-spacing: .12em;
  color: var(--ink-sub);
  border-left: 1px solid var(--line);
  padding-left: 14px;
  line-height: 1.4;
}
.site-header__link {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
  padding: 6px 2px;
}
.site-header__link:hover { color: var(--accent-d); }
.site-header__link-arrow { font-size: 11px; color: var(--ink-sub); }
.site-header__link:hover .site-header__link-arrow { color: var(--accent-d); }

@media (max-width: 360px) {
  .site-header__label { display: none; }
}

/* ---------- hero ---------- */
.hero {
  padding-block: clamp(40px, 9vw, 76px) clamp(32px, 7vw, 56px);
  border-bottom: 1px solid var(--line-soft);
}
.hero__eyebrow {
  font-size: 12px;
  letter-spacing: .14em;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 18px;
}
.hero__title {
  font-size: clamp(28px, 7.2vw, 44px);
  line-height: 1.42;
  font-weight: 700;
  letter-spacing: .01em;
  margin-bottom: 26px;
}
.hero__lead {
  font-size: clamp(15px, 3.6vw, 16.5px);
  color: var(--ink-mid);
  margin-bottom: 16px;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.hero__note {
  margin-top: 20px;
  font-size: 12.5px;
  color: var(--ink-sub);
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 28px;
  border-radius: var(--radius);
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: background-color .18s ease, color .18s ease, border-color .18s ease;
}
.btn--primary {
  background: var(--accent);
  color: #fff;
}
.btn--primary:hover { background: var(--accent-d); }
.btn--ghost {
  border: 1px solid var(--line);
  color: var(--ink);
  background: #fff;
}
.btn--ghost:hover { border-color: var(--ink); }

/* ---------- section ---------- */
.section { padding-block: clamp(44px, 9vw, 72px); }
.section--tint { background: var(--tint); }

.section__head {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 22px;
}
.section__num {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: .06em;
  font-variant-numeric: tabular-nums;
}
.section__title {
  font-size: clamp(20px, 4.8vw, 25px);
  font-weight: 700;
  line-height: 1.5;
}
.section__lead {
  color: var(--ink-mid);
  font-size: 15px;
  margin-bottom: 20px;
}

.prose p { margin-bottom: 16px; color: var(--ink-mid); }
.prose p:last-child { margin-bottom: 0; }
.prose b { color: var(--ink); }

/* ---------- fact list ---------- */
.factlist {
  margin-top: 28px;
  border-top: 1px solid var(--line);
}
.factlist__row {
  display: grid;
  grid-template-columns: 116px 1fr;
  gap: 8px 16px;
  padding-block: 14px;
  border-bottom: 1px solid var(--line);
}
.factlist dt {
  font-size: 13.5px;
  color: var(--ink-sub);
  font-weight: 700;
  line-height: 1.7;
  padding-top: 2px;
}
.factlist dd { font-size: 15.5px; line-height: 1.7; }
.shindo {
  color: var(--accent);
  font-weight: 700;
  font-size: 17px;
}

/* ---------- bank ---------- */
.bank {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(20px, 5vw, 32px);
}
.bank__list { border-top: 1px solid var(--line-soft); }
.bank__row {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 6px 16px;
  align-items: center;
  padding-block: 15px;
  border-bottom: 1px solid var(--line-soft);
}
.bank__label {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-sub);
}
.bank__value {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
}
.bank__text {
  font-size: clamp(16px, 4vw, 18px);
  font-weight: 700;
  line-height: 1.6;
}
.bank__row--main { background: var(--tint-red); }
.bank__row--main .bank__label { color: var(--accent-d); }
.bank__num {
  font-size: clamp(26px, 8vw, 34px);
  font-weight: 700;
  letter-spacing: .1em;
  line-height: 1.3;
  font-variant-numeric: tabular-nums;
  color: var(--accent-d);
}
.bank__row--main {
  margin-inline: calc(clamp(20px, 5vw, 32px) * -1);
  padding-inline: clamp(20px, 5vw, 32px);
  border-bottom: none;
}

.copy {
  appearance: none;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font-family: inherit;
  font-size: 12.5px;
  font-weight: 700;
  line-height: 1;
  padding: 9px 14px;
  cursor: pointer;
  transition: border-color .18s ease, color .18s ease;
}
.copy:hover { border-color: var(--ink); }
.copy[data-done="true"] {
  border-color: var(--accent);
  color: var(--accent);
}
.copy-status {
  min-height: 22px;
  margin-top: 12px;
  font-size: 13px;
  color: var(--accent-d);
  font-weight: 700;
}

/* ---------- callout ---------- */
.callout {
  margin-top: 26px;
  background: var(--tint);
  border-radius: var(--radius);
  padding: clamp(18px, 4.5vw, 26px);
}
.callout--accent { background: var(--tint-red); }
.callout__title {
  font-size: 15.5px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--ink);
}
.callout--accent .callout__title { color: var(--accent-d); }
.callout p + p { margin-top: 12px; }
.callout p:not(.callout__title) {
  font-size: 14.5px;
  color: var(--ink-mid);
}
.callout b { color: var(--ink); }

/* ---------- notes ---------- */
.notes { margin-top: 22px; }
.notes li {
  position: relative;
  padding-left: 1.3em;
  font-size: 13.5px;
  color: var(--ink-sub);
  line-height: 1.85;
}
.notes li::before {
  content: "※";
  position: absolute;
  left: 0;
}
.notes--plain {
  font-size: 13px;
  color: var(--ink-sub);
  margin-top: 16px;
}

/* ---------- periods ---------- */
.periods {
  display: grid;
  gap: 10px;
  counter-reset: p;
}
.period {
  display: grid;
  grid-template-columns: 74px 1fr auto;
  align-items: center;
  gap: 10px 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 18px;
}
.period__no {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ink-sub);
}
.period__date {
  font-size: clamp(14.5px, 3.8vw, 16px);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.period__state {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .06em;
  padding: 4px 10px;
  white-space: nowrap;
}
.period[data-state="current"] {
  border-color: var(--accent);
  background: var(--tint-red);
}
.period[data-state="current"] .period__no { color: var(--accent-d); }
.period[data-state="current"] .period__state {
  background: var(--accent);
  color: #fff;
}
.period[data-state="closed"] { opacity: .58; }
.period[data-state="closed"] .period__state {
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink-sub);
}
.period[data-state="upcoming"] .period__state {
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink-sub);
}

/* ---------- usage cards ---------- */
.usecards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 24px;
}
.usecard {
  background: var(--tint);
  border-radius: var(--radius);
  padding: 18px 16px 20px;
  font-size: 14.5px;
  font-weight: 700;
  line-height: 1.75;
}
.usecard::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  background: var(--accent);
  margin-bottom: 12px;
}

/* 4カラム → 2カラム2段（タブレット以下） */
@media (max-width: 700px) {
  .usecards { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- 小見出し ---------- */
.subhead {
  margin-top: 40px;
  margin-bottom: 10px;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.6;
}

/* ---------- link cards ---------- */
.links {
  display: grid;
  gap: 10px;
}
.links--tight { margin-top: 12px; }
.linkcard {
  display: grid;
  gap: 2px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 17px 20px;
  text-decoration: none;
  color: var(--ink);
  transition: border-color .18s ease, background-color .18s ease;
}
.linkcard:hover {
  border-color: var(--accent);
  background: var(--tint-red);
}
.linkcard__title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
}
.linkcard__desc { font-size: 13.5px; color: var(--ink-mid); }
.linkcard__host {
  font-size: 11.5px;
  color: var(--ink-sub);
  letter-spacing: .04em;
  margin-top: 4px;
}

/* ---------- 店舗での募金活動（3ステップ＋ダウンロード） ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 26px;
}
.step {
  display: grid;
  gap: 10px;
  background: #fff;
  border: 1px solid var(--line);
  padding: 18px 18px 20px;
}
.step__no {
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.step__text {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.75;
}

.labels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 4px;
}
.label {
  display: grid;
  gap: 4px;
  background: #fff;
  border: 1px solid var(--line);
  padding: 15px 16px 17px;
}
.label__name {
  font-size: 15px;
  font-weight: 700;
  color: var(--accent-d);
  line-height: 1.5;
}
.label__desc {
  font-size: 12.5px;
  color: var(--ink-mid);
  line-height: 1.75;
}
@media (max-width: 640px) {
  .labels { grid-template-columns: 1fr; }
}

.download {
  margin-top: 26px;
  text-align: center;
}
.download .btn {
  width: 100%;
  max-width: 420px;
  min-height: 60px;
}
.download__note {
  margin-top: 10px;
  text-align: center;
  font-size: 12.5px;
  color: var(--ink-sub);
}

@media (max-width: 640px) {
  .steps { grid-template-columns: 1fr; }
  .step {
    grid-template-columns: auto 1fr;
    align-items: center;
    padding: 14px 16px;
  }
}

/* ---------- 災害情報カテゴリ ---------- */
.infocat { margin-top: 38px; }
.infocat:first-of-type { margin-top: 26px; }
.infocat__title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--ink);
}
.infocat__no {
  flex: none;
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #fff;
  font-size: 13px;
  font-variant-numeric: tabular-nums;
}
.infocat__lead {
  margin-top: 12px;
  font-size: 13.5px;
  color: var(--ink-sub);
  line-height: 1.8;
}
.infocat__kind {
  margin-top: 20px;
  margin-bottom: 8px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--ink-sub);
}

/* ---------- SNSアカウント ---------- */
.accounts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.account {
  display: grid;
  gap: 2px;
  background: #fff;
  border: 1px solid var(--line);
  padding: 15px 18px;
  height: 100%;
  text-decoration: none;
  color: var(--ink);
  transition: border-color .18s ease, background-color .18s ease;
}
.account:hover {
  border-color: var(--accent);
  background: var(--tint-red);
}
.account__name {
  font-size: 14.5px;
  font-weight: 700;
  line-height: 1.6;
}
.account__id {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--accent-d);
  letter-spacing: .02em;
}
.account__desc {
  font-size: 12.5px;
  color: var(--ink-mid);
  line-height: 1.75;
  margin-top: 2px;
}
@media (max-width: 640px) {
  .accounts { grid-template-columns: 1fr; }
}

/* ---------- 支援金と義援金の比較 ---------- */
.compare {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 6px;
}
.compare__item {
  border: 1px solid var(--line);
  background: #fff;
  padding: 22px 22px 24px;
}
.compare__item--main {
  border: 2px solid var(--accent);
  background: var(--tint-red);
  padding: 21px 21px 23px;
}
.compare__tag {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .04em;
  color: #fff;
  background: var(--accent);
  padding: 4px 10px;
  margin-bottom: 14px;
}
.compare__tag--plain {
  background: var(--tint);
  color: var(--ink-sub);
}
.compare__term {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.35;
}
.compare__lead {
  margin-top: 4px;
  font-size: 15.5px;
  font-weight: 700;
  line-height: 1.7;
  color: var(--ink);
}
.compare__item--main .compare__lead { color: var(--accent-d); }

/* お金の流れ */
.compare__flow {
  display: grid;
  justify-items: start;
  gap: 3px;
  margin-top: 16px;
}
.compare__node {
  font-size: 12.5px;
  font-weight: 700;
  line-height: 1.5;
  padding: 7px 11px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink-mid);
}
.compare__item--main .compare__node { border-color: #eccfce; }
.compare__node--us {
  border-color: var(--accent);
  color: var(--accent-d);
}
.compare__arrow {
  font-size: 13px;
  color: var(--ink-sub);
  line-height: 1;
  padding-left: 14px;
}
.compare__desc {
  margin-top: 14px;
  font-size: 13.5px;
  line-height: 1.85;
  color: var(--ink-mid);
}
@media (max-width: 700px) {
  .compare { grid-template-columns: 1fr; }
  .compare__term { font-size: 21px; }
}

/* ---------- FAQ（アコーディオン） ---------- */
.faq { border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 18px 0;
  font-size: 15.5px;
  font-weight: 700;
  line-height: 1.7;
  cursor: pointer;
  list-style: none;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q::before {
  content: "Q";
  flex: none;
  color: var(--accent);
  font-size: 15px;
  line-height: 1.7;
}
.faq__q::after {
  content: "";
  flex: none;
  width: 11px;
  height: 11px;
  margin-left: auto;
  margin-top: .5em;
  border-right: 2px solid var(--ink-sub);
  border-bottom: 2px solid var(--ink-sub);
  transform: rotate(45deg);
  transition: transform .2s ease;
}
.faq__item[open] .faq__q::after {
  transform: rotate(-135deg);
  border-color: var(--accent);
}
.faq__q:hover { color: var(--accent-d); }
.faq__item[open] { background: var(--tint); }
.faq__item[open] .faq__q,
.faq__item[open] .faq__a { padding-inline: 18px; }
.faq__item[open] .faq__q { color: var(--accent-d); }
.faq__a {
  display: flex;
  gap: 12px;
  padding: 0 0 20px;
}
.faq__a::before {
  content: "A";
  flex: none;
  color: var(--ink-sub);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.85;
}
.faq__a p {
  font-size: 14.5px;
  line-height: 1.9;
  color: var(--ink-mid);
}

/* ---------- 更新履歴 ---------- */
.history {
  display: grid;
  border-top: 1px solid var(--line);
}
.history li {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 4px 16px;
  padding-block: 15px;
  border-bottom: 1px solid var(--line);
}
.history__date {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ink-sub);
  font-variant-numeric: tabular-nums;
}
.history__text {
  font-size: 15px;
  line-height: 1.8;
}
@media (max-width: 560px) {
  .history li { grid-template-columns: 1fr; }
}

/* ---------- 171 dial ---------- */
.dial {
  margin-top: 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(20px, 5vw, 30px);
}
.dial__head {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line-soft);
}
.dial__num {
  font-size: clamp(38px, 11vw, 52px);
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  letter-spacing: .04em;
  font-variant-numeric: tabular-nums;
}
.dial__caption {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-sub);
}
.dial__steps {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}
.dial__steps li {
  display: grid;
  gap: 4px;
  background: var(--tint);
  padding: 14px 16px;
}
.dial__step { font-size: 13px; font-weight: 700; color: var(--ink-sub); }
.dial__code {
  font-size: clamp(17px, 4.6vw, 20px);
  font-weight: 700;
  letter-spacing: .04em;
  font-variant-numeric: tabular-nums;
}
.dial__note {
  margin-top: 16px;
  font-size: 13px;
  color: var(--ink-sub);
}

/* ---------- closing ---------- */
.closing {
  border-top: 1px solid var(--line-soft);
  padding-block: clamp(48px, 10vw, 80px);
  text-align: center;
}
.closing__text {
  font-size: clamp(17px, 4.4vw, 21px);
  font-weight: 700;
  line-height: 1.9;
}
.closing__org {
  margin-top: 18px;
  font-size: 13.5px;
  color: var(--ink-sub);
  line-height: 2;
}
.closing .btn { margin-top: 28px; }

/* ---------- footer ---------- */
.site-footer {
  background: var(--tint);
  padding-block: 44px;
}
.site-footer__inner { text-align: center; }
.site-footer__logo {
  width: clamp(200px, 46vw, 260px);
  margin-bottom: 14px;
}
.site-footer__org {
  font-size: 14px;
  font-weight: 700;
}
.site-footer__org a { color: inherit; text-decoration: none; }
.site-footer__org a:hover { color: var(--accent-d); }

/* フッター：お問い合わせ */
.fcontact {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.fcontact__label {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--ink-sub);
}
.fcontact__tel {
  margin-top: 6px;
  font-size: clamp(24px, 6vw, 30px);
  font-weight: 700;
  letter-spacing: .02em;
  line-height: 1.3;
  font-variant-numeric: tabular-nums;
}
.fcontact__tel a {
  color: var(--ink);
  text-decoration: none;
}
.fcontact__tel a:hover { color: var(--accent-d); }
.fcontact__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 6px 16px;
  margin-top: 8px;
}
.fcontact__links a {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--accent-d);
  text-decoration: none;
}
.fcontact__links a:hover { text-decoration: underline; }
.fcontact__links a + a {
  border-left: 1px solid var(--line);
  padding-left: 16px;
}

/* フッター：法人情報 */
.site-footer__legal {
  margin-top: 24px;
  font-size: 12px;
  color: var(--ink-sub);
  line-height: 2.1;
}

.site-footer__back { margin-top: 26px; }
.site-footer__back .btn { min-height: 48px; font-size: 14.5px; }

.callout__link {
  margin-top: 14px;
  font-size: 14px;
  font-weight: 700;
}

.site-footer__note {
  margin-top: 14px;
  font-size: 12.5px;
  color: var(--ink-sub);
  line-height: 2;
}
.site-footer__copy {
  margin-top: 20px;
  font-size: 11.5px;
  color: var(--ink-sub);
  letter-spacing: .04em;
}

/* ---------- sticky bar (mobile) ---------- */
.stickybar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 45;
  background: #fff;
  border-top: 1px solid var(--line);
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  transform: translateY(110%);
  transition: transform .24s ease;
}
.stickybar[data-show="true"] { transform: translateY(0); }
.stickybar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  max-width: var(--wrap);
  margin-inline: auto;
}
.stickybar__label {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-sub);
}
.stickybar__btn {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 22px;
  background: var(--accent);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .stickybar { display: none; }
}

/* ---------- responsive ---------- */
@media (max-width: 560px) {
  .factlist__row { grid-template-columns: 1fr; gap: 2px; }
  .bank__row { grid-template-columns: 1fr; align-items: flex-start; }
  .period { grid-template-columns: 1fr auto; }
  .period__no { grid-column: 1; }
  .period__date { grid-column: 1 / -1; }
  .period__state { grid-row: 1; grid-column: 2; }
  .hero__actions .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition-duration: .01ms !important; }
}

/* ---------- print（口座情報の印刷用） ---------- */
@media print {
  .site-header, .stickybar, .hero__actions, .closing .btn, .copy { display: none !important; }
  body { font-size: 11pt; line-height: 1.7; }
  .section, .hero { padding-block: 14pt; }
  .section--tint, .callout, .usecard, .dial__steps li { background: #fff !important; }
  .bank, .period, .linkcard, .dial { border: 1px solid #999; }
  .bank__row--main { background: #fff !important; }
  a[target="_blank"]::after { content: " (" attr(href) ")"; font-size: 9pt; }
}
