/* ============================================================
   ROOT & RESET
   ============================================================ */
:root {
  --red:         #D94F3D;
  --red-dark:    #A8372A;
  --red-light:   #FDF0EE;
  --red-mid:     #F5C4BC;
  --amber:       #E89C2F;
  --amber-light: #FDF6E8;
  --green:       #2A8C5E;
  --green-light: #EAF5EF;
  --green-mid:   #5DCAA5;
  --blue:        #378ADD;
  --blue-dark:   #185FA5;

  /* ライトテーマ */
  --bg:          #FFFFFF;
  --bg-2:        #F7F6F3;
  --bg-3:        #F0EEE8;
  --bg-4:        #E8E5DE;
  --border:      #E2E0DB;
  --border-mid:  #D0CEC8;
  --border-hi:   #B8B5AE;

  --ink:         #1A1A1A;
  --ink-mid:     #4A4845;
  --ink-light:   #8A887F;
  --white:       #FFFFFF;

  --font-display: 'Barlow Condensed', sans-serif;
  --font-body:    'DM Sans', sans-serif;
}

html {
  overflow-x: hidden;
}

*, *::before, *::after {
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  position: relative;
  padding-top: 56px;
}

/* ============================================================
   SCROLL ANIMATION
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.05;
  letter-spacing: -0.01em;
}

.section-label {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-light);
  font-family: var(--font-body);
  font-weight: 500;
}

/* ============================================================
   NAV
   ============================================================ */
.site-nav {
  padding: 0;
  border-bottom: 1px solid var(--border);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 100;
}

.site-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.9rem;
  padding-bottom: 0.9rem;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--ink);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-logo span { color: var(--red); }
.nav-logo:hover { color: var(--red-dark); }

.lang-sel {
  min-width: 86px;
  height: 38px;
  appearance: none;
  -webkit-appearance: none;
  border: 1.5px solid var(--border-mid);
  border-radius: 4px;
  background-color: var(--bg);
  background-image:
    linear-gradient(45deg, transparent 50%, var(--ink-mid) 50%),
    linear-gradient(135deg, var(--ink-mid) 50%, transparent 50%);
  background-position:
    calc(100% - 15px) 15px,
    calc(100% - 10px) 15px;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
  padding: 0.45rem 1.75rem 0.45rem 0.75rem;
  cursor: pointer;
  transition: border-color 0.2s, background-color 0.2s, box-shadow 0.2s;
}

.lang-sel:hover {
  border-color: var(--ink);
  background-color: var(--bg-2);
}

.lang-sel:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px var(--red-light);
  outline: none;
}

.nav-cta {
  background: var(--red);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  padding: 0.5rem 1.3rem;
  border-radius: 3px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--red-dark);
  color: var(--white);
  transform: translateY(-1px);
}

.nav-terms {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-terms:hover {
  color: var(--red);
}

/* SP 下段ボタン行 */
.nav-sp-actions {
  display: flex;
  width: 100%;
  gap: 0.5rem;
  margin-top: 0.5rem;
  padding-bottom: 0.6rem;
}

.nav-sp-btn {
  flex: 1;
  display: block;
  text-align: center;
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0.55rem 0;
  text-decoration: none;
  transition: opacity 0.2s;
}

.nav-sp-btn:hover { opacity: 0.85; }

.nav-sp-btn--dark {
  background: var(--white);
  color: var(--ink);
  border: 1.5px solid var(--border-mid);
  border-radius: 4px;
}

.nav-sp-btn--red {
  background: var(--red);
  color: var(--white);
}

/* ハンバーガーボタン */
.nav-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 6px;
  background: none;
  border: 1.5px solid var(--border-mid);
  border-radius: 4px;
  cursor: pointer;
  transition: border-color 0.2s;
  flex-shrink: 0;
}

.nav-hamburger:hover {
  border-color: var(--ink);
}

.nav-hamburger span {
  display: block;
  height: 2px;
  background: var(--ink);
  border-radius: 1px;
  transition: transform 0.25s, opacity 0.25s;
}

.nav-hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav-hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* SP メニューパネル */
.nav-collapse {
  display: none;
  width: 100%;
  border-top: 1px solid var(--border);
  padding: 0.5rem 0;
}

@media (max-width: 767px) {
  .nav-collapse.is-open {
    display: block !important;
  }
}

.nav-collapse-item {
  display: block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink);
  text-decoration: none;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}

.nav-collapse-item:last-child {
  border-bottom: none;
}

.nav-collapse-item:hover {
  color: var(--red);
}

.nav-login,
.nav-mypage {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink);
  padding: 0.4rem 1rem;
  border: 1.5px solid var(--border-mid);
  border-radius: 4px;
  background: transparent;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}

.nav-login:hover,
.nav-mypage:hover {
  border-color: var(--ink);
  background: var(--bg-2);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding: 6rem 0 5rem;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  background: var(--bg);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.45;
  pointer-events: none;
}

/* グリッドの上にコンテンツを確実に乗せる */
.hero .container {
  position: relative;
  z-index: 1;
}

/* ボタン背景を不透過にしてグリッドの透けを防ぐ */
.btn-primary-lg {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.05em;
  padding: 0.85rem 2.2rem;
  border-radius: 3px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  position: relative;
  z-index: 1;
}

.btn-primary-lg:hover {
  background: var(--red-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(217,79,61,0.25);
}

.hero::after {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(217,79,61,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red-light);
  border: 1px solid var(--red-mid);
  color: var(--red-dark);
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.35rem 0.9rem;
  border-radius: 2px;
  margin-bottom: 1.5rem;
  letter-spacing: 0.06em;
}

.pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  animation: pulse 1.6s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(1.5); }
}

.hero-h1 {
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 0.5rem;
  position: relative;
}

.hero-h1 .accent {
  color: var(--red);
  position: relative;
}

.hero-h1 .accent::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--red);
  opacity: 0.3;
  border-radius: 2px;
}

.hero-sub {
  font-size: clamp(1.25rem, 2.5vw, 1.3rem);
  font-weight: 600;
  font-family: var(--font-display);
  color: var(--ink-mid);
  margin-bottom: 1.5rem;
}

.hero-body {
  font-size: 0.92rem;
  color: var(--ink-mid);
  max-width: 460px;
  margin-bottom: 2rem;
  line-height: 1.75;
}

.btn-primary-lg {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.05em;
  padding: 0.85rem 2.2rem;
  border-radius: 3px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}

.btn-primary-lg:hover {
  background: var(--red-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(217,79,61,0.25);
}

.hero-note {
  font-size: 0.75rem;
  color: var(--ink-light);
  margin-top: 0.8rem;
}

.urgency-panel {
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  background: var(--bg);
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}

.urgency-header {
  background: var(--ink);
  color: var(--white);
  padding: 0.65rem 1rem;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.urgency-item {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 0.9rem 1rem;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}

.urgency-item:last-child { border-bottom: none; }
.urgency-item:hover { background: var(--bg-2); }

.urgency-num {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
  min-width: 28px;
  opacity: 0.6;
}

.urgency-text strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 3px;
}

.urgency-text span {
  font-size: 0.78rem;
  color: var(--ink-light);
  line-height: 1.5;
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
  padding: 0.9rem 0;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--ink-mid);
  padding: 0.2rem 0;
}

.trust-icon {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}

/* ============================================================
   SECTION BASE
   ============================================================ */
.section    { padding: 5.5rem 0; border-bottom: 1px solid var(--border); }
.section-sm { padding: 3.5rem 0; border-bottom: 1px solid var(--border); }

.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.section-desc {
  font-size: 0.92rem;
  color: var(--ink-mid);
  max-width: 520px;
  line-height: 1.75;
}

/* ============================================================
   SITUATION
   ============================================================ */
.situation-card {
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1.4rem;
  height: 100%;
  background: var(--bg);
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}

.situation-card:hover {
  border-color: var(--red-mid);
  box-shadow: 0 4px 20px rgba(217,79,61,0.08);
  transform: translateY(-3px);
}

.situation-card .icon {
  font-size: 0.68rem;
  font-weight: 700;
  font-family: var(--font-display);
  letter-spacing: 0.1em;
  color: var(--red);
  margin-bottom: 0.7rem;
}

.situation-card p {
  font-size: 0.88rem;
  color: var(--ink-mid);
  margin: 0;
  line-height: 1.6;
}

.situation-arrow {
  text-align: center;
  padding: 1.5rem 0 0;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.08em;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-bg { background: var(--bg-2); }

.step-row {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
  transition: padding-left 0.25s;
}

.step-row:last-child { border-bottom: none; }
.step-row:hover { padding-left: 6px; }

/* 強調色（赤）に変更 */
.step-num-lg {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--red);
  opacity: 0.25;
  line-height: 1;
  min-width: 60px;
}

.step-row:hover .step-num-lg {
  opacity: 0.5;
}

.step-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.3rem;
}

.step-content p {
  font-size: 0.86rem;
  color: var(--ink-mid);
  margin: 0;
  line-height: 1.65;
}

.step-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 500;
  padding: 2px 8px;
  border-radius: 2px;
  margin-top: 0.5rem;
  background: var(--green-light);
  color: var(--green);
  border: 1px solid rgba(42,140,94,0.2);
}

/* ============================================================
   WHAT YOU GET — 比較テーブル
   th-feature列をスマホで左固定
   ============================================================ */
.table-scroll {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 6px;
  border: 1px solid var(--border-mid);
  position: relative;
}

.compare-table {
  width: 100%;
  min-width: 580px;
  border-collapse: collapse;
  table-layout: fixed;
}

.compare-table thead {
  position: sticky;
  top: 0;
  z-index: 5;
}

.compare-table thead th {
  padding: 0.9rem 1rem;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: left;
  border-bottom: 1px solid var(--border-mid);
}

.compare-table thead th.th-feature {
  background: var(--bg-3);
  color: var(--ink-light);
  width: 36%;
  position: sticky;
  left: 0;
  z-index: 6;
}

.compare-table thead th.th-free {
  background: var(--bg-2);
  color: var(--ink-mid);
  width: 16%;
  border-left: 1px solid var(--border);
}

.compare-table thead th.th-std {
  background: var(--red);
  color: var(--white);
  width: 24%;
  border-left: 1px solid var(--red-dark);
}

.compare-table thead th.th-premium {
  background: var(--blue-dark);
  color: var(--white);
  width: 24%;
  border-left: 1px solid #0C447C;
}

.compare-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
}

.compare-table tbody tr:last-child { border-bottom: none; }
.compare-table tbody tr:hover { background: var(--bg-2); }

.compare-table tbody td {
  padding: 0.78rem 1rem;
  font-size: 0.82rem;
  vertical-align: middle;
  line-height: 1.45;
}

.compare-table tbody td.td-feature {
  font-weight: 500;
  color: var(--ink);
  background: var(--bg-2);
  position: sticky;
  left: 0;
  z-index: 3;
  box-shadow: 2px 0 6px rgba(0,0,0,0.06);
}

.compare-table tbody td.td-free {
  color: var(--ink-mid);
  border-left: 1px solid var(--border);
  background: var(--bg);
}

.compare-table tbody td.td-std {
  color: var(--ink-mid);
  border-left: 1px solid var(--border);
  background: rgba(217,79,61,0.03);
}

.compare-table tbody td.td-premium {
  color: var(--ink-mid);
  border-left: 1px solid var(--border);
  background: rgba(24,95,165,0.04);
}

.check { color: var(--green); font-weight: 600; }
.lock  { color: var(--ink-light); font-size: 0.9rem; font-style: normal; display: block; text-align: center; }

.wall-note {
  background: var(--red-light);
  border: 1px solid var(--red-mid);
  border-radius: 4px;
  padding: 0.85rem 1.1rem;
  font-size: 0.83rem;
  color: var(--red-dark);
  margin-top: 1rem;
  line-height: 1.65;
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing-bg {
  background: var(--ink);
}

.pricing-bg .section-label { color: rgba(255,255,255,0.4); }
.pricing-bg .section-title { color: var(--white); }

.plan-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 1.75rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}

.plan-card:hover {
  border-color: rgba(255,255,255,0.25);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.3);
}

.plan-card.featured {
  background: var(--red);
  border-color: var(--red);
}

.plan-card.featured:hover {
  box-shadow: 0 12px 32px rgba(217,79,61,0.4);
}

.plan-badge {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 2px;
  display: inline-block;
  margin-bottom: 1rem;
  width: fit-content;
}

.badge-free      { background: rgba(255,255,255,0.1);  color: rgba(255,255,255,0.6); }
.badge-std       { background: rgba(255,255,255,0.2);  color: var(--white); }
.badge-concierge { background: var(--amber);            color: #1A1A1A; }

.plan-name {
  font-size: 1.1rem;
  font-weight: 700;
  font-family: var(--font-display);
  margin-bottom: 0.3rem;
  color: var(--white);
}

.plan-price {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.plan-price-note {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1rem;
}

.plan-desc {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 0.75rem;
  line-height: 1.65;
}

/* Including ~ テキスト：上揃え・強調・flex:1で下方向に押し出さない */
.plan-includes {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 2px;
  padding: 0.3rem 0.7rem;
  margin-bottom: 1rem;
}

.plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.plan-features li {
  font-size: 0.81rem;
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.45;
}

.plan-features li::before {
  content: '→';
  color: rgba(255,255,255,0.25);
  flex-shrink: 0;
  font-size: 0.78rem;
  margin-top: 1px;
}

.plan-card.featured .plan-features li::before { color: rgba(255,255,255,0.5); }

.plan-btn {
  display: block;
  text-align: center;
  padding: 0.68rem;
  border-radius: 3px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
  margin-top: auto;
}

.plan-btn:hover    { opacity: 0.82; transform: translateY(-1px); }
.btn-white         { background: var(--white); color: var(--ink); }
.btn-outline-white { background: transparent; border: 1px solid rgba(255,255,255,0.22); color: rgba(255,255,255,0.7); }

/* ============================================================
   COMMON RESULTS
   ============================================================ */
.result-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--border);
  transition: padding-left 0.2s;
}

.result-row:last-child { border-bottom: none; }
.result-row:hover { padding-left: 4px; }

.result-before {
  flex: 1;
  font-size: 0.86rem;
  color: var(--ink-light);
  text-decoration: line-through;
  text-decoration-color: var(--border-mid);
}

.result-arrow {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--border-hi);
  flex-shrink: 0;
}

.result-after {
  flex: 1;
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--green);
}

/* ============================================================
   NO JAPANESE
   ============================================================ */
.no-jp-card {
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  background: var(--bg);
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
  height: 100%;
}

.no-jp-card:hover {
  border-color: var(--border-mid);
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  transform: translateY(-3px);
}

/* 強調色（赤）に変更 */
.no-jp-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--red);
  opacity: 0.3;
  line-height: 1;
  min-width: 40px;
  transition: opacity 0.2s;
}

.no-jp-card:hover .no-jp-num {
  opacity: 0.6;
}

.no-jp-card h3 {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 0.3rem;
}

.no-jp-card p {
  font-size: 0.83rem;
  color: var(--ink-mid);
  margin: 0;
  line-height: 1.6;
}

/* ============================================================
   ABROAD
   ============================================================ */
.abroad-panel {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 2rem;
}

.abroad-panel h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 0.75rem;
}

.abroad-panel p {
  font-size: 0.88rem;
  color: var(--ink-mid);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.abroad-items {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.abroad-items li {
  font-size: 0.86rem;
  color: var(--ink-mid);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.55;
}

.abroad-items li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--amber);
  flex-shrink: 0;
  margin-top: 6px;
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta {
  background: var(--red);
  color: var(--white);
  padding: 5.5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.final-cta h2 {
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1rem;
  position: relative;
}

.final-cta p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 2rem;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  position: relative;
}

.btn-white-lg {
  display: inline-block;
  background: var(--white);
  color: var(--red);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  padding: 0.9rem 2.4rem;
  border-radius: 3px;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.15s, box-shadow 0.2s;
  position: relative;
}

.btn-white-lg:hover {
  opacity: 0.92;
  color: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

/* ============================================================
   DISCLAIMER
   ============================================================ */
.disclaimer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 1.5rem 0;
  font-size: 0.74rem;
  color: var(--ink-light);
  line-height: 1.7;
}

.disclaimer ul {
  padding-left: 1.2rem;
  margin: 0;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--bg);
  padding: 1.5rem 0;
  text-align: center;
  font-size: 0.76rem;
  color: var(--ink-light);
  border-top: 1px solid var(--border);
}

/* ============================================================
   FOOTER LEGAL LINKS
   ============================================================ */
footer {
  text-align: left;
}

.footer-legal a {
  font-size: 0.76rem;
  color: var(--ink-light);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-legal a:hover {
  color: var(--ink);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  body {
    padding-top: 90px;
  }

  .site-nav-inner {
    flex-wrap: wrap;
    align-items: center;
    padding-top: 0.6rem;
    padding-bottom: 0;
    gap: 0;
  }

  .nav-logo {
    font-size: 1.1rem;
    padding-bottom: 0.6rem;
  }

  .lang-sel {
    min-width: 74px;
    height: 34px;
    font-size: 0.82rem;
    padding: 0.38rem 1.45rem 0.38rem 0.6rem;
    background-position:
      calc(100% - 12px) 13px,
      calc(100% - 8px) 13px;
    background-size: 4px 4px, 4px 4px;
  }

  .nav-login,
  .nav-mypage,
  .nav-cta {
    font-size: 0.82rem;
    padding: 0.38rem 0.7rem;
  }

  .hero    { padding: 3.5rem 0 3rem; }
  .section { padding: 3.5rem 0; }
  .abroad-panel { padding: 1.25rem; }

  .result-row {
    flex-direction: column;
    gap: 0.4rem;
    align-items: flex-start;
  }
  .result-arrow { transform: rotate(90deg); }

  .table-scroll {
    margin-left: 0;
    margin-right: 0;
  }
}

/* ============================================================
   BUTTON WIGGLE — 定期的に左右に揺れる
   4秒周期：0.6秒揺れて3.4秒静止
   ============================================================ */
@keyframes btn-wiggle {
  0%    { transform: translateX(0) rotate(0deg); }
  5%    { transform: translateX(-4px) rotate(-1.5deg); }
  10%   { transform: translateX(4px) rotate(1.5deg); }
  15%   { transform: translateX(-3px) rotate(-1deg); }
  20%   { transform: translateX(3px) rotate(1deg); }
  25%   { transform: translateX(-1px) rotate(-0.5deg); }
  30%   { transform: translateX(0) rotate(0deg); }
  100%  { transform: translateX(0) rotate(0deg); }
}

.btn-wiggle {
  animation: btn-wiggle 4s ease-in-out infinite;
  /* hoverで揺れを一時停止 — クリックに集中させる */
  display: inline-block;
}

.btn-wiggle:hover {
  animation-play-state: paused;
}

/* ============================================================
   STEP SUMMARY BOX
   ============================================================ */
.step-summary {
  margin-top: 1.5rem;
  padding: 0.9rem 1.1rem;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-left: 3px solid var(--red);
  border-radius: 4px;
  font-size: 0.88rem;
  color: var(--ink-mid);
  line-height: 1.65;
}

/* ============================================================
   FINAL CTA ACCENT
   ============================================================ */
.accent-cta {
  color: var(--white);
  text-decoration: underline;
  text-decoration-color: rgba(255,255,255,0.45);
  text-underline-offset: 4px;
}

/* ============================================================
   PRICING LEAD
   ============================================================ */
.pricing-lead {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  max-width: 480px;
  line-height: 1.7;
}

/* ============================================================
   PLAN CARD VARIANTS
   ============================================================ */
.plan-card-free {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.2);
}

.plan-card-premium {
  background: rgba(56,138,221,0.18);
  border-color: rgba(56,138,221,0.4);
}

.plan-card-concierge {
  background: rgba(232,156,47,0.15);
  border-color: rgba(232,156,47,0.45);
}

/* ============================================================
   PLAN BADGES
   ============================================================ */
.badge-premium {
  background: rgba(56,138,221,0.3);
  color: #B5D4F4;
}

/* ============================================================
   PLAN BUTTONS
   ============================================================ */
.btn-plan-premium {
  background: transparent;
  border: 1px solid rgba(56,138,221,0.6);
  color: #B5D4F4;
}

.btn-plan-concierge {
  background: var(--amber);
  color: var(--ink);
}

/* ============================================================
   BTN PRIMARY SM (Already left Japan)
   ============================================================ */
.btn-primary-sm {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  padding: 0.7rem 1.8rem;
  border-radius: 3px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}

.btn-primary-sm:hover {
  background: var(--red-dark);
  color: var(--white);
  transform: translateY(-1px);
}

/* ============================================================
   TIMELINE PANEL
   ============================================================ */
.timeline-panel {
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1.25rem;
  background: var(--bg-2);
}

.timeline-title {
  font-size: 0.8rem;
  color: var(--ink-light);
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.timeline-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.timeline-row {
  display: flex;
  gap: 0.75rem;
  font-size: 0.82rem;
  color: var(--ink-mid);
}

.timeline-day {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--ink);
  min-width: 60px;
  flex-shrink: 0;
}

.timeline-desc {
  color: var(--ink-mid);
}

/* section-sm に border-bottom を統合（インラインstyle廃止） */
.section-sm {
  border-bottom: 1px solid var(--border);
}

/* ============================================================
   SHIPPING NOTE (Concierge card)
   ============================================================ */
.plan-shipping-note {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.55;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 0.65rem;
  margin-top: 0.75rem;
  display: grid;
  grid-template-columns: 1.1em 1fr;
  gap: 0 0.3em;
}

.shipping-note-body {
  display: block;
  word-break: normal;
  overflow-wrap: anywhere;
  hyphens: none;
}

/* ============================================================
   COMPARE TABLE — CONCIERGE COLUMN
   ============================================================ */
.compare-table thead th.th-concierge {
  background: #7A5A1A;
  color: #FAC775;
  width: 20%;
  border-left: 1px solid #5A4010;
}

.compare-table tbody td.td-concierge {
  color: var(--ink-mid);
  border-left: 1px solid var(--border);
  background: rgba(232,156,47,0.05);
}

/* 列幅を5列用に再定義 */
.compare-table thead th.th-feature  { width: 30%; }
.compare-table thead th.th-free     { width: 14%; }
.compare-table thead th.th-std      { width: 19%; }
.compare-table thead th.th-premium  { width: 19%; }

/* ============================================================
   TABLE TOGGLE
   ============================================================ */
.tr-collapsible {
  transition: opacity 0.3s ease;
}

.table-toggle-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0.75rem 0 0;
  padding: 0.55rem 1.1rem;
  background: none;
  border: 1px solid var(--border-mid);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ink-mid);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}

.table-toggle-btn:hover {
  border-color: var(--red);
  color: var(--red);
}

.table-toggle-icon {
  font-size: 0.7rem;
  transition: transform 0.25s;
}

/* ============================================================
   PLAN POLICY NOTE
   ============================================================ */
.plan-policy-note {
  margin-top: 2rem;
  padding: 1rem 1.25rem;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  background: rgba(255,255,255,0.04);
}

.plan-policy-note ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.plan-policy-note ul li {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  padding-left: 1em;
  position: relative;
  line-height: 1.55;
}

.plan-policy-note ul li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: rgba(255,255,255,0.25);
}

.btn-cta-delay { animation-delay: 1.5s; }
