

@charset "UTF-8";

:root{
  /* LP6 palette: AlbaLink-inspired deep navy + green */
  --page:#f1f5f2;
  --paper:#ffffff;
  --paper-2:#f7faf7;
  --paper-3:#eef5ef;
  --ink:#13222d;
  --body:#334b43;
  --sub:#6c7f76;
  --line:#d5e1d9;
  --navy:#0b3d54;
  --navy-bright:#13516a;
  --navy-deep:#082f43;
  --navy-soft:#e8f0ed;
  --blue:#3f8a69;
  --red:#df3338;
  --red-deep:#ad2027;
  --marker:#fff7c9;
  --warn:#fff4ef;
  --ok:#edf6ee;
  --ok-ink:#2f6f50;
  --shadow:0 18px 48px rgba(18,51,72,.10);

  /* Typography scale */
  --fs-body:16px;
  --fs-note:13px;
  --fs-small-head:19px;
  --fs-head:23px;
  --fs-catch:27px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:var(--page);
  color:var(--body);
  font-family:"Noto Sans JP","Hiragino Kaku Gothic ProN","Yu Gothic",Meiryo,sans-serif;
  font-weight:400;
  font-size:var(--fs-body);
  line-height:1.9;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
a{color:inherit}
img{display:block;max-width:100%;height:auto}
button,input,textarea,select{font:inherit}

.page-bg{min-height:100vh;padding:0}
.lp-shell{
  width:min(100%,430px);
  margin:0 auto;
  background:var(--paper);
  box-shadow:var(--shadow);
  overflow:hidden;
}
.doc{background:var(--paper)}

.media-head{background:#fff;border-bottom:1px solid var(--line)}
.media-head__inner{
  max-width:430px;
  margin:0 auto;
  padding:14px 12px 13px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}
.media-head__brand{display:block;color:var(--navy);font-size:13px;font-weight:800;letter-spacing:.02em;white-space:nowrap}
.media-head__pr{display:block;color:#87958e;font-size:10.5px;line-height:1.45;text-align:right}

section{padding:42px 26px}
.content-section{position:relative}
.content-section + .content-section{border-top:1px solid rgba(216,226,232,.55)}
.stack{display:flex;flex-direction:column;gap:17px}
.tone{background:linear-gradient(180deg,#f7faf7 0%,#eef5ef 100%)}

h1,h2,h3{
  margin:0;
  color:var(--ink);
  font-family:"Shippori Mincho",serif;
  line-height:1.5;
  text-wrap:balance;
}
h2{margin-bottom:3px;font-size:var(--fs-head);font-weight:800;letter-spacing:.01em}
h3{font-size:var(--fs-small-head);font-weight:700}
p{margin:0 0 1.05em}
p:last-child{margin-bottom:0}
strong{color:var(--ink);font-weight:700}
.mk{background:linear-gradient(transparent 60%,var(--marker) 60%);color:var(--ink);font-weight:900}
.num{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-variant-numeric:tabular-nums;font-weight:700}
.eyebrow{font-size:11px;font-weight:700;letter-spacing:.18em}

/* FV */
.fv{
  --fv-pad:12px;
  padding:24px var(--fv-pad) 22px;
  background:#edf5ef;
  color:var(--body);
}
.fv > .eyebrow,
.fv > .fv-note,
.fv > .trust{
  max-width:430px;
  margin-left:auto;
  margin-right:auto;
}
.fv .eyebrow{
  position:relative;
  z-index:3;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin:0 auto;
  padding:8px 18px;
  border:2px solid #b9d7c3;
  border-radius:999px;
  background:#fff;
  color:var(--blue);
  font-family:"Noto Sans JP",sans-serif;
  font-size:14px;
  font-weight:700;
  letter-spacing:.10em;
  box-shadow:0 7px 16px rgba(17,63,91,.09);
  transform:translateY(12px);
}
.fv .eyebrow::after{
  content:"";
  position:absolute;
  left:24px;
  bottom:-9px;
  width:14px;
  height:14px;
  background:#fff;
  border-right:2px solid #b9d7c3;
  border-bottom:2px solid #b9d7c3;
  transform:rotate(45deg);
}
.fv-copy{
  margin:0 calc(-1 * var(--fv-pad)) 0;
}
.fv h1{
  padding:22px 10px 14px;
  border-top:2px solid #8dbda1;
  border-bottom:2px solid #8dbda1;
  background:linear-gradient(180deg,#f2f8f3 0%,#ffffff 100%);
  color:#124e68;
  font-family:"Noto Sans JP",sans-serif;
  font-size:29px;
  font-weight:900;
  line-height:1.38;
  letter-spacing:.005em;
  text-align:center;
}
.fv-title__top,.fv-title__bottom{display:block;position:relative;z-index:1}
.fv-title__bottom{
  width:fit-content;
  margin:0 auto;
  color:#124e68;
  background:linear-gradient(transparent 61%,var(--marker) 61%);
}
.fv .lede{
  margin:0;
  padding:15px 12px 16px;
  background:#e8f3eb;
  color:var(--ink);
  text-align:center;
  font-family:"Noto Sans JP",sans-serif;
  font-size:18px;
  font-weight:900;
  line-height:1.62;
}
.fv .lede strong{color:var(--blue);font-weight:900}
.fv .lede mark,
.fv .lede .lede__mark{
  padding:0 .12em;
  background:linear-gradient(transparent 58%,var(--marker) 58%);
  color:#2f7354;
  font-weight:900;
}
.fv-note{
  margin:12px auto 0;
  padding:12px 13px 13px;
  border:1px solid #d0e2d6;
  border-radius:12px;
  background:rgba(255,255,255,.72);
  color:#4f635a;
  font-family:"Noto Sans JP",sans-serif;
  font-size:14px;
  font-weight:400;
  line-height:1.8;
  text-align:left;
  font-feature-settings:"palt" 1;
  font-kerning:normal;
}
.fv-note strong{color:var(--navy);font-weight:700}
.fv-art{
  margin:18px calc(-1 * var(--fv-pad)) 0;
}
.fv-art img{
  width:100%;
  background:#fff;
  border:4px solid #fff;
  box-shadow:0 18px 34px rgba(17,63,91,.22);
}
.trust{
  max-width:430px;
  margin:18px auto 0;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}
.trust div{
  position:relative;
  overflow:hidden;
  padding:15px 10px 14px;
  border:1px solid #bfd9c8;
  border-radius:16px;
  background:linear-gradient(180deg,#ffffff 0%,#eef7f0 100%);
  color:var(--ink);
  text-align:center;
  font-size:11px;
  line-height:1.4;
  box-shadow:0 10px 22px rgba(17,63,91,.09);
}
.trust div::before{
  content:"";
  position:absolute;
  inset:0 0 auto 0;
  height:5px;
  background:linear-gradient(90deg,#9fcbae 0%,#5f9f7b 50%,#b4d9bd 100%);
}
.trust span{
  display:inline-block;
  margin:0 0 8px;
  padding:4px 10px;
  border-radius:999px;
  background:#eaf4ec;
  color:#60766c;
  font-size:11.5px;
  font-weight:700;
  letter-spacing:.04em;
}
.trust b{
  display:block;
  color:#0f4e68;
  font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;
  font-size:32px;
  line-height:1;
  font-weight:800;
  letter-spacing:-.04em;
  text-shadow:0 1px 0 rgba(255,255,255,.9);
}
.trust__unit{font-size:.44em;font-style:normal;font-weight:800;margin-left:2px;vertical-align:.12em;letter-spacing:0}
.trust__text{font-size:24px!important;letter-spacing:.01em!important}
.trust__review{font-size:36px!important}
.trust__star{font-style:normal;font-size:.62em;margin-right:2px;vertical-align:.08em;color:#e0a500}
.trust small strong{font-size:1em;font-weight:800;color:var(--ink)}
.trust small{
  display:block;
  margin-top:6px;
  color:var(--ink);
  font-size:10.5px;
  line-height:1.4;
}

.byline{
  position:relative;
  padding:15px 16px 15px 18px;
  border:1px solid #d7e4db;
  border-radius:0;
  background:linear-gradient(180deg,#ffffff 0%,#f5f8f5 100%);
  box-shadow:none;
  color:#667b71;
  font-size:13.5px;
  line-height:1.85;
}
.byline::before{
  content:"";
  position:absolute;
  left:0;
  top:14px;
  bottom:14px;
  width:4px;
  border-radius:0 4px 4px 0;
  background:#5f9f7b;
}
h2.lead-q{
  font-family:"Noto Sans JP",sans-serif;
  font-size:var(--fs-catch);
  font-weight:900;
  line-height:1.55;
  letter-spacing:.01em;
  color:#142d43;
}
.intro-text{
  padding:17px 18px;
  border-radius:0;
  background:#f4f6f7;
  color:#334b43;
  font-size:14px;
  line-height:1.95;
}

.stack > p,
.stack > .byline{
  max-width:34em;
}

/* Manga */
.manga-sec{padding:26px 0;background:#fff}
.manga-sec .intro{margin:0 26px 18px;max-width:34em;line-height:1.9}
.manga-sec .intro--after{margin:18px 26px 0}
.story-label{display:flex;align-items:center;justify-content:center;gap:5px;margin:0 0 14px;color:var(--navy);font-family:"Noto Sans JP",sans-serif;font-weight:900;letter-spacing:.08em}
.story-label span{font-size:15px;font-weight:900;letter-spacing:.16em}
.story-label b{font-size:24px;font-variant-numeric:tabular-nums;line-height:1}
.manga{display:flex;flex-direction:column;gap:12px;background:transparent}
.manga img{width:100%;background:#fff;border:4px solid #fff;box-shadow:0 18px 34px rgba(17,63,91,.18)}

/* CTA */
.cta-area{margin:5px 0 0;text-align:center}
.cta-area__lead{margin:0 0 11px;color:var(--ink);font-family:"Shippori Mincho",serif;font-weight:700;line-height:1.6}
.cta-area__lead::before,.cta-area__lead::after{content:"";display:inline-block;width:16px;height:1px;margin:0 9px;background:#9fb6aa;vertical-align:middle;transform:rotate(55deg)}
.cta-area__lead::after{transform:rotate(-55deg)}
.cta{
  position:relative;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  min-height:72px;
  padding:15px 56px 15px 24px;
  overflow:hidden;
  border-radius:10px;
  background:linear-gradient(180deg,#ed4449 0%,var(--red) 55%,#ca272d 100%);
  box-shadow:0 5px 0 var(--red-deep),0 12px 24px rgba(130,20,25,.20);
  color:#fff;
  text-decoration:none;
  transition:transform .16s ease,box-shadow .16s ease;
}
.cta::after{content:"›";position:absolute;right:24px;top:50%;transform:translateY(-53%);font-size:34px;font-weight:400;line-height:1}
.cta::before{content:"";position:absolute;top:-40%;left:-40%;width:20%;height:185%;background:linear-gradient(90deg,transparent,rgba(255,255,255,.55),transparent);transform:skewX(-22deg);animation:shine 4s ease-in-out infinite;pointer-events:none}
.cta:hover{transform:translateY(1px);box-shadow:0 4px 0 var(--red-deep),0 9px 20px rgba(130,20,25,.18)}
.cta:focus-visible{outline:3px solid #ffd75f;outline-offset:3px}
.cta__main{font-size:19px;font-weight:800;line-height:1.35}
.cta small{display:block;margin-top:3px;font-size:11.5px;font-weight:500;opacity:.95}
.cta-area__note{margin:11px 0 0;color:var(--sub);line-height:1.7}
@keyframes shine{0%,45%{left:-40%;opacity:0}52%{opacity:1}72%{left:125%;opacity:1}73%,100%{left:125%;opacity:0}}

/* Lists */
.check{display:flex;flex-direction:column;gap:10px;margin:0;padding:0;list-style:none}
.check li{
  position:relative;
  display:block;
  padding:15px 16px 15px 50px;
  border:1px solid #dfe8e1;
  border-radius:6px;
  background:#fff;
  
  line-height:1.75;
}
.check li::before{
  content:"";
  position:absolute;
  left:16px;
  top:18px;
  width:22px;
  height:22px;
  border-radius:4px;
  background:#edf6ef;
  border:1px solid #c1dac9;
}
.check li::after{
  content:"";
  position:absolute;
  left:23px;
  top:23px;
  width:6px;
  height:11px;
  border-right:2px solid var(--blue);
  border-bottom:2px solid var(--blue);
  transform:rotate(40deg);
}
.targets{display:grid;grid-template-columns:1fr 1fr;gap:10px;margin:0;padding:0;list-style:none}
.targets li{
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:54px;
  padding:10px 12px;
  border:1px solid #c9dfcf;
  border-radius:8px;
  background:linear-gradient(180deg,#ffffff 0%,#f4f9f5 100%);
  box-shadow:0 6px 14px rgba(17,63,91,.05);
  color:var(--navy);
  
  font-weight:700;
  line-height:1.5;
  text-align:center;
}

.reasons{display:flex;flex-direction:column}
.reason{display:grid;grid-template-columns:auto 1fr;gap:0 13px;padding:18px 0;border-bottom:1px solid var(--line)}
.reason:first-child{border-top:1px solid var(--line)}
.reason .n{display:grid;place-items:center;grid-row:span 2;width:28px;height:28px;border-radius:50%;background:var(--navy);color:#fff;font-family:"Shippori Mincho",serif;font-size:13px;font-weight:700}
.reason p{grid-column:2;margin:4px 0 0;color:var(--body);line-height:1.8}
.reasons h3{
      text-wrap:inherit;
}
/* Tables */
.scroller{overflow-x:auto;-webkit-overflow-scrolling:touch;border:1px solid var(--line);border-radius:6px}
table{width:100%;min-width:420px;border-collapse:collapse;background:#fff;font-size:13.5px}
th,td{padding:11px 10px;border-bottom:1px solid var(--line);text-align:left;vertical-align:top;line-height:1.65}
thead th{background:#f2f6f3;color:var(--ink);font-family:"Shippori Mincho",serif;font-size:13px;white-space:nowrap}
thead th.hl{background:var(--navy);color:#fff}
tbody th{width:7em;color:var(--sub);font-size:12.5px;font-weight:500;white-space:nowrap}
td.hl{background:var(--ok);color:var(--ok-ink);font-weight:700}
td .yen{color:var(--ink);font-family:"Shippori Mincho",serif;font-size:15px;font-variant-numeric:tabular-nums}
tr.total th,tr.total td{border-top:2px solid var(--navy);border-bottom:0}
tr.total .yen{color:var(--red);font-size:21px;font-weight:800}
tr.total td.hl .yen{color:var(--ok-ink)}

/* Fee */
.fee{overflow:hidden;border:2px solid var(--navy);border-radius:6px}
.fee-hd{padding:10px 14px;background:var(--navy);color:#fff;font-family:"Shippori Mincho",serif;font-size:15px;font-weight:700}
.fee ul{margin:0;padding:4px 14px 11px;list-style:none}
.fee li{display:flex;align-items:baseline;justify-content:space-between;gap:12px;padding:10px 0;border-bottom:1px dotted var(--line);font-family:"Shippori Mincho",serif;font-weight:800;white-space:nowrap}
.burden{margin-top:-17px;padding:18px 15px;border:1px solid #ead5ca;border-top:0;border-radius:0 0 6px 6px;background:var(--warn)}
.burden h3{margin:0 0 14px;color:#b22f31;font-family:"Noto Sans JP",sans-serif;font-size:19px;font-weight:900;line-height:1.5}
.burden p{line-height:1.82}
.tbd{padding:0 5px;border-radius:2px;background:var(--marker);color:#5f4900;font-weight:800}

/* Government */
.gov{display:flex;flex-direction:column}
.gov-row{padding:16px 0;border-bottom:1px solid var(--line)}
.gov-row:first-child{border-top:1px solid var(--line)}
.gov-q{display:grid;grid-template-columns:auto 1fr;gap:10px;align-items:start;color:var(--ink);font-weight:700;line-height:1.65}
.gov-q b{margin-top:2px;padding:3px 7px;border-radius:3px;background:var(--navy);color:#fff;font-family:"Shippori Mincho",serif;white-space:nowrap}
.gov-a{margin:8px 0 0 0;padding-left:38px;color:var(--body);line-height:1.82}
.gov-a::before{content:"→ ";color:var(--red);font-weight:800}

/* Deadline */
.deadline{overflow:hidden;border:2px solid #c8383d;border-radius:6px}
.deadline-hd{padding:9px 14px;background:#c8383d;color:#fff;font-family:"Shippori Mincho",serif;font-weight:700}
.deadline-bd{padding:15px 14px;line-height:1.82}
.deadline-bd .day{display:block;margin:4px 0 8px;color:#bd2b30;font-family:"Shippori Mincho",serif;font-size:22px;font-weight:800;font-variant-numeric:tabular-nums}

/* Voice */
.voice{padding:18px 16px;border:1px solid #d8e4da;border-radius:8px;background:#fff;box-shadow:0 5px 16px rgba(19,63,91,.04)}
.voice q{display:block;color:var(--ink);font-family:"Shippori Mincho",serif;font-weight:800;line-height:1.65;quotes:"「" "」"}
.voice .who{margin-top:10px;color:var(--sub);line-height:1.7}
.voice p{margin:10px 0 0;line-height:1.85}
.voice.long p{margin:0 0 .85em}
.voice.long .who{margin-bottom:12px}

/* Steps: current styles are consolidated below */
.flow{margin:0;padding:0;border-top:1px solid var(--line);list-style:none}
.flow li{display:grid;grid-template-columns:auto 1fr;gap:0 12px;padding:13px 2px;border-bottom:1px solid var(--line);line-height:1.78}
.flow li b{height:fit-content;margin-top:3px;padding:2px 7px;border:1px solid var(--blue);border-radius:3px;color:var(--blue);font-family:"Shippori Mincho",serif;font-size:11px;white-space:nowrap}

/* Q&A */
.qa{border-top:1px solid var(--line)}
.qa details{border-bottom:1px solid var(--line)}
.qa summary{position:relative;padding:15px 31px 15px 27px;cursor:pointer;list-style:none;color:var(--ink);font-weight:700;line-height:1.7}
.qa summary::-webkit-details-marker{display:none}
.qa summary::before{content:"Q";position:absolute;left:0;top:15px;color:var(--red);font-family:"Shippori Mincho",serif;font-size:15px}
.qa summary::after{content:"＋";position:absolute;right:4px;top:15px;color:var(--sub);font-size:14px}
.qa details[open] summary::after{content:"−"}
.qa summary:focus-visible{outline:2px solid var(--blue);outline-offset:-2px}
.qa .a{position:relative;padding:0 4px 17px 27px;line-height:1.88}
.qa .a::before{content:"A";position:absolute;left:0;top:0;color:var(--blue);font-family:"Shippori Mincho",serif;font-size:15px}

/* Closing */
.closing{padding:44px 26px;background:linear-gradient(160deg,var(--navy-deep),#164e6e);color:#e8f0ed;text-align:center}
.closing h2{color:#fff;font-size:24px}
.closing p{color:#d9e7de;text-align:left}
.closing .cta-area__lead{color:#fff}
.closing .cta-area__lead::before,.closing .cta-area__lead::after{background:rgba(255,255,255,.5)}
.closing .cta-area__note{color:#b4cec0}

/* Footer */
.site-footer{padding:28px 22px 30px;background:#0b455d;color:#d7e3e9;text-align:center;font-size:12px;line-height:1.75}
.site-footer__operator span{font-size:10.5px;color:#91a69d}
.site-footer nav{display:flex;justify-content:center;gap:18px;margin:14px 0 12px;flex-wrap:wrap}
.site-footer a{color:#fff;text-underline-offset:3px}
.site-footer small{color:#8ba197}


@media (min-width:431px){
  .fv .lede{font-size:23px}
}

@media (max-width:680px){
  .page-bg{padding:0}
  .lp-shell{width:100%;box-shadow:none}
}

@media (max-width:430px){
  section{padding:36px 21px}
  .media-head__inner{padding-left:12px;padding-right:12px;gap:10px}
  .media-head__brand{font-size:12.5px}
  .media-head__pr{font-size:10px}
  .fv{--fv-pad:8px;padding:22px var(--fv-pad) 20px}
  .fv h1{font-size:27px;padding-top:21px}
  .fv .lede{font-size:17px;padding:14px 10px 15px}
  .fv-note{padding:11px 12px 12px;font-size:13.5px}
  .trust{gap:9px}
  .trust b{font-size:30px}
  .byline{padding:14px 14px 14px 17px;font-size:13px}
  .intro-text{padding:15px 16px;font-size:13px}
  .manga-sec .intro{margin-left:21px;margin-right:21px}
  .manga-sec .intro--after{margin-left:21px;margin-right:21px}
  .cta__main{font-size:18px}
  .cta{padding-left:18px;padding-right:52px}
  .closing{padding:38px 21px}
  .closing h2{font-size:22px}
}

@media (max-width:360px){
  .fv h1{font-size:24px}
  .fv .lede{font-size:15.5px}
  .trust div{font-size:10px;padding:12px 8px 11px}
  .trust b{font-size:27px}
  .flow li{grid-template-columns:1fr;gap:6px}
  .flow li b{justify-self:start}
}

@media (prefers-reduced-motion:reduce){
  html{scroll-behavior:auto}
  *,*::before,*::after{animation:none!important;transition:none!important}
}

.story-label::before,.story-label::after{content:"--";color:#628f77;font-size:18px;font-weight:700;letter-spacing:-.08em}


.targets-head{
  position:relative;
  margin-top:10px;
  padding-left:12px;
  color:#0b3d54;
  font-family:"Noto Sans JP",sans-serif;
  
  font-weight:900;
  line-height:1.5;
}
.targets-head::before{
  content:"";
  position:absolute;
  left:0;
  top:.28em;
  bottom:.28em;
  width:4px;
  background:#5f9f7b;
  border-radius:4px;
}
.targets-note{
  margin:2px 0 0;
  color:var(--body);
  
  line-height:1.85;
}
.targets-note strong{
  font-weight:900;
  background:linear-gradient(transparent 58%, rgba(255,240,166,.92) 58%);
}


/* Heading alignment */
h2{ text-align:center; }

/* Reasons section */
.reasons-section,
.reasons-section h2,
.reasons-section h3,
.reasons-section p{
  font-family:"Noto Sans JP",sans-serif;
}
.reasons-section h3{font-weight:700}
.reason-summary{
  margin:8px auto 0;
  color:var(--ink);
  font-family:"Noto Sans JP",sans-serif!important;
  
  font-weight:900;
  line-height:1.75;
  text-align:center;
}
.reason-summary .mk{font-weight:900}
.table-note{
  margin-top:0;
  color:var(--sub);
  
  line-height:1.7;
}

@media (min-width:431px){
  .scroller{overflow-x:visible}
  .scroller table{
    width:100%;
    min-width:0;
    table-layout:fixed;
    font-size:13px;
  }
  .scroller th,.scroller td{
    padding:9px 6px;
    overflow-wrap:anywhere;
    word-break:normal;
  }
  .scroller thead th{font-size:12px;white-space:normal}
  .scroller tbody th{width:26%;font-size:12px;white-space:normal}
  .scroller td .yen{font-size:15px}
  .scroller tr.total .yen{font-size:20px}
  .reason-summary{
  }
}
.scroller table tbody th,
.scroller table thead th:first-child{
  border-right:1px solid #d6dfd8;
}
.scroller table td:not(:last-child),
.scroller table thead th:not(:last-child){
  border-right:1px solid #e0e7e2;
}
.scroller table tbody th{vertical-align:middle}

/* Fee detail cards */
.fee-detail-card{
  padding:20px 18px;
  border:1px solid #d6e2d8;
  border-radius:0;
  background:linear-gradient(180deg,#ffffff 0%,#f4f8f5 100%);
  box-shadow:none;
}
.fee-detail-card p{
  margin:0;
}
.fee-detail-title{
  margin:0 0 14px;
  padding:0 0 10px;
  border-bottom:2px solid #6fa783;
  color:#0b3d54;
  font-family:"Noto Sans JP",sans-serif;
  
  font-weight:900;
  line-height:1.5;
}
.fee-guarantee{
  color:var(--ink);
  font-family:"Noto Sans JP",sans-serif;
  
  font-weight:900;
  line-height:1.75;
  text-align:center;
}

/* Government caution cards */
.gov{gap:12px}
.gov-row{
  padding:17px 16px 18px;
  border:1px solid #d6e4da!important;
  border-radius:8px;
  background:linear-gradient(135deg,#edf6ef 0%,#ffffff 72%);
  box-shadow:0 7px 16px rgba(17,63,91,.045);
}
.gov-q{
  gap:11px;
  font-family:"Noto Sans JP",sans-serif;
  
  font-weight:900;
  line-height:1.65;
}
.gov-q b{
  margin-top:0;
  padding:5px 8px;
  border-radius:4px;
  font-family:"Noto Sans JP",sans-serif;
  
  font-weight:900;
}
.gov-a{
  margin-top:10px;
  padding-left:38px;
  font-family:"Noto Sans JP",sans-serif;
  
  line-height:1.9;
}
.association-head{
  position:relative;
  width:fit-content;
  max-width:100%;
  margin:8px auto 2px;
  padding:13px 18px;
  border-radius:9px;
  background:#0d455d;
  color:#fff;
  font-family:"Noto Sans JP",sans-serif;
  width: 100%;
  font-weight:900;
  line-height:1.55;
  text-align:center;
  box-shadow:0 8px 18px rgba(12,82,123,.14);
}
.association-head::after{
  content:"";
  position:absolute;
  left:50%;
  bottom:-9px;
  width:18px;
  height:18px;
  background:#0d455d;
  transform:translateX(-50%) rotate(45deg);
  border-radius:2px;
}

/* Deadline */
.deadline-hd{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:11px;
  padding:15px 14px;
  font-family:"Noto Sans JP",sans-serif;
  
  font-weight:900;
  line-height:1.45;
  text-align:center;
}
.deadline-alert{
  display:grid;
  place-items:center;
  flex:none;
  width:30px;
  height:30px;
  border:2px solid #fff;
  border-radius:50%;
  color:#fff;
  font-family:Arial,sans-serif;
  font-size:20px;
  font-weight:900;
  line-height:1;
}
.deadline-bd .day{
  text-align:center;
}
.deadline-bd .day span{
  display:inline-block;
  padding-bottom:3px;
  border-bottom:3px solid #bd2b30;
}

/* Voices */
.voice-section{
  background:linear-gradient(180deg,#f0f6f1 0%,#fafcf9 100%);
}
.voice-title{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  padding-bottom:13px;
  border-bottom:2px solid #8fb99b;
}
.voice-title::before{
  content:"";
  flex:none;
  width:42px;
  height:42px;
  border-radius:50%;
  background:
    radial-gradient(circle at 50% 34%, #0d455d 0 18%, transparent 19%),
    radial-gradient(ellipse at 50% 83%, #0d455d 0 34%, transparent 35%),
    #e2f0e6;
  box-shadow:inset 0 0 0 1px #c3dccb;
}
.voice{
  position:relative;
  padding:21px 18px 20px;
  border:1px solid #d7e4da;
  border-radius:9px;
  background:#fff;
  box-shadow:0 9px 22px rgba(17,63,91,.06);
}
.voice::before{
  content:"VOICE";
  position:absolute;
  top:-10px;
  left:16px;
  padding:3px 9px;
  border-radius:4px;
  background:#0d455d;
  color:#fff;
  font-family:"Helvetica Neue",Arial,sans-serif;
  font-size:10px;
  font-weight:700;
  letter-spacing:.12em;
}
.voice q{
  font-family:"Noto Sans JP",sans-serif;
  
  font-weight:900;
}
.voice .who{
  padding:7px 10px;
  border-left:3px solid #76a98a;
  background:#f5f9f6;
}

@media (max-width:430px){
  .fee-detail-card{padding:18px 15px}
  .fee-detail-title{padding-left:0}
  .association-head{padding:12px 15px}
  .deadline-hd{
    height:auto;
    min-height:58px;
    padding:11px 12px;
    gap:8px;
    line-height:1.35;
  }
  .deadline-hd br{display:block}
  .deadline-alert{
    width:28px;
    height:28px;
    font-size:18px;
  }
}

.fee-guarantee{
  margin:2px 0;
  padding:4px 0;
  background:none;
  border:0;
  box-shadow:none;
}


/* =========================================================
   Typography system — consolidated
   PC: body 16 / note 13 / small heading 19 / heading 23 / catch 27
   Mobile: slightly smaller while preserving hierarchy
   ========================================================= */
.content-section h2:not(.lead-q),
.closing h2{
  font-family:"Noto Sans JP",sans-serif;
  font-size:var(--fs-head);
  font-weight:900;
}

h2.lead-q{
  font-size:var(--fs-catch);
}

.content-section h3:not(.association-head):not(.targets-head):not(.fee-detail-title):not(.flow-head),
.burden h3,
.targets-head,
.fee-detail-title,
.association-head,
.deadline-hd,
.flow-head{
  font-size:var(--fs-small-head);
}

.content-section > p:not(.byline):not(.source-note):not(.table-note):not(.fee-guarantee),
.manga-sec .intro,
.check li,
.targets li,
.reason p,
.fee li,
.burden p,
.burden-list,
.gov-a,
.deadline-bd,
.voice p,
.step p,
.flow li,
.qa summary,
.qa .a,
.closing p{
  font-size:var(--fs-body);
}

.byline,
.source-note,
.table-note,
.voice .who,
.cta-area__note,
.site-footer,
.site-footer__operator{
  font-size:var(--fs-note);
}

.gov-q,
.voice q{
  font-size:18px;
}
.gov-q b{font-size:12px}

.cta-area__lead{font-size:16px}
.cta__main{font-size:19px}

.reason-summary{font-size:18px}
.fee-guarantee{font-size:20px}

.burden-list{
  margin:0 0 1em;
  padding-left:1.3em;
  line-height:1.85;
}
.source-note{
  color:var(--sub);
  line-height:1.7;
}
.flow-head{
  margin-top:8px;
  font-family:"Noto Sans JP",sans-serif;
  font-weight:900;
}

/* Tables are information-dense, so they intentionally use the note scale. */
table{font-size:13.5px}
thead th{font-size:13px}
tbody th{font-size:12.5px}

@media (max-width:430px){
  :root{
  /* LP6 palette: AlbaLink-inspired deep navy + green */
    --fs-body:15px;
    --fs-note:12px;
    --fs-small-head:17px;
    --fs-head:21px;
    --fs-catch:24px;
  }
  .content-section h2:not(.lead-q),
  .closing h2{font-size:var(--fs-head)}
  h2.lead-q{font-size:var(--fs-catch)}
  .gov-q,.voice q{font-size:16px}
  .gov-q b{font-size:11px}
  .reason-summary,.fee-guarantee{font-size:17px}
  .cta-area__lead{font-size:15px}
  .cta__main{font-size:18px}
  table{font-size:12.5px}
  thead th{font-size:12px}
  tbody th{font-size:12px}
  .gov-a{padding-left:0}
}

@media (max-width:360px){
  :root{
  /* LP6 palette: AlbaLink-inspired deep navy + green */
    --fs-body:14.5px;
    --fs-note:11.5px;
    --fs-small-head:16px;
    --fs-head:20px;
    --fs-catch:22px;
  }
}


/* Legacy STEP pseudo badge must stay disabled: real badge is .step-badge. */
.step::before{
  content:none!important;
  display:none!important;
}

/* =========================================================
   Steps / FAQ / Closing polish v13
   ========================================================= */

/* Step heading follows the common large-heading system. */
.steps{
  display:flex;
  flex-direction:column;
  gap:0;
  margin-top:6px;
}
.step{
  display:grid;
  grid-template-columns:72px minmax(0,1fr);
  gap:0 14px;
  padding:24px 0 26px;
  border-bottom:1px solid #d6e2d9;
  align-items:start;
}
.step:first-child{padding-top:10px}
.step-badge{
  width:64px;
  min-height:78px;
  padding:9px 5px 12px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  background:linear-gradient(180deg,#5ea77c 0%,#3f825f 100%);
  color:#fff;
  text-align:center;
  border-radius:4px;
}
.step:not(:last-child) .step-badge{
  min-height:86px;
  padding-bottom:20px;
  clip-path:polygon(0 0,100% 0,100% 74%,50% 100%,0 74%);
  border-radius:0;
}
.step-badge span{
  display:block;
  font-family:"Noto Sans JP",sans-serif;
  font-size:11px;
  font-weight:900;
  line-height:1.05;
  letter-spacing:.02em;
}
.step-badge b{
  display:block;
  margin-top:5px;
  font-family:"Anton","Helvetica Neue",Helvetica,Arial,sans-serif;
  font-size:30px;
  font-weight:400;
  line-height:1;
  letter-spacing:.01em;
}
.step-body{min-width:0}
.step h3{
  margin:0 0 9px;
  padding:9px 12px 9px 18px;
  border-top:1px solid #d9dfdb;
  border-right:1px solid #d9dfdb;
  border-bottom:1px solid #d9dfdb;
  border-left:6px solid #799488;
  background:#fff;
  color:#0b455d;
  font-family:"Noto Sans JP",sans-serif;
  font-size:20px!important;
  font-weight:700;
  line-height:1.45;
}
.step p{
  margin:0;
  color:var(--body);
  font-family:"Noto Sans JP",sans-serif;
  font-size:14px!important;
  line-height:1.9;
}
.flow-head{
  margin-top:18px!important;
  text-align:center;
}
.flow{
  margin:0;
  padding:0;
  border-top:1px solid var(--line);
  list-style:none;
}
.flow li{
  display:block;
  padding:16px 2px 17px;
  border-bottom:1px solid var(--line);
  font-family:"Noto Sans JP",sans-serif;
  font-size:14px!important;
  line-height:1.9;
}
.flow li b{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin:0 0 9px;
  padding:5px 10px;
  border:1px solid var(--blue);
  border-radius:4px;
  color:var(--blue);
  background:#fff;
  font-family:"Noto Sans JP",sans-serif;
  font-size:15px!important;
  font-weight:700;
  line-height:1.2;
  white-space:normal;
}
.flow li span{display:block}

/* FAQ icons: larger colored blocks instead of tiny letters. */
.qa{border-top:1px solid var(--line);margin-top:8px}
.qa details{border-bottom:1px solid var(--line)}
.qa summary{
  position:relative;
  padding:18px 36px 18px 48px;
  cursor:pointer;
  list-style:none;
  color:var(--ink);
  font-family:"Noto Sans JP",sans-serif;
  font-weight:700;
  line-height:1.7;
}
.qa summary::before{
  content:"Q";
  position:absolute;
  left:4px;
  top:17px;
  display:grid;
  place-items:center;
  width:30px;
  height:30px;
  border-radius:4px;
  background:#0b4b65;
  color:#fff;
  font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;
  font-size:18px;
  font-weight:800;
  line-height:1;
}
.qa summary::after{right:4px;top:19px;font-size:16px}
.qa .a{
  position:relative;
  padding:0 4px 20px 48px;
  line-height:1.9;
}
.qa .a::before{
  content:"A";
  position:absolute;
  left:4px;
  top:2px;
  display:grid;
  place-items:center;
  width:30px;
  height:30px;
  border-radius:4px;
  background:#3f8a69;
  color:#fff;
  font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;
  font-size:18px;
  font-weight:800;
  line-height:1;
}

/* Closing: bright, hopeful, cream-to-white. */
.closing{
  position:relative;
  overflow:hidden;
  padding:50px 28px 48px;
  background:linear-gradient(180deg,#eef7f0 0%,#f8fbf8 34%,#ffffff 100%);
  color:#0b3d54;
  text-align:center;
  border-top:1px solid #d8e6db;
}
.closing::before,
.closing::after{content:none!important}
.closing > *{position:relative;z-index:1}
.closing h2{
  color:#0b455d;
  font-family:"Noto Sans JP",sans-serif;
  font-weight:900;
  line-height:1.65;
  text-align:center;
}
.closing h2::after{content:none!important}
.closing p{
  color:#304b45;
  text-align:left;
  line-height:1.95;
}
.closing .cta-area{margin-top:10px}
.closing .cta-area__lead{
  color:#0d455d;
  text-align:center;
  font-family:"Noto Sans JP",sans-serif;
  font-weight:700;
}
.closing .cta-area__lead::before,
.closing .cta-area__lead::after{background:#7aa88b}
.closing .cta-area__note{
  margin-top:2em;
  color:#667d72;
  text-align:center;
  font-size:13px!important;
  line-height:1.6;
}
.closing .cta{
  border-radius:999px;
  background:linear-gradient(180deg,#f4464c 0%,#e62d34 100%);
  box-shadow:0 5px 0 #b91e25,0 12px 24px rgba(188,38,45,.18);
}

@media (max-width:430px){
  .step{grid-template-columns:62px minmax(0,1fr);gap:0 10px;padding:20px 0 22px}
  .step-badge{width:56px;min-height:70px;padding:8px 4px 10px}
  .step:not(:last-child) .step-badge{min-height:76px;padding-bottom:17px}
  .step-badge span{font-size:10px}
  .step-badge b{font-size:27px}
  .step h3{font-size:17px!important;padding:8px 9px 8px 13px}
  .step p{font-size:14px!important;line-height:1.85}
  .flow li{font-size:14px!important}
  .flow li b{font-size:15px!important}
  .qa summary{padding-left:44px}
  .qa .a{padding-left:44px}
  .qa summary::before,.qa .a::before{width:28px;height:28px;font-size:17px}
  .closing{padding:42px 21px 40px}
}

.pc-only{display:block}
@media (max-width:430px){.pc-only{display:none}}

.site-footer__operator span{color:#abc7b6}
.site-footer small{color:#a6c0b0}


/* Inline external links */
a.text-external-link{
  color:inherit;
  text-decoration:none;
}
a.text-external-link:hover{
  text-decoration:underline;
  text-underline-offset:.18em;
}
.external-link-icon{
  display:inline-block;
  width:.78em;
  height:.78em;
  margin-left: .2em;
  overflow:visible;
  vertical-align:middle;
  fill:none;
  stroke:currentColor;
  stroke-width:1.7;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.lede .external-link-icon{
  margin-left:-.5em;
}

.intro-section{
  padding-bottom: 0;
}

/* Google review prefix / suffix */
.trust__review{
  display:flex!important;
  align-items:baseline;
  justify-content:center;
  gap:3px;
  white-space:nowrap;
}
.trust__review-affix{
  font-family:"Noto Sans JP",sans-serif;
  font-size:10px;
  font-style:normal;
  font-weight:700;
  letter-spacing:0;
  color:#536c61;
}
