/* ==============================
   Booking Page Styles
   ============================== */

/* --- SP-only line break (hidden on desktop) --- */
br.sp-only { display: none; }

/* --- Page Hero (Content Header) --- */
.tt-page-hero {
  padding: 140px 0 60px;
  background: linear-gradient(135deg, var(--color-blue-gray) 0%, var(--color-light-yellow) 100%);
  text-align: center;
}

.tt-page-hero__title {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--color-black);
  margin-top: 8px;
  margin-bottom: 16px;
}

.tt-page-hero__desc {
  font-size: 16px;
  font-weight: 500;
  color: var(--color-black);
  line-height: 1.7;
}

/* ---------- サービス選択セクション ---------- */
.tt-booking-select {
  padding: var(--section-pt) 0 var(--section-pb);
}

.tt-booking-select .tt-inner--narrow {
  max-width: 1440px;
  padding: 0 56px;
}

.tt-booking-select__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 48px;
  justify-content: center;
}

/* 3カード並列のため、カード幅を絞る（common.cssの520px固定を上書き） */
.tt-booking-select__grid > .tt-service-card {
  width: calc((100% - 64px) / 3);
  min-width: 320px;
  max-width: 440px;
  padding: 32px 32px;
}

/* カード説明文を左寄せ */
.tt-booking-select .tt-service-card__desc {
  text-align: left;
}

/* チェックバッジを1行表示 */
.tt-booking-select .tt-service-card__tags {
  flex-wrap: nowrap;
}

.tt-booking-select .tt-service-card .tt-tag:not(.tt-tag--main) {
  padding: 8px 12px;
  white-space: nowrap;
}

/* ハウスクリーニングカード（ブルー） */
.tt-service-card--blue .tt-tag:not(.tt-tag--main) {
  border-color: #4A8DC4;
}

/* ---------- カード全体リンク ---------- */
a.tt-service-card {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

a.tt-service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0px 12px 40px rgba(45, 43, 41, 0.16);
}

/* ---------- ご案内セクション ---------- */
.tt-booking-info {
  padding: var(--section-pt) 0 var(--section-pb);
  background: var(--color-blue-gray);
}

.tt-booking-info__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.tt-booking-info__item {
  text-align: center;
  background: #fff;
  border-radius: var(--radius-card);
  padding: 32px 20px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.tt-booking-info__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--color-light-blue);
  border-radius: 50%;
  color: var(--color-main);
  margin-bottom: 16px;
}

.tt-booking-info__title {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 8px;
}

.tt-booking-info__text {
  font-size: 14px;
  line-height: 1.8;
  color: #6b7280;
}

/* ---------- ご利用にあたってのお願い ---------- */
.tt-booking-notice {
  padding: 0 0 var(--section-pb);
  background: var(--color-blue-gray);
}

.tt-booking-notice__box {
  background: #fff;
  border-radius: var(--radius-card);
  border-left: 4px solid var(--color-main);
  padding: 40px 48px;
  max-width: 880px;
  margin: 40px auto 0;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

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

.tt-booking-notice__list li {
  position: relative;
  padding-left: 24px;
  font-size: 14.5px;
  line-height: 1.8;
  color: #494C59;
}

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

.tt-booking-notice__list li strong {
  color: var(--color-main);
  font-weight: 600;
}

/* ---------- 回数券案内 ---------- */
.tt-booking-subscription {
  padding: 0 0 var(--section-pb);
  background: var(--color-blue-gray);
}

.tt-booking-subscription__card {
  background: #fff;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 48px 40px;
  text-align: center;
}

.tt-booking-subscription__title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 16px;
}

.tt-booking-subscription__desc {
  font-size: 15px;
  line-height: 1.8;
  color: #6b7280;
  margin-bottom: 32px;
}

.tt-booking-subscription__btns {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ==============================
   RESPONSIVE: Tablet (768px)
   ============================== */
@media (max-width: 768px) {
  br.sp-only { display: block; }

  .tt-page-hero {
    padding: 100px 0 40px;
  }

  .tt-page-hero__title {
    font-size: 28px;
  }

  .tt-booking-select .tt-inner--narrow {
    padding: 0 20px;
  }

  .tt-booking-select__grid {
    flex-direction: column;
    align-items: center;
    gap: 24px;
    margin-top: 32px;
  }

  .tt-booking-select .tt-service-card .tt-service-card__tags {
    flex-wrap: wrap;
  }

  .tt-booking-info__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 32px;
  }

  .tt-booking-info__item {
    padding: 24px 16px;
  }

  .tt-booking-info__title {
    font-size: 15px;
  }

  .tt-booking-info__text {
    font-size: 13px;
  }

  .tt-booking-notice__box {
    padding: 28px 22px;
    margin-top: 32px;
  }

  .tt-booking-notice__list li {
    font-size: 13.5px;
    padding-left: 20px;
  }

  .tt-booking-subscription__card {
    padding: 32px 24px;
  }

  .tt-booking-subscription__title {
    font-size: 19px;
  }

  .tt-booking-subscription__btns {
    flex-direction: column;
    align-items: center;
  }
}

/* ==============================
   RESPONSIVE: Mobile (480px)
   ============================== */
@media (max-width: 480px) {
  .tt-page-hero {
    padding: 80px 0 32px;
  }

  .tt-page-hero__title {
    font-size: 24px;
  }
}
