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

body {
  background-color: #f5f7fa; /* 背景は薄いグレーにしてLPを際立たせる */
  color: #333;
  font-family: 'Helvetica Neue', Arial, 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
  line-height: 1.6;
}

/* スマホ最適化コンテナ（PCで見てもスマホサイズの中央寄せになる） */
.lp-wrapper {
  max-width: 500px;
  margin: 0 auto;
  background-color: #ffffff;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
  overflow: hidden;
}

/* 画像設定 */
.lp-img {
  width: 100%;
  display: block;
}

/* テキストブロック共通 */
.text-block {
  padding: 20px 20px 30px;
  font-size: 16px;
}

.text-block strong {
  color: #d32f2f;
  background: linear-gradient(transparent 60%, #ffeb3b 60%);
}

.empathy-text {
  background-color: #fffaf0; /* 共感部分は少し温かみのある背景色 */
}

/* リスト部分 */
.list-block ul {
  list-style: none;
  margin: 15px 0;
  padding: 15px;
  background-color: #f0f8ff;
  border-radius: 10px;
}

.list-block li {
  margin-bottom: 10px;
  font-weight: bold;
}

.strong-msg {
  font-weight: bold;
  text-align: center;
  font-size: 18px;
  margin-top: 15px;
}

/* ボタンエリア */
.btn-area {
  padding: 10px 20px 30px;
  text-align: center;
}

.last-btn-area {
  padding-bottom: 50px;
}

/* CVボタンデザイン（LINEグリーン） */
.cv-btn {
  display: inline-block;
  width: 100%;
  max-width: 400px;
  background-color: #06C755; /* LINEカラー */
  color: #ffffff;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  padding: 18px 10px;
  border-radius: 50px;
  box-shadow: 0 6px 15px rgba(6, 199, 85, 0.4);
  transition: all 0.3s ease;
}

.cv-btn.last-btn {
  font-size: 20px;
  padding: 22px 10px;
}

/* ふわふわ動くアニメーション */
.fluffy-btn {
  animation: fluffy 2s ease-in-out infinite alternate;
}

@keyframes fluffy {
  0% {
    transform: scale(0.96);
    box-shadow: 0 4px 10px rgba(6, 199, 85, 0.3);
  }
  100% {
    transform: scale(1.04);
    box-shadow: 0 10px 20px rgba(6, 199, 85, 0.6);
  }
}

/* よくある質問セクション */
.faq-section {
  padding: 40px 20px;
  background-color: #f9f9f9;
}

.faq-section h2 {
  text-align: center;
  color: #1a4a8c; /* 画像の青文字と統一感を持たせる */
  margin-bottom: 25px;
  font-size: 22px;
}

.faq-box {
  margin-bottom: 30px;
}

.faq-item {
  background: #ffffff;
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 15px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.faq-q {
  font-weight: bold;
  color: #333;
  margin-bottom: 8px;
  border-bottom: 1px dashed #ccc;
  padding-bottom: 8px;
}

.faq-q span {
  color: #1a4a8c;
  font-size: 20px;
  margin-right: 5px;
}

.faq-a {
  color: #555;
}

.faq-a span {
  color: #d32f2f;
  font-weight: bold;
  font-size: 20px;
  margin-right: 5px;
}

.last-message {
  text-align: center;
  font-size: 18px;
  margin-bottom: 20px;
}