:root{
  --s-bg: #ffffff;
  --s-ink: #0b1220;
  --s-muted: rgba(11,18,32,.72);

  --s-blue: #1e8cc8;
  --s-blue2: #167ed6;
  --s-blue-soft: #eaf6ff;

  --s-soft: #f6fbff;
  --s-soft2: #f2f7fb;

  --s-line: rgba(11,18,32,.10);
  --s-shadow: 0 18px 46px rgba(11,18,32,.10);

  --s-radius-lg: 18px;
  --s-radius-md: 14px;

  --s-container: min(1120px, calc(100% - 40px));
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{ margin: 0; }

.s-body{
  background: var(--s-bg);
  color: var(--s-ink);
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Noto Sans JP", "Hiragino Sans", "Yu Gothic", sans-serif;
  line-height: 1.9;
  font-weight: 500; /* 基本500 */
}

a{ color: inherit; text-decoration: none; }

.s-main{ width:100%; }
.s-container{ width: var(--s-container); margin: 0 auto; }

.s-br-sm{ display:none; }
@media (max-width: 680px){
  .s-br-sm{ display:block; }
}

.s-strong{ font-weight: 600; }

/* ===== Header ===== */
.s-header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(11,18,32,.08);
}

.s-header-inner{
  width: var(--s-container);
  margin: 0 auto;
  padding: 14px 0;
  display:flex;
  align-items:center;
  justify-content:flex-start;
}

.s-header-brand-ja{
  font-weight: 600;
  letter-spacing: .03em;
  font-size: 1.06rem;
}

/* ===== Hero ===== */
.s-hero{
  padding: 66px 0 46px;
  background:
    radial-gradient(900px 420px at 50% -80px, rgba(30,140,200,.14), rgba(255,255,255,0) 62%),
    linear-gradient(180deg, var(--s-soft), #fff);
}

.s-hero-inner{
  width: var(--s-container);
  margin: 0 auto;
  text-align:center;
}

.s-hero-eyebrow{
  margin: 0;
  letter-spacing: .28em;
  font-weight: 600;
  font-size: .86rem;
  color: rgba(11,18,32,.45);
}

.s-hero-title{
  margin: 14px 0 0;
  font-weight: 600;
  letter-spacing: .02em;
  line-height: 1.2;
  font-size: clamp(2.0rem, 3.0vw, 2.7rem);
}

.s-hero-sub{
  margin: 14px auto 0;
  max-width: 900px;
  color: rgba(11,18,32,.70);
}

.s-hero-meta{
  margin-top: 18px;
  display:flex;
  gap: 18px;
  justify-content:center;
  flex-wrap: wrap;
  color: rgba(11,18,32,.64);
}
.s-hero-meta-item{
  display:flex;
  gap: 10px;
  align-items:center;
}
.s-hero-meta-k{
  font-weight: 600;
  color: rgba(11,18,32,.52);
}
.s-hero-meta-v{
  font-weight: 500;
}

/* ===== Blue section ===== */
.s-blue{
  background: var(--s-blue);
  padding: 64px 0;
}

.s-blue-inner{
  width: var(--s-container);
  margin: 0 auto;
  text-align:center;
  color:#fff;
}

.s-blue-strap{
  margin: 0;
  letter-spacing: .30em;
  font-weight: 600;
  font-size: .84rem;
  opacity: .9;
}

.s-blue-head{
  margin: 14px 0 0;
  font-weight: 600;
  letter-spacing: .02em;
  font-size: clamp(1.55rem, 2.2vw, 2.05rem);
}

.s-blue-lead{
  margin: 12px auto 0;
  max-width: 900px;
  opacity: .92;
}

/* 枠感を減らして背景差で見せる */
.s-point-grid{
  margin-top: 26px;
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  text-align:left;
}

.s-point-item{
  padding: 10px 8px 0;
}

.s-point-ic{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  background: rgba(255,255,255,.16);
  color: #fff;
  font-size: 1.05rem;
}

.s-point-title{
  margin: 12px 0 0;
  font-size: 1.02rem;
  font-weight: 600;
}

.s-point-text{
  margin: 8px 0 0;
  color: rgba(255,255,255,.88);
}

/* ===== Sections ===== */
.s-section{ padding: 64px 0; }
.s-section--white{ background:#fff; }
.s-section--soft{
  background: var(--s-soft2);
  border-top: 1px solid rgba(11,18,32,.05);
  border-bottom: 1px solid rgba(11,18,32,.05);
}

.s-section-head{ text-align:center; }
.s-section-title{
  margin: 0;
  font-weight: 600;
  letter-spacing: .02em;
  font-size: clamp(1.45rem, 2.1vw, 1.95rem);
}
.s-section-lead{
  margin: 12px auto 0;
  max-width: 920px;
  color: rgba(11,18,32,.66);
}

/* ===== Menu grid ===== */
.s-menu-grid{
  margin-top: 26px;
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.s-menu{
  background: rgba(255,255,255,.96);
  border-radius: var(--s-radius-md);
  padding: 18px;
  box-shadow: 0 12px 30px rgba(11,18,32,.08);
}

.s-menu-top{
  display:flex;
  align-items:flex-start;
  gap: 10px;
  flex-wrap: wrap;
}

.s-menu-title{
  margin: 0;
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: .01em;
}

.s-menu-text{
  margin: 10px 0 0;
  color: rgba(11,18,32,.72);
}

.s-menu-list{
  margin: 12px 0 0;
  padding-left: 1.2rem;
  color: rgba(11,18,32,.66);
}

/* badges */
.s-badge{
  display:inline-flex;
  align-items:center;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .02em;
}
.s-badge--blue{
  background: rgba(22,126,214,.10);
  color: var(--s-blue2);
}
.s-badge--teal{
  background: rgba(18,160,160,.12);
  color: rgba(10,120,120,1);
}
.s-badge--green{
  background: rgba(34,170,90,.12);
  color: rgba(24,140,72,1);
}
.s-badge--violet{
  background: rgba(132,92,246,.12);
  color: rgba(106,70,230,1);
}
.s-badge--orange{
  background: rgba(255,140,40,.14);
  color: rgba(210,108,20,1);
}

/* note */
.s-note{
  margin-top: 16px;
  background: rgba(22,126,214,.08);
  border-radius: var(--s-radius-md);
  padding: 12px 14px;
  display:flex;
  gap: 10px;
  align-items:flex-start;
  color: rgba(11,18,32,.72);
}
.s-note i{ color: var(--s-blue2); margin-top: 3px; }

/* ===== Symptom grid ===== */
.s-sym-grid{
  margin-top: 26px;
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.s-sym{
  background: rgba(255,255,255,.92);
  border-radius: var(--s-radius-md);
  padding: 16px 18px;
  box-shadow: 0 10px 26px rgba(11,18,32,.08);
}

.s-sym-title{
  margin: 0;
  display:flex;
  align-items:center;
  gap: 10px;
  font-weight: 600;
  font-size: 1.02rem;
}
.s-sym-title i{ color: var(--s-blue2); }

.s-sym-text{
  margin: 8px 0 0;
  color: rgba(11,18,32,.70);
}

/* ===== Timeline（inspectionと同じ） ===== */
.s-timeline{
  margin: 26px auto 0;
  padding: 0;
  list-style: none;
  max-width: 920px;
  position: relative;
}

.s-timeline::before{
  content:"";
  position:absolute;
  left: 28px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: rgba(22,126,214,.22);
}

.s-timeline-item{
  display:grid;
  grid-template-columns: 56px 1fr;
  gap: 14px;
  align-items:flex-start;
  padding: 12px 0;
}

.s-timeline-no{
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display:grid;
  place-items:center;
  background: rgba(22,126,214,.10);
  color: var(--s-blue2);
  font-weight: 600;
  position: relative;
  z-index: 1;
}

.s-timeline-title{
  font-weight: 600;
  letter-spacing: .01em;
}
.s-timeline-desc{
  margin: 6px 0 0;
  color: rgba(11,18,32,.68);
}

/* ===== CTA ===== */
.s-cta{
  padding: 58px 0 74px;
  background: linear-gradient(180deg, #f8fbff, #fff);
  border-top: 1px solid rgba(11,18,32,.06);
}

.s-cta-inner{
  width: var(--s-container);
  margin: 0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 16px;
}

.s-cta-title{
  margin: 0;
  font-weight: 600;
  font-size: clamp(1.32rem, 2.0vw, 1.65rem);
}

.s-cta-desc{
  margin: 10px 0 0;
  color: rgba(11,18,32,.70);
}

.s-cta-actions{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content:flex-end;
}

.s-cta-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 12px;
  background: var(--s-blue2);
  color:#fff;
  font-weight: 600;
  box-shadow: 0 18px 46px rgba(22,126,214,.18);
  transition: transform .2s ease, box-shadow .2s ease;
}
.s-cta-btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 24px 60px rgba(22,126,214,.22);
}

.s-cta-tel{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid rgba(22,126,214,.25);
  background: rgba(22,126,214,.06);
  color: rgba(11,18,32,.82);
  font-weight: 600;
}

/* ===== Footer ===== */
.s-footer{
  background:#fff;
  border-top: 1px solid rgba(11,18,32,.10);
  text-align:center;
  padding: 18px 0;
}
.s-footer-copy{
  color: rgba(11,18,32,.55);
}

/* ===== Responsive ===== */
@media (max-width: 980px){
  .s-point-grid{ grid-template-columns: 1fr; }
  .s-menu-grid{ grid-template-columns: 1fr; }
  .s-sym-grid{ grid-template-columns: 1fr; }

  .s-cta-inner{ flex-direction: column; align-items:flex-start; }
  .s-cta-actions{ width: 100%; justify-content: stretch; }
  .s-cta-actions a{ width: 100%; }

  .s-timeline::before{ left: 24px; }
  .s-timeline-item{ grid-template-columns: 52px 1fr; }
}

@media (max-width: 720px){
  :root{ --s-container: calc(100% - 28px); }
}
