:root {
  --blue: #3265ce;
  --blue-dark: #1452a8;
  --ink: #242b35;
  --muted: #667080;
  --line: #e3e8ef;
  --soft: #f5f7fa;
  --orange: #ff6900;
  --content: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  line-height: 1.8;
}
img { max-width: 100%; height: auto; }
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }
.skip-link { position: fixed; top: -80px; left: 1rem; z-index: 100; padding: .6rem 1rem; color: #fff; background: var(--blue-dark); }
.skip-link:focus { top: 1rem; }
.site-header { position: sticky; top: 0; z-index: 20; border-bottom: 1px solid var(--line); background: rgba(255,255,255,.97); }
.header-inner { width: min(calc(100% - 40px), var(--content)); min-height: 80px; margin: auto; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { color: var(--ink); font-size: 1.65rem; font-weight: 700; letter-spacing: .08em; }
.brand:hover { text-decoration: none; }
.nav-toggle { display: none; border: 1px solid var(--line); border-radius: 4px; padding: .55rem .8rem; background: #fff; font: inherit; }
.global-nav ul { display: flex; align-items: center; gap: 20px; margin: 0; padding: 0; list-style: none; }
.global-nav a { display: block; color: var(--ink); font-size: .9rem; font-weight: 700; }
.global-nav a[aria-current="page"] { color: var(--blue); }
.hero img { display: block; width: 100%; }
.container { width: min(calc(100% - 40px), var(--content)); margin-inline: auto; }
.section { padding: 72px 0; }
.section-soft { background: var(--soft); }
.eyebrow { margin: 0 0 .4rem; color: var(--blue); font-weight: 700; letter-spacing: .12em; text-align: center; }
.section-title { margin: 0 0 2.5rem; font-size: clamp(1.7rem, 4vw, 2.5rem); line-height: 1.4; text-align: center; }
.lead { max-width: 850px; margin: 0 auto 2rem; font-size: 1.08rem; }
.actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 28px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: .65rem 1.4rem; border: 1px solid var(--blue); border-radius: 4px; color: #fff; background: var(--blue); font-weight: 700; }
.button:hover { color: #fff; background: var(--blue-dark); text-decoration: none; }
.button-outline { color: var(--blue); background: #fff; }
.button-outline:hover { color: #fff; }
.cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; }
.card { min-width: 0; padding: 28px; border: 1px solid var(--line); border-radius: 6px; background: #fff; box-shadow: 0 8px 28px rgba(28,47,78,.06); }
.card-image { display: block; width: 150px; height: 150px; margin: 0 auto 22px; border-radius: 50%; object-fit: cover; }
.card h2, .card h3 { margin: 0 0 .8rem; text-align: center; }
.card p { margin: 0; }
.reason-list { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; padding: 0; list-style: none; }
.reason-list li { min-width: 0; padding: 28px; border-top: 4px solid var(--orange); background: #fff; box-shadow: 0 8px 28px rgba(28,47,78,.06); }
.reason-list h3 { margin-top: 0; }
.page-header { padding: 42px 0; color: #fff; background: var(--blue); }
.page-header h1 { margin: 0; font-size: clamp(1.8rem, 4vw, 2.6rem); }
.content { max-width: 900px; margin-inline: auto; }
.content h2 { margin-top: 3rem; padding-top: .8rem; border-top: 3px solid var(--blue); }
.content h3 { margin-top: 2rem; padding-bottom: .35rem; border-bottom: 1px solid var(--line); }
.content figure { margin: 2rem 0; text-align: center; }
.flow { padding: 0; list-style: none; counter-reset: flow; }
.flow li { position: relative; margin: 0 0 18px; padding: 22px 24px 22px 72px; border: 1px solid var(--line); border-radius: 6px; background: #fff; }
.flow li::before { counter-increment: flow; content: counter(flow); position: absolute; left: 22px; top: 22px; width: 32px; height: 32px; border-radius: 50%; color: #fff; background: var(--blue); text-align: center; line-height: 32px; font-weight: 700; }
.flow h2, .flow h3 { margin: 0 0 .35rem; padding: 0; border: 0; font-size: 1.15rem; }
.profile { width: 100%; border-collapse: collapse; }
.profile th, .profile td { padding: 15px 18px; border: 1px solid var(--line); text-align: left; vertical-align: top; }
.profile th { width: 28%; background: var(--soft); }
.faq details { margin-bottom: 14px; border: 1px solid var(--line); border-radius: 6px; background: #fff; }
.faq summary { padding: 18px 22px; cursor: pointer; font-weight: 700; }
.faq details p { margin: 0; padding: 0 22px 22px; }
.contact-form { display: grid; gap: 18px; }
.field { display: grid; gap: 6px; }
.field label { font-weight: 700; }
.required { color: #b00020; font-size: .85em; }
.field input, .field textarea { width: 100%; padding: 12px; border: 1px solid #b7c0cb; border-radius: 4px; font: inherit; }
.field textarea { min-height: 180px; resize: vertical; }
.check { display: flex; align-items: flex-start; gap: 8px; }
.contact-form button { justify-self: start; border: 0; cursor: pointer; }
.site-footer { padding: 38px 0; border-top: 4px solid var(--blue); background: #f0f3f7; }
.footer-inner { display: flex; justify-content: space-between; gap: 28px; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 8px 18px; margin: 0; padding: 0; list-style: none; }
.copyright { margin: 18px 0 0; color: var(--muted); font-size: .85rem; }

@media (max-width: 860px) {
  .header-inner { min-height: 66px; }
  .nav-toggle { display: inline-block; }
  .global-nav { position: absolute; top: 100%; left: 0; right: 0; display: none; padding: 8px 20px 18px; border-bottom: 1px solid var(--line); background: #fff; }
  .global-nav[data-open="true"] { display: block; }
  .global-nav ul { display: grid; gap: 0; }
  .global-nav a { padding: 11px 2px; border-bottom: 1px solid var(--line); }
  .cards, .reason-list { grid-template-columns: 1fr; }
  .section { padding: 52px 0; }
  .footer-inner { display: block; }
}

@media (max-width: 520px) {
  .header-inner, .container { width: min(calc(100% - 28px), var(--content)); }
  .brand { font-size: 1.3rem; }
  .profile th, .profile td { display: block; width: 100%; }
  .profile th { border-bottom: 0; }
  .flow li { padding-left: 60px; }
  .flow li::before { left: 14px; }
}

