@charset "UTF-8";
/*	タイトル
--------------------------------------------------------- */
/*	リード
--------------------------------------------------------- */
/* ---------------------------------------------------------

	LAYOUT

--------------------------------------------------------- */
.layout_section_content {
  padding: 0px;
}

.tab.is-current {
  font-weight: bold;
  color: #007bff;
}

.content {
  display: none;
}

.content.is-current {
  display: block;
}

.highlights_menu {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 24px;
  font-size: 2rem;
  max-width: 504px;
  margin: auto;
  margin-bottom: 30px;
}
.highlights_menu .highlights_menu_item {
  background-color: var(--color-primary-white);
  color: var(--color-primary-default);
  outline: 2px solid var(--color-primary-default);
  outline-offset: -2px;
  border-radius: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 0;
  font-weight: 700;
  transition: 0.2s;
}
.highlights_menu .highlights_menu_item:hover {
  background-color: var(--color-primary-default);
  color: var(--color-primary-white);
  opacity: 1;
}
.highlights_menu .highlights_menu_item.is-current {
  background-color: var(--color-primary-default);
  color: var(--color-primary-white);
}

.highlights_menu--area {
  display: flex;
  justify-content: space-between;
  font-size: 1.8rem;
  max-width: 504px;
  margin: auto;
}
.highlights_menu--area .highlights_menu--area_item a {
  background-color: var(--color-primary-white);
  color: var(--color-text-default);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 8px 4px 8px;
  font-weight: 700;
}
.highlights_menu--area .highlights_menu--area_item a:hover {
  border-bottom: 3px solid var(--color-primary-default);
}
.highlights_menu--area .highlights_menu--area_item.is-current a {
  border-bottom: 3px solid var(--color-primary-default);
}

.faq_wrap {
  margin-bottom: 30px;
}

.faq .ac_Q_wrap {
  display: flex;
  align-items: center;
  padding: 30px 60px 30px 30px;
}
.faq .question {
  background-color: var(--color-primary-default);
  width: 40px;
  min-width: 40px;
  height: 40px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary-white);
  font-weight: 900;
  font-size: 2rem;
}
.faq .question span {
  line-height: 1;
  position: relative;
  top: -2px;
}
.faq .ac_Q {
  font-size: 1.6rem;
  font-weight: 500;
  padding: 0 30px;
}
.faq .sub_A_wrap {
  display: flex;
  align-items: center;
  border-top: 1px solid var(--color-gray-line);
  padding: 30px 0;
  margin: 0 30px;
}
.faq .sub_A_wrap.answer--start {
  align-items: start;
}
.faq .answer {
  background-color: var(--color-secondary-default);
  width: 40px;
  min-width: 40px;
  height: 40px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary-white);
  font-weight: 900;
  font-size: 2rem;
}
.faq .answer span {
  line-height: 1;
  position: relative;
  top: -1px;
}
.faq .ac_A_wrap p a {
  text-decoration: underline;
}
.faq .ac_A_wrap p + p {
  padding-top: 1em;
}
.faq .ac_A {
  padding: 0 0 0 30px;
}
.faq .ac_A dl{
  display: flex;
}
.faq .ac_A dt{
  min-width: 9rem;
}
ul.indent {
  padding-left: 2rem;
}
ul.indent li {
  list-style: disc;
}
.faq .ac {
  cursor: pointer;
  position: relative;
}
.faq .ac::before {
  position: absolute;
  content: "";
  display: block;
  transition: all 0.4s;
  background: var(--color-blue-default-h);
  right: 30px;
  top: 50%;
  width: 30px;
  height: 4px;
  transform: translate(0%, -50%) rotate(90deg);
}
.faq .ac::after {
  position: absolute;
  content: "";
  display: block;
  transition: all 0.4s;
  background: var(--color-blue-default-h);
  right: 30px;
  top: 50%;
  width: 30px;
  height: 4px;
  transform: translate(0%, -50%);
}
.faq .ac.close::before {
  transform: translate(0%, -50%) rotate(0deg);
}
.faq .sub {
  list-style: none;
  padding: 0;
  margin: 0;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.3s ease, opacity 0.3s ease;
  position: relative;
  box-shadow: none;
}
.faq .sub.show {
  max-height: 500px;
  opacity: 1;
  display: inline;
}
.faq .sub > li {
  padding-left: 1em;
  border-top: 1px solid var(--color-gray-line);
}
.faq .sub > li a {
  padding: 16px 0;
}
.faq .sub .sub_item_text {
  position: relative;
  padding-left: 24px;
}
.faq .sub .sub_item_text::before {
  position: absolute;
  content: "";
  display: block;
  transition: all 0.4s;
  background: var(--color-blue-default-h);
  left: 0;
  top: 50%;
  width: 14px;
  height: 2px;
  transform: translateY(-50%);
}

@media (width <= 768px) {
  .faq_wrap {
    margin-bottom: 20px;
  }
  .faq .ac_Q_wrap {
    padding: 20px 50px 20px 20px;
  }
  .faq .ac::before, .faq .ac::after {
    right: 20px;
  }
  .faq .ac_Q {
    padding: 0 20px;
    font-size: 1.4rem;
  }
  .faq .ac_A {
    padding: 0 0 0 20px;
  }
  .faq .sub_A_wrap {
    padding: 20px 0;
    margin: 0 20px;
  }
}/*# sourceMappingURL=faq.css.map */
