/* お客様の声 詳細ページ セクション全体 */
.detail-customer-voices {
    /* セレクタ変更 */
    padding: 40px 20px;
    /* 上下の余白40px、左右の余白20px（スマホ用） */
}

.detail-cv-title-area {
    display: block;
    text-align: center;
    /* タイトルを中央寄せ */
}

/* 見出しのスタイル */
.detail-customer-voices .detail-cv-heading {
    /* セレクタ変更 */
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
    color: var(--subColor);
    /* 例 */
}

/* お客様の声 リスト ul */
.detail-customer-voices ul {
    /* セレクタ変更 */
    list-style: none;
    /* リストの点を消す */
    padding: 0;
    margin: 0;
}

/* お客様の声 各項目 li */
.detail-customer-voices .detail-cv-item {
    /* セレクタ変更 */
    background-color: #f9f9f9;
    /* 背景色（任意） */
    padding: 30px;
    /* 内側の余白 */
    margin-bottom: 40px;
    /* 各声の間の下の余白 */
    border-radius: 8px;
    /* 角を丸くする（任意） */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
    /* 影をつける（任意） */
}

/* 最後のliだけ下の余白をなくす */
.detail-customer-voices .detail-cv-item:last-child {
    /* セレクタ変更 */
    margin-bottom: 0;
}

.summary-link.detail-cv-button.fadein {
    display: block;
    width: 350px;
    margin: 50px auto;
    text-align: center;
}

/* PC表示用の調整 (例: 画面幅が768px以上の場合) */
@media (min-width: 768px) {
    .detail-customer-voices {
        /* セレクタ変更 */
        padding: 60px 40px;
        /* PC用の余白 */
    }

    .detail-customer-voices .detail-cv-item {
        /* セレクタ変更 */
        max-width: 800px;
        /* コンテンツの最大幅を設定 */
        margin-left: auto;
        /* 中央寄せ */
        margin-right: auto;
        /* 中央寄せ */
        margin-bottom: 50px;
        /* PC用の下の余白 */
        padding: 40px;
        /* PC用の内側の余白 */
    }
}

/* アイコン部分のdiv */
.detail-customer-voices .detail-cv-icon-area {
    /* セレクタ変更 */
    text-align: center;
    /* アイコンを中央に配置 */
    margin-bottom: 20px;
    /* アイコンと名前の間の余白 */
}

/* アイコン画像 img */
.detail-customer-voices .detail-cv-icon-area img {
    width: 100px;
    height: auto;
    border-radius: 50%;
    object-fit: cover;
    /* border: 2px solid #eee; */
}

/* お客様の名前 h4 */
.detail-customer-voices .detail-cv-item h4 {
    text-align: center;
    font-size: 0.9em;
    margin-bottom: 20px;
    font-weight: 400;
}

/* お客様の声 本文 p */
.detail-customer-voices .detail-cv-item p {
    /* セレクタ変更 (より具体的に) */
    font-size: 1em;
    /* 文字サイズ */
    line-height: 1.7;
    /* 行間 */
    margin-bottom: 1em;
    /* 段落間の下の余白 */
}

/* 各声の中の最後の段落の下の余白をなくす */
.detail-customer-voices .detail-cv-item p:last-of-type {
    /* セレクタ変更 (より具体的に) */
    margin-bottom: 0;
}


/* --- (補足) アイコンを左、テキストを右に配置する場合の例 --- */
/* (コメントアウトされたCSS部分は省略) */

.consultation-flow-cta {
  background-color: var(--subColor, #12372a);
  /* 背景色 */
  color: #fff;
  text-align: center;
}

.consultation-flow-cta .container {
  max-width: 800px;
  margin: 0 auto;
  padding: 32px 19px;
}

.cta-title {
  /* h2 */
  font-size: 2.2rem;
  margin-bottom: 30px;
  line-height: 1.4;
  font-weight: bold;
  /* CTAは太めに */
}

.cta-title::after {
  content: '';
  display: inline-block;
  width: 41px;
  height: 41px;
  vertical-align: middle;
  margin-left: 6px;
  margin-bottom: 14px;
  background-image: url('https://aoba-support-next-stage.jp/wp-content/uploads/2025/04/lightbulb-icon.png');
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}

.cta-text {
  font-size: 1.1rem;
  line-height: 1.8;
  opacity: 0.9;
}

strong.consultation-flow-pricing-point {
  font-size: 1.2rem;
  color: var(--red);
}

p.consultation-flow-pricing-explain {
  text-align: end;
}

.consultation-flow-cta-button-link {
  display: flex;
  width: 280px;
  height: 50px;
  margin: 30px auto;
  justify-content: center;
  align-items: center;
  color: var(--white);
  background-image: linear-gradient(to bottom, #feb12c, #fc5903);
  border-radius: 20px;
  opacity: 1;
}

.consultation-flow-cta-button-link:hover {
  filter: brightness(110%);
}

/* Font Awesome アイコン用 */
.cta-button i.fas {
  margin-right: 8px;
}

.cta-note {
  font-size: 0.9rem;
  line-height: 1.4;
  opacity: 0.8;
}

@media screen and (max-width: 767px) {
  .consultation-flow-cta .container {
    padding: 52px 19px 32px;
}

  h2.cta-title {
    padding-top: 15px;
    padding-bottom: 12px;
    font-size: clamp(1.2rem, 4vw, 2.3rem);
}

  .cta-title::after {
    width: 30px;
    height: 30px;
}

  p.cta-text {
      margin-bottom: 20px;
      font-size: 1.1rem;
      text-align: justify;
      line-height: 1.5;
      opacity: 0.95;
  }

  p.consultation-flow-cta-text.only-mp-consultation-text-space {
    font-size: 1.1rem;
    text-align: justify;
    line-height: 1.6;
}

  p.cta-note {
      padding-bottom: 40px;
      line-height: 1.4;
  }
}