/* ========================================
   Variables & Reset
   ======================================== */
:root {
  --green: #00684d;
  --green-dark: #005a40;
  --green-light: #e6f4ea;
  --green-pale: #eef7f0;
  --blue: #057385;
  --blue-dark: #02292f;
  --blue-light: #239aae;
  --blue-pale: #d1e5f8;
  --orange: #ea570f;
  --orange-dark: #d9551a;
  --navy: #051525;
  --text: #1a1a1a;
  --text-light: #666666;
  --white: #ffffff;
  --border: #c5ddd6;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --radius: 12px;
  --container: 1200px;
  --topbar-h: 48px;
  --header-h: 72px;
  --site-header-h: calc(var(--topbar-h) + var(--header-h));
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: var(--text);
  line-height: 1.7;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

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

.sp-only {
  display: none;
}
.pc-only {
  display: inline;
}

.text-green {
  color: var(--green);
}

.text-orange {
  color: var(--orange);
}

.title-mini {
  font-size: 1rem;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}
/* ========================================
   Header
   ======================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.topbar {
  background: var(--navy);
  height: var(--topbar-h);
  display: flex;
  align-items: center;
  justify-content: center;
}

.topbar__text {
  color: var(--white);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.header {
  height: var(--header-h);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 16px;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.header__logo img {
  height: 40px;
  width: auto;
}

.header__logo-text {
  font-size: 1.125rem;
  font-weight: 900;
  color: var(--text);
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.header__nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.header__nav-list {
  display: flex;
  gap: 36px;
}

.header__nav-list a {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text);
  transition: color 0.2s;
  white-space: nowrap;
}

.header__nav-list a:hover {
  color: var(--green);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.header__sns img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  transition: opacity 0.2s;
}

.header__sns:hover img {
  opacity: 0.8;
}

.header__tel-img {
  height: 56px;
  width: auto;
}

.header__nav-close {
  display: none;
}

.header__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.header__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition:
    transform 0.3s,
    opacity 0.3s;
}

.header__burger.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.header__burger.is-active span:nth-child(2) {
  opacity: 0;
}

.header__burger.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ========================================
   Hero
   ======================================== */
.hero {
  position: relative;
  min-height: 680px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: var(--site-header-h);
  overflow: visible;
  margin-bottom: 80px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: url("../images/pc-fv.png") center center / cover no-repeat;
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.55) 0%, rgba(255, 255, 255, 0.25) 40%, rgba(255, 255, 255, 0.05) 65%, transparent 100%);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 48px 20px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero__label {
  font-size: clamp(0.9375rem, 2vw, 1.125rem);
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.04em;
  margin-bottom: 20px;
}

.hero__title {
  font-size: clamp(2.5rem, 4.8vw, 3rem);
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1.45;
  margin-bottom: 32px;
  max-width: 700px;
  color: var(--text);
}

.hero__title-line {
  display: block;
}

.hero__title .text-green {
  color: var(--green);
}

.hero__title-small {
  font-size: 0.6em;
}

.hero__badges {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__badges img {
  width: 140px;
  height: 140px;
  object-fit: contain;
}

.hero__badges img.hero__badge--large {
  width: 180px;
  height: auto;
}

/* Carousel */
.hero__carousel-wrap {
  position: absolute;

  bottom: -140px;
  left: 0;
  right: 0;
  z-index: 3;
}

.hero__carousel {
  display: flex;
  align-items: center;
  gap: 8px;
}

.carousel__track-wrap {
  overflow: hidden;
  flex: 1;
}

.carousel__track {
  display: flex;
  gap: 30px;
  transition: transform 0.4s ease;
}

.carousel__slide {
  flex: 0 0 calc(25% - 15px);
  min-width: 0;
}

.carousel__slide img {
  width: 100%;
}

.carousel__btn {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
  transition: opacity 0.2s;
}

.carousel__btn:hover {
  opacity: 0.7;
}

.carousel__btn img {
  width: 44px;
  height: 44px;
}

/* ========================================
   Section Common
   ======================================== */
.section {
  padding: 80px 0;
}

.section__en {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 0.15em;
  text-align: center;
  margin-bottom: 8px;
}

.section__title {
  font-size: clamp(1.375rem, 3vw, 1.875rem);
  font-weight: 900;
  letter-spacing: 0.05em;
  text-align: center;
  line-height: 1.6;
  color: var(--black);
  margin-bottom: 40px;
}

.section__title--left {
  text-align: left;
  margin-bottom: 36px;
}

.section__title--dark {
  color: var(--text);
}

.section__lead {
  text-align: center;
  color: var(--text-light);
  max-width: 720px;
  margin: 0 auto 48px;
  font-size: 0.9375rem;
}

/* ========================================
   Service
   ======================================== */
.service {
  position: relative;
  background: var(--white);
  padding-top: 120px;
  overflow: hidden;
}

.service__illust {
  position: absolute;
  top: 160px;
  right: max(24px, calc((100% - var(--container)) / 2 + 24px));
  width: 180px;
  pointer-events: none;
  z-index: 1;
}

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

.service__grid {
  display: grid;
  padding: 0 40px;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  border: 1px solid var(--blue);
  border-radius: 16px;
  padding: 28px 28px;
  text-align: center;
  background: var(--white);
}

.service-card__icon {
  margin-bottom: 24px;
}

.service-card__icon img {
  width: 80px;
  height: 80px;
  margin: 0 auto;
  object-fit: contain;
}

.service-card__title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 16px;
  letter-spacing: 0.08em;
}

.service-card__text {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.9;
  text-align: left;
}

/* ========================================
   Point
   ======================================== */
.point {
  background: #e8f3f6;
  padding-bottom: 48px;
}

.point .section__title--left {
  margin-bottom: 16px;
}

.point__lead {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.9;
  max-width: 720px;
  margin-bottom: 36px;
  text-align: left;
}

.point__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.point-card {
  border-radius: 16px;
  overflow: hidden;
}

.point-card__img {
  width: 100%;
  height: auto;
  display: block;
}

/* ========================================
   Checklist
   ======================================== */
.checklist {
  background: #e8f3f6;
  padding-top: 56px;
}

.checklist__title {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 900;
  color: var(--green);
  text-align: center;
  margin-bottom: 48px;
}

.checklist__grid {
  background: #ffffff;
  padding: 80px 120px;
  border-radius: 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 80px;
  max-width: 960px;
  margin: 0 auto;
}

.checklist__heading {
  font-size: 1.125rem;
  font-weight: 900;
  color: var(--blue);
  margin-bottom: 8px;
}

.checklist__list li {
  font-size: 0.875rem;
  color: var(--text);
  padding: 2px 0;
  line-height: 1.65;
}

.checklist__group + .checklist__group {
  margin-top: 24px;
}

/* ========================================
   Area
   ======================================== */
.area {
  background: #057385;
  padding: 64px 0 72px;
  text-align: center;
}

.area__header {
  margin-bottom: 32px;
}

.area__pin-top {
  display: inline-flex;
  margin-bottom: 12px;
}

.area__title {
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", serif;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: 0.08em;
}

.area__subtitle {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.7;
}

.area__cities {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 900px;
  margin: 0 auto 36px;
  padding: 0;
}

.area__cities li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  color: var(--blue);
  font-size: 0.875rem;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.area__city-pin {
  width: 10px;
  height: 10px;
  background: var(--blue);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  flex-shrink: 0;
}

.area__card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
  max-width: 960px;
  margin: 0 auto;
  padding: 36px 40px;
  background: var(--white);
  border-radius: 20px;
  text-align: left;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

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

.area__check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: #e8f3f6;
  border-radius: 50%;
  flex-shrink: 0;
}

.area__card-title {
  font-size: 1.0625rem;
  font-weight: 900;
  color: var(--green);
  line-height: 1.4;
}

.area__card-text {
  font-size: 0.875rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 20px;
}

.area__cta {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 18px;
  background: #eef7f0;
  border-radius: 12px;
}

.area__cta-icon {
  flex-shrink: 0;
  margin-top: 2px;
}

.area__cta-title {
  font-size: 0.9375rem;
  font-weight: 900;
  color: var(--green);
  margin-bottom: 4px;
  line-height: 1.5;
}

.area__cta-desc {
  font-size: 0.8125rem;
  color: var(--green);
  line-height: 1.6;
  opacity: 0.85;
}

.area__card-map {
  line-height: 0;
}

.area__map-svg {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

/* ========================================
   Results
   ======================================== */
.results {
  background: var(--white);
}

.results__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.result-card {
  border: 1px solid #007b8f;
  background: #fff;
  border-radius: 24px;
  padding: 30px 30px;
}

.result-card__img {
  width: 100%;
  border-radius: 0px;
  display: block;
  margin: 0 auto;
}

.result-card__tag {
  display: inline-block;
  background: #007b8f;
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  margin-top: 20px;
}

.result-card__title {
  font-size: 1.5rem;
  font-weight: 900;
  color: #002b3d;
  margin-top: 10px;
  line-height: 1.4;
}

.result-card__text {
  font-size: 1rem;
  color: #002b3d;
  line-height: 1.6;
  margin-top: 15px;
}

.results__more {
  text-align: center;
  margin-top: 40px;
}

.results__more-btn {
  display: inline-block;
  min-width: 200px;
  padding: 14px 48px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--blue);
  background: var(--white);
  border: 2px solid var(--blue);
  border-radius: 999px;
  text-decoration: none;
  transition:
    background 0.2s,
    color 0.2s;
}

.results__more-btn:hover {
  background: var(--blue);
  color: var(--white);
}

.cases-page__main {
  padding-top: calc(var(--site-header-h) + 48px);
}

.cases-page__lead {
  text-align: center;
  font-size: 0.9375rem;
  color: var(--text-light);
  margin: -20px auto 40px;
  max-width: 640px;
  line-height: 1.8;
}

@media (min-width: 769px) {
  .results.section {
    padding: 64px 0;
  }

  .results > .container {
    max-width: 960px;
  }

  .results .section__title {
    font-size: clamp(1.1rem, 2.4vw, 1.5rem);
    margin-bottom: 32px;
  }

  .results .section__title--left {
    margin-bottom: 29px;
  }

  .results .title-mini {
    font-size: 0.8rem;
  }

  .results .point__lead {
    font-size: 0.75rem;
    max-width: 576px;
    margin-bottom: 29px;
  }

  .results .cases-page__lead {
    font-size: 0.75rem;
    margin: -16px auto 32px;
    max-width: 512px;
  }

  .results__grid {
    gap: 16px;
  }

  .result-card {
    border-radius: 19px;
    padding: 24px;
  }

  .result-card__tag {
    font-size: 0.6rem;
    padding: 3px 10px;
    margin-top: 16px;
  }

  .result-card__title {
    font-size: 1.2rem;
    margin-top: 8px;
  }

  .result-card__text {
    font-size: 0.8rem;
    margin-top: 12px;
  }

  .results__more {
    margin-top: 32px;
  }

  .results__more-btn {
    min-width: 160px;
    padding: 11px 38px;
    font-size: 0.8rem;
  }
}

/* ========================================
   Instagram
   ======================================== */
.instagram {
  background: #edf5f6;
  border-radius: 80px 80px 0 0;
}

.instagram__lead {
  text-align: center;
  font-size: 0.9375rem;
  color: var(--text-light);
  margin: -20px auto 32px;
  max-width: 640px;
}

.instagram__embed {
  max-width: 600px;
  margin: 0 auto;
  border: 2px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  line-height: 0;
  background: #fafafa;
  padding: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.instagram__iframe {
  width: 100%;
  height: 520px;
  border: 0;
  display: block;
  border-radius: 6px;
}

.instagram__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--green);
  text-decoration: none;
  transition: opacity 0.2s;
}

.instagram__link:hover {
  opacity: 0.7;
}

.instagram .container {
  text-align: center;
}

/* ========================================
   Price
   ======================================== */
.price {
  position: relative;
  background: var(--white);
  overflow: hidden;
}

.price__illust {
  position: absolute;
  top: 48px;
  left: max(24px, calc((100% - var(--container)) / 2 + 24px));
  width: 180px;
  pointer-events: none;
  z-index: 1;
}

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

.price__note {
  text-align: center;
  margin: -20px auto 28px;
  font-size: 0.75rem;
  color: var(--text-light);
}

.price__tables {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 720px;
  margin: 0 auto;
}

.price-table table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 8px;
  overflow: hidden;
}

.price-table__small {
  font-size: 0.65rem;
  font-weight: 200;
  color: var(--text-light);
}

.price-table thead th {
  background: var(--blue);
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 700;
  padding: 10px 16px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.price-table thead th:last-child {
  border-right: none;
}

.price-table tbody tr:nth-child(odd) {
  background: #edf5f6;
}

.price-table tbody tr:nth-child(even) {
  background: #edf5f6;
}

.price-table tbody td {
  padding: 9px 16px;
  font-size: 0.8125rem;
  text-align: center;
  border-right: 1px solid rgba(0, 104, 77, 0.08);
}

.price-table tbody td:last-child {
  border-right: none;
}

.price-table tbody td:first-child {
  font-weight: 500;
  text-align: left;
  padding-left: 20px;
}

.price-table tbody td:not(:first-child) {
  font-weight: 700;
  color: var(--blue);
}

.price-table h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 10px;
  margin-left: 1rem;
  letter-spacing: 0.06em;
}

/* ========================================
   Flow
   ======================================== */
.flow {
  background: var(--white);
}

.flow__steps {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  max-width: 1000px;
  margin: 0 auto;
}

.flow-step {
  flex: 1;
  max-width: 220px;
  background: var(--white);
  border: 2px solid var(--blue);
  border-radius: 12px;
  padding: 24px 16px;
  text-align: center;
}

.flow-step__num {
  display: block;
  font-size: 1.5rem;
  font-weight: 900;
  color: #c5d5cf;
  margin-bottom: 8px;
  line-height: 1;
}

.flow-step__icon {
  display: flex;
  justify-content: center;
  margin-bottom: 12px;
  color: var(--blue);
}

.flow-step__title {
  font-size: 0.9375rem;
  font-weight: 900;
  color: var(--blue);
  margin-bottom: 10px;
}

.flow-step__text {
  font-size: 0.8125rem;
  color: var(--text-light);
  line-height: 1.7;
  text-align: left;
}

.flow-step__arrow {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  color: var(--blue);
  font-weight: 700;
  padding: 0 4px;
  flex-shrink: 0;
}

/* ========================================
   FAQ
   ======================================== */
.faq {
  background: var(--white);
}

.faq__label {
  font-size: 1rem;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 0.04em;
  text-align: center;
  margin-bottom: 8px;
}

.faq .section__title {
  margin-bottom: 16px;
}

.faq__lead {
  text-align: center;
  font-size: 0.9375rem;
  color: var(--text-light);
  line-height: 1.8;
  max-width: 640px;
  margin: 0 auto 40px;
}

.faq__list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq__item {
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}

.faq__question {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  background: #e8f3f6;
  cursor: pointer;
  list-style: none;
}

.faq__question::-webkit-details-marker {
  display: none;
}

.faq__q-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 700;
}

.faq__q-text {
  flex: 1;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.6;
  text-align: left;
}

.faq__toggle {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--blue);
  background: var(--white);
  color: var(--blue);
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1;
}

.faq__toggle::before {
  content: "+";
}

.faq__item[open] .faq__toggle {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}

.faq__item[open] .faq__toggle::before {
  content: "−";
}

.faq__answer {
  padding: 16px 18px 18px 62px;
  background: var(--white);
}

.faq__answer p {
  font-size: 0.875rem;
  color: var(--text);
  line-height: 1.8;
}

/* ========================================
   Company (Subpage)
   ======================================== */
.company-page {
  background: var(--white);
}

.company-outline {
  padding: calc(var(--site-header-h) + 64px) 0 96px;
}

.company-outline__header {
  text-align: center;
  margin-bottom: 56px;
}

.company-outline__title {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.12em;
  line-height: 1.4;
}

.company-outline__slash {
  color: #4a7c69;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0;
}

.company-outline__en {
  margin-top: 12px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  color: #aaaaaa;
}

.company-outline__list {
  max-width: 960px;
  margin: 0 auto;
  border-bottom: 1px solid #e5e5e5;
}

.company-outline__row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 40px;
  padding: 36px 0;
  border-top: 1px solid #e5e5e5;
}

.company-outline__label {
  font-size: 1rem;
  font-weight: 700;
  color: #4a7c69;
  line-height: 1.6;
  padding-top: 8px;
}

.company-outline__label::before {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  background: #4a7c69;
  margin-bottom: 16px;
}

.company-outline__value {
  font-size: 0.9375rem;
  color: var(--text);
  line-height: 2;
}

.company-outline__location + .company-outline__location {
  margin-top: 32px;
}

.company-outline__location-name {
  font-weight: 700;
  margin-bottom: 4px;
}

.company-outline__map {
  color: #4a7c69;
  text-decoration: none;
  font-weight: 500;
}

.company-outline__map:hover {
  opacity: 0.7;
}

/* ========================================
   Contact
   ======================================== */
.contact {
  background: var(--white);
}

.contact__lead {
  text-align: center;
  font-size: 0.9375rem;
  color: var(--text-light);
  margin: -20px auto 40px;
  max-width: 640px;
  line-height: 1.8;
}

.contact__form {
  max-width: 640px;
  margin: 0 auto;
}

.contact__field {
  margin-bottom: 24px;
  border: none;
  padding: 0;
}

.contact__label {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 8px;
}

.contact__required {
  display: inline-block;
  margin-left: 7.2px;
  padding: 1.8px 5.4px;
  font-size: 0.61875rem;
  font-weight: 700;
  color: var(--white);
  background: #e53935;
  border-radius: 2.7px;
  vertical-align: middle;
}

.contact__radios {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.contact__radio {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9375rem;
  color: var(--text);
  cursor: pointer;
}

.contact__radio input {
  width: 18px;
  height: 18px;
  accent-color: var(--blue);
  cursor: pointer;
}

.contact__input,
.contact__textarea {
  width: 100%;
  padding: 12px 16px;
  font-size: 0.9375rem;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  line-height: 1.6;
  transition: border-color 0.2s;
}

.contact__input:focus,
.contact__textarea:focus {
  outline: none;
  border-color: var(--blue);
}

.contact__textarea {
  resize: vertical;
  min-height: 160px;
}

.contact__submit {
  text-align: center;
  margin-top: 32px;
}

.contact__btn {
  display: inline-block;
  min-width: 200px;
  padding: 14px 40px;
  font-size: 1rem;
  font-weight: 700;
  font-family: inherit;
  color: var(--white);
  background: var(--blue);
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: opacity 0.2s;
}

.contact__btn:hover {
  opacity: 0.85;
}

/* ========================================
   CTA
   ======================================== */
.cta {
  position: relative;
  background-color: var(--blue);
  padding: 48px 0;
}

@media (min-width: 769px) {
  .hero + .cta {
    margin-top: 180px;
  }
}

.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/common/cta-bg.png") no-repeat center bottom / 100% auto;
  opacity: 0.5;
  pointer-events: none;
}

.cta__wrap {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: center;
}

.cta__head {
  max-width: 720px;
}

.cta__label {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 12px;
  text-shadow: 0 1px 6px rgba(1, 41, 47, 0.35);
}

.cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.cta__title {
  font-size: clamp(1.2375rem, 2.75vw, 1.65rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.7;
  text-shadow: 0 1px 6px rgba(1, 41, 47, 0.35);
}

.cta__note {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.7;

  text-shadow: 0 1px 6px rgba(1, 41, 47, 0.35);
}

.cta__lead {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.85);
}

.cta__tel img {
  height: 60px;
  width: auto;
}

.cta__inner--buttons {
  justify-content: center;
}

.cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 280px;
  padding: 16px 28px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  border-radius: 999px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  opacity: 1;
  transition: opacity 0.2s;
}

.cta__btn:hover {
  opacity: 0.85;
}

.cta__btn--tel {
  background: var(--orange);
}

.cta__btn--estimate {
  background: var(--white);
  color: var(--blue);
}

/* ========================================
   Footer
   ======================================== */
.footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.8);
  padding: 48px 0 0;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 40px;
  align-items: start;
  padding-bottom: 32px;
}

.footer__brand img {
  margin-bottom: 12px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer__company {
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  font-size: 0.9375rem;
}

.footer__address {
  font-size: 0.8125rem;
  line-height: 1.8;
}

.footer__nav ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__nav a {
  font-size: 0.8125rem;
  transition: color 0.2s;
}

.footer__nav a:hover {
  color: var(--white);
}

.footer__sns {
  display: flex;
  gap: 10px;
}

.footer__sns img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  transition: opacity 0.2s;
}

.footer__sns a:hover img {
  opacity: 0.8;
}

.footer__copy {
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ========================================
   Mobile CTA
   ======================================== */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--white);
  padding: 8px 12px;
  gap: 8px;
}

.mobile-cta__btn {
  flex: 1;
  display: block;
  line-height: 0;
}

.mobile-cta__btn img {
  width: 100%;
  height: auto;
  display: block;
}

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 1100px) {
  .header__nav-list {
    gap: 20px;
  }

  .header__nav-list a {
    font-size: 0.8125rem;
  }

  .header__logo-text {
    font-size: 1rem;
  }

  .header__tel-img {
    height: 48px;
  }
}

@media (max-width: 1024px) {
  .header__nav-list {
    gap: 16px;
  }

  .carousel__slide {
    flex: 0 0 calc(50% - 10px);
  }

  .service__grid,
  .point__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service__illust {
    width: 140px;
    top: 32px;
  }

  .price__illust {
    width: 140px;
    top: 32px;
  }

  .flow__steps {
    flex-wrap: wrap;
    gap: 12px;
  }

  .flow-step {
    flex: 0 0 calc(50% - 20px);
    max-width: none;
  }

  .flow-step__arrow {
    display: none;
  }
}

@media (max-width: 768px) {
  :root {
    --topbar-h: 30px;
    --header-h: 60px;
  }

  .sp-only {
    display: inline;
  }
  .pc-only {
    display: none;
  }

  .container {
    padding: 0 20px;
  }

  .hero__carousel.container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .section__title {
    font-size: 1.375rem;
    margin-bottom: 28px;
  }

  .title-mini {
    font-size: 0.875rem;
  }

  .topbar__text {
    font-size: 0.75rem;
  }

  .header__logo-text {
    font-size: 0.9375rem;
  }

  .header__logo img {
    height: 32px;
  }

  .header__nav {
    position: fixed;
    top: 0;
    right: 0;
    left: auto;
    bottom: 0;
    width: min(85%, 300px);
    height: 100dvh;
    background: #057385;
    box-shadow: -4px 0 16px rgba(0, 0, 0, 0.12);
    padding: calc(var(--site-header-h) + 24px) 24px 24px;
    transform: translateX(100%);
    visibility: hidden;
    transition:
      transform 0.3s ease,
      visibility 0.3s;
    z-index: 1001;
  }

  .header__nav.is-open {
    transform: translateX(0);
    visibility: visible;
  }

  .header__nav-close {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: calc(var(--site-header-h) + 8px);
    right: 16px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.75rem;
    line-height: 1;
    cursor: pointer;
    padding: 0;
  }

  .header__nav-list {
    flex-direction: column;
    gap: 0;
  }

  .header__nav-list a {
    display: block;
    padding: 14px 0;
    font-size: 1rem;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  }

  .header__nav-list a:hover {
    color: #fff;
  }

  .header__actions {
    display: none;
  }

  .header__burger {
    display: flex;
  }

  .hero {
    min-height: auto;
    margin-bottom: 0;
  }

  .hero__bg {
    background-image: url("../images/fv-cleaning-room-sp.png");
    background-position: 85% 40%;
  }

  .hero__content {
    padding: 24px 16px 12px;
    flex: none;
    text-align: center;
    align-items: center;
  }

  .hero__label {
    font-size: 0.875rem;
    margin-top: 40px;
    margin-bottom: 12px;
    width: 100%;
    text-align: left;
  }

  .hero__title {
    width: 100%;
    text-align: left;
  }

  .hero__title > .sp-only {
    display: block;
    text-align: left;
    font-size: 1.43em;
  }

  .hero__title {
    max-width: none;
    font-size: clamp(1.5rem, 6vw, 2rem);
    letter-spacing: 0.02em;
    margin-bottom: 20px;
  }

  .hero__badges {
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-bottom: 4px;
  }

  .hero__badges img {
    width: auto;
    height: 96px;
    object-fit: contain;
  }

  .hero__badges img.hero__badge--large {
    flex: none;
    width: auto;
    max-width: none;
    height: 84px;
    margin: 0;
    object-fit: contain;
  }

  .hero__carousel-wrap {
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
    margin-top: 16px;
    margin-bottom: 12%;
    padding: 0 12px 28px;
    z-index: 2;
    transform: translateY(20%);
  }

  .hero__carousel {
    gap: 4px;
  }

  .carousel__btn {
    width: 36px;
    height: 36px;
  }

  .carousel__btn img {
    width: 36px;
    height: 36px;
  }

  .carousel__slide {
    flex: 0 0 calc(85% - 10px);
  }

  .service {
    padding-top: 56px;
  }

  .service__illust {
    display: none;
  }

  .price__illust {
    display: none;
  }

  .section {
    padding: 56px 0;
  }

  .service__grid,
  .point__grid {
    grid-template-columns: 1fr;
  }

  .service__grid {
    padding: 0;
    gap: 16px;
  }

  .service-card {
    padding: 20px 16px;
  }

  .service-card__title {
    font-size: 1.25rem;
    margin-bottom: 12px;
  }

  .service-card__icon {
    margin-bottom: 16px;
  }

  .service-card__icon img {
    width: 64px;
    height: 64px;
  }

  .service-card__text {
    font-size: 0.8125rem;
    line-height: 1.8;
  }

  .point {
    padding-bottom: 40px;
  }

  .point__lead {
    font-size: 0.875rem;
    margin-bottom: 24px;
  }

  .point__grid .point-card:last-child {
    grid-column: auto;
    max-width: none;
  }

  .checklist {
    padding-top: 40px;
  }

  .checklist__title {
    margin-bottom: 28px;
  }

  .checklist__grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 24px 16px;
    border-radius: 12px;
  }

  .checklist__heading {
    font-size: 1rem;
  }

  .checklist__list li {
    font-size: 0.8125rem;
  }

  .area {
    padding: 48px 0 56px;
  }

  .area__card {
    grid-template-columns: 1fr;
    padding: 28px 24px;
    gap: 24px;
  }

  .area__cities {
    gap: 8px;
  }

  .area__cities li {
    font-size: 0.75rem;
    padding: 8px 12px;
  }

  .area__title {
    font-size: 1.5rem;
  }

  .company-outline {
    padding: calc(var(--site-header-h) + 40px) 0 64px;
  }

  .company-outline__header {
    margin-bottom: 40px;
  }

  .company-outline__row {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 28px 0;
  }

  .company-outline__label {
    padding-top: 0;
  }

  .results__grid {
    grid-template-columns: 1fr;
    gap: 16px;
    justify-items: center;
  }

  .result-card {
    width: 90%;
    padding: 20px 16px;
    border-radius: 16px;
  }

  .result-card__title {
    font-size: 1.125rem;
  }

  .result-card__text {
    font-size: 0.875rem;
    line-height: 1.7;
  }

  .results__more {
    margin-top: 28px;
  }

  .results__more-btn {
    width: 100%;
    max-width: 280px;
    padding: 12px 32px;
    font-size: 0.9375rem;
  }

  .section__title--left {
    text-align: center;
  }

  .section__title--left .point__lead {
    font-size: 0.875rem;
    margin-top: 8px;
    line-height: 1.7;
  }

  .point__lead {
    text-align: center;
  }

  .price-table {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .price-table__small {
    font-size: 0.75rem;
    font-weight: 200;
    color: var(--text-light);
  }

  .price__tables {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: none;
  }

  .price-table h3,
  .price-table__title {
    font-size: 1rem;
    margin-left: 0;
    margin-bottom: 8px;
    text-align: center;
  }

  .price-table thead th,
  .price-table tbody td {
    font-size: 0.75rem;
    padding: 8px 10px;
  }

  .price-table tbody td:first-child {
    padding-left: 12px;
  }

  .instagram__embed {
    max-width: 100%;
  }

  .instagram__iframe {
    height: 360px;
  }

  .instagram__lead {
    font-size: 0.875rem;
    margin-bottom: 24px;
  }

  .contact__lead {
    font-size: 0.875rem;
    margin-bottom: 28px;
  }

  .contact__btn {
    width: 100%;
    min-width: 0;
  }

  .flow-step {
    flex: 0 0 70%;
    max-width: 70%;
    margin-left: auto;
    margin-right: auto;
    padding: 20px 14px;
  }

  .flow-step__title {
    font-size: 0.875rem;
  }

  .flow-step__text {
    font-size: 0.75rem;
  }

  .faq__lead {
    font-size: 0.875rem;
    margin-bottom: 28px;
  }

  .faq__question {
    padding: 14px 14px;
    gap: 10px;
  }

  .faq__q-text {
    font-size: 0.875rem;
  }

  .faq__answer {
    padding: 14px 14px 16px 14px;
  }

  .faq__answer p {
    font-size: 0.8125rem;
  }

  .cta::before {
    inset: 0;
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    background-size: cover;
    background-position: center bottom;
  }

  .cta__inner {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .cta__inner--buttons {
    gap: 20px;
  }

  .cta__btn {
    width: 100%;
    min-width: 0;
    padding: 26px 60px;
    font-size: 1.21875rem;
  }

  .cta__title {
    font-size: 1.2375rem;
  }

  .cta__note {
    font-size: 0.7rem;
  }

  .cta__lead {
    font-size: 0.8125rem;
  }

  .cta__tel img {
    height: 52px;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 24px;
  }

  .footer__brand img {
    margin-left: auto;
    margin-right: auto;
  }

  .footer__nav ul {
    align-items: center;
  }

  .footer__sns {
    justify-content: center;
  }

  .mobile-cta {
    display: flex;
    padding: 6.4px 10%;
    gap: 6.4px;
  }

  body {
    padding-bottom: 58px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 20px;
  }

  .hero__carousel.container {
    padding-left: 12px;
    padding-right: 12px;
  }

  .hero__title {
    font-size: 1.375rem;
  }

  .hero__badges {
    gap: 10px;
    justify-content: center;
    align-items: center;
  }

  .hero__badges img {
    width: auto;
    height: 88px;
    object-fit: contain;
  }

  .hero__badges img.hero__badge--large {
    height: 78px;
    width: auto;
    max-width: none;
    object-fit: contain;
  }

  .hero__carousel-wrap {
    margin-top: 12px;
    padding: 0 8px 24px;
  }

  .cases-page__main {
    padding-top: calc(var(--site-header-h) + 32px);
  }

  .cases-page__lead {
    font-size: 0.875rem;
    margin-bottom: 28px;
  }

  .service {
    padding-top: 48px;
  }

  .section__title {
    font-size: 1.25rem;
  }

  .area__cities li {
    font-size: 0.6875rem;
    padding: 6px 10px;
  }

  .area__card {
    padding: 20px 16px;
  }

  .checklist__grid {
    padding: 20px 12px;
  }

  .instagram__iframe {
    height: 300px;
  }

  .price-table thead th,
  .price-table tbody td {
    font-size: 0.6875rem;
    padding: 7px 8px;
  }
}
