/* ==============================
   TOKUSHOHOU PAGE STYLES
   ============================== */

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

.tokushohou-page .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;
}

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

/* --- Section --- */
.tokushohou-page .tt-tokushohou-section {
  padding: var(--section-pt) 0 var(--section-pb);
  background: var(--color-white);
}

/* --- Table --- */
.tokushohou-page .tt-tokushohou-table {
  background: var(--color-white);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.tokushohou-page .tt-tokushohou-table__row {
  display: grid !important;
  grid-template-columns: 200px 1fr;
  border-bottom: 1px solid var(--color-gray);
}

.tokushohou-page .tt-tokushohou-table__row:last-child {
  border-bottom: none;
}

.tokushohou-page .tt-tokushohou-table__label {
  background: var(--color-blue-gray);
  padding: 20px 24px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-black);
  display: flex;
  align-items: center;
}

.tokushohou-page .tt-tokushohou-table__value {
  padding: 20px 24px;
  font-size: 15px;
  color: var(--color-black);
  line-height: 1.7;
}

.tokushohou-page .tt-tokushohou-table__value a {
  color: var(--color-main);
  text-decoration: underline;
}

.tokushohou-page .tt-tokushohou-table__value a:hover {
  opacity: 0.7;
}

.tokushohou-page .tt-tokushohou-table__note {
  display: inline-block;
  margin-top: 8px;
  font-size: 13px;
  opacity: 0.7;
}

/* ==============================
   RESPONSIVE: Tablet (768px)
   ============================== */
@media (max-width: 768px) {
  .tokushohou-page .tt-page-hero {
    padding: 100px 0 40px;
  }

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

  .tokushohou-page .tt-tokushohou-table__row {
    grid-template-columns: 1fr;
  }

  .tokushohou-page .tt-tokushohou-table__label {
    padding: 14px 20px;
    border-bottom: 1px solid var(--color-gray);
  }

  .tokushohou-page .tt-tokushohou-table__value {
    padding: 14px 20px;
  }
}

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

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

  .tokushohou-page .tt-tokushohou-section {
    padding: 60px 0;
  }
}
