:root{--page-title-display:none;}/* Start custom CSS *//* =============================================================
   ADASTRA — 通訳ページ CUSTOM CSS
   All component styles + responsive layer.
   ============================================================= */

/* ─────────────────────────────────────────────
   SHARED — section headers
   ───────────────────────────────────────────── */
.eyebrow {
  font-size: 11px;
  font-weight: 900;
  color: #ff095b;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.section-title {
  font-size: 28px;
  font-weight: 900;
  color: #212121;
  line-height: 1.35;
  margin-bottom: 16px;
}
.section-title .dot { color: #ff095b; }
.section-lead {
  font-size: 14px;
  color: #555555;
  line-height: 1.9;
  max-width: 600px;
  margin: 0 auto;
}

/* ─────────────────────────────────────────────
   SCENES — 3 alternating image+text rows
   ───────────────────────────────────────────── */
.scenes-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.scene-row {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: center;
  background: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 6px;
  overflow: hidden;
}
.scene-row:nth-child(even) { grid-template-columns: 1.2fr 1fr; }
.scene-row:nth-child(even) .scene-img-wrap { order: 2; }
.scene-row:nth-child(even) .scene-body {
  order: 1;
  padding-left: 32px;
  padding-right: 24px;
}

.scene-img-wrap {
  position: relative;
  min-height: 240px;
  height: 100%;
  background: linear-gradient(135deg, #1e2a3a 0%, #2e4a6e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.scene-img-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}
.scene-img-wrap .num {
  position: relative;
  z-index: 1;
  font-family: Georgia, serif;
  font-size: 96px;
  font-weight: 700;
  color: rgba(255,255,255,0.12);
  line-height: 1;
}
.scene-img-wrap .num-label {
  position: absolute;
  bottom: 14px;
  left: 20px;
  z-index: 1;
  font-size: 10px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.14em;
}

/* Optional — if you add real <img> inside .scene-img-wrap */
.scene-img-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
.scene-img-wrap:has(img)::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(20,30,46,0.55) 0%, rgba(20,30,46,0.25) 100%);
  z-index: 0;
}
.scene-img-wrap:has(img) .num,
.scene-img-wrap:has(img) .num-label { z-index: 2; }

.scene-body { padding: 28px 28px 28px 24px; }
.scene-body .tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 900;
  color: #ff095b;
  background: #fff0f4;
  padding: 4px 10px;
  border-radius: 2px;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
}
.scene-body h3 {
  font-size: 20px;
  font-weight: 900;
  color: #212121;
  line-height: 1.5;
  margin-bottom: 12px;
}
.scene-body p {
  font-size: 13px;
  color: #555555;
  line-height: 1.95;
}
.scene-body p + p { margin-top: 10px; }

/* ─────────────────────────────────────────────
   STRENGTH CARDS — 6 "Why Adastra" value boxes
   ───────────────────────────────────────────── */
.strength-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.strength-card {
  background: #ffffff;
  border: 1px solid #e8e8e8;
  border-top: 3px solid #ff095b;
  border-radius: 0 0 6px 6px;
  padding: 28px 24px;
}
.strength-card .num {
  font-size: 10px;
  font-weight: 900;
  color: #ff095b;
  letter-spacing: 0.12em;
  margin-bottom: 6px;
}
.strength-card h3 {
  font-size: 18px;
  font-weight: 900;
  color: #212121;
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}
.strength-card .jp-label {
  font-size: 12px;
  color: #aaaaaa;
  margin-bottom: 14px;
}
.strength-card p {
  font-size: 12px;
  color: #555555;
  line-height: 1.95;
}

/* ─────────────────────────────────────────────
   RATES TABLE — in-person + online share these styles
   ───────────────────────────────────────────── */
.rates-header { text-align: center; margin-bottom: 8px; }
.rates-header--secondary {
  margin-top: 72px;
  padding-top: 56px;
  border-top: 1px solid #e8e8e8;
}

.rates-wrap { margin-top: 40px; }

.rates-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 6px;
  overflow: hidden;
}
.rates-table thead th {
  background: #212121;
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  padding: 16px 18px;
  text-align: left;
}
.rates-table thead th.num { text-align: right; }

.rates-table tbody td {
  padding: 18px 18px;
  border-top: 1px solid #f0f0f0;
  font-size: 13px;
  color: #444444;
  vertical-align: top;
}
.rates-table tbody tr:first-child td { border-top: none; }

.rates-table tbody td.tier {
  font-weight: 900;
  color: #212121;
  width: 30%;
}
.rates-table tbody td.tier .en {
  display: block;
  font-size: 10px;
  color: #ff095b;
  letter-spacing: 0.12em;
  margin-bottom: 4px;
  font-weight: 900;
}
.rates-table tbody td.tier .desc {
  display: block;
  font-size: 11px;
  color: #888888;
  font-weight: 400;
  margin-top: 4px;
  line-height: 1.6;
}

.rates-table tbody td.num {
  text-align: right;
  font-family: Georgia, serif;
  font-size: 18px;
  font-weight: 700;
  color: #212121;
  white-space: nowrap;
}
.rates-table tbody td.num .currency {
  font-size: 13px;
  color: #aaaaaa;
  margin-right: 2px;
}

.rates-caption {
  font-size: 11px;
  color: #aaaaaa;
  margin-top: 10px;
  line-height: 1.7;
}

/* Notes + cancellation grid */
.rates-notes {
  margin-top: 24px;
  background: #ffffff;
  border: 1px solid #e8e8e8;
  border-left: 3px solid #ff095b;
  border-radius: 0 6px 6px 0;
  padding: 22px 26px;
}
.rates-notes h4 {
  font-size: 13px;
  font-weight: 900;
  color: #212121;
  margin-bottom: 12px;
  letter-spacing: 0.04em;
}
.rates-notes h4.cancel-heading { margin-top: 20px; }

.rates-notes ul { list-style: none; padding: 0; margin: 0; }
.rates-notes ul li {
  font-size: 12px;
  color: #555555;
  line-height: 1.85;
  padding-left: 16px;
  position: relative;
}
.rates-notes ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  background: #ff095b;
  border-radius: 50%;
}
.rates-notes ul li + li { margin-top: 6px; }
.rates-notes ul li strong { color: #212121; font-weight: 900; }

.cancel-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 10px;
}
.cancel-cell {
  background: #f8f8f8;
  padding: 10px 12px;
  border-radius: 4px;
  text-align: center;
}
.cancel-cell .pct {
  display: block;
  font-family: Georgia, serif;
  font-size: 20px;
  font-weight: 700;
  color: #ff095b;
  line-height: 1;
  margin-bottom: 4px;
}
.cancel-cell .pct-sym { font-size: 13px; }
.cancel-cell .when {
  font-size: 10px;
  color: #666666;
  letter-spacing: 0.04em;
}

/* ─────────────────────────────────────────────
   RATES TABS — optional toggle (in-person / online)
   Delete this block if you're stacking the two tables.
   ───────────────────────────────────────────── */
.rates-tabs {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  background: #f0f0f0;
  border-radius: 6px;
  margin-top: 28px;
}
.rates-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  background: transparent;
  border: none;
  padding: 10px 28px;
  font-family: inherit;
  cursor: pointer;
  border-radius: 4px;
  transition: background 0.15s, color 0.15s;
}
.rates-tab .rates-tab-en {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
  color: #aaaaaa;
  text-transform: uppercase;
}
.rates-tab .rates-tab-jp {
  font-size: 13px;
  font-weight: 900;
  color: #555555;
}
.rates-tab:hover .rates-tab-jp { color: #212121; }
.rates-tab.is-active { background: #212121; }
.rates-tab.is-active .rates-tab-en { color: #ff095b; }
.rates-tab.is-active .rates-tab-jp { color: #ffffff; }

.rates-pane { display: none; }
.rates-pane.is-active { display: block; }

/* =============================================================
   RESPONSIVE LAYER
   ============================================================= */

/* ── Tablet ───────────────────────────────────── */
@media (max-width: 1024px) {
  .section-title { font-size: 24px; }

  /* Scenes: keep side-by-side, tighter */
  .scene-row { gap: 24px; }
  .scene-body { padding: 24px 20px 24px 16px; }
  .scene-row:nth-child(even) .scene-body {
    padding-left: 24px;
    padding-right: 16px;
  }
  .scene-img-wrap { min-height: 200px; }
  .scene-img-wrap .num { font-size: 72px; }

  /* Strength cards: 3 → 2 col */
  .strength-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Phone ────────────────────────────────────── */
@media (max-width: 720px) {
  .section-title { font-size: 22px; line-height: 1.4; }
  .section-lead { font-size: 13px; }

  /* SCENES — stack image above text; kill alternation */
  .scene-row,
  .scene-row:nth-child(even) {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .scene-row:nth-child(even) .scene-img-wrap { order: 0; }
  .scene-row:nth-child(even) .scene-body {
    order: 1;
    padding: 24px 20px;
  }
  .scene-img-wrap { min-height: 160px; }
  .scene-img-wrap .num { font-size: 64px; }
  .scene-body { padding: 24px 20px; }
  .scene-body h3 { font-size: 18px; }

  /* Strength cards: → 1 col */
  .strength-grid { grid-template-columns: 1fr; }
  .strength-card { padding: 24px 22px; }

  /* RATES TABLE → stacked cards
     Requires data-label="..." on each <td class="num"> */
  .rates-table {
    border: none;
    background: transparent;
    border-radius: 0;
  }
  .rates-table thead { display: none; }
  .rates-table tbody { display: block; }
  .rates-table tbody tr {
    display: block;
    background: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 6px;
    padding: 18px 20px;
    margin-bottom: 12px;
  }
  .rates-table tbody tr:first-child { border-top: 1px solid #e8e8e8; }
  .rates-table tbody td {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 8px 0;
    border: none;
    border-top: 1px solid #f0f0f0;
  }
  .rates-table tbody td:first-child { border-top: none; }
  .rates-table tbody td.tier {
    display: block;
    width: auto;
    padding: 0 0 12px 0;
    margin-bottom: 4px;
    border-bottom: 1px solid #f0f0f0;
  }
  .rates-table tbody td.num {
    font-size: 16px;
    text-align: right;
  }
  .rates-table tbody td.num::before {
    content: attr(data-label);
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 11px;
    font-weight: 900;
    color: #888888;
    letter-spacing: 0.04em;
    margin-right: 12px;
  }

  /* Cancel grid: 4 → 2 col */
  .cancel-grid { grid-template-columns: repeat(2, 1fr); }

  /* Rates notes padding */
  .rates-notes { padding: 20px 22px; }

  /* Rates tabs full-width */
  .rates-tabs { width: 100%; display: flex; }
  .rates-tab { flex: 1; padding: 10px 12px; }
}

/* ── Small phone ──────────────────────────────── */
@media (max-width: 480px) {
  .section-title { font-size: 20px; }
  .scene-img-wrap .num { font-size: 56px; }
  .strength-card h3 { font-size: 16px; }
  .cancel-cell .pct { font-size: 18px; }
}

/* =============================================================
   ELEMENTOR OVERRIDE GUARD
   Add class "adastra-interp" to the parent Section in Elementor.
   These rules re-assert layout that the theme/Elementor clobbers.
   ============================================================= */

/* ── Scenes ───────────────────────────────────── */
.adastra-interp .scenes-list {
  display: flex !important;
  flex-direction: column !important;
  gap: 28px !important;
}
.adastra-interp .scene-row {
  display: grid !important;
  grid-template-columns: 1fr 1.2fr !important;
  gap: 40px !important;
  align-items: center !important;
}
.adastra-interp .scene-row:nth-child(even) {
  grid-template-columns: 1.2fr 1fr !important;
}
.adastra-interp .scene-row:nth-child(even) .scene-img-wrap { order: 2 !important; }
.adastra-interp .scene-row:nth-child(even) .scene-body { order: 1 !important; }
.adastra-interp .scene-img-wrap {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 240px !important;
}

/* ── Strength cards ──────────────────────────── */
.adastra-interp .strength-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 16px !important;
}

/* ── Rates table — the biggest offender ──────── */
.adastra-interp .rates-table {
  width: 100% !important;
  display: table !important;
  border-collapse: separate !important;
  border-spacing: 0 !important;
  background: #ffffff !important;
  border: 1px solid #e8e8e8 !important;
}
.adastra-interp .rates-table thead { display: table-header-group !important; }
.adastra-interp .rates-table tbody { display: table-row-group !important; }
.adastra-interp .rates-table tr { display: table-row !important; }
.adastra-interp .rates-table th,
.adastra-interp .rates-table td {
  display: table-cell !important;
  vertical-align: top !important;
}
.adastra-interp .rates-table thead th {
  background: #212121 !important;
  color: #ffffff !important;
  text-align: left !important;
  padding: 16px 18px !important;
}
.adastra-interp .rates-table thead th.num { text-align: right !important; }
.adastra-interp .rates-table tbody td {
  padding: 18px 18px !important;
  border-top: 1px solid #f0f0f0 !important;
  background: #ffffff !important;
}
.adastra-interp .rates-table tbody td.num {
  text-align: right !important;
  white-space: nowrap !important;
}

/* ── Cancel grid ─────────────────────────────── */
.adastra-interp .cancel-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 8px !important;
}

/* ── Rates notes list ────────────────────────── */
.adastra-interp .rates-notes ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* ─────────────────────────────────────────────
   Mobile re-assertion — the table-→-cards trick
   needs !important too because theme styles fight back
   ───────────────────────────────────────────── */
@media (max-width: 720px) {
  .adastra-interp .scene-row,
  .adastra-interp .scene-row:nth-child(even) {
    grid-template-columns: 1fr !important;
  }
  .adastra-interp .scene-row:nth-child(even) .scene-img-wrap { order: 0 !important; }
  .adastra-interp .scene-row:nth-child(even) .scene-body { order: 1 !important; }

  .adastra-interp .strength-grid {
    grid-template-columns: 1fr !important;
  }

  .adastra-interp .rates-table,
  .adastra-interp .rates-table thead,
  .adastra-interp .rates-table tbody,
  .adastra-interp .rates-table tr,
  .adastra-interp .rates-table td {
    display: block !important;
  }
  .adastra-interp .rates-table thead { display: none !important; }
  .adastra-interp .rates-table tbody tr {
    background: #ffffff !important;
    border: 1px solid #e8e8e8 !important;
    border-radius: 6px !important;
    padding: 18px 20px !important;
    margin-bottom: 12px !important;
  }
  .adastra-interp .rates-table tbody td {
    display: flex !important;
    justify-content: space-between !important;
    align-items: baseline !important;
    padding: 8px 0 !important;
    border: none !important;
    border-top: 1px solid #f0f0f0 !important;
  }
  .adastra-interp .rates-table tbody td:first-child { border-top: none !important; }
  .adastra-interp .rates-table tbody td.tier {
    display: block !important;
    width: auto !important;
    padding: 0 0 12px 0 !important;
    border-bottom: 1px solid #f0f0f0 !important;
  }

  .adastra-interp .cancel-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 1024px) {
  .adastra-interp .strength-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}/* End custom CSS */