:root {
  --navy: #073b83;
  --navy2: #002c67;
  --blue: #1463bf;
  --sky: #edf6ff;
  --gold: #d7a43c;
  --gold2: #f0c75d;
  --red: #ff3b33;
  --orange: #ffab14;
  --text: #0a2d63;
  --muted: #52657e;
  --line: #d7e2ef;
  --white: #fff;
  --content: 1180px;
  --shadow: 0 12px 32px rgba(4, 48, 110, 0.10);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    "Hiragino Kaku Gothic ProN",
    "Hiragino Sans",
    "Yu Gothic",
    Meiryo,
    sans-serif;
  line-height: 1.75;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

a {
  color: inherit;
}

.container {
  width: min(var(--content), calc(100% - 40px));
  margin-inline: auto;
}

.container--narrow {
  max-width: 920px;
}

/* =========================
   Header
========================= */

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(215, 226, 239, 0.8);
  backdrop-filter: blur(12px);
}

.header__inner {
  width: min(var(--content), calc(100% - 40px));
  height: 66px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  text-decoration: none;
  font-weight: 900;
  font-size: 21px;
  letter-spacing: 0.08em;
}

.header__cta {
  padding: 10px 22px;
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  background: linear-gradient(135deg, var(--blue), var(--navy2));
  box-shadow: 0 6px 16px rgba(4, 48, 110, 0.18);
}

/* =========================
   Hero
========================= */

.hero {
  background: #f5f9ff;
}

.hero__image {
  width: 100%;
  max-height: none;
  object-fit: contain;
  object-position: center;
}

/* =========================
   Stats
========================= */

.stats-section {
  padding: 28px 0 46px;
  background: linear-gradient(135deg, #073b83, #002b68);
}

.stats-section__title {
  margin: 0 0 22px;
  text-align: center;
  color: #fff;
  font-size: clamp(24px, 3vw, 38px);
  letter-spacing: 0.05em;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.stat-card {
  min-width: 0;
  padding: 24px 10px 19px;
  text-align: center;
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.stat-card__icon {
  height: 44px;
  color: var(--blue);
  font-size: 28px;
  font-weight: 900;
}

.stat-card__label {
  margin: 6px 0 2px;
  font-size: 15px;
  font-weight: 800;
}

.stat-card__value {
  margin: 0;
  color: var(--navy);
  font-size: clamp(30px, 4vw, 53px);
  font-weight: 900;
  line-height: 2;
  letter-spacing: -0.04em;
}

.stats_img{
	width: 47%;
	margin: 0 auto;
}

.stat-card__value small {
  font-size: 0.42em;
  letter-spacing: 0;
}

.stat-card__note {
  margin: 9px 0 0;
  color: #53647a;
  font-size: 11px;
  line-height: 1.4;
}

.stats-section__note {
  margin: 14px 0 0;
  text-align: center;
  color: #dceaff;
  font-size: 12px;
}

/* =========================
   Section
========================= */

.section {
  padding: 76px 0;
}

.section--soft {
  background: linear-gradient(180deg, #f8fbff, #fff);
}

.section-title {
  margin: 0 0 36px;
  text-align: center;
  font-size: clamp(26px, 3.2vw, 40px);
  line-height: 1.35;
  letter-spacing: 0.08em;
}

.section-title:before,
.section-title:after {
  content: "";
  display: inline-block;
  width: 70px;
  height: 2px;
  margin: 0 18px 8px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--navy)
  );
}

.section-title:after {
  background: linear-gradient(
    90deg,
    var(--navy),
    transparent
  );
}

/* =========================
   System
========================= */

.system-panel {
  display: grid;
  grid-template-columns: 0.78fr 1.42fr;
  gap: 34px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.system-copy h3 {
  margin: 0 0 18px;
  font-size: clamp(23px, 2.6vw, 34px);
  line-height: 1.5;
}

.system-copy p {
  margin: 0;
  color: #314965;
  font-size: 17px;
}

.system-copy__notice {
  margin-top: 24px;
  padding: 18px;
  border: 2px solid #77a8e6;
  border-radius: 10px;
  color: var(--navy);
  font-weight: 800;
  background: #f8fbff;
}

/* =========================
   Table
========================= */

.table-scroll {
  overflow: auto;
  border: 1px solid var(--line);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 620px;
}

th {
  padding: 14px 16px;
  color: #fff;
  background: var(--navy);
  font-size: 15px;
}

td {
  padding: 17px 16px;
  text-align: center;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: #27394f;
}

td:last-child,
th:last-child {
  border-right: 0;
}

.amount {
  font-size: 24px;
  font-weight: 900;
  color: #222;
}

.total-row td {
  background: #f1f7fd;
  font-weight: 900;
}

.amount--total {
  color: #ef3c2f;
}

.small-notes {
  margin-top: 12px;
  color: #68768a;
  font-size: 12px;
}

.small-notes p {
  margin: 1px 0;
}

/* =========================
   Condition
========================= */

.condition-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.condition-card {
  display: flex;
  align-items: center;
  gap: 22px;
  min-height: 180px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(4, 48, 110, 0.06);
}

.condition-card__badge {
  flex: 0 0 88px;
  height: 88px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #e8f2ff, #f9fbff);
  color: var(--navy);
  font-size: 34px;
  font-weight: 900;
}

.condition-card p {
  margin: 0 0 6px;
  color: #607089;
  font-size: 14px;
}

.condition-card h3 {
  margin: 0;
  color: #101b2b;
  font-size: 22px;
  line-height: 1.55;
}

/* =========================
   Check List
========================= */

.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  margin: 12px 0;
  color: #233b5b;
  font-weight: 700;
}

.check-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 2px;
  width: 20px;
  height: 20px;
  border: 2px solid #71abef;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #438eda;
  font-size: 12px;
  line-height: 1;
}

/* =========================
   Notes
========================= */

.notes-box {
  display: grid;
  grid-template-columns: 1fr 150px;
  gap: 30px;
  align-items: center;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow);
}

.check-list--dense li {
  margin: 10px 0;
  font-size: 14px;
  font-weight: 600;
}

.notes-box__illust {
  width: 120px;
  height: 120px;
  margin: auto;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #e5f2ff, #fff);
  border: 2px solid #8bb6e8;
}

.notes-box__illust span {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--navy);
  color: #fff;
  font-size: 28px;
  font-weight: 900;
  font-family: Georgia, serif;
}

/* =========================
   Entry
========================= */

.entry {
  padding: 55px 0 60px;
  background: linear-gradient(135deg, #063b88, #001f50);
  color: #fff;
  text-align: center;
}

.entry__lead {
  margin: 0 0 8px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.entry h2 {
  margin: 0 0 25px;
  font-size: clamp(30px, 4.4vw, 54px);
  color: var(--gold2);
}

.entry__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  min-width: min(620px, 100%);
  padding: 18px 36px;
  border-radius: 9px;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(90deg, var(--red), var(--orange));
  font-size: clamp(18px, 2.4vw, 28px);
  font-weight: 900;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.entry__button span {
  font-size: 38px;
  line-height: 1;
}

/* =========================
   FAQ
========================= */

.faq-section {
  padding-top: 68px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 6px 18px rgba(4, 48, 110, 0.05);
  overflow: hidden;
}

.faq-list summary {
  position: relative;
  padding: 20px 54px 20px 24px;
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary:after {
  content: "＋";
  position: absolute;
  right: 22px;
  top: 17px;
  font-size: 24px;
  color: var(--blue);
}

.faq-list details[open] summary:after {
  content: "−";
}

.faq-list p {
  margin: 0;
  padding: 0 24px 20px;
  color: #52657e;
}

/* =========================
   Footer
========================= */

.footer {
  padding: 28px 0;
  background: #061d3d;
  color: #dae6f5;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 13px;
}

.footer p {
  margin: 0;
}

.footer a {
  text-decoration: none;
}

/* =========================
   Tablet
========================= */

@media (max-width: 900px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-card:last-child {
    grid-column: 1 / -1;
  }

  .system-panel {
    grid-template-columns: 1fr;
  }

  .condition-grid {
    grid-template-columns: 1fr;
  }

  .hero__image {
    max-height: none;
  }

  .section-title:before,
  .section-title:after {
    width: 34px;
    margin-inline: 10px;
  }

  .notes-box {
    grid-template-columns: 1fr;
  }

  .notes-box__illust {
    display: none;
  }

 .stats_img{
 	width: 16%;
 	margin: 0 auto;
 }
}


/* =========================
   Mobile
========================= */

@media (max-width: 620px) {
  .container,
  .header__inner {
    width: min(100% - 28px, var(--content));
  }

  .header {
    position: relative;
  }

  .header__inner {
    height: 58px;
  }

  .logo {
    font-size: 17px;
  }

  .header__cta {
    padding: 8px 14px;
    font-size: 13px;
  }

  .hero {
    overflow: hidden;
  }

  .hero__image {
    width: 100%;
    max-width: 100%;
    margin-left: 0%;
  }

  .stats-section {
    padding-top: 22px;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .stat-card {
    padding: 18px 7px 15px;
  }

  .stat-card__label {
    font-size: 12px;
  }

  .stat-card__value {
    font-size: 34px;
  }

 .stats_img{
 	width: 63px;
 	margin: 0 auto;
 }

  .stat-card__note {
    font-size: 9px;
  }

  .section {
    padding: 54px 0;
  }

  .section-title {
    font-size: 25px;
    letter-spacing: 0.04em;
  }

  .section-title:before,
  .section-title:after {
    display: none;
  }

  .system-panel {
    padding: 20px;
    gap: 22px;
  }

  .system-copy h3 {
    font-size: 22px;
  }

  .system-copy p {
    font-size: 15px;
  }

  .condition-card {
    align-items: flex-start;
    padding: 20px;
    gap: 14px;
  }

  .condition-card__badge {
    flex-basis: 58px;
    height: 58px;
    font-size: 22px;
  }

  .condition-card h3 {
    font-size: 18px;
  }

  .notes-box {
    padding: 20px;
  }

  .entry {
    padding: 44px 0;
  }

  .entry__button {
    padding: 15px 20px;
    font-size: 18px;
  }

  .footer__inner {
    display: block;
    text-align: center;
  }

  .footer p + p {
    margin-top: 8px;
  }
}
