/* 共通 */
@font-face {
  font-family: "LINESeedJP";
  src: url("../font/LINESeedJP/Web/WOFF/LINESeedJP_OTF_Rg.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "LINESeedJP";
  src: url("../font/LINESeedJP/Web/WOFF/LINESeedJP_OTF_Th.woff") format("woff");
  font-weight: 100;
  font-style: normal;
}
@font-face {
  font-family: "LINESeedJP";
  src: url("../font/LINESeedJP/Web/WOFF/LINESeedJP_OTF_Bd.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "LINESeedJP";
  src: url("../font/LINESeedJP/Web/WOFF/LINESeedJP_OTF_Eb.woff") format("woff");
  font-weight: 800;
  font-style: normal;
}

body {
  background: #e6f3ec;
  color: #1D1617;
  font-family: LINESeedJP, "Hiragino Kaku Gothic ProN", "Yu Gothic", yugothic, メイリオ, meiryo, sans-serif;
  padding: 20px;
  font-weight: bold;
}

.mainContents {
  background: #fff;
  border-radius: 20px;
  padding: 30px 20px;
  max-width: 640px;
  margin: 0 auto 50px;
}

.title {
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 15px;
  text-align: center;
}

.qaList {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.qaList_item {
  background: #f6f2ec;
  border: 1px solid rgba(238, 238, 238, 1);
  border-radius: 8px;
  padding: 10px 20px;
}

.qaList_item_question,
.qaList_item_answer_inner {
  align-items: center;
  display: flex;
  padding: 10px 0;
}

.qaList_item_question {
  box-sizing: border-box;
}

.qaList_item_question:after {
  content: '';
  display: block;
  width: 14px;
  height: 15px;
  background-image: url(../images/minus.svg);
}

.qaList_item_question.is-close::after {
  background-image: url(../images/plus.svg);
}

.qaList_item_answer {
  display: none;
}

.qaList_item_answer_inner {
  border-top: 1px solid rgba(238, 238, 238, 1);
}

.qaList_item_question_icon,
.qaList_item_answer_icon {
  margin-right: 6px;
}

.qaList_item_text {
  font-size: 15px;
  flex: 1;
}