@charset "utf-8";
/* ===================================================================

 file name  :common.css
 style info :共通のスタイル指定（ストラクチャ、ヘッダー、フッター）

=================================================================== */
/*
@media screen and (max-width: 767px) {
	tablet large-smartphone
}
*/
/* ---------------------------------------------------------------------------

		body
			ロード後fadeInモーション

--------------------------------------------------------------------------- */
body{
	position: relative;
}
body::after{
	content:'';
	position: fixed;
	top:0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #FFF;
	z-index:11111;
	opacity: 1;
	pointer-events: none;
	transition: opacity ease .6s
}
.page-loaded body::after{opacity: 0;}
/*ロード前のトランジションを無効化*/
.preload * {
  -webkit-transition: none !important;
  -moz-transition: none !important;
  -ms-transition: none !important;
  -o-transition: none !important;
  transition: none !important;
}

/* ---------------------------------------------------------------------------

		structure
			ストラクチャ：基本設定、リンクカラーなど

--------------------------------------------------------------------------- */
a{
	color: #111;
	transition:all ease 0.3s;
	text-decoration: none;
}


/* ---------------------------------------------------------------------------
		#wrapper
			全体
--------------------------------------------------------------------------- */
#wrapper{
	overflow: hidden;
	min-width: 1220px;
}
#wrapper img{
	max-width: 100%;
	height: auto;
	-webkit-backface-visibility: hidden;
}
@media screen and (max-width: 767px){
	#wrapper{
		min-width: 320px;
	}
}


/* ---------------------------------------------------------------------------
		#header
			ヘッダー
--------------------------------------------------------------------------- */
#headerWrap{
	width: 100%;
	min-width: 1220px;
	position: absolute;
	top: 0;
	z-index: 9999;
}
#headerWrap.fixed{
	position: fixed;
}
#header{
	width: 100%;
	position: relative;
	height: 116px;
	background: #fff;
	box-shadow: 0 1px 5px rgba(0,0,0,0.1);
}
#logo{
	padding: 19px 0 0 25px;
}
#logo img{
	width: 260px !important;
	height: 25px !important;
}
#hnav{
	width: 120px;
	position: absolute;
	top: 0;
	right: 0;
	z-index: 99999;
}
#hnavContact{
	height: 116px;
	padding: 35px 0 0;
	background: #161616;
	color: #fefefe;
	text-align: center;
	transition: all ease 0.6s;
}
#hnavContact span{
	display: block;
	margin: 16px 0 0;
	font-size: 1.5rem;
}
#hnavContact:hover{
	background: #3d3d3d;
	cursor: pointer;
}
#hnav ul{
	background: rgba(22,22,22,0.8);
	text-align: center;
	max-height: 0;
	overflow: hidden;
	transition: all ease 0.6s;
}
.hnavMenuIsOpen #hnav ul{
	max-height: 300px;
}
#hnav ul li{
	text-align: center;
}
#hnav ul li + li{
	border-top: solid 1px #686c74;
}
#hnav ul li a{
	display: block;
	padding: 12px 0;
	color: #fefefe;
	font-size: 1.3rem;
	line-height: 1;
}
#hnav ul li a:hover{
	opacity: 0.6;
}

/* .gnav */
.gnav{
	max-width: 870px;
	width: 100%;
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);
}
.gnav ul{
	display: flex;
	justify-content: space-between;
}
.gnav ul li a{
	display: block;
	padding: 20px 0 17px;
	font-size: 1.8rem;
	line-height: 1;
	color: #111;
	position: relative;
}
.gnav ul li.gnav-top a{
    padding: 20px 0 33px;
}
.gnav ul li a::before{
	content: "";
	display: block;
	width: 0;
	height: 4px;
	background: #161616;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	margin: 0 auto;
	transition: all ease 0.4s;
}
.gnav ul li a:hover::before{
	width: 100%;
}
.index .gnav ul li.gnav-top a::before,
.about .gnav ul li.gnav-about a::before,
.project .gnav ul li.gnav-project a::before,
.concept .gnav ul li.gnav-concept a::before,
.works .gnav ul li.gnav-works a::before,
.news .gnav ul li.gnav-news a::before{
	width: 100%;
}
.gnav ul li a .ja{
    display: block;
    font-size: 1.3rem;
    text-align: center;
    padding-top: 0.2em;
}


@media screen and (max-width: 767px){
	#headerWrap{
		width: 100%;
		min-width: 0;
		position: absolute;
		top: 0;
		z-index: 9999;
	}
	#headerWrap.fixed{
		position: fixed;
	}
	#header{
		width: 100%;
		height: 50px;
		box-shadow: 0 1px 5px rgba(0,0,0,0.1);
	}
	#logo{
		padding: 15px 0 0 15px;
	}
	#logo img{
		width: 190px !important;
		height: 18px !important;
	}

	#hnav{
		width: 50px;
	}
	#hnavContact{
		height: 50px;
		padding: 18px 0 0;
	}
	#hnavContact img{
		width: 20px;
		vertical-align: top;
	}
	#hnavContact span{
		display: none;
	}
	#hnavContact:hover{
		background: #333333;
		cursor: pointer;
	}
	#hnav ul{
		width: 300px;
		height: calc(100vh - 50px);
		position: fixed;
		top: 50px;
		right: -300px;
		background: rgba(22,22,22,0.8);
		text-align: center;
		max-height: none;
		overflow: hidden;
		transition: all ease 0.4s;
	}
	.hnavMenuIsOpen #hnav ul{
		max-height: none;
		right: 0;
	}
	#hnav ul li a{
		display: block;
		padding: 16px 0;
		font-size: 1.4rem;
	}
	#hnav ul li a:hover{
		opacity: 1;
	}
	
	
/* menuBtn */
	#menuBtn{
		display: block;
		width: 50px;
		position: absolute;
		top: 0;
		right: 50px;
	}
	#menuBtn a{
		background: #FFF;
		display: block;
		height: 50px;
		text-align: center;
	}
	#menuBtn::after,
	#menuBtn a::before,
	#menuBtn a::after {
		content: '';
		position: absolute;
		display: block;
		top: 17px;
		left: 50%;
		margin-left: -20px;
		background: #161616;
		width: 25px;
		height: 2px;
		transition: all ease .3s;
	}
	#menuBtn::after {top: 25px;pointer-events: none;}
	#menuBtn a::after { top: 33px;}
	.gnavMenuIsOpen #menuBtn::after,
	.gnavMenuIsOpen #menuBtn a::before,
	.gnavMenuIsOpen #menuBtn a::after{ top: 26px;}
	.gnavMenuIsOpen #menuBtn::after {
		transform: rotate(45deg);
		opacity: 0;
	}
	.gnavMenuIsOpen #menuBtn a::before { transform: rotate(45deg);}
	.gnavMenuIsOpen #menuBtn a::after { transform: rotate(-45deg);}


	/* .gnav */
	.gnav{
		max-width: none;
		width: 300px;
		height: calc(100vh - 50px);
		position: fixed;
		top: 50px;
		left: auto;
		right: -300px;
		bottom: auto;
		transform: none;
		background: rgba(22,22,22,0.8);
		text-align: center;
		transition: all ease .4s;
	}
	.gnavMenuIsOpen .gnav{
		right: 0;
	}
	.gnav ul{
		display: block;
	}
	.gnav ul li + li{
		border-top: solid 1px #686c74;
	}
	.gnav ul li a{
		padding: 18px 0 16px !important;
		font-size: 1.7rem;
		color: #fefefe;
	}
	.gnav ul li a::before{
		content: none;
	}
    .gnav ul li a .ja{
        font-size: 1.2rem;
    }
}


/* ---------------------------------------------------------------------------
		#content
			コンテンツ
--------------------------------------------------------------------------- */
#pageHeader{
	height: 400px;
	padding: 174px 0 0;
	background: #eee;
}
#pageHeader h1{
	max-width: 1200px;
	margin: 0 auto;
	color: #fff;
	letter-spacing: 0.2em;
	line-height: 1;
	text-shadow:
		0 0 2px rgba(0,0,0,0.3),
		0 0 4px rgba(0,0,0,0.3),
		0 0 8px rgba(0,0,0,0.3),
		0 0 12px rgba(0,0,0,0.3),
		0 0 16px rgba(0,0,0,0.3),
		0 0 20px rgba(0,0,0,0.3);
}
#pageHeader h1 .en{
	display: inline-block;
	font-size: 5rem;
	vertical-align: middle;
}
#pageHeader h1 .ja{
	display: inline-block;
	margin: 0 0 0 20px;
	font-size: 1.8rem;
	vertical-align: middle;
	opacity: 0;
	transition: all ease 0.8s;
}

#pageHeader h1 span > span{
	display: inline-block;
	opacity: 0;
	transition: all ease 1s;
}
#pageHeader h1 span > span:nth-child(odd){
	transform: translateY(20px);
}
#pageHeader h1 span > span:nth-child(even){
	transform: translateY(-20px);
}
.pre-anim-start #pageHeader h1 span > span:nth-child(odd),
.pre-anim-start #pageHeader h1 span > span:nth-child(even){
	transform: translateY(0);
	opacity: 1;
}
.pre-anim-start #pageHeader h1 .ja{
	opacity: 1;
	transition-delay: 1s;
}


@media screen and (max-width: 767px){
	#pageHeader{
		height: 150px;
		padding: 45px 20px 0;
	}
	#pageHeader h1{
		letter-spacing: 0.05em;
	}
	#pageHeader h1 .en,
	#pageHeader h1.ja{
		display: block;
	}
	#pageHeader h1 .en{
		margin: 0 0 10px;
		font-size: 3rem;
	}
	#pageHeader h1 .ja{
		margin: 0;
		font-size: 1.6rem;
	}
}


/* ---------------------------------------------------------------------------
		#main
			メイン
--------------------------------------------------------------------------- */
#main{
	padding: 120px 0 100px;
	font-size: 1.6rem;
	line-height: 2;
}

@media screen and (max-width: 767px){
	#main{
		padding: 30px 0 50px;
		font-size: 1.4rem;
		line-height: 1.7;
	}
}

/* ---------------------------------------------------------------------------
		#footer
			フッター
--------------------------------------------------------------------------- */
#footer .foot-inner{
	padding: 70px 0;
	background: #f6f6f6;
	text-align: center;
}
#footer .foot-inner .f-logo{
	margin: 0 0 62px;
}
#fnav{
	max-width: 900px;
	margin: 0 auto 50px;
}
#fnav ul{
	display: flex;
	justify-content: space-between;
	padding: 0 16px;
}
#fnav ul li a{
	display: inline-block;
	color: #111;
	font-size: 1.8rem;
	position: relative;
}
#fnav ul li a::before{
	content: "";
	display: block;
	width: 0;
	height: 2px;
	background: #161616;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	margin: 0 auto;
	transition: all ease 0.4s;
}
#fnav ul li a:hover::before{
	width: 100%;
}
#fnavContact{
	max-width: 900px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
}
#fnavContact li{
	width: 220px;
}
#fnavContact li a{
	display: block;
	padding: 13px 0;
	background: #161616;
	color: #fefefe;
	font-size: 1.4rem;
	line-height: 1;
}
#fnavContact li a:hover{
	background: #3d3d3d;
}

#footer .foot-lower{
	padding: 22px 40px;
	position: relative;
}

/*
	#elGroup
-----------------------------------------------------*/
#elGroup{
	padding: 0 0 70px;
	background: #f6f6f6;
}
#elGroup dl{
	padding: 60px 0 0;
	border-top: solid 1px #ddd;
}
#elGroup dl dt{
	margin: 0 0 26px;
	font-size: 2rem;
	text-align: center;
}
#elGroup dl dt::after{
	content: "";
	display: block;
	width: 30px;
	height: 2px;
	margin: 16px auto 0;
	background: #161616;
}
#elGroup dl dt + dd{
	margin: 0 0 56px;
	font-size: 1.6rem;
	text-align: center;
	color: #505050;
}
#elGroup dl dd ul{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
#elGroup dl dd ul li{
	width: 288px;
	height: 50px;
	background: #fff;
	text-align: center;
}
#elGroup dl dd ul li > img{
	margin: 15px 0 0;
}
#elGroup dl dd ul li a{
	display: block;
	height: 100%;
	padding: 15px 0 0;
}

#elGroup dl dd ul li:nth-child(n + 5){
	margin: 16px 0 0;
}

#pnav{
	display: flex;
}
#pnav li + li{
	margin: 0 0 0 60px;
}
#pnav li a{
	color: #111;
	font-size: 1.4rem;
}
#copyright{
	position: absolute;
	top: 24px;
	right: 40px;
}
#copyright small{
	font-size: 1.2rem;
}


@media screen and (max-width: 767px){
	#footer .foot-inner{
		padding: 40px 0;
	}
	#footer .foot-inner .f-logo{
		width: 240px;
		margin: 0 auto 45px;
	}
	#fnav{
		margin: 0;
	}
	#fnav ul{
		display: block;
		padding: 0;
	}
	#fnav ul li + li{
		margin: 45px 0 0;
	}
	#fnav ul li a{
		font-size: 1.7rem;
	}
	#fnav ul li a::before{
		content: none;
	}
	#fnavContact{
		display: none;
	}
	#footer .foot-lower{
		padding: 45px 0 20px;
	}
	
	#elGroup{
		padding: 0 0 40px;
	}
	#elGroup dl{
		padding: 30px 0 0;
	}
	#elGroup dl dt{
		margin: 0 0 15px;
		font-size: 1.8rem;
	}
	#elGroup dl dt::after{
		width: 15px;
		height: 2px;
		margin: 10px auto 0;
	}
	#elGroup dl dt + dd{
		margin: 0 0 30px;
		font-size: 1.3rem;
	}
	#elGroup dl dd ul li{
		width: 49%;
	}
	#elGroup dl dd ul li:nth-child(n + 3){
		margin: 5px 0 0;
	}
	#elGroup dl dd ul li a{
		padding: 15px 10px 0;
	}
	#elGroup dl dd ul li img{
		max-width: 215px;
		width: 100%;
	}
	#elGroup dl dd ul li > img{
		margin: 20px 0 0;
		padding: 0 10px;
	}
	#elGroup dl dd ul li:nth-child(5) a img{
		width: 45%;
		max-width: 90px;
	}
	
	#pnav{
		display: block;
		text-align: center;
	}
	#pnav li{
		margin: 0 0 22px !important;
	}
	#copyright{
		position: static;
		text-align: center;
	}
	
}
