@charset "UTF-8";
/* 下層：よくあるご質問*/
section.faq a {
  text-decoration: underline;
}

section.faq a:hover {
  text-decoration: none;
}

section.faq h3 {
  font-size: 1.2rem;
  font-weight: bold;
  padding: 2rem 1rem;
  text-align: center;
}

section.faq .tab-switch-wrap {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  gap: 0 0.5rem;
}

section.faq .tab-switch-wrap:after {
  content: "";
  width: 100%;
  height: 0;
  border-bottom: 1px solid #fff;
  display: block;
  order: -1;
}

section.faq .tab-label {
  color: #fff;
  text-align: center;
  padding: 1em 0.5em;
  border: 1px solid #fff;
  border-bottom: none;
  position: relative;
  cursor: pointer;
  flex: 1;
  z-index: 1;
  order: -1;
}

@media (max-width: 767px) {
  section.faq .tab-switch-wrap {
    gap: 0.5rem;
  }
  section.faq .tab-switch-wrap:after {
    border-bottom: none;
  }
  section.faq .tab-label {
    border: 1px solid #fff;
  }
}
section.faq .tab-content {
  width: 100%;
  height: 0;
  overflow: hidden;
  opacity: 0;
  word-wrap: break-word;
}

section.faq .selected-tab {
  background: #fff;
  color: #000;
}

section.faq .selected-tab-content {
  height: auto;
  overflow: auto;
  padding: 50px;
  opacity: 1;
  transition: 0.5s opacity;
}

@media (max-width: 767px) {
  section.faq .selected-tab-content {
    padding: 50px 0;
  }
}
section.faq .tab-switch {
  display: none;
}

section.faq .faq_anc {
  margin: 0 0 50px;
  display: flex;
  flex-flow: row wrap;
  flex-grow: 1;
}

section.faq .faq_anc a {
  padding: 10px;
  display: block;
}

section.faq .faq_anc a::before {
  content: "▼";
}

/* FAQ */
section.faq .faq_list .faq_item details {
  margin-bottom: 1rem;
  border: 1px solid #fff;
}

section.faq .faq_list .faq_item details summary {
  cursor: pointer;
  display: block;
  font-size: 1.1em;
  font-weight: bold;
  padding: 1rem 1.5rem 1rem 1rem;
  position: relative;
  background-color: #fff;
  color: #000;
  list-style: none;
}

section.faq .faq_list .faq_item details summary::after {
  content: "▲";
  margin-left: 0.5rem;
  transition: all 0.3s;
  position: absolute;
  top: 50%;
  right: 0.5rem;
  line-height: 1;
  letter-spacing: 0;
  transform: translateY(-50%) rotate(90deg);
}

section.faq .faq_list .faq_item details summary::-webkit-details-marker {
  display: none;
}

section.faq .faq_list .faq_item details[open] summary::after {
  transform-origin: 45% 30%;
  transform: rotate(180deg);
}

section.faq .faq_list .faq_item details .faq_answer {
  padding: 1rem;
}

section.faq .faq_list .faq_item details .faq_answer small {
  font-size: 0.75em;
}

section.faq .faq_list .faq_item details .faq_answer ul {
  list-style-position: inside;
}

section.faq .faq_list .faq_item details .faq_answer ul li {
  list-style-type: disc;
  text-indent: -1.4em;
  padding-left: 1.4em;
  margin-bottom: 1rem;
}/*# sourceMappingURL=faq.css.map */