@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;
}
#mv > div > h1 > span:first-child::before {
	display: none;
}
@media screen and (max-width: 767px) {
	#mv {
		background-size: auto 100%;
	}
}

/*----------------------------------------
	content
-----------------------------------------*/
#content {
	padding: 60px 0 94px;
}
#content .title {
	padding: 5px 0 5px 15px;
	border-left: 5px solid #00a0e9;
	color: #000;
	word-break: break-all;
}
#content a {
	display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
	max-width: 520px;
    height: 64px;
    margin: 0 auto;
    padding: 0 10px;
	font-size: 1.6rem;
	text-align: center;
    border: 1px solid #ddd;
    border-radius: 40px;
    background-color: #fff;
    box-shadow: 0px 1px 0 rgba(0, 0, 0, 0.1);
	box-sizing: border-box;
    color: #000;
    transition: .2s;
}
/*
#content a span::after {
	content: "";
	display: inline-block;
	width: 15px;
	height: 15px;
	margin: 0 0 0 10px;
	background-image: url("../../img/c_outside_icon01.svg");
	background-repeat: no-repeat;
	background-size: 15px 15px;
}
*/
#content a span::after {
	content: "";
	display: inline-block;
    width: 8px;
    height: 8px;
    border-top: 2px solid #00a0e9;
    border-right: 2px solid #00a0e9;
    transform: rotate(45deg);
	margin: 0 0 1px 5px;
}

@media screen and (min-width: 768px) {
	#content a:hover {
		border: 1px solid #00a0e9;
		background-color: #00a0e9;
		color: #fff;
	}
	#content a:hover span::after {
		/*background-image: url("../../img/c_outside_icon01_w.svg");*/
		border-color: #fff;
	}
}
@media screen and (max-width: 767px) {
	#content {
		padding: 40px 0 74px;
	}
	#content .title {
		padding: 2px 0 1px 15px;
		line-height: 1.25;
	}
}

/*----------------------------------------
	sec01
-----------------------------------------*/
.sec01 .title {
	margin-bottom: 34px;
}
.sec01 > p {
	margin-top: 28px;
}
.sec01 .wrap {
	display: flex;
}
.sec01 .text {
	flex: 0 0 52%;
	padding-right: 40px;
	box-sizing: border-box;
}
.sec01 .text p {
	margin-bottom: 30px;
}
.sec01 .image {
	flex: 0 0 52%;
}

@media screen and (max-width: 767px) {
	.sec01 .title {
		margin-bottom: 24px;
		padding-bottom: 5px;
	}
	.sec01 .wrap {
		display: block;
	}
	.sec01 .text {
		padding-right: 0;
	}
}

/*----------------------------------------
	sec02
-----------------------------------------*/
.sec02 .title {
	margin: 80px 0 39px;
}
.sec02 ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 40px;
}
.sec02 li {
	width: calc(50% - 20px);
}

@media screen and (max-width: 767px) {
	.sec02 .title {
		margin: 60px 0 29px;
	}
	.sec02 ul {
		display: block;
	}
	.sec02 li {
		width: 100%;
		margin-bottom: 30px;
	}
}