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

	- mv
	+ content
		- sec01
		- sec02
		
-----------------------------------------*/

/*----------------------------------------
	mv
-----------------------------------------*/
#mv {
	background: #62b1d9 url("../img/c_mv_bg01.jpg") no-repeat right top;
	background-size: 1320px auto;
}

@media screen and (max-width: 767px) {
	#mv {
		background-size: auto 100%;
	}
}

/*----------------------------------------
	content
-----------------------------------------*/
#content {
	padding: 60px 0 65px;
}

@media screen and (max-width: 767px) {
	#content {
		padding: 40px 0 64px;
	}
}

/*----------------------------------------
	sec01
-----------------------------------------*/
#sec01 > .title {
	margin: 0 0 34px;
	padding: 5px 0 5px 15px;
	border-left: 5px solid #00a0e9;
	color: #000;
}

#sec01 > .btn01 {
	display: inline-block;
	margin: 33px 0 0 auto;
}

#sec01 > .btn01 > a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 258px;
	height: 50px;
	margin: 0 auto;
	padding: 0;
	border: 1px solid #ddd;
	border-radius: 40px;
	background-color: #fff;
	box-shadow: 0px 1px 0 rgba(0, 0, 0, 0.1);
	color: #000;
	transition: .2s;
	-webkit-user-select: none;
	user-select: none;
}

#sec01 > .btn01 > a > span {
	position: relative;
	padding: 0 25px 0 3px;
}

#sec01 > .btn01 > a > span::after {
	content: "";
	position: absolute;
	top: calc(20% + 2px);
	right: 4%;
	width: 8px;
	height: 8px;
	border-top: 2px solid #00a0e9;
	border-right: 2px solid #00a0e9;
	transform: rotate(45deg);
}

@media screen and (min-width: 768px) {
	#sec01 > .btn01 > a:hover {
		border: 1px solid #00a0e9;
		background-color: #00a0e9;
		color: #fff;
	}
	
	#sec01 > .btn01 > a:hover > span::after {
		border-color: #fff;
	}
}

@media screen and (max-width: 767px) {
	#sec01 > .title {
		margin: 0 0 28px;
	}

	#sec01 > .btn01 {
		display: block;
		margin: 25px 0 0;
	}
}

/*----------------------------------------
	sec02
-----------------------------------------*/
#sec02 > .title {
	margin: 60px 0 34px;
	padding: 5px 0 5px 15px;
	border-left: 5px solid #00a0e9;
	color: #000;
	line-height: 1;
}

#sec02 > figure {
	max-width: 1000px;
	width: calc(100% - 120px);
	margin: 35px auto;
}

#sec02 > dl {
	margin-top: 30px;
}

#sec02 > dl > dd {
	margin-bottom: 28px;
}

@media screen and (max-width: 767px) {
	#sec02 > .title {
		margin: 40px 0 25px;
		line-height: 1.15;
	}

	#sec02 > figure {
		max-width: initial;
		width: 100%;
		margin: 23px auto 25px;
	}

	#sec02 > dl {
		margin-top: 18px;
	}

	#sec02 > dl > dd {
		margin-bottom: 18px;
	}
}