@charset "utf-8";

/*//////////////////////////////////////////////////////////////////////////////

	よくある質問

//////////////////////////////////////////////////////////////////////////////*/


/*------------------------------------------------------------------------------

	contents

------------------------------------------------------------------------------*/

/*	accordion
------------------------------------------------------------------------------*/

.faq main .content_box section section {
	background-color: rgba(255,255,255,1);
	border: 1px solid rgba(47,60,69,.25);
}

.faq main .content_box section section:not(:first-of-type) {
	border-top: none;
}

.faq.detail main section h2 {
	line-height: 1.4;
	text-align: left;
}

.faq.detail main section h2::before {
	left: 0;
	transform: none;
}

.faq.detail main section h3 {
	position: relative;
	margin-top: 0;
	padding: 1.5em 4em 1.5em 1.5em;
	background-color: rgba(238,238,224,1);
	text-align: left;
	font-weight: bold;
	line-height: 1.4;
	cursor: pointer;
	color: inherit;
}

.faq main section h3::after {
	display: block;
	content: '＋';
	position: absolute;
	right: 0;
	top: 50%;
	translate: 0 -50%;
	font-weight: 400;
	border-left: 1px solid rgba(47,60,69,.25);
	height: 3em;
	width: 3.4em;
	text-align: center;
	overflow: hidden;
	line-height: 3;
}

.faq main section h3.opened::after {
	content: '－';
}

.faq main section .links {
	display: none;
}

.faq main section .links ul {
	margin: 0;
	padding: 0 1.5em 1.5em;
	list-style: none;
	background-color: rgba(238,238,224,1);
}

.faq main section .links ul li {
	margin: 0;
	border-bottom: 2px solid rgba(238,238,224,1);
	background-color: #FFF;
	line-height: 1.6;
}

.faq main section .links ul li:last-child {
	border-bottom: none;
}

.faq main section .links ul li a {
	position: relative;
	display: block;
	padding: .75em 2.5em .75em 1.5em;
	text-decoration: none;
	color: inherit
}

.faq main section .links ul li a::after {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	translate: 0 -50%;
	right: .75em;
	width: .75em;
	aspect-ratio: 1/1;
	background-image: url(../../common/img/icon_arrow_b.svg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}

@media screen and (max-width: 767px){

.faq main section .links ul {
	padding: 0 .5em .5em;
}

.faq main section .links ul li a {
	padding-left: 1em;
}

}



