/*
Theme Name: Waku Salo Original Theme V22 New Life Planning
Theme URI: https://waku-salo.com/
Author: LP CRAFT
Description: 合同会社ニューライフプランニング向けLPテーマ。添付キービジュアルをヒーローに使用し、ネイビー×ゴールド×ライトブルーの信頼感ある色調へ調整したWordPressテーマです。
Version: 2.5.0
Text Domain: wakusalo-newlifeplanning
*/

:root{
  --phone:430px;
  --navy:#003b78;
  --navy2:#00285c;
  --navy3:#001a3f;
  --blue:#0a4d8f;
  --light:#eef8fb;
  --light2:#dff1f7;
  --white:#ffffff;
  --gold:#d7b24b;
  --gold2:#f2d675;
  --ink:#18263a;
  --text:#263345;
  --muted:#66758b;
  --line:rgba(0,59,120,.16);
  --shadow:0 18px 46px rgba(0,37,92,.13);
  --radius:24px;

  /* v15互換 */
  --black:var(--ink);
  --black2:var(--navy3);
  --charcoal:var(--navy2);
  --pink:var(--navy);
  --pink2:var(--gold);
  --red:var(--navy2);
  --rose:var(--light);
  --rose2:var(--light2);
  --cream:#f7fbfd;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  color:var(--text);
  font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI","Noto Sans JP","Hiragino Sans",sans-serif;
  background:
    radial-gradient(circle at 10% 0%,rgba(215,178,75,.20),transparent 28%),
    linear-gradient(180deg,#eaf7fb 0%,#ffffff 48%,#edf7fb 100%);
  overflow-x:hidden;
}
body.no-scroll{overflow:hidden}
a{color:inherit;text-decoration:none}
img{display:block;max-width:100%;height:auto}
button,input,textarea{font:inherit}

.nlp-shell{
  position:relative;
  width:min(100%,var(--phone));
  min-height:100vh;
  margin:0 auto;
  overflow:hidden;
  background:
    radial-gradient(circle at 93% 2%,rgba(215,178,75,.14),transparent 24%),
    linear-gradient(180deg,#f4fbfd 0%,#ffffff 32%,#f7fbfd 100%);
  box-shadow:0 0 0 1px rgba(0,59,120,.08),0 18px 80px rgba(0,31,73,.12);
}
.nlp-main{position:relative;z-index:1}

/* Header */
.nlp-header{
  position:fixed;
  z-index:70;
  top:0;
  left:50%;
  transform:translateX(-50%);
  width:min(100%,var(--phone));
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:10px 12px;
  pointer-events:none;
}
.nlp-brand,.nlp-menu-btn{pointer-events:auto}
.nlp-brand{
  display:flex;
  align-items:center;
  gap:8px;
  max-width:292px;
  padding:7px 10px;
  border:1px solid rgba(255,255,255,.70);
  border-radius:999px;
  color:#fff;
  background:rgba(0,43,94,.86);
  backdrop-filter:blur(14px);
  box-shadow:0 12px 28px rgba(0,31,73,.20);
}
.nlp-brand-mark{
  display:grid;
  place-items:center;
  flex:0 0 auto;
  width:33px;
  height:33px;
  border-radius:50%;
  background:linear-gradient(135deg,var(--gold2),var(--gold));
  color:var(--navy2);
  font-size:10px;
  font-weight:1000;
  letter-spacing:.05em;
}
.nlp-brand-text{
  display:flex;
  flex-direction:column;
  min-width:0;
  font-size:12px;
  font-weight:1000;
  line-height:1.08;
  letter-spacing:.04em;
}
.nlp-brand-text small{
  margin-top:3px;
  font-size:8px;
  font-weight:800;
  color:rgba(255,255,255,.78);
  overflow:hidden;
  white-space:nowrap;
  text-overflow:ellipsis;
}
.nlp-menu-btn{
  display:flex;
  align-items:center;
  gap:7px;
  border:0;
  border-radius:999px;
  padding:10px 12px;
  color:#fff;
  background:linear-gradient(135deg,var(--navy),var(--navy2));
  font-size:10px;
  font-weight:1000;
  letter-spacing:.08em;
  box-shadow:0 12px 28px rgba(0,43,94,.28);
}
.nlp-menu-lines,.nlp-menu-lines:before,.nlp-menu-lines:after{
  display:block;
  width:16px;
  height:2px;
  border-radius:3px;
  background:#fff;
  content:"";
}
.nlp-menu-lines:before{transform:translateY(-5px)}
.nlp-menu-lines:after{transform:translateY(3px)}

.nlp-drawer{
  position:fixed;
  z-index:80;
  inset:0;
  visibility:hidden;
  pointer-events:none;
}
.nlp-drawer.open{visibility:visible;pointer-events:auto}
.nlp-drawer-panel{
  position:absolute;
  right:calc((100vw - min(100vw,var(--phone))) / 2 + 12px);
  top:12px;
  width:min(86vw,320px);
  max-height:calc(100vh - 24px);
  overflow:auto;
  padding:22px;
  border:2px solid var(--navy);
  border-radius:28px;
  background:#fff;
  box-shadow:0 28px 80px rgba(0,31,73,.28);
  transform:translateX(112%);
  transition:.26s ease;
}
.nlp-drawer.open .nlp-drawer-panel{transform:translateX(0)}
.nlp-drawer-title{
  margin:0 0 14px;
  color:var(--gold);
  font-weight:1000;
  letter-spacing:.16em;
}
.nlp-drawer a,.nlp-drawer-close{
  display:flex;
  align-items:center;
  min-height:46px;
  width:100%;
  border:0;
  border-bottom:1px solid var(--line);
  background:transparent;
  color:var(--ink);
  font-weight:900;
  text-align:left;
}
.nlp-drawer a:before{
  content:"";
  width:7px;
  height:7px;
  margin-right:10px;
  border-radius:50%;
  background:var(--gold);
}
.nlp-drawer-cta{
  justify-content:center;
  margin-top:14px;
  border:0 !important;
  border-radius:999px;
  background:linear-gradient(135deg,var(--navy),var(--navy2)) !important;
  color:#fff !important;
}
.nlp-drawer-cta:before{display:none}
.nlp-drawer-close{
  justify-content:center;
  margin-top:8px;
  border:1px solid var(--line);
  border-radius:999px;
}
.nlp-backdrop{
  position:fixed;
  z-index:75;
  inset:0;
  background:rgba(0,25,57,.44);
  opacity:0;
  visibility:hidden;
  transition:.22s ease;
}
.nlp-backdrop.open{opacity:1;visibility:visible}

/* Buttons */
.btn{
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:54px;
  padding:14px 18px;
  border-radius:999px;
  font-size:14px;
  font-weight:1000;
  line-height:1.35;
  letter-spacing:.02em;
  text-align:center;
}
.btn-primary{
  color:#fff;
  background:linear-gradient(135deg,var(--navy),var(--navy2));
  border:1px solid rgba(255,255,255,.25);
  box-shadow:0 14px 30px rgba(0,59,120,.28);
}
.btn-sub{
  color:var(--navy);
  background:#fff;
  border:1px solid rgba(0,59,120,.18);
  box-shadow:0 12px 24px rgba(0,31,73,.08);
}
.btn-white{
  color:var(--navy);
  background:#fff;
  border:1px solid rgba(255,255,255,.72);
  box-shadow:0 14px 28px rgba(0,20,52,.22);
}
.btn-full{width:100%}

/* Hero */
.hero{
  position:relative;
  overflow:hidden;
  min-height:100vh;
  padding:72px 14px 40px;
  color:var(--ink);
  background:
    radial-gradient(circle at 98% 4%,rgba(113,171,76,.20),transparent 16%),
    radial-gradient(circle at 0% 98%,rgba(215,178,75,.18),transparent 22%),
    linear-gradient(180deg,#e9f7fb 0%,#ffffff 36%,#f6fbfd 100%);
}
.hero:before{
  content:"";
  position:absolute;
  inset:-30px -40px auto -40px;
  height:270px;
  background:
    radial-gradient(ellipse at 50% 0%,rgba(255,255,255,.82),rgba(255,255,255,.35) 58%,transparent 59%);
  transform:rotate(-3deg);
}
.hero:after{
  content:"";
  position:absolute;
  left:-82px;
  bottom:-70px;
  width:220px;
  height:220px;
  border-radius:50%;
  border:1px solid rgba(215,178,75,.38);
  box-shadow:0 0 0 24px rgba(215,178,75,.06);
}
.hero-glow{
  position:absolute;
  right:-92px;
  top:90px;
  width:230px;
  height:230px;
  border-radius:50%;
  background:radial-gradient(circle,rgba(0,59,120,.12),transparent 64%);
}
.hero-inner{
  position:relative;
  z-index:2;
}
.hero-keyvisual{
  position:relative;
  overflow:hidden;
  margin:0 0 22px;
  border-radius:0 0 32px 32px;
  background:#fff;
  box-shadow:0 18px 48px rgba(0,43,94,.18);
}
.hero-keyvisual:after{
  content:"";
  position:absolute;
  inset:auto 0 0 0;
  height:22%;
  background:linear-gradient(0deg,rgba(0,43,94,.12),transparent);
  pointer-events:none;
}
.hero-keyvisual img{
  width:100%;
  height:345px;
  object-fit:cover;
  object-position:58% 50%;
}
.hero-kicker{
  position:relative;
  display:inline-flex;
  margin:0 0 14px;
  padding:10px 16px;
  color:#fff;
  background:linear-gradient(135deg,var(--navy),var(--navy2));
  font-size:15px;
  font-weight:900;
  line-height:1.3;
  letter-spacing:.08em;
  box-shadow:0 10px 24px rgba(0,43,94,.18);
}
.hero-kicker:after{
  content:"";
  position:absolute;
  left:38px;
  bottom:-10px;
  width:0;
  height:0;
  border-left:10px solid transparent;
  border-right:10px solid transparent;
  border-top:10px solid var(--navy2);
}
.hero-title{
  margin:18px 0 0;
  color:var(--navy);
  font-family:"Times New Roman","Yu Mincho","Hiragino Mincho ProN","Noto Serif JP",serif;
  font-size:37px;
  line-height:1.20;
  letter-spacing:.03em;
  text-shadow:0 1px 0 rgba(255,255,255,.8);
}
.hero-title span{display:block}
.hero-title span:nth-child(2){
  font-size:.86em;
  color:var(--navy);
}
.hero-lead{
  margin-top:18px;
  padding-top:17px;
  border-top:1px solid rgba(0,59,120,.42);
  color:#343434;
  font-size:15px;
  line-height:1.9;
}
.hero-lead p{margin:0 0 .75em}
.hero-badges{
  display:grid;
  gap:10px;
  margin-top:18px;
  padding:14px;
  border-radius:26px;
  color:#fff;
  background:linear-gradient(135deg,var(--navy),var(--navy2));
  box-shadow:0 18px 40px rgba(0,43,94,.20);
}
.hero-badges span{
  position:relative;
  display:flex;
  align-items:center;
  min-height:46px;
  padding:9px 10px 9px 44px;
  border-bottom:1px solid rgba(255,255,255,.16);
  color:#fff;
  font-size:13px;
  font-weight:900;
  line-height:1.55;
}
.hero-badges span:last-child{border-bottom:0}
.hero-badges span:before{
  content:"";
  position:absolute;
  left:4px;
  width:28px;
  height:28px;
  border-radius:50%;
  background:#fff;
  box-shadow:inset 0 0 0 8px var(--gold);
}
.hero-cta{
  display:grid;
  gap:10px;
  margin-top:22px;
}
.hero-note{
  margin:12px 0 0;
  color:var(--muted);
  font-size:12px;
  line-height:1.7;
  text-align:center;
}

/* Common sections */
.section{
  position:relative;
  padding:62px 18px;
  background:#fff;
}
.section:before{
  content:"";
  position:absolute;
  top:0;
  left:18px;
  right:18px;
  border-top:1px solid rgba(0,59,120,.10);
}
.sec-head{margin-bottom:24px}
.sec-en{
  margin:0 0 8px;
  color:var(--gold);
  font-size:12px;
  font-weight:1000;
  letter-spacing:.18em;
}
.sec-title{
  margin:0;
  color:var(--navy);
  font-family:"Yu Mincho","Hiragino Mincho ProN","Noto Serif JP",serif;
  font-size:27px;
  line-height:1.45;
}
.sec-lead{
  margin-top:12px;
  color:var(--muted);
  font-size:14px;
  line-height:1.9;
}
.sec-lead p{margin:0 0 .8em}
.sec-head-light .sec-en{color:var(--gold2)}
.sec-head-light .sec-title,.sec-head-light .sec-lead{color:#fff}
.photo-card{
  overflow:hidden;
  margin:0 0 18px;
  border-radius:24px;
  border:1px solid rgba(0,59,120,.12);
  background:#fff;
  box-shadow:var(--shadow);
}
.photo-card img{
  width:100%;
  height:220px;
  object-fit:cover;
}

/* Worry */
.worry-box{display:grid;gap:10px}
.worry-item{
  display:grid;
  grid-template-columns:24px 1fr;
  gap:10px;
  padding:15px;
  border:1px solid var(--line);
  border-left:6px solid var(--gold);
  border-radius:18px;
  background:#fff;
  box-shadow:0 12px 28px rgba(0,59,120,.08);
}
.worry-dot{
  position:relative;
  width:24px;
  height:24px;
  border-radius:50%;
  background:rgba(215,178,75,.22);
}
.worry-dot:before{
  content:"";
  position:absolute;
  top:7px;
  left:7px;
  width:10px;
  height:10px;
  border-radius:50%;
  background:var(--navy);
}
.worry-item p{
  margin:0;
  color:var(--ink);
  font-size:14px;
  font-weight:900;
  line-height:1.7;
}

/* Dark sections */
.section-navy{
  color:#fff;
  background:
    radial-gradient(circle at 88% 12%,rgba(215,178,75,.18),transparent 34%),
    linear-gradient(180deg,var(--navy),var(--navy3));
}
.section-navy:before{border-color:rgba(255,255,255,.18)}
.card-grid{display:grid;gap:12px}
.mini-card{
  position:relative;
  padding:18px;
  border:1px solid rgba(255,255,255,.15);
  border-radius:22px;
  background:rgba(255,255,255,.09);
  box-shadow:0 14px 34px rgba(0,0,0,.14);
}
.mini-card:before{
  content:"";
  position:absolute;
  top:0;
  left:18px;
  width:46px;
  height:4px;
  border-radius:999px;
  background:var(--gold);
}
.mini-card .mini-num{
  display:inline-flex;
  margin-bottom:10px;
  padding:5px 9px;
  border-radius:999px;
  color:var(--navy2);
  background:var(--gold2);
  font-size:11px;
  font-weight:1000;
}
.mini-card h3{
  margin:0 0 8px;
  color:#fff;
  font-size:18px;
  line-height:1.45;
}
.mini-card p{
  margin:0;
  color:rgba(255,255,255,.84);
  font-size:13px;
  line-height:1.8;
}

/* Profile */
.message-strip{
  margin-bottom:18px;
  padding:14px 16px;
  border-left:7px solid var(--gold);
  border-radius:16px;
  background:#fff;
  color:var(--navy);
  font-size:18px;
  font-weight:1000;
  box-shadow:var(--shadow);
}
.profile-photo{
  overflow:hidden;
  margin:0;
  border:2px solid var(--navy);
  border-radius:24px 24px 0 0;
  background:#fff;
}
.profile-photo img{
  width:100%;
  max-height:440px;
  object-fit:cover;
  object-position:50% 18%;
}
.profile-box{
  padding:20px;
  border:2px solid var(--navy);
  border-top:0;
  border-radius:0 0 24px 24px;
  background:#fff;
  box-shadow:var(--shadow);
}
.profile-label{
  margin:0 0 6px;
  color:var(--gold);
  font-size:12px;
  font-weight:1000;
  letter-spacing:.15em;
}
.profile-box h2{
  margin:0 0 4px;
  color:var(--navy);
  font-size:25px;
}
.role{
  margin:0 0 14px;
  color:var(--muted);
  font-size:13px;
  font-weight:900;
}
.profile-text{
  color:var(--text);
  font-size:14px;
  line-height:1.9;
}
.profile-text p{margin:0 0 .8em}
.license-list{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:14px;
}
.license-list span{
  padding:7px 10px;
  border-radius:999px;
  color:var(--navy);
  background:var(--light);
  border:1px solid rgba(0,59,120,.14);
  font-size:12px;
  font-weight:900;
}
.concept-card{
  position:relative;
  overflow:hidden;
  margin-top:18px;
  padding:24px;
  border-radius:28px;
  color:#fff;
  background:
    radial-gradient(circle at 80% 20%,rgba(255,255,255,.14),transparent 34%),
    linear-gradient(135deg,var(--navy),var(--navy2));
  box-shadow:var(--shadow);
}
.concept-card:after{
  content:"";
  position:absolute;
  right:-46px;
  bottom:-44px;
  width:150px;
  height:150px;
  border:1px solid rgba(215,178,75,.46);
  border-radius:50%;
}
.concept-card h2{
  margin:0 0 12px;
  color:var(--gold2);
  font-size:24px;
  line-height:1.35;
}
.concept-card p{
  margin:0 0 .9em;
  color:rgba(255,255,255,.90);
  font-size:14px;
  line-height:1.9;
}

/* Reason */
.reason-list{display:grid;gap:12px}
.reason-card{
  display:grid;
  grid-template-columns:48px 1fr;
  gap:13px;
  padding:16px;
  border:1px solid var(--line);
  border-radius:22px;
  background:#fff;
  box-shadow:0 12px 26px rgba(0,59,120,.08);
}
.reason-icon{
  display:grid;
  place-items:center;
  width:48px;
  height:48px;
  border-radius:50%;
  color:var(--navy);
  background:linear-gradient(135deg,var(--gold2),var(--gold));
  font-weight:1000;
  font-size:19px;
}
.reason-card h3{
  margin:0 0 7px;
  color:var(--navy);
  font-size:16px;
  line-height:1.5;
}
.reason-card p{
  margin:0;
  color:var(--muted);
  font-size:13px;
  line-height:1.8;
}

/* Services */
.section-gold{
  background:
    radial-gradient(circle at 85% 8%,rgba(215,178,75,.18),transparent 30%),
    linear-gradient(180deg,#fffdf5,#fff);
}
.service-list{display:grid;gap:12px}
.service-card{
  position:relative;
  padding:18px;
  border:2px solid var(--navy);
  border-radius:22px;
  background:#fff;
  box-shadow:0 14px 28px rgba(0,59,120,.09);
}
.service-card:before{
  content:"";
  position:absolute;
  top:-2px;
  right:26px;
  width:42px;
  height:20px;
  border-radius:0 0 999px 999px;
  background:var(--gold);
}
.service-top{
  display:flex;
  justify-content:space-between;
  gap:8px;
  align-items:center;
  margin-bottom:10px;
}
.service-top span{
  color:var(--gold);
  font-size:11px;
  font-weight:1000;
  letter-spacing:.12em;
}
.service-top b{
  padding:5px 9px;
  border-radius:999px;
  color:#fff;
  background:var(--navy);
  font-size:12px;
}
.service-card h3{
  margin:0 0 8px;
  color:var(--navy);
  font-size:20px;
}
.service-card p{
  margin:0;
  color:var(--muted);
  font-size:13px;
  line-height:1.8;
}

/* Scenario */
.timeline{
  position:relative;
  display:grid;
  gap:12px;
}
.timeline:before{
  content:"";
  position:absolute;
  left:18px;
  top:12px;
  bottom:12px;
  width:2px;
  background:linear-gradient(var(--navy),transparent);
}
.step{
  position:relative;
  margin-left:36px;
  padding:17px;
  border:1px solid var(--line);
  border-radius:20px;
  background:#fff;
  box-shadow:0 12px 24px rgba(0,59,120,.08);
}
.step:before{
  content:"";
  position:absolute;
  left:-26px;
  top:20px;
  width:12px;
  height:12px;
  border-radius:50%;
  background:var(--gold);
  box-shadow:0 0 0 5px rgba(215,178,75,.20);
}
.step strong{
  display:block;
  margin-bottom:7px;
  color:var(--gold);
  font-size:11px;
  font-weight:1000;
  letter-spacing:.10em;
}
.step h3{
  margin:0 0 7px;
  color:var(--navy);
  font-size:17px;
}
.step p{
  margin:0;
  color:var(--muted);
  font-size:13px;
  line-height:1.8;
}

/* Voice */
.voice-list{display:grid;gap:12px}
.voice-card{
  padding:17px;
  border:1px solid var(--line);
  border-radius:22px;
  background:#fff;
  box-shadow:0 12px 28px rgba(0,59,120,.08);
}
.voice-head{
  display:flex;
  justify-content:space-between;
  gap:12px;
  align-items:center;
  margin-bottom:9px;
}
.voice-head b{
  color:var(--navy);
  font-size:13px;
}
.voice-head span{
  color:var(--gold);
  font-size:13px;
  letter-spacing:.12em;
}
.voice-card h3{
  margin:0 0 8px;
  color:var(--navy);
  font-size:16px;
}
.voice-card p{
  margin:0;
  color:var(--muted);
  font-size:14px;
  line-height:1.85;
}

/* Flow */
.flow-list{
  display:grid;
  gap:12px;
  margin-bottom:18px;
}
.flow-card{
  padding:18px;
  border-radius:22px;
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.18);
}
.flow-card span{
  display:inline-grid;
  place-items:center;
  min-width:42px;
  height:28px;
  margin-bottom:10px;
  border-radius:999px;
  background:var(--gold2);
  color:var(--navy);
  font-size:12px;
  font-weight:1000;
}
.flow-card h3{
  margin:0 0 8px;
  color:#fff;
  font-size:18px;
}
.flow-card p{
  margin:0;
  color:rgba(255,255,255,.84);
  font-size:13px;
  line-height:1.8;
}

/* FAQ */
.faq-list{display:grid;gap:10px}
.faq-item{
  overflow:hidden;
  border:1px solid var(--line);
  border-radius:20px;
  background:#fff;
  box-shadow:0 10px 24px rgba(0,59,120,.08);
}
.faq-q{
  position:relative;
  display:flex;
  gap:9px;
  align-items:center;
  width:100%;
  padding:17px 44px 17px 16px;
  border:0;
  background:#fff;
  color:var(--navy);
  text-align:left;
  font-weight:1000;
  line-height:1.6;
}
.faq-q span{
  display:grid;
  place-items:center;
  flex:0 0 auto;
  width:24px;
  height:24px;
  border-radius:50%;
  background:var(--light);
  color:var(--navy);
}
.faq-q:after{
  content:"+";
  position:absolute;
  right:17px;
  top:50%;
  transform:translateY(-50%);
  color:var(--gold);
  font-size:20px;
  font-weight:1000;
}
.faq-item.open .faq-q:after{content:"−"}
.faq-a{
  display:none;
  padding:0 17px 18px 49px;
  color:var(--muted);
  font-size:14px;
  line-height:1.8;
}
.faq-item.open .faq-a{display:block}

/* Access & CTA */
.access-box{
  display:grid;
  gap:0;
  overflow:hidden;
  border:2px solid var(--navy);
  border-radius:22px;
  background:#fff;
  box-shadow:var(--shadow);
}
.access-row{
  display:grid;
  gap:5px;
  padding:15px;
  border-bottom:1px solid var(--line);
}
.access-row:last-child{border-bottom:0}
.access-row small{
  color:var(--gold);
  font-size:11px;
  font-weight:1000;
  letter-spacing:.12em;
}
.access-row span{
  color:var(--ink);
  font-size:13px;
  line-height:1.75;
  font-weight:800;
}
.cta-section{
  position:relative;
  z-index:1;
  overflow:hidden;
  padding:74px 18px 92px;
  color:#fff;
  background:
    radial-gradient(circle at 50% 12%,rgba(255,255,255,.14),transparent 34%),
    radial-gradient(circle at 50% 34%,rgba(215,178,75,.20),transparent 46%),
    linear-gradient(180deg,var(--navy),var(--navy3));
  text-align:center;
}
.cta-section:before{
  content:"";
  position:absolute;
  left:50%;
  top:48px;
  width:300px;
  height:300px;
  transform:translateX(-50%);
  border:1px solid rgba(215,178,75,.42);
  border-radius:50%;
}
.cta-section > *{position:relative;z-index:1}
.cta-section h2{
  margin:0 0 14px;
  font-size:28px;
  line-height:1.35;
}
.cta-section p{
  margin:0 0 18px;
  color:rgba(255,255,255,.86);
  font-size:14px;
  line-height:1.9;
}
.cta-note{
  margin-top:12px !important;
  font-size:12px !important;
  color:rgba(255,255,255,.72) !important;
}

/* Footer / fixed CTA */
.fixed-cta{
  position:fixed;
  z-index:65;
  left:50%;
  bottom:10px;
  width:min(calc(100% - 20px),410px);
  transform:translateX(-50%);
  display:grid;
  grid-template-columns:1fr 48px;
  gap:8px;
  pointer-events:none;
}
.fixed-cta a{pointer-events:auto}
.fixed-main,.fixed-top{
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:50px;
  border-radius:999px;
  font-weight:1000;
  box-shadow:0 12px 30px rgba(0,31,73,.24);
}
.fixed-main{
  color:#fff;
  background:linear-gradient(135deg,var(--navy),var(--navy2));
  font-size:13px;
}
.fixed-top{
  color:var(--navy);
  background:#fff;
  border:1px solid rgba(0,59,120,.16);
}
.nlp-footer{
  position:relative;
  z-index:1;
  padding:35px 18px 84px;
  background:var(--navy3);
  color:#fff;
}
.footer-brand{
  margin-bottom:16px;
  font-size:18px;
  font-weight:1000;
  letter-spacing:.08em;
}
.footer-nav{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:8px 16px;
  margin-bottom:18px;
}
.footer-nav a{
  color:rgba(255,255,255,.84);
  font-size:12px;
  font-weight:800;
}
.disclaimer{
  padding:13px;
  border-radius:14px;
  background:rgba(255,255,255,.08);
  color:rgba(255,255,255,.76);
  font-size:11px;
  line-height:1.7;
}
.copyright{
  margin:14px 0 0;
  color:rgba(255,255,255,.52);
  font-size:11px;
}

@media (min-width:431px){
  .nlp-shell{border-radius:0}
}
@media (max-width:374px){
  .hero-title{font-size:32px}
  .hero-keyvisual img{height:315px}
}
@media (prefers-reduced-motion:reduce){
  html{scroll-behavior:auto}
  *{transition:none !important;animation:none !important}
}


/* v17 hero adjustment: 添付キービジュアルの人物が見切れないよう、人物側を独立表示 */
.hero{
  min-height:auto;
  padding:76px 14px 42px;
  background:
    radial-gradient(circle at 100% 5%,rgba(125,173,88,.18),transparent 16%),
    radial-gradient(circle at 0% 98%,rgba(215,178,75,.18),transparent 24%),
    linear-gradient(180deg,#e9f6fb 0%,#ffffff 44%,#f5fbfd 100%);
}
.hero-inner{position:relative;z-index:2}
.hero-visual-card{
  position:relative;
  overflow:hidden;
  min-height:525px;
  margin:0 0 18px;
  padding:24px 18px 0;
  border-radius:0 0 34px 34px;
  background:
    linear-gradient(180deg,rgba(235,248,252,.94) 0%,rgba(255,255,255,.96) 44%,rgba(246,251,253,.92) 100%),
    url("assets/hero-keyvisual-v17.png") right bottom/cover no-repeat;
  box-shadow:0 18px 48px rgba(0,43,94,.18);
  isolation:isolate;
}
.hero-visual-card:before{
  content:"";
  position:absolute;
  left:-14%;
  top:18%;
  width:128%;
  height:48%;
  border-radius:50%;
  background:rgba(255,255,255,.72);
  transform:rotate(-7deg);
  z-index:-1;
}
.hero-visual-card:after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  height:118px;
  background:
    linear-gradient(180deg,rgba(0,58,118,0),rgba(0,58,118,.96) 54%),
    linear-gradient(90deg,var(--navy2),var(--navy));
  border-top:3px solid var(--gold);
  z-index:1;
}
.hero-copy{
  position:relative;
  z-index:3;
  max-width:100%;
  padding-right:18%;
}
.hero-copy .hero-kicker{
  margin-bottom:18px;
}
.hero-copy .hero-title{
  margin-top:24px;
  font-size:clamp(34px,10vw,48px);
  line-height:1.16;
  letter-spacing:.04em;
  max-width:360px;
  text-shadow:0 1px 0 rgba(255,255,255,.85);
}
.hero-copy .hero-title span{display:block}
.hero-copy .hero-title .line-first{font-size:1em}
.hero-copy .hero-lead{
  width:min(100%,285px);
  margin-top:18px;
  padding:11px 12px;
  border-left:2px solid var(--navy);
  background:rgba(255,255,255,.70);
  backdrop-filter:blur(2px);
  box-shadow:0 10px 24px rgba(255,255,255,.40);
}
.hero-person-window{
  position:absolute;
  right:-6px;
  bottom:0;
  z-index:2;
  width:77%;
  height:68%;
  margin:0;
  overflow:hidden;
  pointer-events:none;
}
.hero-person-window img{
  position:absolute;
  right:-2px;
  bottom:0;
  width:auto;
  max-width:none;
  height:100%;
  object-fit:contain;
  object-position:right bottom;
  filter:none !important;
  transform:none !important;
}
.hero-badges{
  margin-top:16px;
  grid-template-columns:1fr 1fr;
}
.hero-badges span{
  border-color:rgba(0,59,120,.18);
  background:#fff;
  color:var(--navy2);
  box-shadow:0 8px 20px rgba(0,31,73,.06);
}
@media (max-width:390px){
  .hero-visual-card{min-height:500px;padding-left:15px;padding-right:15px}
  .hero-copy{padding-right:12%}
  .hero-copy .hero-title{font-size:33px}
  .hero-copy .hero-lead{width:260px}
  .hero-person-window{width:82%;height:64%;right:-18px}
}


/* v18 hero refinement: 人物を見切れにくくし、文字量を抑えた上品なファーストビューへ */
.hero{
  padding:74px 14px 38px;
}
.hero-visual-card{
  min-height:505px;
  padding:24px 18px 0;
  border-radius:0 0 32px 32px;
  background:
    radial-gradient(ellipse at 18% 7%,rgba(196,230,242,.62),transparent 45%),
    radial-gradient(ellipse at 88% 20%,rgba(255,255,255,.86),transparent 42%),
    linear-gradient(180deg,#eaf7fb 0%,#ffffff 50%,#f7fbfd 100%);
}
.hero-visual-card:before{
  left:-26%;
  top:14%;
  width:135%;
  height:44%;
  background:rgba(255,255,255,.74);
  transform:rotate(-8deg);
}
.hero-visual-card:after{
  height:104px;
  background:
    linear-gradient(180deg,rgba(0,58,118,0),rgba(0,58,118,.94) 58%),
    linear-gradient(90deg,var(--navy2),var(--navy));
  border-top:3px solid var(--gold);
}
.hero-copy{
  z-index:4;
  max-width:245px;
  padding-right:0;
}
.hero-copy .hero-kicker{
  margin-bottom:14px;
  padding:8px 13px;
  font-size:12px;
  letter-spacing:.08em;
}
.hero-copy .hero-title{
  position:relative;
  max-width:235px;
  margin-top:18px;
  padding:6px 0 12px;
  color:var(--navy);
  font-family:"Yu Mincho","Hiragino Mincho ProN","Noto Serif JP",serif;
  font-size:clamp(25px,7.2vw,32px);
  font-weight:600;
  line-height:1.28;
  letter-spacing:.09em;
  text-shadow:0 1px 0 rgba(255,255,255,.86);
}
.hero-copy .hero-title:after{
  content:"";
  display:block;
  width:72px;
  height:2px;
  margin-top:12px;
  background:linear-gradient(90deg,var(--gold),rgba(215,178,75,0));
}
.hero-copy .hero-title span:nth-child(2){
  font-size:.92em;
}
.hero-copy .hero-lead{
  width:232px;
  margin-top:8px;
  padding:12px 13px;
  border:1px solid rgba(0,59,120,.16);
  border-left:3px solid var(--gold);
  border-radius:14px;
  background:rgba(255,255,255,.78);
  color:#263345;
  font-size:12px;
  line-height:1.72;
  box-shadow:0 12px 26px rgba(0,43,94,.10);
}
.hero-copy .hero-lead p{
  margin:0 0 .55em;
}
.hero-person-window{
  right:-10px;
  bottom:0;
  width:58%;
  height:73%;
  z-index:2;
  overflow:visible;
}
.hero-person-window img{
  right:0;
  bottom:0;
  width:100%;
  height:100%;
  max-width:100%;
  object-fit:contain;
  object-position:right bottom;
}
.hero-badges{
  margin-top:14px;
  padding:12px;
  gap:8px;
}
.hero-badges span{
  min-height:42px;
  padding:8px 8px 8px 38px;
  font-size:12px;
}
.hero-badges span:before{
  width:24px;
  height:24px;
  box-shadow:inset 0 0 0 7px var(--gold);
}
@media (max-width:390px){
  .hero-visual-card{
    min-height:485px;
    padding-left:15px;
    padding-right:15px;
  }
  .hero-copy{
    max-width:224px;
  }
  .hero-copy .hero-title{
    max-width:215px;
    font-size:25px;
    letter-spacing:.07em;
  }
  .hero-copy .hero-lead{
    width:218px;
    font-size:11.5px;
  }
  .hero-person-window{
    width:60%;
    height:70%;
    right:-10px;
  }
}

/* v18 fixed CTA: スクロール後に表示 */
.fixed-cta{
  opacity:0;
  visibility:hidden;
  transform:translate(-50%,16px);
  transition:opacity .24s ease, transform .24s ease, visibility .24s ease;
}
.fixed-cta.is-visible{
  opacity:1;
  visibility:visible;
  transform:translate(-50%,0);
}


/* v19 hero banner replacement
   添付いただいた縦長バナー画像をヒーローにそのまま設置 */
.hero{
  min-height:auto;
  padding:74px 14px 34px;
}
.hero-inner-banner{
  position:relative;
  z-index:2;
}
.hero-main-banner{
  position:relative;
  overflow:hidden;
  margin:0;
  border-radius:0 0 34px 34px;
  background:#fff;
  box-shadow:0 18px 48px rgba(0,43,94,.18);
}
.hero-main-banner img{
  width:100%;
  height:auto;
  display:block;
}
.hero-cta-under-banner{
  margin-top:18px;
}
.hero-inner-banner .hero-note{
  margin-top:12px;
  text-align:center;
}


/* v20 first-view adjustment
   ファーストビュー内で「電話で相談する」ボタンまで見えるように調整 */
.hero{
  padding-top:64px;
  padding-bottom:22px;
}
.hero-main-banner{
  border-radius:0 0 28px 28px;
}
.hero-main-banner img{
  width:100%;
  height:clamp(430px, calc(100svh - 165px), 610px);
  object-fit:cover;
  object-position:center top;
}
.hero-cta-under-banner{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:8px;
  margin-top:12px;
}
.hero-cta-under-banner .btn{
  min-height:48px;
  padding:10px 8px;
  font-size:12px;
  line-height:1.25;
}
.hero-inner-banner .hero-note{
  display:none;
}
@media (max-height:700px){
  .hero{
    padding-top:58px;
    padding-bottom:16px;
  }
  .hero-main-banner img{
    height:calc(100svh - 150px);
    min-height:380px;
  }
  .hero-cta-under-banner{
    margin-top:9px;
  }
  .hero-cta-under-banner .btn{
    min-height:44px;
    font-size:11.5px;
  }
}

/* v21 hero update
   添付画像をヒーローに設置。デザインは画像側を維持し、CTAは縦並びに戻す。 */
.hero{
  min-height:auto;
  padding-top:58px;
  padding-bottom:18px;
}
.hero-main-banner{
  border-radius:0 0 26px 26px;
}
.hero-main-banner img{
  width:100%;
  height:clamp(330px, calc(100svh - 190px), 430px);
  object-fit:contain;
  object-position:center center;
  background:#eaf7fb;
}
.hero-cta-under-banner{
  display:grid;
  grid-template-columns:1fr;
  gap:8px;
  margin-top:10px;
}
.hero-cta-under-banner .btn{
  min-height:46px;
  padding:10px 14px;
  font-size:12.5px;
  line-height:1.25;
}
.hero-inner-banner .hero-note{
  display:none;
}
@media (max-height:640px){
  .hero{
    padding-top:54px;
    padding-bottom:14px;
  }
  .hero-main-banner img{
    height:calc(100svh - 178px);
    min-height:300px;
  }
  .hero-cta-under-banner .btn{
    min-height:43px;
    padding-top:8px;
    padding-bottom:8px;
    font-size:11.5px;
  }
}



/* v22 hero spacing adjustment
   画像は生成せず、添付済みヒーロー画像をCSSで見える範囲だけ調整。
   上下の余白を抑え、CTAは縦並びを維持。 */
.hero{
  padding-top:60px !important;
  padding-bottom:10px !important;
}
.hero-main-banner{
  margin:0 !important;
  border-radius:0 0 22px 22px !important;
}
.hero-main-banner img{
  width:100% !important;
  height:clamp(292px, calc(100svh - 188px), 382px) !important;
  min-height:0 !important;
  object-fit:cover !important;
  object-position:center center !important;
  background:#eaf7fb !important;
}
.hero-cta-under-banner{
  display:grid !important;
  grid-template-columns:1fr !important;
  gap:8px !important;
  margin-top:6px !important;
}
.hero-cta-under-banner .btn{
  min-height:44px !important;
  padding:9px 14px !important;
  font-size:12.5px !important;
  line-height:1.25 !important;
}
.hero-inner-banner .hero-note{
  display:none !important;
}
@media (max-height:700px){
  .hero{
    padding-top:56px !important;
    padding-bottom:8px !important;
  }
  .hero-main-banner img{
    height:clamp(270px, calc(100svh - 174px), 350px) !important;
  }
  .hero-cta-under-banner{
    margin-top:5px !important;
  }
  .hero-cta-under-banner .btn{
    min-height:41px !important;
    padding-top:8px !important;
    padding-bottom:8px !important;
    font-size:11.8px !important;
  }
}
