@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
------------------------------------------------------------*/
.en {
	font-family: 'Lato', sans-serif;
}

.pageTitle {
	margin-bottom: 76px;
	padding-top: 80px;
	height: 400px;
	display: flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	background: url("../img/contact/main_bg.jpg") no-repeat center center / cover;
}
.pageTitle .title {
	padding-top: 6px;
	color: #3A5CA7;
	font-size: 1.6rem;
	width: 200px;
	height: 200px;
	background-color: #fff;
	border-radius: 50%;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	font-weight: 400;
	line-height: 1;
	box-sizing: border-box;
}
.pageTitle .title .inner {
	display: block;
	width: 100%;
}
.pageTitle .title .en {
	margin-bottom: 14px;
	display: block;
	font-size: 3.7rem;
	font-weight: 900;
	letter-spacing: 0.05em;
}
@media all and (max-width: 896px) {
	.pageTitle {
		padding-top: 38px;
		height: 300px;
		background-image: url("../img/contact/main_bg_sp.jpg");
	}
	.pageTitle .title {
		padding-top: 4px;
		width: 150px;
		height: 150px;
		font-size: 1.2rem;
	}
	.pageTitle .title .en {
		font-size: 2.9rem;
		margin-bottom: 11px;
		letter-spacing: 0.03em;
	}
}


/*------------------------------------------------------------
	content
------------------------------------------------------------*/
.content {
	margin: 0 auto;
	max-width: 820px;
}
@media all and (max-width: 896px) {
	.content {
		margin: 0 20px;
		max-width: inherit;
	}
}

/*------------------------------------------------------------
	centerTxt
------------------------------------------------------------*/
.centerTxt {
	margin-bottom: 36px;
	text-align: center;
	font-size: 1.6rem;
	line-height: 2;
}

/*------------------------------------------------------------
	headLine01
------------------------------------------------------------*/
.headLine01 {
	margin-bottom: 60px;
	color: #3A5CA7;
	font-size: 1.8rem;
	text-align: center;
}

/*------------------------------------------------------------
	headLine02
------------------------------------------------------------*/
.headLine02 {
	margin-bottom: 80px;
	color: #3A5CA7;
	text-align: center;
	font-weight: 700;
	font-size: 1.6rem;
	letter-spacing: 0.1em;
}
.headLine02 .en {
	margin-bottom: 21px;
	padding-bottom: 5px;
	display: block;
	font-size: 3.9rem;
	letter-spacing: 0.04em;
	background: url("../img/common/line01.png") no-repeat center bottom / 254px;
	font-weight: 700;
}
@media all and (max-width: 896px) {
}


/*------------------------------------------------------------
	comBtn
------------------------------------------------------------*/
.comBtn {
	margin-top: 76px;
}
.comBtn a {
	margin: 0 auto;
	color: #1a1a1a;
	font-size: 1.6rem;
	font-weight: bold;
	width: 244px;
	height: 64px;
	border-radius: 32px;
	background: #f7df5a;
	box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
	display: flex;
	justify-content: center;
	align-items: center;
}
@media all and (min-width: 897px) {
	.comBtn a:hover {
		opacity: 0.7;
	}
}

/*------------------------------------------------------------
	fadeIn
------------------------------------------------------------*/

.fadeIn01{
animation-name:fadeInAnime;
animation-duration:2.0s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeInAnime{
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fadeIn {
	opacity: 0;
	-webkit-transition: all 1s;
	transition: all 1.2s;
}

.fadeIn.on {
	opacity: 1;
}

.delay01 {
	transition-delay: 0.2s;
}
.delay02 {
	transition-delay: 0.4s;
}
.delay03 {
	transition-delay: 0.6s;
}
