/** =======================
 * main
 ===========================*/
.faq_wapper{
  margin: 0 auto;
  max-width: 90%;
}

.header_kv img{
  max-height: 400px;
  object-fit: cover;
}
.text_link{
  cursor: pointer;
  display: block;
  padding: 15px 15px 10px 20px;
  color: #4D4D4D;
  font-weight: 700;
  border-bottom: 2px solid #333;
  position: relative;
  width: 70%;
  margin: 20px auto 0;
}
.text_link a:after {
  content: url(../images/icon_arrow.svg);
  bottom: 10px;
  position: absolute;
  right: 1px;
}
/** =======================
 * accordion
 ===========================*/
.faq_h2_contents{
  margin: 30px 0 0;
  padding: 20px 0;
  border-bottom:5px solid #B69554;
  color: #B69554;
}
.faq_h2_contents h2{
  font-family: 'Noto Serif JP', serif;
}

.faq_accordion {
  font-family: 'Noto Sans JP';
  font-size: 16px;
  margin:0 auto;
  -webkit-border-radius:8px;
  -moz-border-radius:8px;
  -o-border-radius:8px;
  border-radius:8px;
  overflow: hidden;
}

.faq_question {
  font-family: 'Noto Sans JP';
  width:100%;
  margin:0 auto;
  padding:20px 35px 20px 50px;
  cursor:pointer;
  border-bottom:1px solid #B69554;
  display: block;
  position: relative;
}
.faq_question p{

}
.faq_question.faq_question_open {
  border-bottom:1px solid #EBEAE9;
}
.icon_faq_Q::before {
  left: 0;
  font-family: 'Cinzel';
  content: "Q";
  position: absolute;
  font-size: 30px;
  color: #B69554;
  top: 15%;
}
.faq_answer {
  font-family: 'Noto Sans JP';
  width:100%;
  margin:0 auto;
  display: none;
  padding:20px 35px 20px 50px;
  height: auto;
  position: relative;
  border-bottom:1px solid #B69554;
}
.icon_faq_A::before {
  left: 0;
  font-family: 'Cinzel';
  content: "A";
  position: absolute;
  font-size: 30px;
  color: #C7A8A0;
  top: 20px;
}
.faq_plus {
  display: inline-block;
  vertical-align: middle;
  color: #B69554;
  line-height: 1;
  width: 14px;
  height: 2px;
  background: currentColor;
  border-radius: 0.1em;
  float: right;
  top: 50%;
  position: absolute;
  right: 10px;
}

.faq_plus::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: inherit;
  border-radius: inherit;
  transform: rotate(90deg);
}
.faq_question.icon_faq_Q.faq_question_open .faq_plus::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: inherit;
    border-radius: inherit;
    transform: rotate(90deg);
}

#faq_cardholder{
  margin-bottom: 95px;
}
@media screen and (min-width: 750px) {
  /* 980px以上に適用されるCSS（PC用） */
}
@media screen and (min-width: 980px) {
  /* 980px以上に適用されるCSS（PC用） */
  .faq_wapper{
    margin: 0 auto;
    max-width: 980px;
  }
  .faq_question {
    padding:20px 25px 20px 83px;
  }
  .icon_faq_Q::before {
    left: 20px;
  }
  .icon_faq_A::before {
    left: 20px;
  }
  .faq_answer {
    padding:20px 25px 20px 83px;
  }
}