.title_faq {
  font-size: 42px;
  line-height: 50px;
  font-weight: 700;
  color: #000;
  text-align: center;
  padding: 40px 0;
}

.list_faq {padding:0 15px;}

#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%, 200px);
  padding: 10px 0;
  transition: all ease-out 0.3s;
  cursor: pointer;
  border: none; 
}
#faq .nav_container .nav .btn:before {
  content: "";
  top: 10%;
  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: 10%;
  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);
  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 ul.none {
  display: none;
}

#faq div.category_02 {
  font-size: 16px;
  color: var(--color-dark);
  font-weight: 500;
  padding: 20px 20px;
  line-height: 1.4;
  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 li.category_03 ol * {
  font-weight: 400 !important;
} 

#faq span.arrow {
	display: inline-block;
	color: #e68a9b;
	font-size:10px;
	transform: rotate(0deg);
}
#faq span.arrow.on {
  transform: rotate(90deg);
}

#faq ul,
#faq li {
    list-style: none;
}

.con1200 {
    width: 1200px;
    margin: 0 auto;
}

@media screen and (max-width: 850px) {

    .title_faq {
    font-size: 7vw;
    line-height: 50px;
    font-weight: 700;
    color: #000;
    text-align: center;
    padding: 40px 0;
    }


    #faq .nav_container .nav{
    padding: 0px 0 4vw 2vw;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 1vw;
    }
    #faq .nav_container .nav .btn {
    position: relative; 
    width: min(100%, 31vw);
    padding: 1.2vw;
    transition: all ease-out 0.3s;
    cursor: pointer;
    border: 1px solid #eee;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    }
    #faq .nav_container .nav .btn:before {
    display: none;
    }

    #faq .nav_container .nav .btn:last-child:after {
        display: none;
    }

    #faq .nav_container .nav .btn .title {
    text-align: center;
    font-size: 0.8rem;
    color: var(--color-dark);
    transition: all ease-out 0.3s;
    }
    #faq .nav_container .nav .btn.active .title {
    color: #e68a9b;
    }
    #faq .nav_container .nav .btn.on{
    cursor: default;
	border-color: #e68a9b;
    }

    #faq {
    font-family: var(--font-sp1) !important;
    padding-bottom: 7vw;
    }

    #faq ul.none {
    display: none;
    }

    #faq div.category_02 {
    font-size: 0.8rem;
    color: var(--color-dark);
    font-weight: 500;
    padding: 3vw 2vw;
    border-bottom: 1px solid #d5d6d6;
    background: #fff;
    cursor: pointer;
    }
    #faq li.category_03 {
    font-size: 0.7rem;
    color: #898989;
    font-weight: 100;
    padding: 3vw 2vw 2vw;
    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;
    }
    .con1200 {
        width: 100%;
        max-width: 850px;
        margin: 0 auto;
    }
}