@charset "utf-8";

/* ===== リセット ===== */
*, *::before, *::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: 'Hiragino Kaku Gothic ProN','Meiryo',sans-serif;
}

/* ===== 共通画像 ===== */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ===== 中央コンテンツ ===== */
.contents,
.text-box {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 16px;
}

/* ===== フル幅セクション（FV含む）===== */
.fullwide {
  width: 100%;
}

.fullwide picture,
.fullwide img {
  width: 100%;
  display: block;
}


/* ===== SP / PC 切替 ===== */
.sp-only { display: block; }
.pc-only { display: none; }

@media (min-width: 768px) {
  .sp-only { display: none; }
  .pc-only { display: block; }
}

/* ===== CTA ===== */
.cta-button {
  display: block;
  margin: 32px auto;
}

.sp-only .cta-button {
  width: 80%;
  max-width: 320px;
}

.pc-only .cta-button {
  width: 450px;
}




/* =========================
   便箋 全体ラッパー
========================= */
.letter-wrap {
  display: flex;
  justify-content: center;
  padding: 48px 16px;
    
  background: linear-gradient(
    135deg,
    #FFECC6,
    #FFF
  );
}



/* =========================
   便箋 本体
========================= */
.letter-paper {
  position: relative;
  max-width: 720px;
  width: 100%;
  padding: 44px 36px 110px;
  background-color: #F7F7F7;
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

/* =========================
   文章エリア（罫線あり）
   ※下に1本分
========================= */
.letter-text {
  background-image: linear-gradient(
    to bottom,
    rgba(0,0,0,0.04) 1px,
    transparent 1px
  );
  background-size: 100% 2.72em;
  padding-bottom: 2.5em;
}

.letter-text p {
     font-family: "Yu Mincho", "Hiragino Mincho ProN", serif; /* ←追加 */
  font-size: 19px;
  line-height: 2.3;
  color: #333;
  margin: 0;
      font-weight: 500; /* ←文字太さ */
}

/* =========================
   下部画像エリア（罫線なし）
========================= */
.letter-bottom {
  margin-top: 52px;
  padding-right: 56px;   /* ← 右の余白 */
  padding-bottom: 18px;  /* ← 下の余白 */
  text-align: center;
}

.letter-bottom img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  display: inline-block;
}








/* =========================
   サイン画像（PC）
========================= */
.letter-sign {
  position: absolute;
  right: 28px;
  bottom: 90px;
  width: 230px;   /* ← PCサイズ */
  opacity: 0.85;
}





/* =========================
   スマホ対応
========================= */
@media screen and (max-width: 600px) {
  .letter-paper {
    padding: 32px 22px 100px;
  }

  .letter-text p {
    font-size: 16px;
    line-height: 2.2;
    font-weight: 650;
  }

  .letter-bottom {
    padding-right: 8px;
    padding-bottom: 10px;
  }

}


/* =========================
   手書き風
========================= */
.letter-content {
  font-family: "Zen Kurenaido", cursive;
  font-size: 16px;
  line-height: 2;
  color: #000;
}



/* ===== 注釈 ===== */
.note-text {
  font-size: 0.9em;
  color: #555;
  line-height: 1.8;
  margin-top: 40px;
}

/* ===== SP微調整 ===== */
@media (max-width: 600px) {
  .program-steps {
    margin: 40px 0;
  }

  .step {
    margin-bottom: 32px;
  }

  .step-title {
    font-size: 1.15em;
  }
}


/* ===== CTA 超強押下（影なし）===== */
.cta-button {
  display: block;
  transition:
    transform 0.1s cubic-bezier(.2, .8, .4, 1);
}

/* hover：押せそうな前傾 */
.cta-button:hover {
  transform: scale(1.02);
}

/* active：ガッツリ押し込む */
.cta-button:active {
  transform: scale(0.95) translateY(4px);
}


/* ===== よくある質問 ===== */
.faq {
  max-width: 800px;
  margin: 80px auto;
  padding: 20px;
  font-family: sans-serif;
}

.faq h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 28px;
}

.faq details {
  border-bottom: 1px solid #ddd;
  padding: 15px 0;
}

.faq summary {
  cursor: pointer;
  font-weight: 450;
  font-size: 20px;
  list-style: none;
  position: relative;
  padding-left: 25px;
}

.faq summary::before {
  content: "Q";
  position: absolute;
  left: 0;
  color: #C00000;
}

.faq p {
  margin-top: 10px;
  line-height: 1.8;
  padding-left: 25px;
  color: #444;
  font-size: 19px;
}

.faq p::before {
  content: "A ";
  font-weight: bold;
  color: #719CE0;
}


/* ===== スマホ調整 ===== */
@media (max-width: 600px) {

  .faq {
    margin: 40px auto;
    padding: 16px;
  }

  .faq h2 {
    font-size: 21px;
    margin-bottom: 24px;
      font-weight: 700;
  }

  .faq summary {
    font-size: 18px;
    line-height: 1.6;
    font-weight: 700;
  }

  .faq p {
    font-size: 15px;
    line-height: 1.7;
  }

}




/* ===== こんなお悩み（完成版：横並び＋画像小さめ＋カード広め） ===== */

.trouble {
  position: relative;
  width: 100vw;
  margin: 10px 0;
  padding: 40px 12px;
  font-family: sans-serif;
}

/* 背景（ブルー） */
.trouble::before {
  content: "";
  position: absolute;
  top: -80px;
  bottom: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  background: #FFF;
  z-index: -1;
}

/* 内側レイアウト */
.trouble-inner {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* 左コンテンツ */
.trouble-content {
  width: 100%;
}

/* ===== 画像（小さく＆中央） ===== */
.trouble-image {
  text-align: center;
}

.trouble-image img {
  max-width: 300px; /* ←画像サイズ */
  width: 100%;
  height: auto;
  border-radius: 12px;
}

/* リスト */
.trouble-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* 1行カード（広め調整） */
.trouble-list li {
  background: #ffffff;
  padding: 16px 18px 16px 44px;
  margin-bottom: 14px;
  border-radius: 12px;
  font-size: 21px;
  line-height: 1.9;
  font-weight: 500;
  position: relative;
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

/* ✔チェック */
.trouble-list li::before {
  content: "✔";
  position: absolute;
  left: 14px;
  top: 16px;
  color: #C00000;
  font-size: 18px;
  font-weight: bold;
}


/* ===== 共通（スマホ優先） ===== */

/* 縦並び */
.trouble-inner {
  display: flex;
  flex-direction: column;
}

/* 画像サイズ（共通） */
.trouble-image img {
  display: block;
  margin: 0 auto;
  max-width: 300px;
  width: 100%;
  height: auto;
}

/* ===== スマホ：画像を消す ===== */
@media (max-width: 600px) {
  .trouble-image {
    display: none;
  }
}

/* ===== PC調整 ===== */
@media (min-width: 768px) {

  .trouble {
    max-width: 1100px;
    margin: 30px auto;
    padding: 40px 0;
  }

  /* 横並び */
  .trouble-inner {
    flex-direction: row;
    align-items: center;
    gap: 40px;
  }

  /* テキスト広め */
  .trouble-content {
    width: 70%;
  }

  /* 画像右 */
  .trouble-image {
    display: block;   /* ← 念のため表示に戻す */
    width: 30%;
    text-align: center;
  }

  /* PC画像サイズ */
  .trouble-image img {
    max-width: 320px;
  }

  .trouble-list li {
    font-size: 20px;
    line-height: 1.8;
  }
}

/* 赤文字 */
.red {
  color: #C00000;
  font-weight: bold;
}
/* 悩みの上余白なし */
.trouble::before {
  top: -80px;
}

/* 悩みの文字 */
@media (max-width: 600px) {
  .trouble .trouble-list li {
    font-size: 17px;
    line-height: 1.7;
  }
}


/* 特典３スマホサイズ調整 */
@media (max-width: 768px) {
  .audio-box {
    transform: scale(1.2);
  }
}