@charset "utf-8";



.faq ul{
	margin: 60px 0 0 0;
	
	font-size: 1.8rem;
	line-height: 1.0;
	display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
	-ms-flex-wrap: wrap;
  	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
.faq ul li{
	width: calc((100% - 40px) / 5);
	height: 65px;
	color: #FFFF26;
	background: url("../faq/img/pointer1.png") no-repeat center 80% #00AFEC;
	background-size: 14px auto;
	padding-bottom: 5px;
	display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	border-radius: 0.5rem;
	cursor: pointer;
	-webkit-transition: 0.2s ease-in-out;
	transition: 0.2s ease-in-out;
}
.faq ul li:hover{opacity: 0.5;}

.faqHanger{}
.faqHanger h3{
	background: #00AFEC;
	color: #FFFF26;
}
.faqHanger dl{
	padding: 20px;
	margin: 20px 0 0 0;
	background-color: #EFF1F3;
	border-radius: 0.8rem;
}
.faqHanger dl dt{
	position: relative;
	
	font-size: 1.8rem;
	padding: 3px 0 5px 35px;
	background: url("../faq/img/open.png") no-repeat 100% center;
	background-size: 24px;
	cursor: pointer;
}
.faqHanger dl dt.open{
	background: url("../faq/img/close.png") no-repeat 100% center;
	background-size: 24px;
}
.faqHanger dl dt::before{
	position: absolute;
	content: '';
	width: 22px;
	height: 24px;
	top: 0;
	left: 0;
	background: url("../faq/img/q.png") no-repeat 0 0;
	background-size: 22px auto;
	z-index: 10;
}
.faqHanger dl dd{
	font-size: 1.6rem;
	line-height: 1.6;
	padding: 20px;
	margin: 15px 0 0 0;
	background-color: #FFFFFF;
	border-radius: 0.8rem;
	display: none;
}






/**************************************************
 Responsive
**************************************************/
@media screen and (max-width: 640px){
	
	
	
.faq ul{
	margin: 10px 0 0 0;
	font-size: 1.5rem;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}
.faq ul li{
	width: calc(50% - 5px);
	height: 55px;
	color: #FFFF26;
	background: url("../faq/img/pointer1.png") no-repeat center 80% #00AFEC;
	background-size: 14px auto;
	padding-bottom: 5px;
	margin: 10px 0 0 0;
}
.faq ul li:nth-child(2n){margin: 10px 0 0 10px;}

.faqHanger dl{
	padding: 10px;
	margin: 15px 0 0 0;
	border-radius: 0.6rem;
}
.faqHanger dl dt{
	font-size: 1.6rem;
	padding: 3px 30px 5px 30px;
	background: url("../faq/img/open.png") no-repeat 100% center;
	background-size: 22px;
}
.faqHanger dl dt.open{
	background: url("../faq/img/close.png") no-repeat 100% center;
	background-size: 22px;
}
.faqHanger dl dt::before{
	width: 20px;
	height: 23px;
	top: 0;
	background: url("../faq/img/q.png") no-repeat 0 0;
	background-size: 20px auto;
}
.faqHanger dl dd{
	font-size: 1.4rem;
	padding: 10px;
	margin: 10px 0 0 0;
	border-radius: 0.6rem;
}
	
	
	
}
