/* ==============================
   Cleaning (House Cleaning) Page Styles
   ハウスクリーニング専用ページ
   ============================== */

/* ハウスクリーニングはブルー(#4A8DC4)をアクセントカラーに */
.cleaning-page {
  --cl-accent: #4A8DC4;
  --cl-accent-light: #E8F1F9;
  --cl-accent-dark: #357AB0;
}

/* ==============================
   ヒーロー
   ============================== */
.tt-cl-hero {
  padding: 160px 0 100px;
  background: linear-gradient(135deg, var(--color-blue-gray) 0%, var(--color-white) 50%, var(--cl-accent-light) 100%);
  position: relative;
  overflow: hidden;
}

.tt-cl-hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 50%;
  height: 160%;
  background: radial-gradient(ellipse at center, var(--cl-accent) 0%, transparent 70%);
  opacity: 0.12;
  pointer-events: none;
}

.tt-cl-hero__content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.tt-cl-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-white);
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-card);
  margin-bottom: 24px;
}

.tt-cl-hero__badge-icon {
  width: 24px;
  height: 24px;
  background: var(--cl-accent-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tt-cl-hero__badge-icon svg {
  width: 14px;
  height: 14px;
  color: var(--cl-accent);
}

.tt-cl-hero__badge span {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-black);
}

.tt-cl-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 500;
  line-height: 1.3;
  color: var(--color-black);
  margin-bottom: 20px;
}

.tt-cl-hero__title-accent {
  color: var(--cl-accent);
}

.tt-cl-hero__desc {
  font-size: 16px;
  color: var(--color-black);
  margin-bottom: 32px;
  line-height: 1.8;
}

.tt-cl-hero__features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tt-cl-hero__feature {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--color-white);
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  box-shadow: 0 2px 8px rgba(45, 43, 41, 0.06);
}

.tt-cl-hero__feature svg {
  width: 18px;
  height: 18px;
  color: var(--cl-accent);
}

.tt-cl-hero__feature span {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 500;
  color: var(--color-black);
}

.tt-cl-hero__visual {
  position: relative;
}

.tt-cl-hero__image {
  width: 100%;
  max-height: 400px;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(45, 43, 41, 0.16);
}

.tt-cl-hero__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 65% center;
}

/* ==============================
   人気セットメニュー
   ============================== */
.tt-cl-set {
  background: var(--color-white);
}

.tt-cl-set__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 8px;
}

.tt-cl-set__card {
  background: var(--color-blue-gray);
  border-radius: var(--radius-card);
  padding: 36px 28px;
  text-align: center;
  position: relative;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.tt-cl-set__card:hover {
  background: var(--color-white);
  border-color: var(--cl-accent);
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}

.tt-cl-set__card--popular {
  background: var(--color-white);
  border-color: var(--cl-accent);
  box-shadow: var(--shadow-card);
}

.tt-cl-set__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--cl-accent);
  color: var(--color-white);
  padding: 6px 18px;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
}

.tt-cl-set__head {
  margin-bottom: 16px;
}

.tt-cl-set__count {
  display: inline-block;
  background: var(--cl-accent-light);
  color: var(--cl-accent);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 12px;
}

.tt-cl-set__title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 500;
  color: var(--color-black);
}

.tt-cl-set__price {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 500;
  color: var(--cl-accent);
  margin-bottom: 24px;
  line-height: 1.1;
}

.tt-cl-set__tax {
  font-size: 13px;
  color: #9C9688;
  margin-left: 6px;
}

.tt-cl-set__items {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tt-cl-set__items li {
  background: var(--color-white);
  border-radius: var(--radius-pill);
  padding: 8px 16px;
  font-size: 14px;
  color: var(--color-black);
  box-shadow: 0 2px 8px rgba(45, 43, 41, 0.04);
}

.tt-cl-set__card--popular .tt-cl-set__items li {
  background: var(--color-blue-gray);
}

/* ==============================
   単品メニュー
   ============================== */
.tt-cl-single {
  background: var(--color-blue-gray);
}

.tt-cl-single__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 8px;
}

.tt-cl-single__item {
  background: var(--color-white);
  border-radius: var(--radius-card);
  padding: 22px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-left: 4px solid var(--cl-accent);
  transition: transform 0.2s ease;
}

.tt-cl-single__item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}

.tt-cl-single__name {
  font-size: 15px;
  color: var(--color-black);
  font-weight: 500;
}

.tt-cl-single__price {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 500;
  color: var(--cl-accent);
}

/* ==============================
   オプション
   ============================== */
.tt-cl-option {
  background: var(--color-white);
}

.tt-cl-option__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 720px;
  margin: 0 auto;
}

.tt-cl-option__item {
  background: var(--color-blue-gray);
  border-radius: var(--radius-card);
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.tt-cl-option__name {
  font-size: 14px;
  color: var(--color-black);
}

.tt-cl-option__price {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 500;
  color: var(--cl-accent);
  white-space: nowrap;
}

/* ==============================
   メニュー詳細
   ============================== */
.tt-cl-detail {
  background: var(--color-blue-gray);
}

.tt-cl-detail__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.tt-cl-detail__card {
  background: var(--color-white);
  border-radius: var(--radius-card);
  padding: 32px;
  border-top: 4px solid var(--cl-accent);
}

.tt-cl-detail__title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 500;
  color: var(--color-black);
  margin-bottom: 16px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px;
}

.tt-cl-detail__price {
  font-family: var(--font-heading);
  font-size: 18px;
  color: var(--cl-accent);
  font-weight: 500;
}

.tt-cl-detail__desc {
  font-size: 14px;
  line-height: 1.9;
  color: var(--color-black);
}

/* ==============================
   家事代行との違い
   ============================== */
.tt-cl-vs {
  background: var(--color-white);
}

.tt-cl-vs__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}

.tt-cl-vs__card {
  background: var(--color-blue-gray);
  border-radius: var(--radius-card);
  padding: 40px 36px;
  border-top: 6px solid var(--color-green);
  display: flex;
  flex-direction: column;
}

.tt-cl-vs__card--cleaning {
  border-top-color: var(--cl-accent);
  background: var(--cl-accent-light);
}

.tt-cl-vs__label {
  display: inline-block;
  background: var(--color-green);
  color: var(--color-white);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 16px;
  align-self: flex-start;
}

.tt-cl-vs__card--cleaning .tt-cl-vs__label {
  background: var(--cl-accent);
}

.tt-cl-vs__title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 500;
  color: var(--color-black);
  margin-bottom: 12px;
}

.tt-cl-vs__desc {
  font-size: 14px;
  line-height: 1.8;
  color: var(--color-black);
  margin-bottom: 20px;
}

.tt-cl-vs__list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.tt-cl-vs__list li {
  position: relative;
  padding-left: 24px;
  font-size: 14px;
  color: var(--color-black);
}

.tt-cl-vs__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-green);
  font-weight: bold;
}

.tt-cl-vs__card--cleaning .tt-cl-vs__list li::before {
  color: var(--cl-accent);
}

/* ==============================
   ご案内（注意事項）
   ============================== */
.tt-cl-notice {
  background: var(--color-blue-gray);
}

.tt-cl-notice__box {
  background: var(--color-white);
  border-radius: var(--radius-card);
  padding: 40px 48px;
  max-width: 880px;
  margin: 0 auto;
}

.tt-cl-notice__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.tt-cl-notice__list li {
  position: relative;
  padding-left: 28px;
  font-size: 14px;
  line-height: 1.8;
  color: var(--color-black);
}

.tt-cl-notice__list li::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 11px;
  width: 6px;
  height: 6px;
  background: var(--cl-accent);
  border-radius: 50%;
}

/* ==============================
   CTA
   ============================== */
.tt-cl-cta {
  background: var(--color-white);
}

.tt-cl-cta__box {
  background: linear-gradient(135deg, var(--cl-accent) 0%, var(--cl-accent-dark) 100%);
  border-radius: var(--radius-card);
  padding: 64px 48px;
  text-align: center;
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

.tt-cl-cta__box::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.18) 0%, transparent 60%);
  pointer-events: none;
}

.tt-cl-cta__title {
  position: relative;
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 16px;
}

.tt-cl-cta__desc {
  position: relative;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 32px;
  opacity: 0.95;
}

.tt-cl-cta__btns {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.tt-cl-cta__btns .tt-btn--primary {
  background: var(--color-white);
  border-color: var(--color-white);
  color: var(--cl-accent);
}

.tt-cl-cta__btns .tt-btn--primary:hover {
  background: var(--cl-accent-light);
  border-color: var(--cl-accent-light);
}

/* ==============================
   レスポンシブ
   ============================== */
@media (max-width: 1024px) {
  .tt-cl-hero__content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .tt-cl-hero__features {
    justify-content: center;
  }

  .tt-cl-hero__visual {
    order: -1;
    max-width: 500px;
    margin: 0 auto;
  }

  .tt-cl-hero__image {
    max-height: 300px;
  }

  .tt-cl-set__grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }

  .tt-cl-single__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tt-cl-detail__grid {
    grid-template-columns: 1fr;
  }

  .tt-cl-vs__grid {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 768px) {
  .tt-cl-hero {
    padding: 120px 0 60px;
  }

  .tt-cl-single__grid {
    grid-template-columns: 1fr;
  }

  .tt-cl-option__item {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .tt-cl-detail__card {
    padding: 24px;
  }

  .tt-cl-notice__box {
    padding: 28px 24px;
  }

  .tt-cl-cta__box {
    padding: 48px 24px;
  }

  .tt-cl-cta__title {
    font-size: 24px;
  }

  .tt-cl-cta__btns {
    flex-direction: column;
    align-items: center;
  }

  .tt-cl-cta__btns .tt-btn {
    width: 100%;
    max-width: 320px;
  }

}

@media (max-width: 480px) {
  .tt-cl-hero__title {
    font-size: 28px;
  }

  .tt-cl-set__price {
    font-size: 30px;
  }

  .tt-cl-set__card {
    padding: 28px 20px;
  }
}
