@charset "utf-8";

/*    faq_list
-------------------------------------------------------------- */
.faq_list{
	width: 880px;
	border-top: 1px solid #b6d1cc;
	border-top: 1px solid #ddd;
	margin: 30px auto 50px;
}
.faq_list > li{
	border-bottom: 1px solid #b6d1cc;
	border-bottom: 1px solid #ddd;
}

.faq_q{
	padding: 30px 35px;
    position: relative;
    cursor: pointer;
}
.faq_q h3{
	font-size: 1.8rem;
	line-height: 1.5;
	font-weight: 400;
}

.faq_a{
	display: none;
	line-height: 1.7;
	position: relative;
	padding: 0 35px 30px;
}
.faq_a .btn_more{
    line-height: 1;
}

.faq_q::before{
	content: 'Q';
	display: block;
	color: #00A95F;
	font: 400 2rem / 1 'Lato', sans-serif;
	position: absolute;
	top: 31px;
	left: 0;
}

.faq_a::before{
	content: 'A';
	display: block;
	color: #ff765e;
	font: 400 2rem / 1 'Lato', sans-serif;
	position: absolute;
	top: 2px;
	left: 0;
}

/* faq_describe_area */
.faq_describe_area{
	position: absolute;
	top: 15px;
	right: 0;
}

.faq_describe_area button{
	display: inline-block;
	width: 30px;
    height: 30px;
    color: #fff;
	font-weight: bold;
    font-size: 1.6rem;
	text-align: center;
	line-height: 30px;
    background: #89b7ac;
	border: none;
	outline: none;
    border-radius: 50%;
    box-shadow: none;
	padding: 0;
	cursor: pointer;
}

.faq_describe {
    display: none;
    width: 400px;
    color: #fff;
	line-height: 1.7;
    background: #444;
    border-radius: 10px;
    padding: 10px;
    position: absolute;
    top: -140px;
    left: 1px;
}
.faq_describe::before{
	content: "";
    border-style: solid;
    border-color: #444 transparent transparent transparent;
    border-width: 10px 5px 0 5px;
    position: absolute;
    bottom: -10px;
    left: 9px;
}

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

	.faq_list{
		width: 100%;
		font-size: 4vw;
		margin: 25px 0;
	}

	.faq_q{
		padding: 20px 30px 20px 30px;
	}
	.faq_q h3{
		font-size: 4.26vw;
	}

	.faq_a{
		padding: 0 30px 20px 30px;
	}
    .faq_a .btn_more{
		margin: 10px auto 0;
	}
    
	.faq_q::before{
		font-size: 4.8vw;
		top: 21px;
		/*
		top: calc(50% - 12px);
		*/
	}

	.faq_a::before{
		font-size: 4.8vw;
	}
	
	/* faq_describe_area */
	.faq_describe_area{
		top: 50px;
		right: 20px;
	}

	.faq_describe {
		width: calc(100vw - 40px);
		top: -165px;
		left: auto;
		right: 0;
	}
	.faq_describe::before{
		right: 12px;
		left: auto;
	}
	
	.faq_list .accordion_icon {
		top: 32px;
		right: 0;
	}
	
}