@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@700;900&display=swap');

:root{
  --deep-blue:#001f3f;
  --main-blue:#005bac;
  --accent-yellow:#fff200;
  --accent-orange:#ff8a00;

  --pink-grad:linear-gradient(180deg,#ff6b9d 0%,#ee0979 100%);
  --green-grad:linear-gradient(180deg,#86d454 0%,#56ab2f 100%);
  --moss-grad:linear-gradient(180deg,#749d94 0%,#56a79f 100%);

  --white:#fff;
  --bg:#f0f2f5;

  --header-h:86px;
}

*{margin:0;padding:0;box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  font-family:'Noto Sans JP',sans-serif;
  color:#333;
  background:var(--bg);
  line-height:1.6;
  padding-top:var(--header-h);
}
a{text-decoration:none;color:inherit;}
button{font-family:inherit;}
img{max-width:100%;height:auto;display:block;}

.container{
  width:100%;
  max-width:500px;
  margin:0 auto;
  background:var(--white);
  position:relative;
}

/* �ݖ�^�C�g���F�������{�w�i */
.diag-q{
  background: linear-gradient(135deg, #005bac 0%, #003f7f 100%);
  color: #ffffff;
  padding: 14px 12px;
  border-radius: 12px;
  font-size: 19px;
  font-weight: 900;
  text-align: center;
  margin-bottom: 18px;
  line-height: 1.35;
}

/* =========================
   FIXED HEADER�i�펞�Ǐ]�j
   ========================= */
.sticky-header{
  position:fixed;
  top:0;left:0;right:0;
  z-index:3000;
  max-width:500px;
  margin:0 auto;
  background:#fff;
  box-shadow:0 4px 10px rgba(0,0,0,.15);
  padding:8px 12px;
}
.header-top{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:6px;
  gap:8px;
}
.top-cta{
  background:var(--pink-grad);
  color:#fff;
  padding:6px 12px;
  border-radius:999px;
  font-weight:900;
  font-size:11px;
  text-align:center;
  line-height:1.15;
  box-shadow:0 4px 0 #b30059;
  white-space:nowrap;
}
.status-banner{
  background:#fff;
  border:1px solid #ff0000;
  border-radius:6px;
  padding:6px 8px;
  text-align:center;
}
.live-indicator{
  display:inline-block;
  width:8px;height:8px;
  background:#ff0000;border-radius:50%;
  margin-right:6px;
  animation:blink 1s infinite;
  vertical-align:middle;
}
@keyframes blink{0%,100%{opacity:1}50%{opacity:.3}}
.status-text{
  font-size:12px;
  font-weight:900;
  line-height:1.25;
}
.status-text b{
  color:#ff0000;
  font-size:14px;
}

/* ===== �w�b�_�[���S���� ===== */
.logo-area {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-main {
  font-weight: 900;
  font-size: 16px;
  letter-spacing: -0.02em;
  color: var(--main-blue);
}
.logo-sub {
  font-size: 11px;
  font-weight: 900;
  color: #ff0000;
  margin-top: 2px;
}

/* =========================
   FV
   ========================= */
.fv{
  background:linear-gradient(135deg,var(--deep-blue) 0%,var(--main-blue) 100%);
  text-align:center;
}
.fv img{width:100%;height:auto;}
.diag-trigger-area{padding:18px 15px;background:var(--main-blue);}

/* ���F�{�^���i�O���[�F�͂ݏo���Ȃ��j */
.btn-main-yellow{
  background:var(--accent-yellow);
  color:#000;
  font-weight:900;
  font-size:20px;
  padding:18px;
  border-radius:999px;
  border:none;
  width:100%;
  cursor:pointer;
  text-align:center;
  display:block;
  box-shadow:0 6px 0 #b7a600;
  position:relative;
  overflow:hidden;
  animation:glowYellow 1.25s ease-in-out infinite;
}
@keyframes glowYellow{
  0%   { box-shadow:0 6px 0 #b7a600, 0 0 0 rgba(255,242,0,0.00); }
  45%  { box-shadow:0 6px 0 #b7a600, 0 0 26px rgba(255,242,0,0.85); }
  100% { box-shadow:0 6px 0 #b7a600, 0 0 0 rgba(255,242,0,0.00); }
}

/* =========================
   SECTION COMMON
   ========================= */
.section{padding:40px 20px;border-bottom:1px solid #eee;}
.section-dark{background:var(--deep-blue);color:#fff;padding:40px 20px;}
.h2-title{
  font-size:22px;
  font-weight:900;
  text-align:center;
  margin-bottom:18px;
  line-height:1.35;
  word-break:keep-all;
}
.h2-title span{
  color:var(--accent-yellow);
  font-size:15px;
  display:block;
  margin-bottom:6px;
}

/* =========================
   PRICE CARDS
   ========================= */
.price-card{
  background:#fff;
  border-radius:12px;
  overflow:hidden;
  margin-bottom:24px;
  color:#333;
  box-shadow:0 6px 15px rgba(0,0,0,.12);
}
.price-img{width:100%;height:200px;object-fit:cover;}
.price-info{padding:15px;}
.price-row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  font-weight:900;
  font-size:19px;
  color:var(--main-blue);
  gap:10px;
}
.price-val{color:#ff0000;font-size:20px;white-space:nowrap;}
.check-list{color:#d32f2f;font-size:14px;font-weight:900;margin:10px 0;}
.solve-box{
  background:#f0f7ff;
  padding:10px;
  border-radius:8px;
  font-size:13px;
  margin-bottom:14px;
  font-weight:700;
  border-left:5px solid var(--main-blue);
}

/* �Ǐ�� �f�f�{�^���i������ + �Όn�O���[���o�j */
.btn-diag-moss{
  background:var(--moss-grad);
  color:#fff;
  font-weight:900;
  font-size:18px;
  padding:16px;
  border-radius:12px;
  border:none;
  width:100%;
  cursor:pointer;
  text-align:center;
  display:block;
  position:relative;
  overflow:hidden;
  text-shadow:0 1px 0 rgba(0,0,0,.22);
  box-shadow:0 5px 0 #3d7a74;
  animation:glowGreen 1.25s ease-in-out infinite;
}
@keyframes glowGreen{
  0%   { box-shadow:0 5px 0 #3d7a74, 0 0 0 rgba(86,171,47,0.00); }
  45%  { box-shadow:0 5px 0 #3d7a74, 0 0 24px rgba(86,171,47,0.85); }
  100% { box-shadow:0 5px 0 #3d7a74, 0 0 0 rgba(86,171,47,0.00); }
}

.cta-tel-pink{
  background:var(--pink-grad);
  color:#fff;
  display:block;
  padding:15px 14px;
  border-radius:12px;
  font-size:18px;
  font-weight:900;
  text-decoration:none;
  text-align:center;
  box-shadow:0 5px 0 #b30059;
  margin-bottom:10px;
  line-height:1.2;
}
.cta-tel-pink small{
  display:block;
  font-size:12px;
  margin-bottom:4px;
  opacity:.95;
  line-height:1.15;
}
.cta-line-green{
  background:var(--green-grad);
  color:#fff;
  display:block;
  padding:15px 14px;
  border-radius:12px;
  font-size:17px;
  font-weight:900;
  text-decoration:none;
  text-align:center;
  box-shadow:0 5px 0 #3e7b1f;
  line-height:1.25;
  word-break:keep-all;
}

/* =========================
   NAYAMI IMAGE�i�����T�C�Y�j
   ========================= */
.nayami-wrap{
  margin: 6px auto 14px;
  width: 38%;
  max-width: 190px;
  min-width: 130px;
}

/* =========================
   REASONS�i�c�J�[�h�F�摜�����o�����{���^�����j
   ========================= */
.reasons-title{
  text-align:center;
  font-weight:900;
  color:var(--accent-yellow);
  font-size:20px;
  margin:18px 0 14px;
  letter-spacing:.2px;
}
.reason-card{
  background:#ffffff12;
  border:1px solid rgba(255,255,255,.18);
  border-radius:14px;
  padding:16px 14px;
  margin:12px 0;
  text-align:center;
}
.reason-h{
  font-size:20px;
  font-weight:900;
  margin-bottom:8px;
  color:#fff;
}
.reason-p{
  font-size:14px;
  font-weight:700;
  color:#fff;
  opacity:.95;
  line-height:1.55;
}
.em-orange{color:var(--accent-orange);}

/* ===== REASON�摜�F�����`�g���~���O�����i�ŏIFix�j ===== */
.reason-icon{
  width: 38%;
  max-width: 190px;
  min-width: 130px;
  margin: 0 auto 12px;
  border-radius: 18px;
  overflow: visible;
  aspect-ratio: auto;
}
.reason-icon img{
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

/* =========================
   STATS�i���сj
   ========================= */
.jisseki-wrap{
  margin: 12px auto 16px;
  width: 70%;
  max-width: 340px;
}
.stats-grid{
  display:grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap:10px;
  margin-top:16px;
}
.stat-card{
  background:#fff;
  border-radius:12px;
  padding:14px 8px;
  text-align:center;
  box-shadow:0 6px 16px rgba(0,0,0,.12);
  border:2px solid var(--accent-yellow);
}
.stat-num{
  display:block;
  font-size:24px;
  font-weight:900;
  color:var(--main-blue);
  line-height:1.05;
  margin-bottom:6px;
}
.stat-label{
  display:block;
  font-size:12px;
  font-weight:900;
  color:#444;
  line-height:1.15;
}
.center-text{ text-align:center; }
.big-emphasis{
  text-align:center;
  font-weight:900;
  font-size:18px;
  color:var(--accent-orange);
  margin:10px 0 0;
}

/* =========================
   VOICE�i�ȈՁj
   ========================= */
.voice-card{
  background:#f9f9f9;
  padding:15px;
  border-radius:12px;
  margin-bottom:10px;
  box-shadow:0 4px 12px rgba(0,0,0,.08);
}
.stars{color:#ffcc00;font-weight:900;}
.tag{
  display:inline-block;
  padding:4px 10px;
  border-radius:999px;
  font-weight:900;
  font-size:12px;
  color:#fff;
  margin-left:6px;
  vertical-align:middle;
  line-height:1.2;
}
.tag-blue{background:linear-gradient(180deg,#0b63c7 0%,#0a4fa0 100%);}
.tag-green{background:linear-gradient(180deg,#5bbd2a 0%,#2e8e18 100%);}

/* =========================
   FAQ�iQ=�� / A=�I�����W�j
   ========================= */
.faq-title{font-size:22px;font-weight:900;text-align:center;margin-bottom:14px;}
.faq-title .qword{color:var(--main-blue);}
.qa{margin-top:12px;}
.qa b{display:inline-block;}
.q{color:var(--main-blue);font-weight:900;}
.a{color:var(--accent-orange);font-weight:900;}

/* =========================
   STEP�i�ʃZ�N�V�����F�摜���ɕ����j
   ========================= */
.step-title{
  font-size:20px;
  font-weight:900;
  text-align:center;
  margin-bottom:18px;
  line-height:1.35;
  word-break:keep-all;
}
.step-grid{display:flex;flex-direction:column;gap:14px;margin-top:12px;}
.step-card{
  background:#fff;
  border-radius:14px;
  padding:16px 12px;
  text-align:center;
  box-shadow:0 6px 16px rgba(0,0,0,.10);
  border:2px solid #d9ecff;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:10px;
}
.step-card img{
  width:38%;
  max-width:190px;
  min-width:130px;
  aspect-ratio:1/1;
  object-fit:cover;
  border-radius:18px;
}
.step-text{
  font-weight:900;
  font-size:18px;
  color:#111;
  line-height:1.25;
  text-align:center;
}
.marker{
  background:linear-gradient(transparent 58%, rgba(255,138,0,.55) 58%);
  padding:0 4px;
  border-radius:4px;
}
.blue-word{color:var(--main-blue);}

/* =========================
   FLOATING CTA
   ========================= */
.floating-cta{
  position:fixed;
  bottom:0;
  left:0;right:0;
  z-index:2600;
  max-width:500px;
  margin:0 auto;
  background:#fff;
  padding:10px;
  display:flex;
  gap:8px;
  box-shadow:0 -5px 15px rgba(0,0,0,.20);
}
.f-btn{
  flex:1;
  height:62px;
  border-radius:12px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-weight:900;
  font-size:14px;
  line-height:1.15;
  text-align:center;
}
.f-btn small{font-size:11px;opacity:.95;margin-bottom:3px;}

.footer{
  padding:40px 20px 120px;
  background:#1d1d1f;
  color:#fff;
  text-align:center;
  font-size:11px;
}

/* =========================
   DIAG MODAL�i���؂�΍�j
   ========================= */
#diag-modal{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.85);
  z-index:4000;
  display:none;
  align-items:center;
  justify-content:center;
  padding:15px;
}
.diag-box{
  background:#fff;
  border-radius:20px;
  width:100%;
  max-width:420px;
  padding:22px 18px;
  max-height:85vh;
  overflow:auto;
  -webkit-overflow-scrolling:touch;
}
.opt-btn{
  padding:16px 14px;
  border:2px solid #ddd;
  border-radius:12px;
  text-align:center;
  font-weight:900;
  margin-bottom:10px;
  cursor:pointer;
  background:#fff;
}
.diag-result-title{
  font-size:18px;
  font-weight:900;
  color:#fff;
  text-align:center;
  margin-bottom:14px;
  padding:10px 12px;
  border-radius:12px;
  background:#ff3b7a;
}
.diag-result-text{
  font-size:14px;
  font-weight:700;
  margin-bottom:18px;
  line-height:1.65;
  color:#222;
}
.close-link{
  width:100%;
  border:none;
  background:none;
  color:#999;
  text-decoration:underline;
  margin-top:10px;
  cursor:pointer;
  font-weight:900;
}

/* ===== EXIT POPUP �����ڒ����i�]���l�߁j ===== */
.exit-illust{ width:100%; height:auto; border-radius:14px; display:block; margin-bottom:6px; }
.exit-kpi{
  margin:8px 0 6px;
  background:#f7f7f7;
  border-radius:12px;
  padding:6px 10px;
}
.exit-kpi-row{
  display:flex;
  justify-content:space-between;
  gap:10px;
  font-weight:900;
  font-size:12px;
  padding:2px 0;
  line-height:1.2;
}
.exit-kpi-label{ color:#333; }
.exit-kpi-value b{ color:#ff0000; }

/* =========================
   EXIT POPUP�F�l�ߕ\�����[�h
   ========================= */
.diag-box.is-exit{
  padding:14px 14px;
}
.diag-box.is-exit .exit-illust{
  margin-bottom:4px;
}
.diag-box.is-exit .exit-kpi{
  margin:6px 0 6px;
  padding:6px 10px;
}
.diag-box.is-exit .cta-tel-pink{
  margin-bottom:0;
}
.diag-box.is-exit .close-link{
  margin-top:8px;
}

.btn-main-pink{
  background: linear-gradient(180deg,#ff4f9a 0%, #e8006e 100%);
  color:#fff;
  font-weight:900;
  border-radius:999px;
  width:100%;
  display:block;
  text-align:center;
  text-decoration:none;
  padding:14px 18px;
  box-shadow:0 6px 0 #b30059;
  margin:0 0 10px;
  line-height:1.15;
  }
  
  .btn-main-pink .btn-pink-top{
  display:block;
  font-size:16px;
  letter-spacing:.02em;
  opacity:.95;
  }
  
  .btn-main-pink .btn-pink-num{
  display:block;
  font-size:26px;
  margin-top:4px;
  letter-spacing:.04em;
  }
  
  .btn-main-pink:active{
  transform: translateY(1px);
  box-shadow:0 5px 0 #b30059;
  }
  
  .btn-sub-yellow{
  background:#ffe600;
  color:#000;
  font-weight:900;
  font-size:16px;
  padding:12px 16px;
  border-radius:999px;
  width:100%;
  display:block;
  text-align:center;
  text-decoration:none;
  box-shadow:0 4px 0 #b7a600;
  }
  
  .diag-trigger-area{
  padding:16px 15px;
  }