@charset "UTF-8";

/* ===============================
   全体設定・変数定義
================================ */
:root {
  /* ① メインカラー：クリーンホワイト */
  --bg-color: #FFFFFF;
  --text-color: #333333;
  --light-gray: #F7F9FA;
  
  /* ② サブカラー：サンシャインイエロー */
  --sub-color: #FFD700;
  --sub-color-light: #FFF8D6; /* 背景用薄いイエロー */
  --accent-orange: #FFA500; /* 見出しなどの引き締め用 */

  /* ③ アクセント＆CTA：ブライトグリーン */
  --line-green: #06C755;
  --line-green-hover: #05B34C;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Helvetica Neue', Arial, 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
  color: var(--text-color);
  background-color: var(--bg-color);
  line-height: 1.6;
  letter-spacing: 0.05em;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

/* SP用改行制御 */
.sp-br { display: none; }
.pc-br { display: block; }
@media (max-width: 767px) {
  .sp-br { display: block; }
  .pc-br { display: none; }
}

/* 共通タイトルスタイル */
.section-title {
  text-align: center;
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 40px;
  line-height: 1.4;
}
.section-title span {
  background: linear-gradient(transparent 60%, var(--sub-color) 60%);
}

/* ===============================
   CTAボタン（最重要アクション）
================================ */
.cta-area {
  text-align: center;
  margin-top: 30px;
}

.cta-btn {
  display: inline-block;
  background-color: var(--line-green);
  color: #FFF;
  text-decoration: none;
  border-radius: 50px;
  padding: 15px 40px;
  box-shadow: 0 8px 15px rgba(6, 199, 85, 0.3);
  transition: all 0.3s ease;
  width: 90%;
  max-width: 500px;
  position: relative;
}

.cta-btn:hover {
  background-color: var(--line-green-hover);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(6, 199, 85, 0.4);
}

.cta-small {
  display: block;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 5px;
}

.cta-main {
  display: block;
  font-size: 24px;
  font-weight: bold;
}

/* 注目させるアニメーション（クロージング等で使用） */
.pulse {
  animation: pulse-animation 2s infinite;
}
@keyframes pulse-animation {
  0% { box-shadow: 0 0 0 0 rgba(6, 199, 85, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(6, 199, 85, 0); }
  100% { box-shadow: 0 0 0 0 rgba(6, 199, 85, 0); }
}

/* ===============================
   ファーストビュー (FV)
================================ */
.fv-section {
  background-color: var(--sub-color-light);
  padding: 60px 0 80px;
  text-align: center;
}
.fv-catch {
  color: var(--accent-orange);
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 10px;
}
.fv-title {
  font-size: 32px;
  line-height: 1.4;
  margin-bottom: 20px;
}
.fv-title .highlight {
  display: inline-block;
  background-color: var(--sub-color);
  padding: 5px 15px;
  border-radius: 5px;
  font-size: 24px;
  margin-bottom: 10px;
}
.fv-sub {
  font-size: 16px;
  margin-bottom: 30px;
}

/* ===============================
   悩み・共感セクション
================================ */
.trouble-section {
  padding: 80px 0;
  background-color: var(--bg-color);
}
.checklist {
  background-color: var(--light-gray);
  border: 2px dashed var(--accent-orange);
  border-radius: 10px;
  padding: 30px;
  max-width: 600px;
  margin: 0 auto 30px;
}
.checklist ul {
  list-style: none;
}
.checklist li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  font-size: 16px;
  font-weight: bold;
}
.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--line-green);
  font-size: 20px;
  font-weight: bold;
}
.checklist li:last-child {
  margin-bottom: 0;
}
.trouble-solve {
  text-align: center;
  font-size: 24px;
  color: var(--accent-orange);
  font-weight: bold;
}

/* ===============================
   3つの安心セクション
================================ */
.features-section {
  padding: 80px 0;
  background-color: var(--sub-color-light);
}
.feature-box {
  background: var(--bg-color);
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
.feature-title {
  font-size: 20px;
  color: var(--accent-orange);
  margin-bottom: 15px;
  border-bottom: 2px solid var(--sub-color);
  padding-bottom: 10px;
}
.feature-title span {
  display: inline-block;
  background-color: var(--sub-color);
  color: var(--text-color);
  padding: 2px 10px;
  border-radius: 3px;
  font-size: 14px;
  margin-right: 10px;
  vertical-align: middle;
}

/* ===============================
   収入例セクション
================================ */
.income-section {
  padding: 80px 0;
  background-color: var(--bg-color);
}
.income-lead {
  text-align: center;
  margin-bottom: 40px;
  font-size: 18px;
}
.income-cards {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.income-card {
  width: 48%;
  background: #FFF;
  border: 2px solid var(--sub-color);
  border-radius: 10px;
  padding: 25px;
}
.income-role {
  font-size: 18px;
  text-align: center;
  margin-bottom: 15px;
  color: var(--accent-orange);
}
.income-role span {
  font-size: 14px;
  color: var(--text-color);
}
.income-price {
  text-align: center;
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 15px;
  background-color: var(--sub-color-light);
  padding: 10px;
  border-radius: 5px;
}
.income-price span {
  font-size: 28px;
  color: var(--accent-orange);
}
.income-desc {
  font-size: 14px;
}

/* ===============================
   お客様の声セクション
================================ */
.voice-section {
  padding: 80px 0;
  background-color: var(--light-gray);
}
.voice-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.voice-item {
  background: var(--bg-color);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  position: relative;
}
.voice-item::before {
  content: "“";
  font-size: 60px;
  color: var(--sub-color);
  position: absolute;
  top: 10px;
  left: 15px;
  line-height: 1;
  opacity: 0.5;
}
.voice-meta {
  font-weight: bold;
  color: var(--accent-orange);
  margin-bottom: 10px;
  padding-left: 40px;
}
.voice-text {
  font-size: 15px;
  padding-left: 40px;
}

/* ===============================
   フロー（ステップ）セクション
================================ */
.flow-section {
  padding: 80px 0;
  background-color: var(--bg-color);
}
.step-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.step-box {
  background: var(--sub-color-light);
  padding: 25px;
  border-radius: 10px;
  text-align: center;
}
.step-num {
  display: inline-block;
  background-color: var(--sub-color);
  font-weight: bold;
  padding: 5px 15px;
  border-radius: 20px;
  margin-bottom: 15px;
}
.step-title {
  font-size: 18px;
  margin-bottom: 10px;
}
.step-box p {
  font-size: 14px;
  text-align: left;
}

/* ===============================
   FAQセクション
================================ */
.faq-section {
  padding: 80px 0;
  background-color: var(--light-gray);
}
.faq-list {
  max-width: 700px;
  margin: 0 auto;
}
.faq-item {
  margin-bottom: 20px;
  background: var(--bg-color);
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}
.faq-item dt {
  font-weight: bold;
  color: var(--accent-orange);
  font-size: 18px;
  margin-bottom: 10px;
  padding-left: 30px;
  position: relative;
}
.faq-item dt::before {
  content: "Q.";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 20px;
}
.faq-item dd {
  font-size: 15px;
  padding-left: 30px;
  position: relative;
}
.faq-item dd::before {
  content: "A.";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 20px;
  font-weight: bold;
  color: var(--line-green);
}

/* ===============================
   クロージングセクション
================================ */
.closing-section {
  padding: 80px 0;
  background-color: var(--sub-color-light);
  text-align: center;
}
.closing-title {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.5;
}
.closing-title span {
  color: var(--accent-orange);
  font-size: 32px;
}
.micro-copy {
  color: #E60012; /* マイクロコピーは危機感と行動喚起のため赤系を少し採用 */
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 30px;
}

/* ===============================
   レスポンシブ対応 (SP)
================================ */
@media (max-width: 767px) {
  .section-title {
    font-size: 24px;
  }
  .fv-title {
    font-size: 24px;
  }
  .fv-title .highlight {
    font-size: 18px;
  }
  .cta-main {
    font-size: 18px;
  }
  .income-cards, .step-wrap {
    grid-template-columns: 1fr;
    display: flex;
    flex-direction: column;
  }
  .income-card {
    width: 100%;
  }
  .closing-title {
    font-size: 22px;
  }
  .closing-title span {
    font-size: 26px;
  }
  .micro-copy {
    font-size: 14px;
  }
}

/* ===============================
   常時表示（フローティング）CTA
================================ */
.floating-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 10px 15px 15px; /* 下部に少し余白を持たせる */
  background: linear-gradient(to top, rgba(255,255,255,0.9) 50%, rgba(255,255,255,0)); /* 背景を少し透過させて自然に馴染ませる */
  z-index: 999; /* 常に最前面に表示 */
  text-align: center;
  /* 初期状態では少し下からふわっと出るような演出を入れる場合はここにアニメーションを追加 */
}

.floating-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--line-green, #06C755);
  color: #FFF;
  text-decoration: none;
  border-radius: 50px;
  padding: 10px 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  transition: all 0.3s ease;
}

.floating-btn:hover {
  background-color: var(--line-green-hover, #05B34C);
  transform: translateY(-2px);
}

.floating-text {
  text-align: left;
  flex: 1;
}

.floating-small {
  display: block;
  font-size: 12px;
  font-weight: bold;
  margin-bottom: 2px;
}

.floating-main {
  display: block;
  font-size: 20px;
  font-weight: bold;
}

.floating-icon {
  background-color: #FFF;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
}

/* 矢印アイコン */
.arrow-right {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-top: 3px solid var(--line-green, #06C755);
  border-right: 3px solid var(--line-green, #06C755);
  transform: rotate(45deg);
  margin-right: 3px; /* 少し中心に寄せる */
}

/* ===============================
   PC表示時の調整
================================ */
@media (min-width: 768px) {
  .floating-cta {
    /* PCでは画面右下に丸いボタンとして配置することも多いですが、
       今回は目立たせるために下部中央配置（少し幅を絞る）にしています */
    padding: 20px;
    background: transparent;
  }
  .floating-btn {
    padding: 15px 30px;
    max-width: 400px;
    border-radius: 10px;
  }
}
/* ===============================
   Instagramボタン（サブCTA）
================================ */
.insta-area {
  text-align: center;
  margin: 30px auto;
  padding: 0 20px;
}

.insta-lead {
  font-size: 14px;
  font-weight: bold;
  color: #E1306C;
  margin-bottom: 10px;
}

.insta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #FFFFFF;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  padding: 12px 25px;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(225, 48, 108, 0.25);
  transition: all 0.3s ease;
  max-width: 360px;
  width: 100%;
}

.insta-btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(225, 48, 108, 0.35);
}

.insta-icon {
  display: flex;
  align-items: center;
  margin-right: 10px;
}

.insta-icon svg {
  fill: #FFFFFF;
  width: 20px;
  height: 20px;
}

/* ===============================
   最下部の被り（重なり）防止設定
================================ */

/* 1. bodyまたはクロージングセクションの下部に追従ボタン分の余白を確保 */
body {
  padding-bottom: 100px; /* 追従CTAの高さ＋余白 */
}

.closing-section {
  padding: 80px 0 120px; /* 下部余白を広げて被りを完全に防止 */
}

/* 2. 最下部CTAの背景カード化（2重ボタンに見えるのを防ぐ） */
.closing-box {
  background-color: #FFFFFF;
  border: 3px solid var(--sub-color, #FFD700);
  border-radius: 15px;
  padding: 30px 20px;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}