@charset "UTF-8";
/*==================================================
** FAQ (よくあるご質問)
==================================================*/
#faqSec {
  background: #f6f5f2;
  padding-top: 120px;
  padding-bottom: 120px;
  /* メインビジュアル部分（赤い帯） */
  /* コンテンツエリア */
}
@media screen and (max-width: 767px) {
  #faqSec {
    padding-top: 16vw;
    padding-bottom: 80px;
  }
}
#faqSec .faq-mv {
  background: #f5564f;
  padding: 60px 0;
}
@media screen and (max-width: 767px) {
  #faqSec .faq-mv {
    padding: 40px 0;
  }
}
#faqSec .faq-mv .faq-mv-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 100px;
  /* SPのときは画像が上、テキストが下 */
}
@media screen and (max-width: 767px) {
  #faqSec .faq-mv .faq-mv-inner {
    flex-direction: column;
    gap: 20px;
  }
}
#faqSec .faq-mv .faq-mv-ttl {
  color: #fff;
}
#faqSec .faq-mv .faq-mv-ttl img {
  max-width: 360px;
  height: auto;
  display: block;
}
@media screen and (max-width: 767px) {
  #faqSec .faq-mv .faq-mv-ttl img {
    max-width: 280px;
  }
}
#faqSec .faq-mv .mv-ill {
  width: 200px;
}
@media screen and (max-width: 767px) {
  #faqSec .faq-mv .mv-ill {
    width: 180px;
  }
}
#faqSec .faq-mv .mv-ill img {
  width: 100%;
  height: auto;
  display: block;
}
#faqSec .faq-contents {
  padding-top: 80px;
  /* アコーディオンリスト */
  /* 質問部分 (クリッカブルエリア) */
  /* 回答部分 */
}
@media screen and (max-width: 767px) {
  #faqSec .faq-contents {
    padding-top: 50px;
  }
}
#faqSec .faq-contents .faq-section {
  margin-bottom: 80px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  #faqSec .faq-contents .faq-section {
    margin-bottom: 50px;
  }
}
#faqSec .faq-contents .faq-heading {
  font-size: 2.8rem;
  font-weight: bold;
  color: #333;
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  #faqSec .faq-contents .faq-heading {
    font-size: 2.4rem;
    margin-bottom: 30px;
  }
}
#faqSec .faq-contents .faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px; /* Q&Aブロック間の余白 */
}
@media screen and (max-width: 767px) {
  #faqSec .faq-contents .faq-list {
    gap: 15px;
  }
}
#faqSec .faq-contents .faq-item {
  background: #fff;
  border: 2px solid #f5564f;
  border-radius: 12px;
  overflow: hidden;
}
#faqSec .faq-contents .faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  transition: background-color 0.3s;
  /* 右側の＋/ー アイコン */
  /* 開いている時のアイコンの動き (縦線を回転させて横線に重ね、マイナスにする) */
}
#faqSec .faq-contents .faq-q:hover {
  background-color: #fdf5f5;
}
@media screen and (max-width: 767px) {
  #faqSec .faq-contents .faq-q {
    padding: 15px 20px;
    align-items: flex-start; /* SP時はテキストが長いとアイコンとズレるため上揃え */
  }
}
#faqSec .faq-contents .faq-q .q-left {
  display: flex;
  align-items: center;
  gap: 15px;
  width: 90%;
}
@media screen and (max-width: 767px) {
  #faqSec .faq-contents .faq-q .q-left {
    gap: 10px;
  }
}
#faqSec .faq-contents .faq-q .q-num {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 38px;
  background-color: #f5564f;
  color: #fff;
  font-size: 1.6rem;
  font-family: "Gantari", sans-serif;
  font-weight: bold;
  border-radius: 50%;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  #faqSec .faq-contents .faq-q .q-num {
    width: 34px;
    height: 34px;
    font-size: 1.4rem;
  }
}
#faqSec .faq-contents .faq-q .q-txt {
  font-size: 1.6rem;
  font-weight: bold;
  color: #f5564f;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  #faqSec .faq-contents .faq-q .q-txt {
    font-size: 1.45rem;
    margin-top: 5px; /* アイコンと少し高さを合わせる微調整 */
  }
}
#faqSec .faq-contents .faq-q .q-icon {
  position: relative;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  /* 横線（常に表示） */
  /* 縦線（＋を作るための線） */
}
#faqSec .faq-contents .faq-q .q-icon::before, #faqSec .faq-contents .faq-q .q-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: #f5564f;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease;
}
#faqSec .faq-contents .faq-q .q-icon::before {
  width: 100%;
  height: 2px;
}
#faqSec .faq-contents .faq-q .q-icon::after {
  width: 2px;
  height: 100%;
}
@media screen and (max-width: 767px) {
  #faqSec .faq-contents .faq-q .q-icon {
    margin-top: 10px; /* SP時の上揃えに対する位置調整 */
  }
}
#faqSec .faq-contents .faq-q.is-open .q-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
#faqSec .faq-contents .faq-a {
  /* JSで初期状態を制御するため、CSSでは display:none にしないでおきます */
}
#faqSec .faq-contents .faq-a .faq-a-inner {
  padding: 25px;
  font-size: 1.45rem;
  font-weight: 500;
  line-height: 1.8;
  color: #333;
  border-top: 1px solid #f5564f; /* QとAの間の赤い線 */
}
#faqSec .faq-contents .faq-a .faq-a-inner a {
  color: #f5564f;
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  #faqSec .faq-contents .faq-a .faq-a-inner {
    padding: 20px;
    font-size: 1.4rem;
  }
}
