@charset "utf-8";
/* title ************************************************************/
.faq-title h2 {
  font-size: 1.8em;
  letter-spacing: 0.1em;
  margin: 0 0 45px;
  text-align: center;
  font-weight: bold;
}
.faq-title h2 span {
  display: inline-block;
  /* background: #fff; */
  position: relative;
  padding: 0 0.75em;
  box-sizing: border-box;
}
/* menu ************************************************************/
.faq-catMenu {
  margin: 25px 0;
}
.faq-catMenuWrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.faq-catMenuWrap li {
  text-align: center;
  margin: 5px 0;
  width: calc(100% / 3);
}
.faq-catMenuWrap li a {
  display: inline-block;
  width: 220px;
  max-width: 95%;
  height: 35px;
  line-height: 35px;
  margin: 0 auto;
  background: #ff974a;
  color: #fff;
  border-radius: 5px;
}
.faq-catMenuWrap li a i {
  margin-left: 5px;
}
/* list ************************************************************/
.faq-listCnt {
  margin: 35px auto 0;
}
.faq-listBox {
  margin: 0 auto 32px;
  padding-bottom: 24px;
  box-sizing: border-box;
  border-bottom: solid 1px rgba(0, 0, 0, 0.15);
}
.faq-catTitle {
  font-size: 1.5em;
  letter-spacing: 0.1em;
  margin: 0 0 24px;
}
.faq-acTitle {
  position: relative;
  cursor: pointer;
  font-weight: normal;
  padding: 16px 35px;
  transition: all 0.5s ease;
  box-sizing: border-box;
  font-size: 1em;
}
.faq-acQ {
  position: absolute;
  top: 27px;
  left: 15px;
  transform: translateY(-50%);
  color: #ff974a;
  font-size: 1em;
}
.dli-chevron-down {
  position: absolute;
  top: 47%;
  right: 15px;
  display: inline-block;
  vertical-align: middle;
  color: #ff974a;
  line-height: 1;
  width: 0.6em;
  height: 0.6em;
  border: 1px solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateY(-50%) rotate(135deg);
}
.faq-acTitle.close .dli-chevron-down {
  transform: rotate(-45deg);
}
.faq-acBox {
  display: none;
  margin: 0 auto;
  margin: 0 38px;
  padding: 10px 0 16px;
  box-sizing: border-box;
  font-size: 1em;
  border-top: dotted 1px #ff974a;
  position: relative;
}
.faq-acBox p {
  margin: 6px 0;
}
.faq-acBox a {
  text-decoration: underline;
  color: #ff545c;
}
.faq-acA {
  position: absolute;
  top: 28px;
  left: -23px;
  transform: translateY(-50%);
  color: #ff974a;
  font-size: 1em;
}
.faq-listRow {
  background: #fff;
  margin: 16px auto;
  border: solid 1px #ff974a;
  box-shadow: 0 0 12px #ff974a1f;
}
@media screen and (max-width: 600px) {
  /* menu ************************************************************/
  .faq-catMenuWrap {
    justify-content: space-between;
  }
  .faq-catMenuWrap li {
    width: calc(100% / 2);
  }
}
@media screen and (max-width: 468px) {
  /* menu ************************************************************/
  /* list ************************************************************/
  .faq-listCnt {
    margin: 25px auto 0;
  }
  .faq-listBox {
    margin: 0 auto 25px;
    padding-bottom: 25px;
    box-sizing: border-box;
    border-bottom: dotted 1px #d7d2d2;
  }
}
