@charset "UTF-8";

@font-face {
    font-family: 'CustomFont'; /* フォントの名前 */
    src: url('../fonts/adago_mini.otf') format('truetype'); /* フォントファイルへのパス */
    font-weight: 900; /* より細いフォントの太さ */
    font-style: normal; /* フォントのスタイル */
  }
@font-face {
    font-family: 'CustomFont2'; /* フォントの名前 */
    src: url('../fonts/GoldenGooseUppercase-VariableVF.ttf') format('truetype'); /* フォントファイルへのパス */
    font-weight: 900; /* より細いフォントの太さ */
    font-style: normal; /* フォントのスタイル */
  }
@font-face {
    font-family: 'CustomFont3'; /* フォントの名前 */
    src: url('../fonts/Medium.ttf') format('truetype'); /* フォントファイルへのパス */
    font-weight: 900; /* より細いフォントの太さ */
    font-style: normal; /* フォントのスタイル */
  }



body {
  background-image: url(../img/background.jpg);
  background-position: right;
  background-size: cover;
    font-family: 'CustomFont', sans-serif;

}

main {
  position: relative;
    color: #333;
  margin-top: -20px;
  overflow-x: hidden; /* はみ出した画像を隠す */
}


.top-view {
  position: relative;
}

/* スター装飾 */
.main-deco-star {
  position: absolute;
  top: -10%;   /* ← ここで上に逃がす */
  right: 0;
  z-index: 1;
  pointer-events: none;
}

.main-deco-star img {
  display: block;
  width: 620px;
  height: auto;
  transform: translateX(40%); /* Yは使わない */
}

/* 左下装飾 */
.main-deco-left-bottom {
  position: absolute;
  bottom: 30%;
  left: 0;
  z-index: 1;
  pointer-events: none;
}

.main-deco-left-bottom img {
  display: block;
  width: 620px;
  height: auto;
  transform: translateX(-50%) translateY(30%);
}
@media (max-width: 768px) {

/* スター装飾 */
.main-deco-star {
  position: absolute;
  top: -5%;   /* ← ここで上に逃がす */
  right: 0;
  z-index: 1;
  pointer-events: none;
}
  .main-deco-star img {
    width: 360px;
    transform: translateX(40%); /* Yは使わない */
  }

    .main-deco-left-bottom {
    left: 0;
  }

  .main-deco-left-bottom img {
    width: 360px;
    transform: translateX(-50%);
  }
}

.recommend-section {
  padding: 200px 20px;
  font-family: 'CustomFont3', sans-serif;
  position: relative;
  z-index: 2;
}

.recommend-problem-box {
  position: relative;
  margin: 90px auto 140px;
  padding: 80px 40px 50px;
  background: #faf7ff;
  border-radius: 24px;
  box-shadow: 0 12px 28px rgba(150, 120, 200, 0.12);
  max-width: 760px;
    background-image: url(../img/6897946.png);
  background-size: 100% 100%;
}


.recommend-problem-box .recommend-title {
  position: absolute;
  top: -70px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;

  display: inline-block;
  font-size: 1.4rem;
  padding: 65px 60px 65px 50px;
  letter-spacing: 0.08em;

  background-image: url(../img/lp_title.png);
  background-size: 100% 100%;
  color: rgb(57, 14, 83);
  white-space: nowrap;
}
/* おすすめリスト全体を中央寄せ */
.recommend-problem-box .recommend-list {
  list-style: none;
  padding: 0;
  margin: 90px auto 30px;
  text-align: center; /* ← ここが重要 */

}

/* 下部の人物画像エリア（コンテナ） */
.recommend-problem-people {
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  pointer-events: none;
}

/* 共通設定 */
.recommend-problem-people img {
  position: absolute;
  height: auto;
  filter: grayscale(20%);
}

/* ===== 左の人物 ===== */
.recommend-problem-people .people-left {
  left: -50px;      /* ← 左からの位置 */
  bottom: 300px;        /* ← 下からの位置 */
  width: 180px;     /* ← サイズ */
}

/* ===== 右の人物 ===== */
.recommend-problem-people .people-right {
  right: -20px;     /* ← 右からの位置 */
  bottom: 0;        /* ← 下からの位置 */
  width: 130px;     /* ← サイズ */
}


/* liを中央に配置 */
.recommend-problem-box .recommend-list li {
  display: inline-block;      /* ← テキスト幅で中央に */
  text-align: left;           /* ← 文章自体は左揃え */
  margin-bottom: 16px;
  padding-left: 1.6em;
  position: relative;
  line-height: 1.8;
  max-width: 520px;           /* ← 読みやすい幅 */
  width: 100%;
}
.recommend-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #b9a6ff;
  font-size: 0.9rem;
}

/* 共感 */
.recommend-empathy {
  margin-bottom: 60px;
}

.recommend-empathy p {
  margin-bottom: 18px;
  line-height: 1.9;
  opacity: 0.9;
}

/* できること */
.recommend-can {
  margin-bottom: 60px;
}

.recommend-sub-title {
  font-size: 1.2rem;
  margin-bottom: 24px;
  letter-spacing: 0.06em;
}

.recommend-can ul {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.recommend-can li {
  margin-bottom: 16px;
  padding-left: 1.4em;
  position: relative;
  line-height: 1.8;
}

.recommend-can li::before {
  content: "・";
  position: absolute;
  left: 0;
  color: #b9a6ff;
}

.recommend-can-note {
  font-size: 0.9rem;
  opacity: 0.8;
  line-height: 1.8;
}

/* 安心 */
.recommend-safe {
  margin-bottom: 50px;
}

.recommend-safe p {
  margin-bottom: 16px;
  line-height: 1.9;
  opacity: 0.85;
}

/* LINE前テキスト */
.recommend-to-line {
  margin-bottom: 40px;
}

.recommend-to-line p {
  margin-bottom: 14px;
  line-height: 1.8;
}

/* LINEボタン */
.line_btn {
  max-width: 420px;
  margin: 0 auto;
  transition: transform 0.4s ease;
}

.line_btn:hover {
  transform: rotate(-1deg) scale(1.03);
}

.line_btn img {
  width: 100%;
  display: block;
}

/* スマホ */
@media (max-width: 768px) {
    .recommend-problem-box {
    padding: 70px 20px 40px;
  }

  .recommend-problem-box .recommend-title {
    top: -30px;
    font-size: 1.1rem;
    padding: 50px 60px;
    white-space: normal;
    width: 400px;
  }

  .recommend-title {
    font-size: 1.5rem;
  }

    .recommend-problem-people .people-left {
    left: -10px;
    bottom: -50px;        /* ← 下からの位置 */
    width: 130px;
  }

  .recommend-problem-people .people-right {
    right: -10px;
    bottom: -20px;        /* ← 下からの位置 */
    width: 100px;
  }
}
/* スマホ */
@media (max-width: 500px) {
  .recommend-section {
  padding: 200px 20px 50px;
  font-family: 'CustomFont3', sans-serif;
  position: relative;
  z-index: 2;
}
  .recommend-problem-box {
  position: relative;
  margin: 60px auto 140px;
  padding: 80px 40px 50px;
  background: #faf7ff;
  border-radius: 24px;
  box-shadow: 0 12px 28px rgba(150, 120, 200, 0.12);
  max-width: 760px;
    background-image: url(../img/6897946.png);
  background-size: 100% 100%;
}

  .recommend-problem-box .recommend-title {
    top: -50px;
    font-size: 1rem;
    padding: 50px 60px;
    white-space: normal;
    width: 380px;
    margin-left: 20px;
  }
  /* おすすめリスト全体を中央寄せ */
.recommend-problem-box .recommend-list {
  list-style: none;
  padding: 0;
  margin: 60px auto 50px;
  text-align: center; /* ← ここが重要 */

}
}
/* ===== 白い額縁（外枠） ===== */
.recommend-empathy-frame {
  max-width: 720px;
  margin: 0 auto 90px;
  padding: 70px 50px;

  background: rgba(255, 255, 255, 0);
  border-radius: 30px;

  /* 影を軽く・広く */
  box-shadow:
    0 18px 40px rgba(130, 110, 190, 0.18),
    inset 0 0 0 1px rgba(240, 235, 255, 0.45);

  position: relative;
}

/* ===== ガラス面 ===== */
.recommend-empathy-frame::before {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 22px;

  /* 白を減らして透明感アップ */
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.45),
    rgba(255, 255, 255, 0.25)
  );

  /* ぼかしを少し強める */
  backdrop-filter: blur(14px) saturate(110%);
  -webkit-backdrop-filter: blur(14px) saturate(110%);

  /* ガラスの縁と光 */
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.6),
    inset 0 0 25px rgba(255, 255, 255, 0.25),
    0 0 0 1px rgba(180, 160, 220, 0.08);

  pointer-events: none;
}

/* ===== 中身を前面に ===== */
.recommend-empathy-frame > * {
  position: relative;
  z-index: 1;
}

/* ===== 共感前のつなぎ ===== */
.recommend-bridge {
  text-align: center;
  margin: 50px auto 40px;
  font-size: 1.5rem;
  line-height: 1.9;
  color: #6b5b8a;
  letter-spacing: 0.04em;
  opacity: 0.85;
  position: relative;
}

/* さりげない装飾ライン */
.recommend-bridge::after {
  content: "";
  display: block;
  width: 60px;
  height: 1px;
  margin: 22px auto 0;
  background: linear-gradient(
    to right,
    transparent,
    rgba(180, 160, 230, 0.8),
    transparent
  );
}


/* ===== 共感本文 ===== */
.recommend-empathy {
  margin: 0 auto 40px;
  padding: 80px 60px;
  max-width: 550px;

  /* background: rgba(255, 255, 255, 0.55);
  border-radius: 22px;

  box-shadow:
    0 10px 26px rgba(120, 90, 180, 0.12),
    inset 0 0 0 1px rgba(200, 180, 240, 0.25); */

  backdrop-filter: blur(4px);
  background-image: url(../img/903125.png);
  background-size: 100% 100%;
}

/* 共感テキスト */
.recommend-empathy p {
  margin-bottom: 20px;
  line-height: 2;
  font-size: 0.95rem;
  color: #4a3f63;
  letter-spacing: 0.03em;
  opacity: 0.9;
}

/* 最後の段落だけ少し余韻 */
.recommend-empathy p:last-child {
  margin-bottom: 0;
}


/* ===== 共感の締め ===== */
.recommend-empathy-end {
  text-align: center;
  margin: 40px auto 10px;
  font-size: 1.2rem;
  line-height: 1.9;
  color: #5f547a;
  letter-spacing: 0.04em;
  opacity: 0.9;
  position: relative;
}

/* ふわっと下に余韻 */
.recommend-empathy-end::before {
  content: "＊";
  display: block;
  font-size: 0.8rem;
  color: rgba(160, 140, 210, 0.8);
  margin-bottom: 14px;
}


/* ===== スマホ調整 ===== */
@media (max-width: 768px) {
  .recommend-empathy-frame {
    max-width: 720px;
    margin: 0 auto 90px;
    padding: 70px 20px;
    background: rgba(255, 255, 255, 0);
    border-radius: 30px;
    box-shadow: 0 18px 40px rgba(130, 110, 190, 0.18), inset 0 0 0 1px rgba(240, 235, 255, 0.45);
    position: relative;
}

  .recommend-bridge {
    margin: 40px auto 30px;
    font-size: 1rem;
  }

  .recommend-empathy {
    padding: 60px 22px;
  background-image: url(../img/9031.png);
  }

  .recommend-empathy p {
    font-size: 0.9rem;
    line-height: 1.9;
  }

  .recommend-empathy-end {
    font-size: 1rem;
    margin-top: 30px;
  }
}

/* ===== セクション全体 ===== */
.recommend-can {
  max-width: 760px;
  margin: 0 auto 120px;
  text-align: center;
}

/* ===== タイトル ===== */
.recommend-sub-title {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-bottom: 50px;

  color: #c86aa4; /* やさしいピンク */
  position: relative;
}

/* タイトル下の装飾 */
.recommend-sub-title::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  margin: 18px auto 0;
  border-radius: 3px;

  background: linear-gradient(
    90deg,
    #f6b1d1,
    #e89ac7
  );
}

/* ===== リスト（4つの大切な要素） ===== */
.recommend-can-list {
  list-style: none;
  padding: 0;
  margin: 0 0 60px;

  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}

/* 各カード */
.recommend-can-list li {
  padding: 26px 18px;
  border-radius: 22px;

  background: linear-gradient(
    135deg,
    rgba(255, 225, 238, 0.9),
    rgba(255, 240, 246, 0.9)
  );

  box-shadow:
    0 10px 28px rgba(232, 154, 199, 0.25),
    inset 0 0 0 1px rgba(255, 255, 255, 0.7);

  font-size: 15px;
  line-height: 1.8;
  color: #6b3b57;

  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* ふわっと浮く */
.recommend-can-list li:hover {
  transform: translateY(-4px);
  box-shadow:
    0 16px 36px rgba(232, 154, 199, 0.3),
    inset 0 0 0 1px rgba(255, 255, 255, 0.8);
}

/* ===== ワンポイントメッセージ ===== */
.recommend-can-note {
  display: inline-block;
  padding: 26px 36px;
  border-radius: 999px;

  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  box-shadow:
    0 12px 30px rgba(200, 120, 170, 0.2),
    inset 0 0 0 1px rgba(255, 200, 225, 0.5);

  font-size: 15px;
  line-height: 1.9;
  color: #7a4261;
}
/* ===== スマホ調整 ===== */
@media (max-width: 768px) {
/* ===== タイトル ===== */
.recommend-sub-title {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-bottom: 50px;

  color: #c86aa4; /* やさしいピンク */
  position: relative;
}
}


/* ===== 手紙ブロック ===== */
.recommend-letter {
  max-width: 620px;
  margin: 0 auto 80px;
  padding: 70px 60px 80px;

  background: #fffaf7; /* 少し黄味の紙 */
  border-radius: 14px;

  /* 紙の影 */
  box-shadow:
    0 6px 18px rgba(90, 60, 80, 0.18),
    0 1px 0 rgba(255, 255, 255, 0.8) inset;

  position: relative;
  background-image: url(../img/86223.png);
  background-size: 100% 100%;
}

/* 紙のフチのニュアンス */
.recommend-letter::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 14px;

  box-shadow:
    inset 0 0 0 1px rgba(230, 200, 215, 0.6),
    inset 0 0 22px rgba(255, 255, 255, 0.6);

  pointer-events: none;
}

/* ===== 本文 ===== */
.letter-title {
  font-size: 25px;
  line-height: 2.1;
  color: #5a3a4a;

  /* 完璧に中央にしない */
  text-align: center;

  /* 手紙っぽい余白 */
  margin-bottom: 15px;

  letter-spacing: 0.08em;
}
/* ===== 本文 ===== */
.letter-text {
  font-size: 15px;
  line-height: 2.1;
  color: #5a3a4a;

  /* 完璧に中央にしない */
  text-align: left;

  /* 手紙っぽい余白 */
  margin-bottom: 30px;

  letter-spacing: 0.08em;
}

/* 最初の一文だけ少し下げる */
.letter-text:first-child {
  margin-top: 10px;
}

/* 最後の締め */
.letter-end {
  margin-top: 42px;
  font-weight: 500;
  color: #7a425d;
}

.line_btn {
  max-width: 500px;
  width: 100%;
  margin: 50px auto;
}

.line_btn a {
  display: block;
}

.line_btn img {
  width: 100%;
  display: block;

  transition:
    transform 0.25s ease,
    filter 0.25s ease;
}
@media (hover: hover) {
  .line_btn a:hover img {
    transform: rotate(-1.5deg) scale(1.02);
    filter: brightness(1.05);
  }
}

.line_btn a:active img {
  transform: scale(0.98);
}

@media (max-width: 500px) {

/* ===== 手紙ブロック ===== */
.recommend-letter {
  max-width: 620px;
  margin: 0 auto 80px;
  padding: 70px 40px 80px;

  background: #fffaf7; /* 少し黄味の紙 */
  border-radius: 14px;

  /* 紙の影 */
  box-shadow:
    0 6px 18px rgba(90, 60, 80, 0.18),
    0 1px 0 rgba(255, 255, 255, 0.8) inset;

  position: relative;
  background-image: url(../img/8623.png);
  background-size: 100% 100%;
}

}
