/* ============================================================
   基本設定
   ============================================================ */
body {
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN",
    "Hiragino Sans", Meiryo, sans-serif;
  line-height: 1.7;
  color: #333;
  margin: 0;
  padding: 0;
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 850px;
  margin: 0 auto;
  padding: 0 25px;
}

h2 {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 40px;
  color: #002244;
}

/* ============================================================
   共通パーツ
   ============================================================ */
.btn {
  display: inline-block;
  background-color: #0070f3;
  color: #fff;
  padding: 22px 40px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  font-size: 1.15rem;
  line-height: 1.4;
  transition: all 0.3s;
  box-shadow: 0 4px 14px rgba(0, 112, 243, 0.3);
  border: none;
  cursor: pointer;
}

.btn:hover {
  background-color: #005bc4;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 112, 243, 0.4);
}

.btn-gold {
  background: #d4af37;
  color: #002244;
  box-shadow: 0 6px 18px rgba(212, 175, 55, 0.25);
  border: none;
}

.btn-gold:hover {
  background: #c19a2f;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(212, 175, 55, 0.30);
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* ============================================================
   ① ヒーロー
   ============================================================ */
.hero {
  background-color: #002244;
  color: #fff;
  padding: 90px 0;
  text-align: center;
}

.brand-name {
  font-size: 0.9rem;
  color: #aaa;
  margin-bottom: 22px;
}

.service-name {
  margin: 6px 0 18px;
  font-size: 0.95rem;
  color: #00d4ff;
  font-weight: bold;
}

.hero h1 {
  font-size: 2.15rem;
  line-height: 1.5;
  margin-bottom: 22px;
}

/* --- ヒーロー内の強調テキストを白に --- */
.highlight-inline {
  color: #ffffff; /* 赤から白に変更 */
  font-weight: 900;
  display: inline-block; /* 改行時に不自然にならないよう調整 */
}

.catch-strong {
  display: block;
  font-weight: 800;
  color: #00d4ff;
  font-size: 1.15rem;
  margin-bottom: 12px;
}

/* --- 修正版：すべての要素を完璧なセンター揃えに --- */
.hero-catch {
  margin: 24px auto 30px;
  max-width: 640px;
  color: #cfe6ff;
  text-align: center; /* 全体を中央寄せ */
}

.hero-list {
  margin: 20px 0;
  padding: 0;
  list-style: none; /* ドットを消去 */
  text-align: center; /* リスト内のテキストをセンターに */
}
.hero-list li {
  margin: 12px 0;
  font-weight: 700;
  color: #e6f2ff;
  display: block; /* 1行ずつセンターに配置 */
}

/* もし「▶」などのアイコンが残っている場合は、以下を記述 */
.hero-list li::before {
  content: none;
}

.hero-sub {
  margin-top: 20px;
  color: #cfe6ff;
  text-align: center;
  display: block;
}

.cta-note {
  color: #aaa;
  font-size: 0.85rem;
  margin-top: 10px;
}

/* ============================================================
   特典セクション (Bonus)
   ============================================================ */
.bonus {
  padding: 70px 0;
  background-color: #fff;
}

.bonus-box {
  border: 3px solid #d4af37;
  border-radius: 20px;
  padding: 52px 40px;
  position: relative;
  text-align: center;
  background: #fffef0;
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.1);
}

.bonus-tag {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: #d4af37;
  color: #fff;
  padding: 8px 30px;
  border-radius: 50px;
  font-weight: bold;
  white-space: nowrap;
}

.bonus-box h2 {
  font-size: 1.55rem;
  margin-bottom: 22px;
  color: #002244;
}

.bonus-content {
  max-width: 620px;
  margin: 0 auto;
  text-align: left;
}

.bonus-features {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  border: 1px solid #eee;
  margin-top: 18px;
}

.bonus-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.bonus-features li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
  font-weight: bold;
}

.bonus-features li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #d4af37;
}

.bonus-note {
  font-size: 0.85rem;
  color: #777;
  margin-top: 14px;
}

/* ============================================================
   Output
   ============================================================ */
.output { padding: 80px 0; }
.output-box { background: #002244; color: #fff; padding: 50px; border-radius: 15px; text-align: center; }
.output-box .label { background: #00d4ff; color: #002244; display: inline-block; padding: 2px 15px; font-weight: bold; margin-bottom: 15px; border-radius: 999px; }
.output-content { text-align: left; max-width: 520px; margin: 30px auto 0; background: rgba(255, 255, 255, 0.1); padding: 25px; border-radius: 8px; }
.output-content ul { padding-left: 18px; list-style: square; }

/* ============================================================
   Belief (Story)
   ============================================================ */
.belief { padding: 80px 0; background-color: #fff; }
.story-box { background: #fdfdfd; border-left: 5px solid #00d4ff; padding: 40px; max-width: 680px; margin: 0 auto; box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05); }
.story-box strong { background: linear-gradient(transparent 70%, #e0f7fa 70%); }
.highlight-text { font-weight: bold; color: #002244; font-size: 1.05rem; margin-top: 18px; }
.story-note { font-size: 0.85rem; color: #888; border-top: 1px solid #eee; padding-top: 15px; margin-top: 15px; }

/* ============================================================
   Flow
   ============================================================ */
.flow { padding: 80px 0; }
.flow-list { max-width: 640px; margin: 0 auto; }
.flow-item { display: flex; align-items: center; margin-bottom: 14px; border-bottom: 1px solid #eee; padding-bottom: 10px; }
.flow-item .num { background: #002244; color: #fff; width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; border-radius: 50%; margin-right: 15px; flex-shrink: 0; font-weight: 800; }
.flow-note { text-align: center; margin-top: 18px; color: #666; font-size: 0.9rem; }

/* ============================================================
   Price
   ============================================================ */
.price { padding: 80px 0; }
.price-card { border: 4px solid #002244; padding: 50px; border-radius: 20px; text-align: center; }
.price-grid { display: flex; justify-content: center; gap: 40px; margin-bottom: 24px; flex-wrap: wrap; }
.price-item span { display: block; color: #666; margin-bottom: 6px; }
.price-item strong { font-size: 2.15rem; color: #002244; display: block; }
.limit { background: #ff4444; color: #fff; display: inline-block; padding: 6px 25px; border-radius: 50px; font-weight: bold; margin: 0; }

/* ============================================================
   Target / Scope / FAQ
   ============================================================ */
.target { background: #f4f7f9; padding: 80px 0; }
.target-box { background: #fff; padding: 30px; border-radius: 10px; border: 1px solid #ddd; height: 100%; box-sizing: border-box; }
.target-box ul { padding-left: 18px; }
.fit h3 { color: #0070f3; border-bottom: 2px solid #0070f3; padding-bottom: 10px; }
.not-fit h3 { color: #777; border-bottom: 2px solid #777; padding-bottom: 10px; }
.target-note { text-align: center; margin-top: 16px; color: #777; font-size: 0.9rem; }

.scope-card { border: 2px solid #002244; padding: 30px; border-radius: 10px; height: 100%; box-sizing: border-box; }
.scope-card.gray { background: #f9f9f9; border-color: #ddd; color: #777; }

.faq { background: #f4f7f9; padding: 80px 0; }
.faq-item { background: #fff; padding: 20px 30px; margin-bottom: 15px; border-radius: 8px; }
.q { font-weight: bold; color: #002244; margin-bottom: 8px; }

/* ============================================================
   CTA / Footer
   ============================================================ */
.cta { padding: 100px 0; text-align: center; }
.cta-think { max-width: 560px; margin: 0 auto 26px; text-align: left; color: #444; }
.cta-reason { margin-top: 10px; font-weight: 800; color: #002244; text-align: center; }
.cta-note-detail { font-size: 0.95rem; color: #d4af37; font-weight: bold; margin-top: 15px; }

footer { background: #002244; color: #fff; padding: 60px 0 30px; text-align: center; }
.copy { margin-top: 30px; font-size: 0.8rem; color: #b9c6d3; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 600px) {
  .grid-2 { grid-template-columns: 1fr; gap: 20px; }
  .price-grid { flex-direction: column; gap: 18px; }
  .hero h1 { font-size: 1.55rem; padding: 0 10px; }
  .hero-catch { padding: 0 15px; }
  .bonus-box { padding: 42px 18px; }
  .output-box { padding: 38px 18px; }
  .story-box { padding: 28px 18px; }
  .btn { width: 100%; box-sizing: border-box; font-size: 1.1rem; padding: 18px 20px; }
}