/* ==============================
   Cooking Service Page Styles
   ============================== */

/* --- Page Hero --- */
.tt-ck-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-ck-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-ck-hero__content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.tt-ck-hero__floating {
  position: absolute;
  background: var(--color-white);
  border-radius: 24px;
  padding: 16px 20px;
  box-shadow: var(--shadow-card);
  animation: tt-ck-floatCard 4s ease-in-out infinite;
}

@keyframes tt-ck-floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.tt-ck-hero__floating--left {
  bottom: 30px;
  left: -30px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.tt-ck-hero__floating-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--color-light-blue) 0%, rgba(60, 193, 219, 0.2) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tt-ck-hero__floating-icon svg {
  width: 22px;
  height: 22px;
  color: var(--color-main);
}

.tt-ck-hero__floating-text h4 {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-black);
}

.tt-ck-hero__floating-text p {
  font-size: 12px;
  color: #9C9688;
}

.tt-ck-hero__floating--right {
  top: 30px;
  right: -20px;
  animation-delay: 1s;
}

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

/* ==============================
   サービスタイプセクション
   ============================== */
.tt-ck-types {
  background: var(--color-white);
}

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

.tt-ck-types__card {
  background: var(--color-blue-gray);
  border-radius: var(--radius-card);
  padding: 40px;
  position: relative;
  transition: all 0.3s ease;
  border: 3px solid transparent;
}

.tt-ck-types__card:hover {
  background: var(--color-white);
  border-color: var(--color-light-blue);
  box-shadow: var(--shadow-card);
  transform: translateY(-4px);
}

.tt-ck-types__card--recommended {
  border-color: var(--color-main);
  background: var(--color-white);
  box-shadow: var(--shadow-card);
}

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

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

.tt-ck-types__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

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

.tt-ck-types__desc {
  font-size: 14px;
  color: var(--color-black);
  text-align: center;
  margin-bottom: 24px;
  line-height: 1.8;
}

.tt-ck-types__features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tt-ck-types__feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--color-black);
}

.tt-ck-types__feature svg {
  width: 18px;
  height: 18px;
  color: var(--color-green);
  flex-shrink: 0;
}

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

.tt-ck-plan__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 48px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.tt-ck-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-ck-plan__card:hover {
  border-color: var(--color-main);
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}

.tt-ck-plan__card--popular {
  border-color: var(--color-yellow);
}

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

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

.tt-ck-plan__badge--popular {
  background: var(--color-yellow);
  color: var(--color-black);
}

.tt-ck-plan__badge--recommend {
  background: var(--color-main);
}

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

.tt-ck-plan__list {
  list-style: none;
  margin-bottom: 16px;
}

.tt-ck-plan__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--color-gray);
  font-size: 14px;
}

.tt-ck-plan__item:last-child {
  border-bottom: none;
}

.tt-ck-plan__item--highlight {
  background: linear-gradient(135deg, var(--color-light-blue) 0%, rgba(249, 228, 70, 0.15) 100%);
  margin: 8px -12px;
  padding: 12px;
  border-radius: var(--radius-card);
  border-bottom: none;
}

.tt-ck-plan__item-label {
  color: var(--color-black);
}

.tt-ck-plan__item-label small {
  display: block;
  font-size: 12px;
  color: #9C9688;
}

.tt-ck-plan__item-value {
  font-family: var(--font-heading);
  font-weight: 500;
  color: var(--color-black);
}

.tt-ck-plan__item--highlight .tt-ck-plan__item-label {
  font-weight: 500;
  color: var(--color-black);
}

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

/* 比較表 */
.tt-ck-compare {
  background: var(--color-white);
  border-radius: var(--radius-card);
  padding: 40px;
  margin-bottom: 48px;
  box-shadow: 0 2px 8px rgba(45, 43, 41, 0.06);
}

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

.tt-ck-compare__table {
  display: grid;
  grid-template-columns: 140px 1fr 1fr;
  gap: 2px;
  background: var(--color-gray);
  border-radius: var(--radius-card);
  overflow: hidden;
}

.tt-ck-compare__cell {
  background: var(--color-white);
  padding: 16px;
  font-size: 14px;
}

.tt-ck-compare__cell--header {
  background: var(--color-blue-gray);
  font-family: var(--font-heading);
  font-weight: 500;
  color: var(--color-black);
  text-align: center;
}

.tt-ck-compare__cell--label {
  background: var(--color-blue-gray);
  font-weight: 500;
  color: var(--color-black);
}

/* オプション */
.tt-ck-options {
  background: var(--color-white);
  border-radius: var(--radius-card);
  padding: 40px;
  margin-bottom: 48px;
  box-shadow: 0 2px 8px rgba(45, 43, 41, 0.06);
}

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

.tt-ck-options__subtitle {
  font-size: 14px;
  color: #9C9688;
  text-align: center;
  margin-bottom: 24px;
}

.tt-ck-options__price {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 500;
  color: var(--color-main);
  margin-bottom: 12px;
  text-align: center;
}

.tt-ck-options__desc {
  font-size: 14px;
  color: var(--color-black);
  line-height: 1.7;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

/* コンボセクション */
.tt-ck-combo {
  background: var(--color-green);
  border-radius: var(--radius-card);
  padding: 40px;
  margin-bottom: 48px;
  position: relative;
  overflow: hidden;
}

.tt-ck-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-ck-combo__content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
}

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

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

.tt-ck-combo__examples {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

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

.tt-ck-combo__example-name {
  font-size: 14px;
  color: var(--color-black);
}

.tt-ck-combo__example-price {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-green);
}

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

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

/* ==============================
   選ばれる理由セクション
   ============================== */
.tt-ck-features {
  background: var(--color-white);
}

.tt-ck-features__grid {
  display: grid;
  gap: 32px;
}

.tt-ck-features__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.tt-ck-features__row:nth-child(even) .tt-ck-features__image {
  order: 2;
}

.tt-ck-features__row:nth-child(even) .tt-ck-features__content {
  order: 1;
}

.tt-ck-features__image {
  height: 320px;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(45, 43, 41, 0.08);
}

.tt-ck-features__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tt-ck-features__content {
  padding: 20px 0;
}

.tt-ck-features__number {
  font-family: var(--font-heading);
  font-size: 64px;
  font-weight: 500;
  background: linear-gradient(135deg, var(--color-light-blue) 0%, rgba(249, 228, 70, 0.3) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 16px;
}

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

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

.tt-ck-features__points {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tt-ck-features__point {
  display: flex;
  align-items: center;
  gap: 12px;
}

.tt-ck-features__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-ck-features__point-icon svg {
  width: 14px;
  height: 14px;
  color: var(--color-main);
}

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

/* ==============================
   ご利用の流れセクション
   ============================== */
.tt-ck-flow {
  background: var(--color-blue-gray);
}

.tt-ck-flow__timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.tt-ck-flow__timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 32px;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--color-main), var(--color-green));
  border-radius: 3px;
}

.tt-ck-flow__item {
  display: flex;
  gap: 32px;
  margin-bottom: 48px;
  position: relative;
}

.tt-ck-flow__item:last-child {
  margin-bottom: 0;
}

.tt-ck-flow__number {
  width: 64px;
  height: 64px;
  background: var(--color-main);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 500;
  color: var(--color-white);
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(60, 193, 219, 0.4);
  position: relative;
  z-index: 1;
}

.tt-ck-flow__content {
  background: var(--color-white);
  border-radius: var(--radius-card);
  padding: 28px;
  flex: 1;
  box-shadow: 0 4px 16px rgba(45, 43, 41, 0.08);
}

.tt-ck-flow__title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 500;
  color: var(--color-black);
  margin-bottom: 12px;
}

.tt-ck-flow__desc {
  font-size: 14px;
  color: var(--color-black);
  line-height: 1.8;
}

.tt-ck-flow__note {
  margin-top: 16px;
  padding: 12px 16px;
  background: var(--color-light-blue);
  border-radius: var(--radius-card);
  font-size: 13px;
  color: var(--color-main);
  display: flex;
  align-items: center;
  gap: 8px;
}

.tt-ck-flow__note svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

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

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

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

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

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

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

  .tt-ck-hero__floating {
    display: none;
  }

  .tt-ck-types__grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

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

  .tt-ck-compare__table {
    grid-template-columns: 100px 1fr 1fr;
  }

  .tt-ck-compare__cell {
    padding: 12px;
    font-size: 13px;
  }

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

  .tt-ck-combo__examples {
    justify-content: center;
  }

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

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

  .tt-ck-features__row,
  .tt-ck-features__row:nth-child(even) .tt-ck-features__image,
  .tt-ck-features__row:nth-child(even) .tt-ck-features__content {
    order: unset;
  }

  .tt-ck-features__row {
    grid-template-columns: 1fr;
  }

  .tt-ck-features__image {
    order: -1;
  }

  .tt-ck-plan__cta {
    flex-direction: column;
    align-items: center;
  }

  .tt-ck-plan__cta .tt-btn {
    width: 100%;
    max-width: 300px;
  }
}

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

  .tt-ck-flow__timeline::before {
    left: 28px;
  }

  .tt-ck-flow__number {
    width: 56px;
    height: 56px;
    font-size: 20px;
  }

  .tt-ck-flow__item {
    gap: 20px;
  }

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

  .tt-ck-compare {
    padding: 24px;
  }

  .tt-ck-types__icon {
    width: 80px;
    height: 80px;
  }

  .tt-ck-types__icon img {
    width: 80px;
    height: 80px;
  }
}

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

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

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

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

  .tt-ck-features__image {
    height: 220px;
  }

  .tt-ck-features__number {
    font-size: 48px;
  }
}
