@charset "UTF-8";

/* =========================================================
   苫米地英人DVD第39弾『苫米地進化論』LP
   Baseline: 260620（クリーム×ゴールド／静的／モバイルファースト）
   ========================================================= */

/* ===== Variables ===== */
:root {
  /* アクセント（オレンジ系） */
  --gold: #d97706;
  --gold-light: #fbbf24;
  --gold-pale: #fce6c8;
  --gold-dark: #b45309;
  --orange: #d2601a;
  /* ベース */
  --white: #ffffff;
  --dark: #14110c;
  /* テキスト */
  --text-dark: #2a2016;
  --text-mid: #303030;
  --text-dim: #6f6a62;
  --text-pale: #9a9188;
  /* ボーダー・シャドウ */
  --border-gold: rgba(217,119,6,0.3);
  --border-gold-strong: rgba(217,119,6,0.55);
  --shadow-gold: rgba(217,119,6,0.14);
  color-scheme: light;
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: #ffffff;
  color: var(--text-mid);
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  line-height: 2.0;
  letter-spacing: 0.07em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; }
a { color: inherit; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

/* ===== Responsive br ===== */
.sp-br { display: none; }
@media (max-width: 640px) {
  .sp-br { display: inline; }
}
/* PC・タブレットのみ表示する改行（スマホでは改行しない） */
.pc-br { display: inline; }
@media (max-width: 640px) {
  .pc-br { display: none; }
}
/* タブレット・スマホで表示する改行 */
.tabsp-br { display: none; }
@media (max-width: 900px) {
  .tabsp-br { display: inline; }
}
/* スマホで「スライド」講義の見出しの2行目を1行に収める */
@media (max-width: 480px) {
  .sec-heading.heading-slide {
    font-size: clamp(15px, 5.2vw, 22px);
    letter-spacing: 0.02em;
    white-space: nowrap;
  }
}


/* ===== Dividers ===== */
.g-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, #c2c6cc, #e9ebee, #c2c6cc, transparent);
}
.g-divider-thick {
  height: 2px;
  background: linear-gradient(to right, transparent, #a9afb7, #e2e5e8, #a9afb7, transparent);
}

/* ===== Sections ===== */
.sec {
  padding: clamp(48px, 10vw, 80px) clamp(20px, 5vw, 40px);
  max-width: calc(960px + clamp(40px, 10vw, 80px));
  margin: 0 auto;
}
.sec-alt {
  background: #fffef6;
  padding: clamp(48px, 10vw, 80px) clamp(20px, 5vw, 40px);
}
.sec-alt-inner { max-width: 960px; margin: 0 auto; }

/* ===== Headings ===== */
.sec-heading {
  font-family: 'Shippori Mincho B1', serif;
  font-size: clamp(22px, 4.4vw, 34px);
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: 0.1em;
  line-height: 1.6;
  text-align: center;
  margin: 0 0 12px;
}
.sec-heading-sub {
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid #d9dce0;
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(13px, 2.5vw, 16px);
  color: var(--text-dim);
  min-height: 1px;
}

/* ===== Body text ===== */
.body-text {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: clamp(15px, 2.5vw, 17px);
  color: var(--text-mid);
  line-height: 2.0;
  letter-spacing: 0.07em;
}
.body-text p { margin: 0 0 1.5em; }
.body-text p:last-child { margin-bottom: 0; }
.body-text strong { font-weight: 700; color: var(--text-dark); }
/* スマホ版の本文フォント・行間 */
@media (max-width: 480px) {
  .body-text { font-size: 14px; line-height: 1.6; }
}

/* ===== Inline emphasis ===== */
.large-bold { font-size: 107%; font-weight: 700; color: var(--orange); }

/* ===== Pull quote / boxes ===== */
.box-platinum {
  background: linear-gradient(135deg, #241c12 0%, #33291a 100%);
  color: var(--gold-pale);
  padding: clamp(20px, 4vw, 32px) clamp(20px, 5vw, 40px);
  border: 1px solid var(--gold);
  border-radius: 4px;
  font-family: 'Shippori Mincho B1', serif;
  font-size: clamp(15px, 3vw, 19px);
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.1em;
  line-height: 1.9;
  margin: 32px 0;
}
.pull-quote { text-align: center; padding: 6px 0 clamp(16px, 3vw, 24px); margin: 4px 0 20px; }
.pull-quote-text {
  display: inline-block;
  font-family: 'Shippori Mincho B1', serif;
  font-size: clamp(17px, 3.4vw, 25px);
  font-weight: 600;
  color: var(--gold-dark);
  letter-spacing: 0.16em;
  line-height: 1.7;
}
.pull-quote-text::before,
.pull-quote-text::after {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
  margin: 14px 0;
}
@media (max-width: 480px) {
  .pull-quote-text {
    font-size: clamp(14px, 4.1vw, 18px);
    letter-spacing: 0.05em;
    white-space: nowrap;
  }
}

/* ===== HERO ===== */
.hero {
  position: relative;
  background: #05070c url('../img/hero_bg3.jpg') center center / cover no-repeat;
  overflow: hidden;
  padding: clamp(44px, 9vw, 96px) 0 clamp(48px, 9vw, 84px);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    rgba(3,4,8,0.62) 0%,
    rgba(3,4,8,0.28) 32%,
    rgba(3,4,8,0.40) 66%,
    rgba(3,4,8,0.74) 100%);
  pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 2;
  max-width: 900px; margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 40px);
  text-align: center;
}
.hero-catch-main {
  font-family: 'Shippori Mincho B1', serif;
  font-size: clamp(19px, 3.9vw, 29px);
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.07em;
  line-height: 1.5;
  margin: 0 0 40px;
  text-shadow: 0 2px 14px rgba(0,0,0,0.85), 0 0 4px rgba(0,0,0,0.6);
}
@media (max-width: 480px) {
  .hero-catch-main {
    font-size: clamp(13px, 4vw, 19px);
    letter-spacing: 0.02em;
    white-space: nowrap;
  }
}
@media (min-width: 481px) and (max-width: 900px) {
  .hero-catch-main {
    font-size: clamp(18px, 3.7vw, 28px);
    letter-spacing: 0.03em;
    white-space: nowrap;
  }
}
.hero-badge {
  display: inline-block;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: clamp(14px, 2.9vw, 18px);
  font-weight: 700;
  color: #303030;
  letter-spacing: 0.24em;
  line-height: 1;
  border: 1px solid #d9a800;
  border-radius: 24px;
  padding: 7px 26px 11px 30px;
  margin-bottom: 24px;
  background: #ffd633;
  box-shadow: 0 2px 6px rgba(0,0,0,0.22);
  text-shadow: none;
}
.hero-title-img-wrap {
  margin: 0 auto 46px;
}
.hero-title-img {
  display: block;
  width: 100%;
  max-width: 680px;
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 6px 20px rgba(0,0,0,0.6));
}
.hero-lead-box {
  max-width: 760px;
  margin: 0 auto 26px;
  padding: clamp(15px, 2.6vw, 22px) clamp(20px, 5vw, 40px);
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.38);
  border-radius: 8px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: clamp(14px, 2.6vw, 17px);
  font-weight: 500;
  color: #f7f7f7;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
  line-height: 1.95;
  letter-spacing: 0.06em;
  text-align: left;
}
.hero-note {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: clamp(13px, 2.6vw, 15px);
  font-weight: 700;
  color: #ffd633;
  line-height: 1.7;
  margin: 26px 0 0;
  letter-spacing: 0.05em;
  text-shadow: 0 1px 8px rgba(0,0,0,0.7);
}

/* ===== 本文中のイメージ画像 ===== */
.lp-figure {
  margin: 30px 0;
  text-align: center;
}
.lp-figure img {
  display: inline-block;
  width: 100%;
  max-width: 760px;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 4px 20px rgba(60,60,60,0.22);
}
.lp-figure--portrait { margin-bottom: 4px; }
.lp-figure--portrait img { max-width: 360px; border-radius: 8px; }

/* ===== Video (trailer) ===== */
.video-section {
  padding: clamp(40px, 8vw, 64px) clamp(20px, 5vw, 40px) 0;
}
.video-wrap {
  max-width: 860px;
  margin: 0 auto;
}
.video-frame {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background: var(--dark);
  border: 1px solid var(--border-gold-strong);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 6px 30px rgba(0,0,0,0.18);
}
.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ===== 3つのパラダイムシフト（番号付きリスト） ===== */
.shift-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 32px 0;
}
.shift-item {
  background: var(--white);
  border-left: 3px solid var(--gold);
  border-radius: 4px;
  padding: clamp(20px, 4vw, 28px) clamp(18px, 4vw, 30px);
  box-shadow: 0 2px 14px var(--shadow-gold);
}
.shift-head {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 12px;
}
.shift-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 5vw, 40px);
  font-style: italic;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
}
.shift-title {
  font-family: 'Shippori Mincho B1', serif;
  font-size: clamp(16px, 2.9vw, 20px);
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: 0.05em;
  line-height: 1.55;
}
.shift-body {
  margin: 0;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: clamp(14px, 2.4vw, 16px);
  color: var(--text-mid);
  line-height: 1.95;
  letter-spacing: 0.05em;
}

/* 後続本文ブロックの余白 */
.body-text--gap { margin-top: 32px; }

/* ===== 警告セクション ===== */
.sec-warning {
  background: repeating-linear-gradient(135deg, #141414 0, #141414 36px, #242424 36px, #242424 72px);
  padding: clamp(48px, 10vw, 80px) clamp(20px, 5vw, 40px);
}
.sec-warning-inner { max-width: 820px; margin: 0 auto; }
.sec-warning .sec-heading {
  color: #ffd633;
}
.sec-warning .sec-heading-sub {
  border-bottom: none;
  margin-bottom: 14px;
  padding-bottom: 8px;
}
.warning-box {
  border: 3px solid #ffd633;
  border-radius: 6px;
  padding: clamp(24px, 5vw, 40px) clamp(20px, 5vw, 40px);
  background: linear-gradient(135deg, #fdf6d6 0%, #f0e2a6 35%, #e3d186 65%, #f7ecb8 100%);
}
.warning-text {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: clamp(15px, 2.5vw, 17px);
  font-weight: 500;
  color: #303030;
  line-height: 2.0;
  letter-spacing: 0.06em;
  text-align: center;
}
.warning-text p { margin: 0 0 1.5em; }
.warning-text p:last-child { margin-bottom: 0; }
.warning-text strong { color: #000000; font-weight: 700; }
.warning-emphasis {
  font-weight: 700;
  font-size: 1.15em;
  color: #b3251c;
  letter-spacing: 0.08em;
}

/* ===== 特典（ベネフィット） ===== */
.benefit-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 32px 0 0;
}
.benefit-item {
  background: var(--white);
  border: 1px solid var(--border-gold);
  border-top: 3px solid var(--gold);
  border-radius: 6px;
  padding: clamp(22px, 4vw, 30px) clamp(18px, 4vw, 32px);
  box-shadow: 0 2px 14px var(--shadow-gold);
}
.benefit-title {
  font-family: 'Shippori Mincho B1', serif;
  font-size: clamp(16px, 3vw, 21px);
  font-weight: 600;
  color: var(--gold-dark);
  line-height: 1.6;
  letter-spacing: 0.05em;
  margin-bottom: 14px;
}
.benefit-body {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: clamp(14px, 2.4vw, 16px);
  color: var(--text-mid);
  line-height: 1.95;
  letter-spacing: 0.05em;
}
.benefit-body p { margin: 0 0 1.2em; }
.benefit-body p:last-child { margin-bottom: 0; }

/* ===== 価格 ===== */
.price-block {
  text-align: left;
  margin: 8px 0 4px;
}
.price-was {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: clamp(15px, 2.6vw, 18px);
  color: var(--text-dim);
  letter-spacing: 0.05em;
}
.price-was s { text-decoration-thickness: 1px; }
.price-arrow {
  display: block;
  font-size: 18px;
  color: var(--gold);
  line-height: 1;
  margin: -2px 0 -14px;
}
.price-now {
  font-family: 'Shippori Mincho B1', serif;
  font-size: clamp(15px, 2.6vw, 18px);
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: 0.05em;
}
.price-now .price-num {
  font-family: 'Times New Roman', Times, 'Noto Serif JP', serif;
  font-size: clamp(32px, 7vw, 46px);
  font-weight: 700;
  color: var(--gold-dark);
  letter-spacing: 0.01em;
  vertical-align: baseline;
  margin: 0 2px;
}
.price-now-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 12px;
}
.price-label-small {
  display: inline-block;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: clamp(12px, 2.2vw, 14px);
  font-weight: 700;
  color: var(--gold-pale);
  background: var(--gold-dark);
  padding: 3px 14px;
  border-radius: 3px;
  letter-spacing: 0.1em;
}

/* ===== 詳細テーブル ===== */
.detail-table-wrap {
  border: 1px solid #c4c4c4;
  border-radius: 4px;
  overflow: hidden;
  margin: 8px 0 0;
}
.detail-row {
  display: grid;
  grid-template-columns: 1fr;
  border-bottom: 1px solid #c4c4c4;
}
.detail-row:last-child { border-bottom: none; }
@media (min-width: 600px) {
  .detail-row { grid-template-columns: 170px 1fr; }
}
.d-th {
  font-family: 'Shippori Mincho B1', serif;
  font-size: clamp(13px, 2.5vw, 15px);
  font-weight: 600;
  color: #ffffff;
  background: #303030;
  padding: clamp(14px, 3vw, 18px) clamp(16px, 3vw, 22px);
  display: flex;
  align-items: center;
  letter-spacing: 0.06em;
}
.d-td {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(14px, 2.5vw, 16px);
  color: var(--text-mid);
  line-height: 1.85;
  background: var(--white);
  padding: clamp(14px, 3vw, 18px) clamp(16px, 3vw, 24px);
  letter-spacing: 0.04em;
}
.d-td .note-text { margin-top: 6px; }
.d-td strong { color: var(--text-dark); font-weight: 700; }
.d-td p { margin: 0; }
.d-td p + p { margin-top: 1em; }

/* 詳細セル内の小見出し（枠付き） */
.benefit-detail + .benefit-detail { margin-top: 20px; }
.benefit-detail p { padding-left: 1em; }
.sub-label {
  display: block;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: clamp(14px, 2.5vw, 16px);
  font-weight: 700;
  color: var(--gold-dark);
  background: rgba(217,119,6,0.09);
  border-left: 3px solid var(--gold);
  border-radius: 0 4px 4px 0;
  padding: 7px 14px;
  margin-bottom: 10px;
  letter-spacing: 0.04em;
  line-height: 1.55;
}

/* ===== 注釈 ===== */
.note-text {
  display: block;
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(13px, 2.4vw, 15px);
  color: var(--text-dim);
  line-height: 1.7;
  text-indent: -1em;
  padding-left: 1em;
  margin-top: 10px;
}

/* ===== CTA ===== */
.cta-wrap { text-align: center; padding-top: 44px; }
.btn-img {
  display: inline-block;
  max-width: 600px;
  width: 100%;
  text-decoration: none;
}
.btn-img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}
.cta-note {
  display: block;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: clamp(12px, 2.3vw, 14px);
  font-weight: 700;
  color: var(--gold-dark);
  text-align: center;
  text-indent: -1em;
  padding-left: 1em;
  margin-top: 7px;
  width: fit-content;
  margin-inline: auto;
  letter-spacing: 0.04em;
}
/* スマホ版のCTA注意書きの行間 */
@media (max-width: 640px) {
  .cta-note { line-height: 1.4; }
}

/* ===== Footer ===== */
.footer {
  background: var(--dark);
  padding: clamp(24px, 5vw, 36px) 24px;
  text-align: center;
  border-top: 1px solid rgba(217,119,6,0.24);
}
.footer-link {
  display: inline-block;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 12px;
  color: #cfc9bd;
  text-decoration: underline;
  text-underline-offset: 3px;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}
.footer-link:hover { color: #ffffff; }
.footer-copy {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 12px;
  color: var(--text-pale);
  margin: 0;
  letter-spacing: 0.06em;
}
