<!-- LP構成に基づいたWordPress用HTMLテンプレート例 -->
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>無料個別相談会LP</title>
<style>
body {
font-family: 'Helvetica Neue', sans-serif;
line-height: 1.8;
color: #003049;
margin: 0;
background: #f9f9f9;
}
.section {
padding: 60px 20px;
text-align: center;
}
.highlight {
color: #e63946;
font-weight: bold;
}
.cta-button {
background: #2a9d8f;
color: white;
padding: 20px 40px;
font-size: 1.4rem;
border-radius: 8px;
text-decoration: none;
margin: 20px auto;
display: inline-block;
}
.section.bg-dark {
background: #003049;
color: #fff;
}
.features-grid {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 20px;
margin-top: 40px;
}
.feature-box {
width: 250px;
background: white;
border-radius: 12px;
box-shadow: 0 4px 12px rgba(0,0,0,0.1);
padding: 20px;
}
.flow-box {
display: flex;
align-items: center;
gap: 15px;
margin: 30px 0;
justify-content: center;
}
.flow-number {
background: #f4a261;
color: white;
font-weight: bold;
border-radius: 50%;
width: 40px;
height: 40px;
display: flex;
align-items: center;
justify-content: center;
}
.testimonial {
background: #fff;
border-left: 5px solid #2a9d8f;
padding: 20px;
margin: 20px auto;
max-width: 600px;
}
</style>
</head>
<body>
<!-- ヒーローセクション -->
<section class="section">
<h1><span class="highlight">5日間限定公開</span>!<br>理想の人生を叶えるための無料個別相談会</h1>
<a href="#entry" class="cta-button">今すぐ相談会に申し込む</a>
</section>
<!-- 実績セクション -->
<section class="section bg-dark">
<h2>好きなこと×インスタ運用でここまで実現!</h2>
<div class="features-grid">
<div class="feature-box">SNS累計売上<br><strong>2億円超え</strong></div>
<div class="feature-box">SNS月商<br><strong>1600万円</strong></div>
<div class="feature-box">総フォロワー<br><strong>15万人</strong></div>
<div class="feature-box">日テレ出演<br><strong>地上波実績あり</strong></div>
</div>
</section>
<!-- 流れセクション -->
<section class="section">
<h2>無料相談会の流れ</h2>
<div class="flow-box">
<div class="flow-number">1</div>
<p>現状のヒアリング</p>
</div>
<div class="flow-box">
<div class="flow-number">2</div>
<p>課題に合わせた戦略提案</p>
</div>
<div class="flow-box">
<div class="flow-number">3</div>
<p>20大特典の配布</p>
</div>
<div class="flow-box">
<div class="flow-number">4</div>
<p>希望者への講座案内</p>
</div>
</section>
<!-- お客様の声セクション -->
<section class="section">
<h2>過去の相談会参加者の声</h2>
<div class="testimonial">
丁寧に相談に乗っていただき感動しました!<br>特典も多く、すぐに行動に移せました!
</div>
<div class="testimonial">
実際に稼いでいる方の話が聞けて背中を押されました!
</div>
</section>
<!-- CTAセクション -->
<section id="entry" class="section bg-dark">
<h2>先着30名限定で無料参加</h2>
<a href="#form" class="cta-button">個別相談会に今すぐ参加する</a>
</section>
</body>
</html>
コメントを残す