section.gray {
  background: #F1F1F1;
}

.faq_section {
  padding: 100px 0;
}
@media all and (max-width: 750px) {
  .faq_section {
    padding: 40px 0;
  }
}

.faq_section_title {
  font-size: clamp(17px, 2.08vw, 30px);
  font-weight: 500;
  margin-bottom: 40px;
  padding-left: 30px;
  position: relative;
}
@media all and (max-width: 750px) {
  .faq_section_title {
    margin-bottom: 25px;
    padding-bottom: 5px;
    padding-left: 17px;
  }
}
.faq_section_title::before {
  content: "";
  position: absolute;
  background: #EFDF49;
  width: 7px;
  height: 100%;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media all and (max-width: 750px) {
  .faq_section_title::before {
    width: 4px;
  }
}

.faq_list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}
@media all and (max-width: 750px) {
  .faq_list {
    margin-top: 10px;
  }
}

.faq_item {
  border-bottom: 1px solid #C6C6C6;
  padding: 0;
}
.faq_item:first-child {
  border-top: 1px solid #C6C6C6;
}

.faq_item_label_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media all and (max-width: 750px) {
  .faq_item_label_wrap {
    padding: 0;
  }
}
.faq_item_label_wrap:hover {
  background-color: rgba(239, 223, 73, 0.1);
}

.faq_item_label {
  font-weight: 600;
  min-width: 120px;
  line-height: 1.5;
  font-size: clamp(14px, 1.67vw, 24px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media all and (max-width: 750px) {
  .faq_item_label {
    min-width: 100px;
    padding: 12px 12px;
  }
}
.faq_item_label span {
  margin-right: 20px;
  font-size: clamp(20px, 2.78vw, 40px);
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
}

.icon_plus {
  width: 40px;
  height: 40px;
  background-color: #EFDF49;
  border-radius: 50%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media all and (max-width: 750px) {
  .icon_plus {
    width: 25px;
    height: 25px;
  }
}
.icon_plus span {
  position: absolute;
  background-color: #000;
  width: 20px;
  height: 3px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media all and (max-width: 750px) {
  .icon_plus span {
    width: 12px;
    height: 2px;
  }
}
.icon_plus span:first-child {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.faq_item._open .icon_plus span:first-child {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}

.faq_item_content {
  font-size: clamp(12px, 1.39vw, 20px);
  line-height: 2;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media all and (max-width: 750px) {
  .faq_item_content {
    font-size: 13px;
    line-height: 1.7;
  }
}
.faq_item_content .faq_item_content_inner {
  padding: 20px 24px 40px;
}
@media all and (max-width: 750px) {
  .faq_item_content .faq_item_content_inner {
    padding: 12px 0 24px;
  }
}
.faq_item_content .faq_item_content_inner a {
  display: block;
  color: #0878B5;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.faq_item_content .faq_item_content_inner a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 1px;
  background: #0878B5;
  bottom: 0;
  left: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.faq_item_content .faq_item_content_inner a:hover::after {
  width: 100%;
}
.faq_item_content .note {
  display: block;
  margin-top: 8px;
}
@media all and (max-width: 750px) {
  .faq_item_content .note {
    font-size: 12px;
  }
}

.faq_item._open .faq_item_content {
  max-height: 1000px;
  opacity: 1;
}

.faq_link {
  color: #0878B5;
  position: relative;
}
.faq_link::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background: #0878B5;
  bottom: 0;
  left: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.faq_link:hover::after {
  width: 0%;
}