.title_faq {
  font-size: 42px;
  line-height: 50px;
  font-weight: 700;
  color: #000;
  text-align: center;
  padding: 40px 0;
}


#faq .nav_container .nav{
  padding: 0px 0px 40px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
#faq .nav_container .nav .btn {
  position: relative; 
  width: min(100%, 150px);
  padding: 10px 0;
  transition: all ease-out 0.3s;
  cursor: pointer;
  border: none; 
}
#faq .nav_container .nav .btn:before {
  content: "";
  top: 25%;
  left: 0;
  position: absolute;
  width: 1px;
  height: 50%;
  background: rgba(0, 0, 0, 0.2);
}
#faq .nav_container .nav .btn:last-child:after {
  content: "";
  top: 25%;
  right: 0;
  position: absolute;
  width: 1px;
  height: 50%;
  background: rgba(0, 0, 0, 0.2);
}

#faq .nav_container .nav .btn .title {
  text-align: center;
  font-size: var(--font-size-title-pc);
  color: var(--color-dark);
  letter-spacing: -1px;
  transition: all ease-out 0.3s;
}
#faq .nav_container .nav .btn.active .title {
 color: #e68a9b;
}
#faq .nav_container .nav .btn.on{
  cursor: default;
}

#faq {
  font-family: var(--font-sp1) !important;
  padding-bottom: 100px;
}
#faq ol {
  /*list-style: decimal;*/
  padding-left: 28px;
}
#faq ol li {
  margin: 5px 0;
}
#faq ul.none {
  display: none;
}

#faq div.category_02 {
  font-size: 16px;
  color: var(--color-dark);
  font-weight: 500;
  padding: 20px 20px;
  line-height: 28px;
  border-bottom: 1px solid #d5d6d6;
  background: #fff;
  cursor: pointer;
}
#faq li.category_03 {
  font-size: 14px;
  color: #898989;
  font-weight: 100;
  padding: 20px 20px;
  line-height: 24px;
  border-bottom: 1px solid #d5d6d6;
  background: #fff;
}
#faq li.category_03 strong {
  font-size: 15px;
  font-weight: 600;
}
#faq li.category_03 div {
  text-align: center;
}

#faq li.category_03 p {
    color: #757575;
    font-weight: 500;
}

#faq span.arrow {
  display: inline-block;
 color: #e68a9b;
  transform: rotate(0deg);
}
#faq span.arrow.on {
  transform: rotate(90deg);
}

#faq ul,
#faq li {
    list-style: none;
}