/* ==================================================
   AUTO SHIFT LP style.css
   0.変数 1.リセット 2.共通 3.ヘッダー 4.FV 5.悩み 6.仕組み
   7.3つの理由 8.主な機能 9.競合比較 10.管理者/スタッフ
   11.Before/After 12.料金 13.中間CTA 14.導入の流れ
   15.FAQ 16.最終CTA 17.フッター 18.レスポンシブ
   ================================================== */
/* ---------- 0. 変数 ---------- */ :root {
  --orange: #f47a20;
  --orange-dark: #d96513;
  --orange-light: #fff2e8;
  --navy: #1c2a47;
  --navy2: #111a33;
  --navy-light: #e7edf7;
  --navy-mist: #eef3fa;
  --text: #1f2937;
  --gray: #5b6472;
  --subtext: #6b7280;
  --white: #ffffff;
  --bg-soft: #f4f7fb;
  --border: #e5e9f0;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 8px;
  --container: 1180px;
  --shadow-card: 0 8px 28px rgba(28, 42, 71, .06);
  --shadow-soft: 0 16px 44px rgba(28, 42, 71, .10);
}
/* ---------- 1. リセット ---------- */
*, *::before, *::after {
  box-sizing: border-box
}
html {
  scroll-behavior: smooth
}
body {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: var(--text);
  background: var(--white);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  display: block
}
a {
  color: inherit;
  text-decoration: none
}
ul {
  list-style: none;
  margin: 0;
  padding: 0
}
h1, h2, h3, p {
  margin: 0
}
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important
  }
  html {
    scroll-behavior: auto
  }
}
:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
  border-radius: 4px
}
/* ---------- 2. 共通 ---------- */
.wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px
}
section {
  position: relative;
  scroll-margin-top: 84px
}
.eyebrow {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 18px;
}
.eyebrow .num {
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  letter-spacing: 0;
  font-style: italic;
}
.sec-head h2 {
  font-size: clamp(24px, 3.4vw, 34px);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.5;
}
.sec-lead {
  color: var(--gray);
  font-size: 15px;
  margin-top: 14px;
  line-height: 1.9
}
.accent {
  color: var(--orange)
}
.pad-l {
  padding-block: clamp(56px, 7vw, 104px)
}
.pad-l.compact {
  padding-block: clamp(48px, 6vw, 80px)
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 900;
  border-radius: 999px;
  text-align: center;
  font-size: 16px;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn-primary {
  background: var(--orange);
  color: #fff;
  padding: 18px 38px;
  box-shadow: 0 10px 26px rgba(244, 122, 32, .32);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(244, 122, 32, .4);
  background: var(--orange-dark)
}
.btn-primary::after {
  content: "›";
  font-size: 20px;
  margin-left: 2px;
  font-weight: 900
}
.btn-tel {
  background: #fff;
  color: var(--navy);
  padding: 16px 30px;
  border: 1.5px solid var(--border);
  font-weight: 700;
  font-size: 15px;
  box-shadow: var(--shadow-card);
}
.btn-tel:hover {
  border-color: var(--orange)
}
.btn-tel b {
  color: var(--navy);
  font-weight: 900
}
.cta-note {
  color: var(--subtext);
  font-size: 12.5px;
  margin-top: 10px;
  font-weight: 700
}
.fade-up {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease
}
.fade-up.in-view {
  opacity: 1;
  transform: none
}
/* ---------- 3. ヘッダー ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.hd-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.hd-logo {
  display: flex;
  align-items: center;
  gap: 8px
}
.hd-logo img {
  width: 34px;
  height: 34px
}
.hd-logo span {
  font-size: 19px;
  font-weight: 900;
  color: var(--orange-dark);
  letter-spacing: .5px
}
.hd-right {
  display: flex;
  align-items: center;
  gap: 22px
}
.hd-tel {
  display: flex;
  align-items: center;
  gap: 10px
}
.hd-tel .ico {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--orange-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange-dark);
  font-size: 17px;
  flex: none;
}
.hd-tel .num {
  font-size: 17px;
  font-weight: 900;
  color: var(--navy);
  line-height: 1.3
}
.hd-tel .staff {
  font-size: 11px;
  color: var(--subtext);
  line-height: 1.3
}
.hd-cta {
  padding: 12px 24px;
  font-size: 14px;
  box-shadow: none;
  white-space: nowrap
}
.hd-cta::after {
  display: none
}
/* ---------- 4. FV ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(48px, 6vw, 76px) clamp(56px, 7vw, 88px);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('../images/LP-FV-bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: hue-rotate(195deg) saturate(.55) brightness(1.05);
  z-index: 0;
}
.hero-inner {
  position: relative;
  z-index: 1;
}
.hero-deco-circle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(28, 42, 71, .13), rgba(28, 42, 71, .02) 70%);
  pointer-events: none;
}
.hero-deco-circle.c1 {
  width: 640px;
  height: 640px;
  top: -220px;
  right: -220px
}
.hero-deco-circle.c2 {
  width: 340px;
  height: 340px;
  bottom: -160px;
  right: 12%;
  background: radial-gradient(circle at 30% 30%, rgba(58, 91, 153, .16), rgba(58, 91, 153, .02) 70%);
}
.hero-deco-dots {
  position: absolute;
  top: 18%;
  right: 2%;
  width: 150px;
  height: 110px;
  pointer-events: none;
  background-image: radial-gradient(var(--navy) 1.6px, transparent 1.6px);
  background-size: 16px 16px;
  opacity: .3;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.06fr;
  gap: 44px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-grid > .fade-up:not(.hero-visual) {
  position: relative;
  z-index: 2
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--navy-light);
  color: var(--navy);
  border: 1.5px solid rgba(28, 42, 71, .18);
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 12.5px;
  font-weight: 900;
  margin-bottom: 10px;
  letter-spacing: .3px;
}
.badge::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--navy);
  flex: none
}
.hero h1 {
  font-size: clamp(28px, 3.6vw, 42px);
  font-weight: 900;
  line-height: 1.15;
  color: var(--navy);
}
.hero h1 .or {
  color: var(--orange);
  font-size: 1.5em
}
.hero-lead {
  margin: 14px 0 20px;
  font-size: 15.5px;
  color: var(--gray);
  line-height: 1.5
}
.hero-cta-row {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px
}
.hero-cta-row .btn-primary {
  font-size: 18px;
  padding: 14px 32px
}
.hero-btn {
  flex-direction: column;
  gap: 3px;
  line-height: 1.25
}
.hero-btn::after {
  content: none
}
.hero-btn-sub {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  opacity: .9
}
.hero-btn-main {
  display: inline-flex;
  align-items: center;
  gap: 6px
}
.hero-btn-main .arrow {
  font-size: 20px;
  font-weight: 900;
  line-height: 1
}
.hero-cta-row .cta-note {
  margin-top: 0
}
.price-chips {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px
}
.p-chip {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 10px 8px;
  text-align: center;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}
.p-chip .lbl {
  font-size: 11.5px;
  color: var(--subtext);
  font-weight: 700;
  margin-bottom: 0;
  display: block
}
.p-chip .val {
  font-size: 20px;
  font-weight: 900;
  color: var(--navy)
}
.p-chip .val em {
  font-style: normal;
  color: var(--orange-dark);
  font-size: 26px
}
.p-chip.strong .val {
  color: var(--orange-dark);
  font-size: 17px;
  line-height: 1.4
}
.firstmonth-chip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 8px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  box-shadow: var(--shadow-card);
  text-align: left;
}
.firstmonth-chip .fm-check {
  flex: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}
.firstmonth-chip .fm-text {
  font-size: 13.5px;
  font-weight: 900;
  color: var(--navy);
  line-height: 1.45;
}
.firstmonth-chip .fm-text em {
  font-style: normal;
  color: var(--orange-dark);
  font-size: 15px;
  margin: 0 2px;
}
.firstmonth-chip .fm-sub {
  font-weight: 700;
  font-size: 12px;
  color: var(--subtext);
}
.hero-note {
  font-size: 11.5px;
  color: var(--subtext);
  margin-top: 8px;
  line-height: 1.5
}
.hero-visual {
  position: relative
}
.hero-visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  display: block
}
/* PC幅では実画面を少し拡大(テキスト側に一部被ってもよい/transformなのでグリッド計算には影響しない) */
@media(min-width:1025px) {
  .hero-visual img {
    transform: scale(1.2);
    transform-origin: center center
  }
  /* 06 比較: PC幅ではテキストブロックと比較表を横並びに */
  .compare-layout {
    display: grid;
    grid-template-columns: 460px 1fr;
    gap: 32px;
    align-items: start;
  }
  .compare-layout .compare-top {
    margin-bottom: 0;
  }
  .compare-top h3 {
    white-space: nowrap;
  }
}
/* ---------- 5. 悩み ---------- */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 8px
}
.pain-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 26px 22px;
  box-shadow: var(--shadow-card);
}
.pain-card .ico {
  width: 100%;
  height: auto;
  margin-bottom: 18px
}
.pain-card h3 {
  font-size: 15.5px;
  font-weight: 900;
  color: var(--navy);
  line-height: 1.6;
  margin-bottom: 10px
}
.pain-card p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.8
}
.pain-sum {
  text-align: center;
  margin-top: 52px;
  font-size: clamp(16px, 2vw, 19px);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.7
}
.pain-scheme-card {
  background: var(--bg-soft);
  border-radius: var(--radius-lg);
  margin-top: 28px;
  padding: clamp(24px, 3.5vw, 36px);
  text-align: center;
}
.pain-scheme-card p {
  font-size: clamp(18px, 2.4vw, 24px);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.7
}
/* ---------- 6. 仕組み(6STEP) ---------- */
.sec-scheme {
  background: var(--navy-mist)
}
.flow6 {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr auto 1fr auto 1fr;
  gap: 0 6px;
  align-items: stretch;
  margin-top: 44px
}
.flow-step {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px 14px;
  text-align: center;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.flow-step .tag {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  border-radius: 999px;
  padding: 4px 12px;
  margin-bottom: 12px;
  letter-spacing: .4px;
}
.flow-step h3 {
  font-size: 14px;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.5
}
.flow-step .ico {
  width: 64px;
  height: 64px;
  margin-top: auto;
  padding-top: 16px;
  box-sizing: content-box;
}
.flow-step p {
  font-size: 11.5px;
  color: var(--gray);
  line-height: 1.7
}
.flow-arrow-wrap {
  display: flex;
  align-items: center;
  justify-content: center
}
.arrow-h {
  width: 34px;
  height: 26px;
  background: var(--orange);
  flex: none;
  clip-path: polygon(0% 32%, 55% 32%, 55% 4%, 100% 50%, 55% 96%, 55% 68%, 0% 68%);
}
.arrow-v {
  width: 26px;
  height: 34px;
  background: var(--orange);
  flex: none;
  clip-path: polygon(32% 0%, 32% 55%, 4% 55%, 50% 100%, 96% 55%, 68% 55%, 68% 0%);
}
.flow-summary {
  margin-top: 28px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  box-shadow: var(--shadow-card);
}
.flow-summary .fs-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 900;
  color: var(--navy)
}
.flow-summary .fs-item .ico {
  width: 24px;
  height: 24px
}
.flow-summary .fs-arrow {
  color: var(--orange);
  font-weight: 900;
  font-size: 18px
}
.flow-summary .fs-text {
  font-size: 14.5px;
  color: var(--navy);
  font-weight: 700;
  margin-left: 6px;
  text-decoration: underline solid var(--orange);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}
/* ---------- 7. 3つの理由 ---------- */
.reason-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  padding-block: clamp(36px, 4.5vw, 56px);
}
.reason-block:not(:last-child) {
  border-bottom: 1px solid var(--border)
}
.reason-block.rev .r-text {
  order: 2
}
.reason-block.rev .r-visual {
  order: 1
}
.r-num {
  font-size: 15px;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: 2px;
  margin-bottom: 10px
}
.r-text h3 {
  font-size: clamp(21px, 2.6vw, 28px);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.5;
  margin-bottom: 18px
}
.r-text p {
  font-size: 14.5px;
  color: var(--gray);
  line-height: 2
}
/* 04 選ばれる3つの理由: セクション全体をコンパクトに */
.sec-reasons .eyebrow {
  margin-bottom: 10px
}
.sec-reasons .reason-block {
  padding-block: clamp(20px, 2.6vw, 32px);
  gap: 40px
}
.sec-reasons .r-num {
  margin-bottom: 6px
}
.sec-reasons .r-text h3 {
  margin-bottom: 10px
}
.sec-reasons .r-text p {
  line-height: 1.7
}
.sec-reasons .r-text .r-emph {
  margin-top: 10px
}
.r-text .r-emph {
  display: inline-block;
  margin-top: 18px;
  background: var(--orange-light);
  color: var(--orange-dark);
  font-weight: 900;
  font-size: 13.5px;
  border-radius: var(--radius-sm);
  padding: 10px 16px;
}
.r-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border);
  background: #fff;
}
.r-visual.no-frame {
  box-shadow: none;
  border: none;
  background: none;
  width: 80%;
  margin: 0 auto;
}
.r-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}
.r-visual.crop-top img {
  object-position: top
}
.r-visual-auto img {
  height: auto;
  object-fit: contain
}
/* スキル×レベル 表(擬似スクリーンショット) */
.skill-table {
  padding: 22px
}
.skill-table .st-head {
  display: flex;
  justify-content: space-between;
  font-size: 11.5px;
  color: var(--subtext);
  font-weight: 700;
  padding-bottom: 10px;
  border-bottom: 1.5px solid var(--border);
  margin-bottom: 10px
}
.skill-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px
}
.skill-row:last-child {
  border-bottom: none
}
.skill-row .name {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--navy)
}
.skill-row .avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--orange-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--orange-dark);
  font-weight: 900
}
.skill-row .tag {
  background: var(--bg-soft);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 11.5px;
  color: var(--gray);
  font-weight: 700
}
.skill-row .stars {
  color: var(--orange);
  font-size: 12px;
  letter-spacing: 1px
}
.skill-row .cnt {
  font-size: 11.5px;
  color: var(--subtext);
  font-weight: 700
}
/* ---------- 8. 主な機能 ---------- */
.sec-func {
  background: var(--bg-soft)
}
.func-layout {
  display: grid;
  grid-template-columns: 1fr minmax(320px, 420px) 1fr;
  gap: 28px;
  align-items: center;
  margin-top: 40px
}
.func-col {
  display: flex;
  flex-direction: column;
  gap: 16px
}
.func-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  box-shadow: var(--shadow-card);
}
.func-item .ico {
  width: 36px;
  height: 36px;
  flex: none
}
.func-item .ico svg {
  width: 100%;
  height: 100%
}
.func-item h3 {
  font-size: 14px;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 6px;
  line-height: 1.5
}
.func-item p {
  font-size: 12px;
  color: var(--gray);
  line-height: 1.7
}
.func-center img {
  border-radius: var(--radius-lg);
  box-shadow: none;
  border: none;
  background: none
}
/* ---------- 9. 競合比較 ---------- */
.sec-compare {
  background: #fff
}
.sec-pair {
  background: var(--bg-soft)
}
.compare-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: start;
  margin-bottom: 44px
}
.compare-top h3 {
  font-size: clamp(19px, 2.4vw, 25px);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.6
}
.compare-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border);
  width: 100%
}
table.compare {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  background: #fff;
  min-width: 480px;
  white-space: nowrap
}
table.compare td.col-item br.pc-break {
  display: none
}
@media(min-width:1025px) {
  table.compare td.col-item br.pc-break {
    display: revert
  }
}
table.compare th.col-item, table.compare td.col-item {
  width: 50%
}
table.compare th.col-as, table.compare td.col-as {
  width: 25%
}
table.compare th:last-child, table.compare td:last-child {
  width: 25%
}
@media(min-width:1025px) {
  table.compare th.col-item, table.compare td.col-item {
    width: 46%
  }
  table.compare th.col-as, table.compare td.col-as {
    width: 25%
  }
  table.compare th:last-child, table.compare td:last-child {
    width: 29%
  }
}
table.compare thead th {
  font-size: 14px;
  font-weight: 900;
  padding: 10px 16px;
  text-align: center;
  color: var(--navy);
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border);
}
table.compare thead th.col-item {
  text-align: left;
  background: #fff
}
table.compare thead th.col-as {
  background: var(--orange);
  color: #fff;
  font-size: 16px
}
table.compare tbody td {
  padding: 8px 16px;
  text-align: center;
  font-size: 14px;
  border-bottom: 1px solid var(--border);
  color: var(--gray)
}
table.compare tbody td.col-item {
  text-align: left;
  font-weight: 700;
  color: var(--navy);
  font-size: 13.5px
}
table.compare tbody td.col-as {
  background: var(--orange-light)
}
table.compare td.col-as .mk {
  font-size: 24px
}
table.compare tbody tr:last-child td {
  border-bottom: none
}
.mk {
  font-weight: 900;
  font-size: 17px
}
.mk.great {
  color: var(--orange-dark);
  font-size: 19px
}
.mk.mid {
  color: var(--navy);
  opacity: .75
}
.mk.low {
  color: var(--subtext)
}
.compare-note {
  font-size: 11.5px;
  color: var(--subtext);
  margin-top: 16px;
  line-height: 1.8;
  text-align: right
}
/* ---------- 10. 管理者/スタッフ ---------- */
.pair-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px
}
.pair-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-card)
}
.pair-label {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  border-radius: 999px;
  padding: 6px 16px;
  margin-bottom: 16px;
}
.pair-label.staff {
  background: var(--orange)
}
.pair-card h3 {
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 20px
}
.pair-card ul {
  margin-bottom: 24px
}
.pair-card li {
  display: flex;
  gap: 10px;
  font-size: 14px;
  color: var(--gray);
  padding: 4px 0;
  line-height: 1.7;
}
.pair-card li::before {
  content: "✓";
  color: var(--orange);
  font-weight: 900;
  flex: none
}
.pair-visual {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative
}
.pair-visual img {
  width: 100%
}
.staff-visual-row {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center
}
.staff-visual-row .pair-visual {
  flex: 0 0 47%
}
.staff-visual-row img {
  border-radius: var(--radius-md);
  width: 100%;
  height: auto
}
.line-note {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 12px;
  color: var(--orange-dark);
  font-weight: 700;
}
.line-note::before {
  content: "";
  position: absolute;
  left: -9px;
  top: 50%;
  transform: translateY(-50%);
  border-width: 9px 9px 9px 0;
  border-style: solid;
  border-color: transparent var(--border) transparent transparent;
}
.line-note::after {
  content: "";
  position: absolute;
  left: -8px;
  top: 50%;
  transform: translateY(-50%);
  border-width: 8px 8px 8px 0;
  border-style: solid;
  border-color: transparent var(--bg-soft) transparent transparent;
}
.line-note .dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #06C755;
  font-size: 32px;
  font-weight: 900
}
.pair-foot {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
  margin-top: 32px;
  background: var(--navy-light);
  border-radius: var(--radius-md);
  padding: 18px 24px;
  font-size: 14px;
  font-weight: 700;
  color: var(--gray);
  line-height: 1.8;
}
.pair-foot i {
  flex: none;
  font-size: 32px;
  color: var(--navy)
}
/* ---------- 11. Before/After ---------- */
.sec-ba {
  background: #fff
}
.ba-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: center;
  margin-top: 40px
}
.ba-arrow-col {
  transform: rotate(90deg);
  margin: 4px auto
}
.ba-col {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card)
}
.ba-head {
  padding: 16px 22px;
  font-weight: 900;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px
}
.ba-head.before {
  background: var(--bg-soft);
  color: var(--gray)
}
.ba-head.after {
  background: var(--navy);
  color: #fff;
  flex-wrap: wrap
}
.ba-after-label {
  font-size: 13px;
  font-weight: 700;
  opacity: .92
}
.ba-after-title {
  font-size: 18px;
  font-weight: 900
}
.ba-body {
  padding: 24px 22px
}
.ba-step {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--navy);
  padding: 8px 0
}
.ba-step-arrow {
  color: var(--subtext);
  font-size: 13px;
  padding-left: 4px
}
.ba-body-icons {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2px;
}
.ba-icon-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  min-width: 0
}
.ba-icon-step img {
  width: 100%;
  max-width: 100px;
  height: auto;
  aspect-ratio: 1 / 1;
  margin-bottom: 8px
}
.ba-icon-step span {
  font-size: 11px;
  color: var(--navy);
  font-weight: 700;
  line-height: 1.5
}
.ba-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-size: 9.5px;
  font-weight: 900;
  font-style: normal;
  margin-right: 4px;
  vertical-align: middle;
  flex: none
}
.ba-icon-arrow {
  flex: none;
  color: var(--subtext);
  font-size: 40px;
  font-weight: 700;
}
.ba-head.after ~ .ba-body-icons {
  background: var(--orange-light)
}
.ba-head.after ~ .ba-body-icons .ba-icon-arrow {
  color: var(--orange)
}
.ba-head.after ~ .ba-body .ba-step {
  color: var(--navy)
}
.ba-auto-step .ba-auto-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--orange);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 10px;
  box-shadow: 0 4px 10px rgba(244, 122, 32, .25)
}
.ba-auto-step .ba-step-title {
  display: block;
  font-size: 13px;
  font-weight: 900;
  color: var(--orange-dark);
  line-height: 1.4;
  margin-top: 2px
}
.ba-auto-step .ba-step-desc {
  display: block;
  font-size: 10.5px;
  color: var(--gray);
  font-weight: 500;
  line-height: 1.5;
  margin-top: 2px
}
.ba-col.ba-auto .ba-body-icons {
  gap: 4px;
  align-items: flex-start
}
.ba-col.ba-auto .ba-icon-step img, .ba-col.ba-auto .ba-auto-icon {
  width: 100%;
  max-width: 92px;
  height: auto;
  aspect-ratio: 1 / 1;
  margin-bottom: 6px
}
.ba-col.ba-auto .ba-icon-arrow {
  font-size: 26px;
  margin-top: 50px
}
.ba-arrow-col {
  display: flex;
  align-items: center;
  justify-content: center
}
.ba-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  text-align: left;
  margin-top: 52px;
  padding: 28px 36px
}
.ba-bottom-text {
  flex: 1;
  min-width: 0
}
.ba-bottom h3 {
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 10px
}
.ba-bottom p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.8
}
.ba-illust {
  display: flex;
  justify-content: center;
  flex: none
}
.ba-illust img {
  width: 320px;
  height: auto
}
/* ---------- 12. 料金 ---------- */
.sec-price {
  background: var(--navy-mist)
}
.price-panel {
  display: grid;
  grid-template-columns: 13fr 7fr;
  gap: 24px;
  margin-top: 36px;
  align-items: stretch;
}
.price-main-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(22px, 2.8vw, 32px);
  text-align: center;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border);
}
.price-ribbon {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-weight: 900;
  font-size: 13px;
  padding: 8px 22px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.price-main-card .lbl {
  font-size: 14px;
  font-weight: 700;
  color: var(--gray);
  margin-bottom: 4px
}
.price-big {
  font-size: clamp(40px, 7vw, 68px);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.1
}
.price-big .yen {
  font-size: .5em;
  margin-right: 6px;
  vertical-align: 6%
}
.price-big .unit {
  font-size: .5em;
  font-weight: 700;
  margin-left: 6px
}
.price-big .tax {
  font-size: .26em;
  font-weight: 700;
  color: var(--gray);
  margin-left: 6px
}
.price-benefits {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.benefit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex: 1;
  font-size: 14px;
  color: var(--navy);
  font-weight: 700;
  text-align: left;
}
.benefit b {
  color: var(--orange-dark);
  font-weight: 900;
  font-size: 15px;
}
.benefit-check {
  flex: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}
.benefit-divider {
  width: 1px;
  align-self: stretch;
  background: var(--border);
  flex: none;
}
.price-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 14px;
  background: #eef7f0;
  border-radius: var(--radius-md);
  padding: 12px 20px;
}
.price-line-main {
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
}
.price-line-tag {
  flex: none;
  background: #06C755;
  color: #fff;
  font-weight: 900;
  font-size: 12px;
  border-radius: 999px;
  padding: 6px 14px;
}
.price-line-label {
  font-size: 11.5px;
  color: var(--subtext);
  font-weight: 700;
}
.price-line-value {
  font-size: 14.5px;
  color: var(--navy);
  font-weight: 700;
  margin-top: 2px;
}
.price-line-value b {
  color: #06C755;
  font-size: 17px;
  font-weight: 900;
}
.price-line-note {
  flex: none;
  font-size: 10.5px;
  color: var(--subtext);
  line-height: 1.6;
  max-width: 190px;
  text-align: right;
  margin: 0;
}
.price-side {
  display: flex;
  flex-direction: column;
  gap: 14px
}
.price-cta-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 26px 28px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.price-cta-visual img {
  width: 100%;
  max-width: 220px;
  height: auto;
}
.price-cta-card .btn-primary {
  width: 100%
}
.sec-head .price-body {
  max-width: none;
  margin: 14px 0 0;
  text-align: left;
  font-size: 15px;
  color: var(--gray);
  line-height: 1.9
}
/* ---------- 13. 中間CTA ---------- */
.mid-cta {
  background: linear-gradient(120deg, var(--navy) 0%, var(--navy2) 100%);
  color: #fff;
  padding-block: 40px;
  position: relative;
  overflow: hidden;
}
.mid-cta::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  top: -180px;
  right: -140px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, .16), rgba(255, 255, 255, .02) 70%);
  pointer-events: none;
}
.mid-cta::after {
  content: "";
  position: absolute;
  top: 14%;
  left: 4%;
  width: 150px;
  height: 110px;
  background-image: radial-gradient(#fff 1.6px, transparent 1.6px);
  background-size: 16px 16px;
  opacity: .18;
  pointer-events: none;
}
.mid-inner {
  display: flex;
  align-items: center;
  gap: 36px;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.mid-inner::before, .mid-inner::after {
  content: "";
  position: absolute;
  z-index: -1;
  background-image: radial-gradient(#fff 1.6px, transparent 1.6px);
  background-size: 16px 16px;
  opacity: .16;
  pointer-events: none;
}
.mid-inner::before {
  width: 120px;
  height: 70px;
  bottom: -22px;
  left: 34%;
}
.mid-inner::after {
  width: 110px;
  height: 90px;
  bottom: -16px;
  right: 6%;
}
.mid-visual {
  flex: none;
  width: 180px;
  opacity: 1;
  border-radius: 12px;
  overflow: hidden
}
.mid-text {
  flex: 1;
  min-width: 300px;
  position: relative;
}
.mid-text::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 260px;
  height: 260px;
  bottom: -150px;
  left: -80px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, .14), rgba(255, 255, 255, .02) 70%);
  pointer-events: none;
}
.mid-text h3 {
  font-size: clamp(19px, 2.6vw, 25px);
  font-weight: 900;
  line-height: 1.6;
  margin-bottom: 12px
}
.mid-text p {
  font-size: 13.5px;
  line-height: 1.9;
  opacity: .95
}
.mid-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  flex: none
}
.mid-actions .btn-tel {
  box-shadow: none;
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .4);
  color: #fff
}
.mid-actions .btn-tel b {
  color: #fff
}
/* ---------- 14. 導入の流れ ---------- */
.steps5 {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr auto 1fr;
  gap: 0 6px;
  align-items: stretch;
  margin-top: 40px
}
.step5-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px 16px;
  text-align: center;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.step5-item .n {
  font-size: 11.5px;
  font-weight: 900;
  color: var(--orange);
  letter-spacing: 1.5px;
  margin-bottom: 12px
}
.step5-item .ico {
  width: 38px;
  height: 38px;
  margin-bottom: 14px
}
.step5-item h3 {
  font-size: 14.5px;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 8px
}
.step5-item p {
  font-size: 11.5px;
  color: var(--gray);
  line-height: 1.7
}
.step5-arrow {
  display: flex;
  align-items: center;
  justify-content: center
}
.arrow-sm {
  width: 16px;
  height: 14px;
  background: var(--orange);
  flex: none;
  clip-path: polygon(0% 30%, 55% 30%, 55% 5%, 100% 50%, 55% 95%, 55% 70%, 0% 70%);
}
/* ---------- 15. FAQ ---------- */
.sec-faq {
  background: var(--bg-soft)
}
.faq-hint {
  font-size: 13px;
  color: var(--subtext);
  margin-bottom: 24px
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 8px
}
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 48px 18px 20px;
  font-weight: 900;
  font-size: 14.5px;
  color: var(--navy);
  position: relative;
  display: flex;
  gap: 10px;
}
.faq-item summary::-webkit-details-marker {
  display: none
}
.faq-item summary .qm {
  color: var(--orange);
  font-weight: 900;
  flex: none
}
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--orange);
  font-weight: 900;
  font-size: 22px;
  line-height: 1;
}
.faq-item[open] summary::after {
  content: "−"
}
.faq-item .a {
  padding: 0 20px 20px 44px;
  color: var(--gray);
  font-size: 13.5px;
  line-height: 1.9
}
/* ---------- 16. 最終CTA ---------- */
.final-cta {
  background: linear-gradient(160deg, var(--orange) 0%, var(--orange-dark) 100%);
  color: #fff;
  padding-block: clamp(40px, 5.5vw, 76px)
}
.final-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center
}
.final-copy .cta-tag {
  color: var(--orange);
  font-weight: 900;
  font-size: 13px;
  margin-bottom: 10px;
  display: block
}
.final-copy h2 {
  font-size: clamp(26px, 3.6vw, 38px);
  font-weight: 900;
  line-height: 1.4;
  margin-bottom: 14px
}
.final-heading-line {
  position: relative;
  display: inline-block;
  z-index: 1;
}
.final-heading-line::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.08em;
  width: 100%;
  height: 0.5em;
  background: #1c2a47;
  border-radius: 0;
  z-index: -1;
}
.final-copy p {
  font-size: 14.5px;
  font-weight: 600;
  color: #fff;
  line-height: 1.8
}
.final-visual {
  position: relative
}
.final-visual img {
  width: 100%
}
.final-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 0
}
.final-actions .btn-primary {
  width: 100%;
  font-size: 17px;
  padding: 16px 20px;
  background: #fff;
  color: var(--navy);
  box-shadow: 0 10px 24px rgba(28, 42, 71, .18);
  transition: transform .2s ease, box-shadow .2s ease
}
.final-actions .btn-primary:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(28, 42, 71, .24)
}
.final-actions .cta-note {
  color: #c7cee0
}
.final-actions .btn-tel {
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, .35);
  color: #fff;
  width: 100%;
  box-shadow: none
}
.final-actions .btn-tel b {
  color: #fff
}
.final-col-side {
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center
}
/* ---------- 17. フッター ---------- */
.site-footer {
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 30px 0
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px
}
.footer-logo img {
  width: 26px;
  height: 26px
}
.footer-logo span {
  font-weight: 900;
  color: var(--orange-dark);
  font-size: 15px
}
.footer-nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap
}
.footer-nav a {
  font-size: 13px;
  color: var(--gray);
  font-weight: 700
}
.footer-nav a:hover {
  color: var(--orange-dark)
}
.footer-copy {
  font-size: 12px;
  color: var(--subtext)
}
/* ==================================================
   18. レスポンシブ
   ================================================== */
@media(max-width:1024px) {
  .wrap {
    padding: 0 18px
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px
  }
  .hero-visual {
    order: -1
  }
  .price-chips {
    max-width: 520px
  }
  .firstmonth-chip {
    max-width: 520px
  }
  .pain-grid {
    grid-template-columns: 1fr 1fr
  }
  .flow6 {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 28px
  }
  .flow6 .flow-arrow-wrap {
    display: none
  }
  .flow6 .flow-step {
    position: relative
  }
  .reason-block {
    grid-template-columns: 1fr;
    gap: 28px
  }
  .reason-block.rev .r-text {
    order: 1
  }
  .reason-block.rev .r-visual {
    order: 2
  }
  .func-layout {
    grid-template-columns: 1fr;
    gap: 24px
  }
  .func-center {
    order: -1;
    max-width: 460px;
    margin: 0 auto
  }
  .func-col {
    flex-direction: row;
    flex-wrap: wrap
  }
  .func-col .func-item {
    flex: 1 1 260px
  }
  .compare-top {
    grid-template-columns: 1fr
  }
  .pair-grid {
    grid-template-columns: 1fr
  }
  .ba-grid {
    grid-template-columns: 1fr
  }
  .ba-arrow-col {
    transform: rotate(90deg);
    margin: 4px auto
  }
  .ba-body-icons {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px 12px
  }
  .ba-icon-step {
    flex: 0 0 26%
  }
  .ba-icon-arrow {
    display: none
  }
  .price-panel {
    grid-template-columns: 1fr
  }
  .steps5 {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 20px
  }
  .steps5 .step5-arrow {
    display: none
  }
  .faq-grid {
    grid-template-columns: 1fr
  }
  .final-grid {
    grid-template-columns: 1fr;
    gap: 18px
  }
  .final-visual {
    max-width: 320px;
    margin: 0 auto
  }
}
@media(min-width:681px) and (max-width:1024px) {
  .hero {
    padding-block: clamp(24px, 3vw, 38px) clamp(28px, 3.5vw, 44px)
  }
  .hero-grid {
    position: relative;
    min-height: 460px
  }
  .hero-visual {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 50%;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    z-index: 0
  }
  .hero-visual img {
    width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
    opacity: .8;
    transform: none
  }
  .hero-grid > .fade-up:not(.hero-visual) {
    padding: 30px 28px;
    margin: 28px
  }
  /* 04 選ばれる3つの理由：タブレットもPCと同じ2カラム */
  .sec-reasons .reason-block {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: center;
  }
  /* REASON 02はPCと同じく画像を左、文章を右 */
  .sec-reasons .reason-block.rev .r-text {
    order: 2;
  }
  .sec-reasons .reason-block.rev .r-visual {
    order: 1;
  }
  /* 07 管理者/スタッフ：タブレットはテキスト左・画像右 */
  .pair-card {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    column-gap: 24px;
    align-items: start;
  }
  .pair-card > *:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
  }
  .pair-card > *:nth-child(2) {
    grid-column: 1;
    grid-row: 2;
  }
  .pair-card > *:nth-child(3) {
    grid-column: 1;
    grid-row: 3;
    margin-bottom: 0;
  }
  .pair-card > *:nth-child(4) {
    grid-column: 2;
    grid-row: 1 / 4;
    align-self: center;
  }
  .staff-visual-row {
    flex-direction: row;
    align-items: center;
  }
  .staff-visual-row .pair-visual {
    flex: 1 1 auto;
  }
  .staff-visual-row .line-note {
    flex: 0 0 140px;
  }
  .pair-grid .pair-card:nth-child(2) .staff-visual-row .pair-visual {
    flex: 0 0 auto;
  }
  .pair-grid .pair-card:nth-child(2) .staff-visual-row .pair-visual img {
    width: auto;
    height: 229px;
    object-fit: contain;
  }
}
@media(max-width:680px) {
  .wrap {
    padding: 0 14px
  }
  .ba-bottom {
    flex-direction: column;
    text-align: center;
    padding: 24px
  }
  .ba-bottom-text {
    flex: none
  }
  .ba-illust img {
    width: clamp(140px, 58.8vw, 400px)
  }
  .pad-l {
    padding-block: clamp(48px, 10vw, 72px)
  }
  .hd-inner {
    padding: 12px 14px
  }
  .hd-tel {
    display: none
  }
  .hd-cta {
    padding: 11px 18px;
    font-size: 12.5px
  }
  .hd-logo span {
    font-size: 16px
  }
  .hero {
    padding-block: 32px 44px
  }
  .badge {
    font-size: 11.5px;
    padding: 7px 14px
  }
  .hero-lead {
    font-size: 14px
  }
  .hero-cta-row {
    display: flex;
    width: 100%;
    justify-content: center;
  }
  .price-chips {
    grid-template-columns: 1fr;
    gap: 6px;
    width: 88%;
    margin: 0 auto
  }
  .p-chip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    text-align: center;
    padding: 8px
  }
  .p-chip .lbl {
    margin-bottom: 0
  }
  .firstmonth-chip {
    width: 88%;
    margin-left: auto;
    margin-right: auto;
    min-height: 80px;
    padding: 12px;
  }
  .hero-note {
    width: 88%;
    margin-left: auto;
    margin-right: auto;
    text-align: right;
  }
  .pain-grid {
    grid-template-columns: 1fr
  }
  .flow6 {
    grid-template-columns: 1fr
  }
  .flow-summary {
    flex-direction: column;
    border-radius: var(--radius-lg);
    padding: 20px
  }
  .flow-summary .fs-arrow {
    display: none
  }
  .flow-summary .fs-text {
    margin-left: 0;
    margin-top: 6px
  }
  .pair-foot {
    gap: 10px;
    padding: 16px 14px
  }
  .pair-foot i {
    font-size: 24px
  }
  .func-col {
    flex-direction: column
  }
  .func-col .func-item {
    flex: none
  }
  .compare-note br {
    display: none
  }
  /* 比較表 → 縦積みカードに切り替え(横スクロール回避) */
  table.compare {
    min-width: 0;
    white-space: normal;
  }
  table.compare thead th {
    font-size: 10.5px;
    padding: 8px 6px;
    line-height: 1.4;
  }
  table.compare thead th.col-as {
    font-size: 12px;
  }
  table.compare tbody td {
    font-size: 11px;
    padding: 8px 6px;
    line-height: 1.5;
  }
  table.compare tbody td.col-item {
    font-size: 11.5px;
  }
  table.compare td.col-as .mk {
    font-size: 19px;
  }
  .steps5 {
    grid-template-columns: 1fr
  }
  .faq-item summary {
    padding: 16px 40px 16px 16px;
    font-size: 13.5px
  }
  .faq-item .a {
    padding: 0 16px 16px 30px
  }
  .price-ribbon {
    font-size: 12px;
    padding: 7px 16px
  }
  .price-benefits {
    flex-direction: column;
    align-items: stretch;
    gap: 0
  }
  .benefit {
    justify-content: flex-start;
    padding: 12px 4px;
    border-bottom: 1px solid var(--border)
  }
  .benefit:last-child {
    border-bottom: none
  }
  .benefit-divider {
    display: none
  }
  .price-line {
    flex-direction: column;
    align-items: flex-start
  }
  .price-line-note {
    text-align: left;
    max-width: none
  }
  .mid-inner {
    flex-direction: column;
    align-items: stretch;
    text-align: center
  }
  .mid-visual {
    display: none
  }
  .mid-actions {
    align-items: stretch;
    width: 100%
  }
  .mid-actions .btn {
    width: 100%
  }
  .final-actions .btn {
    width: 100%
  }
  .footer-inner {
    flex-direction: column;
    text-align: center
  }
  .footer-nav {
    justify-content: center
  }
  h1 {
    word-break: keep-all
  }
}
@media(max-width:560px) {
  .ba-icon-step {
    flex: 0 0 100%
  }
  .ba-body-icons {
    gap: 20px
  }
  .ba-icon-step img {
    max-width: 140px
  }
  .ba-col.ba-auto .ba-body-icons {
    gap: 36px
  }
  .ba-col.ba-auto .ba-icon-step img, .ba-col.ba-auto .ba-auto-icon {
    max-width: 128px
  }
}

/* ==================================================
   contact.html
   ================================================== */
/* ---- 02 Hero(イントロ) ---- */
.contact-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(56px, 6vw, 72px) 0 clamp(40px, 5vw, 56px);
  background: var(--white);
}
.contact-hero-deco-circle {
  position: absolute;
  top: -160px;
  right: -160px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(244, 122, 32, .14), rgba(244, 122, 32, .02) 70%);
  pointer-events: none;
}
.contact-hero-deco-dots {
  position: absolute;
  bottom: 6%;
  left: 3%;
  width: 130px;
  height: 96px;
  pointer-events: none;
  background-image: radial-gradient(var(--navy) 1.6px, transparent 1.6px);
  background-size: 16px 16px;
  opacity: .22;
}
.contact-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 40px;
  align-items: center;
}
.contact-title {
  color: var(--navy);
  font-weight: 900;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.4;
}
.contact-title::after {
  content: "";
  display: block;
  width: 44px;
  height: 4px;
  margin-top: 16px;
  border-radius: 999px;
  background: var(--orange);
}
.contact-lead {
  margin-top: 18px;
  color: var(--gray);
  font-size: 15px;
  line-height: 1.9;
}
.contact-points {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 22px;
}
.contact-point {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  font-weight: 800;
  color: var(--navy);
}
.contact-point-ico {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}
.contact-visual img {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  display: block;
}
/* ---- 03 Googleフォーム ---- */
.contact-form-section {
  padding: clamp(32px, 4vw, 48px) 0 clamp(56px, 7vw, 88px);
  background: var(--bg-soft);
}
.contact-form-wrap {
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
}
.contact-form-frame {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 1850px;
  border: 0;
}
.contact-form-note {
  max-width: 800px;
  margin: 18px auto 0;
  text-align: center;
  font-size: 13px;
  line-height: 1.8;
  color: var(--gray);
}
/* ---- 04 電話問い合わせ案内 ---- */
.contact-support {
  max-width: 800px;
  margin: 32px auto 0;
}
.contact-support-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 22px 28px;
}
.contact-support-ico {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-size: 22px;
}
.contact-support-text {
  flex: 1;
}
.contact-support-label {
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
}
.contact-support-tel {
  display: inline-block;
  margin-top: 4px;
  color: var(--navy);
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 900;
  letter-spacing: .3px;
}
.contact-support-staff {
  margin-top: 2px;
  color: var(--subtext);
  font-size: 12.5px;
  font-weight: 700;
}
.contact-back-link {
  margin-top: 28px;
  text-align: center;
}
.contact-back-link a {
  color: var(--gray);
  font-size: 13.5px;
  font-weight: 700;
  transition: color .15s ease;
}
.contact-back-link a:hover {
  color: var(--orange-dark);
}
@media (max-width: 1024px) {
  .contact-hero-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .contact-visual {
    order: 2;
  }
  .contact-visual img {
    max-width: 360px;
  }
}
@media (max-width: 680px) {
  .contact-hero {
    padding: clamp(40px, 10vw, 48px) 0 clamp(28px, 6vw, 36px);
  }
  .contact-form-section {
    padding: 28px 0 56px;
  }
  .contact-form-frame {
    height: 2080px;
  }
  .contact-support-inner {
    flex-direction: column;
    text-align: center;
    padding: 24px 20px;
  }
}
