/* =============================================
   SANGYOI Stress LP — styles.css (scoped to .stress-check-lp)
   ============================================= */
.stress-check-lp{
  --c-white:#FFFFFF;
  --c-offwhite:#FAFAFA;
  --c-bluegray:#F1F5F9;
  --c-trust:#1E3A8A;
  --c-trust-2:#3B5BC0;
  --c-aqua:#14B8A6;
  --c-cta:#F97316;
  --c-cta-hover:#FB8531;
  --c-text:#1F2937;
  --c-text-soft:#475569;
  --c-border:#E2E8F0;
  --c-border-soft:#EEF2F7;

  --f-en:'Space Grotesk','Inter',system-ui,sans-serif;
  --f-jp:'Noto Sans JP','Hiragino Kaku Gothic ProN','Yu Gothic',sans-serif;

  --r-md:12px;
  --r-lg:18px;
  --r-xl:24px;

  --shadow-sm:0 1px 2px rgba(15,23,42,.04),0 2px 8px rgba(15,23,42,.04);
  --shadow-md:0 4px 16px rgba(30,58,138,.08);

  font-family:var(--f-jp);
  color:var(--c-text);
  background:var(--c-white);
  font-size:16px;
  line-height:1.8;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}

.stress-check-lp *,
.stress-check-lp *::before,
.stress-check-lp *::after{box-sizing:border-box}
.stress-check-lp img{max-width:100%;height:auto;display:block}
.stress-check-lp a{color:inherit;text-decoration:none}
.stress-check-lp button{font:inherit;cursor:pointer;border:0;background:transparent;color:inherit}
.stress-check-lp ul,
.stress-check-lp ol{margin:0;padding:0;list-style:none}

/* ---------- shared building blocks ---------- */
.stress-check-lp .container{
  width:100%;
  max-width:920px;
  margin:0 auto;
  padding:0 22px;
  position:relative;
}
.stress-check-lp section{
  padding:84px 0;
  position:relative;
  overflow:hidden;
}
.stress-check-lp .section-title{
  font-family:var(--f-jp);
  font-size:30px;
  font-weight:700;
  text-align:center;
  color:var(--c-trust);
  letter-spacing:.02em;
  margin:0 0 44px;
  line-height:1.4;
}
.stress-check-lp .eyebrow-en{
  font-family:var(--f-en);
  font-size:12px;
  letter-spacing:.18em;
  color:var(--c-aqua);
  text-transform:uppercase;
  font-weight:600;
}

/* CTA buttons */
.stress-check-lp .btn{
  display:inline-flex;align-items:center;justify-content:center;
  gap:8px;
  padding:14px 28px;
  border-radius:999px;
  font-weight:700;
  font-size:16px;
  transition:transform .18s ease, filter .18s ease, background-color .18s ease;
  white-space:nowrap;
}
.stress-check-lp .btn--cta{
  background:var(--c-cta);
  color:#fff;
  box-shadow:0 6px 14px rgba(249,115,22,.28);
}
.stress-check-lp .btn--cta:hover{background:var(--c-cta-hover);transform:translateY(-2px);filter:brightness(1.05)}
.stress-check-lp .btn--outline{
  background:#fff;
  color:var(--c-trust);
  border:1.5px solid var(--c-trust);
}
.stress-check-lp .btn--outline:hover{transform:translateY(-2px);filter:brightness(1.03);background:#F8FAFF}

/* Scroll reveal */
.stress-check-lp .reveal{opacity:0;transform:translateY(20px);transition:opacity .3s ease, transform .3s ease}
.stress-check-lp .reveal.in{opacity:1;transform:translateY(0)}

/* Decorative blob — gentle sway */
.stress-check-lp .blob{
  position:absolute;
  pointer-events:none;
  z-index:0;
  opacity:.85;
  animation:sc-sway 9s ease-in-out infinite;
}
.stress-check-lp .blob--slow{animation-duration:13s}
@keyframes sc-sway{
  0%,100%{transform:translate(0,0) rotate(0deg)}
  50%{transform:translate(8px,-10px) rotate(2deg)}
}

/* ===========================================
   HERO
   =========================================== */
.stress-check-lp .hero{
  padding:60px 0 72px;
  background:linear-gradient(180deg,#FFFFFF 0%,#F4F8FF 100%);
  position:relative;
  overflow:hidden;
}
.stress-check-lp .hero .container{display:grid;grid-template-columns:1.05fr .95fr;gap:32px;align-items:center}
.stress-check-lp .hero__title{
  font-size:36px;
  line-height:1.35;
  font-weight:700;
  color:var(--c-trust);
  letter-spacing:.01em;
  margin:0 0 18px;
}
.stress-check-lp .hero__title .accent{color:var(--c-aqua)}
.stress-check-lp .hero__lead{
  font-size:14.5px;
  line-height:1.85;
  color:var(--c-text);
  margin:0 0 22px;
}
.stress-check-lp .hero__badges{
  display:flex;gap:10px;flex-wrap:wrap;
  margin-bottom:24px;
}
.stress-check-lp .hero__badge{
  display:inline-flex;align-items:center;gap:8px;
  background:#fff;
  border:1.5px solid #DCE5F5;
  color:var(--c-trust);
  font-size:12px;font-weight:600;
  padding:8px 14px 8px 8px;
  border-radius:999px;
  box-shadow:var(--shadow-sm);
}
.stress-check-lp .hero__badge img{width:30px;height:30px;object-fit:contain}
.stress-check-lp .hero__ctas{display:flex;gap:12px;flex-wrap:wrap}
.stress-check-lp .hero__visual{
  position:relative;
  min-height:280px;
}
.stress-check-lp .hero__visual .checklist{
  position:absolute;
  top:0;left:8%;
  width:62%;
  filter:drop-shadow(0 10px 20px rgba(30,58,138,.10));
}
.stress-check-lp .hero__visual .barchart{
  position:absolute;
  right:0;bottom:0;
  width:62%;
  filter:drop-shadow(0 10px 20px rgba(30,58,138,.10));
}
.stress-check-lp .hero .blob--a{top:-30px;right:-40px;width:240px}
.stress-check-lp .hero .blob--b{bottom:-30px;left:-30px;width:160px;opacity:.5}

/* ===========================================
   SECTION: 義務化は…
   =========================================== */
.stress-check-lp .duty{background:var(--c-bluegray)}
.stress-check-lp .duty__grid{
  display:grid;grid-template-columns:1.2fr 1.4fr;gap:32px;align-items:center;
}
.stress-check-lp .duty__list{display:flex;flex-direction:column;gap:14px}
.stress-check-lp .duty__item{
  display:flex;gap:12px;align-items:flex-start;
  background:#fff;border-radius:var(--r-md);padding:14px 16px;
  box-shadow:var(--shadow-sm);
  font-size:13.5px;line-height:1.75;
}
.stress-check-lp .check-dot{
  flex:0 0 22px;width:22px;height:22px;border-radius:50%;
  background:var(--c-aqua);
  display:inline-flex;align-items:center;justify-content:center;
  color:#fff;margin-top:3px;
}
.stress-check-lp .check-dot svg{width:13px;height:13px}
.stress-check-lp .duty__cards{display:grid;grid-template-columns:repeat(3,1fr);gap:10px}
.stress-check-lp .duty__card{
  background:#fff;
  border:1px solid var(--c-border);
  border-radius:var(--r-md);
  padding:18px 12px;
  text-align:center;
  box-shadow:var(--shadow-sm);
}
.stress-check-lp .duty__card h4{
  margin:0 0 8px;
  font-family:var(--f-en);
  color:var(--c-trust);
  font-size:20px;
  font-weight:700;
  letter-spacing:.01em;
}
.stress-check-lp .duty__card h4.jp{font-family:var(--f-jp)}
.stress-check-lp .duty__card p{margin:0;font-size:11.5px;line-height:1.7;color:var(--c-text-soft)}
.stress-check-lp .duty .blob--a{top:-40px;left:-40px;width:160px}
.stress-check-lp .duty .blob--b{bottom:-40px;right:-30px;width:140px}

/* ===========================================
   SECTION: 受検から職場改善まで (4 cards)
   =========================================== */
.stress-check-lp .flow4__grid{display:grid;grid-template-columns:1fr 1fr;gap:18px}
.stress-check-lp .flow-card{
  display:grid;grid-template-columns:62px 1fr auto;gap:14px;align-items:start;
  background:#fff;
  border:1px solid var(--c-border);
  border-radius:var(--r-lg);
  padding:20px 20px 20px 18px;
  box-shadow:var(--shadow-sm);
  position:relative;
}
.stress-check-lp .flow-card__num{
  font-family:var(--f-en);
  font-size:34px;
  font-weight:700;
  color:var(--c-trust);
  line-height:1;
}
.stress-check-lp .flow-card__body h3{
  margin:0 0 6px;
  font-size:15px;
  font-weight:700;
  color:var(--c-trust);
  line-height:1.5;
}
.stress-check-lp .flow-card__body p{margin:0;font-size:12.5px;line-height:1.75;color:var(--c-text-soft)}
.stress-check-lp .flow-card__icon{width:52px;height:52px;object-fit:contain;align-self:center}
.stress-check-lp .flow .blob--a{top:0;right:-40px;width:180px}
.stress-check-lp .flow .blob--b{bottom:-30px;left:-40px;width:160px}

/* ===========================================
   SECTION: 実施して終わりにしない設計 (3 rows)
   =========================================== */
.stress-check-lp .design3{background:var(--c-offwhite)}
.stress-check-lp .design3__row{
  display:grid;grid-template-columns:60px 1fr 240px;gap:18px;
  align-items:center;
  background:#fff;border-radius:var(--r-lg);
  padding:20px;margin-bottom:18px;
  box-shadow:var(--shadow-sm);
  border:1px solid var(--c-border);
}
.stress-check-lp .design3__num{
  font-family:var(--f-en);font-size:28px;font-weight:700;
  color:var(--c-trust);line-height:1;
}
.stress-check-lp .design3__body h3{
  margin:0 0 6px;
  font-size:15px;font-weight:700;color:var(--c-trust);
}
.stress-check-lp .design3__body p{margin:0;font-size:12.5px;line-height:1.8;color:var(--c-text-soft)}
.stress-check-lp .design3__media{
  border-radius:var(--r-md);
  overflow:hidden;
  background:var(--c-bluegray);
  aspect-ratio:16/9;
  display:flex;align-items:center;justify-content:center;
}
.stress-check-lp .design3__media img{width:100%;height:100%;object-fit:cover}
.stress-check-lp .design3__media--contain{background:#fff;}
.stress-check-lp .design3__media--contain img{object-fit:contain;padding:6px}
.stress-check-lp .design3 .blob--a{top:60px;right:-40px;width:160px}
.stress-check-lp .design3 .blob--b{bottom:60px;left:-30px;width:130px}

/* ===========================================
   SECTION: 料金のご案内
   =========================================== */
.stress-check-lp .pricing__table{
  width:100%;border-collapse:separate;border-spacing:0;
  background:#fff;border-radius:var(--r-lg);overflow:hidden;
  box-shadow:var(--shadow-sm);
  border:1px solid var(--c-border);
  font-size:13px;
}
.stress-check-lp .pricing__table th,
.stress-check-lp .pricing__table td{padding:14px 16px;text-align:left;vertical-align:middle}
.stress-check-lp .pricing__table thead th{
  background:var(--c-trust);color:#fff;font-weight:600;font-size:13px;
}
.stress-check-lp .pricing__table tbody tr+tr{border-top:1px solid var(--c-border-soft)}
.stress-check-lp .pricing__table tbody th{
  background:var(--c-bluegray);color:var(--c-trust);font-weight:600;width:30%;
  border-top:1px solid var(--c-border-soft);
}
.stress-check-lp .pricing__table .price{
  font-family:var(--f-en);
  font-weight:700;
  color:var(--c-cta);
  font-size:18px;
}
.stress-check-lp .pricing__addons{
  display:grid;grid-template-columns:repeat(3,1fr);gap:12px;
  margin-top:18px;
}
.stress-check-lp .pricing__addon{
  display:flex;gap:12px;align-items:center;
  background:#fff;border:1px solid var(--c-border);
  border-radius:var(--r-md);padding:12px 14px;
  box-shadow:var(--shadow-sm);
  font-size:11.5px;line-height:1.6;
}
.stress-check-lp .pricing__addon img{width:34px;height:34px;object-fit:contain;flex:0 0 34px}
.stress-check-lp .pricing__note{
  text-align:center;font-size:11.5px;color:var(--c-text-soft);
  margin-top:14px;
}
.stress-check-lp .pricing .blob--a{top:20px;left:-40px;width:160px;opacity:.6}
.stress-check-lp .pricing .blob--b{bottom:20px;right:-40px;width:140px;opacity:.6}

/* ===========================================
   SECTION: 最短2週間で実施開始 (steps)
   =========================================== */
.stress-check-lp .steps__grid{
  display:grid;grid-template-columns:repeat(4,1fr);gap:14px;
  position:relative;
}
.stress-check-lp .step{
  background:#fff;border:1px solid var(--c-border);
  border-radius:var(--r-lg);
  padding:18px 14px;
  text-align:left;
  box-shadow:var(--shadow-sm);
  position:relative;
}
.stress-check-lp .step__num{
  width:36px;height:36px;border-radius:50%;
  background:var(--c-trust);color:#fff;
  display:flex;align-items:center;justify-content:center;
  font-family:var(--f-en);font-weight:700;font-size:16px;
  margin-bottom:10px;
}
.stress-check-lp .step__icon{width:44px;height:44px;object-fit:contain;margin-bottom:8px}
.stress-check-lp .step h4{margin:0 0 4px;font-size:13.5px;font-weight:700;color:var(--c-trust);line-height:1.5}
.stress-check-lp .step p{margin:0;font-size:11.5px;color:var(--c-text-soft);line-height:1.7}
.stress-check-lp .step__arrow{
  position:absolute;top:38px;right:-16px;width:22px;
  z-index:2;
}
.stress-check-lp .steps .blob--a{top:-20px;right:-40px;width:160px}

/* ===========================================
   SECTION: FAQ
   =========================================== */
.stress-check-lp .faq{background:var(--c-offwhite)}
.stress-check-lp .faq__list{display:flex;flex-direction:column;gap:10px;position:relative;z-index:1}
.stress-check-lp .faq__item{
  background:#fff;border:1px solid var(--c-border);
  border-radius:var(--r-md);
  padding:0;overflow:hidden;
  box-shadow:var(--shadow-sm);
}
.stress-check-lp .faq__q{
  display:flex;align-items:center;gap:12px;width:100%;
  padding:14px 16px;text-align:left;
}
.stress-check-lp .faq__qnum{
  width:24px;height:24px;border-radius:50%;
  background:var(--c-trust);color:#fff;
  display:inline-flex;align-items:center;justify-content:center;
  font-family:var(--f-en);font-weight:700;font-size:12px;flex:0 0 24px;
}
.stress-check-lp .faq__qtext{flex:1;font-size:13.5px;font-weight:600;color:var(--c-trust)}
.stress-check-lp .faq__caret{
  width:18px;height:18px;flex:0 0 18px;
  transition:transform .25s ease;
  color:var(--c-trust);
}
.stress-check-lp .faq__item.open .faq__caret{transform:rotate(180deg)}
.stress-check-lp .faq__a{
  display:none;
  padding:0 16px 14px 52px;
  font-size:12.5px;color:var(--c-text-soft);
  line-height:1.85;
}
.stress-check-lp .faq__item.open .faq__a{display:block}
.stress-check-lp .faq .blob--a{top:30px;right:-40px;width:160px}
.stress-check-lp .faq .blob--b{bottom:30px;left:-20px;width:120px;opacity:.5}

/* ===========================================
   SECTION: +PD banner
   =========================================== */
.stress-check-lp .pd{padding:36px 0}
.stress-check-lp .pd__card{
  display:grid;grid-template-columns:60px 1fr auto;gap:16px;align-items:center;
  background:#fff;border:1px solid var(--c-border);
  border-radius:var(--r-lg);
  padding:18px 20px;
  box-shadow:var(--shadow-sm);
}
.stress-check-lp .pd__badge{width:60px;height:60px;object-fit:contain}
.stress-check-lp .pd__body h4{margin:0 0 4px;font-size:14px;font-weight:700;color:var(--c-trust)}
.stress-check-lp .pd__body p{margin:0;font-size:11.5px;line-height:1.7;color:var(--c-text-soft)}
.stress-check-lp .pd__body p .small{font-size:10.5px;color:var(--c-text-soft)}
.stress-check-lp .pd__links{display:flex;flex-direction:column;gap:6px}
.stress-check-lp .pd__link{
  font-size:11.5px;color:var(--c-trust);font-weight:600;
  display:inline-flex;align-items:center;gap:4px;
  white-space:nowrap;
}
.stress-check-lp .pd__link:hover{color:var(--c-aqua)}
.stress-check-lp .pd__doctor{width:48px;height:48px;object-fit:contain;border-radius:50%;background:#F1F5F9}
.stress-check-lp .pd__id{display:flex;align-items:center;gap:10px}

/* ===========================================
   FOOTER CTA
   =========================================== */
.stress-check-lp .footer-cta{
  background:linear-gradient(135deg,#1E3A8A 0%,#234494 60%,#2A4FAE 100%);
  color:#fff;
  text-align:center;
  padding:64px 0 56px;
  position:relative;
  overflow:hidden;
}
.stress-check-lp .footer-cta::before{
  content:"";
  position:absolute;inset:0;
  background:url('assets/images/blue-wave-dots.png') center/cover no-repeat;
  opacity:.18;
  pointer-events:none;
}
.stress-check-lp .footer-cta .container{position:relative;z-index:1}
.stress-check-lp .footer-cta h2{
  font-size:30px;font-weight:700;
  margin:0 0 12px;letter-spacing:.02em;
}
.stress-check-lp .footer-cta p{
  margin:0 0 24px;font-size:13.5px;line-height:1.8;
  opacity:.92;
}
.stress-check-lp .footer-cta .btn--cta{width:88%;max-width:360px;margin-bottom:12px;padding:16px 20px;font-size:15px}
.stress-check-lp .footer-cta .btn--outline-w{
  display:inline-flex;align-items:center;justify-content:center;
  width:88%;max-width:360px;
  padding:14px 20px;
  background:transparent;color:#fff;
  border:1.5px solid rgba(255,255,255,.7);
  border-radius:999px;font-weight:700;font-size:14px;
  transition:transform .18s ease, background-color .18s ease;
}
.stress-check-lp .footer-cta .btn--outline-w:hover{transform:translateY(-2px);background:rgba(255,255,255,.08)}

/* ===========================================
   3-PARTY DIAGRAM (in design3 row 03)
   =========================================== */
.stress-check-lp .tri-diagram{
  background:#fff;border:1px solid var(--c-border-soft);
  border-radius:var(--r-md);padding:10px 8px 8px;
  width:100%;
}
.stress-check-lp .tri-diagram__title{
  text-align:center;font-size:11px;color:var(--c-trust);font-weight:600;
  margin-bottom:8px;
}
.stress-check-lp .tri-diagram__row{display:flex;align-items:center;justify-content:space-between;gap:6px}
.stress-check-lp .tri-node{
  flex:1;text-align:center;
  border:1.5px dashed var(--c-trust);
  border-radius:50%;
  padding:14px 4px;
  font-size:10px;color:var(--c-trust);font-weight:600;
  background:#fff;
  display:flex;flex-direction:column;align-items:center;gap:4px;
  aspect-ratio:1/1;justify-content:center;
}
.stress-check-lp .tri-node svg{width:22px;height:22px;color:var(--c-trust)}
.stress-check-lp .tri-arrow{color:var(--c-trust);flex:0 0 18px;display:flex;align-items:center;justify-content:center;font-size:14px}

/* ===========================================
   STRESS DISTRIBUTION CHART (in design3 row 02)
   =========================================== */
.stress-check-lp .dist-chart{
  background:#fff;border:1px solid var(--c-border-soft);
  border-radius:var(--r-md);
  padding:12px 14px 10px;
  width:100%;
}
.stress-check-lp .dist-chart__title{
  text-align:center;font-size:11px;color:var(--c-trust);font-weight:700;
  margin-bottom:8px;
}
.stress-check-lp .dist-chart__row{
  display:grid;grid-template-columns:74px 1fr;gap:8px;align-items:center;
  margin-bottom:5px;font-size:10px;color:var(--c-trust);
}
.stress-check-lp .dist-chart__label{text-align:right;white-space:nowrap}
.stress-check-lp .dist-chart__bar{
  height:9px;background:var(--c-bluegray);border-radius:3px;overflow:hidden;
  display:flex;
}
.stress-check-lp .dist-chart__bar span{display:block;height:100%}
.stress-check-lp .dist-chart__bar .b-low{background:var(--c-trust)}
.stress-check-lp .dist-chart__bar .b-mid{background:var(--c-trust-2)}
.stress-check-lp .dist-chart__bar .b-high{background:var(--c-aqua)}
.stress-check-lp .dist-chart__legend{
  display:flex;justify-content:space-between;font-size:9px;
  margin-top:6px;color:var(--c-text-soft);
}

/* ===========================================
   RESPONSIVE
   =========================================== */
@media (max-width:1023px){
  .stress-check-lp .container{max-width:760px}
  .stress-check-lp .hero__title{font-size:32px}
}
@media (max-width:767px){
  .stress-check-lp section{padding:60px 0}
  .stress-check-lp .container{padding:0 18px}
  .stress-check-lp .section-title{font-size:22px;margin-bottom:32px}

  .stress-check-lp .hero{padding:40px 0 48px}
  .stress-check-lp .hero .container{grid-template-columns:1fr;gap:24px}
  .stress-check-lp .hero__title{font-size:25px;line-height:1.4}
  .stress-check-lp .hero__visual{min-height:200px;order:-1;height:200px}
  .stress-check-lp .hero__visual .checklist{width:48%}
  .stress-check-lp .hero__visual .barchart{width:54%}

  .stress-check-lp .duty__grid{grid-template-columns:1fr;gap:20px}
  .stress-check-lp .duty__cards{grid-template-columns:1fr 1fr 1fr;gap:8px}
  .stress-check-lp .duty__card{padding:14px 6px}

  .stress-check-lp .flow4__grid{grid-template-columns:1fr;gap:12px}
  .stress-check-lp .flow-card{grid-template-columns:48px 1fr 44px;padding:16px}
  .stress-check-lp .flow-card__num{font-size:26px}
  .stress-check-lp .flow-card__icon{width:42px;height:42px}

  .stress-check-lp .design3__row{grid-template-columns:1fr;gap:10px;padding:18px}
  .stress-check-lp .design3__media{width:100%}

  .stress-check-lp .pricing__table{font-size:11.5px}
  .stress-check-lp .pricing__table th,
  .stress-check-lp .pricing__table td{padding:10px 8px}
  .stress-check-lp .pricing__table .price{font-size:15px}
  .stress-check-lp .pricing__addons{grid-template-columns:1fr;gap:8px}

  .stress-check-lp .steps__grid{grid-template-columns:1fr 1fr;gap:10px}
  .stress-check-lp .step__arrow{display:none}

  .stress-check-lp .pd__card{grid-template-columns:48px 1fr;gap:12px;padding:16px}
  .stress-check-lp .pd__links{grid-column:1/-1;flex-direction:row;flex-wrap:wrap}

  .stress-check-lp .footer-cta h2{font-size:22px}
}

/* ===========================================
   SWELL header/footer hide on this template
   =========================================== */
body.page-template-page-stress-check-lp #header,
body.page-template-page-stress-check-lp .l-header,
body.page-template-page-stress-check-lp #footer,
body.page-template-page-stress-check-lp .l-footer,
body.page-template-page-stress-check-lp .p-fixBtnsArea,
body.page-template-page-stress-check-lp .p-pageTitle,
body.page-template-page-stress-check-lp .c-pageTitle{display:none !important}
body.page-template-page-stress-check-lp .l-container,
body.page-template-page-stress-check-lp .l-mainContent,
body.page-template-page-stress-check-lp .l-mainContent__inner,
body.page-template-page-stress-check-lp .p-mainContents,
body.page-template-page-stress-check-lp .post_content{max-width:none !important;width:100% !important;margin:0 !important;padding:0 !important}
body.page-template-page-stress-check-lp{margin:0 !important;padding:0 !important}
