/* ============================================
   西埼玉水道修理センター v4
   業界実用型（白/青/オレンジ・ゴシック）
   あいち水道職人 + クラシアン参考
   ============================================ */

:root {
  --blue: #0066CC;
  --blue-deep: #004C99;
  --blue-light: #E8F2FF;
  --orange: #FF6B00;
  --orange-deep: #E55A00;
  --yellow: #FFE600;
  --yellow-deep: #FFC700;
  --gray-50: #F7F8FA;
  --gray-100: #F0F2F5;
  --gray-200: #E5E8ED;
  --gray-300: #CBD2DA;
  --gray-500: #8C95A0;
  --text: #1A1A1A;
  --text-soft: #555;
  --bg: #FFFFFF;
  --shadow-sm: 0 2px 8px rgba(0, 30, 60, 0.06);
  --shadow-md: 0 8px 24px rgba(0, 30, 60, 0.10);
  --shadow-lg: 0 16px 40px rgba(0, 30, 60, 0.16);
  --container: 1140px;
  --sans: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  --num: "Roboto", "Noto Sans JP", sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.85;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.sp-only { display: none; }
@media (max-width: 768px) { .sp-only { display: inline; } }

/* ============================================
   TOP BAR（最上部の青い細い帯）
   ============================================ */
.topbar {
  background: var(--blue-deep);
  color: #fff;
  padding: 6px 0;
  font-size: 12px;
  letter-spacing: 0.05em;
}
.topbar__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
}
.topbar__text--right { font-weight: 700; }
@media (max-width: 768px) {
  .topbar__inner { flex-direction: column; align-items: center; gap: 2px; font-size: 11px; }
}

/* ============================================
   ヘッダー（白背景・青ロゴ・オレンジ電話）
   ============================================ */
.header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}
.header__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.header__brand { display: flex; flex-direction: column; gap: 2px; }
.header__brand-main {
  font-size: 20px;
  font-weight: 900;
  color: var(--blue-deep);
  letter-spacing: 0.02em;
}
.header__brand-sub {
  font-family: var(--num);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--gray-500);
}
.header__cta-group { display: flex; gap: 12px; align-items: center; }
.header__mail {
  background: #fff;
  color: var(--blue);
  border: 2px solid var(--blue);
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 14px;
  transition: background .15s, color .15s;
  white-space: nowrap;
}
.header__mail:hover { background: var(--blue); color: #fff; }
.header__tel {
  background: var(--orange);
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 12px rgba(255, 107, 0, 0.3);
  transition: background .15s, transform .15s;
}
.header__tel:hover { background: var(--orange-deep); transform: translateY(-1px); }
.header__tel-icon { font-size: 22px; }
.header__tel-body { display: flex; flex-direction: column; line-height: 1.2; }
.header__tel-label { font-size: 11px; font-weight: 500; opacity: .95; }
.header__tel-num { font-family: var(--num); font-size: 22px; font-weight: 900; letter-spacing: 0.02em; }

@media (max-width: 880px) {
  .header__brand-main { font-size: 16px; }
  .header__brand-sub { display: none; }
  .header__mail { display: none; }
  .header__tel { padding: 8px 14px; gap: 6px; }
  .header__tel-icon { font-size: 18px; }
  .header__tel-num { font-size: 17px; }
  .header__tel-label { font-size: 10px; }
}
@media (max-width: 480px) {
  .header__brand-main { font-size: 13px; }
  .header__inner { padding: 10px 16px; }
}

/* ============================================
   HERO（フルワイドの写真背景＋中央キャッチ）
   ============================================ */
.hero {
  position: relative;
  min-height: 600px;
  background: linear-gradient(135deg, var(--blue-deep) 0%, var(--blue) 100%);
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: url("hero.jpg") center / cover no-repeat;
  opacity: 0.35;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,76,153,0.65) 0%, rgba(0,102,204,0.5) 100%);
}
.hero__inner {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 80px 24px 100px;
  color: #fff;
  text-align: center;
}
.hero__sub {
  display: inline-block;
  background: var(--yellow);
  color: var(--blue-deep);
  font-weight: 900;
  font-size: 15px;
  padding: 6px 22px;
  border-radius: 999px;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}
.hero__title {
  font-size: 56px;
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 32px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
  letter-spacing: 0.02em;
}
.hero__title-row1, .hero__title-row2 { display: block; }
.hero__title-accent {
  color: var(--yellow);
  font-size: 1.15em;
  display: inline-block;
  transform: skewX(-5deg);
  padding: 0 4px;
}
.hero__points {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px 28px;
  margin-bottom: 36px;
  font-size: 17px;
  font-weight: 700;
}
.hero__points li {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.25);
}
.hero__cta-group {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

@media (max-width: 768px) {
  .hero { min-height: auto; }
  .hero__inner { padding: 56px 20px 72px; }
  .hero__title { font-size: 36px; line-height: 1.4; }
  .hero__sub { font-size: 13px; padding: 5px 18px; }
  .hero__points { font-size: 14px; gap: 10px 16px; }
  .hero__points li { padding: 6px 14px; }
}
@media (max-width: 480px) {
  .hero__title { font-size: 28px; }
}

/* ============================================
   ボタン共通（オレンジCTA・矩形）
   ============================================ */
.btn-tel {
  background: var(--orange);
  color: #fff;
  padding: 16px 32px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 6px 18px rgba(255, 107, 0, 0.4);
  transition: background .15s, transform .15s, box-shadow .15s;
  border: 2px solid var(--orange);
}
.btn-tel:hover {
  background: var(--orange-deep);
  border-color: var(--orange-deep);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(255, 107, 0, 0.5);
}
.btn-tel__icon { font-size: 28px; }
.btn-tel__body { display: flex; flex-direction: column; line-height: 1.2; text-align: left; }
.btn-tel__label { font-size: 12px; font-weight: 500; opacity: .95; }
.btn-tel__num { font-family: var(--num); font-size: 28px; font-weight: 900; letter-spacing: 0.02em; }

.btn-tel--white {
  background: #fff;
  color: var(--orange-deep);
  border-color: #fff;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}
.btn-tel--white:hover {
  background: #fff;
  color: var(--orange-deep);
  border-color: #fff;
  box-shadow: 0 10px 24px rgba(0,0,0,0.2);
}

.btn-mail {
  background: #fff;
  color: var(--blue-deep);
  border: 2px solid var(--blue-deep);
  padding: 18px 32px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 16px;
  transition: background .15s, color .15s;
  display: inline-flex;
  align-items: center;
}
.btn-mail:hover { background: var(--blue-deep); color: #fff; }

.btn-mail--white {
  background: transparent;
  color: #fff;
  border-color: #fff;
}
.btn-mail--white:hover { background: #fff; color: var(--blue-deep); }

@media (max-width: 480px) {
  .btn-tel { padding: 14px 22px; gap: 10px; }
  .btn-tel__icon { font-size: 22px; }
  .btn-tel__num { font-size: 22px; }
  .btn-mail { padding: 14px 22px; font-size: 14px; }
}

/* ============================================
   FREE BANNER（黄色「0円」バナー）
   ============================================ */
.free-banner {
  background: var(--yellow);
  color: var(--blue-deep);
  padding: 28px 0;
  border-bottom: 4px solid var(--yellow-deep);
}
.free-banner__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.free-banner__lead {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.02em;
  white-space: nowrap;
  flex-shrink: 0;
}
.free-banner__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  flex: 1;
}
.free-banner__item {
  background: #fff;
  padding: 14px 16px;
  border-radius: 8px;
  text-align: center;
  border: 2px solid var(--blue-deep);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.free-banner__num {
  font-family: var(--num);
  font-size: 36px;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
}
.free-banner__num small {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-left: 2px;
}
.free-banner__label {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
}

@media (max-width: 880px) {
  .free-banner__inner { flex-direction: column; gap: 16px; }
  .free-banner__lead { font-size: 17px; }
  .free-banner__list { width: 100%; gap: 8px; }
}
@media (max-width: 540px) {
  .free-banner__list { grid-template-columns: repeat(2, 1fr); }
  .free-banner__item { padding: 10px 8px; }
  .free-banner__num { font-size: 28px; }
  .free-banner__num small { font-size: 13px; }
  .free-banner__label { font-size: 12px; }
}

/* ============================================
   セクション共通
   ============================================ */
.section { padding: 80px 0; }
.section--white { background: #fff; }
.section--gray { background: var(--gray-50); }
.section--blue { background: linear-gradient(135deg, var(--blue) 0%, var(--blue-deep) 100%); color: #fff; }

.section-head { text-align: center; margin-bottom: 48px; }
.section-head__label {
  font-family: var(--num);
  font-size: 14px;
  font-weight: 900;
  color: var(--orange);
  letter-spacing: 0.3em;
  margin-bottom: 8px;
}
.section-head--white .section-head__label { color: var(--yellow); }
.section-head__title {
  font-size: 36px;
  font-weight: 900;
  color: var(--text);
  letter-spacing: 0.02em;
  line-height: 1.4;
}
.section-head--white .section-head__title { color: #fff; }
.section-head__lead {
  margin-top: 14px;
  font-size: 16px;
  color: var(--text-soft);
}
.section-head--white .section-head__lead { color: rgba(255,255,255,0.9); }

.num-accent {
  color: var(--orange);
  font-family: var(--num);
  font-size: 1.3em;
  margin: 0 4px;
}

@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .section-head__title { font-size: 24px; }
  .section-head { margin-bottom: 32px; }
}

/* ============================================
   SERVICE（サービスカテゴリ・カード型）
   ============================================ */
.service-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.service-card {
  background: #fff;
  border: 2px solid var(--gray-200);
  border-radius: 12px;
  padding: 28px 18px 24px;
  text-align: center;
  transition: transform .15s, box-shadow .15s, border-color .15s;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--blue);
  box-shadow: var(--shadow-md);
}
.service-card__icon { font-size: 48px; line-height: 1; }
.service-card__title {
  font-size: 20px;
  font-weight: 900;
  color: var(--blue-deep);
  margin: 8px 0;
}
.service-card__text {
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.7;
}
.service-card__price {
  margin-top: auto;
  background: var(--orange);
  color: #fff;
  font-family: var(--num);
  font-size: 17px;
  font-weight: 900;
  padding: 8px 0;
  border-radius: 6px;
  margin-top: 12px;
}

@media (max-width: 880px) {
  .service-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 540px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .service-card { padding: 20px 12px; }
  .service-card__icon { font-size: 36px; }
  .service-card__title { font-size: 16px; }
}

/* ============================================
   CERT（指定店バッジセクション）
   ============================================ */
.cert {
  background: linear-gradient(135deg, var(--blue-light) 0%, #fff 100%);
  padding: 60px 0;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}
.cert__inner {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.cert__badge {
  flex-shrink: 0;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: var(--blue-deep);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 6px solid var(--yellow);
  box-shadow: var(--shadow-md);
  position: relative;
}
.cert__badge::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  border: 2px dashed rgba(255,255,255,0.5);
}
.cert__badge-mark {
  font-size: 28px;
  font-weight: 900;
  text-align: center;
  letter-spacing: 0.05em;
  line-height: 1.2;
}
.cert__body { flex: 1; }
.cert__label {
  font-family: var(--num);
  font-size: 12px;
  font-weight: 900;
  color: var(--orange);
  letter-spacing: 0.3em;
  margin-bottom: 8px;
}
.cert__title {
  font-size: 26px;
  font-weight: 900;
  color: var(--blue-deep);
  margin-bottom: 16px;
  line-height: 1.5;
}
.cert__text {
  font-size: 15px;
  color: var(--text);
  line-height: 1.85;
  margin-bottom: 14px;
}
.cert__placeholder {
  display: inline-block;
  background: #fff;
  border: 1.5px dashed var(--blue);
  color: var(--blue);
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
}

@media (max-width: 768px) {
  .cert__inner { flex-direction: column; gap: 24px; text-align: center; }
  .cert__badge { width: 130px; height: 130px; }
  .cert__badge-mark { font-size: 22px; }
  .cert__title { font-size: 20px; }
}

/* ============================================
   STATS（数字訴求）
   ============================================ */
.stats {
  background: var(--blue-deep);
  color: #fff;
  padding: 60px 0;
  background-image:
    linear-gradient(135deg, var(--blue-deep) 0%, var(--blue) 100%),
    repeating-linear-gradient(45deg, transparent 0 40px, rgba(255,255,255,0.03) 40px 41px);
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.stats__item {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 28px 16px;
  border-radius: 12px;
  text-align: center;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.stats__num {
  display: block;
  font-family: var(--num);
  font-size: 56px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: 0.02em;
  color: var(--yellow);
}
.stats__num small {
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 700;
  margin-left: 4px;
  color: #fff;
}
.stats__label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

@media (max-width: 768px) {
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .stats__num { font-size: 40px; }
  .stats__num small { font-size: 13px; }
  .stats__label { font-size: 12px; }
  .stats__item { padding: 20px 10px; }
}

/* ============================================
   REASONS（選ばれる9つの理由）
   ============================================ */
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.reason-card {
  background: #fff;
  border-radius: 12px;
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--orange);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.reason-card__num {
  font-family: var(--num);
  font-size: 32px;
  font-weight: 900;
  color: var(--blue);
  line-height: 1;
}
.reason-card__title {
  font-size: 18px;
  font-weight: 900;
  color: var(--text);
  line-height: 1.45;
}
.reason-card__text {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.85;
}

@media (max-width: 880px) {
  .reasons-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .reason-card { padding: 22px 18px; }
}
@media (max-width: 540px) {
  .reasons-grid { grid-template-columns: 1fr; }
}

/* ============================================
   PRICE（料金表）
   ============================================ */
.price-table-wrap {
  max-width: 760px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.price-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}
.price-table thead th {
  background: var(--blue-deep);
  color: #fff;
  padding: 14px 22px;
  text-align: left;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.price-table__price-col { text-align: center !important; width: 200px; }
.price-table tbody td {
  padding: 18px 22px;
  border-bottom: 1px solid var(--gray-200);
  vertical-align: middle;
}
.price-table tbody td:first-child { font-size: 15px; }
.price-table tbody td:last-child { text-align: center; }
.price-table tbody tr:last-child td { border-bottom: none; }
.price-table tbody tr:nth-child(even) { background: var(--gray-50); }
.price-table__sub { font-size: 12px; color: var(--text-soft); }
.price-table__price {
  font-family: var(--num);
  font-size: 22px;
  font-weight: 900;
  color: var(--orange);
}
.price-note {
  margin-top: 20px;
  text-align: center;
  font-size: 13px;
  color: var(--text-soft);
}

@media (max-width: 540px) {
  .price-table thead th, .price-table tbody td { padding: 12px 14px; font-size: 13px; }
  .price-table__price { font-size: 18px; }
  .price-table__price-col { width: 130px; }
}

/* ============================================
   FLOW（5ステップ・矢印付き）
   ============================================ */
.flow {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  position: relative;
}
.flow__step {
  background: #fff;
  border-radius: 12px;
  padding: 24px 16px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.flow__step:not(:last-child)::after {
  content: "▶";
  position: absolute;
  right: -14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--orange);
  font-size: 20px;
  z-index: 2;
}
.flow__num {
  font-family: var(--num);
  font-size: 11px;
  font-weight: 900;
  color: var(--orange);
  letter-spacing: 0.2em;
  margin-bottom: 8px;
  line-height: 1.2;
}
.flow__num span {
  font-size: 22px;
  display: inline-block;
}
.flow__icon { font-size: 40px; margin-bottom: 10px; }
.flow__title {
  font-size: 16px;
  font-weight: 900;
  color: var(--blue-deep);
  margin-bottom: 8px;
  line-height: 1.4;
}
.flow__text {
  font-size: 12px;
  color: var(--text-soft);
  line-height: 1.7;
}

@media (max-width: 880px) {
  .flow { grid-template-columns: repeat(3, 1fr); }
  .flow__step:nth-child(3n)::after, .flow__step:last-child::after { display: none; }
}
@media (max-width: 540px) {
  .flow { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .flow__step:nth-child(2n)::after { display: none; }
  .flow__step:nth-child(3n)::after { display: block; }
}

/* ============================================
   STAFF（スタッフ紹介）
   ============================================ */
.staff-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 20px;
}
.staff-card {
  background: #fff;
  border: 2px solid var(--gray-200);
  border-radius: 12px;
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.staff-card--lead { border-color: var(--blue); background: linear-gradient(180deg, var(--blue-light) 0%, #fff 50%); }
.staff-card__photo {
  width: 100%;
  aspect-ratio: 1;
  background: var(--gray-100);
  border-radius: 10px;
  border: 2px dashed var(--gray-300);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-500);
  font-size: 13px;
  text-align: center;
  line-height: 1.6;
}
.staff-card__role {
  font-family: var(--num);
  font-size: 11px;
  font-weight: 900;
  color: var(--orange);
  letter-spacing: 0.2em;
}
.staff-card__name {
  font-size: 22px;
  font-weight: 900;
  color: var(--blue-deep);
  margin: 4px 0;
}
.staff-card--lead .staff-card__name { font-size: 26px; }
.staff-card__cert {
  font-size: 13px;
  color: var(--text-soft);
  padding-bottom: 10px;
  border-bottom: 1px solid var(--gray-200);
  line-height: 1.6;
}
.staff-card__msg {
  font-size: 14px;
  color: var(--text);
  line-height: 1.85;
}

@media (max-width: 880px) {
  .staff-grid { grid-template-columns: 1fr; }
}

/* ============================================
   AREA（対応エリア）
   ============================================ */
.area-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 760px;
  margin: 0 auto;
}
.area-list li {
  background: rgba(255,255,255,0.95);
  color: var(--blue-deep);
  font-weight: 900;
  padding: 12px 24px;
  border-radius: 999px;
  font-size: 16px;
  box-shadow: var(--shadow-sm);
}
.area-note {
  text-align: center;
  margin-top: 24px;
  color: rgba(255,255,255,0.9);
  font-size: 14px;
}

/* ============================================
   CASE（施工事例）
   ============================================ */
.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.case-card {
  background: #fff;
  border-radius: 12px;
  padding: 22px 22px;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--blue);
  transition: transform .15s, box-shadow .15s;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.case-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.case-card__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--text-soft);
  font-weight: 700;
}
.case-card__time {
  background: var(--orange);
  color: #fff;
  padding: 3px 12px;
  border-radius: 999px;
  font-family: var(--num);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.05em;
}
.case-card__title {
  font-size: 18px;
  font-weight: 900;
  color: var(--blue-deep);
  line-height: 1.5;
}
.case-card__text {
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.85;
}
.case-card__price {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--gray-200);
  font-size: 13px;
  color: var(--text-soft);
}
.case-card__price strong {
  font-family: var(--num);
  font-size: 22px;
  font-weight: 900;
  color: var(--orange);
  margin-left: 6px;
}
.case-card__price small {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  margin-left: 1px;
}
.case-note {
  margin-top: 28px;
  text-align: center;
  font-size: 12px;
  color: var(--text-soft);
}

@media (max-width: 880px) {
  .case-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .case-grid { grid-template-columns: 1fr; }
}

/* ============================================
   VOICE（お客様の声）
   ============================================ */
.voice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.voice-card {
  background: #fff;
  border-radius: 12px;
  padding: 24px 22px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--yellow-deep);
}
.voice-card--lead {
  grid-column: 1 / -1;
  border-left-color: var(--orange);
  background: linear-gradient(135deg, var(--blue-light) 0%, #fff 100%);
}
.voice-card__stars {
  font-size: 17px;
  color: var(--yellow-deep);
  margin-bottom: 10px;
  letter-spacing: 0.05em;
}
.voice-card--lead .voice-card__stars { font-size: 22px; }
.voice-card__text {
  font-size: 14px;
  line-height: 1.95;
  color: var(--text);
  margin-bottom: 14px;
}
.voice-card--lead .voice-card__text { font-size: 16px; }
.voice-card__author {
  font-size: 13px;
  color: var(--text-soft);
  text-align: right;
  font-weight: 700;
}

@media (max-width: 540px) {
  .voice-grid { grid-template-columns: 1fr; }
}

/* ============================================
   PAYMENT（支払方法・行型）
   ============================================ */
.payment-grid {
  max-width: 760px;
  margin: 0 auto;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
}
.payment-row {
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--gray-200);
}
.payment-row:last-child { border-bottom: none; }
.payment-row__label {
  background: var(--blue-deep);
  color: #fff;
  padding: 16px 22px;
  font-size: 14px;
  font-weight: 700;
  width: 140px;
  flex-shrink: 0;
  letter-spacing: 0.05em;
}
.payment-row__items {
  padding: 16px 22px;
  font-size: 14px;
  color: var(--text);
  line-height: 1.8;
  flex: 1;
}

@media (max-width: 540px) {
  .payment-row { flex-direction: column; align-items: stretch; }
  .payment-row__label { width: auto; padding: 8px 16px; font-size: 12px; }
  .payment-row__items { padding: 12px 16px; font-size: 13px; }
}

/* ============================================
   FAQ
   ============================================ */
.faq {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq__item {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.faq__q {
  list-style: none;
  cursor: pointer;
  padding: 18px 56px 18px 56px;
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  position: relative;
  transition: background .15s;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q::before {
  content: "Q";
  position: absolute;
  left: 20px;
  top: 16px;
  background: var(--blue);
  color: #fff;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--num);
  font-weight: 900;
  font-size: 14px;
}
.faq__q::after {
  content: "＋";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  color: var(--orange);
  font-weight: 700;
}
.faq__item[open] .faq__q::after { content: "−"; }
.faq__q:hover { background: var(--gray-50); }
.faq__a {
  padding: 16px 24px 20px 56px;
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.85;
  border-top: 1px solid var(--gray-200);
  background: var(--gray-50);
  position: relative;
}
.faq__a::before {
  content: "A";
  position: absolute;
  left: 20px;
  top: 16px;
  background: var(--orange);
  color: #fff;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--num);
  font-weight: 900;
  font-size: 14px;
}

/* ============================================
   COMPANY（会社概要）
   ============================================ */
.company-table-wrap {
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.company-table { width: 100%; border-collapse: collapse; }
.company-table th, .company-table td {
  padding: 16px 22px;
  text-align: left;
  border-bottom: 1px solid var(--gray-200);
  font-size: 14px;
  vertical-align: top;
  line-height: 1.7;
}
.company-table th {
  background: var(--blue-light);
  color: var(--blue-deep);
  font-weight: 700;
  width: 32%;
}
.company-table tr:last-child th, .company-table tr:last-child td { border-bottom: none; }

@media (max-width: 540px) {
  .company-table th, .company-table td { padding: 12px 14px; font-size: 13px; }
  .company-table th { width: 38%; }
}

/* ============================================
   FINAL CTA（最終訴求）
   ============================================ */
.final-cta {
  background: linear-gradient(135deg, var(--orange-deep) 0%, var(--orange) 100%);
  color: #fff;
  padding: 80px 0;
  text-align: center;
}
.final-cta__title {
  font-size: 36px;
  font-weight: 900;
  margin-bottom: 14px;
  line-height: 1.4;
  letter-spacing: 0.02em;
}
.final-cta__lead {
  font-size: 17px;
  margin-bottom: 36px;
  opacity: 0.95;
}
.final-cta__group {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
}
.final-cta__note {
  font-size: 13px;
  opacity: 0.85;
  letter-spacing: 0.05em;
}

@media (max-width: 540px) {
  .final-cta { padding: 56px 0; }
  .final-cta__title { font-size: 24px; }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: #1A2332;
  color: #B8C0CC;
  padding: 48px 0 32px;
  text-align: center;
}
.footer__name {
  font-size: 18px;
  color: #fff;
  margin-bottom: 14px;
  font-weight: 900;
  letter-spacing: 0.05em;
}
.footer__info { font-size: 13px; line-height: 1.95; }
.footer__info a { color: #6BAEFF; }
.footer__info a:hover { text-decoration: underline; }
.footer__copy {
  margin-top: 28px;
  font-size: 11px;
  color: #5C6878;
  letter-spacing: 0.1em;
  font-family: var(--num);
}

/* ============================================
   フローティングCTA（スマホ）
   ============================================ */
.floating-cta { display: none; }
@media (max-width: 768px) {
  .floating-cta {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 200;
    padding: 8px 12px calc(8px + env(safe-area-inset-bottom));
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid var(--gray-200);
    box-shadow: 0 -6px 18px rgba(0, 30, 60, 0.12);
  }
  body { padding-bottom: 90px; }
}
.floating-cta__btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--orange);
  color: #fff;
  padding: 12px 18px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(255, 107, 0, 0.4);
}
.floating-cta__btn:active { background: var(--orange-deep); transform: scale(.98); }
.floating-cta__icon { font-size: 24px; }
.floating-cta__body { display: flex; flex-direction: column; line-height: 1.2; }
.floating-cta__label { font-size: 11px; font-weight: 500; opacity: .95; }
.floating-cta__num { font-family: var(--num); font-size: 22px; font-weight: 900; letter-spacing: 0.02em; }
