@charset "utf-8";
/*------------ faq ------------*/
/*.content-top{
    display: none;
}*/
.faq-list {
  background: #fff;
  max-width: 1200px;
  margin: 0 auto 30px;
  padding: 25px 50px 50px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  list-style-type: none;
}
.faq-list:before {
  content: "\e929";
  display: block;
  font-family: "icon-font-41" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 56px;
  color: #8b2d31;
  text-align: center;
}
.faq-list .faq-item {
  position: relative;
  border: 1px dotted #4e4e4e;
  border-width: 1px 0;
  margin: 30px 0 0px;
}
.faq-list .faq-item:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: #5d5d5d;
}
.faq-question {
  position: relative;
  padding: 13px 40px 13px 60px;
  box-sizing: border-box;
  display: block;
  vertical-align: middle;
  transition: all 0.2s;
  cursor: pointer;
  font-size: 18px;
  letter-spacing: 1px;
  font-weight: 500;
}
.faq-question h3 {
  margin: 0;
  color: #515151;
  font-weight: 500;
}
.faq-question i:before {
  content: "";
  background: url(../../../images/layout03/common/arrow.png) no-repeat;
  background-size: contain;
  width: 12px;
  height: 12px;
  position: absolute;
  right: 5px;
  top: 25px;
}
.faq-question:hover i:before {
  color: #c28588;
}
.faq-answer {
  position: relative;
  padding: 15px 20px 15px 60px;
  background: #f5f5f5;
  display: none;
}
.faq-answer:before {
  content: "";
  display: block;
  position: absolute;
  top: 20px;
  left: 13px;
  width: 33px;
  height: 40px;
  background-image: url(../../../images/layout03/common/faq/icon_a.png);
  background-size: contain;
}
.faq-answer .title {
  font-size: 45px;
  font-weight: bold;
}
/*------------ rwd ------------*/
@media screen and (max-width: 1000px) {
  .faq-list {
    padding: 20px 15px 25px;
    margin: 0 -15px;
  }
}
@media screen and (max-width: 480px) {
  .faq-question {
    font-size: 15px;
    padding: 12px 15px;
  }
}
