@charset "UTF-8";
/* CSS Document */
.details-summary {
	/*
	position: relative;
	display: block;
	padding: 20px;
	color: #fff;
	font-size: 24px;
	font-weight: bold;
	text-align: center;
	background-color: #b2e4e2;
	&:hover {
		cursor: pointer;
		opacity: 0.8;
	}
	*/
	.btn {
		position: absolute;
		top: 37%;
		right: 3%;
		width: 18px;
		height: 18px;
		transform-origin: center center;
		transition-duration: 0.2s;
		&:before, &:after {
			content: "";
			background-color: #999;
			border-radius: 10px;
			width: 18px;
			height: 4px;
			position: absolute;
			top: 7px;
			left: 0;
			transform-origin: center center;
		}
		&:before {
			width: 4px;
			height: 18px;
			top: 0;
			left: 7px;
		}
	}
	&.is-active {
		.btn {
			-webkit-transform: rotate(-180deg);
			transform: rotate(-180deg);
			&:before {
				content: none;
			}
		}
	}
}
/*
.details-summary::-webkit-details-marker {
	display: none;
}
.details-content {
	padding: 20px;
	p {
		margin: 0 0 20px;
		color: #000;
		font-size: 18px;
		text-align: left;
		&:last-of-type {
			margin: 0 0 0;
		}
	}
}
*/