/* ============================================
   LP「資産構築の始め方」無料オンライン講座
   style.css  v2.0 全面リデザイン
   ============================================ */

/* --- リセット & ベース --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 18px;
  scroll-behavior: smooth;
}

body {
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 400;
  color: #222;
  background-color: #fff;
  line-height: 1.85;
  -webkit-text-size-adjust: 100%;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a { color: inherit; text-decoration: none; }

/* --- 共通レイアウト --- */
.lp-section { padding: 36px 20px; }
.inner { max-width: 1000px; margin: 0 auto; }
.inner-narrow { max-width: 800px; margin: 0 auto; }

/* ============================================
   見出しスタイル
   ============================================ */

/* 左右飾り線付き大見出し */
.h-ruled {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.6rem;
  font-weight: 700;
  color: #1a2f5a;
  margin-bottom: 28px;
  line-height: 1.5;
  text-align: center;
  justify-content: center;
}
.h-ruled::before,
.h-ruled::after {
  content: "";
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, transparent, #a0b8d8);
}
.h-ruled::after {
  background: linear-gradient(90deg, #a0b8d8, transparent);
}

/* 下線装飾付き大見出し */
.h-underline {
  text-align: center;
  font-size: 1.6rem;
  font-weight: 700;
  color: #1a2f5a;
  margin-bottom: 28px;
  line-height: 1.5;
  padding-bottom: 14px;
  border-bottom: 3px solid #c8507a;
}

/* リボン帯見出し（CSSのみ） */
.h-ribbon {
  position: relative;
  text-align: center;
  background: #1a2f5a;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
  padding: 16px 40px;
  margin-bottom: 28px;
  letter-spacing: 0.05em;
  line-height: 1.5;
}
.h-ribbon::before,
.h-ribbon::after {
  content: "";
  position: absolute;
  bottom: -10px;
  border-top: 10px solid #0f1e3a;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
}
.h-ribbon::before { left: 0; }
.h-ribbon::after  { right: 0; }

/* ============================================
   本文・テキスト共通
   ============================================ */
.body-text {
  font-size: 1.1rem;
  line-height: 1.95;
  color: #333;
}
.body-text p { margin-bottom: 1em; }
.body-text p:last-child { margin-bottom: 0; }

.lead {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1a2f5a;
  text-align: center;
  line-height: 1.7;
  margin: 20px 0;
}

.text-pink  { color: #c8507a; font-weight: 700; }
.text-navy  { color: #1a2f5a; font-weight: 700; }

/* ============================================
   囲み枠・ボックス
   ============================================ */
.box-plain {
  border: 2px solid #b8d0e8;
  border-radius: 8px;
  padding: 24px 28px;
  background: #fff;
}
.box-shadow {
  border: 2px solid #8ab0d0;
  border-radius: 8px;
  padding: 24px 28px;
  background: #fff;
  box-shadow: 5px 5px 0 #c0d8f0;
}
.box-pink {
  border: 2px solid #e0a0b8;
  border-radius: 8px;
  padding: 24px 28px;
  background: #fff8fb;
}
.box-accent {
  background: linear-gradient(135deg, #eef4ff 0%, #fff0f5 100%);
  border-left: 5px solid #1a2f5a;
  border-radius: 0 8px 8px 0;
  padding: 22px 28px;
  margin: 20px 0;
}

/* ============================================
   チェックリスト
   ============================================ */
.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.check-list li {
  padding: 10px 0 10px 38px;
  position: relative;
  font-size: 1.1rem;
  border-bottom: 1px solid #eee;
  line-height: 1.65;
}
.check-list li:last-child { border-bottom: none; }
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 6px;
  top: 9px;
  color: #c8507a;
  font-size: 1.1rem;
  font-weight: 700;
}

/* ============================================
   セクション背景バリエーション
   ============================================ */
.bg-white   { background: #fff; }
.bg-pink    { background: #fdf0f5; }
.bg-blue    { background: #f0f5fd; }
.bg-navy    { background: #1a2f5a; color: #fff; }
.bg-texture {
  background-color: #fafafa;
  background-image: url("../images/bg_texture.png");
  background-repeat: repeat;
  background-size: 400px auto;
}

/* ============================================
   セクション1: トップヘッダー
   ============================================ */
#hero { padding: 0; }
#hero img { width: 100%; display: block; }

/* ============================================
   セクション2: こんなお悩みありませんか
   ============================================ */
#worries { padding: 48px 20px; background: #fff; }
.worries-heading {
  text-align: center;
  font-size: 1.55rem;
  font-weight: 700;
  color: #1a2f5a;
  margin-bottom: 24px;
  padding: 0 0 12px;
  border-bottom: 3px solid #c8507a;
  position: relative;
}
.worries-heading .deco-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 8px;
  color: #8ab0d0;
  font-size: 1.2rem;
}

/* ============================================
   セクション3〜7: 共感・解決・理由
   ============================================ */
.empathy-block { font-size: 1.1rem; line-height: 1.9; color: #333; }
.empathy-block p { margin-bottom: 1.1em; }
.empathy-block p:last-child { margin-bottom: 0; }

/* 強調キャッチ帯 */
.catch-band {
  background: linear-gradient(135deg, #1a2f5a 0%, #2a4f8a 100%);
  color: #fff;
  text-align: center;
  padding: 22px 28px;
  border-radius: 8px;
  margin: 24px 0;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.03em;
}

/* ============================================
   「投資を入口に〜」強調セクション
   ============================================ */
#two-birds { padding: 0; background: #fff; }
.two-birds-heading {
  background: linear-gradient(135deg, #c8507a 0%, #1a2f5a 100%);
  color: #fff;
  text-align: center;
  padding: 28px 40px;
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 0;
  letter-spacing: 0.04em;
  text-shadow: 0 2px 6px rgba(0,0,0,0.3);
  position: relative;
}
.two-birds-heading::after {
  content: "";
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 16px solid transparent;
  border-right: 16px solid transparent;
  border-top: 14px solid #1a2f5a;
}

/* ============================================
   フォームセクション
   ============================================ */
.form-section {
  padding: 48px 20px;
  background-image: url("../images/cta_band.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.form-box {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(255,255,255,0.95);
  border-radius: 12px;
  padding: 36px 48px;
  box-shadow: 0 6px 28px rgba(0,0,0,0.18);
}
.form-box .form-title {
  text-align: center;
  font-size: 1.4rem;
  font-weight: 700;
  color: #1a2f5a;
  margin-bottom: 20px;
  line-height: 1.5;
}
.form-box label {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 7px;
}
.badge-req {
  display: inline-block;
  background: #c8507a;
  color: #fff;
  font-size: 0.72rem;
  padding: 1px 7px;
  border-radius: 3px;
  margin-left: 6px;
  vertical-align: middle;
}
.form-box input[type="email"] {
  width: 100%;
  padding: 13px 14px;
  font-size: 1rem;
  border: 2px solid #b8d0e8;
  border-radius: 6px;
  margin-bottom: 16px;
  outline: none;
  font-family: inherit;
  transition: border-color 0.2s;
}
.form-box input[type="email"]:focus { border-color: #1a2f5a; }

/* CTAボタン */
.btn-cta {
  display: block;
  width: 100%;
  background: linear-gradient(135deg, #c8507a 0%, #e06090 100%);
  color: #fff;
  font-size: 1.15rem;
  font-weight: 700;
  padding: 20px 32px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  text-align: center;
  line-height: 1.3;
  box-shadow: 0 4px 18px rgba(200,80,122,0.45);
  transition: transform 0.15s, box-shadow 0.15s;
  font-family: inherit;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(200,80,122,0.55);
}

/* 個人情報取扱文 */
.privacy-note {
  font-size: 0.65rem;
  color: #777;
  line-height: 1.5;
  margin-top: 14px;
  padding-top: 10px;
  border-top: 1px solid #ddd;
  letter-spacing: 0.01em;
}

/* ============================================
   セクション9: 4つの柱
   ============================================ */
#pillars { padding: 48px 20px; background: #f0f5fd; }
.pillars-diagram { text-align: center; margin: 24px auto; max-width: 500px; }

/* ============================================
   セクション11: 実践者の声
   ============================================ */
#voices { padding: 0; }
.voices-header {
  background-image: url("../images/voices_band.png");
  background-size: cover;
  background-position: center;
  padding: 36px 20px;
  text-align: center;
}
.voices-header .voices-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1a2f5a;
  margin-bottom: 8px;
  line-height: 1.4;
}
.voices-header .voices-sub {
  font-size: 1.25rem;
  color: #c8507a;
  font-weight: 700;
}
.voices-body { padding: 40px 20px; background: #fff; }

.voice-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 24px;
  padding: 20px 24px;
  background: #f8f8ff;
  border-radius: 8px;
  border-left: 5px solid #8ab0d0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.voice-card:last-of-type { margin-bottom: 0; }
.voice-photo {
  width: 80px;
  flex-shrink: 0;
}
.voice-photo img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #d0e4f4;
}
.voice-content { flex: 1; }
.voice-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: #1a2f5a;
  margin-bottom: 4px;
}
.voice-headline {
  font-size: 1.1rem;
  font-weight: 700;
  color: #c8507a;
  margin-bottom: 6px;
  line-height: 1.5;
}
.voice-body {
  font-size: 1rem;
  line-height: 1.75;
  color: #333;
}
.voice-disclaimer {
  font-size: 0.78rem;
  color: #888;
  margin-top: 16px;
  text-align: center;
}

/* ============================================
   セクション12: 講師プロフィール
   ============================================ */
#profile { padding: 52px 20px; background: #fdf0f5; }
.profile-layout {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}
.profile-photo-col {
  width: 200px;
  flex-shrink: 0;
}
.profile-photo-col .prof-img {
  width: 200px;
  height: 240px;
  object-fit: cover;
  object-position: top center;
  border-radius: 8px;
  border: 3px solid #d0e4f4;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}
.books-row {
  display: flex;
  gap: 8px;
  margin-top: 14px;
  justify-content: center;
}
.books-row img {
  width: 58px;
  height: 82px;
  object-fit: cover;
  border-radius: 3px;
  box-shadow: 2px 2px 6px rgba(0,0,0,0.18);
}
.profile-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1a2f5a;
  margin-bottom: 4px;
}
.profile-title {
  font-size: 0.88rem;
  color: #555;
  margin-bottom: 14px;
  line-height: 1.65;
}
.profile-body {
  font-size: 0.95rem;
  line-height: 1.9;
  color: #333;
}
.profile-body p { margin-bottom: 0.85em; }

/* ============================================
   セクション13: 特典
   ============================================ */
#bonus { padding: 0; }

/* 特典帯ヘッダー */
.bonus-header {
  background-image: url("../images/bonus_band.png");
  background-size: cover;
  background-position: center;
  padding: 40px 20px;
  text-align: center;
}
.bonus-header .bonus-pre {
  font-size: 0.95rem;
  color: #c8d8f0;
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}
.bonus-header .bonus-title-main {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
  letter-spacing: 0.04em;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.bonus-header .bonus-title-main span {
  color: #ffd700;
}
.bonus-header .bonus-sub {
  font-size: 1rem;
  color: #d0e8ff;
  margin-top: 8px;
}

/* 特典画像リスト（1列縦並び） */
.bonus-body {
  padding: 36px 20px;
  background: #f0f5fd;
}
.bonus-img-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
.bonus-img-list img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 3px 14px rgba(0,0,0,0.15);
}

/* ============================================
   最後のメッセージ
   ============================================ */
#final-message {
  padding: 0;
}
.final-box {
  text-align: center;
  padding: 0;
  background: linear-gradient(135deg, #1a2f5a 0%, #2a4f8a 50%, #1a2f5a 100%);
  position: relative;
  overflow: hidden;
}
.final-box::before {
  content: "";
  position: absolute;
  top: -80px; left: -80px;
  width: 280px; height: 280px;
  background: rgba(200,80,122,0.15);
  border-radius: 50%;
}
.final-box::after {
  content: "";
  position: absolute;
  bottom: -80px; right: -80px;
  width: 240px; height: 240px;
  background: rgba(138,176,208,0.18);
  border-radius: 50%;
}
.final-box .final-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 12px;
  padding: 40px 48px;
}
.final-box p {
  font-size: 1.3rem;
  line-height: 2.1;
  color: #fff;
}
.final-box .final-highlight {
  color: #ffd0e0;
  font-weight: 700;
  font-size: 1.4rem;
}

/* ============================================
   フッター
   ============================================ */
footer {
  background: #1a2f5a;
  color: #aac0d8;
  text-align: center;
  padding: 28px 20px;
  font-size: 0.82rem;
  line-height: 2;
}
footer a { color: #90b8d8; text-decoration: underline; }
footer a:hover { color: #fff; }

/* ============================================
   レスポンシブ
   ============================================ */
@media (max-width: 640px) {
  html { font-size: 15px; }
  .lp-section { padding: 40px 16px; }
  .h-ruled { font-size: 1.25rem; gap: 10px; }
  .h-underline { font-size: 1.25rem; }
  .h-ribbon { font-size: 1.1rem; padding: 14px 20px; }
  .two-birds-heading { font-size: 1.1rem; }
  .profile-layout { flex-direction: column; align-items: center; }
  .profile-photo-col { width: 100%; display: flex; flex-direction: column; align-items: center; }
  .profile-photo-col .prof-img { width: 160px; height: 190px; }
  .voice-card { flex-direction: column; align-items: center; text-align: center; }
  .bonus-img-grid { grid-template-columns: 1fr; }
  .form-box { padding: 24px 18px; }
  .btn-cta { font-size: 1rem; padding: 18px 16px; white-space: normal; }
  .final-box { padding: 28px 20px; }
  .bonus-header .bonus-title-main { font-size: 1.4rem; }
}

/* ============================================
   イラスト・図解レイアウト
   ============================================ */

/* お悩みセクション：テキスト左・イラスト右 */
.worries-layout {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}
.worries-list { flex: 1; }
.worries-illust {
  width: 260px;
  flex-shrink: 0;
}
.worries-illust img {
  width: 100%;
  border-radius: 8px;
}

/* 共感セクション：テキスト左・イラスト右 */
.two-col-layout {
  display: flex;
  gap: 32px;
  align-items: center;
}
.two-col-layout .empathy-block { flex: 1; }
.illust-right {
  width: 280px;
  flex-shrink: 0;
}
.illust-right img {
  width: 100%;
  border-radius: 8px;
}

/* 中央配置イラスト */
.illust-center {
  text-align: center;
  margin: 28px auto;
  max-width: 480px;
}
.illust-center img {
  width: 100%;
  border-radius: 8px;
}

/* スマホ対応 */
@media (max-width: 640px) {
  .worries-layout {
    flex-direction: column;
  }
  .worries-illust {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }
  .two-col-layout {
    flex-direction: column;
  }
  .illust-right {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
  .bonus-img-list img {
    width: 100%;
  }
}

/* ============================================
   強力な見出しスタイル（追加）
   ============================================ */

/* 斜線付き見出し（サンプル風） */
.h-slash {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 1.7rem;
  font-weight: 700;
  color: #1a2f5a;
  margin-bottom: 28px;
  line-height: 1.4;
}
.h-slash::before { content: "＼"; color: #8ab0d0; font-weight: 400; }
.h-slash::after  { content: "／"; color: #8ab0d0; font-weight: 400; }

/* お悩みボックス */
.worries-box {
  border: 1px solid #c8d8e8;
  border-radius: 8px;
  padding: 28px 32px;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}
.worries-lead {
  font-size: 1.1rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 18px;
  line-height: 1.7;
}
.check-list-slim {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}
.check-list-slim li {
  padding: 7px 0 7px 30px;
  position: relative;
  font-size: 1.05rem;
  color: #333;
  line-height: 1.6;
  border-bottom: 1px solid #eef2f6;
}
.check-list-slim li:last-child { border-bottom: none; }
.check-list-slim li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 12px;
  width: 16px;
  height: 16px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Crect width='16' height='16' rx='3' fill='%238ab0d0'/%3E%3Cpath d='M3 8l3.5 3.5L13 5' stroke='white' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center;
  background-size: contain;
}
.worries-note {
  background: #f8f4f0;
  border-left: 4px solid #c8a060;
  padding: 12px 16px;
  border-radius: 0 6px 6px 0;
}
.worries-note-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: #c8a060;
  margin-bottom: 4px;
}
.worries-note-body {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.6;
}

/* 共感2カラム */
.empathy-two-col {
  display: flex;
  gap: 48px;
  align-items: flex-start;
  padding: 48px 0 32px;
}
.empathy-left {
  flex: 0 0 340px;
  border-left: 5px solid #c8507a;
  padding-left: 20px;
}
.empathy-sub {
  font-size: 0.95rem;
  color: #c8507a;
  font-weight: 700;
  margin-bottom: 10px;
}
.empathy-heading {
  font-size: 1.7rem;
  font-weight: 700;
  color: #1a2f5a;
  line-height: 1.5;
}
.empathy-right {
  flex: 1;
  font-size: 1.05rem;
  line-height: 1.9;
  color: #333;
}
.empathy-right p { margin-bottom: 1em; }
.empathy-right p:last-child { margin-bottom: 0; }

/* 強い帯見出し（ネイビー全幅） */
.h-band {
  background: linear-gradient(135deg, #1a2f5a 0%, #2a4f8a 100%);
  color: #fff;
  text-align: center;
  padding: 22px 32px;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 32px;
  letter-spacing: 0.04em;
  position: relative;
}
.h-band::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-top: 12px solid #2a4f8a;
}

/* ピンク帯見出し */
.h-band-pink {
  background: linear-gradient(135deg, #c8507a 0%, #e06090 100%);
  color: #fff;
  text-align: center;
  padding: 22px 32px;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 32px;
  letter-spacing: 0.04em;
  position: relative;
}
.h-band-pink::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-top: 12px solid #e06090;
}

/* final-message コンパクト版 */
.final-compact {
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
  padding: 28px 32px;
}
.final-compact .final-catch {
  font-size: 1.15rem;
  color: #fff;
  line-height: 1.85;
  margin-bottom: 16px;
}
.final-compact .final-cta-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffd0e0;
  line-height: 1.6;
  border-top: 1px solid rgba(255,255,255,0.3);
  padding-top: 20px;
  margin-top: 4px;
}

@media (max-width: 640px) {
  .h-slash { font-size: 1.3rem; gap: 10px; }
  .empathy-two-col { flex-direction: column; gap: 24px; padding: 32px 0 20px; }
  .empathy-left { flex: none; width: 100%; }
  .empathy-heading { font-size: 1.35rem; }
  .h-band, .h-band-pink { font-size: 1.2rem; padding: 18px 20px; }
  .worries-box { padding: 20px 18px; }
}

/* ============================================
   PC専用：余白を締める（768px以上）
   ============================================ */
@media (min-width: 768px) {
  .lp-section { padding: 40px 40px; }
  #worries.lp-section { padding: 44px 40px; }
  #pillars.lp-section { padding: 44px 40px; }
  .voices-body { padding: 36px 40px; }
  .voices-header { padding: 32px 40px; }
  #profile { padding: 44px 40px; }
  .bonus-body { padding: 32px 40px; }
  #two-birds > div { padding: 36px 40px !important; }
  .form-section { padding: 40px 40px; }
  .empathy-two-col { padding: 40px 0 28px; }
}
