.faq .mainBox .info {
  max-width: 950px;
  color: #333333;
  font-size: 1.25rem;
  line-height: 1.2;
  margin-bottom: clamp(30px, 5%, 60px);
  margin: 0 auto;
  padding-left: 50px;
  position: relative;
}

@media screen and (max-width: 1000px) {
  .faq .mainBox .info {
    font-size: 1.125rem;
  }
}

.faq .mainBox .info::before {
  content: '';
  width: 20px;
  height: 20px;
  display: block;
  position: absolute;
  left: 0;
  border-radius: 50% 50%;
  border: 6px solid #c61d06;
  filter: drop-shadow(18px 0 0px #c61d06);
  margin: 4px 40px 0 0;
  flex-shrink: 0;
}

.faq .mainBox .info a {
  display: inline-block;
  color: #c61d06;
}

.faq .mainBox .listBox {
  max-width: 950px;
  margin: 0 auto;
  display: flex;
  /* justify-content: space-between; */
  flex-direction: column;
  gap: 20px;
}

/* @media screen and (max-width: 767px) {
  .faq .mainBox .listBox {
    flex-direction: column;
  }
} */
/* @media screen and (min-width: 768px) {
  .faq .mainBox .box {
    width: 45%;
  }
} */
.faq .mainBox .item {
  transition: all 0.3s ease;
}

.faq .mainBox .item .qBox {
  color: #111111;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.65;
  text-align: left;
  display: block;
  background: none;
  position: relative;
  padding: 20px 20px 20px 30px;
  transition: all 0.3s ease;
}

@media screen and (max-width: 1000px) {
  .faq .mainBox .item .qBox {
    font-size: 1.375rem;
  }
}

@media screen and (max-width: 767px) {
  .faq .mainBox .item .qBox {
    font-size: 1.25rem;
  }
}

.faq .mainBox .item .qBox::before {
  content: '';
  width: 14px;
  height: 2px;
  display: block;
  background: #c61d06;
  position: absolute;
  left: 0;
  top: 38px;
}

.faq .mainBox .item .qBox::after {
  content: '';
  height: 14px;
  width: 2px;
  display: block;
  background: #c61d06;
  position: absolute;
  left: 6px;
  top: 32px;
  transition: all 0.3s ease;
}

.faq .mainBox .item .aBox {
  display: none;
  font-size: 1.125rem;
  color: #666666;
  line-height: 1.2;
  padding: 0px 20px 20px 30px;
}

.faq .mainBox .item.active .qBox,
.faq .mainBox .item:hover .qBox {
  color: #c61d06;
}

.faq .mainBox .item.active .qBox::after {
  opacity: 0;
}

/*# sourceMappingURL=faq.css.map */
.faq .mainBox .item .aBox ul li {
  list-style: disc;
  padding: 0;
  margin: 0.5em 1em;
}

.faq .mainBox .item .aBox a {
  text-decoration: underline;
}

.faq .mainBox .item .aBox p {
  line-height: 1.6em;
}