/* ==========================================================================
   FAQメインビジュアル（MV）- レポンシブ対応版
   ========================================================================== */

/* コンポーネント内のボックスサイズ共通化 */
.faq-mv,
.faq-mv * {
  box-sizing: border-box;
}

/* [PC] MV全体の設定 */
.faq-mv {
  margin-top:50px;
  width: 100%;
  height: 330px;
  background: linear-gradient(100deg, #4daae3 0%, #3083d2 45%, #2365bf 100%);
  overflow: hidden;
}

/* [PC] 中央揃えのコンテンツコンテナ（最大1100px） */
.faq-mv__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  height: 100%;
  margin: 0 auto;
  padding: 0 60px;
}

/* [PC] 左側：タイトルエリア */
.faq-mv__content {
  flex: 1;
}

/* [PC] 「よくある質問」タイトル */
.faq-mv__title {
  font-family: "Hiragino Maru Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  line-height: 1;
  letter-spacing: 0.08em;
  text-shadow: 2px 3px 4px rgba(16, 56, 119, 0.6); 
}

/* [PC] 右側：画像エリア */
.faq-mv__image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.faq-mv__image img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

/* ==========================================================================
   レスポンシブ対応（ブレイクポイント：768px以下）
   ========================================================================== */
@media screen and (max-width: 768px) {
  /* スマホ時は高さを固定せず、上下パディングで綺麗な余白を確保 */
  .faq-mv {
    height: auto;
    padding: 50px 0;
  }

  /* 縦並び（column）にし、要素を中央揃えに配置 */
  .faq-mv__inner {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 32px; /* タイトルとイラストの間の絶妙な距離感 */
    padding: 0 24px; /* 画面端に文字がくっつかないための余白 */
  }

  /* テキストエリアの横幅をいっぱいまで広げる */
  .faq-mv__content {
    width: 100%;
  }

  /* スマホ画面に合わせて文字サイズを少し縮小、視認性を維持 */
  .faq-mv__title {
    font-size: 32px;
    letter-spacing: 0.06em;
    /* 画面サイズに合わせて、影の落ちる距離も微調整 */
    text-shadow: 1.5px 2px 3px rgba(16, 56, 119, 0.6);
  }

  /* 画像エリアを中央寄せに変更 */
  .faq-mv__image {
    width: 100%;
    justify-content: center;
  }

  /* イラストがスマホ画面を圧迫しないよう、最大幅をきれいに制限 */
  .faq-mv__image img {
    max-width: 220px;
  }
}

/* ==========================================================================
   FAQ Q&Aリストセクション
   ========================================================================== */

/* ボックスサイズ共通化 */
.faq-list,
.faq-list * {
  box-sizing: border-box;
}

/* Q&Aセクション全体：最大1100px・中央揃え */
.faq-list {
  max-width: 1100px;
  width: 100%;
  margin: 60px auto; /* 上下余白はサイトに合わせて調整してください */
  padding: 0;
}

/* Q&Aの1セット（アコーディオンにしないフラットなカード型） */
.faq-item {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03); /* カンプの薄い影を再現 */
  overflow: hidden; /* Qアイコンの角丸を親に合わせる */
  margin-bottom: 40px; /* リスト同士の間隔 */
}
.faq-item:last-child {
  margin-bottom: 0;
}

/* --- 質問（Q）エリア --- */
.faq-item__question {
  display: flex;
  align-items: center;
  background-color: #eef3fa; /* カンプの薄いブルー背景 */
  min-height: 64px;
}

/* Qの正方形アイコン */
.faq-item__q-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 64px;
  height: 64px;
  background-color: #2c62be; /* カンプの濃いブルー */
  color: #ffffff;
  font-family: "Arial", sans-serif;
  font-size: 24px;
  font-weight: 700;
  flex-shrink: 0; /* 縮み防止 */
}

/* 質問テキスト */
.faq-item__q-text {
  font-size: 16px;
  font-weight: 700;
  color: #1a365d; /* ほんのり青みのある濃い文字色 */
  margin: 0;
  padding: 0 24px;
  line-height: 1.4;
}

/* --- 回答（A）エリア --- */
.faq-item__answer {
  display: flex;
  align-items: flex-start; /* 上揃えにしてインデントを綺麗に */
  padding: 32px 40px; /* ゆったりとしたインナー余白 */
  background-color: #ffffff;
}

/* Aの丸型アイコン */
.faq-item__a-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  background-color: #ee5230; /* カンプのオレンジ */
  color: #ffffff;
  font-family: "Arial", sans-serif;
  font-size: 16px;
  font-weight: 700;
  border-radius: 50%; /* 正円にする */
  flex-shrink: 0; /* 縮み防止 */
  margin-top: -2px; /* 文字の1行目と高さを中央に合わせる微調整 */
}

/* 回答テキスト（アイコンの右側に綺麗に並ぶ） */
.faq-item__a-text {
  flex: 1;
  padding-left: 24px; /* アイコンとの間隔 */
}

.faq-item__a-text p {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.8;
  color: #333333;
  margin: 0 0 12px 0;
}
.faq-item__a-text p:last-child {
  margin-bottom: 0;
}
.busho_n{
 font-size:120%;
 font-weight:bold;
}
a.faq:link, a.faq:visited {
  color: #0066cc;
}

/* マウスホバー時 */
a.faq:hover {
  color: #ff3300;
  text-decoration: none; /* 下線を消す例 */
}

/* ==========================================================================
   レスポンシブ対応（スマホ幅：768px以下）
   ========================================================================== */
@media screen and (max-width: 768px) {
  /* スマホ時は横幅90%で中央揃え */
  .faq-list {
    width: 90%;
    margin: 40px auto;
  }

  .faq-item {
    margin-bottom: 24px;
  }

  /* 質問エリア：高さを可変にしてパディング調整 */
  .faq-item__question {
    min-height: auto;
  }

  /* Qアイコンを少しコンパクトに */
  .faq-item__q-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .faq-item__q-text {
    font-size: 15px;
    padding: 12px 16px; /* スマホ用に余白を少し詰める */
  }

  /* 回答エリア：スマホ用の余白に */
  .faq-item__answer {
    padding: 24px 16px;
  }

  /* Aアイコンを少しコンパクトに */
  .faq-item__a-icon {
    width: 26px;
    height: 26px;
    font-size: 14px;
  }

  .faq-item__a-text {
    padding-left: 12px; /* アイコンとの隙間をスマホ向けに調整 */
  }

  .faq-item__a-text p {
    font-size: 14px; /* スマホで見やすい文字サイズに */
    line-height: 1.7;
  }
}
