@charset "UTF-8";
/* ask-questions.css */

h2 {
    font-size: 190%;
    text-align: center;
    font-weight: 500;
    color: #333;
}
h2::after {
    content: "";
    display: block;
    width: 40px;
    height: 1px;
    border-bottom: 2px solid #808080;
    margin: 0.25em auto 1em;
}
main > .box-btn {
    padding: 0 20px;
}
button.btn-green{
	color: #3ca062;
    border: 2px #3ca062 solid;
	margin-bottom: 40px;
}
button.btn-green:hover {
    color: #fff;
    background: #3ca062;
}
button.btn-green::before{
	content: url("/common/img/arrow_g.svg")
}


.qa_tb *, .qa_tb *:after, .qa_tb *:before {
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	}
.qa_tb {
	overflow-x: hidden;
	margin: 0 auto;
	color: #333333;
	}
.qa_tb .qa_actab {
	border-top: 1px solid #cccccc;
	position: relative;
	margin-bottom: 0.25em;
	}
.qa_tb.last_qa {
    border-bottom: 1px solid #cccccc;
	margin-bottom: 4em;
}
.qa_tb .qa_actab ul{
	display: flex;
}
.qa_tb label {
	position: relative;
	display: block;
	width: 100%;
	margin: 0 auto;
    text-align: center;
	cursor: pointer;
	padding: 2em 0;
	}
.qa_tb label:hover {
	text-decoration: none;
	}
.qa_tb .qa_actab-content {
	font-size: 1em;
	position: relative;
	overflow: hidden;
	height: 0;
	padding: 0 14px;
	-webkit-transition: 0.4s ease;
	        transition: 0.4s ease;
	opacity: 0;
	}
.qa_tb .qa_actab input[type=checkbox]:checked ~ .qa_actab-content {
	height: auto;
	padding: 1em 0;
    opacity: 1;
	}
.qa_actab label:after, .qa_actab label:before {
    color: #1D2088;
    content: '';
		display: block;
		width: 15px;
		height: 3px;
		border-radius: 5px;
    	background: #1D2088;
		transform: translateY(-50%);
	font-weight: 900;
    position: absolute;
    top: 50%;
    right: 10px;
	-webkit-transition: 0.4s ease;
	        transition: 0.4s ease;
	}
.qa_actab label:after {
		transform: translateY(-50%) rotate(90deg);
	}
.qa_actab input:checked ~ label::after {
		transform: rotate(0);
    	/*transform: rotateZ(-90deg);*/
	}
.qa_tb .qa_actab input[type=checkbox] {
	display: none;
	}
.qa_actab ul.question li:first-child{
	color:#fff;
	font-size:150%;
	background: #3ca062;
	border-radius: 50%;
	width: 48px;
	height: 48px;
	text-align:center;
	line-height: 44px;
	margin: 0 14px;
}
.qa_actab ul.question li:last-child p{
	color:#333;
	font-size: 145%;
	font-weight: 500;
    padding: 0.5em 0;
}
.qa_actab ul.answer li:first-child{
	color: #3ca062;
    font-size: 150%;
    background: #fff;
    border: 2px solid #3ca062;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    text-align: center;
    line-height: 42px;
    margin: 0 14px;
}
.qa_actab ul.answer li:last-child p{
}
.qa_info{
	background: #f2f2f2;
    padding: 1.2em 90px;
    margin-bottom: 6em;
    line-height: 25px;
}


@media screen and (max-width: 767px) {
	.qa_tb label {
		padding: 0.5em 0;
	}
	.qa_actab ul.question li:first-child{
		 margin: 8px 14px 0 0;
	}
	.qa_actab ul.question li:last-child{
		width: 60%;
	}
	.qa_actab ul.question li:last-child p{
		font-size: 110%;
		text-align: left;
	}
	.qa_actab ul.answer li:last-child{
		width: 75%;
	}
	.qa_actab ul.answer li:first-child{
		 margin: 0 14px 0 0;
	}
	.qa_info {
		padding: 1.2em 35px;
	}
}
	
	
	
	
	