.faq .content_wrap{
	margin: 0 auto;
	width: 98%;
	max-width: 1100px;
}

.faq .page_title{
	margin-bottom: 40px;
	position: relative;
	width: 100%;
	padding: 40px 0 20px;
}

.faq .page_title::after{
	position: absolute;
	content: "";
	width: 100%;
	height: 5px;
	bottom: 0;
	left: 0;
	background-color: #009bdb;
	opacity: 0.2;
}
.faq .head_title {
    font-size: 35px;
}
.faq .faq_title{
	padding: 5px 0 5px 20px;
	margin-bottom: 20px;
	border-radius: 5px;
}
.faq .faq_subtitle{
	border-bottom:1.5px solid #009bdb;
	margin: 3% 0 1%;
}

.faq .faq_text{
	margin: 0 auto 40px auto;
}

.faq .faq_table{
	margin-bottom: 80px;
	counter-reset: count 0;
}

.faq .faq_list{
	/* width: 80%; */
	margin: 0 auto 40px auto;
}

.faq .faq_list details{
	width: 100%;
	margin-bottom: 10px;
}

.faq .faq_list details summary{
	display: block;
	list-style: none;
	font-weight: 700;
	color: #009bdb;
	cursor: pointer;
    position: relative;
	padding-left: 1em;
}

.faq .faq_list details summary::before, 
.faq .faq_list details summary::after {
        content: '';
        position: absolute;
        width: 8px;
        height: 2px;
        border-radius: 50px;
        background-color: #009bdb;
        left: 0;
        top: 50%;
        transition: 0.3s;
        transform-origin: calc(100% - 1px) 50%;
    }

.faq .faq_list details summary::before {
    transform: rotate(45deg);
}
.faq .faq_list details summary::after {
    transform: rotate(-45deg);
}

summary::-webkit-details-marker {
  display:none;
}
 
.faq .faq_list details[open] summary::before {
  transform: rotate(135deg);
}
.faq .faq_list details[open] summary::after {
    transform: rotate(45deg);
}

.faq .faq_list details p{
	margin-bottom: 40px;
}

.faq .faq_list details p:last-of-type{
	margin-bottom: 0;
}

.faq .faq_list details dl{
	margin-top: 10px;
	margin-bottom: 15px;
}

.faq .details_wrap{
	position: relative;
	width: 100%;
	padding-left: 5%;
}

.faq .details_wrap::before{
	position: absolute;
	content: "";
	width: 1px;
	height: 98%;
	background-color: #009bdb;
	top: 50%;
	transform: translateY(-50%);
	left: 3.5%;
	opacity: 0.5;
}

.faq .details_text_wrap{
	margin: 10px auto 40px auto;
	width: 100%;
	border-radius: 20px;
	padding: 30px;
	background-color: #F0FAFF;
	word-break: break-all;
}
.faq .contact_wrap{
	background:#F0FAFF;
	width: 600px;
	display: block;
	margin: 0 auto 5%;
	padding: 0 0 2%;
}
.faq .contact_tel_wrap{
	margin: 0 0 3%;
}
.faq .contact_subtitle{
	margin: 2% 0 1% 0;
}
.faq .contact_mail_btn{
	display:block;
	margin:3% auto;
	width: 50%;
	padding: 1.5% 0;
	border-radius:5px;
}
.faq .contact_mail_btn:hover{
	color:#fff600;
}
.faq .pc_none{
	display: none;
}