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

/*section----------------------------*/
section .wrap {
	background: #fff;
	border-bottom-right-radius: 2500px 500px;
	border-bottom-left-radius: 2500px 500px;
	border-top-right-radius: 2500px 500px;
	border-top-left-radius: 2500px 500px;
	margin-left: -500px;
	margin-right: -500px;
	padding-left: 500px;
	padding-right: 500px;
	padding: 150px 0;
	text-align: center;
}
section .inner {
	max-width: 1150px;
	margin: auto;
}
@media screen and (max-width: 768px) {
	section {
		padding: 30px 0;
	}
	section .wrap {
		border-bottom-right-radius: 1000px 500px;
		border-bottom-left-radius: 1000px 500px;
		border-top-right-radius: 1000px 500px;
		border-top-left-radius: 1000px 500px;
		margin-left: -300px;
		margin-right: -300px;
		padding-left: 300px;
		padding-right: 300px;
		padding: 0;
	}
	section .inner {
		max-width: inherit;
		width: calc(100vw - 60px);
	}
}
/*----------------------------
top
----------------------------*/
#top {
	background-color: #f8f8f8;
	padding: 0;
}
#top .wrap {
	border-top-right-radius: 0;
	border-top-left-radius: 0;
	height: 450px;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0;
}
#top h1 {
	font-size: 4rem;
	font-weight: 300;
	line-height: 1.8;
	letter-spacing: .2em;
	padding-left: .2em;
}

@media screen and (max-width: 768px) {
	#top .inner {
		padding: 120px 0 80px;
	}
	#top .wrap {
		min-height: 300px;
		height: auto;
	}
	#top h1 {
		font-size: 2.2rem;
		line-height: 1.6;
		font-feature-settings: "palt";
	}
	#top h1 .indent {
		display: block;
	}
}

/*----------------------------
section
----------------------------*/
.contents {
	background: #f8f8f8;
	padding: 150px 0;
	text-align: justify;
}
.contents section {
	width: 850px;
	margin: 0 auto 100px;
	line-height: 2.6;
}
.contents section:last-child {
	margin: 0 auto;
}
.contents section h1 {
	font-size: 1.8rem;
	font-weight: 600;
	letter-spacing: .2em;
	line-height: 1;
	color: #000;
	text-indent: 1em;
	margin-bottom: 20px;
	position: relative;
}
.contents section h1::before {
	content: '';
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #b5b6b6;
	display: inline-block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	margin: auto;
}
.contents section .sub {
	font-weight: 600;
}
.contents section dl {
	margin: 10px 0;
}
.contents section dl div {
	margin-bottom: 10px;
}
.contents section dl dd {
	line-height: 2;
}
.contents section ul li {
	font-size: 1.2rem;
	line-height: 2;
}
.contents section a {
	border-bottom: 1px solid #4b4b4b;
	transition: .3s;
}
.contents section a:hover {
	border-bottom: 1px solid #ededed;;
	transition: .3s;
}

@media screen and (max-width: 768px) {
	.contents {
		padding: 30px;
	}
	.contents section {
		width: 100%;
		margin: 0 auto;
		line-height: 2.2;
	}
	.contents section h1 {
		font-size: 1.5rem;
		margin-bottom: 10px;
	}
	.contents section dl div {
		margin-bottom: 10px;
	}
	.contents section dl dd {
		line-height: 2;
	}
	.contents section ul li {
		font-size: 1rem;
		line-height: 2;
	}
	.contents section a::after {
		margin-top: -5px;
	}
}