/*=======================================================
all page common
=======================================================*/

/* background
------------------------------------*/
.bg{
	background: #efeadf;
	width: 100%;
	height: 100%!important;
}

.bg-w{
	background: #fff;
}


/* br
------------------------------------*/
.sp-br{
		display: inline-block;
	}
@media screen and (max-width: 896px){
	.sp-br{
		display: none;
	}
}
.pc-br{
		display: none;
	}
@media screen and (max-width: 896px){
.pc-br{
		display: inline-block;
	}
}

/* text common
------------------------------------*/
.eng{
	font-family: 'Raleway', sans-serif;
}
.eng-b{
	font-weight: 700;
	font-family: 'Raleway', sans-serif;
}

.jp-b{
	font-weight: 600;
	font-family: 'Noto Sans JP', sans-serif;
}
.t-center{
	text-align: center;
}

.fz14{
	font-size: 1.4rem;
	line-height: 1.8;
}

.font-line{
	margin-bottom: 0.5em;
}
@media screen and (max-width: 896px){
.font-line{
	margin-bottom: 1.5em;
	}
}

/*display: flex
------------------------------------*/
.flex{
	width: 100%;
	display : -webkit-box; 
	display : -webkit-flex; 
	display : -ms-flexbox;  
	display : flex;
}

.wrap{
	flex-wrap: wrap;
	-webkit-flex-flow : row wrap; 
	-ms-flex-flow: row wrap; 
	flex-flow: row wrap;
}

/* sp only  device
------------------------------------*/
@media screen and (max-width: 896px){
.sp-block{  
	display: block;
	}
}

@media screen and (max-width: 896px){
.sp-no{  
	display: none;
	}	
}

/*=======================================================
section common
=======================================================*/

#front-main{ 
	width: 100%;
	margin: 10em auto 0;
}
#pages-main{ 
	width: 1050px;
	margin: 0 auto;
}
@media screen and (max-width: 896px){
	#front-main{
	width: 100%;
	margin: 5em auto 0;
}
#pages-main{
	width: 95%;
	margin: 0 auto;
	}
}

.top-shift{
	margin-top: 5em!important;
}

/* section
----------------------------------*/
.front-sec { 
	width: 1050px;
	margin: 0 auto 8em;
	box-sizing: border-box;
	}
@media screen and (max-width: 896px) { 
.front-sec { 
	width: 90%;
	}
}
.pages-sec { 
	width: 1050px;
	margin: 0 auto 8em;
	box-sizing: border-box;
	}
@media screen and (max-width: 896px) { 
.pages-sec { 
	width: 100%;
	}
}

/* section title
----------------------------------*/
.sec-ttl-eng{ 
	font-size: 5rem;
	margin-bottom: 1em;
	letter-spacing: 0.1em;
}
@media screen and (max-width: 896px){ 
.sec-ttl-eng{ 
	font-size: 4rem;
	}
}
.sec-ttl-position-eng{ 
	font-size: 5rem;
	text-align: center;
	margin-bottom: 1em;
	letter-spacing: 0.1em;
}
@media screen and (max-width: 896px){ 
.sec-ttl-position-eng{
	font-size: 4rem;
	}
}

.sec-sub-ttl{
	font-size: 5rem;
	letter-spacing: 0.1em;
	text-align: left;
}
@media screen and (max-width: 896px){
	.sec-sub-ttl{
	font-size: 4em;
	letter-spacing: 0.1em;
	text-align: left;
	}
}

/*=======================================================
column
=======================================================*/
.col2{ 
	width: 49%;
}
.col2:nth-last-of-type(2){
	margin-right: 1.4em;
}
@media screen and (max-width: 896px){
.col2{ 
	width: 100%;
	}
.col2:nth-last-of-type(2){
	margin: 0 0 0 0;
	margin: 0 0 1.5em 0;
	}
}

/*front view more
----------------------------------*/
.col3{ 
	width: 32%;
}
@media screen and (max-width: 999px){
	.col3{
	width: 31.9%;
	}
}
@media screen and (max-width: 896px){
.col3{
	width: 100%;
	}
}
.col3:nth-child(2),
.col3:nth-child(5){
	margin: 0 1.5em;
}
@media screen and (max-width: 999px){
.col3:nth-child(2),
.col3:nth-child(5){
	margin:0 1.2em;
	}
}
@media screen and (max-width: 896px){
	.col3:nth-child(2n){
	margin: 1.5em 0;
	}
}

figure{
	padding: 0;
	margin: 0;
}
.col6{ 
	width: 8%;
	margin: 0 0.5em 0 0;
}
@media screen and (max-width: 896px){
.col6{
	width: 10%;
	}
}

.mb{
	margin-bottom: 5em;
}

.mt{
	margin-top: 2em;
}

/*=======================================================
フェイドイン
=======================================================*/
.fade-in {
  opacity: 0;
  transition-duration: 1000ms;
  transition-property: opacity, transform;
}

.fade-in-up {
  transform: translate(0, 50px);
}

.fade-in-down {
  transform: translate(0, -50px);
}

.fade-in-left {
  transform: translate(-50px, 0);
}

.fade-in-right {
  transform: translate(50px, 0);
}

.scroll-in {
  opacity: 1;
  transform: translate(0, 0);
}

.open{
	animation: fadein 1.5s ease 0s 1 normal;
	-webkit-animation: fadein 1.5s ease 0s 1 normal;
}
@keyframes fadeIn{
	from{
		opacity: 0;
		transform: translate(0, 50px);
	}
	to{
		opacity: 1;
		transform: translateY(0);
	}
}
@-webkit-keyframes fadein{
	from{
		opacity: 0;
		transform: translate(0, 50px);
	}
	to{
		opacity: 1;
		transform: translateY(0);
	}
}
