@charset "utf-8";
/*------------------------------------------------------------
	汎用スタイル
------------------------------------------------------------*/
/* 81-ltt */
/* 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;
}
/*------------------------------------------------------------
	common
------------------------------------------------------------*/
.en {
	font-family: "Oswald", sans-serif;
}
.content {
	margin: 0 auto;
	max-width: 120rem;
}
@media all and (max-width: 896px) {
	.content {
		margin: 0 1rem;
	}
}
/*------------------------------------------------------------
	headLine01
------------------------------------------------------------*/
.headLine01 {
	margin-bottom: 6.7rem;
	position: relative;
}
.headLine01:after {
	position: absolute;
	left: -1.7rem;
	top: 10rem;
	width: 5.8rem;
	height: 13.2rem;
	background: url(../img/index/ttl_bg.png) no-repeat left top/100%;
	content: "";
}
.headLine01 .en {
	margin-left: -1rem;
	font-size: 15.9rem;
	font-weight: 300;
	line-height: 1;
	letter-spacing: 0.025em;
	color: transparent;
	text-stroke: 1px #A5CCDE;
	-webkit-text-stroke: 1px #A5CCDE;
}
.headLine01 .jp {
	margin: 0.5rem 0 0 4rem;
	display: block;
	line-height: 1.85;
	color: #000;
	font-size: 2.6rem;
	font-weight: 400;
	letter-spacing: 0.025em;
}
@media all and (max-width: 896px) {
	.headLine01 {
		margin-bottom: 3.2rem;
	}
	.headLine01:after {
		left: -0.7rem;
		top: 5.1rem;
		width: 2.9rem;
		height: 6.6rem;
	}
	.headLine01 .en {
		margin-left: -0.4rem;
		font-size: 8rem;
	}
	.headLine01 .jp {
		margin: 0.3rem 0 0 2.2rem;
		font-size: 1.3rem;
	}
}
/*------------------------------------------------------------
	headLine02
------------------------------------------------------------*/
.headLine02 {
	margin-bottom: 1.7rem;
	color: #5394C8;
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.4;
}
@media all and (max-width: 896px) {
	.headLine02 {
		margin-bottom: 0.8rem;
		font-size: 1.8rem;
		font-weight: 400;
		line-height: 1.67;
	}
}
/*------------------------------------------------------------
	comBtn
------------------------------------------------------------*/
.comBtn a {
	padding: 1rem 2.5rem 1rem 2rem;
	display: block;
	color: #fff;
	font-size: 1.3rem;
	font-weight: 500;
	letter-spacing: 0.025em;
	text-align: center;
	background: #2EC7BD;
	border-radius: 0.6rem;
}
.comBtn a span {
	padding-left: 3rem;
	display: inline-block;
	background: url(../img/common/icon03.png) no-repeat left 0.2rem/2.2rem;
}
@media all and (max-width: 896px) {
	.comBtn a {
		padding: 0.4rem 0.8rem 0.6rem 1rem;
		font-size: 1rem;
		border-radius: 0.3rem;
	}
	.comBtn a span {
		padding-left: 2.2rem;
		background-size: 1.6rem;
	}
}
/*------------------------------------------------------------
	fadeIn
------------------------------------------------------------*/
.fadeIn {
	opacity: 0;
	transform: translateY(3rem);
	transition: all 1s;
}
.fadeIn.on {
	opacity: 1;
	transform: none;
}