.form_title {
  font-size: 24px;
  font-family: "SUIT-Regular";
  width: 100%;
  font-weight: bold;
  text-align: left;
  margin-bottom: 16px;
}
.form-title {
  width: 100%;
  height: 45px;
  border-top: 2px solid var(--point);
  background-color: var(--white);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: left;
  margin-bottom: 24px;
  padding: 0px 20px;
  box-sizing: border-box;
}
.left_bg_img {
  position: fixed;
  width: 200px;
  bottom: 0px;
  left: 0px;
}

.right_bg_img {
  position: fixed;
  bottom: 0px;
  width: 200px;

  right: 0px;
}

#faq_section {
  padding-top: 120px;
  min-height: calc(100vh - 120px);
}

.depth_1_label {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
  color: var(--point);
  height: 30px;
  margin-bottom: 22px;
  font-size: 20px;
  font-weight: 500;
  cursor: pointer;
}

.depth_1_contentBox {
  display: block;
  width: 100%;
  height: 0px;
  overflow: hidden;
  margin-bottom: 24px;
  transition: all 0.4s ease-in-out;
}
#depth_1_radio_1:checked ~ #depth_1_contentBox_1 {
  height: auto;
  margin-bottom: 90px;
}

#depth_1_radio_2:checked ~ #depth_1_contentBox_2 {
  height: auto;
  margin-bottom: 90px;
}

#depth_1_radio_3:checked ~ #depth_1_contentBox_3 {
  height: auto;
  margin-bottom: 90px;
}

.depth_2_checkbox + label {
  display: block;
  width: calc(100% - 34px);
  padding-left: 16px;
  padding-right: 16px;
  margin-bottom: 12px;
  cursor: pointer;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  height: 72px;
  overflow: hidden;
}

.depth_2_checkbox:checked + label {
  padding-top: 28px;
  padding-bottom: 28px;
  height: auto;
}

.depth_2_checkbox:checked + label .checkboxLabel_topLine {
  padding: 0px;
  margin-bottom: 12px;
}

.checkboxLabel_topLine {
  height: 16px;
  display: flex;
  font-weight: 500;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  padding-bottom: 28px;
}
.checkboxLabel_bottomLine {
  word-break: keep-all;
}
.checkboxLabel_bottomLine img {
  width: 100%;
  display: block;
}

@media (max-width: 750px) {
  #faq_section .inner {
    width: calc(100% - 40px);
    margin: auto;
  }
  .left_bg_img {
    display: none;
  }
  .right_bg_img {
    display: none;
  }
}
