@charset "utf-8";
/* CSS Document */

.faq_section {
  position: relative;
  overflow: hidden;
}

.faq_c .box_wrap {
  width: 100%;
  flex-direction: column;
  gap: clamp(34px, 5vw, 56px);
  align-items: stretch;
}

.faq_c .box {
  width: 100%;
}

.faq_c .box .qbox {
  cursor: pointer;
  position: relative;
  padding: 0 44px 0 0;
  justify-content: flex-start;
  align-items: center;
  gap: 14px;
}

.faq_c .box .qbox .q_icon {
  width: 28px;
  flex: none;
  line-height: 1;
}

.faq_c .box .qbox h3 {
  flex: 1;
  font-weight: 500;
}

.faq_c .box .qbox .icon {
  position: absolute;
  width: 18px;
  height: 18px;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.faq_c .box .qbox .icon::before,
.faq_c .box .qbox .icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: #555;
  transition: ease 0.3s;
}

.faq_c .box .qbox .icon::before {
  width: 100%;
  height: 1px;
  transform: translate(-50%, -50%);
}

.faq_c .box .qbox .icon::after {
  width: 1px;
  height: 100%;
  transform: translate(-50%, -50%);
}

.faq_c .box .qbox.active .icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.faq_c .box .abox {
  margin-top: 14px;
  margin-left: 0;
  background-color: #fff;
  padding: clamp(18px, 3vw, 28px) clamp(20px, 4vw, 34px);
  border-radius: 3px;
}

body.on .faq_c .box .abox {
  display: none;
}

@media screen and (max-width: 576px) {
  .faq_c .box .qbox {
    gap: 10px;
    padding-right: 32px;
  }

  .faq_c .box .qbox .q_icon {
    width: 20px;
  }

  .faq_c .box .qbox .icon {
    width: 15px;
    height: 15px;
  }
}
/* ---------- IEのみ ---------- */
@media all and (-ms-high-contrast: none) {
}
/* ---------- 1280px ~ ---------- */
@media screen and (max-width: 1280px){
}
/* ---------- 1080px ~ ---------- */
@media screen and (max-width: 1080px){
}
/* ---------- 768px ~ ---------- */
@media screen and (max-width: 768px){
}
/* ---------- 576px ~ ---------- */
@media screen and (max-width: 576px){
}
/* ---------- 350px ~ ---------- */
@media screen and (max-width: 350px){
}

