/* =============================================
   Horizon Innovation — tokushoho.css
   特定商取引法に基づく表記ページ専用スタイル
============================================= */

/* ===== HEADER: このページは常にsolid表示 ===== */
.header--solid {
  background: rgba(13, 27, 42, 0.97);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

/* ===== PAGE HERO ===== */
.ts-hero {
  background: var(--navy);
  padding: clamp(100px, 14vw, 160px) 0 clamp(60px, 8vw, 100px);
  position: relative;
  overflow: hidden;
}
.ts-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 10% 50%, rgba(203, 164, 94, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 90% 20%, rgba(203, 164, 94, 0.04) 0%, transparent 50%);
  pointer-events: none;
}
/* 装飾テキスト */
.ts-hero::after {
  content: 'TOKUSHOHO';
  position: absolute;
  left: 50%;
  bottom: -0.15em;
  transform: translateX(-50%);
  font-family: var(--font-en);
  font-size: clamp(4rem, 10vw, 13rem);
  font-weight: 300;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.03);
  line-height: 1;
  pointer-events: none;
  white-space: nowrap;
}

.ts-hero__inner {
  max-width: calc(var(--max-w) + var(--side-pad) * 2);
  margin: 0 auto;
  padding: 0 var(--side-pad);
  position: relative;
  z-index: 1;
}
.ts-hero__eyebrow {
  font-family: var(--font-en);
  font-size: clamp(0.62rem, 0.9vw, 0.75rem);
  font-weight: 300;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-bottom: 16px;
  animation: fadeInUp 0.7s 0.2s both;
}
.ts-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.06em;
  line-height: 1.3;
  animation: fadeInUp 0.7s 0.35s both;
}

/* ===== CONTENT AREA ===== */
.ts-content {
  background: var(--cream);
  padding: clamp(60px, 8vw, 100px) 0 clamp(80px, 10vw, 140px);
}
.ts-content__inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 var(--side-pad);
}

/* ===== PREAMBLE ===== */
.ts-preamble {
  margin-bottom: clamp(40px, 5vw, 60px);
  padding-bottom: clamp(32px, 4vw, 48px);
  border-bottom: 1px solid var(--cream-dark);
}
.ts-preamble p {
  font-size: clamp(0.83rem, 1.1vw, 0.92rem);
  font-weight: 300;
  color: var(--gray-mid);
  line-height: 2.1;
  letter-spacing: 0.04em;
}

/* ===== TABLE WRAPPER ===== */
.ts-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: clamp(48px, 6vw, 72px);
}

/* ===== TABLE ===== */
.ts-table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

.ts-table tbody tr {
  border-bottom: 1px solid var(--cream-dark);
  transition: background var(--transition-fast);
}
.ts-table tbody tr:first-child {
  border-top: 1px solid var(--cream-dark);
}
.ts-table tbody tr:hover {
  background: rgba(203, 164, 94, 0.04);
}

.ts-table th {
  width: 200px;
  min-width: 150px;
  padding: 24px 28px 24px 0;
  vertical-align: top;
  font-family: var(--font-serif);
  font-size: clamp(0.78rem, 1.05vw, 0.88rem);
  font-weight: 500;
  color: var(--navy);
  letter-spacing: 0.04em;
  line-height: 1.7;
  white-space: nowrap;
  position: relative;
}
.ts-table th::after {
  content: '';
  position: absolute;
  left: 0;
  top: 28px;
  width: 2px;
  height: 16px;
  background: var(--gold);
  border-radius: 1px;
}

/* th の左にゴールドラインをつけるため padding-left を追加 */
.ts-table th {
  padding-left: 14px;
}

.ts-table td {
  padding: 24px 0 24px 32px;
  vertical-align: top;
  font-size: clamp(0.8rem, 1.05vw, 0.88rem);
  font-weight: 300;
  color: var(--gray);
  line-height: 2;
  letter-spacing: 0.04em;
}

/* ===== NOTE (小注釈) ===== */
.ts-note {
  display: inline-block;
  font-size: 0.76rem;
  color: var(--gray-light);
  letter-spacing: 0.03em;
  line-height: 1.8;
  margin-top: 4px;
}

/* ===== LIST inside td ===== */
.ts-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ts-list li {
  font-size: clamp(0.8rem, 1.05vw, 0.88rem);
  font-weight: 300;
  color: var(--gray);
  line-height: 1.85;
  letter-spacing: 0.04em;
  padding-left: 18px;
  position: relative;
}
.ts-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 6px;
  height: 1px;
  background: var(--gold);
}

/* ===== PARAGRAPH inside td ===== */
.ts-paragraph {
  margin-bottom: 16px;
  line-height: 1.9;
}
.ts-paragraph--last {
  margin-bottom: 0;
}
.ts-strong {
  font-weight: 500;
  color: var(--navy);
  font-size: 0.84rem;
  letter-spacing: 0.04em;
}

/* ===== LINK inside td ===== */
.ts-link {
  color: var(--navy);
  border-bottom: 1px solid rgba(13, 27, 42, 0.3);
  padding-bottom: 1px;
  transition: color var(--transition-fast), border-color var(--transition-fast);
  font-size: inherit;
}
.ts-link:hover {
  color: var(--gold);
  border-color: var(--gold);
}

/* ===== DATE BLOCK ===== */
.ts-date {
  padding-top: 32px;
  border-top: 1px solid var(--cream-dark);
  text-align: right;
}
.ts-date p {
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--gray-light);
  letter-spacing: 0.06em;
  line-height: 2;
}
.ts-date__company {
  margin-top: 8px;
  color: var(--gray-mid) !important;
  font-weight: 400 !important;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 700px) {
  .ts-hero::after {
    display: none;
  }

  .ts-table,
  .ts-table tbody,
  .ts-table tr,
  .ts-table th,
  .ts-table td {
    display: block;
    width: 100%;
  }

  .ts-table tbody tr {
    padding: 20px 0;
  }
  .ts-table tbody tr:first-child {
    border-top: 1px solid var(--cream-dark);
  }

  .ts-table th {
    padding: 0 0 10px 14px;
    white-space: normal;
    min-width: unset;
    font-size: 0.78rem;
    border-bottom: none;
  }
  .ts-table th::after {
    top: 3px;
  }

  .ts-table td {
    padding: 0 0 4px 14px;
  }

  .ts-date {
    text-align: left;
  }
}

@media (max-width: 440px) {
  .ts-hero__eyebrow {
    font-size: 0.58rem;
    letter-spacing: 0.2em;
  }
}

/* ===== BREADCRUMB 上書き ===== */
.page--tokushoho .breadcrumb__list li span {
  color: var(--gray-mid);
}
