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

.details {
	border-bottom: 1px solid #888;
}
.details:last-of-type {
	border-bottom: 1px solid #888;
}
.details-summary {
	position: relative;
	display: block;
	padding: 15px 30px 15px 15px;
	color: #333;
	font-size: 120%;
	font-weight: bold;
	text-align: left;
}
@media screen and (max-width:767px){
	.details-summary {
		padding: 15px 30px 15px 5px;
		font-size: 110%;
	}
}
.details-summary:hover {
	cursor: pointer;
	background-color: #eee;
	}
.details-summary .faq-btn {
	position: absolute;
	top: 35%;
	right: 3%;
	width: 18px;
	height: 18px;
	transform-origin: center center;
	transition-duration: 0.2s;
}
.details-summary .faq-btn:before,
.details-summary .faq-btn:after {
	content: "";
	background-color: #D7002A;
	border-radius: 10px;
	width: 18px;
	height: 4px;
	position: absolute;
	top: 7px;
	left: 0;
	transform-origin: center center;
 }
.details-summary .faq-btn:before {
	width: 4px;
	height: 18px;
	top: 0;
	left: 7px;
}
@media screen and (max-width:767px){
	.details-summary .faq-btn {
	width: 9px;
	height: 9px;
	}
	.details-summary .faq-btn:before,
	.details-summary .faq-btn:after {
	border-radius: 5px;
	width: 9px;
	height: 2px;
	top: 3.5px;
 	}
	.details-summary .faq-btn:before {
	width: 2px;
	height: 9px;
	top: 0;
	left: 3.5px;
	}
}
.details-summary.is-active .faq-btn {
	-webkit-transform: rotate(-180deg);
	transform: rotate(-180deg);
}
.details-summary.is-active .faq-btn:before {
	content: none;
}	
.details-summary::-webkit-details-marker {
	display: none;
}
.details-content {
	padding: 10px 15px 40px;
}
@media screen and (max-width:767px){
	.details-content {
	padding: 10px 10px 20px 5px;
	}
}
.details-content .close-btn {
	display: block;
	margin: 0 auto;
	padding: 8px 32px;
	background: #eee;
	color: #333;
	text-align: left;
	border: none;
	border-radius: 4px;
	cursor: pointer;
}
.details-content .close-btn:hover {
	background-color: #eee;
}
