.contact_area__ttl {
  max-width: 550px;
  width: 100%;
  padding-bottom: 16px;
  border-bottom: 4px solid #000;
  margin-bottom: 16px;
}
@media (max-width: 640px) {
  .contact_area__ttl {
    border-bottom: 2px solid #000;
  }
}
.contact_area__ttl img {
  display: block;
  height: min(72px, 12vw);
  width: auto;
  margin: 0 auto;
}
.contact_area__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: min(100px, 10vw);
}
.contact_area__header p {
  letter-spacing: 0.1em;
  font-size: 1.2em;
  line-height: 1.5;
  word-break: keep-all;
  font-weight: 700;
  color: #000;
}
.contact_area + .contact_area {
  margin-top: 140px;
}
.contact_area .faq_list {
  max-width: 780px;
  width: 100%;
  margin: 0 auto;
}
.contact_area .faq_list__item {
  margin-bottom: 10px;
}
.contact_area .faq_list__item__label {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: flex;
  align-items: center;
  min-height: 80px;
  width: 100%;
  border-radius: 0;
  border: none;
  font-size: 20px;
  letter-spacing: 0.1em;
  font-weight: 700;
  padding: 8px 40px;
  position: relative;
  background-color: #e6e6e6;
  cursor: pointer;
}
@media (any-hover: hover) {
  .contact_area .faq_list__item__label {
    transition: ease 200ms;
  }
  .contact_area .faq_list__item__label:hover {
    background-color: #efefef;
  }
}
.contact_area .faq_list__item__label::after {
  content: "";
  display: block;
  position: absolute;
  right: 30px;
  top: 30px;
  width: 16px;
  height: 16px;
  border-style: solid;
  border-width: 2px 2px 0 0;
  border-color: #000;
  transform: rotate(45deg);
  transition: transform 200ms;
}
@media (max-width: 640px) {
  .contact_area .faq_list__item__label::after {
    right: 15px;
    top: 25px;
    width: 10px;
    height: 10px;
  }
}
.contact_area .faq_list__item__label.is-open::after {
  transform: translateY(-25%) rotate(135deg);
}
@media (max-width: 640px) {
  .contact_area .faq_list__item__label {
    padding: 12px 20px;
    min-height: 60px;
    font-size: 4vw;
  }
}
.contact_area .faq_sublist {
  display: none;
}
.contact_area .faq_sublist__item {
  border-bottom: 1px solid #000;
  padding-bottom: 0;
  transition: padding-bottom 200ms;
}
.contact_area .faq_sublist__item.is-open {
  padding-bottom: min(30px, 3vw);
}
.contact_area .faq_sublist__item__label {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  min-height: 80px;
  padding: 8px 40px 8px 80px;
  position: relative;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.1em;
  width: 100%;
  text-align: left;
}
.contact_area .faq_sublist__item__label::before {
  content: "";
  width: 30px;
  height: 30px;
  position: absolute;
  left: 30px;
  background-image: url("../img/contact/faq_q.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
@media (max-width: 640px) {
  .contact_area .faq_sublist__item__label::before {
    width: 24px;
    height: 24px;
    left: 15px;
  }
}
.contact_area .faq_sublist__item__label::after {
  content: "";
  display: block;
  position: absolute;
  right: 30px;
  top: 30px;
  width: 16px;
  height: 16px;
  border-style: solid;
  border-width: 2px 2px 0 0;
  border-color: #000;
  transform: rotate(45deg);
  transition: transform 200ms;
}
@media (max-width: 640px) {
  .contact_area .faq_sublist__item__label::after {
    right: 15px;
    top: 25px;
    width: 10px;
    height: 10px;
  }
}
.contact_area .faq_sublist__item__label.is-open::after {
  transform: translateY(-25%) rotate(135deg);
}
@media (any-hover: hover) {
  .contact_area .faq_sublist__item__label {
    transition: opacity 200ms;
  }
  .contact_area .faq_sublist__item__label:hover {
    opacity: 0.6;
  }
}
@media (max-width: 640px) {
  .contact_area .faq_sublist__item__label {
    padding: 12px 30px 12px 50px;
    min-height: 60px;
    font-size: 4vw;
  }
}
.contact_area .faq_sublist__item__content {
  display: none;
  position: relative;
  padding: 24px 40px 24px 80px;
  background-color: #dbcb9f;
}
.contact_area .faq_sublist__item__content::before {
  content: "";
  width: 30px;
  height: 30px;
  position: absolute;
  left: 30px;
  background-image: url("../img/contact/faq_a.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
@media (max-width: 640px) {
  .contact_area .faq_sublist__item__content::before {
    width: 24px;
    height: 24px;
    left: 15px;
  }
}
@media (max-width: 640px) {
  .contact_area .faq_sublist__item__content {
    padding: 16px 30px 16px 50px;
  }
}
.contact_area .faq_sublist__item__content .ttl {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 1em;
  color: #000;
}
@media (max-width: 640px) {
  .contact_area .faq_sublist__item__content .ttl {
    font-size: 4vw;
  }
}
.contact_area .faq_sublist__item__content p {
  font-size: 14px;
  letter-spacing: 0.05em;
  font-weight: 700;
  line-height: 1.7;
  color: #000;
}
@media (max-width: 640px) {
  .contact_area .faq_sublist__item__content p {
    font-size: 3.4vw;
  }
}/*# sourceMappingURL=faq.css.map */