/* ==========================================================
   エアコンクリーニング ページ専用 CSS
   ========================================================== */

/* ヘッダーロゴ補助テキスト (エアコンクリーニング) */
.header__logo-sub-line {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--c-green-700);
  margin-top: 2px;
}

/* 「防水・塗装ページ」へ戻るリンク */
.nav__back {
  font-size: 12px !important;
  padding: 6px 14px !important;
  border: 1px solid var(--c-teal-300);
  border-radius: 999px;
  color: var(--c-teal-700) !important;
  letter-spacing: 0.04em !important;
  transition: background .2s var(--ease), color .2s var(--ease);
}
.nav__back:hover {
  background: var(--c-teal-700);
  color: var(--c-white) !important;
  opacity: 1;
}
.nav__back::after { display: none !important; }

/* ==========================================================
   Hero (エアコンクリーニング用バブル装飾)
   ========================================================== */
.hero--clean {
  background:
    radial-gradient(700px 300px at 12% 28%, rgba(159, 210, 222, 0.35), transparent 60%),
    radial-gradient(800px 400px at 88% 70%, rgba(180, 216, 143, 0.3), transparent 60%),
    linear-gradient(180deg, var(--c-cream) 0%, var(--c-ivory) 100%);
}

.hero__bubble {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.85) 0%, rgba(159, 210, 222, 0.45) 40%, rgba(159, 210, 222, 0) 70%);
  box-shadow: inset -8px -8px 18px rgba(31, 107, 122, 0.08);
  pointer-events: none;
  animation: bubbleFloat 10s ease-in-out infinite;
}
.hero__bubble--1 {
  width: 140px;
  height: 140px;
  top: 18%;
  right: 10%;
  animation-delay: 0s;
}
.hero__bubble--2 {
  width: 90px;
  height: 90px;
  top: 60%;
  right: 22%;
  animation-delay: 2s;
}
.hero__bubble--3 {
  width: 64px;
  height: 64px;
  top: 38%;
  right: 6%;
  animation-delay: 4s;
}
@keyframes bubbleFloat {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.85; }
  50% { transform: translate(-10px, -16px) scale(1.04); opacity: 1; }
}

@media (max-width: 720px) {
  .hero__bubble--1 { width: 90px; height: 90px; top: 8%; right: 4%; }
  .hero__bubble--2 { width: 60px; height: 60px; top: 50%; right: 8%; }
  .hero__bubble--3 { display: none; }
}

/* LINE プロモバナー (Hero) */
.hero__promo {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 14px 22px;
  background: var(--c-white);
  border: 1.5px solid rgba(6, 199, 85, 0.3);
  border-radius: 999px;
  box-shadow: 0 8px 22px rgba(6, 199, 85, 0.12);
  margin-bottom: 32px;
  max-width: 100%;
}
.hero__promo-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: var(--c-line-green);
  color: var(--c-white);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  white-space: nowrap;
  flex-shrink: 0;
}
.hero__promo-text {
  font-size: 14px;
  color: var(--c-text);
  letter-spacing: 0.02em;
}
.hero__promo-text strong {
  color: var(--c-line-green-dark);
  font-weight: 900;
  font-size: 1.1em;
  margin: 0 2px;
}

@media (max-width: 720px) {
  .hero__promo {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    border-radius: 16px;
    padding: 14px 18px;
  }
  .hero__promo-text { font-size: 13px; line-height: 1.6; }
}

/* ==========================================================
   サービスショーケース
   ========================================================== */
.svc-works {
  background: var(--c-ivory);
  position: relative;
  overflow: hidden;
}
.svc-works::before {
  content: "";
  position: absolute;
  top: 60px;
  left: -80px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(95, 160, 110, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(8px);
  pointer-events: none;
  z-index: 0;
}
.svc-works::after {
  content: "";
  position: absolute;
  bottom: 80px;
  right: -100px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(159, 210, 222, 0.18) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(8px);
  pointer-events: none;
  z-index: 0;
}
.svc-works .section__inner { position: relative; z-index: 1; }

.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}
.svc-card {
  position: relative;
  background: var(--c-white);
  border-radius: var(--radius-l);
  padding: 36px 28px 30px;
  border: 1px solid var(--c-line);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
  overflow: hidden;
}
.svc-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--c-teal-700) 0%, var(--c-green-500) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease);
}
.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-l);
  border-color: var(--c-teal-300);
}
.svc-card:hover::before { transform: scaleX(1); }

.svc-card__icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--c-cream) 0%, var(--c-green-100) 100%);
  color: var(--c-teal-700);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
}
.svc-card h3 {
  font-family: var(--ff-sans);
  font-weight: 800;
  font-size: 19px;
  color: var(--c-teal-900);
  margin-bottom: 10px;
  letter-spacing: 0.04em;
}
.svc-card p {
  font-size: 13.5px;
  color: var(--c-text-soft);
  line-height: 1.8;
  margin-bottom: 16px;
}
.svc-card__price {
  display: inline-block;
  font-family: var(--ff-sans);
  font-weight: 800;
  font-size: 17px;
  color: var(--c-teal-700);
  letter-spacing: 0.02em;
  padding: 6px 14px;
  background: var(--c-cream);
  border-radius: 6px;
}

.svc-works__note {
  text-align: center;
  font-size: 12px;
  color: var(--c-text-soft);
  line-height: 1.9;
  max-width: 760px;
  margin: 0 auto;
}

@media (max-width: 960px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .svc-grid { grid-template-columns: 1fr; gap: 16px; }
  .svc-card { padding: 28px 24px 24px; }
}

/* ==========================================================
   クリーニングサービス画像ギャラリー
   ========================================================== */
.svc-gallery {
  background: var(--c-cream);
  position: relative;
  overflow: hidden;
}
.svc-gallery::before {
  content: "";
  position: absolute;
  top: 80px;
  left: -100px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(95, 160, 110, 0.16) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(10px);
  pointer-events: none;
  z-index: 0;
}
.svc-gallery::after {
  content: "";
  position: absolute;
  bottom: 60px;
  right: -100px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(159, 210, 222, 0.18) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(10px);
  pointer-events: none;
  z-index: 0;
}
.svc-gallery .section__inner { position: relative; z-index: 1; }

.svc-gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 28px;
}

.svc-gallery__card {
  background: var(--c-white);
  border-radius: var(--radius-l);
  overflow: hidden;
  border: 1px solid var(--c-line);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  display: flex;
  flex-direction: column;
}
.svc-gallery__card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-l);
}

.svc-gallery__img {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--c-cream);
}
.svc-gallery__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .8s var(--ease);
}
.svc-gallery__card:hover .svc-gallery__img img { transform: scale(1.06); }

.svc-gallery__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 14px;
  background: rgba(20, 82, 95, 0.92);
  color: var(--c-white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  border-radius: 4px;
  z-index: 1;
  backdrop-filter: blur(6px);
}
.svc-gallery__badge--feature {
  background: linear-gradient(135deg, var(--c-green-500) 0%, var(--c-green-700) 100%);
  box-shadow: 0 4px 10px rgba(95, 160, 110, 0.35);
}

/* 主力サービス: 1段目をワイドに */
.svc-gallery__card--feature {
  grid-column: span 1;
  border: 1.5px solid var(--c-green-500);
  box-shadow: 0 8px 24px rgba(95, 160, 110, 0.18);
}
.svc-gallery__card--feature::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--c-green-500), var(--c-green-700));
  z-index: 2;
}
.svc-gallery__card--feature { position: relative; }

.svc-gallery__body {
  padding: 24px 26px 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.svc-gallery__body h3 {
  font-family: var(--ff-sans);
  font-weight: 800;
  font-size: 19px;
  color: var(--c-teal-900);
  margin-bottom: 10px;
  letter-spacing: 0.04em;
}
.svc-gallery__body p {
  font-size: 13.5px;
  color: var(--c-text-soft);
  line-height: 1.85;
  margin-bottom: 18px;
  flex: 1;
}

.svc-gallery__price {
  display: inline-block;
  font-family: var(--ff-sans);
  font-weight: 800;
  font-size: 20px;
  color: var(--c-teal-700);
  letter-spacing: 0.02em;
  padding: 8px 16px;
  background: linear-gradient(135deg, rgba(180, 216, 143, 0.2) 0%, rgba(159, 210, 222, 0.2) 100%);
  border-radius: 8px;
  align-self: flex-start;
}
.svc-gallery__price small {
  font-size: 11px;
  font-weight: 600;
  color: var(--c-text-soft);
  margin-left: 4px;
  letter-spacing: 0.04em;
}

.svc-gallery__note {
  text-align: center;
  font-size: 12px;
  color: var(--c-text-soft);
  line-height: 1.9;
  max-width: 760px;
  margin: 0 auto;
}
.svc-gallery__note a {
  color: var(--c-teal-700);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 960px) {
  .svc-gallery__grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
@media (max-width: 560px) {
  .svc-gallery__grid { grid-template-columns: 1fr; gap: 16px; }
  .svc-gallery__body { padding: 22px 22px 22px; }
  .svc-gallery__body h3 { font-size: 18px; }
  .svc-gallery__price { font-size: 18px; }
}

/* ==========================================================
   メニュー表
   ========================================================== */
.menu {
  background: var(--c-cream);
  position: relative;
  overflow: hidden;
}
.menu::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -80px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(95, 160, 110, 0.16) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(10px);
  pointer-events: none;
  z-index: 0;
}
.menu::after {
  content: "";
  position: absolute;
  bottom: -60px;
  left: -100px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(47, 138, 153, 0.16) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(10px);
  pointer-events: none;
  z-index: 0;
}
.menu .section__inner { position: relative; z-index: 1; }

/* LINEプロモバナー */
.menu__promo {
  display: grid;
  grid-template-columns: 64px 1fr 28px;
  align-items: center;
  gap: 20px;
  padding: 24px 32px;
  background: linear-gradient(135deg, #F2FFF7 0%, #DCFBE8 100%);
  border: 2px solid rgba(6, 199, 85, 0.3);
  border-radius: var(--radius-l);
  margin-bottom: 40px;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  box-shadow: 0 12px 28px rgba(6, 199, 85, 0.14);
  color: var(--c-text);
}
.menu__promo:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(6, 199, 85, 0.22);
  opacity: 1;
}
.menu__promo-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--c-line-green) 0%, var(--c-line-green-dark) 100%);
  color: var(--c-white);
  border-radius: 16px;
  box-shadow: 0 6px 14px rgba(6, 199, 85, 0.4);
  flex-shrink: 0;
}
.menu__promo-body { min-width: 0; }
.menu__promo-tag {
  display: inline-block;
  padding: 3px 10px;
  background: var(--c-line-green-dark);
  color: var(--c-white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  border-radius: 4px;
  margin-bottom: 8px;
}
.menu__promo-title {
  font-family: var(--ff-sans);
  font-weight: 800;
  font-size: 18px;
  color: var(--c-teal-900);
  letter-spacing: 0.02em;
  line-height: 1.4;
  margin-bottom: 4px;
}
.menu__promo-title strong {
  font-size: 1.25em;
  color: var(--c-line-green-dark);
  font-weight: 900;
}
.menu__promo-sub {
  font-size: 12.5px;
  color: var(--c-text-soft);
  line-height: 1.6;
}
.menu__promo-arrow {
  color: var(--c-line-green-dark);
  display: grid;
  place-items: center;
}

@media (max-width: 720px) {
  .menu__promo {
    grid-template-columns: 48px 1fr;
    gap: 14px;
    padding: 20px 22px;
  }
  .menu__promo-icon { width: 48px; height: 48px; }
  .menu__promo-icon svg { width: 26px; height: 26px; }
  .menu__promo-title { font-size: 16px; }
  .menu__promo-arrow { display: none; }
}

/* メニュータイトル横の「税抜価格」バッジ */
.menu__title-tax {
  display: inline-block;
  padding: 4px 14px;
  margin-left: 10px;
  background: linear-gradient(135deg, var(--c-teal-700) 0%, var(--c-teal-900) 100%);
  color: var(--c-white);
  font-family: var(--ff-sans);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.12em;
  border-radius: 6px;
  vertical-align: middle;
  box-shadow: 0 3px 8px rgba(20, 82, 95, 0.28);
  position: relative;
  top: -4px;
}

@media (max-width: 720px) {
  .menu__title-tax {
    display: block;
    margin: 12px auto 0;
    width: fit-content;
    font-size: 12px;
    padding: 4px 12px;
    top: 0;
  }
}

/* 料金表 */
.menu__table-wrap {
  max-width: 880px;
  margin: 0 auto;
}
.menu__table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}
.menu__group {
  background: var(--c-white);
  border-radius: var(--radius-l);
  padding: 32px 32px 28px;
  box-shadow: var(--shadow-s);
  border: 1px solid var(--c-line);
  position: relative;
  overflow: hidden;
}
.menu__group::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--c-teal-700) 0%, var(--c-green-500) 100%);
}
.menu__group-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-sans);
  font-weight: 800;
  font-size: 17px;
  color: var(--c-teal-900);
  letter-spacing: 0.04em;
  margin-bottom: 22px;
  padding-bottom: 16px;
  border-bottom: 1px dashed var(--c-line);
}
/* グループタイトル右端の「税抜価格」ラベル */
.menu__group-tax {
  margin-left: auto;
  padding: 4px 10px;
  background: linear-gradient(135deg, var(--c-teal-700) 0%, var(--c-teal-900) 100%);
  color: var(--c-white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  border-radius: 5px;
  box-shadow: 0 2px 6px rgba(20, 82, 95, 0.28);
  flex-shrink: 0;
  white-space: nowrap;
}
.menu__group-icon {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  background: var(--c-cream);
  color: var(--c-teal-700);
  border-radius: 8px;
  flex-shrink: 0;
}

.menu__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.menu__list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 4px 0;
  position: relative;
}
.menu__list li::before {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  border-bottom: 1px dotted var(--c-line);
}
.menu__list li:last-child::before { display: none; }
.menu__list-option {
  margin-top: 8px;
  padding-top: 12px !important;
  border-top: 1px dashed var(--c-line);
}
.menu__list-option .menu__item::before {
  content: "+ ";
  color: var(--c-green-500);
  font-weight: 700;
}

.menu__item {
  font-size: 14px;
  color: var(--c-text);
  letter-spacing: 0.02em;
  line-height: 1.5;
}
.menu__price {
  font-family: var(--ff-sans);
  font-weight: 800;
  font-size: 16px;
  color: var(--c-teal-700);
  letter-spacing: 0.02em;
  white-space: nowrap;
  flex-shrink: 0;
}

.menu__note {
  font-size: 12px;
  color: var(--c-text-soft);
  line-height: 1.9;
  text-align: center;
  margin-top: 24px;
}

@media (max-width: 720px) {
  .menu__table { grid-template-columns: 1fr; gap: 16px; }
  .menu__group { padding: 26px 24px 22px; }
  .menu__group-title { font-size: 16px; }
  .menu__item { font-size: 13.5px; }
  .menu__price { font-size: 15px; }
}
