@charset "UTF-8";

.section .faqTabContents {
  display: none;
}
.section .faqTabContents.on {
  display: block;
}
.section .faqTabList {
  text-align: center;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: -10px 0 40px;
}
@media screen and (max-width: 1019px){
  .section .faqTabList {
    margin: -15px 0 30px;
    justify-content: flex-start;
  }
}
.section .faqTabList li {
  display: block;
  /*width: calc((100% - 40px) / 3);*/
  width: calc((99% - 40px) / 3);
  margin-right: 20px;
  color: #a1a2a4;
  padding: 0;
}
.section .faqTabList li:last-child {
	margin-right: 0;
}
@media screen and (max-width: 1019px){
  .section .faqTabList li {
    width: 49%;
    margin-bottom: 2%;
    margin-right: 2%;
  }
  .section .faqTabList li:nth-child(even) {
    margin-right: 0;
  }
  .section .faqTabList li:last-child {
    width: 100%;
    margin-bottom: 0;
  }
}
.section .faqTabList li::before {
  padding: 0;
  border: none;
  top: 0;
}
.section .faqTabList li span {
  cursor: pointer;
  padding: 10px 20px;
  box-sizing: border-box;
  border: 1px solid #65686C;
  position: relative;
  display: block;
}
@media screen and (max-width: 1019px){

}
.section .faqTabList li span:hover {
  color: #2b3034;
}
.section .faqTabList li span.on {
  background: #65686C;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  cursor: inherit;
}
.section .faqTabList li span.on::after {
  content: "";
  background: #65686C;
  width: 10px;
  height: 10px;
  left: 0;
  bottom: -6px;
  right: 0;
  transform: rotate(45deg);
  margin: 0 auto;
  position: absolute;
}
@media screen and (max-width: 1019px){
  .section .faqTabList li span.on::after {
    display: none;
  }
}

.anchorNavList{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.anchorNavitem{
  flex: 1;
  padding: 0 !important;
  &::before{
    display: none;
  }
}
div.section a.anchorNavLink{
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  border: 1px solid #2b3034;
  color: #2b3034;
  text-decoration: none;
}
@media (min-width: 769px){
  div.section a.anchorNavLink:hover{
    background-color: #65686C;
    color: #ffffff;
    font-weight: bold;
  }
}
@media (max-width: 1020px){
  .anchorNavList{
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  div.section a.anchorNavLink{
    height: 45px;
  }
}

.faqWrap{
  padding-top: 20px;
}
.faqWrapHeading{
  font-size: 20px;
  font-weight: bold;
}
.accordion {
  margin: 5px 0;
  background: #fff;
}
.faqTerm,
.faqDescription {
  position: relative;
  padding: 15px 80px;
  font-size: 20px;
}
@media (min-width: 1020px) and (max-width: 1410px){
  .faqWrap{
    padding-top: 60px;
    margin-top: -40px;
  }
}
@media screen and (max-width: 1019px){
  .faqWrapHeading{
    font-size: 18px;
  }
  .faqTerm,
  .faqDescription {
    padding: 10px 50px;
    font-size: 18px;
  }
  .faqTerm{
    line-height: 1.2;
  }
}
.faqTerm span.accordion_ttl_q,
.faqDescription span.accordion_ttl_a {
  position: absolute;
  left: 40px;
  top: -4px;
  bottom: 0;
  margin: auto;
  height: 20px;
  line-height: 20px;
  color: #2BADBD;
  font-size: 20px;
}
@media screen and (max-width: 1019px){
  .faqTerm span.accordion_ttl_q,
  .faqDescription span.accordion_ttl_a {
    left: 20px;
    top: 10px;
    bottom: auto;
  }
  .faqDescription span.accordion_ttl_a {
    top: 13px;
  }
}
.faqTerm::before, .faqTerm::after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 32px;
  background: #65686C;
  width: 15px;
  height: 1px;
  margin: auto;
}
@media screen and (max-width: 1019px){
  .faqTerm::before, .faqTerm::after {
    right: 15px;
    top: 20px;
    bottom: auto;
  }
}
.faqTerm::after {
  right: 39px;
  height: 15px;
  width: 1px;
}
@media screen and (max-width: 1019px){
  .faqTerm::after {
    right: 22px;
    top: 13px;
  }
}
.faqTerm.active:after {
  opacity: 0;
}
.faqTerm {
  cursor: pointer;
}
.faqDescription {
  display: none;
  font-size: 14px;
  border-top: 1px solid #F2F2F5
}
.faqDescription span.accordion_ttl_a {
  color: #65686C;
}
