@charset "UTF-8";

/* --------------------------------
 * base
 * -------------------------------- */
.inner{
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
	display: block;
	box-sizing:border-box;
}

img { /* 重複タグ */
    width: auto;
    max-width: 100%;
}

@media screen and (max-width: 768px) {
	.inner{
	width: 100%;
	max-width: 768px;
	margin: 0 auto;
	display: block;
	padding: 0 3%;
	box-sizing:border-box;
	}
}

/* 汎用CSS
------------------------------------------------------------*/
.brc{clear:both!important;}
.ctr{text-align:center!important; margin:0 auto!important;}
.none{display:none!important;}

.mt100{margin-top:100px!important;}
.mt50{margin-top:50px!important;}
.mt40{margin-top:40px!important;}
.mt30{margin-top:30px!important;}
.mt20{margin-top:20px!important;}
.mt10{margin-top:10px!important;}
.mb100{margin-bottom:100px!important;}
.mb50{margin-bottom:50px!important;}
.mb40{margin-bottom:40px!important;}
.mb30{margin-bottom:30px!important;}
.mb20{margin-bottom:20px!important;}
.mb10{margin-bottom:10px!important;}
.mr50{margin-right:50px!important;}
.mr40{margin-right:40px!important;}
.mr30{margin-right:30px!important;}
.mr20{margin-right:20px!important;}
.mr10{margin-right:10px!important;}
.ml50{margin-left:50px!important;}
.ml40{margin-left:40px!important;}
.ml30{margin-left:30px!important;}
.ml20{margin-left:20px!important;}
.ml10{margin-left:10px!important;}
.pt100{padding-top:100px!important;}
.pt50{padding-top:50px!important;}
.pt40{padding-top:40px!important;}
.pt30{padding-top:30px!important;}
.pt20{padding-top:20px!important;}
.pt10{padding-top:10px!important;}
.pb100{padding-bottom:100px!important;}
.pb50{padding-bottom:50px!important;}
.pb40{padding-bottom:40px!important;}
.pb30{padding-bottom:30px!important;}
.pb20{padding-bottom:20px!important;}
.pb10{padding-bottom:10px!important;}
.pr50{padding-right:50px!important;}
.pr40{padding-right:40px!important;}
.pr30{padding-right:30px!important;}
.pr20{padding-right:20px!important;}
.pr10{padding-right:10px!important;}
.pl50{padding-left:50px!important;}
.pl40{padding-left:40px!important;}
.pl30{padding-left:30px!important;}
.pl20{padding-left:20px!important;}
.pl10{padding-left:10px!important;}
.w100{width:100%!important;}
.w90{width:90%!important;}
.w80{width:80%!important;}
.w70{width:70%!important;}
.w60{width:60%!important;}
.w50{width:50%!important;}
.w40{width:40%!important;}
.w30{width:30%!important;}
.w20{width:20%!important;}
.w10{width:10%!important;}

/* --------------------------------
 * rs_head
 * -------------------------------- */
#faq_head{
	background: #90cf33 url(../img/rs_header_bg.jpg) top center;
	background-size: auto 302px;
}

#faq_head .inner{
	display: flex;
	justify-content: space-between;
	align-items: center;
}

@media screen and (max-width: 768px) {
	#faq_head{
	background: #90cf33 url(../img/rs_header_bg.jpg) top center;
	background-size: auto 302px;
	}


	#faq_head .inner{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	}
}

/* --------------------------------
 * qa_sec01
 * -------------------------------- */
#qa_sec01{
	background: #fff;
	display: block;
	padding: 5% 0 0;
	color: #40210F;
	font-size: 1.2em;
	line-height: 1.8em;
}

/* アコーディオン */
.acd-check{
    display: none;
}
.acd-label{
	border: 2px solid #8FC31F;
	border-radius: 10px;
	background: #fff;
	display: block;
	margin-bottom: 0.5%;
	padding: 1% 2%;
	box-sizing:border-box;
	transition: .5s;
}
.acd-label:hover{
	cursor: pointer;
	background: #E9F4D3;
}

.acd-label span{
	display: inline-flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	flex-flow: column; 
	vertical-align: top;
	background: #8FC31F;
	color: #fff;
	font-size: 1em;
	font-weight: bold;
	width: 30px;
	height: 30px;
	margin-right: 1%;
}

.acd-content{
	border: 2px solid #8FC31F;
	border-radius: 10px;
	height: 0;
	opacity: 0;
	padding: 0 10px;
	transition: .3s;
	visibility: hidden;
	box-sizing:border-box;
}

.acd-check:checked + .acd-label{
	background: #E9F4D3;
}

.acd-check:checked + .acd-label + .acd-content{
	height: auto;
	opacity: 1;
	padding: 3%;
	box-sizing:border-box;
	visibility: visible;
	margin-bottom: 2%;
}


/* --------------------------------
 * qa_sec02
 * -------------------------------- */
#qa_sec02{
	background: #fff;
	display: block;
	padding: 5% 0 0;
}

.otherpage_link{
	display :block;
	text-align: center;
	margin: 5% auto;
}

.otherpage_link p img{
	margin-bottom: 3%;
}{