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

body {
  background-color: #f5f7fa;
  color: #4a4a4a;
  font-family: 'Helvetica Neue', Arial, 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
  line-height: 1.8;
}

/* スマホ最適化コンテナ */
.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 25px 35px;
  font-size: 16px;
}

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

.empathy-text {
  background-color: #fffcf5;
}

.reason-section {
  background-color: #f0f7ff;
}

/* よくある質問セクション（追加） */
.faq-section {
  padding: 40px 20px;
  background-color: #fffaf0; /* 温かみのある背景色 */
}

.faq-section h2 {
  text-align: center;
  color: #d17a58; /* 優しいテラコッタ系の色 */
  margin-bottom: 25px;
  font-size: 22px;
}

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

.faq-item {
  background: #ffffff;
  border-radius: 12px;
  padding: 18px;
  margin-bottom: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.04); /* ほんのり優しい影 */
}

.faq-q {
  font-weight: bold;
  color: #4a4a4a;
  margin-bottom: 10px;
  border-bottom: 1px dashed #e0e0e0;
  padding-bottom: 10px;
  line-height: 1.4;
}

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

.faq-a {
  color: #666;
  font-size: 15px;
}

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

/* クロージング */
.last-section {
  padding-top: 30px;
  background-color: #ffffff;
}

.last-message {
  text-align: center;
  font-size: 17px;
  padding: 0 20px;
  margin-bottom: 15px;
}

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

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

/* 画像ボタン（修正版） */
.cv-btn-img {
  width: 100%;
  max-width: 480px;
  display: inline-block;
  /* 画像自体に影や角丸が含まれているため、CSS装飾は削除 */
  transition: all 0.3s ease;
}

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

@keyframes fluffy {
  0% {
    transform: scale(0.97); /* 影はつけず、サイズ変更のみでフワフワさせる */
  }
  100% {
    transform: scale(1.03);
  }
}

/* はじめるまでの流れセクション */
.flow-section {
  padding: 30px 20px;
  background-color: #ffffff;
}
.flow-section h2 {
  text-align: center;
  color: #d17a58;
  font-size: 20px;
  margin-bottom: 20px;
}
.flow-box {
  background-color: #fffaf0;
  border: 2px dashed #f5d6a4;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
}
.flow-item {
  font-weight: bold;
  color: #4a4a4a;
}
.flow-item span {
  color: #e06a6a;
  font-size: 14px;
}
.flow-arrow {
  color: #d17a58;
  margin: 10px 0;
  font-size: 14px;
}

/* マイクロコピー */
.micro-copy {
  color: #e06a6a;
  font-weight: bold;
  font-size: 14px;
  margin-bottom: 8px;
}

/* フッター */
.lp-footer {
  background-color: #eeeeee;
  text-align: center;
  padding: 20px;
  font-size: 12px;
}
.lp-footer a {
  color: #888888;
  text-decoration: none;
  margin: 0 10px;
}

/* =========================================
   運営者情報・プライバシーポリシー用スタイル
========================================= */

.legal-wrapper {
  background-color: #fffaf0; /* LPの温かみのある背景色と統一 */
  padding-bottom: 40px;
}

.legal-section {
  padding: 30px 20px;
  background-color: #ffffff;
  margin: 0 15px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.04);
}

.legal-title {
  text-align: center;
  color: #d17a58;
  font-size: 20px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px dashed #f5d6a4;
}

/* テーブル（運営者情報） */
.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 15px;
  font-size: 14px;
}

.legal-table th, 
.legal-table td {
  padding: 12px 10px;
  border: 1px solid #eeeeee;
}

.legal-table th {
  background-color: #fcf6ea;
  color: #4a4a4a;
  width: 35%;
  text-align: left;
}

.legal-table td {
  color: #666666;
}

.legal-note {
  font-size: 12px;
  color: #888888;
  line-height: 1.5;
}

/* プライバシーポリシーのテキスト */
.privacy-text {
  font-size: 14px;
  color: #555555;
  line-height: 1.8;
}

.privacy-text h2 {
  font-size: 16px;
  color: #4a4a4a;
  margin: 25px 0 10px;
  border-left: 4px solid #e06a6a;
  padding-left: 10px;
}

.privacy-text p {
  margin-bottom: 15px;
}

/* トップへ戻るボタン */
.back-btn-area {
  text-align: center;
}

.top-back {
  padding: 20px 20px 10px;
  text-align: left;
}

.bottom-back {
  padding: 20px;
}

.back-btn {
  display: inline-block;
  background-color: #ffffff;
  color: #4a4a4a;
  text-decoration: none;
  font-weight: bold;
  font-size: 15px;
  padding: 12px 25px;
  border-radius: 30px;
  border: 1px solid #dddddd;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.back-btn:hover {
  background-color: #f5f5f5;
}