@charset "UTF-8";
.line_left, .line_right {
  width: 40%;
}
.page_content p {
  letter-spacing: 0.08em;
line-height: 2em;
font-size: 14px;
}
.content_title img {
  position: relative;
  top: 80%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.faq_list .faq {
  margin-top: 16px;
}
.faq_list .question {
  position: relative;
  display: flex;
  align-items: center;
  height: 40px;
  background: #f0f5f0;
  padding-right: 40px;
}
.faq_list .question:before {
  content: 'Q';
  font-family: fot-tsukubrdgothic-std, sans-serif;
  font-style: normal;
  font-weight: 700;
  margin-right: 15px;
  color: #fff;
  background-color: #5e6478;
  height: 100%;
  font-size: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 12px;
}
.faq_list .question::-webkit-details-marker {
  display: none;
}
.faq_list .question .icon {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 40px;
  height: 40px;
  z-index: 999;
}
.faq_list .question .icon:after {
  position: absolute;
  top: calc(50% - 5px);
  left: calc(50% - 10px);
  display: block;
  width: 20px;
  height: 10px;
  content: "";
  background-image: url(../img/pulldown_icon.png);
  background-size: 100%;
  transition: 0.4s ease-in-out;
  background-repeat: no-repeat;
}
.accordion li.on .icon:after {
  transform: rotate(180deg);
}
.faq_list .answer_content {
display: flex;
}
.faq_list .answer_content:before {
  content: 'A';
  font-family: fot-tsukubrdgothic-std, sans-serif;
  font-style: normal;
  font-weight: 700;
  margin-right: 15px;
  color: #fff;
  background-color: #b57a65;
  height: 40px;
  font-size: 2rem;
  padding: 0 13px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.faq_list .answer_content p {
padding: 20px 0;
}
.answer {
  display: none;
}
.accordion {
  width: 100%;
  margin: 30px 0;
  padding: 0;
}
.accordion .link {
  cursor: pointer;
  display: block;
  position: relative;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.accordion li.on .answer {
  display: flex;
}
@media screen and (max-width:900px) {
  .faq_list .faq .question .icon {
    top: 20px;
  }
  .faq_list .question {
    height: 95px;
  }
}
@media screen and (max-width:640px) {
  .page_content p {
    letter-spacing: 0.02em;
    font-size: 14px;
}
  .content_title {
    margin: 40px auto 0px;
  }
}
