/* ===== LP向け：安心感・親しみやすさのあるスタイル改善CSS ===== */

/* ---------- 1. ヒーローセクション（トップ画像＋キャッチ） ---------- */
.lp-hero {
  background-image: url('/wp-content/uploads/2025/03/hero-image.jpg'); /* ご提供の画像をアップしたパスに変更 */
  background-size: cover;
  background-position: center;
  padding: 120px 20px;
  color: #fff;
  text-align: center;
  position: relative;
}

.lp-hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.4); /* オーバーレイ */
  z-index: 1;
}

.lp-hero h1 {
  position: relative;
  z-index: 2;
  font-size: 2.2em;
  font-weight: bold;
  line-height: 1.4;
}

/* ---------- 2. セクション共通 ---------- */
.lp-section {
  padding: 60px 20px;
}

.lp-section:nth-of-type(even) {
  background-color: #f9f9f9;
}

.lp-section h2 {
  font-size: 1.8em;
  color: #09509f;
  text-align: center;
  margin-bottom: 30px;
}

.lp-section p {
  max-width: 800px;
  margin: 0 auto 20px;
  font-size: 1.05em;
  line-height: 1.7;
}

/* ---------- 3. 特徴ブロック（結果・実証） ---------- */
.lp-feature-block {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto;
}

.lp-feature {
  flex: 1 1 280px;
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  border: 1px solid #ddd;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.lp-feature h3 {
  font-size: 1.2em;
  color: #f0a500;
  margin-bottom: 10px;
}

.lp-feature p {
  font-size: 0.95em;
  line-height: 1.6;
}

/* ---------- 4. CTAボタン ---------- */
.lp-cta {
  text-align: center;
  margin-top: 40px;
}

.lp-cta a {
  background-color: #f87f10;
  color: #fff;
  font-size: 1.3em;
  font-weight: bold;
  padding: 16px 40px;
  border-radius: 40px;
  display: inline-block;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.lp-cta a:hover {
  background-color: #d96f0a;
  transform: scale(1.03);
}

/* ---------- 5. フェードイン（AOSなしでも可能） ---------- */
.fadein {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

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

/* ---------- 6. 保証セクション ---------- */
.lp-guarantee {
  background: #e6f3ff;
  padding: 40px 20px;
  border-left: 5px solid #09509f;
  font-size: 1em;
  max-width: 800px;
  margin: 40px auto 0;
  border-radius: 6px;
}

.lp-guarantee h3 {
  color: #09509f;
  font-size: 1.2em;
  margin-bottom: 10px;
}

.lp-guarantee ul {
  list-style: disc;
  padding-left: 20px;
  margin: 0;
}

/* ---------- 7. レスポンシブ調整 ---------- */
@media (max-width: 768px) {
  .lp-feature-block {
    flex-direction: column;
  }

  .lp-cta a {
    width: 100%;
    font-size: 1.1em;
  }
}

/* ============================================ */
/* このCSSを /library/css/lp.css などに保存して読み込んでください */


.lp-section h2 {
  font-size: 24px;
  color: #09509f;
  border-left: 6px solid #f0a500;
  padding-left: 12px;
  margin-top: 40px;
}

.lp-cta-button {
  display: inline-block;
  background-color: #28a745;
  color: #fff;
  font-weight: bold;
  font-size: 18px;
  padding: 14px 24px;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}
.lp-cta-button:hover {
  background-color: #1e7e34;
}

.lp-hero {
  min-height: 500px; /* もともとが400px程度であれば+100px */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
}