/* ================================================
   components.css — 共通コンポーネント
   シニアニコニコサポートセンター
================================================ */

/* ══════════════════════════════
   ボタン
══════════════════════════════ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-weight: 800;
  letter-spacing: .3px;
  transition: background .15s, transform .1s;
}
.btn i { font-size: 18px; }

/* 白背景上のメインCTA */
.btn-solid {
  background: var(--g700);
  color: #fff;
  padding: 14px 22px;
  font-size: 14px;
  box-shadow: var(--shadow-btn);
}
.btn-solid i { color: #fff; }
.btn-solid:hover { background: var(--g800); transform: translateY(-1px); }
.btn-solid:active { transform: scale(.98); }
.btn-solid.w100 { width: 100%; font-size: 15px; padding: 15px 24px; }

/* ダーク背景上のCTA */
.btn-on-dark {
  background: var(--g400);
  color: var(--g900);
  padding: 14px 22px;
  font-size: 14px;
}
.btn-on-dark i { color: var(--g900); }
.btn-on-dark:hover { background: var(--g200); transform: translateY(-1px); }
.btn-on-dark:active { transform: scale(.98); }
.btn-on-dark.w100 { width: 100%; font-size: 15px; padding: 15px 24px; }

/* ヘッダー用ミニ */
.btn-mini {
  background: var(--g700);
  color: #fff;
  padding: 8px 14px;
  font-size: 11px;
  box-shadow: 0 2px 8px rgba(26,122,60,.35);
}
.btn-mini i { font-size: 14px; color: #fff; }
.btn-mini:hover { background: var(--g800); }

/* 固定ボタン */
.fixed-btn {
  position: fixed;
  bottom: 18px;
  right: 14px;
  z-index: 200;
  background: var(--g700);
  color: #fff;
  border: none;
  border-radius: var(--radius-pill);
  padding: 12px 18px;
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-weight: 800;
  font-size: 13px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: var(--shadow-fixed);
  animation: float-pulse 2.5s ease-in-out infinite;
}
.fixed-btn i { font-size: 17px; color: #fff; }

/* ══════════════════════════════
   ヘッダー
══════════════════════════════ */

.hd {
  background: var(--n0);
  border-bottom: 1px solid var(--n100);
  padding: 10px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo { display: flex; align-items: center; gap: 9px; }

.logo-mark {
  width: 34px;
  height: 34px;
  background: var(--g500);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-mark svg { width: 20px; height: 20px; }

.logo-text {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-weight: 900;
  font-size: 14px;
  color: var(--n800);
  line-height: 1.2;
}
.logo-text small {
  display: block;
  font-size: 9px;
  color: var(--n400);
  font-weight: 400;
}

/* ── ヘッダー右側（LINEボタン + ハンバーガー）── */
.hd-right { display: flex; align-items: center; gap: 8px; }
.hd-menu {
  width: 34px; height: 34px;
  background: var(--n50);
  border: 1px solid var(--n100);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: var(--n800);
  transition: background .15s, border-color .15s, color .15s;
}
.hd-menu:hover { background: var(--g50); border-color: var(--g100); color: var(--g700); }
.hd-menu i { font-size: 20px; }

/* ══════════════════════════════
   スライドメニュー（ドロワー）
══════════════════════════════ */

.drawer-overlay {
  position: fixed; inset: 0;
  background: rgba(13,77,36,.4);
  opacity: 0; visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
  z-index: 300;
}
.drawer-overlay.open { opacity: 1; visibility: visible; }

.drawer {
  position: fixed; top: 0; right: 0;
  height: 100%;
  width: 82%; max-width: 320px;
  background: var(--n0);
  box-shadow: -8px 0 32px rgba(0,0,0,.16);
  transform: translateX(100%);
  transition: transform .28s cubic-bezier(.4,0,.2,1);
  z-index: 310;
  display: flex; flex-direction: column;
  overflow-y: auto;
}
.drawer.open { transform: translateX(0); }

.drawer-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 18px;
  border-bottom: 1px solid var(--n100);
  position: sticky; top: 0; background: var(--n0);
}
.drawer-ttl {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-weight: 800; font-size: 12px;
  letter-spacing: 2px; color: var(--n800); text-transform: uppercase;
}
.drawer-close {
  width: 32px; height: 32px;
  background: var(--n50); border: 1px solid var(--n100);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--n600);
  transition: background .15s, color .15s;
}
.drawer-close:hover { background: var(--g50); color: var(--g700); }
.drawer-close i { font-size: 18px; }

.drawer-nav { padding: 6px 0; flex: 1; }
.drawer-nav a {
  display: flex; align-items: center; gap: 12px;
  padding: 13px 20px;
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-weight: 700; font-size: 13px;
  color: var(--n800);
  border-bottom: 1px solid var(--n50);
}
.drawer-nav a:hover { background: var(--g50); color: var(--g700); text-decoration: none; }
.drawer-nav a i { font-size: 18px; color: var(--g700); width: 20px; text-align: center; flex-shrink: 0; }

.drawer-cta { padding: 16px 20px; border-top: 1px solid var(--n100); }

/* メニュー開放時は背面スクロールを止める */
body.drawer-open { overflow: hidden; }

/* ══════════════════════════════
   ページヒーロー（下層ページ共通）
══════════════════════════════ */

.page-hero {
  background: var(--g800);
  padding: 32px 20px 28px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  background: rgba(6,199,85,.08);
  border-radius: 50%;
}
.page-hero-noise {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 18px 18px;
  pointer-events: none;
}
.page-hero-back {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: rgba(255,255,255,.5);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
  text-decoration: none;
}
.page-hero-back i { font-size: 13px; }
.page-hero-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--g200);
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}
.page-hero h1 {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-weight: 900;
  font-size: 21px;
  color: #fff;
  line-height: 1.45;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}
.page-hero-sub {
  font-size: 12px;
  color: rgba(255,255,255,.68);
  line-height: 1.85;
  position: relative;
  z-index: 1;
}

/* ══════════════════════════════
   ボトムCTA（全ページ共通）
══════════════════════════════ */

.btm-cta {
  background: var(--g900);
  margin: 0 18px 24px;
  border-radius: var(--radius-lg);
  padding: 26px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.btm-cta::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 180px; height: 180px;
  background: rgba(6,199,85,.07);
  border-radius: 50%;
}
.btm-cta h2 {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-weight: 900;
  font-size: 17px;
  color: #fff;
  line-height: 1.45;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}
.btm-cta-sub {
  font-size: 11px;
  color: rgba(255,255,255,.55);
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}
.btm-actions { position: relative; z-index: 1; }
.tel {
  font-size: 11px;
  color: rgba(255,255,255,.45);
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  position: relative;
  z-index: 1;
}
.tel i { font-size: 13px; color: var(--g400); }

/* ══════════════════════════════
   フッター
══════════════════════════════ */

.footer {
  padding: 20px 18px;
  font-size: 10px;
  color: var(--n400);
  border-top: 1px solid var(--n100);
  text-align: center;
  line-height: 2.1;
}
.footer a { color: var(--g700); text-decoration: none; }
.footer a:hover { text-decoration: underline; }
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 7px 14px;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--n100);
}
.footer-nav a {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--g700);
}

/* セクション末尾の遷移ボタン（共通） */
.sec-more { text-align: center; margin-top: 18px; }

/* ══════════════════════════════
   カード共通
══════════════════════════════ */

.card {
  background: var(--n0);
  border: 1px solid var(--n100);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}

/* ══════════════════════════════
   バッジ・タグ
══════════════════════════════ */

.badge {
  display: inline-block;
  background: var(--g50);
  color: var(--g700);
  border: 1px solid var(--g100);
  border-radius: var(--radius-pill);
  padding: 2px 9px;
  font-size: 9px;
  font-weight: 700;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--g50);
  color: var(--g700);
  border: 1px solid var(--g100);
  border-radius: var(--radius-pill);
  padding: 3px 9px;
  font-size: 10px;
  font-weight: 700;
}
.chip i { font-size: 11px; }

/* ══════════════════════════════
   FAQ
══════════════════════════════ */

.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  background: var(--n0);
  border: 1px solid var(--n100);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.faq-q {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 13px 15px;
  cursor: pointer;
}
.faq-qb {
  width: 21px; height: 21px;
  background: var(--g700);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-weight: 900;
  font-size: 11px;
  color: #fff;
  flex-shrink: 0;
  margin-top: 1px;
}
.faq-qt { font-size: 12px; font-weight: 700; color: var(--n800); line-height: 1.5; }
.faq-a {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 15px 13px;
  background: var(--g50);
  border-top: 1px solid var(--g100);
}
.faq-ab {
  width: 21px; height: 21px;
  background: var(--g400);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-weight: 900;
  font-size: 11px;
  color: #fff;
  flex-shrink: 0;
  margin-top: 1px;
}
.faq-at { font-size: 12px; color: var(--n600); line-height: 1.7; }

/* ══════════════════════════════
   フロー・ステップ
══════════════════════════════ */

.flow-wrap {
  background: var(--g800);
  margin: 0 18px 28px;
  border-radius: var(--radius-lg);
  padding: 22px 18px;
}
.flow-eyebrow {
  display: flex; align-items: center; gap: 7px;
  font-size: 10px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--g200); margin-bottom: 7px;
}
.flow-eyebrow::before { content: ''; width: 14px; height: 2px; background: var(--g400); border-radius: 2px; }
.flow-ttl { font-family: 'M PLUS Rounded 1c', sans-serif; font-weight: 800; font-size: 16px; color: #fff; margin-bottom: 18px; }
.steps { display: flex; flex-direction: column; }
.step { display: flex; gap: 14px; position: relative; }
.step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 19px; top: 40px;
  width: 2px; height: calc(100% + 2px);
  background: rgba(255,255,255,.1);
}
.step-dot {
  width: 40px; height: 40px;
  background: var(--g700);
  border: 2px solid var(--g400);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  position: relative; z-index: 1;
}
.step-dot i { font-size: 18px; color: #fff; }
.step-body { padding-bottom: 20px; flex: 1; }
.step:last-child .step-body { padding-bottom: 0; }
.step-n { font-size: 9px; font-weight: 700; color: var(--g200); letter-spacing: 1px; text-transform: uppercase; }
.step-ttl { font-family: 'M PLUS Rounded 1c', sans-serif; font-weight: 800; font-size: 13px; color: #fff; margin-bottom: 3px; }
.step-desc { font-size: 11px; color: rgba(255,255,255,.55); line-height: 1.65; }
.step-chip {
  display: inline-flex; align-items: center; gap: 4px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-pill);
  padding: 3px 9px; font-size: 10px; font-weight: 700; color: var(--g200); margin-top: 6px;
}
.step-chip i { font-size: 11px; }

/* ══════════════════════════════
   お客様の声
══════════════════════════════ */

.voice-list { display: flex; flex-direction: column; gap: 12px; }
.voice-card {
  background: var(--n0);
  border: 1px solid var(--n100);
  border-radius: var(--radius-md);
  padding: 16px;
}
.voice-top { display: flex; align-items: flex-start; gap: 11px; margin-bottom: 10px; }
.av { width: 46px; height: 46px; border-radius: 50%; overflow: hidden; flex-shrink: 0; }
.av svg { width: 46px; height: 46px; }
.v-name { font-size: 12px; font-weight: 700; color: var(--n800); }
.v-attr { font-size: 10px; color: var(--n400); }
.stars { display: flex; gap: 1px; margin: 4px 0 0; }
.stars i { font-size: 12px; color: var(--g500); }
.v-body { font-size: 12px; color: var(--n600); line-height: 1.75; margin-bottom: 8px; }
.v-badge {
  display: inline-flex; align-items: center; gap: 4px;
  background: var(--g50); color: var(--g700);
  border: 1px solid var(--g100);
  border-radius: var(--radius-pill);
  padding: 2px 9px; font-size: 10px; font-weight: 700;
}
.v-badge i { font-size: 11px; }

/* ══════════════════════════════
   トラストバー
══════════════════════════════ */

.trust {
  background: var(--n0);
  border-bottom: 1px solid var(--n100);
  padding: 14px 18px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  background: var(--n50); border: 1px solid var(--n100);
  border-radius: var(--radius-md); padding: 10px 12px;
}
.trust-ic {
  width: 34px; height: 34px;
  background: var(--g50); border-radius: 9px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.trust-ic i { font-size: 19px; color: var(--g700); }
.trust-num { font-family: 'M PLUS Rounded 1c', sans-serif; font-weight: 900; font-size: 18px; color: var(--g700); line-height: 1; }
.trust-lbl { font-size: 9px; color: var(--n400); margin-top: 2px; line-height: 1.3; }

/* ══════════════════════════════
   情報ボックス
══════════════════════════════ */

.info-box {
  background: var(--g50);
  border: 1px solid var(--g100);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  margin: 10px 0;
}
.info-box-ttl {
  font-size: 11px; font-weight: 700; color: var(--g700);
  margin-bottom: 5px; display: flex; align-items: center; gap: 5px;
}
.info-box-ttl i { font-size: 14px; }
.info-box-body { font-size: 11px; color: var(--g700); line-height: 1.75; }

.warn-box {
  background: #FFFBF0;
  border: 1px solid #F5E0A0;
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  margin: 10px 0;
}
.warn-box-ttl {
  font-size: 11px; font-weight: 700; color: #7A5A00;
  margin-bottom: 5px; display: flex; align-items: center; gap: 5px;
}
.warn-box-ttl i { font-size: 14px; color: #B8860B; }
.warn-box-body { font-size: 11px; color: #6A4E00; line-height: 1.75; }

/* ══════════════════════════════
   テーブル
══════════════════════════════ */

.art-table { width: 100%; border-collapse: collapse; font-size: 11px; margin: 10px 0; }
.art-table th { background: var(--g700); color: #fff; padding: 8px 12px; text-align: left; font-weight: 700; }
.art-table td { padding: 9px 12px; border-bottom: 1px solid var(--n100); color: var(--n600); vertical-align: top; line-height: 1.65; }
.art-table tr:last-child td { border-bottom: none; }
.art-table tr:nth-child(even) td { background: var(--n50); }

/* ══════════════════════════════
   カテゴリ／タブナビ（横スクロール・複数ページ共通）
   faq / facility-types / area / partner で使用。
   main.js が .cat-btn / .type-btn / .area-btn / .target-btn をトグル。
══════════════════════════════ */

.cat-nav, .type-nav, .area-nav, .target-nav {
  display: flex;
  gap: 8px;
  padding: 12px 18px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  background: var(--n0);
  border-bottom: 1px solid var(--n100);
  position: sticky;
  top: 55px;
  z-index: 90;
}
.cat-nav::-webkit-scrollbar,
.type-nav::-webkit-scrollbar,
.area-nav::-webkit-scrollbar,
.target-nav::-webkit-scrollbar { display: none; }

.cat-btn, .type-btn, .area-btn, .target-btn {
  flex-shrink: 0;
  background: var(--n50);
  border: 1px solid var(--n100);
  color: var(--n600);
  border-radius: var(--radius-pill);
  padding: 7px 14px;
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-weight: 700;
  font-size: 11px;
  cursor: pointer;
  white-space: nowrap;
  transition: background .15s, color .15s, border-color .15s;
}
.cat-btn:hover, .type-btn:hover, .area-btn:hover, .target-btn:hover {
  background: var(--g50);
  border-color: var(--g100);
  color: var(--g700);
}
.cat-btn.active, .type-btn.active, .area-btn.active, .target-btn.active {
  background: var(--g700);
  border-color: var(--g700);
  color: #fff;
}

/* ══════════════════════════════
   料金カード（¥0・index / service / facility 共通）
══════════════════════════════ */

.price-card {
  background: var(--n0);
  border: 1px solid var(--g100);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 24px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.price-badge {
  display: inline-block;
  background: var(--g50);
  color: var(--g700);
  border: 1px solid var(--g100);
  border-radius: var(--radius-pill);
  padding: 3px 12px;
  font-size: 10px;
  font-weight: 700;
  margin-bottom: 12px;
}
.price-num {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-weight: 900;
  color: var(--g700);
  line-height: 1;
  margin-bottom: 8px;
}
.price-num .yen { font-size: 30px; vertical-align: 14px; margin-right: 2px; }
.price-num .zero { font-size: 72px; letter-spacing: -2px; }
.price-lead {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-weight: 800;
  font-size: 15px;
  color: var(--n800);
  margin-bottom: 6px;
}
.price-desc {
  font-size: 11.5px;
  color: var(--n600);
  line-height: 1.8;
  margin-bottom: 16px;
}
.price-points {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
  margin-bottom: 18px;
}
.price-points li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  font-weight: 500;
  color: var(--n600);
}
.price-points i { font-size: 18px; color: var(--g600); flex-shrink: 0; }

/* ══════════════════════════════
   ダークバナー（病院・ケアマネ向け等・g800）
══════════════════════════════ */

.dark-banner {
  background: var(--g800);
  margin: 0 18px;
  border-radius: var(--radius-lg);
  padding: 22px 20px;
  position: relative;
  overflow: hidden;
}
.dark-banner::before {
  content: '';
  position: absolute;
  top: -50px; right: -50px;
  width: 170px; height: 170px;
  background: rgba(6,199,85,.08);
  border-radius: 50%;
}
.dark-banner .db-eyebrow {
  font-size: 10px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--g200);
  margin-bottom: 7px; position: relative; z-index: 1;
}
.dark-banner h3 {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: #fff;
  line-height: 1.5;
  margin-bottom: 8px;
  position: relative; z-index: 1;
}
.dark-banner p {
  font-size: 11.5px;
  color: rgba(255,255,255,.65);
  line-height: 1.8;
  margin-bottom: 16px;
  position: relative; z-index: 1;
}
.dark-banner .db-actions { position: relative; z-index: 1; }

/* ══════════════════════════════
   記事・法務テキスト（privacy 等）
══════════════════════════════ */

.art { font-size: 12px; color: var(--n600); line-height: 1.9; }
.art-sec { margin-bottom: 24px; scroll-margin-top: 70px; }
.art-h {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-weight: 800;
  font-size: 14px;
  color: var(--n800);
  margin-bottom: 8px;
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.art-h .art-no {
  font-size: 11px;
  color: var(--g700);
  font-weight: 800;
  flex-shrink: 0;
}
.art p { margin-bottom: 8px; }
.art ul.art-list { margin: 8px 0 8px 2px; }
.art ul.art-list li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 5px;
}
.art ul.art-list li::before {
  content: '';
  position: absolute;
  left: 2px; top: 9px;
  width: 5px; height: 5px;
  background: var(--g500);
  border-radius: 50%;
}

/* 目次 */
.toc {
  background: var(--g50);
  border: 1px solid var(--g100);
  border-radius: var(--radius-md);
  padding: 16px 18px;
}
.toc-ttl {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-weight: 800;
  font-size: 12px;
  color: var(--g700);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.toc-ttl i { font-size: 15px; }
.toc ol { counter-reset: toc; display: flex; flex-direction: column; gap: 6px; }
.toc ol li { counter-increment: toc; }
.toc ol li a {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-size: 11.5px;
  color: var(--n600);
}
.toc ol li a::before {
  content: counter(toc) ".";
  color: var(--g700);
  font-weight: 700;
  font-family: 'M PLUS Rounded 1c', sans-serif;
  flex-shrink: 0;
}
.toc ol li a:hover { color: var(--g700); text-decoration: none; }

/* ══════════════════════════════
   定義テーブル（会社概要等）
══════════════════════════════ */

.dl-table { width: 100%; border-collapse: collapse; font-size: 11.5px; }
.dl-table th {
  background: var(--n50);
  color: var(--n800);
  font-weight: 700;
  text-align: left;
  padding: 11px 12px;
  width: 34%;
  vertical-align: top;
  border-bottom: 1px solid var(--n100);
  white-space: nowrap;
}
.dl-table td {
  padding: 11px 12px;
  color: var(--n600);
  vertical-align: top;
  line-height: 1.75;
  border-bottom: 1px solid var(--n100);
}
.dl-table tr:last-child th,
.dl-table tr:last-child td { border-bottom: none; }

/* ══════════════════════════════
   レスポンシブ微調整
══════════════════════════════ */

@media (max-width: 380px) {
  .ttl { font-size: 16px; }
  .page-hero h1 { font-size: 18px; }
}

@media (min-width: 680px) {
  .wrap { padding: 0 0 80px; }
  .sec { padding: 32px 24px; }
  .hd { padding: 12px 24px; }
  .btm-cta { margin: 0 24px 32px; }
  .flow-wrap { margin: 0 24px 32px; }
}

/* ══════════════════════════════
   デスクトップ（PC・全幅レイアウト）
   1024px以上で 680px 固定をやめ、各セクションを全幅に。
   タブレット・スマホ（〜1023px）は従来どおり。
══════════════════════════════ */

@media (min-width: 1024px) {
  :root { --gutter: clamp(40px, 7vw, 160px); }

  /* 680px の固定幅を解除して全幅に */
  .wrap { max-width: 100%; padding: 0 0 100px; }

  .hd { padding: 16px var(--gutter); }
  .sec { padding: 60px var(--gutter); }
  .sec + .sec { padding-top: 0; }
  .divider { margin: 0 var(--gutter); }

  /* 見出し・説明文は読みやすい幅で左寄せ維持 */
  .desc, .page-hero-sub, .btm-cta-sub { max-width: 720px; }

  /* ページヒーロー（下層共通） */
  .page-hero { padding: 72px var(--gutter) 60px; }
  .page-hero h1 { font-size: 30px; }
  .page-hero-sub { font-size: 13px; }

  /* トラストバー：4カラム横並び */
  .trust { grid-template-columns: repeat(4, 1fr); padding: 22px var(--gutter); gap: 14px; }

  /* お客様の声：3カラム */
  .voice-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; align-items: start; }

  /* FAQ：2カラム */
  .faq-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; align-items: start; }

  /* 全幅バンド（ダーク系インセットカード）はガターに揃える */
  .btm-cta  { margin: 0 var(--gutter) 44px; padding: 44px clamp(40px, 6vw, 96px); }
  .flow-wrap { margin: 0 var(--gutter) 44px; padding: 44px clamp(40px, 6vw, 96px); }
  .flow-wrap .steps { max-width: 760px; }
  .dark-banner { margin: 0 var(--gutter); padding: 32px clamp(40px, 6vw, 96px); }

  /* カテゴリ／タブナビのガター */
  .cat-nav, .type-nav, .area-nav, .target-nav { padding: 14px var(--gutter); }

  /* 法務・記事テキストは読みやすい幅で中央寄せ */
  .art, .toc { max-width: 860px; margin-left: auto; margin-right: auto; }

  /* 定義テーブル（会社概要）も読みやすい幅で */
  .dl-wrap { max-width: 860px; margin-left: auto; margin-right: auto; }
}
