:root {
  --navy: #061b32;
  --navy-2: #0b2c4d;
  --gold: #c99520;
  --gold-2: #e3bd58;
  --green: #00865c;
  --ink: #142236;
  --muted: #5f6b78;
  --line: #e4e8ee;
  --white: #fff;
  --soft: #f7f9fb;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(6, 27, 50, .08), transparent 20%, transparent 80%, rgba(6, 27, 50, .08)),
    #eef2f5;
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", "Noto Sans JP", sans-serif;
  line-height: 1.75;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.page {
  width: min(100%, 430px);
  min-height: 100vh;
  margin: 0 auto;
  background: var(--white);
  box-shadow: 0 0 46px rgba(6, 27, 50, .18);
}

.wrap {
  width: calc(100% - 32px);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, .97);
  border-bottom: 1px solid rgba(6, 27, 50, .08);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 58px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: clamp(150px, 46vw, 190px);
  height: auto;
}

.header-tel {
  display: grid;
  justify-items: end;
  color: var(--navy);
  font-weight: 900;
  line-height: 1.15;
  white-space: nowrap;
}

.header-tel span {
  font-size: 13px;
}

.header-tel small {
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
}

.legal-hero {
  padding: 34px 0 24px;
  background:
    radial-gradient(circle at 14% 8%, rgba(201, 149, 32, .14), transparent 30%),
    linear-gradient(180deg, #fffaf0, #fff);
}

.breadcrumb {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.breadcrumb a {
  color: var(--navy);
}

.eyebrow {
  display: inline-grid;
  grid-template-columns: 42px auto;
  gap: 8px;
  align-items: center;
  margin-bottom: 9px;
  color: var(--navy);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
}

.eyebrow::before {
  width: 42px;
  height: 2px;
  background: var(--gold);
  content: "";
}

h1 {
  margin: 0;
  color: var(--navy);
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "Noto Serif JP", serif;
  font-size: 30px;
  line-height: 1.35;
}

.lead {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

main {
  padding-bottom: 44px;
}

.section {
  padding: 24px 0;
}

.card {
  padding: 18px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(6, 27, 50, .07);
}

.card + .card {
  margin-top: 14px;
}

h2 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 18px;
  line-height: 1.45;
}

h3 {
  margin: 20px 0 8px;
  color: var(--navy);
  font-size: 15px;
}

p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

p:last-child {
  margin-bottom: 0;
}

.info-list {
  display: grid;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.info-row {
  display: grid;
  grid-template-columns: 124px 1fr;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.info-row:last-child {
  border-bottom: 0;
}

.info-row dt,
.info-row dd {
  margin: 0;
  padding: 12px;
  font-size: 12px;
  line-height: 1.55;
}

.info-row dt {
  background: #f7f9fb;
  color: var(--navy);
  font-weight: 900;
}

.info-row dd {
  color: #243349;
  font-weight: 700;
}

.policy-list {
  margin: 0;
  padding-left: 1.25em;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.policy-list li + li {
  margin-top: 7px;
}

.cta-box {
  padding: 18px 16px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 18% 0%, rgba(227, 189, 88, .16), transparent 34%),
    linear-gradient(135deg, var(--navy), var(--navy-2));
  color: #fff;
}

.cta-box h2,
.cta-box p {
  color: #fff;
}

.cta-box p {
  color: rgba(255,255,255,.78);
}

.button-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 14px;
}

.button {
  min-height: 48px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  color: #fff;
  background: linear-gradient(135deg, #ed2b31, #b70812);
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(6, 27, 50, .18);
}

.button.sub {
  background: linear-gradient(135deg, var(--gold), #efd27a);
  color: var(--navy);
}

.site-footer {
  padding: 24px 0 34px;
  background: #051322;
  color: rgba(255,255,255,.72);
  font-size: 12px;
}

.footer-brand {
  display: block;
  margin-bottom: 10px;
  color: #fff;
  font-size: 15px;
  font-weight: 900;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin-top: 13px;
  color: rgba(255,255,255,.68);
}

@media (min-width: 431px) {
  body {
    padding: 28px 0;
  }

  .page {
    border-radius: 28px;
    overflow: hidden;
  }
}

@media (max-width: 360px) {
  .info-row {
    grid-template-columns: 1fr;
  }
}
