/* ===========================
   害獣駆除ドクター LP
   モバイルファースト / 768px切替
   =========================== */

:root {
  --bg-dark: #01130a;      /* FV等 */
  --bg-mid: #0a231b;       /* 親背景 */
  --bg-flow: #001e10;      /* 流れ */
  --bg-accent: #013928;    /* エリア・声 */
  --bg-header: #ffffff;    /* ヘッダー（白） */
  --accent: #FFC60D;
  --accent-2: #ffd91a;
  --text: #ffffff;
  --text-muted: #ccd9cc;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background-color: var(--bg-mid);
  color: var(--text);
  font-family: 'Hiragino Sans', 'Noto Sans JP', 'Yu Gothic', sans-serif;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; line-height: 0; }

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

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

/* SP only / PC only 表示制御 */
.sp-only { display: block; }
.pc-only { display: none !important; }

@media (min-width: 768px) {
  .sp-only { display: none !important; }
  .pc-only { display: block !important; }
}

/* ===========================
   Header (SP/PC 共通)
   =========================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  background-color: var(--bg-header);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}
.site-header__inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 18px;
  gap: 8px;
}
.site-logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 1;
  min-width: 0;
}
.site-logo img {
  display: block;
  height: 48px;
  width: auto;
}
.header-tel-btn {
  display: inline-block;
  flex-shrink: 0;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
/*  box-shadow: 0 4px 12px rgba(235, 107, 15, 0.4), 0 1px 3px rgba(0,0,0,0.15);*/
/*  animation: tel-pulse 2.2s ease-in-out infinite;*/
  transition: transform 0.12s ease, box-shadow 0.12s ease, filter 0.12s ease;
}
.header-tel-btn img {
  display: block;
  height: 48px;
  width: auto;
  border-radius: 10px;
}
.header-tel-btn:hover {
  filter: brightness(1.06);
  transform: translateY(-2px) scale(1.02);
/*  box-shadow: 0 8px 20px rgba(235, 107, 15, 0.5), 0 2px 4px rgba(0,0,0,0.2);*/
  animation-play-state: paused;
}
.header-tel-btn:active {
  transform: translateY(0) scale(0.99);
  filter: brightness(0.97);
/*  box-shadow: 0 2px 6px rgba(235, 107, 15, 0.3);*/
}

@keyframes tel-pulse {
  0%, 100% { box-shadow: 0 4px 12px rgba(235, 107, 15, 0.4), 0 1px 3px rgba(0,0,0,0.15); }
  50% { box-shadow: 0 4px 18px rgba(255, 166, 26, 0.7), 0 1px 3px rgba(0,0,0,0.15); }
}

/* PC ヘッダー：さらに大きく */
@media (min-width: 768px) {
  .site-header__inner {
    height: 110px;
    padding: 0 24px;
  }
  .site-logo img { height: 86px; }
  .header-tel-btn img { height: 84px; }
}

/* ===========================
   Main / Sections
   =========================== */
.lp { margin: 0 auto; }

.sec {
  position: relative;
  width: 100%;
  line-height: 0;
  font-size: 0;
  display: flex;
  justify-content: center;
}

.sec picture,
.sec > img,
.sec source {
  display: block;
  width: 100%;
  max-width: 1000px;
  height: auto;
  vertical-align: top;
}

.sec picture { line-height: 0; }
.sec picture img { display: block; vertical-align: top; width: 100%; height: auto; }

/* CTA wrap container for the main CTA section */
.sec-cta__wrap {
  position: relative;
  width: 100%;
  max-width: 1000px;
}

/* SP: 画像は画面幅にフィット（無駄な左右隙間なし） */
@media (max-width: 767.98px) {
  .sec picture,
  .sec > img,
  .sec source,
  .sec-cta__wrap {
    max-width: 100%;
    width: 100%;
  }
}

/* ===========================
   背景帯クラス
   =========================== */
.bg-dark { background-color: var(--bg-dark); }
.bg-mid { background-color: var(--bg-mid); }
.bg-flow { background-color: var(--bg-flow); }
.bg-accent { background-color: var(--bg-accent); }

/* CTA セクションは画像の背景色にマッチさせる */
.sec-cta.bg-mid { background-color: #001d12; }

/* PC版 FV下（01_jisseki）の帯は画像背景 */
@media (min-width: 768px) {
  .sec-jisseki1 {
    background-color: var(--bg-dark);
    background-image: url('images/pc/01_bg.webp');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
  }
}

/* ===========================
   CTA buttons overlay
   =========================== */
.cta-btn {
  position: absolute;
  display: block;
  cursor: pointer;
}
.cta-btn:focus-visible {
  outline: 2px solid var(--accent-2);
  outline-offset: 2px;
}
.cta-btn, .header-tel-btn {
  -webkit-tap-highlight-color: rgba(255, 198, 13, 0.2);
}

/* SP CTA セクション内ボタン (07_cta_tel.png 600x276, 07_cta_mail.png 934x240) */
.sec-cta .cta-tel {
  left: 14%;
  top: 44%;
  width: 72%;
  aspect-ratio: 600 / 276;
  height: auto;
}
.sec-cta .cta-mail {
  left: 6%;
  top: 78%;
  width: 88%;
  aspect-ratio: 934 / 240;
  height: auto;
}

/* CTA ボタン：ヘッダー電話ボタンと完全に同じ hover/active 演出 */
.sec-cta .cta-btn {
  border-radius: 12px;
  overflow: hidden;
  z-index: 3;
  transition: transform 0.12s ease, filter 0.12s ease;
}
.sec-cta .cta-btn img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.sec-cta .cta-btn:hover {
  filter: brightness(1.06);
  transform: translateY(-2px) scale(1.02);
}
.sec-cta .cta-btn:active {
  transform: translateY(0) scale(0.99);
  filter: brightness(0.97);
}

/* SP フッターCTA電話ボタン (sec-footer-cta 375x344, FooterTelBtn 16,70,343,102) */
.sec-footer-cta {
  background-color: var(--bg-mid);
}
.sec-footer-cta .footer-tel {
  left: 4.3%;
  top: 20.3%;
  width: 91.5%;
  height: 29.7%;
}

/* ===========================
   PC FAQ テキスト実装
   =========================== */
.sec-faq--pc { padding: 60px 16px; }
.faq {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
}
.faq__head {
  text-align: center;
  margin-bottom: 36px;
}
.faq__label {
  display: inline-block;
  color: var(--accent-2);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12em;
  margin-bottom: 14px;
}
.faq__title {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.25;
  margin: 0 0 14px;
  letter-spacing: 0.04em;
}
.faq__title .accent { color: var(--accent-2); }
.faq__sub {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
}
.faq__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq__item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255, 217, 26, 0.2);
  border-radius: 12px;
  padding: 20px 24px;
  transition: border-color 0.2s ease;
}
.faq__item:hover { border-color: rgba(255, 217, 26, 0.5); }
.faq__q {
  display: flex;
  align-items: baseline;
  gap: 14px;
  font-weight: 700;
  font-size: 17px;
  color: var(--text);
  margin-bottom: 12px;
}
.faq__qmark {
  color: var(--accent-2);
  font-family: 'Georgia', serif;
  font-style: italic;
  font-size: 22px;
  font-weight: 700;
  flex-shrink: 0;
}
.faq__qmark em {
  font-size: 18px;
  font-style: normal;
  margin-left: 4px;
}
.faq__qtext { flex: 1; }
.faq__a {
  display: flex;
  align-items: baseline;
  gap: 14px;
  font-size: 15px;
  color: var(--text-muted);
  padding-left: 4px;
}
.faq__amark {
  color: var(--accent-2);
  font-family: 'Georgia', serif;
  font-style: italic;
  font-size: 18px;
  font-weight: 600;
  flex-shrink: 0;
}
.faq__atext { flex: 1; line-height: 1.75; }

/* ===========================
   FAQ ネイティブ（SP/PC統一）
   =========================== */
.sec-faq-native {
  display: block;
  padding: 44px 16px 52px;
  font-size: 14px;
  line-height: 1.6;
  text-align: left;
}
.sec-faq-native .faq { max-width: 720px; margin: 0 auto; font-size: 14px; }
.sec-faq-native .faq__head { text-align: center; margin-bottom: 22px; }
.sec-faq-native .faq__label { font-size: 12px; margin-bottom: 12px; }
.sec-faq-native .faq__title { font-size: 26px; margin: 6px 0 10px; }
.sec-faq-native .faq__sub { font-size: 12px; margin: 8px 0 0; }
.sec-faq-native .faq__list { gap: 12px; }
.sec-faq-native .faq__item { padding: 14px 16px; border-radius: 10px; }
.sec-faq-native .faq__q { font-size: 14px; gap: 10px; margin-bottom: 10px; }
.sec-faq-native .faq__qmark { font-size: 15px; }
.sec-faq-native .faq__qmark em { font-size: 15px; }
.sec-faq-native .faq__a {
  font-size: 13px;
  gap: 10px;
  background: rgba(0, 0, 0, 0.2);
  padding: 10px 12px;
  border-radius: 6px;
}
.sec-faq-native .faq__amark { font-size: 14px; }

@media (min-width: 768px) {
  .sec-faq-native { padding: 64px 16px 72px; }
  .sec-faq-native .faq { font-size: 16px; }
  .sec-faq-native .faq__head { margin-bottom: 36px; }
  .sec-faq-native .faq__label { font-size: 14px; margin-bottom: 14px; }
  .sec-faq-native .faq__title { font-size: 36px; margin: 0 0 14px; }
  .sec-faq-native .faq__sub { font-size: 14px; }
  .sec-faq-native .faq__list { gap: 14px; }
  .sec-faq-native .faq__item { padding: 20px 24px; border-radius: 12px; }
  .sec-faq-native .faq__q { font-size: 17px; gap: 14px; margin-bottom: 12px; }
  .sec-faq-native .faq__qmark { font-size: 22px; }
  .sec-faq-native .faq__qmark em { font-size: 18px; }
  .sec-faq-native .faq__a { font-size: 15px; padding: 14px 16px; }
  .sec-faq-native .faq__amark { font-size: 18px; }
}

/* ===========================
   テキスト解説セクション（対応害獣別など）
   =========================== */
.sec-kw {
  display: block;
  padding: 44px 16px 52px;
  font-size: 14px;
  line-height: 1.7;
  text-align: center;
}
.kw {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  color: var(--text);
}
.kw__head { text-align: center; margin-bottom: 20px; }
.kw__label {
  display: inline-block;
  color: var(--accent-2);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-bottom: 10px;
}
.kw__title {
  font-size: 24px;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: 0.02em;
  margin: 0 0 10px;
}
.kw__title .accent { color: var(--accent-2); }
.kw__sub {
  font-size: 12px;
  color: var(--text-muted);
  margin: 0;
}
.kw__lead {
  text-align: left;
  font-size: 13.5px;
  line-height: 1.9;
  color: var(--text-muted);
  margin: 0 0 20px;
}
.kw__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.kw__card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 217, 26, 0.22);
  border-radius: 12px;
  padding: 18px 18px 20px;
  text-align: left;
}
.kw__card h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.4;
  color: var(--text);
  margin: 0 0 12px;
}
.kw__ico {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 217, 26, 0.1);
  border: 1px solid rgba(255, 217, 26, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.kw__ico svg { width: 23px; height: 23px; display: block; }
.kw__card p {
  margin: 0 0 8px;
  font-size: 13.5px;
  line-height: 1.85;
  color: var(--text-muted);
}
.kw__card p:last-child { margin-bottom: 0; }
.kw__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}
.kw__tags span {
  font-size: 11px;
  font-weight: 600;
  color: var(--accent-2);
  border: 1px solid rgba(255, 217, 26, 0.35);
  border-radius: 999px;
  padding: 3px 10px;
  line-height: 1.6;
}
.kw__note {
  margin: 20px 0 0;
  padding: 14px 16px;
  background: rgba(0, 0, 0, 0.22);
  border-left: 3px solid var(--accent-2);
  border-radius: 6px;
  font-size: 13px;
  line-height: 1.9;
  color: var(--text-muted);
  text-align: left;
}

@media (min-width: 768px) {
  .sec-kw { padding: 64px 16px 72px; }
  .kw__head { margin-bottom: 28px; }
  .kw__label { font-size: 14px; margin-bottom: 12px; }
  .kw__title { font-size: 34px; }
  .kw__sub { font-size: 14px; }
  .kw__lead { font-size: 15px; margin-bottom: 28px; }
  .kw__ico { width: 46px; height: 46px; }
  .kw__ico svg { width: 26px; height: 26px; }
  .kw__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
  .kw__card { padding: 22px 24px 24px; }
  .kw__card h3 { font-size: 19px; }
  .kw__card p { font-size: 14.5px; }
  .kw__tags span { font-size: 12px; }
  .kw__note { font-size: 14px; padding: 18px 20px; }
}

/* ===========================
   ネイティブ実装セクション 共通
   =========================== */
.sec-native {
  display: block;
  padding: 44px 16px 52px;
  font-size: 14px;
  line-height: 1.7;
  text-align: center;
}
.nsec {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  color: var(--text);
}
.nsec__head { text-align: center; margin-bottom: 24px; }
.nsec__label {
  display: inline-block;
  color: var(--accent-2);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  padding: 5px 18px;
  border: 1px solid rgba(255, 217, 26, 0.5);
  border-radius: 999px;
  background: rgba(255, 217, 26, 0.06);
  margin-bottom: 14px;
}
.nsec__title {
  font-size: 25px;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: 0.01em;
  margin: 0 0 10px;
}
.nsec__title .accent { color: var(--accent-2); }
.nsec__sub {
  font-size: 12.5px;
  color: var(--text-muted);
  margin: 0;
}
.nsec__foot {
  margin: 22px 0 0;
  padding: 13px 16px;
  background: var(--accent-2);
  color: #06170f;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

@media (min-width: 768px) {
  .sec-native { padding: 64px 20px 72px; }
  .nsec__head { margin-bottom: 34px; }
  .nsec__label { font-size: 14px; margin-bottom: 16px; }
  .nsec__title { font-size: 38px; }
  .nsec__sub { font-size: 15px; }
  .nsec__foot { font-size: 20px; padding: 16px 20px; margin-top: 30px; }
}

/* ---- 対応する害獣 ---- */
.animals {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.animals li {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 217, 26, 0.32);
  border-radius: 12px;
  padding: 12px 12px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.animals__ph {
  width: 100%;
  aspect-ratio: 5 / 4;
  border-radius: 8px;
  overflow: hidden;
/*  background: #0d2318;*/
  line-height: 0;
}
.animals__ph img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.animals h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 800;
  color: var(--accent-2);
  letter-spacing: 0.02em;
  line-height: 1.3;
}
.animals p {
  margin: 0;
  font-size: 11.5px;
  line-height: 1.6;
  color: var(--text-muted);
}

@media (min-width: 768px) {
  .animals { grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .animals li { padding: 18px 18px 20px; gap: 10px; }
  .animals h3 { font-size: 20px; }
  .animals p { font-size: 13.5px; }
}

/* ---- 施工事例 ---- */
.cases {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cases li {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 217, 26, 0.3);
  border-radius: 12px;
  padding: 0 0 18px;
  overflow: hidden;
  text-align: left;
}
.cases__ph {
  line-height: 0;
  margin-bottom: 14px;
  background: #000;
}
.cases__ph img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  display: block;
}
.cases__top,
.cases__meta { padding: 0 16px; }
.cases__top {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 217, 26, 0.18);
}
.cases__area {
  background: var(--accent-2);
  color: #06170f;
  font-size: 12px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 6px;
  white-space: nowrap;
}
.cases__ttl {
  margin: 0;
  font-size: 17px;
  font-weight: 800;
  color: var(--text);
  line-height: 1.35;
}
.cases__meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.cases__meta > div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.cases__meta dt,
.cases__meta .lab {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.04em;
}
.cases__meta .val {
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
  line-height: 1.3;
}
.cases__meta .val--price { color: var(--accent-2); }
.cases__meta .val--issue {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.6;
}
.cases__meta .full { grid-column: 1 / -1; }

@media (min-width: 768px) {
  .cases { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .cases li {
    padding: 0 0 26px;
    display: flex;
    flex-direction: column;
  }
  .cases__ph { margin-bottom: 20px; }
  .cases__ph img { height: 170px; }
  .cases__top,
  .cases__meta { padding: 0 22px; }

  /* 地域バッジとタイトルを縦積みにして3カードの行位置を揃える */
  .cases__top {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 16px;
    padding-bottom: 16px;
  }
  .cases__area { font-size: 12.5px; padding: 5px 13px; }
  .cases__ttl {
    font-size: 20px;
    letter-spacing: 0.01em;
  }

  /* 数値ブロック：縦罫で区切り、カード下端で揃える */
  .cases__meta {
    gap: 0;
    align-items: stretch;
  }
  .cases__meta > div {
    padding-left: 16px;
    border-left: 1px solid rgba(255, 217, 26, 0.18);
    justify-content: flex-start;
  }
  .cases__meta > div:first-child {
    padding-left: 0;
    border-left: 0;
  }
  .cases__meta .lab {
    font-size: 11.5px;
    letter-spacing: 0.06em;
    margin-bottom: 2px;
  }
  .cases__meta .val {
    font-size: 22px;
    letter-spacing: 0.01em;
    white-space: nowrap;
  }
  .cases__meta .full {
    margin-top: 16px;
    padding: 16px 0 0;
    border-left: 0;
    border-top: 1px solid rgba(255, 217, 26, 0.18);
  }
  .cases__meta .val--issue {
    font-size: 14px;
    line-height: 1.65;
    white-space: normal;
  }
}

/* 狭めのPC幅（768〜1023px）はカード内が窮屈になるため縮小 */
@media (min-width: 768px) and (max-width: 1023.98px) {
  .cases__top,
  .cases__meta { padding: 0 15px; }
  .cases__ttl { font-size: 17px; }
  .cases__area { font-size: 11.5px; padding: 4px 10px; }
  .cases__meta > div { padding-left: 11px; }
  .cases__meta .val { font-size: 18px; }
  .cases__meta .lab { font-size: 10.5px; }
  .cases__meta .val--issue { font-size: 13px; }
}

/* ---- 選ばれる理由 ---- */
.points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.points li {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 217, 26, 0.3);
  border-radius: 12px;
  padding: 18px 18px 20px;
  text-align: left;
}
.points__head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}
.points__ico {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(255, 217, 26, 0.1);
  border: 1px solid rgba(255, 217, 26, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.points__ico svg { width: 30px; height: 30px; display: block; }
.points__no {
  display: block;
  font-family: 'Georgia', serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--accent-2);
  margin-bottom: 3px;
}
.points h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
  line-height: 1.35;
}
.points p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.85;
  color: var(--text-muted);
}
.points__badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-top: 14px;
  padding: 10px 12px;
  border: 1px solid var(--accent-2);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 800;
  color: var(--accent-2);
  letter-spacing: 0.02em;
}
.points__badge svg { width: 20px; height: 20px; display: block; flex-shrink: 0; }

@media (min-width: 768px) {
  .points { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .points li { padding: 26px 24px 28px; }
  .points h3 { font-size: 20px; }
  .points p { font-size: 14.5px; }
  .points__badge { font-size: 15px; }
}

/* ---- 対応エリア ---- */
.sec-area-native .nsec { max-width: 760px; }
.area__pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 4px 0 22px;
  padding: 9px 20px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
}
.area__pill::before {
  content: "›";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent-2);
  color: #06170f;
  font-weight: 900;
  font-size: 14px;
  line-height: 1;
}
.area__map {
  margin: 0 auto 18px;
  width: fit-content;
  max-width: 100%;
  line-height: 0;
}
.area__map img {
  width: 250px;
  max-width: 100%;
  height: auto;
  display: block;
}
.area__pref {
  border: 1px solid rgba(255, 217, 26, 0.4);
  border-radius: 12px;
  padding: 18px 16px;
  margin: 0 0 14px;
  background: rgba(255, 255, 255, 0.03);
}
.area__pref__lab {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 800;
  color: var(--accent-2);
  margin-bottom: 10px;
  letter-spacing: 0.06em;
}
.area__pref__lab svg { width: 15px; height: 15px; display: block; flex-shrink: 0; }
.area__pref ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}
.area__pref li {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  padding: 5px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.25);
}
.area__benefits {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.area__benefits li {
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 217, 26, 0.3);
  border-radius: 10px;
  padding: 13px 16px;
  font-size: 14px;
  font-weight: 700;
}
.area__benefits .chk {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid var(--accent-2);
  color: var(--accent-2);
  font-size: 13px;
  font-weight: 900;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .sec-area-native { padding: 58px 20px 62px; }
  .sec-area-native .nsec { max-width: 1000px; }

  /* 上段：左にコピー、右にマップ */
  .area__main {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 24px;
    margin-bottom: 26px;
  }
  .area__intro { text-align: left; }
  .sec-area-native .nsec__label { margin-bottom: 24px; }
  .sec-area-native .nsec__title {
    font-size: 42px;
    line-height: 1.32;
    margin: 0 0 26px;
  }
  .sec-area-native .nsec__title .accent {
    display: inline-block;
    border-bottom: 4px solid var(--accent-2);
    padding-bottom: 6px;
  }
  .area__pill {
    margin: 0;
    font-size: 16px;
    padding: 12px 26px;
  }
  .area__map { margin: 0; justify-self: center; }
  .area__map img { width: 100%; max-width: 410px; }

  /* 下段：対応都県＋ベネフィット3枚を横一列に */
  .area__cards {
    display: grid;
    grid-template-columns: 1.55fr 3fr;
    gap: 12px;
    align-items: stretch;
  }
  .area__pref {
    margin: 0;
    padding: 15px 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .area__pref__lab { font-size: 14px; margin-bottom: 7px; }
  .area__pref ul { display: block; line-height: 1.75; }
  .area__pref li {
    display: inline;
    border: 0;
    background: none;
    padding: 0;
    font-size: 13.5px;
    font-weight: 700;
  }
  .area__pref li:not(:last-child)::after {
    content: "・";
    color: var(--accent-2);
  }
  .area__benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
  .area__benefits li {
    justify-content: center;
    text-align: center;
    font-size: 13.5px;
    padding: 14px 10px;
    line-height: 1.5;
  }
}

/* ---- 対応市区町村（開閉式） ---- */
.area__cities {
  margin-top: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 217, 26, 0.28);
  border-radius: 12px;
  padding: 16px 14px 18px;
  text-align: left;
}
.area__cities__lab {
  display: block;
  text-align: center;
  font-size: 12.5px;
  font-weight: 800;
  color: var(--accent-2);
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}
.area__acc {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.area__acc details {
  background: rgba(0, 0, 0, 0.26);
  border: 1px solid rgba(255, 217, 26, 0.25);
  border-radius: 10px;
  overflow: hidden;
}
.area__acc summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  font-size: 14px;
  font-weight: 800;
  color: var(--text);
  transition: background 0.15s ease;
}
.area__acc summary::-webkit-details-marker { display: none; }
.area__acc summary:hover { background: rgba(255, 217, 26, 0.06); }
.area__acc summary em {
  font-style: normal;
  font-weight: 600;
  font-size: 11.5px;
  color: var(--text-muted);
  margin-left: auto;
}
.area__acc summary::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--accent-2);
  border-bottom: 2px solid var(--accent-2);
  transform: rotate(45deg) translate(-2px, -2px);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}
.area__acc details[open] summary::after {
  transform: rotate(-135deg) translate(-2px, -2px);
}
.area__acc ul {
  list-style: none;
  margin: 0;
  padding: 2px 14px 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.area__acc li {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--text);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  padding: 4px 10px;
  line-height: 1.4;
}
.area__cities__note {
  margin: 13px 0 0;
  font-size: 11.5px;
  line-height: 1.75;
  color: var(--text-muted);
}

@media (min-width: 768px) {
  .area__cities { margin-top: 14px; padding: 20px 24px 22px; }
  .area__cities__lab { font-size: 14px; margin-bottom: 14px; }
  .area__acc summary { font-size: 15px; padding: 13px 16px; }
  .area__acc summary em { font-size: 12.5px; }
  .area__acc li { font-size: 12.5px; padding: 5px 12px; }
  .area__cities__note { font-size: 12.5px; margin-top: 16px; }
}

/* ---- 喜びの声 ---- */
.voices {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.voices li {
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 217, 26, 0.22);
  border-radius: 12px;
  overflow: hidden;
  text-align: left;
}
.voices__photo { line-height: 0; background: #000; }
.voices__photo img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
}
.voices__body { padding: 14px 16px 18px; }
.voices__top {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 217, 26, 0.15);
}
.voices__stars { color: var(--accent-2); font-size: 14px; letter-spacing: 1px; }
.voices__meta { font-size: 11.5px; color: var(--text-muted); }
.voices h3 {
  margin: 0 0 8px;
  font-size: 16.5px;
  font-weight: 800;
  color: var(--text);
  line-height: 1.4;
}
.voices p {
  margin: 0;
  font-size: 13px;
  line-height: 1.8;
  color: var(--text-muted);
}

@media (min-width: 768px) {
  .voices { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .voices__photo img { height: 220px; }
  .voices__body { padding: 16px 20px 22px; }
  .voices h3 { font-size: 18px; padding-top: 10px;}
  .voices p { font-size: 14px; }
}

/* ===========================
   Company テキスト実装（SP/PC共通）
   =========================== */
.sec-about--pc {
  padding: 48px 16px 56px;
  display: block;
}
.company {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  color: var(--text);
  line-height: 1.7;
  font-size: 14px;
}
.company__head {
  text-align: center;
  margin-bottom: 28px;
}
.company__label {
  display: inline-block;
  color: var(--accent-2);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
}
.company__title {
  font-size: 26px;
  font-weight: 800;
  line-height: 1.25;
  margin: 0 0 12px;
  letter-spacing: 0.04em;
}
.company__title .accent { color: var(--accent-2); }
.company__sub {
  font-size: 12px;
  color: var(--text-muted);
  margin: 0;
}
.company__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 217, 26, 0.18);
}
.company__row {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 12px;
  padding: 14px 4px;
  border-bottom: 1px solid rgba(255, 217, 26, 0.18);
  align-items: baseline;
}
.company__row dt {
  color: var(--accent-2);
  font-weight: 700;
  font-size: 13px;
  margin: 0;
  position: relative;
  padding-left: 12px;
}
.company__row dt::before {
  content: "●";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent-2);
  font-size: 7px;
  line-height: 2.2;
}
.company__row dd {
  margin: 0;
  font-size: 13px;
  color: var(--text);
  line-height: 1.7;
}

@media (min-width: 768px) {
  .sec-about--pc { padding: 60px 16px; }
  .company { font-size: 16px; }
  .company__head { margin-bottom: 36px; }
  .company__label { font-size: 14px; margin-bottom: 14px; }
  .company__title { font-size: 36px; margin: 0 0 14px; }
  .company__sub { font-size: 14px; }
  .company__row {
    grid-template-columns: 160px 1fr;
    gap: 24px;
    padding: 18px 8px;
  }
  .company__row dt { font-size: 15px; padding-left: 14px; }
  .company__row dt::before { font-size: 8px; line-height: 1.8; }
  .company__row dd { font-size: 15px; }
}

/* ===========================
   PC Footer
   =========================== */
.site-footer {
  background-color: var(--bg-mid);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
  padding: 32px 16px;
  text-align: center;
  font-size: 12px;
  line-height: 1.6;
}
.site-footer__inner {
  max-width: 1000px;
  margin: 0 auto;
}
.site-footer__brand {
  color: var(--text);
  font-weight: 600;
  font-size: 14px;
  margin: 0 0 12px;
}
.site-footer__links {
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.site-footer__links a:hover { color: var(--text); }
.site-footer__copy { margin: 0; font-size: 11px; opacity: 0.6; }
.site-footer__kw {
  margin: 0 auto 16px;
  max-width: 760px;
  font-size: 11px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.55);
}
.site-footer__kw dt {
  display: inline;
  color: var(--accent-2);
  font-weight: 700;
  margin-right: 6px;
}
.site-footer__kw dd { display: inline; margin: 0; }
.site-footer__kw div + div { margin-top: 4px; }
.site-footer__kw div { display: block; }

@media (min-width: 768px) {
  .site-footer__kw { font-size: 12px; margin-bottom: 20px; }
}

/* ===========================
   Tablet / PC (768px以上)
   =========================== */
@media (min-width: 768px) {
  .sp-only { display: none; }
  .pc-only { display: block; }

  /* PC CTA ボタン座標 (07_cta_tel.png 892x314, 07_cta_mail.png 835x310) */
  .sec-cta .cta-tel {
    left: 6%;
    top: 56%;
    width: 42%;
    aspect-ratio: 892 / 314;
    height: auto;
  }
  .sec-cta .cta-mail {
    left: 52%;
    top: 56%;
    width: 42%;
    aspect-ratio: 835 / 310;
    height: auto;
  }
}



/* ===========================
   Form / お問い合わせ（LPトンマナ統一）
   =========================== */
.formWrap__bg {
  width: 100%;
  padding: 56px 16px 64px;
  background-color: var(--bg-mid);
  display: flex;
  justify-content: center;
}
#formWrap {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  color: var(--text);
}
#formWrap h2 {
  text-align: center;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 0.04em;
  margin: 0 0 8px;
  position: relative;
  padding-bottom: 14px;
}
#formWrap h2::after {
  content: "";
  display: block;
  width: 56px;
  height: 3px;
  background: var(--accent-2);
  margin: 12px auto 0;
  border-radius: 2px;
}
#formWrap > p {
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  margin: 0 0 28px;
}

.formTable {
  width: 100%;
  margin: 0 auto;
  border-collapse: separate;
  border-spacing: 0;
}
.formTable tr {
  display: block;
  margin-bottom: 16px;
}
.formTable th {
  display: block;
  width: 100%;
  text-align: left;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  padding: 0 0 8px;
  border: 0;
  position: relative;
}
.formTable th span {
  display: inline-block;
  margin-left: 8px;
  background: var(--accent-2);
  color: #0a231b;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  letter-spacing: 0.04em;
  vertical-align: middle;
  float: none;
}
.formTable td {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
}
.formTable input,
.formTable select,
.formTable textarea {
  display: block;
  width: 100%;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  border: 1px solid rgba(255, 217, 26, 0.25);
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
  line-height: 1.5;
  -webkit-appearance: none;
  appearance: none;
  transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
  margin: 0;
}
.formTable input:focus,
.formTable select:focus,
.formTable textarea:focus {
  outline: none;
  border-color: var(--accent-2);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 3px rgba(255, 217, 26, 0.2);
}
.formTable input.no-spin::-webkit-outer-spin-button,
.formTable input.no-spin::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.formTable input.no-spin { -moz-appearance: textfield; }
.formTable .formtextarea { width: 100%; }
.formTable textarea { resize: vertical; min-height: 120px; }

::placeholder { color: rgba(255, 255, 255, 0.35); }

.formWrap__policy {
  width: 100%;
  height: 200px;
  margin: 28px auto 20px;
  overflow: auto;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 217, 26, 0.18);
  border-radius: 8px;
  padding: 18px 20px;
  color: var(--text-muted);
  font-size: 12px;
  line-height: 1.7;
}
.formWrap__policy::-webkit-scrollbar { width: 8px; }
.formWrap__policy::-webkit-scrollbar-track { background: rgba(255,255,255,0.04); border-radius: 4px; }
.formWrap__policy::-webkit-scrollbar-thumb { background: rgba(255,217,26,0.4); border-radius: 4px; }
.formWrap__policy .bold { color: var(--accent-2); font-weight: 700; }
.formWrap__policy .center { text-align: center; margin-bottom: 14px; font-size: 14px; }
.formWrap__policy p { margin: 0 0 14px; }
.formWrap__policy p:last-child { margin-bottom: 0; }

.formWrap__policy__agree {
  text-align: center;
  margin: 12px 0 22px;
  font-size: 14px;
  color: var(--text);
}
.formWrap__policy__agree label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.formWrap__policy__agree input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--accent-2);
  cursor: pointer;
}

.formWrap__botton {
  text-align: center;
  margin: 8px auto 0;
}
.formWrap__botton__submit {
  display: inline-block;
  min-width: 280px;
  padding: 18px 36px;
  background: linear-gradient(180deg, #ffa61a 0%, #eb6b0f 100%);
  color: #ffffff;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.04em;
  border: 0;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(235, 107, 15, 0.35);
  transition: transform 0.12s ease, filter 0.12s ease, box-shadow 0.12s ease;
}
.formWrap__botton__submit:hover {
  filter: brightness(1.06);
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 10px 24px rgba(235, 107, 15, 0.45);
}
.formWrap__botton__submit:active {
  transform: translateY(0) scale(0.99);
  filter: brightness(0.97);
}

@media (min-width: 768px) {
  .formWrap__bg { padding: 72px 24px 88px; }
  #formWrap h2 { font-size: 36px; padding-bottom: 18px; }
  #formWrap h2::after { width: 72px; height: 4px; }
  #formWrap > p { font-size: 14px; margin-bottom: 40px; }
  .formTable tr { margin-bottom: 22px; }
  .formTable th { font-size: 15px; padding-bottom: 10px; }
  .formTable input,
  .formTable select,
  .formTable textarea { padding: 14px 16px; font-size: 16px; }
  .formWrap__policy { height: 220px; padding: 22px 24px; font-size: 13px; }
  .formWrap__botton__submit { min-width: 360px; padding: 22px 48px; font-size: 19px; }
}

/* ===========================
   Thanks ページ
   =========================== */
.sec-thanks {
  min-height: 60vh;
  padding: 80px 16px 100px;
  background-color: var(--bg-mid);
  display: flex;
  justify-content: center;
  align-items: center;
  /* 親 .sec の font-size:0 / line-height:0 をリセット */
  font-size: 14px;
  line-height: 1.7;
}
.thanks {
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  color: var(--text);
  font-size: 14px;
  line-height: 1.7;
}
.thanks__icon {
  width: 88px;
  height: 88px;
  margin: 0 auto 28px;
  border-radius: 50%;
  background: var(--accent-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 44px;
  font-weight: 900;
  color: #0a231b;
  box-shadow: 0 8px 24px rgba(255, 217, 26, 0.25);
}
.thanks__title {
  font-size: 26px;
  font-weight: 800;
  line-height: 1.5;
  margin: 0 0 20px;
  letter-spacing: 0.02em;
}
.thanks__title .accent { color: var(--accent-2); }
.thanks__text {
  font-size: 14px;
  line-height: 1.9;
  color: var(--text-muted);
  margin: 0 0 36px;
}
.thanks__contact {
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 217, 26, 0.25);
  border-radius: 12px;
  padding: 22px 24px;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.thanks__contact__label {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.thanks__contact__tel {
  display: inline-block;
  font-size: 28px;
  font-weight: 800;
  color: var(--accent-2);
  letter-spacing: 0.02em;
  text-decoration: none;
}
.thanks__contact__sub {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
}
.thanks__back {
  display: inline-block;
  padding: 14px 36px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  border: 1px solid rgba(255, 217, 26, 0.4);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.15s ease, transform 0.12s ease;
}
.thanks__back:hover {
  background: rgba(255, 217, 26, 0.12);
  transform: translateY(-2px);
}

@media (min-width: 768px) {
  .sec-thanks { padding: 120px 24px 140px; }
  .thanks__icon { width: 110px; height: 110px; font-size: 54px; margin-bottom: 36px; }
  .thanks__title { font-size: 36px; margin-bottom: 24px; }
  .thanks__text { font-size: 16px; margin-bottom: 44px; }
  .thanks__contact { padding: 28px 32px; }
  .thanks__contact__tel { font-size: 36px; }
  .thanks__back { padding: 16px 44px; font-size: 15px; }
}

/* ===========================
   確認画面（mail.php）
   =========================== */
.formWrap__bg + .formWrap__bg { padding-top: 0; }

#formWrap > h2 + p,
#formWrap > p {
  font-size: 13px;
  color: var(--text-muted);
}

/* 確認テーブル：値の表示 */
.formTable--confirm tr {
  margin-bottom: 14px;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 217, 26, 0.15);
  border-radius: 10px;
  padding: 14px 18px;
  display: block;
}
.formTable--confirm th {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-2);
  letter-spacing: 0.04em;
  padding: 0 0 6px;
  text-align: left;
}
.formTable--confirm td {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.7;
  word-break: break-all;
  padding: 0;
}

/* 確認画面ボタン群（縦並び：戻る/送信） */
.formWrap__botton--confirm {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  margin-top: 28px;
}
.formWrap__botton--confirm .formWrap__botton__submit,
.formWrap__botton--confirm .formWrap__back {
  width: 100%;
  max-width: 360px;
}

/* 戻るボタン（サブ） */
.formWrap__back {
  display: inline-block;
  padding: 16px 36px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  letter-spacing: 0.02em;
  transition: background 0.12s ease, transform 0.12s ease, border-color 0.12s ease;
  -webkit-appearance: none;
  appearance: none;
}
.formWrap__back:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}
.formWrap__back:active {
  transform: translateY(0);
}

/* エラー表示 */
.form__error {
  background: rgba(255, 100, 100, 0.06);
  border: 1px solid rgba(255, 120, 120, 0.35);
  border-radius: 12px;
  padding: 22px 24px;
  margin: 0 auto;
}
.form__error__title {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
  color: #ffb4b4;
  text-align: center;
}
.form__error__sub {
  margin: 0 0 16px;
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
}
.form__error__list .error_messe,
.error_messe {
  margin: 8px 0;
  padding: 10px 14px;
  background: rgba(255, 80, 80, 0.12);
  border-left: 3px solid #ff7878;
  border-radius: 4px;
  color: #ffcccc;
  font-size: 13px;
  font-weight: 600;
}
.form__error .formWrap__botton {
  margin-top: 20px;
  text-align: center;
}

@media (min-width: 768px) {
  .formTable--confirm tr {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 18px;
    align-items: baseline;
    padding: 18px 24px;
  }
  .formTable--confirm th { padding: 0; font-size: 13px; }
  .formTable--confirm td { font-size: 16px; }

  .formWrap__botton--confirm {
    flex-direction: row-reverse;
    justify-content: center;
    gap: 20px;
  }
  .formWrap__botton--confirm .formWrap__botton__submit,
  .formWrap__botton--confirm .formWrap__back {
    width: auto;
    min-width: 220px;
  }
  .form__error__title { font-size: 20px; }
  .form__error__sub { font-size: 14px; }
}

/* ===========================
   SP用 下部追従CTAバー
   =========================== */
.floating-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  display: flex;
  gap: 8px;
  padding: 0 4% 1%;
/*  background: linear-gradient(180deg, rgba(10, 35, 27, 0.94) 0%, rgba(1, 19, 10, 0.98) 100%);*/
/*  backdrop-filter: blur(4px);*/
  -webkit-backdrop-filter: blur(4px);
/*  border-top: 1px solid rgba(255, 217, 26, 0.35);*/
/*  box-shadow: 0 -6px 18px rgba(0, 0, 0, 0.4);*/
}

.floating-cta__btn {
  display: block;
  width: 100%;
  position: relative;
  border-radius: 12px;
  /* 光沢スイープを内側でクリップするため overflow: hidden */
  overflow: hidden;
  text-decoration: none;
  transition: filter 0.12s ease, transform 0.12s ease;
  /* 呼吸するような脈動 */
  animation: floatTelBreathe 2.2s ease-in-out infinite;
  transform-origin: center;
  will-change: transform;
  -webkit-tap-highlight-color: transparent;
}
.floating-cta__btn img {
  display: block;
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  transform-origin: center;
  /* 時々プルッと弾むタップ誘導（脈動と干渉しないよう内側で回転） */
  animation: floatTelWiggle 4.5s ease-in-out infinite;
}
/* 光沢スイープ（数秒ごとに光の筋が横切る） */
.floating-cta__btn::before {
  content: "";
  position: absolute;
  top: -10%;
  left: -75%;
  width: 50%;
  height: 120%;
  background: linear-gradient(120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.45) 50%,
    rgba(255, 255, 255, 0) 100%);
  transform: skewX(-20deg);
  z-index: 2;
  animation: floatTelShine 4.5s ease-in-out infinite;
  pointer-events: none;
}
/* 光の波紋（外側に広がるブランドカラーのリング） */
.floating-cta__btn::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  z-index: 0;
  animation: floatTelGlow 2.2s ease-out infinite;
  pointer-events: none;
}

.floating-cta__btn:hover,
.floating-cta__btn.is-hover {
  filter: brightness(1.06);
  animation-play-state: paused;
}
.floating-cta__btn:hover img,
.floating-cta__btn.is-hover img {
  animation-play-state: paused;
}
.floating-cta__btn:active,
.floating-cta__btn.is-active {
  animation: none;
  transform: scale(0.96);
  filter: brightness(0.97);
}
.floating-cta__btn:active img,
.floating-cta__btn.is-active img {
  animation: none;
}

@keyframes floatTelBreathe {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.045); }
}
@keyframes floatTelGlow {
  0%   { box-shadow: 0 0 0 0 rgba(255, 166, 26, 0.55); }
  70%  { box-shadow: 0 0 0 14px rgba(255, 166, 26, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 166, 26, 0); }
}
@keyframes floatTelShine {
  0%, 60%  { left: -75%; }
  85%, 100%{ left: 130%; }
}
@keyframes floatTelWiggle {
  0%, 82%, 100% { transform: rotate(0deg); }
  86% { transform: rotate(-2deg); }
  90% { transform: rotate(2deg); }
  94% { transform: rotate(-1.5deg); }
  98% { transform: rotate(0deg); }
}

/* アニメーションを控えたいユーザーへの配慮 */
@media (prefers-reduced-motion: reduce) {
  .floating-cta__btn,
  .floating-cta__btn img,
  .floating-cta__btn::before,
  .floating-cta__btn::after {
    animation: none !important;
  }
}

/* SP のみ表示・本文末尾の隠れ防止用 padding（フローティングCTA分） */
@media (max-width: 767.98px) {
  body { padding-bottom: 84px; }
  .site-footer { padding: 24px 16px; font-size: 11px; }
  .site-footer__brand { font-size: 13px; }
  .site-footer__copy { font-size: 10px; }
}

@media (min-width: 768px) {
  .floating-cta { display: none !important; }
}

/* フォーム到達で非表示（スライドダウン＋フェード） */
.floating-cta {
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s ease;
}
.floating-cta.is-hidden {
  transform: translateY(120%) !important;
  opacity: 0 !important;
  pointer-events: none !important;
}