@charset "UTF-8";
/* ==========================================================================//
//
// よくある質問
//
// ========================================================================== */
.page_body {
  padding: 40px 0;
}
@media all and (min-width: 751px) {
  .page_body {
    padding: 80px 0;
  }
}

section {
  --color: #3B97D4;
}
section:not(:last-child) {
  margin-bottom: 40px;
}
@media all and (min-width: 751px) {
  section:not(:last-child) {
    margin-bottom: 60px;
  }
}
section .sec_ttl {
  position: relative;
  text-align: center;
  margin-bottom: 20px;
}
@media all and (max-width: 750px) {
  section .sec_ttl {
    background-image: radial-gradient(circle, var(--color) 2.5px, transparent 2.5px);
    background-size: 8px 5px;
    background-repeat: space no-repeat;
    background-position: left bottom;
    padding-bottom: 14px;
  }
}
@media all and (min-width: 751px) {
  section .sec_ttl {
    max-width: 800px;
    margin-inline: auto;
    margin-bottom: 40px;
  }
  section .sec_ttl::before, section .sec_ttl::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 26%;
    height: 5px;
    background-image: radial-gradient(circle, var(--color) 2.5px, transparent 2.5px);
    background-size: 8px 5px;
    background-position: left center;
    background-repeat: space no-repeat;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  section .sec_ttl::before {
    left: 0;
  }
  section .sec_ttl::after {
    right: 0;
  }
}
section .sec_ttl .en {
  font-family: "Hind", sans-serif;
  font-style: normal;
  font-weight: bold;
  -webkit-text-stroke: 1px var(--color);
  font-size: 30px;
  letter-spacing: 0.1em;
  line-height: 1;
  color: #fff;
}
@media all and (min-width: 751px) {
  section .sec_ttl .en {
    -webkit-text-stroke: 1.5px var(--color);
    font-size: 42px;
  }
}
section .sec_ttl .jp {
  font-weight: bold;
  letter-spacing: 0.1em;
  font-size: 14px;
}
@media all and (min-width: 751px) {
  section .sec_ttl .jp {
    font-size: 26px;
  }
}
section .container {
  background-color: #fff;
  border: 1.5px solid var(--color);
  border-bottom-left-radius: 30px;
  padding: 20px 15px;
}
@media all and (min-width: 751px) {
  section .container {
    border-width: 2px;
    border-bottom-left-radius: 60px;
    padding: 60px;
  }
}
section .faq_item {
  position: relative;
  border-bottom: 1px solid #d6d5d5;
}
section .faq_item::before {
  position: absolute;
  content: "";
  bottom: -1px;
  left: 0;
  width: 80px;
  height: 1px;
  background-color: #3B97D4;
}
@media all and (min-width: 751px) {
  section .faq_item::before {
    width: 135px;
  }
}
section .faq_item:first-child {
  border-top: 1px solid #d6d5d5;
}
section .faq_item:first-child::after {
  position: absolute;
  content: "";
  top: -1px;
  left: 0;
  width: 80px;
  height: 1px;
  background-color: #3B97D4;
}
@media all and (min-width: 751px) {
  section .faq_item:first-child::after {
    width: 135px;
  }
}
section .faq_details[open] .faq_summary::before {
  background-image: url(../../images/faq/minus.svg);
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}
section .faq_summary {
  position: relative;
  cursor: pointer;
  list-style: none;
  padding: 20px 0;
}
section .faq_summary::-webkit-details-marker {
  display: none;
}
@media all and (min-width: 751px) {
  section .faq_summary {
    padding: 28px 0;
  }
}
section .faq_summary::before {
  position: absolute;
  content: "";
  background-image: url(../../images/faq/plus.svg);
  background-size: contain;
  background-repeat: no-repeat;
  aspect-ratio: 1;
  width: 24px;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media all and (min-width: 751px) {
  section .faq_summary::before {
    width: 40px;
  }
}
section .faq_ttl {
  position: relative;
  font-weight: 500;
  letter-spacing: 0.075em;
  font-size: 14px;
  padding: 0 25px;
}
@media all and (min-width: 751px) {
  section .faq_ttl {
    font-size: 18px;
    padding: 0 50px 0 30px;
  }
}
section .faq_ttl::before {
  position: absolute;
  content: "Q.";
  top: -3px;
  left: 0;
  font-weight: 500;
  color: #3B97D4;
  font-size: 16px;
}
@media all and (min-width: 751px) {
  section .faq_ttl::before {
    font-size: 20px;
  }
}
section .faq_content {
  overflow: hidden;
}
section .faq_content_inner {
  position: relative;
  padding: 0 0 20px 25px;
}
@media all and (min-width: 751px) {
  section .faq_content_inner {
    padding: 0 0 28px 30px;
  }
}
section .faq_content_inner::before {
  position: absolute;
  content: "A.";
  top: -2px;
  left: 0;
  font-weight: 500;
  color: #3B97D4;
  font-size: 16px;
}
@media all and (min-width: 751px) {
  section .faq_content_inner::before {
    font-size: 20px;
  }
}
section .faq_content_inner p {
  letter-spacing: 0.05em;
  line-height: 1.6;
}
@media all and (min-width: 751px) {
  section .faq_content_inner p {
    line-height: 2;
  }
}
section .faq_content_inner p:not(:last-child) {
  margin-bottom: 1.5em;
}
section .faq_content_inner p a {
  color: #3B97D4;
}