@charset "UTF-8";
/* CSS Document */

section{
	background-color: #f8f8f8;
	padding: 80px 40px 80px 40px;
}
.faq{
	max-width: 800px;
	box-sizing: border-box;
	margin: 0 auto;
}
.faq>div{
	margin-bottom: 15px;
}
.faq>div:last-of-type{
	margin-bottom: 0;
}
p.question {
	cursor: pointer;
	background-color: #fff;
	padding: 20px 50px 20px 60px;
	background-image: url("../img/sdgs_faq/Q.png");
	background-size: 22px auto;
	background-repeat: no-repeat;
	background-position: 25px 25px;
	line-height: 1.8em;
	border-bottom: solid 2px #eef1f8;
	position: relative;
}
p.question::before{
	content: "＋";
	font-size: 18px;
	font-family: sans-serif;
	color: #666;
	position: absolute;
	top: 50%;
	right: 15px;
	transform: translateY(-50%);
	font-weight: bold;
}
p.answer {
	display: none;
	background: #fff;
	padding: 20px 30px 20px 60px;
	background-image: url("../img/sdgs_faq/A.png");
	background-size: 20px auto;
	background-repeat: no-repeat;
	background-position: 25px 27px;
}
p.answer span{
	font-size: 13px;
	display: block;
}
.answer_link{
	display: inline-block;
	color: #18A4E6;
	border-bottom: solid 1px #18A4E6;
	transition: .3s;
}
.answer_link:hover{
	opacity: .6;
}


@media print, screen and (max-width: 970px) {
section {
    padding: 40px 20px;
}
.faq>div {
    margin-bottom: 10px;
}
p.question {
    padding: 15px 35px 15px 40px;
    background-size: 20px auto;
    background-position: 10px 20px;
	line-height: 1.8em;
}
p.question::before {
    right: 8px;
}
p.answer {
    padding: 15px 15px 15px 40px;
    background-size: 18px auto;
    background-position: 10px 20px;
	line-height: 1.8em;
}
.faq {
    max-width: 600px;
}




}














