@charset "utf-8";
/*------------------------------------------------------------
	汎用スタイル
------------------------------------------------------------*/
/* 81-lyx */
/* clearfix */	
.clearfix:after {content: "";display: block;clear: both;}
/* flex */	
.flex,.flexA,.flexB,.flexC {display: flex;flex-wrap: wrap;}
.flexA {justify-content: space-around;}
.flexB {justify-content: space-between;}
.flexC {justify-content: center;}
/*------------------------------------------------------------
	font
------------------------------------------------------------*/
.roboto {
	font-weight: 700;
	font-family: "Roboto", sans-serif;
}
/*------------------------------------------------------------
	content
------------------------------------------------------------*/
.content {
	max-width: 118rem;
	margin: 0 auto;
	position: relative;
	z-index: 10;
}
@media all and (max-width: 896px) {
	.content {
		margin: 0 1.6rem;
		max-width: inherit;
	}
}

/*------------------------------------------------------------
	headLine01
------------------------------------------------------------*/
.headLine01 {
	margin-bottom: 7.2rem;
	color: #ffd800;
	font-size: 2.8rem;
	font-weight: 700;
}
.headLine01 .en {
	margin-bottom: 1rem;
	display: block;
	color: #1b4387;
	font-size: 8.8rem;
	line-height: 1;
	font-weight: 700;
	font-family: "Roboto", sans-serif;
}
@media all and (max-width: 896px) {
	.headLine01 {
		margin-bottom: 3.6rem;
		font-size: 1.6rem;
	}
	.headLine01 .en {
		margin-bottom: 0.4rem;
		font-size: 4.8rem;
	}
}
/*------------------------------------------------------------
	headLine02
------------------------------------------------------------*/
.headLine02 {
	margin-bottom: 1.6rem;
	color: #2d4ba0;
	font-size: 3.2rem;
	font-weight: 700;
}
@media all and (max-width: 896px) {
	.headLine02 {
		margin-bottom: 1.5rem;
		font-size: 2.4rem;
	}
}
/*------------------------------------------------------------
	headLine03
------------------------------------------------------------*/
.headLine03 {
	color: #1dc8fd;
	font-size: 4rem;
	font-weight: 700;
}
@media all and (max-width: 896px) {
	.headLine03 {
		font-size: 2.4rem;
	}
}
/*------------------------------------------------------------
    headLine03
------------------------------------------------------------*/
.headLine03 {
    margin-bottom: 8.3rem;
    color: #1dc8fd;
    font-size: 4rem;
    font-weight: 700;
}
@media all and (max-width: 896px) {
    .headLine03 {
        margin-bottom: 2.7rem;
        font-size: 2.4rem;
    }
}
/*------------------------------------------------------------
    headLine04
------------------------------------------------------------*/
.headLine04 {
    margin-bottom: 1.1rem;
    padding-left: 3.3rem;
    color: #2d4ba0;
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    background: url("../img/common/icon07.png") no-repeat left 1rem / 2rem;
}
@media all and (max-width: 896px) {
    .headLine04 {
        margin-bottom: 1.5rem;
        padding-left: 3.5rem;
        font-size: 2.4rem;
        line-height: 1.75;
        background-position: left 1.1rem;
    }
}
/*------------------------------------------------------------
	headLine05
------------------------------------------------------------*/
.headLine05 {
	margin-bottom: 4rem;
	text-align: center;
	color: #1b4387;
	font-weight: 700;
	font-size: 4rem;
}
.headLine05 .en {
	margin-top: 1rem;
	display: block;
	font-size: 2.4rem;
	color: #2d4ba0;
}
@media all and (max-width: 896px) {
	.headLine05 {
		margin-bottom: 4rem;
		font-size: 3.2rem;
	}
	.headLine05 .en {
		margin-top: 0.7rem;
		font-size: 2rem;
	}
}
/*------------------------------------------------------------
	comText
------------------------------------------------------------*/
.comText {
	margin-bottom: 8.8rem;
	line-height: 2.1;
	font-weight: 700;
}
@media all and (max-width: 896px) {
	.comText {
		margin-bottom: 4.3rem;
		line-height: 2;
	}
}
/*------------------------------------------------------------
	comBtn
------------------------------------------------------------*/
.comBtn {
	margin: 7.5rem auto 0;
	width: 36rem;
	color: #fff;
	text-align: center;
	border-radius: 3.6rem;
	overflow: hidden;
	cursor: pointer;
}
.comBtn span {
	min-height: 7.2rem;
	display: flex;
	font-weight: 700;
	align-items: center;
	justify-content: center;
	background: url(../img/common/icon02.png) no-repeat right 4rem center / 1.2rem,linear-gradient(to right,#7ad1ec 0%, #2d4ba0 100%);
	transition: .3s;
}
.comBtn span.text02 {
	display: none;
}
.comBtn.on span {
	background: url(../img/common/icon04.png) no-repeat right 4rem center / 1.2rem,linear-gradient(to right,#7ad1ec 0%, #2d4ba0 100%);
}
.comBtn.on span.text01 {
	display: none;
}
.comBtn.on span.text02 {
	display: flex;
}
@media all and (min-width: 897px) {
	.comBtn:hover span {
		background-color: #ffd800;
		background-image: url(../img/common/icon03.png);
		color: #2d4ba0;
	}
	.comBtn.on:hover span {
		background-image: url(../img/common/icon05.png);
		}
}
@media all and (max-width: 896px) {
	.comBtn {
		position: relative;
		z-index: 6;
		margin: 6.5rem auto 0;
		width: 24rem;
		border-radius: 2.7rem;
	}
	.comBtn span {
		min-height: 5.4rem;
		font-size: 1.5rem;
		font-weight: 700;
		background: url(../img/common/icon02.png) no-repeat right 2.2rem center / 1rem,linear-gradient(to right,#7ad1ec 0%, #2d4ba0 100%);
	}
	.comBtn.on span {
		min-height: 5.4rem;
		font-size: 1.5rem;
		font-weight: 700;
		background: url(../img/common/icon04.png) no-repeat right 2.2rem center / 1rem,linear-gradient(to right,#7ad1ec 0%, #2d4ba0 100%);
	}
}
/*------------------------------------------------------------
	comPhotoBox
------------------------------------------------------------*/
.comPhotoBox {
	position: relative;
	z-index: 3;
}
.comPhotoBox .photo {
	position: relative;
	z-index: 2;
}
.comPhotoBox .photo img {
	width: 100%;
}
.comPhotoBox .lImage {
	position: absolute;
	top: -39rem;
	left: -24.5rem;
	z-index: 1;
	width: 81.6rem;
	pointer-events: none;
}
.comPhotoBox .rImage {
	position: absolute;
	bottom: -33.5rem;
	right: -37rem;
	width: 115.1rem;
	height: 50rem;
	z-index: 1;
	overflow: hidden;
	pointer-events: none;
}
.comPhotoBox .rImage img {
	width: 100%;
	height: 50rem;
	object-fit: cover;
	object-position: right bottom;
}
.comPhotoBox01 .lImage {
	top: -49rem;
	left: -32rem;
	width: 91.5rem;
	height: 91.5rem;
}
.comPhotoBox01 .rImage {
	width: 81.6rem;
	height: 81.6rem;
	right: -15rem;
	bottom: -36.5rem;
}
.comPhotoBox01 .rImage img {
	height: auto;
}
@media all and (min-width: 897px) and (max-width: 1900px) {
	.comPhotoBox .lImage {
		top: -19vw !important;
		width: 40vw !important;
		left: -15vw !important;
	}
	.comPhotoBox01 .rImage {
		width: 40vw !important;
		height: 40vw !important;
		right: -15rem;
		bottom: -36.5rem;
	}
}
@media all and (max-width: 896px) {
	.comPhotoBox {
		z-index: inherit;
	}
	.comPhotoBox .photo {
		position: relative;
		z-index: 2;
		aspect-ratio: 375/280;
	}
	.comPhotoBox .photo img {
		height: 100%;
		object-fit: cover;
	}
	.comPhotoBox .lImage {
		top: -21rem;
		left: -9rem;
		width: 36.2rem;
	}
	.comPhotoBox01 .photo {
		aspect-ratio: 375/240;
	}
	.comPhotoBox01 .lImage {
		top: -10rem;
		left: -7.5rem;
		width: 26.4rem;
		height: 26.4rem;
	}
	.comPhotoBox01 .rImage {
		width: 29.2rem;
		height: 29.2rem;
		right: -10.3rem;
		bottom: -13rem;
	}
}
/*------------------------------------------------------------
	common
------------------------------------------------------------*/
.mb4rem {
  margin-bottom: 4rem !important;
}

@media all and (max-width: 896px) {
}
/*------------------------------------------------------------
	common
------------------------------------------------------------*/
@media all and (max-width: 896px) {
}
/*------------------------------------------------------------
	common
------------------------------------------------------------*/
@media all and (max-width: 896px) {
}

