@charset 'utf-8';

/*====================
{{スマホを基本設計にする}}
 - 〜479px：SP縦
 - 480px〜599px：SP横
 - 600px〜959px：タブレット
 - 960px〜1279px：小型PC
 - 1280px〜：大型PC
====================*/

h2 {
	padding: 4rem 0;
	margin-top: 50px;
	margin-bottom: 3.5rem;
	font-size: 3.4rem;
	text-align: center;
	line-height: 1.2;
	background: url(../images/bg_faq_title_sp.jpg) no-repeat;
	background-size: cover;
	background-position: bottom;
}

h2 span {
	display: block;
	font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
	font-size: 0.33em;
	font-weight: bold;
	color: #118A45;
	letter-spacing: .3em;
	text-indent: .3em;
}

.faq_inner {
	width: 90%;
	max-width: 1000px;
	margin: auto;
}

.faq_contents {
	margin-bottom: 3rem;
}

h3 {
	padding: .5rem 0 .5rem 1.5rem;
	margin-bottom: 2rem;
	font-size: 2.5rem;
	color: #fff;
	background-color: #118A45;
}

.faq_accordion {
	margin-bottom: 1.5rem;
}

.faq_accordion dt {
	position: relative;
	padding: 1rem 40px 1rem 3em;
	font-size: 1.8rem;
	font-weight: bold;
	background-color: rgba(17,138,69,0.1);
}

.faq_accordion dt > span {
	position: absolute;
	left: 1rem;
	color: #118A45;
}

.faq_accordion dd {
	display: none;
	padding-top: 1rem;
	font-size: 1.7rem;
	color: #333;
}


.accordion_icon,
.accordion_icon span {
	display: inline-block;
	transition: all .4s;
	box-sizing: border-box;
}

.accordion_icon {
	position: absolute;
	top: 37%;
	right: -15px;
	width: 50px;
	height: 50px;
	float: right;
	margin-right: 5px;
}

.accordion_icon span {
	position: absolute;
    left: 6px;
    width: 50%;
	height: 2px;
    background-color: #118A45;
	border-radius: 4px;
	-webkit-border-radius: 4px;
	-ms-border-radius: 4px;
	-moz-border-radius: 4px;
	-o-border-radius: 4px;
}

.accordion_icon span:nth-of-type(1) {
    top: 5px;
	transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
}

.accordion_icon span:nth-of-type(2) {
    top: 5px;
	transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
	-moz-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
}

/*＋、－切り替え*/
.faq_accordion dt.on .accordion_icon span:nth-of-type(1) {
	display:none;
}
.faq_accordion dt.on .accordion_icon span:nth-of-type(2) {
	top: 5px;
	transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
	-moz-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	-o-transform: rotate(180deg);
}

.soon {
	margin-bottom: 1rem;
	font-size: 1.8rem;
	font-weight: bold;
	text-align: center;
}

@media screen and (min-width:600px) {
	h2 {
		padding: 10rem 0;
		margin-top: 0;
		margin-bottom: 8rem;
		font-size: 4.6rem;
		background: url(../images/bg_faq_title_pc.jpg) no-repeat;
	    background-size: cover;
    	background-position: bottom;
	}

	h3 {
		padding: 1rem 0 1rem 2rem;
		font-size: 3.6rem;
	}

	.faq_contents {
		margin-bottom: 6rem;
	}

	.faq_accordion {
		margin-bottom: 3rem;
	}

	.faq_accordion dt {
		padding-right: 50px;
		padding-left: 3em;
		font-size: 2.2rem;
		cursor: pointer;
	}

	.faq_accordion dt span {
		left: 1.5rem;
	}

	.accordion_icon {
		right: 0;
	}

	.faq_accordion dd {
		padding: 3rem 3rem 0;
		font-size: 1.6rem;
	}

}

@media screen and (min-width:900px) {
	.soon {
		font-size: 2rem;
	}
}