@charset "utf-8";
.faq_title{
	text-align:center;
	font-size:148%;
	margin:0 0 40px 0;
	font-family: "Yu Mincho", "YuMincho", serif;
}
.faq_box{
	border-bottom:1px dotted #CCCCCC;
	margin:0 0 40px 0;
}
.faq_question{
	margin: 0 0 0 10px;
	padding: 20px 30px;
	font-weight: bold;
	color: #263e71;
	font-size: 120%;
	border-top:1px dotted #CCCCCC;
	cursor: pointer;
	position:relative;
}
.faq_question:before{
	content:"Q.";
	margin:0 10px 0 0;
}

.faq_box .close:after{
	content: '';
	width: 10px;
	height: 10px;
	border: 0px;
	border-top: solid 3px #263e71;
	border-right: solid 3px #263e71;
	-ms-transform: rotate(135deg);
	-webkit-transform: rotate(135deg);
	transform: rotate(135deg);
	position: absolute;
	right: 20px;
	top: 20px;
}
.faq_box .open:after{
	content: '';
	width: 10px;
	height: 10px;
	border: 0px;
	border-top: solid 3px #263e71;
	border-right: solid 3px #263e71;
	-ms-transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	position: absolute;
	right: 20px;
	top: 20px;
}

.faq_answer{
	display:none;
	padding: 0 0 15px 40px;
	font-size: 96%;
	line-height: 30px;
}
.faq_answer2{
	margin: 0 0 60px 0;
	padding: 0 0 15px 40px;
	font-size: 96%;
	line-height: 30px;
}
.faq_answer a,
.faq_answer2 a{
	margin:0;
	padding:0;
}
.faq_answer a:hover,
.faq_answer2 a:hover{
	text-decoration:underline;
}

@media(max-width: 768px) {
	.faq_title{
		text-align:center;
		font-size:148%;
		margin:20px 0;
	}

	.faq_question{
		background: url(../img/info/faq_Qicon2.jpg) no-repeat left center;
		background-size: 20px auto;
		margin: 40px 2% 0 2%;
		padding: 7px 20px 7px 28px;
		font-size: 100%;
		line-height: normal;
		min-height:auto;
	}

	.faq_box .close:after{
		width: 8px;
		height: 8px;
		border-top: solid 2px #263e71;
		border-right: solid 2px #263e71;
		right: 0px;
		top:0;
		bottom:0;
		margin:auto;
	}
	.faq_box .open:after{
		width: 8px;
		height: 8px;
		border-top: solid 2px #263e71;
		border-right: solid 2px #263e71;
		right: 0px;
		top:0;
		bottom:0;
		margin:auto;
	}

	.faq_answer{
		margin: 10px 2% 0 2%;
		padding: 0 10px 0 10px;
		font-size: 90%;
	}

	.faq_answer2{
		margin: 10px 2% 45px 2%;
		padding: 0 10px 0 10px;
		font-size: 90%;
	}

}

/*---------------------------------------*/
.faq_side{
	width:20%;
	float:left;
	margin:0 0 40px 0;
}
.faq_side h2{
	color:#263e71;
	margin:0 0 10px 0;
	font-size:26px;
	text-align:center;
}
.faq_side ul{
	border:1px solid #CCCCCC;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	overflow:hidden;
}
.faq_side ul li{
	border-bottom:1px dotted #CCCCCC;
}
.faq_side ul li:last-child{
	border-bottom:none;
}
.faq_side ul li a{
	display:block;
	width:100%;
	padding:15px;
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
         -o-box-sizing: border-box;
        -ms-box-sizing: border-box;
            box-sizing: border-box;
	position:relative;
}
.faq_side ul li a:after{
	content: '';
	width: 8px;
	height: 8px;
	border: 0px;
	border-top: solid 2px #CCCCCC;
	border-right: solid 2px #CCCCCC;
	-ms-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	position: absolute;
	top: 50%;
	right: 15px;
	margin-top: -5px;
	transition:0.7s;
}
.faq_side ul li.active a{
	background:#263e71;
	color:#FFF;
	font-weight:bold;
}
.faq_main{
	width:78%;
	float:right;
}
.faq_main .faq_question{
	margin:0;
}

@media(max-width: 768px) {
	.faq_side{
		width:92%;
		float:none;
		margin:20px auto;
	}
	.faq_main{
		width:92%;
		float:none;
		margin:0px auto;
	}
	.faq_main .faq_answer2,
	.faq_main .faq_answer{
		margin:0 0 20px 0;
		line-height:150%;
	}
}

.faq_img{
	margin:5px;
	border:1px solid #EEEEEE;
}
.faq_img img{
	width:100%;
	height:auto;
}

