:root {
  --ink: #111820;
  --ink-soft: #26313c;
  --muted: #5c6874;
  --paper: #f4f1eb;
  --paper-deep: #ebe5da;
  --white: #ffffff;
  --red: #b71f2b;
  --red-dark: #77141b;
  --red-soft: #f8e9e9;
  --gold: #bc9558;
  --gold-light: #ead7af;
  --line: #d9d4ca;
  --line-dark: #34404c;
  --shadow: 0 22px 56px rgba(12, 20, 28, .14);
  --shadow-soft: 0 10px 32px rgba(12, 20, 28, .08);
  --radius: 20px;
  --radius-sm: 12px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  font-size: 16px;
  line-height: 1.85;
  text-rendering: optimizeLegibility;
}
a { color: inherit; }
img, svg { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; }
.skip-link { position: fixed; left: 1rem; top: -100px; z-index: 1000; padding: .7rem 1rem; color: #fff; background: var(--red); }
.skip-link:focus { top: 1rem; }
.wrap { width: min(1160px, calc(100% - 48px)); margin-inline: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(217, 212, 202, .9);
  background: rgba(249, 247, 242, .96);
  backdrop-filter: blur(16px);
}
.header-inner { width: min(1240px, calc(100% - 48px)); min-height: 76px; margin-inline: auto; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; flex-direction: column; text-decoration: none; font-weight: 900; line-height: 1.15; letter-spacing: .11em; }
.brand span { font-size: 1.12rem; }
.brand small { margin-top: 5px; color: var(--red); font-size: .61rem; letter-spacing: .2em; }
.site-nav { display: flex; align-items: center; gap: 22px; font-size: .86rem; font-weight: 750; }
.site-nav a { text-decoration: none; }
.site-nav > a:not(.nav-cta):hover, .site-nav > a:not(.nav-cta):focus-visible { color: var(--red); }
.nav-cta, .button { display: inline-flex; min-height: 50px; align-items: center; justify-content: center; padding: .72rem 1.4rem; border: 1px solid transparent; border-radius: 999px; text-decoration: none; font-weight: 850; line-height: 1.4; transition: transform .2s ease, color .2s ease, background .2s ease, border-color .2s ease; }
.nav-cta, .button.primary { color: #fff; background: var(--red); box-shadow: 0 8px 24px rgba(183, 31, 43, .25); }
.nav-cta:hover, .button.primary:hover { background: var(--red-dark); transform: translateY(-1px); }
.button.ghost { color: #fff; border-color: rgba(255,255,255,.52); background: rgba(255,255,255,.05); }
.button.ghost:hover { border-color: #fff; background: rgba(255,255,255,.12); }
.button.outline { color: var(--ink); border-color: var(--ink); background: transparent; }
.button.outline:hover { color: #fff; background: var(--ink); }
.button.full { width: 100%; }
.mobile-menu { display: none; position: relative; }
.mobile-menu summary { list-style: none; cursor: pointer; padding: .5rem .8rem; border: 1px solid var(--line); border-radius: 9px; font-weight: 800; }
.mobile-menu summary::-webkit-details-marker { display: none; }
.mobile-menu nav { position: absolute; top: calc(100% + 12px); right: 0; width: min(290px, calc(100vw - 28px)); padding: 12px; border: 1px solid var(--line); border-radius: 14px; background: #fff; box-shadow: var(--shadow); }
.mobile-menu nav a { display: block; padding: 11px 12px; border-radius: 8px; text-decoration: none; font-weight: 750; }
.mobile-menu nav a:hover, .mobile-menu nav a:focus-visible { color: var(--red); background: var(--red-soft); }

.hero { overflow: hidden; position: relative; color: #fff; background: #111820; }
.hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 84% 18%, rgba(183,31,43,.72), transparent 26%), radial-gradient(circle at 16% 90%, rgba(188,149,88,.18), transparent 28%), linear-gradient(132deg, #0b1117 0%, #17212b 58%, #0b1117 100%); }
.hero::after { content: ""; position: absolute; inset: 0; opacity: .08; background-image: linear-gradient(30deg, transparent 48%, #fff 49%, #fff 50%, transparent 51%); background-size: 58px 58px; }
.hero-inner { position: relative; z-index: 1; min-height: 670px; display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr); align-items: center; gap: 72px; padding-block: 92px; }
.eyebrow { margin: 0 0 14px; color: var(--gold-light); font-size: .75rem; font-weight: 900; letter-spacing: .2em; }
.eyebrow.dark-text { color: var(--red); }
h1, h2, h3 { line-height: 1.35; letter-spacing: .015em; }
h1 { margin: 0; font-size: clamp(2.65rem, 6.4vw, 5.4rem); letter-spacing: .01em; }
h1 span { color: var(--gold-light); }
h2 { margin: 0; font-size: clamp(2rem, 4.4vw, 3.25rem); }
h3 { margin: 0; }
.hero-copy { max-width: 690px; margin: 28px 0 0; color: #dbe0e5; font-size: clamp(1rem, 1.7vw, 1.18rem); }
.actions { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; margin-top: 30px; }
.hero-note { max-width: 700px; margin: 16px 0 0; color: #aeb8c1; font-size: .78rem; }
.hero-card { padding: 34px; border: 1px solid rgba(255,255,255,.17); border-radius: 24px; background: rgba(255,255,255,.075); box-shadow: var(--shadow); backdrop-filter: blur(12px); }
.card-label, .price-label, .service-tag { margin: 0; color: var(--gold-light); font-size: .68rem; font-weight: 900; letter-spacing: .16em; }
.hero-card h2 { margin-top: 5px; font-size: 1.35rem; }
.hero-list { list-style: none; margin: 24px 0 0; padding: 0; }
.hero-list li { display: grid; grid-template-columns: 42px 1fr; gap: 14px; padding: 17px 0; border-top: 1px solid rgba(255,255,255,.15); }
.hero-list li > span { color: var(--gold-light); font-size: .8rem; font-weight: 900; }
.hero-list strong, .hero-list small { display: block; }
.hero-list small { margin-top: 2px; color: #adb7c1; font-size: .78rem; }
.safety-note { margin: 20px 0 0; padding: 14px; border-left: 3px solid var(--gold); color: #d6dbe0; background: rgba(0,0,0,.19); font-size: .76rem; }

.trust-strip { border-bottom: 1px solid var(--line); background: #fff; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-grid > div { padding: 26px 20px; text-align: center; }
.trust-grid > div + div { border-left: 1px solid var(--line); }
.trust-grid strong, .trust-grid span { display: block; }
.trust-grid strong { color: var(--red); font-size: 1.04rem; }
.trust-grid span { margin-top: 2px; color: var(--muted); font-size: .76rem; }

.section { padding-block: 96px; }
.section.white { background: var(--white); }
.section.paper { background: var(--paper); }
.section.dark { color: #fff; background: var(--ink); }
.section-head { max-width: 770px; margin-bottom: 42px; }
.section-head h2 { margin-top: 4px; }
.section-head > p:last-child { margin: 14px 0 0; color: var(--muted); }
.service-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; }
.service-card { position: relative; min-height: 280px; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-soft); }
.service-card.featured { min-height: 315px; border-top: 4px solid var(--red); }
.service-no { display: inline-block; margin-bottom: 26px; color: var(--red); font-size: .76rem; font-weight: 900; letter-spacing: .12em; }
.service-tag { position: absolute; top: 31px; right: 28px; color: var(--muted); }
.service-card h3 { font-size: 1.24rem; }
.service-card p:not(.service-tag) { margin: 12px 0 0; color: var(--muted); font-size: .9rem; }
.service-card a { display: inline-block; margin-top: 20px; color: var(--red); font-size: .85rem; font-weight: 850; text-underline-offset: .22em; }

.split-layout { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: 72px; }
.align-center { align-items: center; }
.lead { margin: 20px 0 0; color: var(--ink-soft); font-size: 1.05rem; }
.lead.light { color: #d6dde3; }
.muted { color: var(--muted); }
.text-link { display: inline-block; margin-top: 22px; color: var(--red); font-weight: 850; text-underline-offset: .22em; }
.text-link.inline { margin-top: 0; }
.feature-list { display: grid; gap: 14px; }
.feature-list article { display: grid; grid-template-columns: 48px 1fr; gap: 18px; padding: 25px; border: 1px solid var(--line); border-radius: 16px; background: #fff; }
.feature-list article > span { color: var(--red); font-size: .78rem; font-weight: 900; }
.feature-list h3 { font-size: 1.05rem; }
.feature-list p { margin: 5px 0 0; color: var(--muted); font-size: .88rem; }

.process-grid { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin: 0; padding: 0; }
.process-grid li { min-height: 250px; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); }
.process-grid span { color: var(--red); font-size: .78rem; font-weight: 900; }
.process-grid h3 { margin-top: 34px; font-size: 1.2rem; }
.process-grid p { margin: 10px 0 0; color: var(--muted); font-size: .87rem; }
.center-action { margin-top: 36px; text-align: center; }

.steps { counter-reset: recovery-step; list-style: none; display: grid; gap: 16px; margin: 0; padding: 0; }
.step { display: grid; grid-template-columns: 64px 1fr; gap: 22px; align-items: start; padding: 28px 30px; border: 1px solid var(--line); border-radius: 16px; background: var(--paper); }
.step > span { display: grid; width: 50px; height: 50px; place-items: center; border-radius: 50%; color: #fff; background: var(--red); font-size: .78rem; font-weight: 900; }
.step h3 { font-size: 1.15rem; }
.step p { margin: 7px 0 0; color: var(--muted); font-size: .9rem; }

.price-intro { background: radial-gradient(circle at 10% 40%, rgba(183,31,43,.25), transparent 26%), var(--ink); }
.price-card { padding: 36px; border: 1px solid var(--line-dark); border-radius: 22px; background: #1b2631; box-shadow: var(--shadow); }
.price-label { color: var(--gold-light); }
.price-value { margin: 4px 0 18px; color: #fff; font-size: clamp(2.8rem, 6vw, 4.4rem); font-weight: 900; line-height: 1.15; }
.check-list { margin: 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 28px; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--gold-light); font-weight: 900; }
.check-list li + li { margin-top: 10px; }
.check-list.compact { margin-bottom: 24px; color: #d3dbe2; font-size: .87rem; }

.profile-block { align-items: center; }
.profile-visual { min-height: 430px; margin: 0; padding: 28px 28px 0; display: grid; place-items: end center; border-radius: 24px; background: linear-gradient(145deg, var(--paper), var(--paper-deep)); overflow: hidden; }
.profile-visual img { width: min(100%, 362px); filter: drop-shadow(0 20px 20px rgba(17,24,32,.16)); }
.profile-visual figcaption { width: calc(100% + 56px); margin-inline: -28px; padding: 11px 20px; color: #fff; background: var(--ink); text-align: center; font-size: .72rem; }

.safety-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.safety-card { padding: 28px; border-left: 4px solid var(--gold); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; background: #fff; box-shadow: var(--shadow-soft); }
.safety-card strong { display: block; font-size: 1.04rem; }
.safety-card p { margin: 10px 0 0; color: var(--muted); font-size: .88rem; }

.faq details { margin-bottom: 12px; padding: 19px 21px; border: 1px solid var(--line); border-radius: 12px; background: #fff; }
.faq summary { cursor: pointer; font-weight: 850; }
.faq details p { margin: 12px 0 0; color: var(--muted); }
.compact-faq details { box-shadow: var(--shadow-soft); }

.cta-section { color: #fff; background: #0b1117; }
.cta-band { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 40px; padding: 54px; border: 1px solid rgba(255,255,255,.16); border-radius: 28px; background: linear-gradient(125deg, var(--red-dark), var(--red)); box-shadow: var(--shadow); }
.cta-band h2 { font-size: clamp(1.8rem, 3.8vw, 2.8rem); }
.cta-band p:not(.eyebrow) { margin: 12px 0 0; color: #f0dfe1; }
.light-button { color: var(--red-dark); background: #fff; }
.light-button:hover { transform: translateY(-1px); background: var(--paper); }

.page-hero { position: relative; overflow: hidden; padding-block: 82px; color: #fff; background: linear-gradient(132deg, #0b1117, #26323d); }
.page-hero::after { content: ""; position: absolute; width: 380px; height: 380px; right: -90px; top: -160px; border-radius: 50%; background: rgba(183,31,43,.5); filter: blur(2px); }
.page-hero .wrap { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(2.25rem, 5.5vw, 4.4rem); }
.page-hero p:not(.breadcrumb):not(.eyebrow) { max-width: 730px; color: #d2d9df; }
.breadcrumb { margin: 0 0 16px; color: #c9d0d6; font-size: .76rem; }
.breadcrumb a { color: #fff; }
.prose { max-width: 860px; }
.prose h2 { margin-top: 2.2em; font-size: clamp(1.55rem, 3vw, 2.15rem); }
.prose h3 { margin-top: 1.7em; }
.prose p, .prose li { color: var(--ink-soft); }
.prose li + li { margin-top: .45rem; }
.notice { padding: 20px 22px; border-left: 4px solid var(--gold); background: #fff; }
.content-grid { display: grid; grid-template-columns: minmax(0,1fr) 320px; gap: 56px; align-items: start; }
.side-card { position: sticky; top: 104px; padding: 24px; border: 1px solid var(--line); border-radius: 16px; background: #fff; box-shadow: var(--shadow-soft); }
.side-card h2 { font-size: 1.15rem; }
.side-card ul { margin: 16px 0 0; padding-left: 1.2rem; }
.side-card li + li { margin-top: 7px; }

.site-footer { padding-block: 56px 30px; color: #c7d0d8; background: #080d12; }
.footer-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 72px; }
.footer-brand strong { color: #fff; font-size: 1.2rem; }
.footer-brand p { max-width: 550px; margin: 10px 0 0; color: #9ba8b3; font-size: .84rem; }
.footer-links { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px 22px; }
.footer-links a, .footer-official a { color: #fff; font-size: .84rem; text-underline-offset: .2em; }
.footer-official { display: flex; flex-wrap: wrap; gap: 9px 22px; margin-top: 34px; padding-top: 24px; border-top: 1px solid #26313b; }
.footer-official span { color: var(--gold-light); font-size: .76rem; font-weight: 900; letter-spacing: .12em; }
.copyright { margin: 30px 0 0; color: #788692; font-size: .72rem; }

@media (max-width: 980px) {
  .site-nav { display: none; }
  .mobile-menu { display: block; }
  .hero-inner { grid-template-columns: 1fr; min-height: auto; gap: 46px; padding-block: 72px; }
  .hero-card { max-width: 680px; }
  .service-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .split-layout { grid-template-columns: 1fr; gap: 44px; }
  .profile-visual { max-width: 620px; }
  .content-grid { grid-template-columns: 1fr; }
  .side-card { position: static; }
}

@media (max-width: 700px) {
  .wrap, .header-inner { width: min(100% - 30px, 1160px); }
  .header-inner { min-height: 66px; }
  .brand span { font-size: 1rem; }
  .brand small { display: none; }
  .section { padding-block: 68px; }
  .hero-inner { padding-block: 58px; }
  h1 { font-size: clamp(2.35rem, 13vw, 4rem); }
  .hero-card { padding: 24px; }
  .actions { align-items: stretch; flex-direction: column; }
  .actions .button { width: 100%; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid > div:nth-child(3) { border-top: 1px solid var(--line); border-left: 0; }
  .trust-grid > div:nth-child(4) { border-top: 1px solid var(--line); }
  .service-grid, .process-grid, .safety-grid { grid-template-columns: 1fr; }
  .service-card, .service-card.featured { min-height: auto; }
  .process-grid li { min-height: auto; }
  .cta-band { grid-template-columns: 1fr; padding: 34px 25px; }
  .cta-band .button { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 420px) {
  body { font-size: 15px; }
  .wrap, .header-inner { width: min(100% - 24px, 1160px); }
  .mobile-menu summary { font-size: .78rem; }
  .trust-grid strong { font-size: .94rem; }
  .trust-grid span { font-size: .69rem; }
  .service-card { padding: 24px; }
  .profile-visual { min-height: 360px; }
  .step { grid-template-columns: 48px 1fr; gap: 14px; padding: 23px 20px; }
  .step > span { width: 42px; height: 42px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
