/*Faq page CSS　Ver.1.0.0 */

.faq-category-title {
	margin-bottom: 40px;
	font-size: 24px;
}
.faq-category-title::before {
	font-family: 'Material Icons';
	content: '\e0c6';
	margin-right: 4px;
	color: rgb(75, 75, 75);
	vertical-align: bottom;
}
.accordion-001:not([open]) {
	margin-bottom: 15px;
}
.accordion-001 summary {
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
	padding: 1em 2em;
	border-radius: 5px;
	background-color: rgba(255, 217, 0, 0.85);
	font-weight: 600;
	cursor: pointer;
}
.accordion-001[open] summary {
	background-color: rgba(255, 217, 0, 0.5);
}
.accordion-001 summary::-webkit-details-marker {
	display: none;
}
.accordion-001 summary::after {
	transform: translateY(-25%) rotate(45deg);
	width: 7px;
	height: 7px;
	margin-left: 10px;
	border-bottom: 3px solid rgba(255, 255, 255, 1.0);
	border-right: 3px solid rgba(255, 255, 255, 1.0);
	content: '';
	transition: transform .3s;
}
.accordion-001[open] summary::after {
	transform: rotate(225deg);
}
.accordion-001 .faq-anser {
	transform: translateY(-10px);
	opacity: 0;
	margin: 0;
	padding: 1em 2em 2em 2em;
	transition: transform .5s, opacity .5s;
}
.accordion-001[open] .faq-anser {
	transform: none;
	opacity: 1;
}

.faq-anser h4 {
	margin-bottom: 10px;
	font-size: 1.15rem;
	font-weight: bold;
	color: rgb(40, 188, 125);
}
.faq-anser dl {
	margin-bottom: 30px;
}
.faq-anser dl dt {
	color: red;
}
.faq-anser dl dd {
	margin-bottom: 10px;
}
.faq-anser a {
	text-decoration: underline;
}




/*=================================
タブレット設定（768px〜1024px）
=================================*/
@media only screen and (max-width: 1025px) {

	

}



/*=================================
スマホ設定（〜767px）
=================================*/
@media only screen and (max-width: 768px) {

	

}
