@charset "UTF-8";



/* ------------------------------
	.faq_nav
------------------------------ */
.faq_nav_box{
	padding: 70px 0;
}

.faq_nav{
	display: flex;
}

.faq_nav li{
	flex: 1;
}

.faq_nav li a{
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 6rem;
	line-height: 1.6;
	background: #eeeeee;
	-webkit-transition: all .4s ease;
	transition: all .4s ease;
}
.faq_nav li a::before{
	position: absolute;
	top: 0;
	bottom: 0;
	right: 12px;
	margin: auto;
	content: "";
	width: 0;
	height: 0;
	display: block;
	border-left: 0.5rem solid transparent;
	border-right: 0.5rem solid transparent;
	border-top: 0.9rem solid #252122;
	-webkit-transition: border .4s ease;
	transition: border .4s ease;
}
@media screen and (min-width: 769px){
	.faq_nav li a:hover{
		opacity: 1;
		background: #f08803;
		color: #fff;
	}
	.faq_nav li a:hover::before{
		border-top-color: #fff;
	}
}


@media screen and (max-width: 768px){
	.faq_nav_box{
		padding: 4.5rem 0;
	}

	.faq_nav_box .wrap{
		width: 100%;
	}

	.faq_nav{
		flex-wrap: wrap;
		justify-content: space-between;
	}

	.faq_nav li{
		flex: initial;
		width: calc(50% - 0.2rem);
	}

	.faq_nav li:nth-child(n + 3){
		margin-top: 0.4rem;
	}

	.faq_nav li a{
		padding-bottom: 0.8rem;
		font-size: 1.6rem;
	}
	.faq_nav li a::before{
		top: auto;
		left: 0;
		right: 0;
		bottom: 0.8rem;
	}
}



/* ------------------------------
	.faq
------------------------------ */
.main_img img{
	width: 100%;
}

.faq{
	padding: 80px 0 80px;
	background: #eeeeee;
}

.faq_box + .faq_box{
	margin-top: 6rem;
}

.faq_ttl{
	margin-bottom: 2.5rem;
	font-size: 2.8rem;
	font-weight: 500;
	line-height: 1.3;
}
.faq_ttl .txt_orange{
	font-size: 3.6rem;
}

.acc_cnt{
	background: #fff;
	box-shadow: 0 0.1rem 0.3rem rgba(0,0,0, 0.1);
}
.acc_cnt + .acc_cnt{
	margin-top: 3rem;
}

.acc_ttl{
	display: flex;
	padding: 30px 30px;
	font-size: 2.1rem;
	line-height: 1.5;
	cursor: pointer;
}

.acc_ttl .ico{
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 3rem;
	height: 3rem;
	padding-bottom: 0.2em;
	margin-right: 1.5rem;
	background: #f08803;
	font-size: 1.6rem;
	font-weight: bold;
	color: #fff;
	line-height: 1.6;
}

.acc_box{
	display: none;
	padding: 30px 30px;
	border-top: 1px solid #cccccc;
	line-height: 2;
}


@media screen and (max-width: 768px){
	.faq{
		padding: 4rem 0 5rem;
	}

	.faq_box + .faq_box{
		margin-top: 4.5rem;
	}

	.faq_ttl{
		margin-bottom: 2rem;
	}

	.acc_cnt{
		box-shadow: 0 .1rem 0.2rem rgba(0,0,0, 0.1);
	}

	.acc_ttl{
		padding: 1.6rem 1.6rem;
	}

	.acc_box{
		padding: 1.6rem 1.6rem;
		line-height: 1.8;
	}
}