.faq_section_container{
  padding: 40px 0 0 0;
}
@media screen and (min-width: 920px) {
  .faq_section_container{
    padding: 65px 0 30px 0;
  }
}
.faq_section_nav {
  width: 100%;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 auto 20px;
  justify-content: flex-start;
}
@media screen and (min-width: 920px) {
  .faq_section_nav {
    gap: 20px;
    margin: 0 auto 50px;
  }
}

.faq_section_nav_link {
  width: calc((100% - 8px) / 2);
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6px 0 10px;
  border-radius: 4px;
  background-color: #F4F4F4;
  transition: all 0.3s cubic-bezier(0.18, 0.06, 0.23, 1);
}
@media screen and (min-width: 920px) {
  .faq_section_nav_link {
    width: calc((100% - 40px) / 3);
    padding: 0 10px 0 15px;
    height: 64px;
    border-radius: 8px;
  }
}

.faq_section_nav_link:hover {
  background-color: #1CC1CF;
  color: #ffffff;
}

.faq_section_nav_link_text {
  font-weight: 700;
  line-height: 1.3;
  font-size: 12px;
}
@media screen and (min-width: 920px) {
  .faq_section_nav_link_text {
    font-size: 16px;
    line-height: 1;
  }
}
.faq_section_nav_link_icon {
  width: 15px;
  height: 15px;
  position: relative;
}
.faq_section_nav_link_icon::before {
  content: "";
  display: block;
  position: absolute;
  top: 40%;
  left: 50%;
  width: 7px;
  height: 7px;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  transform: translate(-50%, -50%) rotate(135deg);
  transition: all 0.3s cubic-bezier(0.18, 0.06, 0.23, 1);
}
@media screen and (min-width: 920px) {
  .faq_section_nav_link_icon {
    width: 24px;
    height: 24px;
  }
  .faq_section_nav_link_icon::before {
    top: 40%;
    left: 50%;
    width: 12px;
    height: 12px;
  }
}

.faq_section_nav_link:hover .faq_section_nav_link_icon::before {
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
}

.faq_section_contents {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 60px;
}
@media screen and (min-width: 920px) {
  .faq_section_contents {
    gap: 40px;
    padding-top: 80px;
  }
}

.faq_section_contents_title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}
@media screen and (min-width: 920px) {
  .faq_section_contents_title {
    font-size: 26px;
  }
}

.faq_section_contents_list {
  border-top: 1px solid #021530;
}

.js-details {
  border-bottom: 1px solid #021530;
}

summary.js-summary {
  display: block;
}

summary::-webkit-details-marker {
  display: none;
}

.summary_inner{
  cursor: pointer;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  padding: 15px 5px 15px 5px;
}
@media screen and (min-width: 920px) {
  .summary_inner{
    padding: 20px 15px 20px 15px;
  }
}

.question_content {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  gap: 8px;
}
@media screen and (min-width: 920px) {
  .question_content {
    gap: 12px;
  }
}

.question_content_icon {
  width: 20px;
  height: 20px;
  flex: 0 1 20px;
}
@media screen and (min-width: 920px) {
  .question_content_icon {
    width: 28px;
    height: 28px;
    flex: 0 1 28px;
  }
}

.question_content_icon img {
  width: 100%;
  height: 100%;
}

.question_content_text {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  width: calc(100% - 28px);
}
@media screen and (min-width: 920px) {
  .question_content_text {
    font-size: 17px;
    width: calc(100% - 40px);

  }
}

.modal_mark {
  display: flex;
  position: relative;
  width: 10px;
  height: 10px;
  flex-shrink: 0;
}
@media screen and (min-width: 920px) {
  .modal_mark {
    width: 14px;
    height: 14px;
  }
}

.modal_mark::before,
.modal_mark::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 1px;
  background: #05080D;
  transition: all 0.3s cubic-bezier(0.18, 0.06, 0.23, 1);
  top: 5px;
  transform: translateY(-50%);
}
@media screen and (min-width: 920px) {
  .modal_mark::before,
  .modal_mark::after {
    width: 14px;
  }
}

.modal_mark::before {
  rotate: 90deg;
  transition: all 0.3s cubic-bezier(0.18, 0.06, 0.23, 1);
}

.modal_mark::after {
  transition: all 0.3s cubic-bezier(0.18, 0.06, 0.23, 1);
}

/* is-openedクラスが付与されたときのスタイル */
details.is-opened .modal_mark::before {
  transform: rotate(90deg);
}

.content {
  overflow: hidden;
}

.content_inner {
  padding: 0 8px 20px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
@media screen and (min-width: 920px) {
  .content_inner {
    padding: 0 15px 20px 15px;
    gap: 12px;
    align-items: center;
  }
}

.answer_content_align {
  align-items: flex-start;
}

.answer_content_icon {
  width: 20px;
  height: 20px;
  flex: 0 1 20px;
}
@media screen and (min-width: 920px) {
  .answer_content_icon {
    width: 28px;
    height: 28px;
    flex: 0 1 28px;
  }
}

.answer_content_icon img {
  width: 100%;
  height: 100%;
}

.answer_content a {
  color: #1CC1CF;
}
.answer_content p {
  width: calc(100% - 40px);
}

.answer_content .stream_line {
  background-image: linear-gradient(to right, #1CC1CF, #1CC1CF);
}

.answer_content_wrap {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
}

.answer_content_wrap p {
  font-size: 15px;
  flex: 0 1 auto;
}

.bank_info {
  width: 100%;
  height: auto;
  max-width: 484px;
  display: flex;
  flex-direction: column;
  padding: 16px;
  background: #F4F4F4;
  border-radius: 8px;
  margin-top: 8px;
}
@media screen and (min-width: 920px) {
  .bank_info {
    padding: 20px 24px;
  }
}

.bank_info_title {
  font-family: Inter sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 12px;
}
@media screen and (min-width: 920px) {
  .bank_info_title {
    font-size: 16px;
  }
}

.bank_info_list {
  list-style: none !important;
  padding-left: 0 !important;
  margin: 0 0 12px !important;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media screen and (min-width: 600px) {
  .bank_info_list {
    gap: 0;
  }
}

.bank_info_list li {
  display: flex;
  flex-direction: column;
  font-weight: 400 !important;
  line-height: 1.75 !important;
}
@media screen and (min-width: 600px) {
  .bank_info_list li {
    flex-direction: row;
  }
}

.bank_info_list li small {
  display: none;
  line-height: 1.75;
}
@media screen and (min-width: 600px) {
  .bank_info_list li small {
    display: inline;
    line-height: 2;
  }
}

@media screen and (min-width: 600px) {
  .bank_info_list_title {
    flex: 0 1 68px;
    text-align: justify;
    text-align-last: justify;
    margin-right: 6px;
    line-height: 1.75;
  }
}

.bank_info_notes {
  font-family: Inter sans-serif;
  font-size: 11px;
  font-weight: 400 !important;
  line-height: 1.25;
}
@media screen and (min-width: 920px) {
  .bank_info_notes {
    font-size: 12px;
  }
}


