/* h2 */
h2 {
  font-weight: 600;
  font-size: calc(20px + 16 * ((100vw - 370px) / (1920 - 370)));
  line-height: 140%;
  color: #243d3a;
  text-align: center;
}
/* h2 */
/* contact_faq */
.contact_faq {
  width: 100%;
  padding: 0 15px;
}
.contact_faq .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 120px 0;
}
.contact_faq h2 {
  margin-bottom: 40px;
}
.contact_faq_items {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 15px;
  width: 100%;
  max-width: 800px;
}
.contact_faq_item {
  padding-right:30px;
  padding-left:30px;
  background: #ffffff;
  width: 100%;
  box-shadow: 0px 5px 80px rgba(161, 189, 225, 0.21);
}
.contact_faq_item_question {
  position: relative;

  padding: 30px 0 30px;
  cursor: pointer;
}
.contact_faq_item .contact_faq_item_question * {
  font-weight: 600;
  font-size: calc(15px + 3 * ((100vw - 370px) / (1920 - 370)));
  line-height: 140%;
  color: #967340;
  margin: 0;
}
.contact_faq_item_question span {
  position: absolute;
  width: 20px;
  height: 20px;
  display: block;
  border-radius: 50%;
  border: 1px solid #967340;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.contact_faq_item_question span::after,
.contact_faq_item_question span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #967340;
}
.contact_faq_item_question span::after {
  width: 50%;
  height: 1px;
  opacity: 1;
  transition: all linear 0.2s;
}
.contact_faq_item_question span::before {
  width: 1px;
  height: 50%;
}
.contact_faq_item_answer {
  border-top: 1px solid #e8ddce00;
  padding-top: 0px;
  margin-top: 0px;
  font-size: calc(16px + 2 * ((100vw - 370px) / (1920 - 370)));
  line-height: 140%;
  color: #39464a;
  max-height: 0;
  overflow: hidden;
}
.contact_faq_item_answer p {
  margin-bottom: 25px;
  font-weight: 700;
  padding-left: 30px;
}
.contact_faq_item_answer a {
  color: #215d63;
  font-weight: 400;
}
.contact_faq_item_question.contact_faq_item_question_active span::before {
  opacity: 0;
}
.contact_faq_item_answer_active {
  padding-top: 20px;
  margin-top: 20px;
  max-height: max-content;
  border-top: 1px solid #e8ddce;
}

.contact_faq_item_answer table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100% !important;
}
.contact_faq_item_answer tr td {
  border: 1px solid #dddddd;
  padding: 7px 20px;
  text-align: center;
}
.contact_faq_item_answer tr th {
  border: 1px solid #dddddd;
  padding: 7px 20px;
  text-align: center;
  font-weight: bold;
  background: #efefef;
}
/* contact_faq */
/* contact_social */
.contact_social {
  width: 100%;
  padding: 0 15px;
  background-color: #f5f5f5;
}
.contact_social .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 0;
}
.contact_social h2 {
  margin-bottom: 30px;
}
.contact_social_items {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: center;
}
.contact_social_items a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
}
.contact_social_items svg {
  width: 100%;
  height: 100%;
}
/* contact_social */
@media screen and (max-width: 1100px) {
  .contact_social_items a {
    width: 50px;
    height: 50px;
  }
  .contact_social_items {
    gap: 20px;
  }
  .contact_faq .container {
    padding: 100px 0;
  }
}
@media screen and (max-width: 900px) {
  .contact_social .container {
    padding: 40px 0;
  }
  .contact_social h2 {
    margin-bottom: 20px;
  }
  .contact_faq .container {
    padding: 80px 0;
  }
  .contact_faq_items {
    gap: 10px;
  }
  .contact_faq_item_answer_active {
    padding-top: 10px;
    margin-top: 10px;
  }
  .contact_faq h2 {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 700px) {
  .contact_faq_item {
    padding: 15px;
  }
  .contact_faq_item_answer p {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 600px) {
  .contact_faq_item_answer table {
    min-width: 400px;
  }
  .contact_faq_item_answer {
    overflow-x: scroll;
  }
}