:root {
  --ink:         #0d1520;
  --gold:        #b8860b;
  --gold-light:  #d4a843;
  --gold-pale:   #f5ecd4;
  --blue:        #1a3a6b;
  --blue-mid:    #2a5aab;
  --blue-pale:   #e8eef8;
  --silver:      #8a9bb0;
  --silver-pale: #f0f3f7;
  --red:         #c0281a;
  --red-pale:    #fdf0ee;
  --cream:       #f7f8fa;
  --warm-gray:   #5a6070;
  --border:      #d8dde8;
  --white:       #ffffff;
}

/* ─── HERO ─── */
.mp-hero {
  min-height: 100vh;
  background: var(--ink);
  position: relative; display: flex; align-items: center; overflow: hidden; padding-top: 48px;
}

.mp-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 75% 40%, rgba(26,58,107,0.35) 0%, transparent 55%),
    radial-gradient(ellipse 50% 70% at 10% 80%, rgba(192,40,26,0.12) 0%, transparent 50%),
    radial-gradient(ellipse 40% 40% at 50% 0%, rgba(184,134,11,0.1) 0%, transparent 50%);
}

/* Speed lines */
.speed-lines {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
}
.speed-lines::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0; left: -200px; right: -200px;
  background: repeating-linear-gradient(
    -15deg,
    transparent 0px,
    transparent 60px,
    rgba(42,90,171,0.03) 60px,
    rgba(42,90,171,0.03) 61px
  );
}

.hero-bg-symbol {
  position: absolute; right: 3%; top: 50%; transform: translateY(-50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(160px, 20vw, 320px);
  color: rgba(42,90,171,0.06); line-height: 1;
  pointer-events: none; user-select: none;
}

.mp-hero-inner {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto; padding: 80px 48px;
  display: grid; grid-template-columns: 1fr 460px; gap: 80px; align-items: center; width: 100%;
}

.hero-sector-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(42,90,171,0.15); border: 1px solid rgba(42,90,171,0.4);
  padding: 6px 16px 6px 10px; margin-bottom: 28px;
}

 50%{opacity:0.5;transform:scale(0.8)} }
.hero-sector-badge span { font-size: 11px; font-weight: 700; letter-spacing: 0.15em; color: var(--blue-mid); text-transform: uppercase; }

.mp-hero-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(32px, 4.5vw, 56px); font-weight: 300;
  color: var(--white); line-height: 1.5; letter-spacing: 0.02em; margin-bottom: 20px;
}
.mp-hero-title strong {
  display: block; font-weight: 700;
  background: linear-gradient(135deg, var(--gold-light) 0%, #6080c0 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.mp-hero-lead {
  font-size: 15px; line-height: 1.9; color: rgba(255,255,255,0.6); margin-bottom: 40px; max-width: 520px;
}
.mp-hero-lead strong { color: rgba(255,255,255,0.9); font-weight: 700; }

.mp-cta-row { display: flex; gap: 16px; flex-wrap: wrap; }

.btn-blue {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 36px; background: var(--blue-mid); color: var(--white);
  font-family: 'Noto Sans JP', sans-serif; font-size: 14px; font-weight: 700;
  letter-spacing: 0.05em; text-decoration: none; border: none; cursor: pointer;
  transition: all 0.3s ease;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}
.btn-blue:hover { background: #3570cc; transform: translateY(-2px); }

/* KPI panel */
.mp-kpi-panel {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: rgba(42,90,171,0.3);
  margin-top: 56px; border: 1px solid rgba(42,90,171,0.3);
}
.kpi-cell {
  background: rgba(255,255,255,0.03); padding: 24px 20px; text-align: center; transition: background 0.25s;
}
.kpi-cell:hover { background: rgba(42,90,171,0.12); }
.kpi-val { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 600; color: var(--gold-light); line-height: 1; margin-bottom: 6px; }
.kpi-label { font-size: 11px; color: rgba(255,255,255,0.4); letter-spacing: 0.08em; }

/* Hero visual */
.mp-hero-visual { position: relative; }
.mp-hero-img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block;
  filter: brightness(0.7) saturate(0.75);
  border: 1px solid rgba(42,90,171,0.25);
}
.mp-hero-img-placeholder {
  width: 100%; aspect-ratio: 4/3;
  background: linear-gradient(135deg, rgba(26,58,107,0.5) 0%, rgba(42,90,171,0.2) 100%);
  border: 1px solid rgba(42,90,171,0.25);
  display: flex; align-items: center; justify-content: center; font-size: 80px;
}
.mp-stat-bubble {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--ink); border: 1px solid rgba(42,90,171,0.5);
  padding: 20px 24px; text-align: center; min-width: 140px;
}
.mp-stat-bubble .num { font-family: 'Cormorant Garamond', serif; font-size: 40px; font-weight: 300; color: var(--gold-light); line-height: 1; margin-bottom: 4px; }
.mp-stat-bubble .lbl { font-size: 11px; color: rgba(255,255,255,0.5); letter-spacing: 0.08em; }

50%{opacity:1} }

/* ─── SNAPSHOT ─── */
.snapshot-strip {
  background: var(--blue); padding: 72px 48px; position: relative; overflow: hidden;
}
.snapshot-strip::before {
  content: ''; position: absolute; right: -80px; top: -80px;
  width: 400px; height: 400px; border-radius: 50%; background: rgba(184,134,11,0.06);
}
.snapshot-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255,255,255,0.1); }
.snap-item { background: var(--blue); padding: 40px 36px; transition: background 0.25s; }
.snap-item:hover { background: rgba(42,90,171,0.5); }
.snap-icon { font-size: 32px; margin-bottom: 16px; display: block; }
.snap-item h3 { font-family: 'Noto Serif JP', serif; font-size: 18px; font-weight: 600; color: var(--white); margin-bottom: 10px; }
.snap-item p { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.8; }

.section-eyebrow::before { content: ''; display: block; width: 24px; height: 1px; background: var(--blue-mid); }

.mp-h2 strong { font-weight: 700; color: var(--blue); }

/* ─── OPPORTUNITIES ─── */

.opp-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(to right, var(--blue-mid), var(--gold));
  transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease;
}

.opp-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  font-weight: 300;
  color: rgba(200, 88, 10, 10);
  line-height: 1;
  margin-bottom: 8px;
}

.opp-list li::before { content: '→'; position: absolute; left: 0; color: var(--blue-mid); font-size: 11px; top: 2px; }

/* ─── IRAN ADVANTAGE ─── */
.advantage-section {
  background: var(--ink); padding: 96px 48px; position: relative; overflow: hidden;
}
.advantage-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 60% at 80% 50%, rgba(42,90,171,0.15) 0%, transparent 60%);
}
.advantage-inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }

.advantage-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(22px, 3vw, 38px); font-weight: 300; font-style: italic;
  color: var(--white); line-height: 1.7;
  border-left: 2px solid var(--gold); padding-left: 32px;
  margin-bottom: 56px; max-width: 700px;
}
.advantage-quote strong { font-style: normal; font-weight: 600; color: var(--gold-light); }

.advantage-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.adv-card {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07);
  padding: 32px 28px; transition: all 0.3s ease;
}
.adv-card:hover { border-color: rgba(42,90,171,0.5); background: rgba(42,90,171,0.08); }
.adv-icon { font-size: 28px; margin-bottom: 14px; display: block; }
.adv-card h4 { font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 8px; letter-spacing: 0.03em; }
.adv-card p { font-size: 12px; color: rgba(255,255,255,0.5); line-height: 1.8; }

/* ─── RISK ─── */
.risk-section { background: var(--silver-pale); padding: 96px 48px; }
.risk-inner { max-width: 1200px; margin: 0 auto; }

.risk-notice {
  margin-top: 32px; background: var(--red-pale);
  border: 1px solid rgba(192,40,26,0.2); border-left: 3px solid var(--red);
  padding: 20px 24px;
}

.risk-notice strong { color: var(--red); }

/* ─── SUPPORT ─── */
.support-section { background: var(--cream); padding: 96px 48px; }
.support-inner { max-width: 1200px; margin: 0 auto; }

.support-step:hover 

.step-duration { display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: 0.1em; color: var(--blue-mid); background: var(--blue-pale); padding: 3px 10px; margin-bottom: 12px; text-transform: uppercase; }

/* ─── REPORT ─── */
.report-section {
  background: linear-gradient(135deg, var(--blue) 0%, #081228 100%);
  padding: 96px 48px; position: relative; overflow: hidden;
}
.report-section::after {
  content: 'CHECK'; position: absolute; right: -20px; bottom: -40px;
  font-family: 'Cormorant Garamond', serif; font-size: 160px;
  color: rgba(255,255,255,0.03); font-weight: 700; pointer-events: none;
}
.report-inner { max-width: 1200px; margin: 0 auto; }

/* ─── CONTACT ─── */
.contact-section { background: var(--white); padding: 96px 48px; }
.contact-inner { max-width: 1200px; margin: 0 auto; }

.contact-callout { background: var(--ink); padding: 24px 28px; position: relative; overflow: hidden; }
.contact-callout::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--blue-mid); }
.contact-callout strong { display: block; font-size: 13px; font-weight: 700; color: var(--gold-light); margin-bottom: 8px; letter-spacing: 0.05em; }

.contact-form-box { background: var(--cream); border: 1px solid var(--border); padding: 48px 44px; }

.form-label { display: block; font-size: 11px; font-weight: 700; letter-spacing: 0.1em; color: var(--blue); text-transform: uppercase; margin-bottom: 8px; }
.form-input { width: 100%; padding: 14px 16px; border: 1px solid var(--border); background: var(--white); font-family: 'Noto Sans JP', sans-serif; font-size: 14px; color: var(--ink); outline: none; transition: border-color 0.2s ease; }
.form-input:focus { border-color: var(--blue-mid); background: var(--white); }

/* ─── FOOTER ─── */
.mp-footer-strip { background: var(--ink); padding: 24px 48px; text-align: center; }
.mp-footer-strip p { font-size: 11px; color: rgba(255,255,255,0.3); letter-spacing: 0.05em; }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .mp-hero-inner { grid-template-columns: 1fr; padding: 80px 24px 60px; gap: 40px; }
  .mp-hero-visual { display: none; }
  .snapshot-inner, .advantage-grid, 
  
  
  
  
  
  .snapshot-strip, .advantage-section, .risk-section, .support-section, .report-section, .contact-section { padding: 60px 24px; }
  
}


.section-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #c8580a;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: #c8580a;
  flex-shrink: 0;
}
/* リスクセクション */
.risk-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-top: 3px solid var(--red);
  border-radius: 4px;
  padding: 32px 28px;
}
.risk-card h3 {
  font-family: 'Noto Serif JP', serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin: 12px 0 10px;
}
.risk-card p {
  font-size: 13px;
  color: var(--warm-gray);
  line-height: 1.8;
}
.risk-notice p {
  font-size: 13px;
  color: var(--ink);
  line-height: 1.8;
  margin: 0;
}
.risk-notice strong {
  color: var(--red);
}

.hearing-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}
.hearing-list li {
  padding: 12px 0 12px 24px;
  position: relative;
  font-size: 14px;
  color: var(--ink);
  border-bottom: 1px solid var(--border);
  line-height: 1.7;
}
.hearing-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--amber);
  font-weight: 700;
}