/* ============================================================
   THAILAND PAGE
   page-common.css の .page-hero をダークヒーローに上書き
============================================================ */

/* ── ダークヒーロー ── */
.page-hero {
  margin-top: var(--header-h);
  position: relative;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 72px 0 56px;
  overflow: hidden;
  border-bottom: 1px solid var(--gray-100);
  background: var(--black);
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url('../img/thailand_hero.jpg');
  background-size: cover;
  background-position: center;
}
.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,.72) 0%, rgba(0,0,0,.3) 60%, transparent 100%);
}
.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 560px;
}
.page-hero-en {
  color: var(--gold);
}
.page-hero-title {
  font-size: clamp(32px, 5vw, 52px);
  color: var(--white);
}
.page-hero-sub {
  font-size: 13px;
  color: rgba(255,255,255,.65);
  max-width: none;
}

/* ── セクション ── */
.th-sec {
  padding: 80px 0;
  border-bottom: 1px solid var(--gray-100);
}
.th-sec.alt { background: var(--off-white); }

.th-label {
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  display: block;
}
.th-heading {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 400;
  letter-spacing: .04em;
  color: var(--black);
  margin-bottom: 8px;
}
.th-rule {
  width: 24px;
  height: 2px;
  background: var(--gold-light);
  margin-bottom: 28px;
}
.th-body {
  font-size: 14px;
  line-height: 2.05;
  color: var(--gray-700);
}

/* 2カラムグリッド */
.th-grid2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.th-grid2.rev { direction: rtl; }
.th-grid2.rev > * { direction: ltr; }

.th-img {
  aspect-ratio: 4/3;
  background: var(--gray-100);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.th-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* データカード */
.th-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--gray-100);
  border: 1px solid var(--gray-100);
  margin-top: 48px;
}
.th-stat {
  background: var(--white);
  padding: 32px 24px;
}
.th-stat-val {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.th-stat-label {
  font-size: 11px;
  color: var(--gray-500);
  letter-spacing: .06em;
  line-height: 1.6;
}

/* アクセス */
.th-access {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-top: 40px;
}
.th-access-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.th-access-table tr { border-bottom: 1px solid var(--gray-100); }
.th-access-table td {
  padding: 13px 0;
  vertical-align: top;
  line-height: 1.7;
}
.th-access-table td:first-child {
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gray-500);
  width: 100px;
  padding-top: 15px;
}
.th-map {
  aspect-ratio: 4/3;
  background: var(--gray-100);
  border: none;
  display: block;
  width: 100%;
}

@media (max-width: 900px) {
  .page-hero { padding: 48px 0 40px; min-height: 320px; }
  .th-sec { padding: 56px 0; }
  .th-grid2 { grid-template-columns: 1fr; gap: 32px; direction: ltr !important; }
  .th-stats { grid-template-columns: 1fr 1fr; }
  .th-access { grid-template-columns: 1fr; }
}
