
/*対応可能エリア*/

#area {
	overflow: hidden;
}
#area h2 {
	text-align: center;
	font-size: 2.4rem;
	margin-bottom: 2em;
}
#area .area_wrap {
	max-width: 900px;
	margin: 0 auto 20px;
}
#area .area-check {
	display: none;
}
#area .area-label {
	background: #EDEBE6;
	font-size: 1.6rem;
	font-weight: 400;
	display: block;
	padding: 1em;
	cursor: pointer;
	position: relative;
}
#area .area-label::before,
#area .area-label::after {
	content: "";
	display: block;
	width: 1px;
	height: 0.75em;
	background-color: #333333;
	position: absolute;
	top: 1.65em;
	bottom: 0;
	right: 1.5em;
	transition: .3s;
}
#area .area-label::after {
	transform: rotate(90deg);
}
#area .area-check[type=checkbox]:checked + .ac-label::before {
	transform: rotate(90deg) !important;
}
#area .area-content {
	height: 0;
	opacity: 0;
	transition: all .3s;
	visibility: hidden;
}
#area .area-check:checked + .area-label + .area-content {
	height: auto;
	opacity: 1;
	visibility: visible;
}
#area .area-content .area-content_inner {
	padding: 1em;
}
#area .area-content .area-content_inner dl + dl {
	margin-top: 10px;
}
#area .area-content .area-content_inner dl dt {
	font-size: 1.3rem;
	line-height: 2;
}
#area .area-content .area-content_inner dl dd {
	font-size: 1.3rem;
	line-height: 2;
}
#area .area-content .area-content_inner p.area_text {
	font-size: 1.3rem;
	line-height: 2;
}
@media screen and (max-width: 768px) {
	#area .area-label {
		font-size: 1.4rem;
	}
	#area .area-content .area-content_inner dl dt {
		font-size: 1.2rem;
	}
	#area .area-content .area-content_inner dl dd {
		font-size: 1.2rem;
	}
	#area .area-content .area-content_inner p.area_text {
		font-size: 1.2rem;
	}
}
@media screen and (max-width: 480px) {
	#area .area-label {
		font-size: 1.3rem;
	}
}


