/* ▼ 特定箇所のフォントサイズ設定 */
/*ブレークポイント max-width version[Add leehnyn]*/
#faq_page .faq {
  width: 100%;
  max-width: 944px;
  margin: 0 auto 150px;
  color: #111;
  line-height: 1.6;
  box-sizing: border-box;
}
@media screen and (max-width: 1024px) {
  #faq_page .faq {
    max-width: 100%;
    padding: 0 3%;
  }
}
@media screen and (max-width: 767px) {
  #faq_page .faq {
    margin-bottom: 10%;
    padding: 0 6%;
  }
}
#faq_page .faq__list {
  border-bottom: 1px solid #eee;
  box-sizing: border-box;
}
#faq_page .faq__list-item:not(:first-child) dd {
  display: none;
}
#faq_page .faq__list-question {
  position: relative;
  padding: 20px 50px 20px 60px;
  font-weight: bold;
  font-size: 1.6rem;
  cursor: pointer;
  transition: background-color 0.3s;
  border-top: 1px solid #eee;
  box-sizing: border-box;
  background-image: linear-gradient(#111, #111);
  background-repeat: no-repeat;
  background-size: 16px 2px;
  background-position: right 20px center;
}
@media screen and (max-width: 767px) {
  #faq_page .faq__list-question {
    padding: 15px 40px 15px 40px;
    font-size: 1.3rem;
  }
}
#faq_page .faq__list-question:hover {
  background-color: #f9f9f9;
}
#faq_page .faq__list-question::before {
  content: 'Q';
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  padding-left: 1px;
  line-height: calc(40px*0.9);
  text-align: center;
  background-color: #cd5d15;
  color: #fff;
  border-radius: 50%;
  font-size: 2rem;
  display: flex;
  justify-content: center;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  #faq_page .faq__list-question::before {
    width: 25px;
    height: 25px;
    padding-left: 2px;
    line-height: calc(25px*0.9);
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 767px) {
  #faq_page .faq__list-question {
    background-size: 12px 2px;
    background-position: right 15px center;
  }
}
#faq_page .faq__list-question::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 27px;
  transform: translateY(-50%);
  width: 2px;
  height: 16px;
  background-color: #111;
  transition: transform 0.3s ease;
}
@media screen and (max-width: 767px) {
  #faq_page .faq__list-question::after {
    height: 12px;
    right: 20px;
  }
}
#faq_page .faq__list-question.is-open::after {
  transform: translateY(-50%) rotate(90deg);
}
#faq_page .faq__list-answer {
  padding: 0;
  box-sizing: border-box;
}
#faq_page .faq__list-answer-inner {
  position: relative;
  padding: 20px 50px 20px 60px;
  font-size: 1.6rem;
  line-height: 1.75;
  border-top: 1px solid #eee;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  #faq_page .faq__list-answer-inner {
    padding: 15px 40px 15px 40px;
    font-size: 1.3rem;
  }
}
#faq_page .faq__list-answer-inner::before {
  content: 'A';
  position: absolute;
  top: 15px;
  left: 0;
  width: 40px;
  height: 40px;
  padding-left: 2px;
  line-height: calc(40px*0.95);
  text-align: center;
  background-color: #755145;
  color: #fff;
  border-radius: 50%;
  font-size: 2rem;
  font-weight: bold;
  display: flex;
  justify-content: center;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  #faq_page .faq__list-answer-inner::before {
    top: 13px;
    width: 25px;
    height: 25px;
    padding-left: 2px;
    line-height: calc(25px*0.95);
    font-size: 1.3rem;
  }
}
