/* ===============================================
   FAQ Page Styles
   =============================================== */
.footer {
  margin: 0;
}
/* メインコンテナ */
.faq-main {
  position: relative;
  background: var(--rfa-color-strong03);
  min-height: 100vh;
  overflow: hidden;
  padding-bottom: 180px;
}

/* ===============================================
   ページヘッダー
   =============================================== */
.faq-mv {
  position: relative;
  padding: 120px 0 60px;
  background: transparent;
}

.faq-mv__inner {
  position: relative;
  width: 84%;
  max-width: 1080px;
  margin: 0 auto;
  z-index: 2;
}
.section-heading__en {
  font-family: var(--font-rfa);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 1.6px;
  color: #000;
  display: block;
  margin-bottom: 15px;
}
.section-heading__ja {
  font-size: 2.5rem;
  font-style: normal;
  font-weight: 500;
}
.gradient-text {
  background: var(--rfa-color-strong02);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===============================================
   FAQ一覧
   =============================================== */
.faq-list {
  padding: 0 0 100px;
}

.faq-list__inner {
  max-width: 1080px;
  margin: 0 auto;
  width: 84%;
}

/* FAQ Item */
.faq-item {
  margin-bottom: 30px;
  overflow: hidden;

}

.faq-item:hover {
}

/* 質問部分 */
.faq-item__question {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 17px 19px;
  background: #fff;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background 0.3s ease;
  border-radius: 8px;
  margin-bottom: 10px;
}

/* Q番号 */
.faq-item__number {
  flex-shrink: 0;
  width: 66px;
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #295D7E, #43506E 66%, #5D435E);
  border-radius: 50%;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.5px;
  color: #fff;
  text-align: center;
}

/* 質問テキスト */
.faq-item__question-text {
  flex: 1;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 1.2px;
  background: var(--rfa-color-strong02);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
}

/* 開閉アイコン */
.faq-item__icon {
  position: static;
  width: 14px;
  height: 11px;
  border: 1px solid transparent;
  border-radius: 50%;
  background: linear-gradient(white, white) padding-box, var(--rfa-color-strong02) border-box;
  padding: 19px 18px;
  margin: 0;
  display: flex;
  justify-content: center;
  transition: transform 0.3s ease;
}
.faq-item__icon img {
  transform: rotate(-90deg);
  transition: inherit;
}



.faq-item__question[aria-expanded="true"] .faq-item__icon img {
  transform: rotate(90deg);

}

/* 回答部分 */
.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  border-radius: 8px;
  padding: 0 50px 0 19px;
  background: #fff;
}

.faq-item__answer.is-open {
  max-height: 1000px;
  padding: 17px 50px 17px 19px;
}

.faq-item__answer-inner {
  display: flex;
  gap: 20px;
}

/* Aラベル */
.faq-item__answer-label {
  flex-shrink: 0;
  width: 66px;
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to right, #D1FBFF, #D4E6FF);
  border-radius: 50%;
  font-family: "Noto Sans JP",sans-serif;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.5px;
  color: #fff;

}
.faq-item__answer-label span {
  background: var(--rfa-color-strong02);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
/* 回答テキスト */
.faq-item__answer-text {
  flex: 1;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 32px;
  letter-spacing: 1.2px;
  color: #272222;

}

/* ===============================================
   レスポンシブ対応
   =============================================== */

/* タブレット */
@media screen and (max-width: 1024px) {
  .faq-header {
    padding: 80px 0 50px;
  }

  .faq-header__title {
    font-size: 36px;
    line-height: 48px;
  }

  .faq-list {
    padding: 50px 0 80px;
  }
}

/* スマートフォン */
@media screen and (max-width: 768px) {
  .faq-main {
    padding-bottom: 110px;
  }
  .faq-header {
    padding: 60px 0 40px;
  }

  .faq-header__inner {
    width: 90%;
  }

  .faq-header__label {
    font-size: 14px;
    margin-bottom: 12px;
  }
    .section-heading__ja {
      font-size: 28px;
    }
  .faq-list {
    padding: 0 0 60px;
  }

  .faq-list__inner {
    width: 90%;
  }

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

  .faq-item__question {
    gap: 12px;
    padding: 20px 16px;
  }

  .faq-item__number {
    width: 46px;
    height: 46px;
    font-size: 12px;
  }

  .faq-item__question-text {
    font-size: 14px;
    line-height: 28px;
    letter-spacing: 0.8px;
  }

  .faq-item__icon {
    width: 29px;
    height: 29px;
    padding: 0;
  }
  .faq-item__icon img {
    width: 38%;
  }


  .faq-item__answer-inner {
    gap: 12px;
  }

  .faq-item__answer-label {
    width: 46px;
    height: 46px;
    font-size: 18px;
  }

  .faq-item__answer-text {
    font-size: 14px;
    line-height: 28px;
    letter-spacing: 0.8px;
  }
}

/* 極小画面 */
@media screen and (max-width: 375px) {
}
