/**************************
 page-faq
**************************/
#faq-main .bg {
  background: url("../../images/faq/faq-mainbg.jpg");
  width: 100%;
  height: 500px;
  background-size: cover;
  background-position: center;
  position: relative;
  margin-top: 100px;
}
#faq-main .bg:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0, 0, 0, 0.5);
  background-image: radial-gradient(black 20%, transparent 20%),
    radial-gradient(black 20%, transparent 20%);
  background-size: 4px 4px;
  background-position: 0 0, 2px 2px;
  z-index: 1;
}
#faq-main .bg h1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
}
#faq-main .bg h1 span {
  display: block;
}
#faq-main .bg h1 span:nth-of-type(1) {
  font-size: 62px;
  margin-bottom: 15px;
  color: #fff;
  letter-spacing: 0.1em;
  font-weight: bold;
}
#faq-main .bg h1 span:nth-of-type(2) {
  font-size: 14px;
  margin-bottom: 5px;
  color: #fff;
  letter-spacing: 0.1em;
}
/**********************************
 faq-cnt
**********************************/
#faq-cnt {
  padding-top: 100px;
  padding-bottom: 100px;
}
#faq-cnt .faq-box {
  padding: 30px;
  border: 1px solid #ccc;
  margin-bottom: 30px;
}
#faq-cnt .faq-title {
  display: flex;
  padding-right: 50px;
  position: relative;
}
#faq-cnt .faq-answer {
  margin-top: 30px;
  padding-right: 50px;
  display: none;
}
#faq-cnt .faq-answer .flex {
  display: flex;
}
#faq-cnt .faq-title span:nth-of-type(1) {
  color: blue;
  width: 50px;
  font-size: 20px;
  font-weight: bold;
}
#faq-cnt .faq-title span:nth-of-type(2) {
  width: calc(100% - 50px);
  width: -webkit-calc(100% - 50px);
  font-size: 20px;
}
#faq-cnt .faq-answer span:nth-of-type(1) {
  color: red;
  width: 50px;
  font-size: 20px;
  font-weight: bold;
}
#faq-cnt .faq-answer span:nth-of-type(2) {
  width: calc(100% - 50px);
  width: -webkit-calc(100% - 50px);
  font-size: 20px;
}
#faq-cnt .faq-title:after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  border-left: 1px solid #000;
  border-bottom: 1px solid #000;
  position: absolute;
  top: 0px;
  right: 0px;
  z-index: 1;
  transform: rotate(-45deg);
  transition: 0.2s all;
}
#faq-cnt .faq-title.active:after {
  transform: rotate(135deg);
  top: 10px;
  transition: 0.2s all;
}
