/* =========================================================
   電気チョイス LP / styles.css
   モバイルファースト・モック完全再現版
   ========================================================= */

:root {
  --navy: #16245a;
  --navy-deep: #0d1a4a;
  --navy-2: #1c2c6e;
  --orange: #ee7a1d;
  --orange-deep: #d36a14;
  --orange-light: #ff9b3c;
  --orange-soft: #fff1de;
  --yellow: #ffd84a;
  --yellow-deep: #ffc107;
  --red: #d72424;
  --red-deep: #b81818;
  --cream: #fef7e6;
  --cream-2: #fff3d6;
  --blue-bg: #eaf1fa;
  --blue-soft: #d8e6f4;
  --gray-text: #444;
  --gray-light: #777;
  --line: #e7e0d0;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", system-ui, sans-serif;
  font-weight: 500;
  color: #1a1a1a;
  background: #fff;
  line-height: 1.7;
  font-size: 15px;
  max-width: 480px;
  margin: 0 auto;
  overflow-x: hidden;
  text-wrap: pretty;
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ===== HEADER ===== */
.site-header {
  background: #fff;
  padding: 8px 12px;
  border-bottom: 1px solid #e8e0c8;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  align-items: center;
}
.header-left {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.header-mini {
  font-size: 9px;
  font-weight: 700;
  color: #444;
  letter-spacing: .02em;
  line-height: 1.2;
}
.site-header .logo img {
  height: 28px;
  width: auto;
}
.header-right {
  border: 2px solid var(--red);
  border-radius: 6px;
  padding: 4px 8px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px;
  align-items: center;
}
.warning-icon {
  background: var(--red);
  width: 28px;
  height: 28px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.warning-text {
  font-size: 10px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--red);
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.warning-text .w-line1 { font-size: 10px; }
.warning-text .w-line2 { font-size: 11px; }
.warning-text b {
  font-weight: 900;
  font-size: 13.5px;
  letter-spacing: .01em;
}

/* ============================================================
   FV — 濃紺＋シティスカイライン
   ============================================================ */
.fv {
  position: relative;
  background: linear-gradient(135deg, #0b1a4a 0%, #14266d 50%, #1d3590 100%);
  padding: 0 0 0;
  overflow: hidden;
}
.fv-bg {
  position: absolute;
  inset: 0;
  background: url('assets/FV_haikei.png') right bottom / cover no-repeat;
  opacity: .55;
  z-index: 0;
  pointer-events: none;
}
.fv-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(11,26,74,.92) 0%, rgba(11,26,74,.5) 40%, rgba(11,26,74,.15) 80%);
}
.fv-inner {
  position: relative;
  z-index: 1;
  padding: 20px 16px 14px;
}

/* TOP ROW: 法人向け + リード */
.fv-top-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.fv-tag {
  background: var(--yellow);
  color: var(--navy);
  font-weight: 900;
  font-size: 13px;
  padding: 4px 12px;
  border-radius: 4px;
  letter-spacing: .05em;
  white-space: nowrap;
}
.fv-lead {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 4px;
  line-height: 1.4;
  white-space: nowrap;
}
.sp-only { display: none; }

/* TITLE */
.fv-title {
  margin-bottom: 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.fv-title-sub {
  color: #fff;
  font-size: 30px;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: .01em;
  text-shadow: 0 2px 6px rgba(0,0,0,.4);
}
.fv-title-row {
  display: flex;
  align-items: baseline;
  gap: 4px;
  line-height: 1;
}
.fv-title-emergency {
  background: linear-gradient(180deg, #fff5b3 0%, #ffd84a 35%, #ffb700 65%, #ff8d10 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 60px;
  font-weight: 900;
  letter-spacing: 0;
  filter:
    drop-shadow(2px 2px 0 #5a2a00)
    drop-shadow(0 4px 10px rgba(255,180,40,.3));
  line-height: 1;
}
.fv-title-main {
  color: #fff;
  font-size: 48px;
  font-weight: 900;
  letter-spacing: .01em;
  text-shadow:
    0 2px 0 rgba(0,0,0,.4),
    0 4px 12px rgba(0,0,0,.4);
  line-height: 1;
}

/* SUB */
.fv-sub {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: .02em;
}
.fv-sub .hl {
  color: var(--yellow);
  font-weight: 900;
  font-size: 17px;
  letter-spacing: .03em;
  border-bottom: 2px solid var(--yellow);
  padding-bottom: 1px;
  margin-left: 2px;
}

/* BADGES — 3 white cards */
.fv-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-bottom: 14px;
}
.fv-badges li {
  background: #fff;
  border-radius: 12px;
  padding: 12px 4px 12px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  box-shadow: 0 4px 14px rgba(0,0,0,.18);
}
.fv-badges img {
  width: 100%;
  height: auto;
  max-height: 64px;
  aspect-ratio: 714 / 396;
  object-fit: contain;
  margin-bottom: 2px;
}
.fv-badges .b-top {
  font-size: 12px;
  line-height: 1.2;
  color: var(--navy);
  font-weight: 700;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 1px;
}
.fv-badges .b-top b {
  font-weight: 900;
  font-size: 16px;
  color: var(--navy);
  letter-spacing: -.02em;
  line-height: 1;
}
.fv-badges .b-top em {
  font-style: normal;
  font-size: 11px;
  font-weight: 700;
  color: var(--navy);
}
.fv-badges .b-bottom {
  font-size: 14px;
  font-weight: 900;
  color: var(--navy);
  line-height: 1.2;
  letter-spacing: .02em;
}

/* ご相談例 - 2x2 grid */
.fv-examples {
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 8px;
  padding: 12px 14px;
  margin-bottom: 14px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  backdrop-filter: blur(4px);
}
.ex-tag {
  background: #fff;
  color: var(--navy);
  font-weight: 900;
  font-size: 10px;
  padding: 6px 6px;
  border-radius: 4px;
  text-align: center;
  line-height: 1.2;
  align-self: center;
  letter-spacing: .03em;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}
.fv-examples ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 12px;
  align-content: center;
}
.fv-examples li {
  font-size: 8.5px;
  color: #fff;
  font-weight: 700;
  padding-left: 14px;
  position: relative;
  line-height: 1.4;
  white-space: nowrap;
  letter-spacing: -.03em;
}
.fv-examples li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 1px;
  width: 12px;
  height: 12px;
  background: var(--orange);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  font-weight: 900;
}

/* FV CTA CARD */
.fv-cta-card {
  background: rgba(8,18,55,.65);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 10px;
  padding: 14px 12px 12px;
  margin-bottom: 14px;
}
.fv-cta-caption {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  flex-wrap: wrap;
  line-height: 1.2;
}
.cap-left {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
}
.cap-free {
  color: var(--yellow);
  font-weight: 900;
  font-size: 22px;
  letter-spacing: .02em;
}
.cap-right {
  font-weight: 700;
  color: #fff;
  font-size: 13px;
}
.fv-cta-note {
  margin-top: 10px;
  text-align: center;
  font-size: 11px;
  color: #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  opacity: .92;
}
.doc-icon {
  display: inline-flex;
  align-items: center;
}
.doc-icon svg { display: block; }

/* CTA button (shared) */
.cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: linear-gradient(to bottom, #ffa64a 0%, var(--orange) 100%);
  color: #fff;
  font-weight: 900;
  font-size: 17px;
  padding: 16px 12px;
  border-radius: 50px;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.5),
    0 4px 0 var(--orange-deep),
    0 6px 18px rgba(240,128,32,.35);
  border: 2px solid #fff;
  letter-spacing: .03em;
  transition: transform .1s, box-shadow .1s;
  position: relative;
  text-shadow: 0 1px 0 rgba(0,0,0,.15);
}
.cta-btn:active {
  transform: translateY(3px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.5),
    0 1px 0 var(--orange-deep),
    0 3px 8px rgba(240,128,32,.3);
}
.cta-badge {
  background: #fff;
  color: var(--orange);
  font-size: 11px;
  font-weight: 900;
  padding: 3px 9px;
  border-radius: 3px;
  letter-spacing: .05em;
  text-shadow: none;
}
.cta-arrow { font-size: 13px; }

/* FV ASSURE 下部の白帯 */
.fv-assure {
  background: #fff;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 4px;
  padding: 14px 10px;
  position: relative;
  z-index: 2;
}
.fv-assure li {
  display: flex;
  align-items: center;
  gap: 6px;
  text-align: left;
  border-right: 1px solid #e6dec5;
  padding: 0 4px;
  justify-content: center;
}
.fv-assure li:last-child { border-right: none; }
.fv-assure img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  flex-shrink: 0;
}
.fv-assure span {
  font-size: 10px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
}

/* ============================================================
   セクション見出しタブ
   ============================================================ */
.section-tag {
  display: flex;
  justify-content: center;
  margin-bottom: 14px;
}
.section-tag span {
  background: var(--navy);
  color: #fff;
  font-weight: 700;
  font-size: 12px;
  padding: 5px 22px;
  border-radius: 100px;
  letter-spacing: .15em;
  position: relative;
}
.section-tag span::before,
.section-tag span::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 14px;
  height: 1px;
  background: var(--navy);
  transform: translateY(-50%);
}
.section-tag span::before { left: -18px; }
.section-tag span::after  { right: -18px; }

.section-tag.tag-light span { background: var(--orange); }
.section-tag.tag-light span::before,
.section-tag.tag-light span::after { background: var(--orange); }

/* ============================================================
   ABOUT
   ============================================================ */
/* ============================================================
   ABOUT — spec準拠（1024px設計を480px幅へ約0.47スケール）
   ============================================================ */
.about {
  background: #EEF6FD;
  padding: 32px 14px 26px;
}
.about-card {
  position: relative;
  background: #fff;
  border-radius: 14px;
  padding: 46px 16px 12px;
  margin-top: 14px;
}
.about-label {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #062B61;
  color: #fff;
  font-weight: 900;
  font-size: 18px;
  letter-spacing: .4em;
  padding-left: .4em;
  width: 64%;
  max-width: 280px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px 6px 4px 4px;
  clip-path: polygon(0 0, 100% 0, 92% 100%, 8% 100%);
}

/* MAIN COPY */
.about-title {
  text-align: center;
  line-height: 1.2;
  color: #061F54;
  margin-top: 8px;
  margin-bottom: 18px;
  letter-spacing: .02em;
}
.about-title-1 {
  display: block;
  font-size: 21px;
  font-weight: 700;
  margin-bottom: 6px;
}
.about-title-2 {
  display: block;
  font-size: 27px;
  font-weight: 900;
  line-height: 1.15;
}
.about-title-2 .emph {
  color: #FF5A00;
  font-size: 36px;
  font-weight: 900;
  letter-spacing: 0;
}

/* LOGO */
.about-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}
.about-logo img {
  width: 174px;
  height: auto;
}

/* DIVIDER */
.about-divider {
  width: 50px;
  height: 2px;
  background: #D6DCE5;
  margin: 8px auto 14px;
}

/* LEAD */
.about-lead {
  text-align: center;
  color: #000;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.9;
  margin-bottom: 24px;
  letter-spacing: .01em;
}
.about-lead .num {
  color: #FF5A00;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: .02em;
}

/* ITEM LIST */
.about-items {
  border: 2px solid #DCEBFA;
  border-radius: 12px;
  padding: 6px 12px 4px;
  background: #fff;
}
.about-item {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 12px;
  align-items: center;
  padding: 18px 4px;
  border-bottom: 1px solid #D7DDE8;
}
.about-item:last-child { border-bottom: none; }

.about-item-icon {
  width: 88px;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.about-item-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.about-item-body h3 {
  font-size: 17px;
  font-weight: 900;
  color: #061F54;
  margin-bottom: 6px;
  letter-spacing: .01em;
  line-height: 1.3;
}
.about-item-body p {
  font-size: 12px;
  line-height: 1.7;
  color: #061F54;
  font-weight: 500;
}
.about-item-body .emph {
  color: #FF5A00;
  font-weight: 900;
}

/* BOTTOM BOX */
.about-bottom {
  margin-top: 14px;
  background: #EAF4FF;
  border-radius: 12px;
  padding: 14px 14px;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 12px;
  align-items: center;
}
.about-bottom-icon {
  width: 56px;
  height: 56px;
  object-fit: contain;
}
.about-bottom p {
  font-size: 12.5px;
  line-height: 1.55;
  color: #061F54;
  font-weight: 700;
}

/* ============================================================
   こんなお悩み (相談できること) — spec準拠
   ============================================================ */
.needs {
  background: #fff;
  padding: 28px 14px 8px;
}

/* タブ */
.needs-tab {
  background: #062B61;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .12em;
  width: 170px;
  height: 34px;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  clip-path: polygon(0 0, 100% 0, 92% 100%, 8% 100%);
  padding-left: .4em;
}

/* タイトル2行 */
.needs-title {
  text-align: center;
  margin-bottom: 22px;
  line-height: 1.15;
}
.needs-title .t1 {
  display: block;
  font-size: 30px;
  font-weight: 900;
  color: #061F54;
  margin-bottom: 8px;
  letter-spacing: .02em;
}
.needs-title .t2-wrap {
  display: inline-block;
  position: relative;
}
.needs-title .t2 {
  font-size: 44px;
  font-weight: 900;
  color: #FF5A00;
  letter-spacing: .02em;
  line-height: 1;
}
.needs-title .t2-end {
  color: #061F54;
}

/* 4項目カード */
.needs-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.needs-item {
  background: #fff;
  border: 1px solid #DDE7F5;
  border-radius: 12px;
  padding: 16px 18px;
  display: grid;
  grid-template-columns: 78px 1px 1fr;
  gap: 14px;
  align-items: center;
}
.needs-icon {
  width: 78px;
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.needs-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.needs-item::before {
  content: '';
  grid-column: 2;
  align-self: stretch;
  background: #D8DEE8;
  min-height: 80%;
  width: 1px;
  justify-self: center;
}
.needs-item > .needs-icon { grid-column: 1; }
.needs-item > .needs-body { grid-column: 3; }

.needs-body h3 {
  font-size: 15.5px;
  font-weight: 900;
  color: #061F54;
  line-height: 1.45;
  margin-bottom: 6px;
  letter-spacing: .01em;
  display: grid;
  grid-template-columns: 22px 1fr;
  column-gap: 6px;
  align-items: start;
}
.needs-body h3 .num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: #062B61;
  color: #fff;
  border-radius: 50%;
  font-size: 16px;
  font-weight: 900;
  line-height: 1;
  margin: 0;
  font-style: normal;
  font-family: "Noto Sans JP", sans-serif;
  margin-top: 1px;
}
.needs-body h3 .h-text {
  display: block;
}
.needs-body h3 .emph {
  color: #FF5A00;
  font-weight: 900;
}
.needs-body p {
  font-size: 11.5px;
  color: #5A6577;
  line-height: 1.7;
  font-weight: 500;
  padding-left: 28px;
}

/* 下部薄水色帯 */
.needs-foot {
  background: #EAF4FF;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 20px 0 0;
}
.needs-foot-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
}
.needs-foot-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.needs-foot p {
  font-size: 15px;
  font-weight: 700;
  color: #061F54;
  line-height: 1.55;
}
.needs-foot .emph-quote {
  color: #FF5A00;
  font-weight: 900;
}

/* ============================================================
   中間CTA
   ============================================================ */
/* ============================================================
   無料相談 CTAブロック — spec準拠
   ============================================================ */
.cta-block {
  background: #fff;
  padding: 22px 14px 22px;
  text-align: center;
  position: relative;
  border: 14px solid #062B61;
}

/* ① 上部タブ */
.cta-toptab {
  background: #062B61;
  border-radius: 12px;
  padding: 11px 14px;
  margin: 0 auto 22px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  position: relative;
}
.ct-lbl {
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .02em;
}
.ct-free {
  color: #FFD84A;
  font-weight: 900;
  font-size: 20px;
  letter-spacing: .02em;
  line-height: 1;
}

/* ② キャッチ */
.cta-catch {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 900;
  color: #061F54;
  margin-bottom: 12px;
  letter-spacing: .02em;
}
.cta-catch .cc-em {
  color: #FF5A00;
  font-weight: 900;
  margin: 0 2px;
}
.cc-spark {
  position: relative;
  width: 14px;
  height: 28px;
  display: inline-block;
  flex-shrink: 0;
}
.cc-spark i {
  position: absolute;
  width: 12px;
  height: 2.5px;
  background: #061F54;
  border-radius: 2px;
}
.cc-spark.left i:nth-child(1) { top: 18%; left: 0; transform: rotate(30deg); }
.cc-spark.left i:nth-child(2) { bottom: 18%; left: 0; transform: rotate(-30deg); }
.cc-spark.right i:nth-child(1) { top: 18%; right: 0; transform: rotate(-30deg); }
.cc-spark.right i:nth-child(2) { bottom: 18%; right: 0; transform: rotate(30deg); }

/* ③ メインコピー */
.cta-big {
  font-weight: 900;
  color: #061F54;
  line-height: 1.05;
  margin-bottom: 22px;
  letter-spacing: -.02em;
  text-shadow: none;
}
.cta-big .big-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  line-height: 1;
}
.cta-big .cb-em {
  color: #FF5A00;
  font-size: 60px;
  font-weight: 900;
  letter-spacing: -.02em;
}
.cta-big .cb-rest {
  font-size: 50px;
  font-weight: 900;
  color: #061F54;
}
.cta-big .big-row2 {
  font-size: 50px;
  margin-top: 4px;
}

/* ④ クリーム3項目カード */
.cta-points {
  background: #FFF8EC;
  border-radius: 14px;
  padding: 18px 8px;
  margin-bottom: 16px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
}
.cta-points li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 4px 6px;
  border-right: 1px solid #D8DEE8;
  background: transparent;
  box-shadow: none;
}
.cta-points li:last-child { border-right: none; }
.cta-points img {
  width: 78px;
  height: 78px;
  object-fit: contain;
}
.cta-points p {
  font-size: 12.5px;
  font-weight: 700;
  color: #061F54;
  line-height: 1.4;
  text-align: center;
}
.cta-points .pe {
  display: block;
  color: #FF5A00;
  font-weight: 900;
  font-size: 13.5px;
  margin-top: 2px;
}

/* ⑤ CTAボタン (large variant override) */
.cta-btn-lg {
  font-size: 18px;
  padding: 18px 12px;
  background: linear-gradient(to bottom, #FF9A4A 0%, #FF5A00 100%);
  border: none;
  outline: none;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.4),
    0 4px 12px rgba(255,90,0,.3);
}
.cta-btn-lg .cta-badge {
  width: 42px;
  height: 42px;
  background: #fff;
  color: #FF5A00;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 900;
  padding: 0;
}
.cta-btn-lg .cta-arrow {
  font-size: 22px;
  font-weight: 900;
  margin-left: 4px;
}
.cta-btn-lg .cta-text {
  flex: 1;
  text-align: center;
  font-size: 17px;
  letter-spacing: .02em;
}

/* ⑥ 下部の安心3項目 */
.cta-trust {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  margin-top: 16px;
  background: #fff;
  padding: 6px 0;
}
.cta-trust li {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 6px 6px;
  border-right: 1px solid #D8DEE8;
  justify-content: center;
}
.cta-trust li:last-child { border-right: none; }
.cta-trust img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  flex-shrink: 0;
}
.cta-trust span {
  font-size: 10.5px;
  font-weight: 700;
  color: #061F54;
  line-height: 1.35;
  text-align: left;
}

/* ⑦ 請求書注釈 */
.cta-block .cta-note {
  margin-top: 14px;
  font-size: 12px;
  font-weight: 700;
  color: #061F54;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.cta-block .note-icon {
  display: inline-flex;
  align-items: center;
}
.cta-block .note-icon svg { display: block; }

/* ============================================================
   切り替え事例
   ============================================================ */
/* ============================================================
   切り替え事例 — spec準拠
   ============================================================ */
.cases {
  background: #fff;
  padding: 28px 14px 22px;
}

/* タブ */
.cases-tab {
  background: #062B61;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .12em;
  width: 170px;
  height: 34px;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  clip-path: polygon(0 0, 100% 0, 92% 100%, 8% 100%);
  padding-left: .4em;
}

/* タイトル */
.cases-title {
  text-align: center;
  margin-bottom: 22px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  line-height: 1.1;
}
.cases-title .ct-inner {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
}
.cases-title .ct-line1 {
  font-size: 23px;
  font-weight: 700;
  color: #061F54;
  letter-spacing: .02em;
}
.cases-title .ct-bold {
  font-weight: 900;
  color: #061F54;
}
.cases-title .ct-line2 {
  font-size: 36px;
  font-weight: 900;
  color: #061F54;
  letter-spacing: 0;
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
}
.cases-title .ct-emph {
  color: #FF5A00;
  font-size: 44px;
  font-weight: 900;
}

/* 放射線 */
.ct-rays {
  position: relative;
  width: 22px;
  height: 60px;
  display: inline-block;
  flex-shrink: 0;
}
.ct-rays i {
  position: absolute;
  width: 14px;
  height: 2.5px;
  background: #FF5A00;
  border-radius: 2px;
  transform-origin: right center;
}
.ct-rays-l i { right: 0; }
.ct-rays i:nth-child(1) { top: 8%;  transform: rotate(-50deg); }
.ct-rays i:nth-child(2) { top: 28%; transform: rotate(-18deg); width: 16px; }
.ct-rays i:nth-child(3) { top: 56%; transform: rotate(18deg);  width: 16px; }
.ct-rays i:nth-child(4) { top: 78%; transform: rotate(50deg);  }
.ct-rays-r { transform: scaleX(-1); }

/* 事例カード */
.cases-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.case-row {
  background: #fff;
  border-radius: 16px;
  padding: 16px 14px;
  position: relative;
  box-shadow: 0 2px 10px rgba(0,0,0,.06);
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 10px;
  align-items: center;
}

/* 業種ブロック */
.case-biz {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
}
.case-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2px;
}
.case-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.case-icon.case-icon-full {
  background: transparent;
}
.case-icon.case-icon-full img {
  width: 100%;
  height: 100%;
  filter: none;
}
.case-biz-name {
  font-size: 13.5px;
  font-weight: 900;
  color: #061F54;
  line-height: 1.2;
}
.case-biz-name small {
  font-size: 9.5px;
  font-weight: 700;
  color: #5A6577;
  letter-spacing: -.02em;
}
.case-biz-pref {
  font-size: 10px;
  color: #5A6577;
  font-weight: 500;
  line-height: 1.2;
}

/* 料金比較ブロック */
.case-table {
  display: grid;
  grid-template-columns: 1fr 12px 1fr;
  gap: 2px;
  align-items: stretch;
}
.case-col {
  text-align: center;
  padding: 0;
  border-radius: 6px;
  background: #F7F7FA;
  border: none;
  overflow: hidden;
}
.case-col.after {
  background: #FFF5EC;
}
.case-label {
  display: block;
  font-size: 9.5px;
  font-weight: 700;
  color: #fff;
  background: #B0B7C4;
  padding: 3px 0;
  margin: 0;
  border-radius: 0;
}
.case-col.after .case-label {
  background: #FF5A00;
}
.case-amt {
  font-weight: 900;
  font-size: 19px;
  color: #061F54;
  line-height: 1.1;
  padding: 8px 0 10px;
  letter-spacing: -.02em;
}
.case-amt small { font-size: 10px; font-weight: 700; margin-left: 1px; letter-spacing: 0; }
.case-col.after .case-amt { color: #FF5A00; }
.case-arrow {
  font-size: 11px;
  color: #061F54;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 削減額ブロック */
.case-saving {
  background: transparent;
  border-radius: 0;
  padding: 0 0 0 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #061F54;
  position: relative;
  box-shadow: none;
  text-align: center;
}
.case-saving .kirakira {
  position: absolute;
  width: 22px;
  height: 22px;
  top: -16px;
  right: -4px;
  z-index: 2;
}
.save-tag {
  background: transparent;
  color: #061F54;
  font-weight: 700;
  font-size: 10.5px;
  padding: 0;
  border-radius: 0;
  white-space: nowrap;
  line-height: 1.2;
  margin-bottom: 2px;
}
.save-amt {
  font-weight: 900;
  font-size: 18px;
  line-height: 1;
  letter-spacing: -.01em;
  color: #FF5A00;
  display: inline-flex;
  align-items: baseline;
  position: relative;
}
.save-amt::after {
  content: '';
  position: absolute;
  left: -2px;
  right: -2px;
  bottom: -2px;
  height: 6px;
  background: #FFF4D6;
  border-radius: 2px;
  z-index: -1;
}
.save-num { font-size: 17px; font-weight: 900; letter-spacing: -.02em; }
.save-cut {
  font-size: 14px;
  font-weight: 900;
  color: #FF5A00;
  line-height: 1.2;
  margin-top: 2px;
}

/* 注釈 */
.cases-note {
  text-align: center;
  font-size: 10.5px;
  color: #5A6577;
  font-weight: 500;
  margin-top: 18px;
  line-height: 1.5;
}

/* ============================================================
   利用の流れ
   ============================================================ */
/* ============================================================
   利用の流れ — spec準拠
   ============================================================ */
.flow {
  background: #fff;
  padding: 28px 14px 22px;
}

/* タブ */
.flow-tab {
  background: #062B61;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .12em;
  width: 170px;
  height: 34px;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  clip-path: polygon(0 0, 100% 0, 92% 100%, 8% 100%);
  padding-left: .4em;
}

/* タイトル */
.flow-title {
  text-align: center;
  margin-bottom: 22px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  line-height: 1;
}
.flow-title .ft-inner {
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
}
.flow-title .ft-easy,
.flow-title .ft-step {
  font-size: 30px;
  font-weight: 900;
  color: #061F54;
  letter-spacing: .01em;
}
.flow-title .ft-easy { font-weight: 700; }
.flow-title .ft-num {
  font-size: 50px;
  font-weight: 900;
  color: #FF5A00;
  letter-spacing: -.02em;
  line-height: 1;
  margin: 0 2px;
}

/* ステップカード */
.flow-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  padding-left: 18px;
}
.flow-list::before {
  content: '';
  position: absolute;
  left: 30px;
  top: 28px;
  bottom: 28px;
  width: 2px;
  background: #062B61;
  z-index: 0;
}

.flow-step {
  position: relative;
  background: #fff;
  border: 1px solid #DDE7F5;
  border-radius: 14px;
  padding: 14px 16px 14px 56px;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 14px;
  align-items: center;
  box-shadow: none;
  z-index: 1;
}

/* 番号バッジ */
.flow-num {
  position: absolute;
  left: -12px;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  background: #062B61;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 16px;
  letter-spacing: -.02em;
  z-index: 2;
  box-shadow: none;
}

/* アイコン */
.flow-icon {
  width: 64px;
  height: 64px;
  background: #E8F3FF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.flow-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 4px;
}

/* 見出し+本文 */
.flow-text h3 {
  font-size: 16px;
  font-weight: 900;
  color: #061F54;
  margin-bottom: 4px;
  letter-spacing: .01em;
}
.flow-text p {
  font-size: 11px;
  line-height: 1.65;
  color: #5A6577;
  font-weight: 500;
}

/* 下部CTAブロック */
.flow-cta {
  background: #FFF8EC;
  border-radius: 18px;
  margin-top: 24px;
  padding: 18px 16px;
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 14px;
  align-items: center;
}
.fc-badge {
  width: 92px;
  height: 92px;
  background: #062B61;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  flex-shrink: 0;
}
.fc-badge-top {
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .04em;
}
.fc-badge-free {
  color: #fff;
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: .02em;
}
.fc-right {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.fc-cap {
  font-size: 13px;
  font-weight: 700;
  color: #061F54;
  text-align: center;
}
.fc-cap .fc-30 {
  color: #FF5A00;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: -.02em;
}
.fc-btn {
  background: #FF5A00;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  text-align: center;
  border-radius: 8px;
  padding: 11px 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  box-shadow: 0 3px 0 #c84500;
  letter-spacing: .02em;
}
.fc-arrow {
  font-size: 18px;
  font-weight: 900;
}

/* 注釈 */
.flow-note {
  text-align: center;
  font-size: 10px;
  color: #5A6577;
  margin-top: 10px;
  font-weight: 500;
}

/* 旧 cta-mini-block は使わないので空にする */
.cta-mini-block { display: none; }

/* ============================================================
   FAQ
   ============================================================ */
/* ============================================================
   FAQ — spec準拠
   ============================================================ */
.faq {
  background: #EEF6FD;
  padding: 28px 14px 24px;
}

.faq-tab {
  background: #062B61;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: .15em;
  width: 120px;
  height: 36px;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding-left: .15em;
}

.faq-title {
  text-align: center;
  margin-bottom: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.faq-title-text {
  font-size: 30px;
  font-weight: 900;
  color: #061F54;
  letter-spacing: .02em;
  line-height: 1.1;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}
.faq-item {
  background: #fff;
  border: 1px solid #DDE7F5;
  border-radius: 12px;
  overflow: hidden;
}
.faq-q {
  padding: 14px 14px;
  display: grid;
  grid-template-columns: 32px 1fr 14px;
  gap: 10px;
  align-items: center;
}
.faq-q .q {
  background: #062B61;
  color: #fff;
  font-weight: 900;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}
.faq-q p {
  font-size: 14.5px;
  font-weight: 900;
  color: #061F54;
  line-height: 1.5;
}
.faq-q .chev {
  color: #061F54;
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  opacity: .8;
  transition: transform .2s;
}
.faq-item details[open] .faq-q .chev {
  transform: rotate(180deg);
}
.faq-item details summary { list-style: none; cursor: pointer; }
.faq-item details summary::-webkit-details-marker { display: none; }

.faq-a {
  border-top: 1px dashed #D8DEE8;
  padding: 12px 14px 14px;
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 10px;
  align-items: start;
  margin: 0 4px;
}
.faq-a .a {
  background: #FF5A00;
  color: #fff;
  font-weight: 900;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}
.faq-a p {
  font-size: 12.5px;
  font-weight: 700;
  color: #061F54;
  line-height: 1.7;
}

/* 下部ヘッドセットボックス */
.faq-footer {
  background: #EAF4FF;
  border-radius: 12px;
  padding: 14px 14px;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: center;
}
.faq-headset {
  display: flex;
  align-items: center;
  justify-content: center;
}
.faq-headset svg { display: block; }
.faq-footer-text .ff-1 {
  font-size: 13px;
  font-weight: 900;
  color: #061F54;
  line-height: 1.5;
}
.faq-footer-text .ff-2 {
  font-size: 11px;
  font-weight: 700;
  color: #061F54;
  line-height: 1.5;
  margin-top: 2px;
}

/* ============================================================
   フォーム
   ============================================================ */
/* ============================================================
   フォーム — spec準拠
   ============================================================ */
.form-section {
  background: #fff;
  padding: 28px 14px 24px;
}

/* タイトル */
.form-title {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}
.form-title-text {
  font-size: 22px;
  font-weight: 900;
  color: #061F54;
  letter-spacing: .01em;
  line-height: 1.2;
}
.form-sub {
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  color: #061F54;
  margin-bottom: 18px;
}
.form-sub .fs-em {
  color: #FF5A00;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: -.02em;
}

/* 安心要素ブロック */
.form-tags {
  background: #FFF5DD;
  border-radius: 10px;
  padding: 14px 4px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  margin-bottom: 22px;
}
.ft {
  background: transparent;
  color: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 2px 4px;
  border-right: 1px solid #EFE3BE;
  text-align: left;
}
.ft:last-child { border-right: none; }
.ft-icon {
  background: #062B61;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ft-icon img {
  width: 60%;
  height: 60%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.ft-icon.ft-icon-full {
  background: transparent;
}
.ft-icon.ft-icon-full img {
  width: 100%;
  height: 100%;
  filter: none;
}
.ft-icon svg {
  display: block;
  width: 60%;
  height: 60%;
}
.ft-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.ft-top {
  font-size: 11px;
  font-weight: 700;
  color: #061F54;
  letter-spacing: -.02em;
  white-space: nowrap;
}
.ft-bottom {
  font-size: 17px;
  font-weight: 900;
  color: #FF5A00;
  letter-spacing: .01em;
}

/* フォーム本体 */
.contact-form {
  background: transparent;
  border-radius: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: none;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.field-label {
  font-size: 13.5px;
  font-weight: 900;
  color: #061F54;
  display: flex;
  align-items: center;
  gap: 8px;
}
.field-label .req,
.field-label .opt {
  font-style: normal;
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  padding: 2px 6px;
  border-radius: 3px;
  letter-spacing: .03em;
}
.field-label .req { background: #FF5A00; }
.field-label .opt { background: #8A96B0; }
.field-label em {
  font-style: normal;
}

.field input[type="text"],
.field input[type="tel"],
.field input[type="email"],
.field select,
.field textarea {
  width: 100%;
  padding: 11px 12px;
  border: 1px solid #DDE7F5;
  border-radius: 6px;
  font-size: 13.5px;
  font-family: inherit;
  background: #fff;
  color: #061F54;
}
.field input::placeholder,
.field textarea::placeholder {
  color: #B0B7C4;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: #FF5A00;
  background: #fff;
}
.field textarea { resize: vertical; min-height: 96px; }
.field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23061F54' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.field-note {
  font-size: 10.5px;
  color: #5A6577;
  font-weight: 500;
  margin-top: 2px;
}

/* チェックボックスグリッド */
.check-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 12px;
  margin-top: 2px;
}
.check-box {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  font-size: 12.5px;
  color: #061F54;
  font-weight: 700;
  line-height: 1.4;
}
.check-box input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border: 1.5px solid #B0B7C4;
  border-radius: 3px;
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
  background: #fff;
}
.check-box input[type="checkbox"]:checked {
  background: #FF5A00;
  border-color: #FF5A00;
}
.check-box input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 1px;
  width: 6px;
  height: 11px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* プライバシーボックス */
.privacy-box {
  background: #EAF4FF;
  border-radius: 10px;
  padding: 14px;
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 12px;
  align-items: center;
  margin: 4px 0;
}
.pb-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.pb-icon svg { display: block; }
.privacy-box p {
  font-size: 11.5px;
  line-height: 1.6;
  color: #061F54;
  font-weight: 700;
}
.privacy-box a {
  color: #FF5A00;
  text-decoration: underline;
  font-weight: 900;
}

/* 大型CTAボタン */
.form-cta-wrap {
  position: relative;
  margin-top: 8px;
  padding-top: 12px;
}
.form-cta-pill {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: #FFD84A;
  color: #061F54;
  font-weight: 900;
  font-size: 12px;
  padding: 4px 16px;
  border-radius: 999px;
  letter-spacing: .03em;
  z-index: 2;
  box-shadow: 0 2px 4px rgba(0,0,0,.1);
}
.form-cta-btn {
  width: 100%;
  background: linear-gradient(to bottom, #FF9A4A, #FF5A00);
  color: #fff;
  font-size: 17px;
  font-weight: 900;
  letter-spacing: .03em;
  border: none;
  border-radius: 50px;
  padding: 18px 14px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.4),
    0 4px 14px rgba(255,90,0,.3);
  cursor: pointer;
  text-shadow: 0 1px 0 rgba(0,0,0,.1);
}
.form-cta-btn:active {
  transform: translateY(2px);
}
.form-cta-arrow {
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
}

.form-final-note {
  text-align: center;
  font-size: 11px;
  color: #061F54;
  font-weight: 700;
  margin-top: 12px;
}

/* 旧 .check は使わないので非表示 */
.check { display: none; }
.cta-btn-submit { margin-top: 6px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy-deep);
  color: #fff;
  text-align: center;
  padding: 28px 20px 24px;
}
.footer-logo {
  height: 32px;
  margin: 0 auto 10px;
  filter: brightness(0) invert(1);
  width: auto;
}
.footer-desc {
  font-size: 12px;
  margin-bottom: 14px;
  line-height: 1.6;
  opacity: .85;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 11px;
  opacity: .8;
  text-decoration: underline;
}
.copyright { font-size: 10px; opacity: .6; }

/* ============================================================
   PC / 大画面—モバイル最適レイアウトをそのまま中央表示
   ============================================================ */
@media (min-width: 600px) {
  body { font-size: 16px; }
}
