@charset "UTF-8";
/* =========================================================
  custom-style.scss
  - SCSSで短く（将来分割しやすい）
========================================================= */
/* --- SCSS tokens --- */
/* --- mixins / placeholders --- */
.st-card {
  background: var(--st-surface);
  border: 1px solid var(--st-border);
  border-radius: 1rem;
}

/* --- expose CSS variables (runtime) --- */
:root {
  --st-primary:#B80000;
  --st-ink:#222;
  --st-muted:#6c757d;
  --st-border:#e9ecef;
  --st-surface:#fff;
  --st-surface-2:#f8f9fa;
  --st-soft:#fff5f5;
}

/* ====== spacing helpers (保険ページは余白が正義) ====== */
.st-section {
  padding: 3.5rem 0;
}

.st-lead {
  color: var(--st-muted);
  max-width: 64ch;
}

/* ====== headings pattern A：左バー ====== */
.st-h2-bar {
  border-left: 6px solid var(--st-primary);
  padding-left: 1rem;
  margin: 0 0 1.25rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.st-h3-underline {
  display: inline-block;
  padding-bottom: 0.35rem;
  border-bottom: 2px solid var(--st-primary);
  margin: 0 0 1rem;
  font-weight: 700;
}

/* ====== headings pattern B：ラベル＋細線 ====== */
.st-h2-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0 0 1.25rem;
  font-weight: 800;
}
.st-h2-label::before {
  content: "";
  width: 0.75rem;
  height: 0.75rem;
  background: var(--st-primary);
  border-radius: 0.2rem;
  flex: 0 0 auto;
}
.st-h2-label::after {
  content: "";
  height: 1px;
  background: var(--st-border);
  flex: 1 1 auto;
}

/* ====== card module（補償内容など） ====== */
.st-card {
  padding: 1.25rem;
  height: 100%;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.04);
}
.st-card:hover {
  border-color: rgba(184, 0, 0, 0.35);
}
.st-card__title {
  font-weight: 800;
  margin: 0 0 0.35rem;
}
.st-card__desc {
  color: var(--st-muted);
  margin: 0 0 0.75rem;
}
.st-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.st-meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: var(--st-surface-2);
  border: 1px solid var(--st-border);
  color: var(--st-ink);
  font-size: 0.9rem;
}

.st-badge-top {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.6rem;
  background: var(--st-primary);
  color: #fff;
  border-radius: 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 0.75rem;
}

/* ====== 金額強調 ====== */
.st-amount {
  background: var(--st-soft);
  border: 1px solid rgba(184, 0, 0, 0.15);
  border-left: 8px solid var(--st-primary);
  border-radius: 1rem;
  padding: 1.25rem;
}
.st-amount__label {
  color: var(--st-muted);
  margin: 0 0 0.25rem;
  font-weight: 700;
}
.st-amount__value {
  font-weight: 900;
  letter-spacing: 0.01em;
  color: var(--st-primary);
  line-height: 1.05;
  font-size: clamp(1.8rem, 2.6vw, 2.6rem);
  margin: 0 0 0.25rem;
}
.st-amount__note {
  color: var(--st-muted);
  margin: 0;
}

/* ====== callout（目的・要件まとめ） ====== */
.st-callout {
  background: var(--st-surface-2);
  border: 1px solid var(--st-border);
  border-radius: 1rem;
  padding: 1.25rem;
}
.st-callout--primary {
  background: #fff;
  border-left: 8px solid var(--st-primary);
}

.st-kv {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin: 0;
}
@media (min-width: 992px) {
  .st-kv {
    grid-template-columns: 1fr 1fr;
  }
}
.st-kv__item {
  background: #fff;
  border: 1px solid var(--st-border);
  border-radius: 0.85rem;
  padding: 0.9rem 1rem;
}
.st-kv__k {
  margin: 0 0 0.2rem;
  color: var(--st-muted);
  font-weight: 700;
  font-size: 0.92rem;
}
.st-kv__v {
  margin: 0;
  font-weight: 800;
}

/* ====== steps（加入フロー） ====== */
.st-steps {
  display: grid;
  gap: 0.75rem;
}
@media (min-width: 992px) {
  .st-steps {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
}

.st-step {
  position: relative;
  background: #fff;
  border: 1px solid var(--st-border);
  border-radius: 1rem;
  padding: 1rem 1rem 1rem 3.25rem;
  min-height: 84px;
}
.st-step__no {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: var(--st-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 0.95rem;
}
.st-step__title {
  margin: 0 0 0.1rem;
  font-weight: 900;
}
.st-step__desc {
  margin: 0;
  color: var(--st-muted);
  font-size: 0.95rem;
}

/* ====== 対象外（警告） ====== */
.st-exclusion {
  background: #f6f6f6;
  border: 1px solid var(--st-border);
  border-radius: 1rem;
  padding: 1.25rem;
}
.st-exclusion__title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 900;
  margin: 0 0 1rem;
}
.st-exclusion__icon {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 0.25rem;
  background: rgba(184, 0, 0, 0.12);
  border: 1px solid rgba(184, 0, 0, 0.25);
}
.st-exclusion__list {
  display: grid;
  gap: 0.5rem 1rem;
  grid-template-columns: 1fr;
  margin: 0;
  padding-left: 1.1rem;
}
@media (min-width: 992px) {
  .st-exclusion__list {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

/* ====== “イラスト枠” placeholder（後で画像差し替え） ====== */
.st-illus {
  border: 1px dashed rgba(184, 0, 0, 0.35);
  background: linear-gradient(0deg, rgba(184, 0, 0, 0.04), rgba(184, 0, 0, 0.04));
  border-radius: 1rem;
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--st-muted);
  font-weight: 700;
  text-align: center;
  padding: 1rem;
}

.st-ol-circle {
  counter-reset: st-num;
  list-style: none;
  margin: 0;
  padding: 0.5rem 0;
}
.st-ol-circle > li {
  position: relative;
  padding: 0.5rem 0.5rem 0.5rem 2.25rem;
  line-height: 1.6;
}
.st-ol-circle > li::before {
  counter-increment: st-num;
  content: counter(st-num);
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 1.5rem;
  height: 1.5rem;
  line-height: 1.5rem;
  border-radius: 50%;
  text-align: center;
  background: #B80000;
  color: #fff;
  font-weight: 700;
  font-size: 0.875rem;
}

/* ====== purpose flow（商品の目的フロー） ====== */
.st-purpose-flow {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  align-items: center;
}
@media (min-width: 992px) {
  .st-purpose-flow {
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto 88px auto minmax(0, 1fr);
    gap: 1rem;
  }
}
.st-purpose-flow__item {
  min-width: 0;
}
@media (min-width: 992px) {
  .st-purpose-flow__item--narrow {
    width: 88px;
  }
}
.st-purpose-flow__box {
  background: #fff;
  border: 3px solid var(--st-primary);
  border-radius: 1rem;
  padding: 1rem 0.875rem;
  min-height: 170px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
@media (min-width: 992px) {
  .st-purpose-flow__box {
    min-height: 172px;
    padding: 1rem 1rem 0.875rem;
  }
}
.st-purpose-flow__box--vertical {
  min-height: 140px;
  background: var(--st-primary);
  border-color: var(--st-primary);
  padding: 0.75rem 0.5rem;
}
@media (min-width: 992px) {
  .st-purpose-flow__box--vertical {
    min-height: 172px;
  }
}
.st-purpose-flow__icon {
  width: 100%;
  max-width: 160px;
  margin: 0 auto 0.75rem;
}
.st-purpose-flow__icon img {
  display: block;
  width: 100%;
  height: auto;
}
.st-purpose-flow__label {
  margin: 0;
  color: var(--st-primary);
  font-weight: 800;
  line-height: 1.4;
  font-size: 1rem;
}
.st-purpose-flow__label--vertical {
  color: #fff;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  letter-spacing: 0.06em;
  line-height: 1.2;
  margin: 0 auto;
}
@media (max-width: 991.98px) {
  .st-purpose-flow__label--vertical {
    writing-mode: horizontal-tb;
    text-orientation: initial;
    letter-spacing: 0.02em;
  }
}
.st-purpose-flow__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--st-primary);
  font-size: 2.25rem;
  line-height: 1;
  font-weight: 900;
}
@media (min-width: 992px) {
  .st-purpose-flow__arrow {
    width: 40px;
  }
}

/*# sourceMappingURL=custom-style.css.map */
