@charset "utf-8";




/*==================================================
			アコーディオン004
			===================================*/
.accordion-004 {
	max-width: 100%;
	margin-bottom: 7px;
	border: 2px solid #d0d0d0;
	border-radius: 5px;
}

.accordion-004 summary {
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
	padding: 1em 2em;
	color: #333333;
	font-weight: 600;
	cursor: pointer;
}

.accordion-004 summary::-webkit-details-marker {
	display: none;
}

.accordion-004 summary::before,
.accordion-004 summary::after {
	width: 3px;
	height: .9em;
	border-radius: 5px;
	background-color: #333333b3;
	content: '';
}

.accordion-004 summary::before {
	position: absolute;
	right: 2em;
	rotate: 90deg;
}

.accordion-004 summary::after {
	transition: rotate .3s;
}

.accordion-004[open] summary::after {
	rotate: 90deg;
}

.accordion-004 p {
	transform: translateY(-10px);
	opacity: 0;
	margin: 0;
	padding: .3em 2em 1.5em;
	color: #333333;
	transition: transform .5s, opacity .5s;
}

.accordion-004[open] p {
	transform: none;
	opacity: 1;
}


/*QA*/
.faq-q:before {
	content: "Q";
	font-size: 85%;
	margin-right: 5px;
	display: inline-block;
	vertical-align: 2px;
	width: 1.6em;
	height: 1.6em;
	text-align: center;
	line-height: 1.4;
	border-radius: 50%;
	background: #42a1f5;
	color: #FFF;
	font-weight: bold;
}

.faq-a:before {
	content: "A";
	font-size: 100%;
	margin-right: 5px;
	display: inline-block;
	vertical-align: 2px;
	width: 1.5em;
	height: 1.5em;
	text-align: center;
	line-height: 1.3;
	border-radius: 50%;
	background: #f54290;
	color: #FFF;
	font-weight: bold;
}