@charset "utf-8";

/* ------------------------------
    index
------------------------------ */

.sec_ttl {
	padding-bottom: 30px;
	margin-bottom: 30px;
	position: relative;
	color: #00529c;
	font-size: 2.0rem;
	line-height: 1.4;
	font-weight: bold;
	text-align: center;
}
.sec_ttl .roboto {
	font-size: 4.4rem;
	letter-spacing: .1em;
}
.sec_ttl::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 4px;
	background: #00529c;
}

.section {
	padding: 50px 0;
}

@media screen and (max-width : 767px) {

	.sec_ttl {
		padding-bottom: 5vw;
		margin-bottom: 5vw;
		font-size: 4vw;
	}
	.sec_ttl .roboto {
		font-size: 7vw;
	}
	.sec_ttl::before {
		width: 40px;
		height: 2px;
	}

	.section {
		padding: 8vw 0;
	}

}


/* sec_mv */

#sec_mv {
	position: relative;
}
#sec_mv .wrap {
	position: absolute;
	right: 50%;
	top: 0;
	transform: translateX(50%);
	height: 100%;
	width: 100%;
	max-width: 1200px;
}
#sec_mv .item {
	text-align: center;
}
#sec_mv .txt {
	position: absolute;
	left: 0;
	bottom: 80px;
}
#sec_mv .txt p {
	display: inline-block;
	background: #fff;
	margin-top: 20px;
}
#sec_mv .txt p span {
	display: inline-block;
	font-size: 2.4rem;
	line-height: 2.5;
	font-weight: bold;
	padding: 0 1em;
	color: #000;
}
.ie #sec_mv .txt p span {
	line-height: 2.1;
	padding-top: .3em;
}
#sec_mv .txt p {
	transition: all 1.2s ease;
	max-width: 0;
	overflow: hidden;
	white-space: nowrap;
}
#sec_mv .txt p.active {
	max-width: 400px;
}
#sec_mv .txt p span {
	transition: all .6s ease;
	transition-delay: .6s;
	transform: translateX(-100%);
}
#sec_mv .txt p.active span {
	transform: translateX(0);
}

#sec_mv .ttl {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
	white-space: nowrap;
}
#sec_mv .ttl .bg01,
#sec_mv .ttl .bg02 {
	background-image: url("../img/index/mv_ttl_bg01.png");
	background-blend-mode: multiply;
	background-size: contain;
	width: 391px;
	height: 452px;
	position: absolute;
	top: 0;
	right: 0;
	transition: all 1.2s ease;
}
#sec_mv .ttl .bg01 {
	transform: rotate(-30deg)translate(3%,3%);
}
#sec_mv .ttl .bg02 {
	background-image: url("../img/index/mv_ttl_bg02.png");
	position: relative;
	transform: rotate(30deg);
}
#sec_mv .ttl h2 {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-40%);
	font-size: 6.3rem;
	line-height: 1.2;
	letter-spacing: .1em;
	color: #fff;
	transition: all 1.2s ease;
	transition-delay: .6s;
	opacity: 0;
}
#sec_mv .ttl.active .bg01,
#sec_mv .ttl.active .bg02 {
	transform: rotate(0);
}
#sec_mv .ttl.active .bg01 {
	transform: rotate(0)translate(3%,3%);
}
#sec_mv .ttl.active h2 {
	transform: translate(-50%,-50%);
	opacity: 1;
}

@media screen and (max-width : 767px) {

	#sec_mv .txt {
		display: none;
		bottom: 3vw;
	}
	#sec_mv .txt p {
		margin-top: 20px;
	}
	#sec_mv .txt p span {
		font-size: 4vw;
	}
	#sec_mv .ttl .bg01,
	#sec_mv .ttl .bg02 {
		background-repeat: no-repeat;
		width: 32vw;
		height: 37vw;
	}
	#sec_mv .ttl .bg01 {
		transform: rotate(-30deg)translate(5%,5%);
	}
	#sec_mv .ttl.active .bg01 {
		transform: rotate(0)translate(5%,5%);
	}
	#sec_mv .ttl h2 {
		font-size: 5vw;
	}

}


/* sec_message */

#sec_message {
	text-align: center;
}
#sec_message .txt {
	line-height: 2.2;
}

@media screen and (max-width : 767px) {

	#sec_message {
		text-align: left;
	}

}


/* sec_advantage */

#sec_advantage {
	background: #edf4fa;
	text-align: center;
}
#sec_advantage .ttl {
	color: #00529c;
	font-size: 2.2rem;
	line-height: 1.4;
	font-weight: bold;
	margin: 2.5em 0 1.5em;
}
#sec_advantage .list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
	margin: 40px 0 0;
}
#sec_advantage .list .item {
	background: #fff;
	width: 285px;
	height: 250px;
	margin-top: 20px;
	padding: 40px;
}
#sec_advantage .list .item .img {
	width: 122px;
	height: 122px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
}
#sec_advantage .list .item .img img {
	max-width: 100%;
	max-height: 100%;
}
#sec_advantage .list .item .txt {
	color: #00529c;
	font-size: 2.0rem;
	line-height: 1.4;
	font-weight: bold;
	text-align: center;
}

@media screen and (max-width : 767px) {

	#sec_advantage {
		text-align: left;
	}
	#sec_advantage .ttl {
		font-size: 5vw;
		text-align: center;
		margin: 1.5em 0 1em;
	}
	#sec_advantage .list {
		margin: 5vw 0 0;
	}
	#sec_advantage .list .item {
		width: 48%;
		height: auto;
		margin-top: 3vw;
		padding: 5vw;
	}
	#sec_advantage .list .item .img {
		width: 20vw;
		height: 20vw;
		margin: 0 auto 3vw;
	}
	#sec_advantage .list .item .txt {
		font-size: 3.5vw;
	}

}


/* sec_field */

#sec_field .wrap {
	width: 980px;
}
#sec_field .sec01 {
	justify-content: center;
	margin: 80px 0;
}
#sec_field .sec01 p {
	width: 365px;
	height: 365px;
	border-radius: 100%;
	margin: 20px;
	background: linear-gradient(-136deg, #165ac0, #044981);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 2.8rem;
	line-height: 1.4;
	font-weight: bold;
	text-align: center;
}
#sec_field .sec02:nth-child(n+4) {
	margin-top: 150px;
}
#sec_field .sec02 .ttl {
	background: linear-gradient(to bottom, #165ac0, #044981);
	color: #fff;
	font-size: 2.2rem;
	line-height: 1.4;
	font-weight: bold;
	padding: .5em 1em;
}
#sec_field .sec02 .ttl .small {
	font-size: 1.8rem;
}
#sec_field .sec02 .txt {
	margin: 1em 0;
}
#sec_field .sec02 .txt .small {
	font-size: 1.3rem;
}
#sec_field .sec02 .txt .big {
	font-size: 1.8rem;
	font-weight: bold;
}
#sec_field .sec02 .feature {
	background: #edf4fa;
	padding: 30px;
}
#sec_field .sec02 .feature .item {
	color: #00529c;
	font-size: 2.0rem;
	font-weight: bold;
	padding-left: 1em;
	text-indent: -1em;
}
#sec_field .sec02 .flow {
	margin: 30px 0;
	justify-content: center;
}
#sec_field .sec02 .flow dl {
	position: relative;
	width: 172px;
}
#sec_field .sec02 .flow dl + dl {
	margin-left: 25px;
}
#sec_field .sec02 .flow dl + dl::before {
	content: '';
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 7px 0 7px 12px;
	border-color: transparent transparent transparent #323c46;
	position: absolute;
	left: -20px;
	top: 70px;
}
#sec_field .sec02 .flow dl dt {
	color: #000;
	background: #a1cdea;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	font-size: 2.0rem;
	line-height: 1.2;
	font-weight: bold;
	width: 154px;
	height: 154px;
	border-radius: 100%;
	margin: 0 auto 10px;
}
#sec_field .sec02 .flow dl:nth-child(even) dt {
	background: #d7e9fe;
}
#sec_field .sec02 .flow dl dd {
	font-size: 1.5rem;
	line-height: 1.6;
}
#sec_field .sec03 {
	margin-top: 80px;
}
#sec_field .sec03 .img {
	flex-shrink: 0;
	order: 2;
}
#sec_field .sec03 .detail {
	width: 100%;
	color: #333;
}
#sec_field .sec03 .ttl {
	border-bottom: 1px solid #ddd;
	font-size: 2.2rem;
	line-height: 1.4;
	font-weight: bold;
	padding-bottom: .5em;
	margin-bottom: .8em;
}
#sec_field .sec03 .txt {
	font-size: 1.8rem;
	font-weight: bold;
}
#sec_field .sec03 .btn_arrow {
	margin-top: 60px;
}
#sec_field .sec03 .btn_arrow a {
	color: #00529c;
	border: 2px solid #00529c;
	width: 450px;
	height: 90px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	line-height: 1.4;
	font-weight: bold;
	overflow: hidden;
	position: relative;
	transition: all 0.3s ease-in-out;
	z-index: 100;
}
#sec_field .sec03 .btn_arrow a:hover,#sec_field .sec03 .btn_arrow a:focus{
	color: #fff;
	opacity: 1;
}
#sec_field .sec03 .btn_arrow a::before {
	content: '';
	z-index: -1;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: #00529c;
	transition: transform 0.3s ease-in-out;
	transform: scale(0);
}
#sec_field .sec03 .btn_arrow a:hover::before, #sec_field .sec03 .btn_arrow a:focus::before {
	transform: none;
}
#sec_field .sec03 .btn_arrow a::after {
	content: '';
	position: absolute;
	right: 1.5em;
	top: 50%;
	transform: translateY(-50%)rotate(45deg);
	width: .8em;
	height: .8em;
	border-top: 2px solid #00529c;
	border-right: 2px solid #00529c;
}
#sec_field .sec03 .btn_arrow a:hover::after, #sec_field .sec03 .btn_arrow a:focus::after {
	border-color: #fff;
}

@media screen and (max-width : 767px) {

	#sec_field .wrap {
		width: 90%;
	}
	#sec_field .sec01 {
		margin: 8vw 0;
	}
	#sec_field .sec01 p {
		width: 40vw;
		height: 40vw;
		margin: 3vw;
		font-size: 4vw;
		white-space: nowrap;
	}
	#sec_field .sec02:nth-child(n+4) {
		margin-top: 10vw;
	}
	#sec_field .sec02 .ttl {
		font-size: 4vw;
	}
	#sec_field .sec02 .ttl .small {
		font-size: 3vw;
	}
	#sec_field .sec02 .txt .small {
		font-size: 3vw;
	}
	#sec_field .sec02 .txt .big {
		font-size: 4vw;
	}
	#sec_field .sec02 .feature {
		padding: 5vw;
	}
	#sec_field .sec02 .feature .item {
		font-size: 4vw;
	}
	#sec_field .sec02 .flow {
		justify-content: flex-start;
		flex-wrap: wrap;
		margin: 5vw;
	}
	#sec_field .sec02 .flow dl {
		width: 45%;
	}
	#sec_field .sec02 .flow dl + dl {
		margin-left: 0;
	}
	#sec_field .sec02 .flow dl:nth-child(even) {
		margin-left: 10%;
	}
	#sec_field .sec02 .flow dl:nth-child(n+3) {
		margin-top: 3%;
	}
	#sec_field .sec02 .flow dl + dl::before {
		border-width: 7px 0 7px 12px;
		left: -5vw;
		top: 15vw;
	}
	#sec_field .sec02 .flow dl dt {
		font-size: 4vw;
		width: 35vw;
		height: 35vw;
		margin: 0 auto 10px;
	}
	#sec_field .sec02 .flow dl dd {
		font-size: 3.5vw;
	}
	#sec_field .sec03 {
		margin-top: 8vw;
		display: block;
	}
	#sec_field .sec03 .img {
		text-align: center;
	}
	#sec_field .sec03 .ttl {
		font-size: 4vw;
		margin-top: 5vw;
	}
	#sec_field .sec03 .txt {
		font-size: 3.5vw;
	}
	#sec_field .sec03 .btn_arrow {
		margin-top: 5vw;
	}
	#sec_field .sec03 .btn_arrow a {
		width: 100%;
		height: 15vw;
	}

}


/* sec_member */

#sec_member .list .item {
	flex: 1 1 auto;
	position: relative;
}
#sec_member .list .item a:hover {
	opacity: 1;
}
#sec_member .list .item .img img {
	width: 100%;
}
#sec_member .list .item .name {
	background: rgba(0, 0, 0, .5);
	color: #fff;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	opacity: 0;
	transition: opacity .5s;
	text-align: center;
}
#sec_member .list .item a:hover .name {
	opacity: 1;
}

@media screen and (max-width : 767px) {

	#sec_member .list {
		flex-wrap: wrap;
	}
	#sec_member .list .item {
		width: 50%;
	}
	#sec_member .list .item .name {
		font-size: 3vw;
		padding: 5vw;
	}

}


/* sec_requirements */

#sec_requirements {
	padding-bottom: 150px;
}
#sec_requirements .wrap {
	width: 980px;
}
#sec_requirements .sec_ttl {
	margin-bottom: 80px;
}
#sec_requirements .acd {
	background: #edf4fa;
	color: #00529c;
	border: 2px solid #00529c;
	width: 100%;
	height: 90px;
	display: inline-flex;
	align-items: center;
	justify-content: flex-start;
	padding: 0 1.5em;
	font-size: 2.0rem;
	line-height: 1.4;
	font-weight: bold;
	position: relative;
	margin-bottom: 30px;
}
#sec_requirements .acd::after {
	content: '';
	position: absolute;
	right: 1.5em;
	top: 50%;
	transform: translateY(-60%)rotate(45deg);
	width: .6em;
	height: .6em;
	border-right: 2px solid #00529c;
	border-bottom: 2px solid #00529c;
}
#sec_requirements .acd.acd-open::after {
	transform: translateY(-40%)rotate(225deg);
}
#sec_requirements .box {
	padding: 0 0 80px;
}
#sec_requirements .table {
	border-collapse: collapse;
}
#sec_requirements .table th,
#sec_requirements .table td {
	border: 1px solid #ddd;
	padding: 15px 25px;
	text-align: left;
}
#sec_requirements .table th {
	background: #edf4fa;
	color: #333;
	white-space: nowrap;
	text-align: center;
	font-size: 1.8rem;
	line-height: 1.6;
	font-weight: bold;
}
#sec_requirements .table td {
	line-height: 1.8;
}
#sec_requirements .table hr {
	border: none;
	border-top: 1px dotted #ddd;
	margin: 20px 0;
}
#sec_requirements .table a {
	color: #0052A4;
	text-decoration: underline;
}
#sec_requirements .table .small {
	display: inline-block;
	font-size: 1.4rem;
	line-height: 1.8;
	margin: .3em 0;
}
#sec_requirements .btn_round {
	margin-top: 60px;
	text-align: center;
}
#sec_requirements .btn_round a {
	font-size: 2.0rem;
	letter-spacing: .16em;
	width: 324px;
	height: 90px;
}

@media screen and (max-width : 767px) {

	#sec_requirements {
		padding-bottom: 15vw;
	}
	#sec_requirements .wrap {
		width: 90%;
	}
	#sec_requirements .sec_ttl {
		margin-bottom: 8vw;
	}
	#sec_requirements .acd {
		width: 100%;
		height: 15vw;
		font-size: 4vw;
		margin-bottom: 3vw;
	}
	#sec_requirements .box {
		padding: 0 0 10vw;
	}
	#sec_requirements .table,
	#sec_requirements .table tbody,
	#sec_requirements .table tr,
	#sec_requirements .table th,
	#sec_requirements .table td {
		display: block;
	}
	#sec_requirements .table th,
	#sec_requirements .table td {
		font-size: 3.5vw;
		padding: 3vw 5vw;
		margin-bottom: -1px;
	}
	#sec_requirements .table th {
		background: #F1F3F6;
		text-align: left;
	}
	#sec_requirements .table hr {
		margin: 5vw 0;
	}
	#sec_requirements .table .small {
		font-size: 3vw;
	}
	#sec_requirements .btn_round {
		margin-top: 5vw;
	}
	#sec_requirements .btn_round a {
		font-size: 4vw;
		width: 60%;
		height: 15vw;
	}

}