/* =========================================================
   RESET / NORMALIZE
   ========================================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img,
picture,
svg,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

/* Hero images must NOT be constrained by global reset */
.hero-photo-girl,
.hero-campaign-starburst-img,
.hero-review-badge,
.hero-stat-img {
  max-width: none;
  height: auto;
}

ul,
ol {
  list-style: none;
}

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

button,
input,
textarea,
select {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
}

button {
  cursor: pointer;
}

table {
  border-collapse: collapse;
  width: 100%;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: inherit;
  font-size: inherit;
}

.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;
}
.hidden{
  display: none;
}

/* =========================================================
   CSS VARIABLES
   ========================================================= */
:root {
  /* Colors */
  --color-primary: #0068b7;
  --color-primary-dark: #004c86;
  --color-secondary: #ff6b00;
  --color-accent: #e8391c;
  --color-text: #222222;
  --color-text-muted: #666666;
  --color-bg: #ffffff;
  --color-bg-alt: #f5f8fa;
  --color-border: #dddddd;
  --color-white: #ffffff;

  /* Typography */
  --font-family-base: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", sans-serif;
  --font-size-base: 16px;
  --font-size-sm: 0.875rem;
  --font-size-md: 1rem;
  --font-size-lg: 1.25rem;
  --font-size-xl: 1.5rem;
  --font-size-2xl: 2rem;
  --font-size-3xl: 2.5rem;
  --line-height-base: 1.6;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;

  /* Layout */
  --container-max-width: 1200px;
  --container-padding: 1rem;
  --sticky-cta-height: 64px;
  --sticky-header-height: 92px;

  /* Effects */
  --border-radius: 8px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
  --transition-base: 0.2s ease-in-out;

  /* Hero (KANTO水道サービス brand accents) */
  --hero-bg: #050505;
  --hero-card-bg: #ffffff;
  --hero-blue: #0068b7;
  --hero-blue-dark: #004aad;
  --hero-blue-pale: #d6ecfb;
  --hero-yellow: #ffd400;
  --hero-yellow-dark: #f5a800;
  --hero-red: #e8391c;
}


/* =========================================================
   BASE
   ========================================================= */
/* =========================================================
   BASE & FULL-WIDTH SCREEN LAYOUT
   ========================================================= */
body {
  font-family: var(--font-family-base);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  color: var(--color-text);
  background-color: #ffffff;
  margin: 0;
  padding: 0;
  padding-top: var(--sticky-header-height);
  width: 100%;
  overflow-x: hidden;
}

/* Standard inner container utility */
.container {
  width: 100%;
  max-width: 1350px;
  margin-inline: auto;
  padding-inline: var(--container-padding);
}

.section {
  width: 100%;
  padding-block: var(--space-2xl);
}

.section:nth-of-type(even) {
  background-color: var(--color-bg-alt);
}


/* =========================================================
   STICKY NAVIGATION HEADER (TOP STICKY NAVBAR)
   ========================================================= */
.sticky-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background-color: #ffffff;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.12);
  z-index: 9999;
  border-bottom: 1px solid #e2e8f0;
}

.sticky-nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  padding: 12px 28px;
  gap: 24px;
}

/* --- Left: Logo & Brand --- */
.sticky-nav-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: inherit;
  flex-shrink: 0;
}

.sticky-brand-logo {
  display: flex;
  align-items: center;
}

.kss-logo-img {
  height: 68px;
  width: auto;
  display: block;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.sticky-brand-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.15;
}

.sticky-brand-name {
  font-size: 1.65rem;
  font-weight: 900;
  color: #1e293b;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.sticky-brand-sub {
  font-size: 0.88rem;
  font-weight: 700;
  color: #005BAC;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

/* --- Right Group: Phone Block & LINE Button --- */
.sticky-nav-right {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-shrink: 0;
}

.sticky-phone-block {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 4px;
  flex-shrink: 0;
}

.sticky-phone-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: transform 0.15s ease;
}

.sticky-phone-btn:hover {
  transform: scale(1.02);
}

.sticky-freedial-icon {
  width: 42px;
  height: 26px;
  flex-shrink: 0;
}

.sticky-phone-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: #005BAC;
  font-family: Arial, "Helvetica Neue", sans-serif;
  letter-spacing: -0.03em;
  line-height: 1;
  white-space: nowrap;
}

.sticky-payment-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.sticky-payment-img {
  height: 38px;
  width: auto;
  display: block;
  object-fit: contain;
  border-radius: 6px;
}

/* --- LINE Button --- */
.sticky-line-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  text-decoration: none;
  border-radius: 16px;
  overflow: hidden;
  background-color: #06c755;
  box-shadow: 0 4px 12px rgba(6, 199, 85, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  flex-shrink: 0;
  box-sizing: border-box;
}

.sticky-line-btn:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 6px 16px rgba(6, 199, 85, 0.45);
}

.sticky-line-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  border-radius: 0;
  display: block;
}


/* =========================================================
   HERO — PC + SP Canva layouts (sizes / positions / gaps)
   PC ref denser left stack + open water area on right-center
   SP ref: icons on top, dense overlaps, nearly square card
   ========================================================= */
.hero-section {
  position: relative;
  width: 100%;
  max-width: 100%;
  background-color: #ffffff;
  padding: 0;
  margin: 0;
  overflow: hidden;
}

.hero-card {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-height: min(880px, 62vw);
  margin-inline: auto;
  background: linear-gradient(180deg, #ffffff 0%, #f5fbff 28%, #e6f4ff 100%);
  overflow: hidden;
}

.hero-bg-water {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0.9;
  z-index: 0;
  pointer-events: none;
}

.hero-symptom-icons {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  justify-items: stretch;
  gap: 12px;
  padding: clamp(12px, 1.4vw, 24px) clamp(10px, 2vw, 36px) 0;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.hero-symptom-slot {
  width: 100%;
  aspect-ratio: 1 / 1;
  display: block;
  overflow: hidden;
  background-color: #ffffff;
}

.hero-symptom-icon {
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  object-position: center center;
  display: block;
  margin: 0;
  padding: 0;
  transform: none !important;
  background-color: #ffffff;
  filter: drop-shadow(0 5px 12px rgba(0, 0, 0, 0.15));
}
.hero-symptom-slot{
  border-bottom-right-radius:50% !important;
  border-bottom-left-radius:50% !important;
}
/* PC: 376px → 371px (−5px) */
@media (min-width: 1025px) {
  .hero-symptom-icons {
    grid-template-columns: repeat(4, 371px);
    justify-content: center;
    justify-items: center;
    gap: 12px;
    padding: 20px 24px 0;
    max-width: 100%;
    margin-inline: auto;
  }

  .hero-symptom-slot {
    width: 371px !important;
    height: 371px !important;
    max-width: 371px !important;
    aspect-ratio: 1 / 1;
  }

  .hero-symptom-icon {
    width: 371px !important;
    height: 371px !important;
    max-width: 371px !important;
    max-height: 371px !important;
  }
}

.hero-body {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: stretch;
  min-height: min(720px, 52vw);
  width: 100%;
  max-width: 100%;
  padding: clamp(12px, 1.2vw, 24px) clamp(28px, 3.2vw, 64px) clamp(28px, 2.5vw, 48px);
  box-sizing: border-box;
}

.hero-left {
  position: relative;
  z-index: 3;
  flex: 0 0 54%;
  max-width: 54%;
  width: 54%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  align-self: stretch;
  min-height: 100%;
  padding-top: 12px;
  box-sizing: border-box;
}

/* Tag — soft sky blue pill */
.hero-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #8ecaf9;
  color: #fff;
  font-family: "M PLUS Rounded 1c", "Noto Sans JP", sans-serif;
  font-weight: 800;
  font-size: clamp(1.35rem, 1.4vw, 2.1rem);
  padding: 0.52em 1.55em 0.56em;
  border-radius: 999px;
  border: none;
  box-shadow: 0 3px 10px rgba(80, 160, 220, 0.25);
  margin-bottom: clamp(22px, 2.2vw, 40px);
  letter-spacing: 0.08em;
  line-height: 1.15;
  white-space: nowrap;
}

.hero-headline {
  display: grid;
  grid-template-columns: auto auto auto;
  grid-template-rows: auto auto;
  align-items: center;
  justify-items: start;
  column-gap: 0.28em;
  row-gap: 0.14em;
  margin: 0 0 clamp(8px, 1vw, 16px);
  font-family: "M PLUS Rounded 1c", "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 1;
  width: max-content;
  max-width: 100%;
}

/* Feature pills — nested in stat cluster, centered above bubbles */
.hero-feature-bars {
  --hero-bar-fs: clamp(1.05rem, 0.55rem + 1.85vw, 1.95rem);
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  gap: clamp(6px, 0.6vw + 2px, 14px);
  width: 100%;
  max-width: 100%;
  flex-shrink: 0;
  box-sizing: border-box;
  flex-shrink: 0;
  position: relative;
  z-index: 5;
}

.hero-feature-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 0;
  padding:
    clamp(0.32em, 0.2em + 0.4vw, 0.48em)
    clamp(1em, 0.65em + 1.2vw, 1.55em);
  box-sizing: border-box;
  background: #ffffff;
  color: #e31c23;
  border: clamp(1.5px, 0.18vw + 1px, 3px) solid #e31c23;
  border-radius: 999px;
  font-family: "Noto Sans JP", "Hiragino Sans", sans-serif;
  font-size: var(--hero-bar-fs);
  font-weight: 800;
  letter-spacing: 0.03em;
  line-height: 1.25;
  white-space: nowrap;
  text-align: center;
  box-shadow: 0 2px 8px rgba(200, 30, 40, 0.12);
}

/* PC: full-width pills, 50px type */
@media (min-width: 1025px) {
  .hero-feature-bars {
    --hero-bar-fs: 50px;
    width: 100%;
    gap: 18px;
    margin-top: 12px;
    margin-bottom: 8px;
  }

  .hero-feature-bar {
    padding: 0.42em 0.9em;
    border-width: 3px;
    letter-spacing: 0.04em;
    font-size: 50px;
    box-shadow: 0 4px 14px rgba(200, 30, 40, 0.16);
  }

  .hero-stat-bubbles-row {
    gap: 24px;
    justify-content: flex-start;
    padding-top: 16px;
    width: 100%;
  }
}

.hero-mizu {
  grid-column: 1;
  grid-row: 1 / 3;
  position: relative;
  display: inline-grid;
  place-items: center;
  align-self: center;
  font-size: clamp(8.5rem, 9.5vw, 14.5rem);
  font-weight: 700;
  line-height: 0.84;
  transform: rotate(-8deg);
  transform-origin: 50% 55%;
  margin-right: 0.16em;
  z-index: 2;
  filter: drop-shadow(2px 3px 4px rgba(0, 70, 150, 0.18));
}

.hero-mizu-stroke,
.hero-mizu-fill {
  grid-area: 1 / 1;
  font: inherit;
  line-height: inherit;
  letter-spacing: -0.04em;
}

.hero-mizu-stroke {
  color: transparent;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 0.065em #fff;
  z-index: 0;
}

.hero-mizu-fill {
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, #7aeeff 0%, #38b6ff 42%, #1a90e0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.hero-mawari {
  grid-column: 2 / 4;
  grid-row: 1;
  align-self: end;
  font-size: clamp(3.2rem, 3.4vw, 5.4rem);
  font-weight: 700;
  color: #38b6ff;
  letter-spacing: 0.06em;
  line-height: 1;
  padding-bottom: 0.12em;
  -webkit-text-stroke: 0.028em #fff;
  paint-order: stroke fill;
}

.hero-toraburu {
  grid-column: 2;
  grid-row: 2;
  align-self: start;
  font-size: clamp(3.4rem, 3.55vw, 5.6rem);
  font-weight: 700;
  color: #38b6ff;
  letter-spacing: 0.05em;
  line-height: 1;
  -webkit-text-stroke: 0.028em #fff;
  paint-order: stroke fill;
  white-space: nowrap;
}

.hero-sokujitsu {
  grid-column: 3;
  grid-row: 2;
  align-self: center;
  position: relative;
  display: inline-grid;
  place-items: center;
  font-size: clamp(4rem, 4.25vw, 6.6rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1;
  margin-left: 0.22em;
  transform: rotate(-5deg);
  transform-origin: left center;
  filter: drop-shadow(0 2px 3px rgba(0, 40, 100, 0.2));
  white-space: nowrap;
  z-index: 2;
}

.hero-sokujitsu-stroke,
.hero-sokujitsu-fill {
  grid-area: 1 / 1;
  font: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}

.hero-sokujitsu-stroke {
  color: transparent;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 0.085em #004aad;
  z-index: 0;
}

.hero-sokujitsu-fill {
  position: relative;
  z-index: 1;
  color: #ffeb5b;
  -webkit-text-fill-color: #ffeb5b;
}

/* Stat cluster: feature bars (middle) + bubble badges (bottom) */
.hero-stat-bubbles-row {
  position: relative;
  width: 100%;
  margin-top: auto;
  margin-left: 0;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: clamp(10px, 1.2vw, 20px);
  flex: 1 1 auto;
  min-height: 0;
  box-sizing: border-box;
}

/*
  Reference pair: equal circles, bottom-aligned, small clear gap.
  Assets (15.png / 5.png) have different transparent padding, so
  .hero-stat-5 gets a small optical translate to match circle bottoms.
*/
.hero-stat-bubbles-stage {
  --hero-stat-gap: clamp(8px, 1.1vw, 18px);
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: flex-end;
  justify-content: flex-start;
  gap: var(--hero-stat-gap);
  width: 100%;
  flex: 0 0 auto;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.hero-stat-img {
  max-width: none !important;
  flex: 1 1 0;
  width: 0 !important; /* equal share of stage */
  height: auto !important;
  min-width: 0;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center center;
  display: block;
  position: relative;
  left: auto;
  right: auto;
  top: auto;
  bottom: auto;
  margin: 0;
  padding: 0;
  transform: none;
  filter: drop-shadow(0 6px 14px rgba(0, 90, 170, 0.22));
  z-index: 2;
}

.hero-stat-15 {
  left: auto;
  bottom: auto;
  transform: none;
}

.hero-stat-5 {
  left: auto;
  bottom: auto;
  /* 5.png has ~4% more bottom padding than 15.png — nudge down to match */
  transform: translateY(4%);
}

/* PC: pull 5.png left toward 15.png */
@media (min-width: 769px) {
  .hero-stat-5 {
    left: min(26vw, -96px) !important;
  }
}
@media (min-width: 425px) {
  .hero-stat-5 {
    left: min(26vw, -33px) !important;
  }
}

.hero-right {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 50%;
  pointer-events: none;
  z-index: 1;
  overflow: visible;
}

.hero-photo-girl {
  display: block !important;
  position: absolute;
  right: 0;
  bottom: 0;
  width: auto !important;
  max-width: none !important;
  height: 112% !important;
  object-fit: contain;
  object-position: right bottom;
  z-index: 2;
  filter: drop-shadow(-8px 10px 22px rgba(0, 0, 0, 0.18));
}

.hero-campaign-starburst-img {
  display: block !important;
  position: absolute;
  top: 36%;
  right: clamp(24px, 4.5vw, 90px);
  width: clamp(180px, 14vw, 280px) !important;
  max-width: none !important;
  height: auto !important;
  z-index: 4;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.28));
  animation: none;
}

.hero-review-badge {
  display: block !important;
  position: absolute;
  bottom: 4%;
  right: 24%;
  width: clamp(240px, 18vw, 380px) !important;
  max-width: none !important;
  height: auto !important;
  z-index: 4;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.25));
}

/* Large / ultra-wide: keep full-bleed, continue vw scaling (no width lock) */
@media (min-width: 1440px) {
  .hero-section,
  .hero-card,
  .hero-body,
  .hero-symptom-icons {
    max-width: 100%;
    width: 100%;
  }

  .hero-body {
    min-height: clamp(760px, 48vw, 980px);
  }

  .hero-left {
    flex: 0 0 52%;
    max-width: 52%;
    width: 52%;
  }

  .hero-right {
    width: 52%;
  }
}

@media (min-width: 1680px) {
  .hero-left {
    flex: 0 0 50%;
    max-width: 50%;
    width: 50%;
  }
}

/* ========== TABLET (769–1024) ========== */
@media (max-width: 1024px) and (min-width: 769px) {
  .hero-card { min-height: 70vw; }
  .hero-symptom-icons { gap: 10px; padding: 12px 10px 0; }
  .hero-body { min-height: 52vw; padding: 8px 20px 24px; }
  .hero-left { flex: 0 0 52%; max-width: 52%; width: 52%; }
  .hero-tag { font-size: 1.15rem; margin-bottom: 14px; }
  .hero-headline { margin-bottom: 12px; column-gap: 0.14em; }
  .hero-feature-bars {
    --hero-bar-fs: clamp(1.05rem, 1.9vw, 1.35rem);
    width: 100%;
    max-width: 100%;
  }
  .hero-mizu { font-size: 7.2rem; margin-right: 0.08em; }
  .hero-mawari { font-size: 2.55rem; }
  .hero-toraburu { font-size: 2.7rem; }
  .hero-sokujitsu { font-size: 3.15rem; margin-left: 0.1em; }
  .hero-stat-bubbles-stage {
    --hero-stat-gap: clamp(8px, 1.1vw, 14px);
  }
  .hero-campaign-starburst-img { width: 16vw !important; right: 4vw; top: 34%; }
  .hero-review-badge { width: 22vw !important; right: 22%; }
}

/* ========== SP — shrink 50% OFF so it clears Google 4.8 badge ========== */
@media (max-width: 768px) {
  .hero-card {
    min-height: 100vw;
    max-height: none;
  }

  .hero-symptom-icons {
    gap: 8px;
    padding: 8px 6px 2px;
  }

  .hero-symptom-icon {
    width: 100% !important;
    height: 100% !important;
    transform: none !important;
  }

  .hero-body {
    min-height: 78vw;
    padding: 4px 10px 12px;
  }

  .hero-left {
    flex: 0 0 58%;
    max-width: 58%;
    width: 58%;
    padding-top: 2px;
  }

  .hero-tag {
    font-size: clamp(0.88rem, 3.6vw, 1.05rem);
    padding: 0.42em 1.05em 0.46em;
    margin-bottom: 10px;
    letter-spacing: 0.04em;
  }

  .hero-headline {
    column-gap: 0.1em;
    row-gap: 0.04em;
    margin-bottom: 8px;
  }

  .hero-feature-bars {
    --hero-bar-fs: clamp(0.8rem, 3.5vw, 1.02rem);
    width: 100%;
    max-width: 100%;
    margin-top: auto;
    margin-bottom: clamp(10px, 3vw, 18px);
    transform: translateY(12px);
  }

  .hero-mizu {
    font-size: clamp(3.6rem, 15.5vw, 5.2rem);
    margin-right: 0.04em;
    transform: rotate(-7deg);
  }

  .hero-mawari {
    font-size: clamp(1.3rem, 5.6vw, 1.75rem);
    padding-bottom: 0.04em;
  }

  .hero-toraburu {
    font-size: clamp(1.4rem, 6vw, 1.9rem);
  }

  .hero-sokujitsu {
    font-size: clamp(1.6rem, 6.8vw, 2.2rem);
    margin-left: 0.06em;
    transform: rotate(-4deg);
  }

  /* Fill leftover height; bars sit mid between headline and bubble badges */
  .hero-stat-bubbles-row {
    flex: 1 1 auto;
    gap: 0;
    justify-content: flex-start;
    min-height: 0;
  }

  .hero-stat-bubbles-stage {
    --hero-stat-gap: clamp(6px, 1.8vw, 12px);
    width: 100%;
    margin: 0;
    flex: 0 0 auto;
  }

  .hero-stat-5 {
    transform: translateY(4%);
  }

  .hero-right {
    width: 52%;
  }

  .hero-photo-girl {
    height: 92% !important;
    right: -6px;
    bottom: 0;
    object-position: right bottom;
  }

  /* SP badge cluster — keep 50% OFF fully on-screen */
  .hero-campaign-starburst-img {
    width: clamp(86px, 22.5vw, 116px) !important;
    top: auto;
    bottom: 30%;
    right: max(4px, 2vw);
    z-index: 5;
    animation: none;
  }

  .hero-review-badge {
    width: clamp(102px, 27vw, 140px) !important;
    bottom: 2%;
    right: 18%;
    z-index: 4;
  }
}

@media (max-width: 430px) {
  .hero-card { min-height: 108vw; }
  .hero-body { min-height: 84vw; padding: 2px 6px 10px; }
  .hero-left { flex: 0 0 60%; max-width: 60%; width: 60%; }
  .hero-tag { margin-bottom: 8px; }
  .hero-headline { margin-bottom: 6px; }
  .hero-feature-bars {
    --hero-bar-fs: clamp(0.76rem, 3.6vw, 0.92rem);
    margin-top: auto;
    margin-bottom: clamp(8px, 2.5vw, 14px);
    transform: translateY(10px);
  }
  .hero-mizu { font-size: 15vw; }
  .hero-mawari { font-size: 5.4vw; }
  .hero-toraburu { font-size: 5.8vw; }
  .hero-sokujitsu { font-size: 6.5vw; }
  .hero-stat-bubbles-stage {
    --hero-stat-gap: 6px;
  }
  .hero-campaign-starburst-img {
    width: clamp(80px, 22vw, 108px) !important;
    top: auto;
    bottom: 32%;
    right: max(4px, 2.5vw);
    z-index: 5;
  }
  .hero-review-badge {
    width: clamp(96px, 28vw, 128px) !important;
    bottom: 2%;
    right: 16%;
    z-index: 4;
  }
}

/* =========================================================
   SECOND SECTION: CAMPAIGN BANNER
   ========================================================= */
/* =========================================================
   SECOND SECTION: CAMPAIGN BANNER (100VW FULL VIEWPORT WIDTH)
   ========================================================= */
.campaign-section {
  --camp-orange: #ff7529;
  --camp-beige: #e5e2d6;
  --camp-navy: #0041a0;
  --camp-red: #f20028;
  width: 100%;
  padding: 40px 0 64px 0;
  margin: 0;
  background-color: #ffffff;
  overflow: hidden;
}

.campaign-container {
  width: 100%;
  max-width: 1120px;
  margin-inline: auto;
  padding-inline: 24px;
}

/* ─── Heading row: 50%OFF badge + ＼Web限定 キャンペーン実施中！／ ─── */
.campaign-head {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 6px;
}

.campaign-title {
  flex: 1;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.5em;
  margin: 0;
  font-size: 3.8rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1.2;
  white-space: nowrap;
}

/* the ＼ ／ strokes either side */
.campaign-title::before,
.campaign-title::after {
  content: "";
  width: 0.16em;
  height: 1.15em;
  background-color: var(--camp-navy);
  border-radius: 2px;
  flex-shrink: 0;
}
.campaign-title::before { transform: rotate(-20deg); margin-right: 0.35em; }
.campaign-title::after  { transform: rotate(20deg); margin-left: 0.35em; }

.campaign-title-web  { color: var(--camp-red); }
.campaign-title-camp { color: var(--camp-navy); }

/* 50% OFF tag — rounded red flag with a notched tail */
.campaign-badge {
  position: relative;
  flex-shrink: 0;
  /* tucks slightly past the container edge and down over the banner corner */
  margin: 0 10px -58px -270px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.1em;
  padding: 26px 40px 30px 40px;
  background-color: var(--camp-red);
  color: #ffffff;
  border-radius: 22px;
  transform: rotate(-8deg);
  line-height: 1;
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.18));
}

/* notched lightning tail dropping from the bottom-right of the tag */
.campaign-badge::after {
  content: "";
  position: absolute;
  right: 56px;
  bottom: -40px;
  width: 62px;
  height: 48px;
  background-color: var(--camp-red);
  clip-path: polygon(0 0, 100% 0, 46% 100%, 54% 44%, 14% 58%);
}

.campaign-badge-num {
  font-size: 6rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.campaign-badge-off {
  font-size: 2.2rem;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.campaign-badge-pct { font-size: 2.9rem; }

/* ─── Ornate beige price banner ─── */
.campaign-price {
  position: relative;
  width: 100%;
  background-color: var(--camp-beige);
  padding: 58px 56px;
  overflow: hidden;
}

/* corner ornaments — one asset, mirrored into all four corners */
.campaign-orn {
  position: absolute;
  width: 103px;
  height: 58px;
  background-image: url('../assets/images/campaign-ornament-corner.png');
  background-size: 100% 100%;
  pointer-events: none;
}
.campaign-orn-tr { top: 0; right: 0; }
.campaign-orn-tl { top: 0; left: 0; transform: scaleX(-1); }
.campaign-orn-br { bottom: 0; right: 0; transform: scaleY(-1); }
.campaign-orn-bl { bottom: 0; left: 0; transform: scale(-1, -1); }

/* centre flourishes, top and bottom */
.campaign-fl {
  position: absolute;
  left: 50%;
  width: 250px;
  height: 42px;
  background-image: url('../assets/images/campaign-ornament-flourish.png');
  background-size: 100% 100%;
  pointer-events: none;
}
.campaign-fl-top { top: 0; transform: translateX(-50%); }
.campaign-fl-bot { bottom: 0; transform: translateX(-50%) scaleY(-1); }

.campaign-price-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.campaign-price-old {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  flex-shrink: 0;
  white-space: nowrap;
  color: #494949;
  font-weight: 900;
  font-size: 3.2rem;
  line-height: 1.25;
  letter-spacing: 0.02em;
}

.campaign-price-old-value { text-decoration: line-through; }

.campaign-price-arrow {
  width: 104px;
  height: auto;
  flex-shrink: 0;
  display: block;
}

.campaign-price-new {
  display: flex;
  align-items: flex-start;
  color: var(--camp-red);
  font-weight: 900;
  line-height: 1;
}

.campaign-price-num {
  font-size: 9.2rem;
  letter-spacing: -0.01em;
  text-shadow:
    -3px -3px 0 #fff, 3px -3px 0 #fff, -3px 3px 0 #fff, 3px 3px 0 #fff,
    0 0 6px rgba(255, 255, 255, 0.9);
}

.campaign-price-unit {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 2px;
}

.campaign-price-tax { font-size: 3.2rem; letter-spacing: -0.06em; }
.campaign-price-yen { font-size: 6.2rem; margin-top: 4px; }

/* ─── Orange contact card ─── */
.campaign-card {
  position: relative;
  width: 100%;
  max-width: 940px;
  margin: 44px auto 0 auto;
  background-color: #ffffff;
  border: 9px solid var(--camp-orange);
  border-radius: 46px;
  padding: 0 26px 30px 26px;
  overflow: hidden;
}

/* orange header bar, flush to the card's top corners */
.campaign-card-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 -26px 0 -26px;
  padding: 16px 26px 18px 26px;
  background-color: var(--camp-orange);
  border-radius: 37px 37px 34px 34px;
  color: #ffffff;
}

.campaign-icon-phone {
  width: 78px;
  height: 78px;
  flex-shrink: 0;
  color: #ffffff;
}

.campaign-card-bar-text {
  display: flex;
  flex-direction: column;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: 0.01em;
}

.campaign-bar-line1 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 2.7rem;
}

.campaign-icon-truck {
  width: 52px;
  height: 33px;
  color: #ffffff;
}

.campaign-bar-line2 { font-size: 3.2rem; }
.campaign-bar-hl { color: #ffe600; }

/* operator photo, overlapping the bar on the right */
.campaign-operator {
  position: absolute;
  top: -10px;
  right: 4px;
  /* sized so her square-cropped base always runs under the phone CTA */
  width: 288px;
  height: auto;
  z-index: 2;
  pointer-events: none;
}

.campaign-assure {
  position: relative;
  z-index: 1;
  padding: 22px 0 20px 4px;
  color: var(--camp-navy);
  font-weight: 900;
  line-height: 1.3;
}

.campaign-assure-1 { font-size: 3rem; margin: 0; }

.campaign-assure-2 {
  font-size: 2.7rem;
  margin: 6px 0 0 22px;
}

/* soft yellow marker behind the second line */
.campaign-assure-2 span {
  background: linear-gradient(to top, #fff793 0 42%, transparent 42%);
  padding: 0 2px;
}

/* phone CTA pill */
.campaign-tel {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 20px;
  border-radius: 999px;
  background: linear-gradient(100deg, #ffe9a1 0%, #ffd257 34%, #ffa441 70%, #ff8330 100%);
  color: #ffffff;
}

.campaign-tel-icon {
  width: 62px;
  height: 62px;
  flex-shrink: 0;
  color: #ffffff;
}

.campaign-tel-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
}

.campaign-tel-num {
  font-size: 3.4rem;
  font-weight: 900;
  letter-spacing: 0.01em;
  line-height: 1.1;
}

.campaign-tel-sub {
  font-size: 1.55rem;
  font-weight: 900;
  letter-spacing: 0.01em;
}

.campaign-tel-go {
  flex-shrink: 0;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background-color: #ffffff;
  color: var(--camp-orange);
  display: flex;
  align-items: center;
  justify-content: center;
}

.campaign-tel-go svg { width: 32px; height: 32px; }

/* LINE / mail buttons */
.campaign-subs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 18px;
}

.campaign-sub {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 20px 12px;
  border-radius: 42px;
  color: #ffffff;
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.2;
}

.campaign-sub-line { background-color: #0fc258; }
.campaign-sub-mail { background-color: #30acfc; }

.campaign-sub-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

.campaign-sub-icon svg { width: 74px; height: 52px; }

/* white rounded LINE mark */
.campaign-line-mark {
  width: 74px;
  height: 74px;
  border-radius: 22px;
  background-color: #ffffff;
  color: #0fc258;
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.campaign-sub-text { text-align: left; }

/* ─── Campaign banner — TABLET step-down ─── */
@media (max-width: 1024px) {
  .campaign-title { font-size: 3rem; }
  .campaign-badge { margin: 0 6px -30px -28px; padding: 15px 22px 18px 22px; }
  .campaign-badge-num { font-size: 2.8rem; }
  .campaign-badge-off { font-size: 1.2rem; }
  .campaign-badge-pct { font-size: 1.5rem; }

  .campaign-price { padding: 44px 40px; }
  .campaign-orn { width: 78px; height: 44px; }
  .campaign-fl { width: 190px; height: 32px; }
  .campaign-price-old { font-size: 2rem; }
  .campaign-price-arrow { width: 72px; }
  .campaign-price-num { font-size: 6.4rem; }
  .campaign-price-tax { font-size: 1.7rem; }
  .campaign-price-yen { font-size: 3.4rem; }

  .campaign-icon-phone { width: 60px; height: 60px; }
  .campaign-bar-line1 { font-size: 2.1rem; }
  .campaign-bar-line2 { font-size: 2.5rem; }
  .campaign-operator { width: 210px; }
  .campaign-assure-1 { font-size: 2.4rem; }
  .campaign-assure-2 { font-size: 2.1rem; }
  .campaign-tel-num { font-size: 2.7rem; }
  .campaign-tel-sub { font-size: 1.3rem; }
  .campaign-sub { font-size: 2.4rem; }
  .campaign-sub-icon svg { width: 40px; height: 42px; }
  .campaign-line-mark { width: 60px; height: 60px; font-size: 1.1rem; }
}

/* ─── Campaign banner — MOBILE ─── */
@media (max-width: 768px) {
  .campaign-section { padding: 26px 0 40px 0; }
  .campaign-container { padding-inline: 50px; }

  .campaign-head { margin-bottom: 4px; }
  /* vw-based so the single line always fits, down to the narrowest phone */
  .campaign-title { font-size: clamp(1rem, 3vw, 1.55rem); gap: 0.3em; }
  .campaign-title::before { margin-right: 0.2em; }
  .campaign-title::after { margin-left: 0.2em; }

  .campaign-badge {
    margin: 0 4px -22px -43px;
    padding: 9px 13px 11px 13px;
    border-radius: 10px;
  }
  .campaign-badge::after { right: 12px; bottom: -10px; width: 20px; height: 15px; }
  .campaign-badge-num { font-size: 1.75rem; }
  .campaign-badge-off { font-size: 0.75rem; }
  .campaign-badge-pct { font-size: 0.95rem; }

  /* vw-driven so the whole price row stays on one line at any phone width */
  .campaign-price { padding: 24px 14px; }
  .campaign-orn { width: 52px; height: 29px; }
  .campaign-fl { width: 120px; height: 20px; }
  .campaign-price-inner { gap: 6px; }
  .campaign-price-old { font-size: 3.1vw; }
  .campaign-price-arrow { width: 9vw; }
  .campaign-price-num {
    font-size: 9.5vw;
    text-shadow: -2px -2px 0 #fff, 2px -2px 0 #fff, -2px 2px 0 #fff, 2px 2px 0 #fff;
  }
  .campaign-price-tax { font-size: 2.8vw; }
  .campaign-price-yen { font-size: 5vw; }

  .campaign-card {
    margin-top: 26px;
    border-width: 6px;
    border-radius: 28px;
    padding: 0 10px 5px 10px;
  }
  .campaign-card-bar {
    gap: 8px;
    margin: 0 -14px;
    padding: 10px 14px 12px 14px;
    border-radius: 22px 22px 20px 20px;
  }
  .campaign-icon-phone { width: 25px; height: 25px; }
  .campaign-bar-line1 { font-size: 1.02rem; gap: 5px; }
  .campaign-icon-truck { width: 25px; height: 16px; }
  .campaign-bar-line2 { font-size: 1.11rem; white-space: nowrap; }

  .campaign-operator { width: 112px; top: -6px; right: 2px; }

  .campaign-assure { padding: 12px 0 12px 2px; }
  .campaign-assure-1 { font-size: 1.1rem; }
  .campaign-assure-2 { font-size: 1.25rem; margin-left: 12px; }

  .campaign-tel { gap: 8px; padding: 8px 12px; }
  .campaign-tel-icon { width: 25px; height: 25px; }
  .campaign-tel-num { font-size: 5.2vw; }
  .campaign-tel-sub { font-size: 2.5vw; white-space: nowrap; }
  .campaign-tel-go { width: 32px; height: 32px; }
  .campaign-tel-go svg { width: 19px; height: 19px; }

  .campaign-subs { gap: 10px; margin-top: 10px; }
  .campaign-sub {
    gap: 9px;
    padding: 10px 6px;
    border-radius: 22px;
    font-size: 1.1rem;
  }
  .campaign-sub-icon svg { width: 25px; height: 24px; }
  .campaign-line-mark { width: 25px; height: 25px; border-radius: 10px; font-size: 0.52rem; }
}

/* =========================================================
   THIRD SECTION: TROUBLE SYMPTOMS (3RDSECTION.PNG)
   ========================================================= */
.trouble-symptoms-section {
  width: 100%;
  padding: 0;
  margin: 0;
  background-color: #5e5f61;
  overflow: hidden;
}

.trouble-symptoms-card {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  background-color: #5e5f61;
}

.trouble-symptoms-img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border: none;
  outline: none;
}

/* =========================================================
   5TH SECTION: PRICE GUARANTEE & TRANSPARENCY
   ========================================================= */
.price-guarantee-section {
  width: 100%;
  padding: 60px 30px;
  background-color: #dcf2ff;
}

.price-guarantee-card {
  max-width: 1280px;
  margin-inline: auto;
  background-color: #ffffff;
  border-radius: 36px;
  padding: 54px 44px 64px 44px;
  box-shadow: 0 10px 36px rgba(0, 80, 160, 0.1);
  text-align: center;
}

/* Headline */
.price-guarantee-headline {
  margin-bottom: 28px;
  color: #040960;
  font-weight: 900;
}

.price-headline-line1 {
  font-size: 2.2rem;
  font-weight: 900;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.price-headline-line2 {
  font-size: 3.2rem;
  font-weight: 900;
  letter-spacing: 0.01em;
}

/* Ribbon Banner */
.price-guarantee-ribbon {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, #32d6ec 0%, #1e85e5 55%, #0036a6 100%);
  padding: 16px 40px;
  margin-bottom: 36px;
  box-shadow: 0 5px 14px rgba(0, 60, 150, 0.25);
  border-radius: 8px;
}

.price-ribbon-text {
  font-size: 2.4rem;
  font-weight: 900;
  color: #ffffff;
  margin-right: 12px;
}

.price-ribbon-free {
  font-size: 3.2rem;
  font-weight: 900;
  color: #ff3b30;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.18);
}

/* 3 Overlapping Cost Circles */
.price-guarantee-circles {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 12px;
}

.price-circle {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #006ce6 0%, #004cb8 55%, #003796 100%);
  border: 5px solid #20c997;
  box-shadow: 0 8px 24px rgba(0, 60, 150, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  position: relative;
  z-index: 1;
}

.circle-left {
  z-index: 1;
}

.circle-center {
  z-index: 2;
  margin-left: -28px;
  margin-right: -28px;
}

.circle-right {
  z-index: 1;
}

/* Circle 1: 基本料金 3,300円〜 */
.circle-title {
  font-size: 1.8rem;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 4px;
}

.circle-price-wrap {
  display: flex;
  align-items: baseline;
  justify-content: center;
  line-height: 1;
}

.circle-num {
  font-size: 3.5rem;
  font-weight: 900;
  color: #ffe600;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
  letter-spacing: -0.02em;
}

.circle-unit {
  font-size: 1.6rem;
  font-weight: 900;
  color: #ffffff;
  margin-top: -2px;
  margin-left: 2px;
}

/* Circle 2 & 3: 作業料金 / 材料費 */
.circle-main-text {
  font-size: 2.5rem;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.02em;
}

/* Responsive Overrides for Mobile */
@media (max-width: 480px) {
  .price-guarantee-card {
    padding: 20px 10px 24px 10px;
    border-radius: 20px;
  }

  .price-headline-line1 {
    font-size: 1.1rem;
  }

  .price-headline-line2 {
    font-size: 1.45rem;
  }

  .price-ribbon-text {
    font-size: 1.15rem;
  }

  .price-ribbon-free {
    font-size: 1.45rem;
  }

  .price-circle {
    width: 105px;
    height: 105px;
    border-width: 3px;
  }

  .circle-center {
    margin-left: -12px;
    margin-right: -12px;
  }

  .circle-title {
    font-size: 0.9rem;
  }

  .circle-num {
    font-size: 1.55rem;
  }

  .circle-unit {
    font-size: 0.85rem;
  }

  .circle-main-text {
    font-size: 1.2rem;
  }
}

.symptoms-checklist {}

.pricing-table {}

/* =========================================================
   REASONS WHY US SECTION (選ばれる4つの理由 - FULL-BLEED CANVA LP VIEW)
   ========================================================= */
.reasons-section {
  width: 100%;
  padding: 0;
  margin: 0;
  background-color: #f5f7fa;
  overflow: hidden;
}

.reasons-container {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  text-align: center;
}

/* Header */
.reasons-header {
  padding: 56px 20px 48px 20px;
  background-color: #f5f7fa;
  margin: 0;
}

.reasons-sub-title {
  font-size: 3.8rem;
  font-weight: 900;
  color: #0050c8;
  letter-spacing: 0.05em;
  line-height: 1.2;
}

.reasons-main-title {
  font-size: 5.8rem;
  font-weight: 900;
  color: #111111;
  letter-spacing: 0.06em;
  margin: 8px 0 0 0;
  line-height: 1.15;
}

/* 4 Point Cards Stack (100% Full Bleed Edge-to-Edge) */
.reasons-cards-stack {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
}

.reason-card {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  background-color: #ffffff;
}

.reason-card-img {
  width: 100%;
  height: auto;
  display: block;
}

.reason-card-body {
  text-align: left;
  padding: 48px 56px 64px 56px;
}

.reason-card-label {
  display: block;
  font-size: 2.2rem;
  font-weight: 800;
  color: #0050c8;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}

.reason-card-title {
  font-size: 3.6rem;
  font-weight: 900;
  color: #0050c8;
  letter-spacing: 0.02em;
  line-height: 1.35;
  margin: 0 0 20px 0;
}

.reason-card-desc {
  font-size: 2.6rem;
  font-weight: 700;
  color: #111111;
  line-height: 1.55;
  margin: 0;
}

/* ─── Reasons why us — MOBILE optimization (desktop layout untouched) ─── */
@media (max-width: 768px) {
  .reasons-header {
    padding: 40px 20px 32px 20px;
  }

  .reasons-sub-title {
    font-size: 1.9rem;
  }

  .reasons-main-title {
    font-size: 2.9rem;
    margin-top: 6px;
  }

  .reason-card-body {
    padding: 28px 28px 36px 28px;
  }

  .reason-card-label {
    font-size: 1.3rem;
    margin-bottom: 10px;
  }

  .reason-card-title {
    font-size: 2rem;
    margin-bottom: 14px;
  }

  .reason-card-desc {
    font-size: 1.3rem;
    line-height: 1.75;
  }
}

@media (max-width: 480px) {
  .reasons-header {
    padding: 32px 16px 24px 16px;
  }

  .reasons-sub-title {
    font-size: 1.5rem;
  }

  .reasons-main-title {
    font-size: 2.2rem;
    margin-top: 4px;
  }

  .reason-card-body {
    padding: 22px 20px 28px 20px;
  }

  .reason-card-label {
    font-size: 1.1rem;
    margin-bottom: 8px;
  }

  .reason-card-title {
    font-size: 1.4rem;
    margin-bottom: 10px;
  }

  .reason-card-desc {
    font-size: 1.1rem;
    line-height: 1.7;
  }
}

/* =========================================================
   SERVICES SECTION (作業料金一覧 - WATER RIPPLE BACKGROUND & 2-COL GRID)
   ========================================================= */
.services-section {
  width: 100%;
  padding: 0 0 80px 0;
  margin: 0;
  background-color: #e8f6fc;
  background-image: url('../assets/images/services-background.png');
  /* shift up to hide baked-in title; HTML heading is used instead */
  background-size: 100% auto;
  background-position: center -6.2%;
  background-repeat: no-repeat;
  overflow: hidden;
  position: relative;
}

.services-heading-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(120px, 18vw, 220px);
  padding: 24px 16px;
  box-sizing: border-box;
}

.services-heading {
  position: relative;
  display: inline-block;
  margin: 0;
  padding-bottom: 0.32em;
  font-family: "Noto Sans JP", "Hiragino Sans", sans-serif;
  font-size: clamp(2rem, 4.2vw, 3.6rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.15;
  text-align: center;
  background-image: linear-gradient(
    180deg,
    #ffe09a 0%,
    #ffc45c 35%,
    #f59b51 72%,
    #ef8428 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  filter: drop-shadow(1px 2px 1px rgba(150, 85, 15, 0.4));
  border-bottom: none;
}

.services-heading::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 0.2em;
  border-radius: 1px;
  background-image: linear-gradient(
    180deg,
    #ffd078 0%,
    #f59b51 55%,
    #e87820 100%
  );
}

.services-container {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  text-align: center;
  position: relative;
  z-index: 1;
}

/* Banner Ribbon CTA */
.services-banner-ribbon {
  width: 100%;
  padding: 16px 20px;
  background: linear-gradient(90deg, #00c8ff 0%, #0044cc 50%, #002b88 100%);
  margin-bottom: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  box-shadow: 0 8px 24px rgba(0, 40, 120, 0.2);
  box-sizing: border-box;
}

.services-ribbon-text,
.services-ribbon-price,
.services-ribbon-symbol {
  display: block;
  margin: 0;
  padding: 0;
  line-height: 1;
}

.services-ribbon-text {
  color: #ff3333;
  font-size: 3.4rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.services-ribbon-price {
  color: #ffb800;
  font-size: 5.8rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.35);
  white-space: nowrap;
}

.services-ribbon-symbol {
  color: #ff3333;
  font-size: 4.5rem;
  font-weight: 900;
  white-space: nowrap;
}

/* 6 Service Cards 2-Column Grid — uniform size */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 44px;
  max-width: 1350px;
  margin: 0 auto;
  padding-inline: 40px;
  align-items: stretch;
}

.service-card {
  width: 100%;
  height: 100%;
  display: block;
  background-color: transparent;
  box-shadow: none;
  overflow: hidden;
  border-radius: 20px;
}

.service-card-img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1.05;
  object-fit: cover;
  object-position: top center;
  display: block;
  border-radius: 20px;
  filter: drop-shadow(0 10px 24px rgba(0, 50, 140, 0.18));
  transition: transform 0.3s ease, filter 0.3s ease;
}

.service-card:hover .service-card-img {
  transform: translateY(-4px);
  filter: drop-shadow(0 16px 32px rgba(0, 50, 140, 0.28));
}

/* =========================================================
   PROCESS FLOW SECTION (作業までの流れ - CANVA FULL-SCREEN SCALE)
   ========================================================= */
.process-section {
  width: 100%;
  padding: 90px 0 110px 0;
  margin: 0;
  background-color: #dbeeb8;
  overflow: hidden;
}

.process-container {
  width: 100%;
  max-width: 1380px;
  margin-inline: auto;
  padding-inline: 40px;
  text-align: center;
}

/* Hanging Signboard Header Title Image */
.process-header {
  display: flex;
  justify-content: center;
  margin-bottom: 70px;
}

.process-heading-img {
  width: 100%;
  max-width: 760px;
  height: auto;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.08));
}

/* 4 Process Step Items List */
.process-list {
  display: flex;
  flex-direction: column;
  gap: 64px;
  width: 100%;
}

.process-item {
  display: flex;
  align-items: flex-start;
  gap: 60px;
  text-align: left;
  width: 100%;
}

.process-badge {
  width: 400px;
  height: 400px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  outline: none;
}

.process-badge-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 6px 20px rgba(0, 0, 0, 0.06));
}

.process-content {
  flex: 1;
  padding-top: 24px;
}

.process-step-title {
  font-size: 4.8rem;
  font-weight: 900;
  color: #111111;
  margin: 0 0 24px 0;
  letter-spacing: 0.04em;
  line-height: 1.2;
}

.process-step-desc {
  font-size: 3.2rem;
  font-weight: 900;
  color: #111111;
  line-height: 1.65;
  margin: 0;
  word-break: break-all;
}

/* ─── Process flow — MOBILE optimization (desktop layout untouched) ─── */
@media (max-width: 768px) {
  .process-section {
    padding: 48px 0 56px 0;
  }

  .process-container {
    padding-inline: 20px;
  }

  .process-header {
    margin-bottom: 36px;
  }

  .process-heading-img {
    max-width: 300px;
  }

  .process-list {
    gap: 40px;
  }

  /* Stack each step vertically: badge on top, text centered below */
  .process-item {
    flex-direction: row;
    align-items: center;
    gap: 14px;
    text-align: left;
  }

  .process-badge {
    width: 120px;
    height: 120px;
  }

  .process-content {
    padding-top: 0;
    width: 100%;
  }

  .process-step-title {
    font-size: 1.6rem;
    margin: 0 0 8px 0;
    letter-spacing: 0.02em;
  }

  .process-step-desc {
    font-size: 0.75rem;
    line-height: 1.7;
    word-break: normal;   /* stop mid-word char stacking on narrow screens */
  }
}

/* =========================================================
   WARNING SECTION (悪徳業者撲滅！失敗しない業者選び - HAZARD STRIPES)
   ========================================================= */
.warning-section {
  width: 100%;
  padding: 0;
  margin: 0;
  /* Yellow and Black Construction Hazard Stripe background pattern (narrower 22px stripes) */
  background: repeating-linear-gradient(-45deg, #000000 0, #000000 22px, #ffcc00 22px, #ffcc00 44px);
  overflow: hidden;
  padding: 0px 10px;
}

.warning-container {
  background-color: #ffcc00;
  max-width: 1380px;
  margin-inline: auto;
  padding: 64px 48px 80px 48px;
  text-align: center;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.4);
}

/* Title Block */
.warning-title-block {
  margin-bottom: 32px;
}

.warning-main-title {
  font-size: 5.4rem;
  font-weight: 900;
  color: #000000;
  letter-spacing: 0.05em;
  margin: 0 0 10px 0;
  line-height: 1.15;
}

.warning-divider {
  font-size: 2.5rem;
  font-weight: 900;
  color: #000000;
  letter-spacing: -2px;
  margin-block: 6px;
  opacity: 0.8;
}

.warning-sub-title {
  font-size: 4.4rem;
  font-weight: 900;
  color: #000000;
  letter-spacing: 0.04em;
}

.warning-red {
  color: #ff2200;
  font-weight: 900;
}

.warning-red-highlight {
  color: #ff2200;
  font-weight: 900;
  font-size: 1.2em;
  border-bottom: 3px solid #ff2200;
}

/* Intro Text */
.warning-intro-text {
  font-size: 2.7rem;
  font-weight: 900;
  color: #111111;
  line-height: 1.75;
  max-width: 1250px;
  margin: 36px auto 48px auto;
  text-align: justify;
  word-break: break-all;
}

/* 3 Warning Alert Cards */
.warning-cards-wrap {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 1150px;
  margin-inline: auto;
}

.warning-card {
  background-color: #0050cd;
  border-radius: 28px;
  padding: 36px 44px;
  text-align: left;
  box-shadow: 0 10px 28px rgba(0, 40, 140, 0.3);
}

.warning-card-header {
  font-size: 2.6rem;
  font-weight: 900;
  color: #ffe600;
  border-bottom: 3px dashed rgba(255, 255, 255, 0.55);
  padding-bottom: 14px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  line-height: 1.3;
}

.warning-card-icon {
  font-size: 2.6rem;
}

.warning-card-text {
  font-size: 1.9rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.7;
  margin: 0;
}

/* =========================================================
   FAQ SECTION (MASSIVE CANVA FULL-SCREEN SCALE)
   ========================================================= */
.faq-section {
  width: 100%;
  padding: 80px 40px;
  background-color: #ffffff;
  overflow: hidden;
}

.faq-container {
  width: 100%;
  max-width: 1350px;
  margin-inline: auto;
}

/* Header */
.faq-header {
  margin-bottom: 52px;
  padding-left: 4px;
}

.faq-title-wrap {
  display: flex;
  align-items: center;
  gap: 24px;
}

.faq-bubble-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid #111111;
  border-radius: 22px;
  padding: 12px 28px;
  background-color: #ffffff;
}

/* Speech bubble pointer bottom-left */
.faq-bubble-icon::after {
  content: "";
  position: absolute;
  bottom: -16px;
  left: 22px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 16px 14px 0 0;
  border-color: #111111 transparent transparent transparent;
}

.faq-bubble-icon span {
  font-size: 2.5rem;
  font-weight: 900;
  color: #111111;
  letter-spacing: -0.02em;
}

.faq-title-text-wrap {
  flex: 1;
}

.faq-title-text {
  font-size: 3.6rem;
  font-weight: 900;
  color: #111111;
  margin: 0;
  line-height: 1.2;
}

.faq-title-line {
  height: 7px;
  background-color: #111111;
  margin-top: 12px;
  width: 100%;
}

/* FAQ Cards List */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* Single FAQ Card with Stitched / Double Frame Border (Canva Match) */
.faq-card {
  background-color: #ffffff;
  border-radius: 36px;
  padding: 48px 56px;
 
  position: relative;
  border: 7px double #222222;
  outline: 4px dashed #333333;
  outline-offset: -12px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

/* Question Row (Q) */
.faq-q-row {
  display: flex;
  align-items: flex-start;
  gap: 26px;
  margin-bottom: 28px;
}

.faq-q-icon {
  width: 68px;
  height: 68px;
  flex-shrink: 0;
  border: 4.5px solid #0000d6;
  border-radius: 18px;
  background-color: #ffffff;
  color: #0000d6;
  font-size: 2.6rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  box-shadow: 0 4px 12px rgba(0, 0, 214, 0.18);
}

.faq-q-text {
  font-size: 2.4rem;
  font-weight: 900;
  color: #0000d6;
  line-height: 1.4;
  padding-top: 8px;
 
}

/* Answer Row (A) */
.faq-a-row {
  display: flex;
  align-items: flex-start;
  gap: 26px;
}

.faq-a-icon {
  width: 68px;
  height: 68px;
  flex-shrink: 0;
  border: 4.5px solid #ff3333;
  border-radius: 18px;
  background-color: #ffffff;
  color: #ff3333;
  font-size: 2.6rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  box-shadow: 0 4px 12px rgba(255, 51, 51, 0.18);
}

.faq-a-text {
  font-size: 2.0rem;
  font-weight: 800;
  color: #111111;
  line-height: 1.75;
  padding-top: 8px;
    padding-bottom: 40px !important;
}

/* Responsive adjustments */
@media (max-width: 480px) {
  .faq-title-text {
    font-size: 1.55rem;
  }

  .faq-q-text {
    font-size: 1.08rem;
  }

  .faq-a-text {
    font-size: 0.95rem;
  }

  .faq-card {
    padding: 16px 16px;
  }
}

/* =========================================================
   SERVICE AREA SECTION (100VW FULL VIEWPORT WIDTH & SEAMLESS MAP SPACING)
   ========================================================= */
/* =========================================================
   SERVICE AREA SECTION (SEAMLESS MAP & CITIES)
   ========================================================= */
.service-area-section {
  width: 100%;
  padding: 40px 0 0 0;
  margin: 0;
  background-color: #dcfeff;
  overflow: hidden;
}

.service-area-container {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
}

/* Top Kanto Map Graphic */
.service-area-map-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.service-area-map-img {
  width: 100%;
  height: auto;
  display: block;
}

/* Prefecture Area Lists */
.service-area-lists {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 60px auto;
  padding-inline: 30px;
  position: relative;
  z-index: 2;
}

.service-area-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

/* Rounded Blue Pill Header (東京都, 千葉県, 埼玉県, 神奈川県) */
.service-area-pill-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #0056b8 0%, #003ea0 100%);
  color: #ffffff;
  font-size: 3.4rem;
  font-weight: 900;
  padding: 20px 0;
  border-radius: 999px;
  width: 95%;
  max-width: 840px;
  box-shadow: 0 6px 18px rgba(0, 60, 160, 0.3);
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}

.service-area-text {
  font-size: 2.8rem;
  font-weight: 900;
  color: #111111;
  line-height: 1.65;
  text-align: justify;
  word-break: break-all;
  max-width: 1150px;
  width: 100%;
}

.service-area-tokyo {
  font-size: 3.2rem;
  text-align: center;
  font-weight: 900;
}

/* (service-area bottom CTA now reuses .campaign-section markup) */

/* =========================================================
   6TH SECTION: TESTIMONIALS (お客様の声 - CUSTOM HTML CARDS)
   ========================================================= */
.testimonials-section {
  width: 100%;
  padding: 80px 0 110px 0;
  margin: 0;
  background-color: #fffde8;
}

.testimonials-container {
  width: 100%;
  max-width: 1500px;
  margin-inline: auto;
  padding-inline: 50px;
}

/* Section Header — layered offset plaques with dark dot */
.testimonials-header {
  position: relative;
  z-index: 0; /* stacking context so the offset outline sits above the section bg */
  display: flex;
  justify-content: center;
  margin-bottom: 80px;
}

.testimonials-title {
  position: relative;
  display: inline-block;
  padding: 28px 100px 28px 140px;
  background-color: #a9d9e3;
  color: #111111;
  font-size: 5.4rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 1.2;
}

/* Dark teal dot at the left of the plaque */
.testimonials-title::before {
  content: "";
  position: absolute;
  left: 48px;
  top: 50%;
  transform: translateY(-50%);
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background-color: #1c5a6b;
}

/* Dark plaque offset down-right, behind the light blue one */
.testimonials-title::after {
  content: "";
  position: absolute;
  left: 26px;
  top: 26px;
  right: -26px;
  bottom: -26px;
  background-color: #1c5a6b;
  z-index: -1;
}

/* Thin outline offset up-left */
.testimonials-header::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 600px;
  height: 106px;
  transform: translate(-58%, -20px);
  border: 2px solid #63b8cc;
  z-index: -1;
}

/* Cards Stack */
.testimonials-cards-wrap {
  display: flex;
  flex-direction: column;
  gap: 56px;
  width: 100%;
}

.testimonial-card {
  position: relative;
  width: 100%;
  background-color: #ffffff;
  border: 12px solid #cbe7ee;
  border-radius: 44px;
  padding: 140px 60px 80px 60px;
}

/* Category tag (トイレ / お風呂 / キッチン) */
.testimonial-tag {
  position: absolute;
  top: -12px;
  left: -12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 500px;
  padding: 20px 60px;
  background-color: #a9d9e3;
  color: #ffffff;
  font-size: 5rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  border-radius: 44px 0 44px 0;
}

/* Avatar + headline row */
.testimonial-head {
  display: flex;
  align-items: center;
  gap: 48px;
  margin-bottom: 48px;
}

.testimonial-avatar {
  width: 300px;
  height: 300px;
  flex-shrink: 0;
  object-fit: contain;
  display: block;
  /* rounds the opaque backdrop some source avatars ship with */
  border-radius: 50%;
}

.testimonial-meta {
  flex: 1;
  min-width: 0;
}

.testimonial-headline {
  font-size: 4.6rem;
  font-weight: 900;
  color: #1268c3;
  line-height: 1.4;
  margin: 0 0 18px 0;
}

.testimonial-profile {
  font-size: 3.4rem;
  font-weight: 700;
  color: #1268c3;
  margin: 0;
}

.testimonial-body {
  font-size: 3.4rem;
  font-weight: 700;
  color: #111111;
  line-height: 1.7;
  margin: 0;
}

/* ─── Testimonials — TABLET / small-desktop step-down ─── */
@media (max-width: 1200px) {
  .testimonials-container {
    padding-inline: 32px;
  }

  .testimonials-title {
    padding: 22px 72px 22px 104px;
    font-size: 4rem;
  }

  .testimonials-title::before {
    left: 38px;
    width: 44px;
    height: 44px;
  }

  .testimonials-header::before {
    width: 460px;
    height: 82px;
  }

  .testimonial-card {
    padding: 108px 44px 60px 44px;
  }

  .testimonial-tag {
    min-width: 380px;
    padding: 16px 46px;
    font-size: 3.6rem;
  }

  .testimonial-head {
    gap: 36px;
    margin-bottom: 36px;
  }

  .testimonial-avatar {
    width: 220px;
    height: 220px;
  }

  .testimonial-headline {
    font-size: 3.4rem;
  }

  .testimonial-profile {
    font-size: 2.5rem;
  }

  .testimonial-body {
    font-size: 2.5rem;
  }
}

/* ─── Testimonials — MOBILE optimization ─── */
@media (max-width: 768px) {
  .testimonials-section {
    padding: 40px 0 48px 0;
  }

  .testimonials-container {
    padding-inline: 20px;
  }

  .testimonials-header {
    margin-bottom: 40px;
  }

  .testimonials-title {
    padding: 14px 40px 14px 64px;
    font-size: 2.2rem;
  }

  .testimonials-title::before {
    left: 24px;
    width: 26px;
    height: 26px;
  }

  .testimonials-title::after {
    left: 12px;
    top: 12px;
    right: -12px;
    bottom: -12px;
  }

  .testimonials-cards-wrap {
    gap: 28px;
  }

  .testimonial-card {
    border-width: 6px;
    border-radius: 22px;
    padding: 58px 22px 30px 22px;
  }

  .testimonial-tag {
    top: -6px;
    left: -6px;
    min-width: 180px;
    padding: 8px 26px;
    font-size: 1.5rem;
    border-radius: 20px 0 20px 0;
  }

  .testimonial-head {
    gap: 16px;
    margin-bottom: 20px;
  }

  .testimonial-avatar {
    width: 80px;
    height: 80px;
  }

  .testimonial-headline {
    font-size: 1.55rem;
    margin-bottom: 6px;
  }

  .testimonial-profile {
    font-size: 1.05rem;
    white-space: nowrap;
  }

  .testimonial-body {
    font-size: 1.25rem;
    line-height: 1.7;
  }
}

@media (max-width: 480px) {
  .testimonials-container {
    padding-inline: 14px;
  }

  .testimonials-title {
    padding: 12px 28px 12px 54px;
    font-size: 1.8rem;
  }

  .testimonials-title::before {
    left: 18px;
    width: 22px;
    height: 22px;
  }

  .testimonial-card {
    padding: 52px 16px 26px 16px;
  }

  .testimonial-tag {
    min-width: 150px;
    padding: 7px 20px;
    font-size: 1.35rem;
  }

  .testimonial-avatar {
    width: 64px;
    height: 64px;
  }

  .testimonial-headline {
    font-size: 1.35rem;
  }

  .testimonial-profile {
    font-size: 0.95rem;
  }

  .testimonial-body {
    font-size: 1.15rem;
  }
}


/* =========================================================
   COMPANY FOOTER SECTION (企業情報 - CANVA MASSIVE FULL SCREEN)
   ========================================================= */
.company-footer-section {
  width: 100%;
  padding: 80px 40px 110px 40px;
  background-color: #dff5ff;
  overflow: hidden;
}

.company-footer-container {
  width: 100%;
  max-width: 1350px;
  margin-inline: auto;
}

/* Slanted Parallelogram Banner Header Image */
.company-footer-header {
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
}

.company-footer-header-img {
  width: 100%;
  max-width: 960px;
  height: auto;
  display: block;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.25));
}

/* Company Information List */
.company-info-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 1200px;
  margin-inline: auto;
}

.company-info-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.company-info-label {
  font-size: 3.2rem;
  font-weight: 900;
  color: #1a0f91;
  letter-spacing: 0.02em;
}

.company-info-val {
  color: #111111;
  font-weight: 900;
}

.company-name {
  font-size: 3.8rem;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.company-address {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.45;
}

.company-tel {
  font-size: 4.5rem;
  font-weight: 900;
  letter-spacing: 0.03em;
}

.company-business {
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1.65;
  color: #111111;
}

/* =========================================================
   CONTACT FORM — 無料相談フォーム (Canva design)
   ========================================================= */
.contact-form {
  width: 100%;
  margin: 0;
  padding: 48px 20px 64px;
  background: #eef5fb;
  border: none;
  border-radius: 0;
  max-width: none;
  box-sizing: border-box;
}

.contact-form-inner {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
}

.contact-form-header {
  text-align: center;
  margin-bottom: 28px;
}

.contact-form-title {
  margin: 0 0 12px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(1.65rem, 4vw, 2rem);
  font-weight: 900;
  color: #3b79c4;
  letter-spacing: 0.06em;
  line-height: 1.3;
}

.contact-form-lead {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(0.88rem, 2.4vw, 1rem);
  font-weight: 500;
  color: #333;
  line-height: 1.7;
}

.contact-form-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
  background: #fff;
  border-radius: 12px;
  padding: 28px 22px 32px;
  box-shadow: 0 2px 14px rgba(40, 80, 140, 0.06);
}

.contact-honey {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.cf-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cf-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.cf-label {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
  color: #222;
  line-height: 1.3;
}

.cf-required {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  padding: 3px 8px 4px;
  background: #c62828;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1;
  border-radius: 3px;
  letter-spacing: 0.04em;
}

.contact-form .cf-input {
  width: 100%;
  height: 48px;
  padding: 0 14px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background: #efefef;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  color: #222;
  box-sizing: border-box;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.contact-form .cf-textarea {
  height: auto;
  min-height: 150px;
  padding: 14px;
  resize: vertical;
  line-height: 1.6;
}

.contact-form .cf-input:focus {
  outline: none;
  border-color: #3b79c4;
  background: #f7fafc;
}

.cf-example {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.8rem;
  color: #9a9a9a;
  line-height: 1.4;
}

.cf-privacy {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 4px;
}

.cf-privacy-box {
  max-height: 160px;
  overflow-y: auto;
  padding: 16px 14px;
  background: #fff;
  border: 1px solid #d8d8d8;
  border-radius: 8px;
  font-family: "Noto Sans JP", sans-serif;
  color: #222;
  -webkit-overflow-scrolling: touch;
}

.cf-privacy-title {
  margin: 0 0 10px;
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.4;
}

.cf-privacy-subtitle {
  margin: 0 0 8px;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.4;
}

.cf-privacy-body {
  font-size: 0.82rem;
  font-weight: 400;
  line-height: 1.75;
  color: #444;
}

.cf-privacy-body p {
  margin: 0 0 0.75em;
}

.cf-privacy-body p:last-child {
  margin-bottom: 0;
}

.cf-agree {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: #222;
  line-height: 1.45;
  cursor: pointer;
}

.cf-agree input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: #3b79c4;
  cursor: pointer;
}

.cf-status {
  margin: 0;
  padding: 12px 14px;
  border-radius: 8px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

.cf-status.is-success {
  background: #e8f5e9;
  color: #1b5e20;
  border: 1px solid #a5d6a7;
}

.cf-status.is-error {
  background: #fdecea;
  color: #b71c1c;
  border: 1px solid #ef9a9a;
}

.contact-form .cf-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  height: auto;
  min-height: 56px;
  margin: 6px 0 0;
  padding: 14px 20px;
  border: none;
  border-radius: 10px;
  background: #ef7a28;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(220, 100, 20, 0.35);
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

.contact-form .cf-submit:hover {
  background: #e06a18;
  opacity: 1;
}

.contact-form .cf-submit:active {
  transform: scale(0.99);
}

.contact-form .cf-submit:disabled {
  opacity: 0.65;
  cursor: wait;
  transform: none;
}

.cf-submit-icon {
  display: inline-flex;
  color: #fff;
  line-height: 0;
}

@media (min-width: 769px) {
  .contact-form {
    padding: 64px 32px 80px;
  }

  .contact-form-form {
    padding: 36px 40px 40px;
    gap: 26px;
  }

  .contact-form .cf-input {
    height: 52px;
  }

  .cf-privacy-box {
    max-height: 180px;
  }
}

@media (max-width: 768px) {
  .contact-form {
    padding: 36px 14px 72px;
  }

  .contact-form-form {
    padding: 22px 16px 28px;
    gap: 20px;
    border-radius: 10px;
  }

  .contact-form-header {
    margin-bottom: 20px;
  }
}

/* Responsive Overrides */
@media (max-width: 768px) {
  .services-section {
    padding: 0 0 40px 0;
    background-size: 100% auto;
    background-position: center -5.5%;
  }

  .services-heading-wrap {
    min-height: clamp(88px, 22vw, 120px);
    padding: 18px 12px;
  }

  .services-heading {
    font-size: clamp(1.55rem, 6.8vw, 2.1rem);
    letter-spacing: 0.06em;
    padding-bottom: 0.3em;
  }

  .services-heading::after {
    height: 0.18em;
  }

  .services-banner-ribbon {
    padding: 12px 10px;
    margin-bottom: 28px;
    gap: 8px;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
  }

  .services-ribbon-text {
    font-size: clamp(1.05rem, 4.6vw, 1.35rem);
  }

  .services-ribbon-price {
    font-size: clamp(1.55rem, 7vw, 2.2rem);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.35);
  }

  .services-ribbon-symbol {
    font-size: clamp(1.2rem, 5.2vw, 1.65rem);
  }

  .services-grid {
    gap: 16px 12px;
    padding-inline: 14px;
    align-items: stretch;
  }

  .service-card-img {
    aspect-ratio: 1 / 1.05;
    object-fit: cover;
    object-position: top center;
  }

  .company-footer-header-img {
    max-width: 100%;
  }

  .company-info-label {
    font-size: 1.6rem;
  }

  .company-name, .company-tel {
    font-size: 1.9rem;
  }

  .company-address, .company-business {
    font-size: 1.4rem;
  }
}


/* =========================================================
   FIXED CTA BAR (SP bottom bar — Canva design)
   ========================================================= */
.fixed-cta-bar {
  display: none;
}

@media (max-width: 768px) {
  .fixed-cta-bar {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 200;
    padding: 0 8px calc(12px + env(safe-area-inset-bottom, 0px));
    pointer-events: none;
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.72) 45%,
      rgba(255, 255, 255, 0.95) 100%
    );
  }

  .fixed-cta-bubble {
    pointer-events: none;
    position: relative;
    margin: 0 0 10px;
    padding: 9px 16px 10px;
    max-width: calc(100% - 4px);
    background: #fff;
    border: 1.5px solid #1a3a6b;
    border-radius: 10px;
    font-family: "Noto Sans JP", sans-serif;
    font-size: clamp(0.88rem, 3.8vw, 1.05rem);
    font-weight: 700;
    line-height: 1.35;
    text-align: center;
    white-space: nowrap;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  }

  .fixed-cta-bubble::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -8px;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #fff;
    filter: drop-shadow(0 1.5px 0 #1a3a6b);
  }

  .fixed-cta-time {
    color: #e31c23;
  }

  .fixed-cta-msg {
    color: #111;
  }

  .fixed-cta-btn {
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
    max-width: 560px;
    min-height: 88px;
    padding: 14px 18px 14px 16px;
    background: #ff1f2e;
    color: #fff;
    border-radius: 16px;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(255, 40, 50, 0.45);
    font-family: "Noto Sans JP", sans-serif;
    -webkit-tap-highlight-color: transparent;
  }

  .fixed-cta-btn:active {
    transform: scale(0.985);
    background: #e01020;
  }

  .fixed-cta-phone-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
  }

  .fixed-cta-btn-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 1.2;
    min-width: 0;
  }

  .fixed-cta-number {
    font-size: clamp(1.95rem, 8.2vw, 2.5rem);
    font-weight: 900;
    letter-spacing: 0.04em;
    white-space: nowrap;
    line-height: 1.05;
  }

  .fixed-cta-sub {
    margin-top: 4px;
    font-size: clamp(0.82rem, 3.4vw, 0.98rem);
    font-weight: 700;
    letter-spacing: 0.06em;
    white-space: nowrap;
  }

  .fixed-cta-arrow {
    flex-shrink: 0;
    font-size: 1.05rem;
    line-height: 1;
    opacity: 0.95;
  }

  /* keep page content clear of the fixed bar */
  body {
    padding-bottom: calc(150px + env(safe-area-inset-bottom, 0px));
  }
}


/* =========================================================
   RESPONSIVE BREAKPOINTS (mobile-first)
   ========================================================= */
@media (min-width: 768px) {
  :root {
    --container-padding: 2rem;
  }

  .section {
    padding-block: var(--space-2xl);
  }
}

@media (min-width: 1024px) {
  /* desktop-specific overrides go here */
}


/* =========================================================
   MOBILE CORRECTIONS (≤768px)
   Scoped entirely inside media queries — desktop is untouched.
   Sections that were still rendering at desktop scale on phones:
   services ribbon, warning, FAQ, service-area.
   ========================================================= */
@media (max-width: 768px) {
  /* keep any stray overflow (e.g. the hero staff photo) from panning the page */
  html,
  body {
    overflow-x: hidden;
  }

  /* ── SERVICES: centered ribbon + uniform cards ── */
  .services-banner-ribbon {
    padding: 11px 10px;
    gap: 6px;
    margin-bottom: 26px;
  }
  .services-ribbon-text { font-size: clamp(1rem, 4.4vw, 1.25rem); }
  .services-ribbon-price { font-size: clamp(1.45rem, 6.5vw, 2rem); text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.35); }
  .services-ribbon-symbol { font-size: clamp(1.1rem, 5vw, 1.5rem); }

  .services-grid {
    gap: 14px 12px;
    padding-inline: 12px;
    align-items: stretch;
  }

  /* ── WARNING (悪徳業者撲滅) ── */
  .warning-container { padding: 30px 16px 36px 16px; }

  .warning-title-block { margin-bottom: 18px; }
  .warning-main-title { font-size: 1.9rem; letter-spacing: 0.02em; margin-bottom: 6px; }
  .warning-divider { font-size: 0.95rem; letter-spacing: -1px; }
  .warning-sub-title { font-size: 1.5rem; letter-spacing: 0.02em; }
  .warning-red-highlight { border-bottom-width: 2px; }

  .warning-intro-text {
    font-size: 0.95rem;
    line-height: 1.85;
    margin: 20px auto 26px auto;
    text-align: left;
    word-break: normal;   /* break-all was stacking 6 chars per line */
  }

  .warning-cards-wrap { gap: 16px; }

  .warning-card {
    padding: 18px 16px;
    border-radius: 18px;
    box-shadow: 0 6px 16px rgba(0, 40, 140, 0.28);
  }

  .warning-card-header {
    font-size: 1.15rem;
    gap: 8px;
    padding-bottom: 10px;
    margin-bottom: 12px;
    border-bottom-width: 2px;
  }
  .warning-card-icon { font-size: 1.15rem; }
  .warning-card-text { font-size: 0.92rem; line-height: 1.8; }

  /* ── FAQ ── */
  .faq-section { padding: 36px 14px; }

  .faq-header { margin-bottom: 24px; padding-left: 0; }
  .faq-title-wrap { gap: 12px; }

  .faq-bubble-icon {
    padding: 7px 14px;
    border-width: 3px;
    border-radius: 14px;
  }
  .faq-bubble-icon::after {
    bottom: -11px;
    left: 14px;
    border-width: 11px 9px 0 0;
  }
  .faq-bubble-icon span { font-size: 1.15rem; }

  .faq-title-text { font-size: 1.35rem; }
  .faq-title-line { height: 4px; margin-top: 8px; }

  .faq-list { gap: 18px; }

  .faq-card {
    padding: 18px 15px;
    border-radius: 22px;
    border-width: 5px;
    outline-width: 3px;
    outline-offset: -9px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  }

  .faq-q-row { gap: 12px; margin-bottom: 14px; }
  .faq-a-row { gap: 12px; }

  .faq-q-icon,
  .faq-a-icon {
    width: 38px;
    height: 38px;
    font-size: 1.15rem;
    border-width: 3px;
    border-radius: 11px;
  }

  .faq-q-text { font-size: 1.02rem; padding-top: 3px; }
  .faq-a-text {
    font-size: 0.92rem;
    padding-top: 3px;
    padding-bottom: 6px !important;   /* base rule uses !important */
  }

  /* ── SERVICE AREA (対応エリア) ── */
  .service-area-section { padding: 24px 0 0 0; }
  .service-area-map-wrap { margin-bottom: 16px; }

  .service-area-lists {
    gap: 22px;
    padding-inline: 14px;
    margin-bottom: 30px;
  }

  .service-area-pill-btn {
    width: 100%;
    font-size: 1.35rem;
    padding: 11px 0;
    margin-bottom: 14px;
    box-shadow: 0 4px 12px rgba(0, 60, 160, 0.3);
  }

  .service-area-text {
    font-size: 0.95rem;
    line-height: 1.9;
    text-align: left;
    word-break: normal;   /* break-all was stacking ~7 chars per line */
  }

  .service-area-tokyo { font-size: 1.15rem; text-align: center; }
}

@media (max-width: 380px) {
  .warning-main-title { font-size: 1.6rem; }
  .warning-sub-title { font-size: 1.28rem; }
  .services-ribbon-text { font-size: 1.12rem; }
  .services-ribbon-price { font-size: 1.8rem; }
  .services-ribbon-symbol { font-size: 1.35rem; }
  .service-area-pill-btn { font-size: 1.18rem; }
  .faq-title-text { font-size: 1.18rem; }
}

/* ── PRICE GUARANTEE + HERO headline: mobile-only corrections ── */
@media (max-width: 768px) {
  /* 無料 was breaking onto its own line inside the ribbon */
  .price-guarantee-card {
    padding: 26px 16px 30px 16px;
    border-radius: 22px;
  }
  .price-headline-line1 { font-size: 1.25rem; }
  .price-headline-line2 { font-size: 1.6rem; }

  .price-guarantee-ribbon {
    padding: 12px 16px;
    margin-bottom: 26px;
    border-radius: 6px;
  }
  .price-ribbon-text { font-size: 1.25rem; margin-right: 8px; }
  .price-ribbon-free { font-size: 1.6rem; white-space: nowrap; }


}

@media (max-width: 480px) {
  .price-guarantee-card {
    padding: 20px 10px 24px 10px;
    border-radius: 20px;
  }
  .price-headline-line1 { font-size: 1.05rem; }
  .price-headline-line2 { font-size: 1.35rem; }
  .price-guarantee-ribbon { padding: 10px 10px; }
  .price-ribbon-text { font-size: 1.02rem; margin-right: 6px; }
  .price-ribbon-free { font-size: 1.3rem; }
}

/* ── STICKY NAVBAR MOBILE RESPONSIVENESS ── */
@media (max-width: 768px) {
  :root {
    --sticky-header-height: 62px;
  }

  .sticky-nav-container {
    padding: 5px 10px;
    gap: 6px;
  }

  .sticky-nav-brand {
    gap: 6px;
  }

  .sticky-nav-right {
    gap: 8px;
  }

  .sticky-phone-block {
    align-items: center;
    gap: 2px;
  }

  .kss-logo-img {
    height: 42px;
  }

  .sticky-brand-name {
    font-size: 1.05rem;
  }

  .sticky-brand-sub {
    font-size: 0.58rem;
    letter-spacing: 0.02em;
  }

  .sticky-freedial-icon {
    width: 26px;
    height: 16px;
  }

  .sticky-phone-number {
    font-size: 1.35rem;
  }

  .sticky-payment-img {
    height: 26px;
  }

  .sticky-line-btn {
    width: 52px;
    height: 52px;
    border-radius: 12px;
  }

  .sticky-line-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 0;
  }
}

@media (max-width: 430px) {
  :root {
    --sticky-header-height: 58px;
  }

  .sticky-nav-container {
    padding: 6px 8px;
    gap: 6px;
  }

  .kss-logo-img {
    height: 36px;
  }

  .sticky-brand-name {
    font-size: 0.92rem;
  }

  .sticky-brand-sub {
    font-size: 0.5rem;
    letter-spacing: 0.01em;
  }

  .sticky-freedial-icon {
    width: 22px;
    height: 14px;
  }

  .sticky-phone-number {
    font-size: 1.15rem;
  }

  .sticky-payment-img {
    height: 22px;
  }

  .sticky-line-btn {
    width: 46px;
    height: 46px;
    border-radius: 10px;
  }

  .sticky-line-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 0;
  }
}

@media (max-width: 350px) {
  .sticky-brand-sub {
    display: none;
  }
  .sticky-brand-name {
    font-size: 0.72rem;
  }
  .sticky-phone-number {
    font-size: 0.94rem;
  }
}

