@charset "UTF-8";
/*---------------　対応可能エリア*/
.area {
	position: relative;
	overflow: hidden;
}
.area.fadeIn {
	position: relative;
	top: 30px;
	opacity: 0;
	transition: 2s;
}
.area.fadeIn.active {
	top: 0;
	opacity: 1;
}
.area .bg_text {
	width: 260px;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
}
.area .area_inner {
	width: 100%;
	max-width: 1280px;
	padding: 0 40px;
	margin: 0 auto;
}
.area .title_area {
	margin-bottom: 3em;
}
.area .title_area .section_title {
	text-align: center;
}
.area .area_item {
	margin: 0 auto 20px;
}
.area .area_item .area-check {
	display: none;
}
.area .area_item .area-label {
	background: #e7f5ff;
	font-weight: 400;
	color: #1e73be;
	display: block;
	padding: 0.8em 2em 0.8em 1.4em;
	cursor: pointer;
	position: relative;
}
.area .area_item .area-label::before,
.area .area_item .area-label::after {
	content: "";
	display: block;
	width: 1px;
	height: 0.75em;
	background-color: #1e73be;
	position: absolute;
	top: 1.65em;
	bottom: 0;
	right: 1.5em;
	transition: .3s;
}
.area .area_item .area-label::after {
	transform: rotate(90deg);
}
.area .area_item .area-check[type=checkbox]:checked + .area-label::before {
	transform: rotate(90deg) !important;
}
.area .area_item .area-content {
	height: 0;
	opacity: 0;
	transition: all .3s;
	visibility: hidden;
}
.area .area_item .area-content:target,
.area .area_item .area-check:checked + .area-label + .area-content {
	height: auto;
	opacity: 1;
	visibility: visible;
}
.area .area_item .area-content .area-content_inner {
	padding: 1em;
}
.area .area_item .area-content .area-content_inner .dl_area {
	margin-bottom: 1.5em;
}
.area .area_item .area-content .area-content_inner .dl_area:last-child {
	margin-bottom: 0;
}
.area .area_item .area-content .area-content_inner .dl_area dt {
	font-weight: 600;
	font-size: 1.3rem;
	margin-bottom: 0.3em;
}
.area .area_item .area-content .area-content_inner .dl_area dd {
	font-size: 1.2rem;
}
@media screen and (max-width: 768px) {
	.area .bg_text {
		top: 30px;
	}
	.area .area_inner {
	padding: 0 20px;
}
	.area .area_item .area-label {
		font-size: 1.4rem;
	}
}
@media screen and (max-width: 480px) {
	.section.area {
	padding: 30px 0;
}
	.area .bg_text {
		width: 200px;
		top: 0;
	}
}

