/* ==============================
   Housekeeping Service Page Styles
   ============================== */

/* --- Page Hero --- */
.tt-hk-hero {
  padding: 160px 0 100px;
  background: linear-gradient(135deg, var(--color-blue-gray) 0%, var(--color-white) 50%, var(--color-light-blue) 100%);
  position: relative;
  overflow: hidden;
}

.tt-hk-hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 50%;
  height: 160%;
  background: radial-gradient(ellipse at center, var(--color-main) 0%, transparent 70%);
  opacity: 0.15;
}

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

.tt-hk-hero__text {
  animation: tt-hk-fadeInUp 0.8s ease-out;
}

@keyframes tt-hk-fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.tt-hk-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-hk-hero__badge-icon {
  width: 24px;
  height: 24px;
  background: var(--color-light-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

.tt-hk-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-hk-hero__title-accent {
  color: var(--color-main);
}

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

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

.tt-hk-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-hk-hero__feature svg {
  width: 18px;
  height: 18px;
  color: var(--color-green);
}

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

.tt-hk-hero__visual {
  position: relative;
  animation: tt-hk-fadeInUp 0.8s ease-out 0.2s both;
}

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

.tt-hk-hero__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* ==============================
   メニューセクション
   ============================== */
.tt-hk-menu {
  background: var(--color-white);
}

.tt-hk-menu__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}

.tt-hk-menu__card {
  background: var(--color-blue-gray);
  border-radius: var(--radius-card);
  padding: 40px 32px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.tt-hk-menu__card:hover {
  background: var(--color-white);
  border-color: var(--color-light-blue);
  transform: translateY(-8px);
  box-shadow: var(--shadow-card);
}

.tt-hk-menu__icon {
  width: 120px;
  height: 120px;
  margin: 0 auto 24px;
  border-radius: 16px;
  overflow: hidden;
}

.tt-hk-menu__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.tt-hk-menu__title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 500;
  color: var(--color-black);
  margin-bottom: 16px;
}

.tt-hk-menu__desc {
  font-size: 14px;
  color: var(--color-black);
  margin-bottom: 24px;
  line-height: 1.8;
}

.tt-hk-menu__items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.tt-hk-menu__item {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 500;
  padding: 6px 14px;
  background: var(--color-white);
  border-radius: var(--radius-pill);
  color: var(--color-black);
  box-shadow: 0 2px 8px rgba(45, 43, 41, 0.06);
}

.tt-hk-menu__item--highlight {
  background: var(--color-green);
  color: var(--color-white);
}

/* 組み合わせ自由 */
.tt-hk-menu__combo {
  background: linear-gradient(135deg, var(--color-light-blue) 0%, var(--color-blue-gray) 100%);
  border-radius: var(--radius-card);
  padding: 32px;
  text-align: center;
  margin-bottom: 48px;
}

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

.tt-hk-menu__combo-badge svg {
  width: 20px;
  height: 20px;
  color: var(--color-yellow);
}

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

.tt-hk-menu__combo-text {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 500;
  color: var(--color-black);
  line-height: 1.8;
}

.tt-hk-menu__combo-hl {
  color: var(--color-main);
  font-weight: 500;
}

/* 引っ越し PICK UP */
.tt-hk-pickup {
  background: var(--color-green);
  padding: 60px;
  border-radius: var(--radius-card);
  color: var(--color-white);
}

.tt-hk-pickup__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.tt-hk-pickup__badge {
  background: var(--color-white);
  color: var(--color-green);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 500;
}

.tt-hk-pickup__title {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 500;
}

.tt-hk-pickup__desc {
  font-size: 16px;
  opacity: 0.9;
  margin-bottom: 32px;
  max-width: 600px;
}

.tt-hk-pickup__features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

.tt-hk-pickup__feature {
  background: var(--color-white);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
}

.tt-hk-pickup__feature-icon {
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.tt-hk-pickup__feature-icon img {
  width: 120px;
  height: 120px;
  object-fit: contain;
}

.tt-hk-pickup__feature h4 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--color-green);
}

.tt-hk-pickup__feature p {
  font-size: 14px;
  color: var(--color-green);
  opacity: 0.7;
  line-height: 1.6;
}

.tt-hk-pickup__cta {
  display: flex;
  gap: 16px;
}

.tt-hk-pickup__cta .tt-btn--secondary {
  background: var(--color-white);
  border-color: var(--color-white);
  color: var(--color-green);
}

.tt-hk-pickup__cta .tt-btn--primary {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: var(--color-white);
}

.tt-hk-pickup__cta .tt-btn--primary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--color-white);
}

/* ==============================
   料金セクション
   ============================== */
.tt-hk-pricing {
  background: var(--color-blue-gray);
}

.tt-hk-plan__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}

.tt-hk-plan__card {
  background: var(--color-white);
  border-radius: var(--radius-card);
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  border: 2px solid transparent;
}

.tt-hk-plan__card:hover {
  border-color: var(--color-main);
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}

.tt-hk-plan__card--popular {
  border-color: var(--color-main);
  box-shadow: var(--shadow-card);
}

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

.tt-hk-plan__title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 500;
  color: var(--color-black);
  margin-bottom: 8px;
}

.tt-hk-plan__price {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 500;
  color: var(--color-main);
  margin-bottom: 8px;
}

.tt-hk-plan__desc {
  font-size: 14px;
  color: var(--color-black);
  line-height: 1.7;
}

/* 延長 */
.tt-hk-extension {
  background: var(--color-white);
  border-radius: var(--radius-card);
  padding: 20px 24px;
  margin-bottom: 40px;
  text-align: center;
}

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

.tt-hk-extension__price {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 500;
  color: var(--color-main);
  margin-left: 16px;
}

/* 追加オプション */
.tt-hk-options {
  background: var(--color-white);
  border-radius: var(--radius-card);
  padding: 40px;
  margin-bottom: 24px;
}

.tt-hk-options__title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 500;
  color: var(--color-black);
  text-align: center;
  margin-bottom: 24px;
}

.tt-hk-options__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 500px;
  margin: 0 auto;
}

.tt-hk-options__item {
  background: var(--color-blue-gray);
  border-radius: var(--radius-card);
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.tt-hk-options__price {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 500;
  color: var(--color-main);
}

.tt-hk-options__note {
  font-size: 12px;
  color: #9C9688;
  margin-top: 12px;
  text-align: center;
}

/* コラプシブル */
.tt-hk-spot {
  background: var(--color-white);
  border-radius: var(--radius-card);
  margin-bottom: 24px;
  overflow: hidden;
}

.tt-hk-spot__header {
  padding: 24px 32px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s ease;
}

.tt-hk-spot__header:hover {
  background: var(--color-blue-gray);
}

.tt-hk-spot__title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 500;
  color: var(--color-black);
}

.tt-hk-spot__toggle {
  width: 32px;
  height: 32px;
  background: var(--color-gray);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.tt-hk-spot__toggle svg {
  width: 20px;
  height: 20px;
  color: var(--color-black);
  transition: transform 0.3s ease;
}

.tt-hk-spot.is-open .tt-hk-spot__toggle svg {
  transform: rotate(180deg);
}

.tt-hk-spot__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 32px;
}

.tt-hk-spot.is-open .tt-hk-spot__content {
  padding: 0 32px 32px;
}

.tt-hk-spot__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.tt-hk-spot__item {
  background: var(--color-blue-gray);
  border-radius: var(--radius-card);
  padding: 16px;
  text-align: center;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-black);
}

.tt-hk-spot__estimate {
  margin-top: 24px;
  padding: 16px;
  background: var(--color-light-blue);
  border-radius: var(--radius-card);
}

.tt-hk-spot__estimate-title {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-black);
  margin-bottom: 12px;
}

.tt-hk-spot__estimate-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  font-size: 13px;
  color: var(--color-black);
}

.tt-hk-spot__estimate-note {
  font-size: 12px;
  color: #9C9688;
  margin-top: 12px;
}

.tt-hk-spot__note {
  font-size: 13px;
  color: #9C9688;
  margin-top: 16px;
}

/* 出張料理との組み合わせ */
.tt-hk-combo {
  background: var(--color-main);
  border-radius: var(--radius-card);
  padding: 40px;
  margin-bottom: 48px;
  position: relative;
  overflow: hidden;
}

.tt-hk-combo::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 50%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.15) 0%, transparent 60%);
}

.tt-hk-combo__content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
}

.tt-hk-combo__title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 500;
  color: var(--color-white);
  margin-bottom: 12px;
}

.tt-hk-combo__desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 20px;
}

.tt-hk-combo__example {
  background: var(--color-white);
  border-radius: var(--radius-card);
  padding: 16px 20px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.tt-hk-combo__example-label {
  font-size: 13px;
  color: #9C9688;
}

.tt-hk-combo__example-value {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-black);
}

.tt-hk-combo__link .tt-btn {
  background: var(--color-white);
  border-color: var(--color-white);
  color: var(--color-main);
}

/* 料金CTA */
.tt-hk-pricing__cta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ==============================
   違いセクション
   ============================== */
.tt-hk-difference {
  background: var(--color-white);
}

.tt-hk-difference__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.tt-hk-difference__card {
  background: var(--color-blue-gray);
  border-radius: var(--radius-card);
  padding: 40px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.tt-hk-difference__card:hover {
  background: var(--color-white);
  border-color: var(--color-light-blue);
  box-shadow: var(--shadow-card);
}

.tt-hk-difference__icon {
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.tt-hk-difference__icon img {
  width: 120px;
  height: 120px;
  object-fit: contain;
}

.tt-hk-difference__title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 500;
  color: var(--color-black);
  margin-bottom: 16px;
}

.tt-hk-difference__desc {
  font-size: 15px;
  color: var(--color-black);
  line-height: 1.8;
  margin-bottom: 24px;
}

.tt-hk-difference__points {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tt-hk-difference__point {
  display: flex;
  align-items: center;
  gap: 12px;
}

.tt-hk-difference__point-icon {
  width: 28px;
  height: 28px;
  background: var(--color-light-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.tt-hk-difference__point-icon svg {
  width: 14px;
  height: 14px;
  color: var(--color-main);
}

.tt-hk-difference__point span {
  font-size: 14px;
  color: var(--color-black);
}

/* ==============================
   ご利用上の注意
   ============================== */
.tt-hk-notice {
  background: var(--color-blue-gray);
}

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

.tt-hk-notice__card {
  background: var(--color-white);
  border-radius: var(--radius-card);
  padding: 36px;
}

.tt-hk-notice__card-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 500;
  color: var(--color-black);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.tt-hk-notice__card-title svg,
.tt-hk-notice__card-title img {
  width: 32px;
  height: 32px;
  color: var(--color-main);
  flex-shrink: 0;
  object-fit: contain;
}

.tt-hk-notice__card-title--warning svg,
.tt-hk-notice__card-title--warning img {
  color: #E8927C;
}

.tt-hk-notice__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tt-hk-notice__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--color-black);
  line-height: 1.7;
}

.tt-hk-notice__item svg {
  width: 18px;
  height: 18px;
  color: #9C9688;
  flex-shrink: 0;
  margin-top: 3px;
}

.tt-hk-notice__item--warning svg {
  color: #E8927C;
}

/* ==============================
   スクロールアニメーション
   ============================== */
.tt-hk-anim {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.tt-hk-anim.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

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

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

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

  .tt-hk-menu__grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 48px;
  }

  .tt-hk-plan__grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

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

  .tt-hk-combo__content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .tt-hk-combo__link {
    width: 100%;
  }

  .tt-hk-combo__link .tt-btn {
    width: 100%;
  }

  .tt-hk-difference__grid {
    grid-template-columns: 1fr;
  }

  .tt-hk-notice__grid {
    grid-template-columns: 1fr;
  }
}

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

  .tt-hk-pickup {
    padding: 32px 24px;
  }

  .tt-hk-pickup__features {
    grid-template-columns: 1fr;
  }

  .tt-hk-pickup__cta {
    flex-direction: column;
  }

  .tt-hk-pricing__cta {
    flex-direction: column;
    align-items: center;
  }

  .tt-hk-pricing__cta .tt-btn {
    width: 100%;
    max-width: 300px;
  }

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

  .tt-hk-spot__estimate-grid {
    grid-template-columns: 1fr;
  }

  .tt-hk-options {
    padding: 24px;
  }

  .tt-hk-menu__icon,
  .tt-hk-pickup__feature-icon,
  .tt-hk-difference__icon {
    width: 80px;
    height: 80px;
  }

  .tt-hk-menu__icon img,
  .tt-hk-pickup__feature-icon img,
  .tt-hk-difference__icon img {
    width: 80px;
    height: 80px;
  }
}

@media (max-width: 480px) {
  .tt-hk-hero {
    padding: 100px 0 48px;
  }

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

  .tt-hk-hero__desc {
    font-size: 14px;
  }

  .tt-hk-combo {
    padding: 24px;
  }

  .tt-hk-difference__card {
    padding: 24px;
  }

  .tt-hk-notice__card {
    padding: 24px;
  }
}
