/* =============================================
   RESET  (Modern CSS Reset 2026)
   ============================================= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:where(html) {
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
  tab-size: 4;
}

:where(body) {
  min-height: 100dvh;
  line-height: 1.5;
}

:where(h1, h2, h3, h4, h5, h6) {
  text-wrap: balance;
}

:where(p, li, figcaption) {
  text-wrap: pretty;
  max-width: 75ch;
}

:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block;
  max-width: 100%;
}

img {
  width: 100%;
  height: auto;
}

:where(input, button, textarea, select) {
  font: inherit;
}

:where(button) {
  cursor: pointer;
  border: none;
  background: none;
}

:where(a) {
  text-decoration: none;
  color: inherit;
}

:where(ul, ol) {
  list-style: none;
}

:where(table) {
  border-collapse: collapse;
}

:where(:focus-visible) {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* スクリーンリーダー専用（視覚的に非表示・クローラーには読まれる） */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

:root {
  --red:        #C41E1E;
  --red-dark:   #9E1010;
  --blue:       #0057c8;
  --blue-dark:  #003a99;
  --blue-light: #e6f0ff;
  --yellow:     #FFC107;
  --black:      #1A1A1A;
  --white:      #fff;
  --font:       'Noto Sans JP', sans-serif;
  --max:        480px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  font-weight: 700;
  color: var(--black);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  min-height: 100dvh;

  /* 水っぽい固定背景 */
  background-color: #0a3d8f;
  background-image:
    radial-gradient(ellipse at 20% 30%,  rgba(100,200,255,.45) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 10%,  rgba(30,120,255,.35)  0%, transparent 50%),
    radial-gradient(ellipse at 60% 75%,  rgba(0,80,200,.5)     0%, transparent 55%),
    radial-gradient(ellipse at 10% 85%,  rgba(80,180,255,.3)   0%, transparent 45%),
    linear-gradient(175deg, #1a6fd8 0%, #0a3070 50%, #071a50 100%);
  background-attachment: fixed;
  background-size: cover;
}


/* =============================================
   LAYOUT WRAPPER  （480px センター配置）
   ============================================= */
header,
main,
footer {
  background: #fff;
  width: 100%;
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

/* =============================================
   HEADER
   ============================================= */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 3px solid var(--blue);
  box-shadow: 0 2px 12px rgba(0,0,0,.15);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 16px;
}

/* ロゴ */
.header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.header__logo-img {
  display: block;
  height: 44px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}

/* 電話番号 */
.header__tel {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--red);
  border-radius: 6px;
  padding: 6px 18px;
  gap: 1px;
  line-height: 1.2;
  box-shadow: 0 3px 10px rgba(196,30,30,.4);
  transition: background 120ms;
}

.header__tel:hover {
  background: var(--red-dark);
}

.header__tel-free {
  font-size: .58rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,.85);
}

.header__tel-num {
  font-size: 1.3rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.05em;
  white-space: nowrap;
}

.header__tel-time {
  font-size: .55rem;
  font-weight: 700;
  color: rgba(255,255,255,.75);
  letter-spacing: 0.04em;
  white-space: nowrap;
}

/* =============================================
   MAIN
   ============================================= */
main {
  /* 中身が空でもスペースが見える */
  min-height: 200px;
}


/* =============================================
   CTA  — water.quick-home.jp 準拠
   ============================================= */

/* 外枠セクション */
.cta {
  padding-block: 10px;
  position: relative;
  z-index: 3;
}

/* 内側パディング */
.l-inner {
  padding-inline: 10px;
}

/* 白カードボックス */
.p-top-cta__box {
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 6px 32px rgba(0,0,0,.22);
}

/* 待機中バッジ */
.p-top-cta__status {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--blue-dark);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .1em;
  padding: 8px 16px;
}

.p-top-cta__status-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
  flex-shrink: 0;
  animation: blink 1.2s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: .2; }
}

/* リード文 */
.p-top-cta__lead {
  padding: 18px 16px 0;
  font-size: clamp(25px, 6vw, 35px);
  font-weight: 900;
  line-height: 0.8;
  text-align: center;
  letter-spacing: .04em;
  margin-bottom: 14px;
  text-shadow: 0 1px 0 rgba(0,0,0,.06);
}

.p-top-cta__container-sp {
  padding: 0 16px 18px;
}

/* 「最短30分」青グラデ＋ドット下線 */
.stBlue {
  font-size: 1.24em;
  line-height: 1.71;
  background: linear-gradient(186deg, #7dbfee 5.31%, #0f8fea 63.58%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  padding-right: 2px;
  position: relative;
}

.stBlue::before {
  content: "";
  width: 100%;
  height: 10px;
  position: absolute;
  top: 0;
  left: 0;
  background-image: radial-gradient(circle, #f46600 0.08em, transparent 0);
  background-position: left .05em top;
  background-repeat: repeat-x;
  background-size: 1.12em .2em;
}

/* 「スグに」オレンジ */
.stOrange {
  color: #f46600;
}

.u-inline-block {
  display: inline-block;
}

/* SP コンテナ */
.p-top-cta__container-sp {
  display: block;
}

/* 小見出し */
.p-top-cta__text {
  text-align: center;
  color: #333;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .1em;
  margin-bottom: 10px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.p-top-cta__text::before,
.p-top-cta__text::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #ddd;
}

/* 2×2 特徴グリッド */
.p-top-cta__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
  margin-bottom: 14px;
}

.p-top-cta__feature {
  display: flex;
  align-items: center;
  gap: 5px;
  background: var(--blue-light);
  border: 1px solid #ccddf8;
  border-left: 3px solid var(--blue);
  border-radius: 0 6px 6px 0;
  padding: 10px 5px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: .02em;
  color: #1a1a1a;
  box-shadow: 0 2px 6px rgba(0,0,0,.06);
}

.p-top-cta__feature strong {
  color: #E82020;
  font-weight: 900;
}

/* チェックアイコン */
.p-top-cta__feature-check {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background: var(--blue);
  border-radius: 50%;
  position: relative;
}

.p-top-cta__feature-check::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 6px;
  border-left: 2.5px solid #fff;
  border-bottom: 2.5px solid #fff;
  transform: translate(-50%, -65%) rotate(-45deg);
}

/* 「24時間・年中無休」バー */
.p-top-cta__mc {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(90deg, #ff8c00 0%, #ffb700 100%);
  border-radius: 5px;
  color: #fff;
  font-weight: 900;
  line-height: 1.4;
  text-align: center;
  margin-bottom: 12px;
  padding: 8px 12px;
  font-size: 13px;
  letter-spacing: .08em;
  text-shadow: 0 1px 2px rgba(0,0,0,.2);
}

.p-top-cta__mc-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  flex-shrink: 0;
  animation: blink 1.2s ease-in-out infinite;
}

/* 電話ボタン共通 */
.c-button {
  width: 100%;
  margin-inline: auto;
  text-align: center;
}

.c-button__link {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: 100%;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: .05em;
  border-radius: 10px;
  background: #0f8fea;
  border: 1px solid #005fa4;
  padding: 9px 16px;
  position: relative;
  transition: opacity .3s ease, transform .3s ease;
  overflow: hidden;
}

/* ボタン上部光沢 */
.c-button__link::before {
  content: "";
  width: 100%;
  height: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,.39) 0%, rgba(255,255,255,0) 100%);
  filter: blur(9px);
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 10px 10px 0 0;
  pointer-events: none;
}

/* ボタン下部影 */
.c-button__link::after {
  content: "";
  width: 100%;
  height: 18px;
  background: linear-gradient(180deg, rgba(0,0,0,.2) 0%, rgba(0,0,0,0) 100%);
  position: absolute;
  bottom: 0;
  left: 0;
  border-radius: 0 0 10px 10px;
  filter: blur(9px);
  pointer-events: none;
}

@media (any-hover: hover) {
  .c-button__link:hover {
    opacity: .85;
    transform: translate(2px, 2px);
  }
}

/* 電話ボタン（赤）*/
.c-button--tel__link {
  flex-direction: column;
  gap: 2px;
  background: #E82020;
  border: 1px solid #9E1010;
  padding: 14px 16px;
  box-shadow: 0 4px 16px rgba(232,32,32,.45);
}

.c-button--tel__link::before { height: 24px; }
.c-button--tel__link::after  { height: 26px; }

.c-button--tel__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.15;
}

.c-button--tel__label {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .06em;
  opacity: .9;
  text-align: center;
}

.c-button--tel__num {
  font-size: 30px;
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1.1;
  text-align: center;
}

/* LINEボタン（緑）*/
.c-button--line__link {
  gap: 10px;
  background: #06C755;
  border: 1px solid #04A148;
  padding: 13px 16px;
  font-size: 17px;
  font-weight: 900;
  letter-spacing: .04em;
  box-shadow: 0 4px 16px rgba(6,199,85,.4);
}

.c-button--line__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
}

.c-button--line__icon svg {
  width: 100%;
  height: 100%;
}

.p-top-cta__lineBtn {
  margin-bottom: 12px;
}

/* 電話ボタンはpulse */
.p-top-cta__telBtn {
  margin-bottom: 12px;
  animation: pulseEffect 1.5s ease-in-out infinite;
}

@keyframes pulseEffect {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.03); }
}

/* 支払い・補足テキスト */
.p-top-cta__payment {
  text-align: center;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #eee;
}

.p-top-cta__payment p {
  font-size: .68rem;
  font-weight: 700;
  color: #999;
  letter-spacing: .03em;
  max-width: none;
}

/* =============================================
   SECTION 共通
   ============================================= */
.section-inner {
  padding: 20px;
}

.section-head {
  text-align: center;
  margin-bottom: 24px;
  background: transparent;
}

.section-head__label {
  display: inline-block;
  background: var(--blue);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  padding: 3px 14px;
  border-radius: 2px;
  margin-bottom: 8px;
}

.section-head__title {
  font-size: clamp(18px, 5vw, 22px);
  font-weight: 900;
  line-height: 1.5;
  color: var(--black);
  letter-spacing: .04em;
}

/* =============================================
   AREA（対応エリア）
   ============================================= */
.area {
  background: #fff;
  border-top: 1px solid #e8eaf0;
}

.area__lead {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.8;
  color: #444;
  text-align: center;
  margin-bottom: 20px;
  max-width: none;
}

.area__lead strong {
  color: var(--blue);
  font-weight: 900;
}

.area__cols {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 16px;
}

.area__col {
  background: var(--blue-light);
  border-radius: 8px;
  border-left: 4px solid var(--blue);
  padding: 16px 14px;
}

.area__col-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.area__col-pref {
  font-size: 16px;
  font-weight: 900;
  color: var(--blue);
  letter-spacing: .06em;
}

.area__col-title::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #ccddf8;
}

.area__list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.area__list li {
  display: inline-flex;
  align-items: center;
  background: #fff;
  border: 1px solid #ccddf8;
  border-radius: 4px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 700;
  color: #333;
  line-height: 1.4;
}

.area__note {
  font-size: 11px;
  font-weight: 700;
  color: #888;
  text-align: center;
  letter-spacing: .04em;
  max-width: none;
}

/* =============================================
   VOICE（お客様の声）
   ============================================= */
.voice {
  background: var(--blue-light);
  border-top: 1px solid #ccddf8;
}

.voice__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.voice__card {
  background: #fff;
  border-radius: 8px;
  border-left: 4px solid var(--blue);
  padding: 16px;
  box-shadow: 0 2px 10px rgba(0,0,0,.07);
}

.voice__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 8px;
}

.voice__meta-badge {
  background: var(--blue);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  padding: 2px 10px;
  border-radius: 2px;
}

.voice__meta-type {
  font-size: 11px;
  font-weight: 700;
  color: #888;
  letter-spacing: .04em;
}

.voice__stars {
  color: #f5a623;
  font-size: 15px;
  letter-spacing: .1em;
  margin-bottom: 8px;
  max-width: none;
}

.voice__text {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.8;
  color: #444;
}

/* =============================================
   FAQ
   ============================================= */
.faq {
  background: #fff;
  border-top: 1px solid #e8eaf0;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid #e5e5e5;
}

.faq__item {
  border-bottom: 1px solid #e5e5e5;
}

.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 0;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
}

.faq__q-icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0;
}

.faq__q-text {
  flex: 1;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.55;
  color: var(--black);
  letter-spacing: .02em;
}

.faq__q-arrow {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  position: relative;
}

.faq__q-arrow::before,
.faq__q-arrow::after {
  content: "";
  position: absolute;
  background: #aaa;
  border-radius: 2px;
  transition: transform 250ms ease, opacity 250ms ease;
}

.faq__q-arrow::before {
  width: 12px;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq__q-arrow::after {
  width: 2px;
  height: 12px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq__q[aria-expanded="true"] .faq__q-arrow::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.faq__a {
  padding: 0 0 16px 38px;
}

.faq__a p {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.8;
  color: #555;
}

/* スティッキーCTAの高さ分フッターに余白 */
footer {
  padding-bottom: 80px;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  padding: 20px 16px;
  text-align: center;
  background: var(--blue);
}

.footer__address {
  font-style: normal;
  font-size: .72rem;
  font-weight: 700;
  color: rgba(255,255,255,.7);
  margin-bottom: 6px;
}

.footer__address a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer__copy {
  font-size: .7rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.04em;
}

/* =============================================
   STICKY BOTTOM CTA
   ============================================= */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  max-width: var(--max);
  margin-inline: auto;
  z-index: 200;
  padding: 10px 16px 14px;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(6px);
  border-top: 2px solid #e5e5e5;
  box-shadow: 0 -4px 20px rgba(0,0,0,.12);
  transform: translateY(100%);
  transition: transform 320ms cubic-bezier(.4,0,.2,1);
}

.sticky-cta.is-visible {
  transform: translateY(0);
}

.sticky-cta__btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  width: 100%;
  background: linear-gradient(175deg, #E82020 0%, #AA0E0E 100%);
  color: #fff;
  border-radius: 8px;
  padding: 12px 16px;
  box-shadow: 0 4px 16px rgba(196,30,30,.45);
  transition: filter 120ms, transform 90ms;
}

.sticky-cta__btn:active {
  filter: brightness(.92);
  transform: scale(.985);
}

.sticky-cta__label {
  font-size: 11px;
  font-weight: 900;
  opacity: .88;
  letter-spacing: .06em;
  text-align: center;
}

.sticky-cta__num {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.1;
  text-align: center;
}
