@charset "utf-8";
/*------------------------------------------------------------
	汎用スタイル
------------------------------------------------------------*/
/* 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
------------------------------------------------------------*/
#main p,
#main span,
#main li,
#main dl {
	letter-spacing: 0.05em;
	line-height: 2.1578947;
}
@media all and (max-width: 767px) {
	#main p,
	#main span,
	#main li,
	#main dt,
	#main dd {
		line-height: 1.85714285;
	}
}
/*------------------------------------------------------------
	comBtn
------------------------------------------------------------*/
.comBtn {
	margin-left: auto;
	width: 26rem;
	background: #fff;
}
.comBtn a,
.comBtn span {
	padding: 0.3rem 3.4rem 0 0;
	height: 8.4rem;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #000064;
	font-size: 2.174rem;
	font-weight: normal;
	letter-spacing: 0.06em;
	background: #D6D6D6 url(../image/main_icon_01.png) no-repeat right 3rem center / 2.3rem;
	font-family: "Arial Bold", sans-serif;
}
.comBtn a.disable {
	padding: 0.2rem 1.7rem 0;
	background: #cbcbcb;
	pointer-events: none;
}
.comBtn.blue a,
.comBtn.blue span {
	color: #fff;
	background-color: #1746FF;
	background-image: url(../image/main_icon_03.png);
}
.comBtn.white {
	width: 14rem;
}
.comBtn.white a,
.comBtn.white span {
	padding-right: 1.8rem;
	height: 4.5rem;
	color: #AFAFAF;
	font-size: 1.2rem;
	background: #fff url(../image/main_icon_02.png) no-repeat right 1.6rem center / 1.2rem;
}
@media all and (max-width: 767px) {
	.comBtn {
		width: 14.05rem;
	}
	.comBtn a,
	.comBtn span {
		padding: 0.2rem 1.7rem 0 0;
		height: 4rem;
		font-size: 1.165rem;
		background-position: right 1.7rem center;
		background-size: 1.1rem;
	}
	.comBtn a.disable {
		padding: 0.1rem 1rem 0;
	}
	.comBtn.white {
		width: 10.8rem;
	}
	.comBtn.white a,
	.comBtn.white span {
		padding-right: 1.2rem;
		height: 3.5rem;
		font-size: 0.9rem;
		background-size: 0.9rem;
		background-position: right 1.2rem center;
	}
}
/*------------------------------------------------------------
	content
------------------------------------------------------------*/
.content {
	margin: 0 auto;
	width: 109.4rem;
	max-width: 90%;
}
@media all and (max-width: 767px) {
	.content {
		margin: 0 1.5rem;
		width: auto !important;
		max-width: initial !important;
	}
}
/*------------------------------------------------------------
	fade
------------------------------------------------------------*/
.fadeUp,
.fadeUp01 {
	display: block;
	overflow: hidden;
}
.fadeUp .fadeSub,
.fadeUp01 .fadeSub {
	display: block;
	transition: transform 1.4s cubic-bezier(0.16, 1, 0.3, 1);
	transform: translateY(101%);
}
.fadeUp.on .fadeSub,
.fadeUp01.on .fadeSub {
	transform: translateY(0);
}
.fadeRight {
	opacity: 0;
	transform: translateX(32rem) translateY(12rem) rotate(30deg);
	transition: 0.5s;
}
.fadeRight.on {
	opacity: 1;
	transform: translateX(0rem) translateY(0rem) rotate(0deg);
}
.fadeLeft {
	opacity: 0;
	transform: translateX(-32rem) translateY(12rem) rotate(-30deg);
	transition: 0.5s;
}
.fadeLeft.on {
	opacity: 1;
	transform: translateX(0rem) translateY(0rem) rotate(0deg);
}
.fadeInUp {
	opacity: 0;
	transform: translateY(5rem);
	transition: all 800ms 200ms;
}
.fadeInUp.on {
	opacity: 1;
	transform: translateY(0);
}