@charset "utf-8";

/*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*
[ コンテンツ切替タイミング ]
PC環境(ウィンドウ横幅:1024px以上)
TAB環境(ウィンドウ横幅:640px以上〜1023px以下)
SP環境(ウィンドウ横幅:639px以下)

[ 掲載内容 ]
メニュー設定
ヘッダー設定
NEWS設定
WORKS設定
RECRUIT設定
ABOUT設定
電話・メールボタン設定
ACCESS設定
フッター設定

※行数が多いので上記文言で検索していただければ対象のスタイルシート部分に移動できます。
*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*/

/*----------------------------
メニュー設定
-----------------------------*/
/*PC環境*/
#menuIcon{
	position:fixed;
	top:20px;
	right:20px;
	z-index:10;
}
#menuIcon a{
	width:60px;
	height:50px;
	display:block;
	position:relative;
}
#menuIcon a span{
	width:60px;
	height:9px;
	background:rgba(255,255,255,.7);
	position:absolute;
	left:0;
	-webkit-transition:all .4s;
	transition:all .4s;
}
#menuIcon a span:nth-child(1){
	top:0;
}
#menuIcon a span:nth-child(2){
	top:21px;
}
#menuIcon a span:nth-child(3){
	bottom:0;
}
#menuIcon a.active span{
	width:60px;
	height:5px;
	background:rgba(255,255,255,1);
}
#menuIcon a.active span:nth-of-type(1){
	-webkit-transform:translateY(20px) rotate(-45deg);
	transform:translateY(20px) rotate(-45deg);
}
#menuIcon a.active span:nth-of-type(2){
	opacity:0;
}
#menuIcon a.active span:nth-of-type(3){
	-webkit-transform:translateY(-25px) rotate(45deg);
	transform:translateY(-25px) rotate(45deg);
}
#menuArea{
	width:100%;
	height:100%;
	background:rgba(0,0,0,.5);
	opacity:0.0;
	display:none;
	position:fixed;
	top:0;
	left:0;
	z-index:9;
}
#menuArea ul{
	width:100%;
	padding:50px 0 0 0;
}
#menuArea li{
	width:100%;
	text-align:center;
	border-bottom:1px solid #fff;
	opacity:0.0;
}
#menuArea li.title{
	padding:10px 0;
}
#menuArea li.title img{
	width:200px;
}
#menuArea li a{
	display:block;
	padding:30px 0 10px 0;
}
#menuArea li a:hover{
	background:rgba(0,0,0,.5);
}
#menuArea li a img{
	height:45px;
}

/*TAB環境*/
@media screen and (min-width:640px) and (max-width:1023px){
	#menuIcon{
		position:fixed;
		top:15px;
		right:15px;
	}
	#menuIcon a{
		width:40px;
		height:30px;
		display:block;
		position:relative;
	}
	#menuIcon a span{
		width:40px;
		height:5px;
		background:rgba(255,255,255,.7);
		position:absolute;
		left:0;
		-webkit-transition:all .4s;
		transition:all .4s;
	}
	#menuIcon a span:nth-child(1){
		top:0;
	}
	#menuIcon a span:nth-child(2){
		top:13px;
	}
	#menuIcon a span:nth-child(3){
		bottom:0;
	}
	#menuIcon a.active span{
		width:40px;
		height:3px;
		background:rgba(255,255,255,1);
	}
	#menuIcon a.active span:nth-of-type(1){
		-webkit-transform:translateY(12px) rotate(-45deg);
		transform:translateY(12px) rotate(-45deg);
	}
	#menuIcon a.active span:nth-of-type(2){
		opacity:0;
	}
	#menuIcon a.active span:nth-of-type(3){
		-webkit-transform:translateY(-15px) rotate(45deg);
		transform:translateY(-15px) rotate(45deg);
	}
	#menuArea ul{
		width:100%;
		padding:30px 0 0 0;
	}
	#menuArea li.title img{
		width:138px;
	}
	#menuArea li a{
		display:block;
		padding:20px 0 10px 0;
	}
	#menuArea li a img{
		height:30px;
	}
}

/*SP環境*/
@media screen and (max-width:639px){
	#menuIcon{
		position:fixed;
		top:10px;
		right:10px;
	}
	#menuIcon a{
		width:30px;
		height:20px;
		display:block;
		position:relative;
	}
	#menuIcon a span{
		width:30px;
		height:3px;
		background:rgba(255,255,255,.7);
		position:absolute;
		left:0;
		-webkit-transition:all .4s;
		transition:all .4s;
	}
	#menuIcon a span:nth-child(1){
		top:0;
	}
	#menuIcon a span:nth-child(2){
		top:9px;
	}
	#menuIcon a span:nth-child(3){
		bottom:0;
	}
	#menuIcon a.active span{
		width:30px;
		height:3px;
		background:rgba(255,255,255,1);
	}
	#menuIcon a.active span:nth-of-type(1){
		-webkit-transform:translateY(9px) rotate(-45deg);
		transform:translateY(9px) rotate(-45deg);
	}
	#menuIcon a.active span:nth-of-type(2){
		opacity:0;
	}
	#menuIcon a.active span:nth-of-type(3){
		-webkit-transform:translateY(-8px) rotate(45deg);
		transform:translateY(-8px) rotate(45deg);
	}
	#menuArea ul{
		width:100%;
		padding:10px 0 0 0;
	}
	#menuArea li.title img{
		width:115px;
	}
	#menuArea li a{
		display:block;
		padding:10px 0 10px 0;
	}
	#menuArea li a img{
		height:26px;
	}
}

/*----------------------------
ヘッダー設定
-----------------------------*/
/*PC環境*/
header{
	width:100%;
	min-width:1024px;
	position:relative;
	z-index:1;
}
header .bg{
	width:100%;
}
header .animeArea1{
	width:560px;
	height:374px;
	position:absolute;
	top:0;
	right:0;
	bottom:0;
	left:0;
	margin:auto;
}
header .animeArea2{
	width:560px;
	height:374px;
	opacity:0.0;
	position:absolute;
	top:0;
	right:0;
	bottom:0;
	left:-186px;
	margin:auto;
}
header .animeArea3{
	width:560px;
	height:374px;
	opacity:0.0;
	position:absolute;
	top:0;
	right:0;
	bottom:0;
	left:186px;
	margin:auto;
}
header .aAStart1{
	-moz-animation:aa1 1.0s ease-in 0s forwards;
	-webkit-animation:aa1 1.0s ease-in 0s forwards;
	animation:aa1 1.0s ease-in 0s forwards;
}
@-moz-keyframes aa1{
	0%{left:0;}
	20%{left:0;}
	100%{left:-186px;}
}
@-webkit-keyframes aa1{
	0%{left:0;}
	20%{left:0;}
	100%{left:-186px;}
}
@keyframes aa1{
	0%{left:0;}
	20%{left:0;}
	100%{left:-186px;}
}
header .aAStart2{
	-moz-animation:aa2 1.0s ease-in 0s forwards;
	-webkit-animation:aa2 1.0s ease-in 0s forwards;
	animation:aa2 1.0s ease-in 0s forwards;
}
@-moz-keyframes aa2{
	0%{left:0;}
	20%{left:0;}
	100%{left:186px;}
}
@-webkit-keyframes aa2{
	0%{left:0;}
	20%{left:0;}
	100%{left:186px;}
}
@keyframes aa2{
	0%{left:0;}
	20%{left:0;}
	100%{left:186px;}
}
header .animeArea1 .path1{
	stroke:rgba(255,255,255,0);
	fill:rgba(255,255,255,1);
	display:none;
}
header .animeArea1 .path2{
	stroke:rgba(255,255,255,1);
	fill:rgba(255,255,255,0);
	display:none;
}
header .animeArea1 .path3{
	stroke:rgba(255,255,255,0);
	fill:rgba(255,255,255,1);
	display:none;
}
header .animeArea1 .path4{
	stroke:rgba(255,255,255,1);
	fill:rgba(255,255,255,0);
	display:none;
}
header .animeArea2 .path{
	stroke:rgba(255,255,255,0);
	fill:rgba(255,255,255,1);
	/*display:none;*/
}
header .animeArea3 .path{
	stroke:rgba(255,255,255,0);
	fill:rgba(255,255,255,1);
	/*display:none;*/
}
header #logo{
	width:560px;
	height:374px;
	opacity:0;
	position:absolute;
	top:0;
	right:0;
	bottom:0;
	left:0;
	z-index:0;
	margin:auto;
}
header h1{
	opacity:0;
	position:fixed;
	top:20px;
	left:30px;
	z-index:0;
}
header #logo img{
	width:560px;
	height:374px;
}
header h1 img{
	width:100px;
}
header.pc{
	display:block;
}
header .tab{
	display:none;
}
header .sp{
	display:none;
}

/*TAB環境*/
@media screen and (min-width:640px) and (max-width:1023px){
	header{
		width:100%;
		min-width:100%;
		position:relative;
		z-index:1;
	}
	header .animeArea1{
		width:280px;
		height:187px;
		position:absolute;
		top:0;
		right:0;
		bottom:0;
		left:0;
		margin:auto;
	}
	header .animeArea2{
		width:280px;
		height:187px;
		opacity:0.0;
		position:absolute;
		top:0;
		right:0;
		bottom:0;
		left:-91px;
		margin:auto;
	}
	header .animeArea3{
		width:280px;
		height:187px;
		opacity:0.0;
		position:absolute;
		top:0;
		right:0;
		bottom:0;
		left:91px;
		margin:auto;
	}
	header .aAStart1{
		-moz-animation:aa1 1.0s ease-in 0s forwards;
		-webkit-animation:aa1 1.0s ease-in 0s forwards;
		animation:aa1 1.0s ease-in 0s forwards;
	}
	@-moz-keyframes aa1{
		0%{left:0;}
		20%{left:0;}
		100%{left:-91px;}
	}
	@-webkit-keyframes aa1{
		0%{left:0;}
		20%{left:0;}
		100%{left:-91px;}
	}
	@keyframes aa1{
		0%{left:0;}
		20%{left:0;}
		100%{left:-91px;}
	}
	header .aAStart2{
		-moz-animation:aa2 1.0s ease-in 0s forwards;
		-webkit-animation:aa2 1.0s ease-in 0s forwards;
		animation:aa2 1.0s ease-in 0s forwards;
	}
	@-moz-keyframes aa2{
		0%{left:0;}
		20%{left:0;}
		100%{left:91px;}
	}
	@-webkit-keyframes aa2{
		0%{left:0;}
		20%{left:0;}
		100%{left:91px;}
	}
	@keyframes aa2{
		0%{left:0;}
		20%{left:0;}
		100%{left:91px;}
	}
	header #logo{
		width:280px;
		height:187px;
		opacity:0.0;
		position:absolute;
		top:0;
		right:0;
		bottom:0;
		left:0;
		z-index:0;
		margin:auto;
	}
	header h1{
		opacity:0;
		position:fixed;
		top:15px;
		left:15px;
		z-index:0;
	}
	header #logo img{
		width:280px;
		height:187px;
	}
	header h1 img{
		width:80px;
	}
	header .pc{
		display:none;
	}
	header .tab{
		display:block;
	}
	header .sp{
		display:none;
	}
}

/*SP環境*/
@media screen and (max-width:639px){
	header{
		width:100%;
		min-width:100%;
		position:relative;
		z-index:1;
	}
	header .animeArea1{
		width:240px;
		height:160px;
		position:absolute;
		top:0;
		right:0;
		bottom:0;
		left:0;
		margin:auto;
	}
	header .animeArea2{
		width:240px;
		height:160px;
		opacity:0.0;
		position:absolute;
		top:0;
		right:0;
		bottom:0;
		left:-80px;
		margin:auto;
	}
	header .animeArea3{
		width:240px;
		height:160px;
		opacity:0.0;
		position:absolute;
		top:0;
		right:0;
		bottom:0;
		left:80px;
		margin:auto;
	}
	header .aAStart1{
		-moz-animation:aa1 1.0s ease-in 0s forwards;
		-webkit-animation:aa1 1.0s ease-in 0s forwards;
		animation:aa1 1.0s ease-in 0s forwards;
	}
	@-moz-keyframes aa1{
		0%{left:0;}
		20%{left:0;}
		100%{left:-80px;}
	}
	@-webkit-keyframes aa1{
		0%{left:0;}
		20%{left:0;}
		100%{left:-80px;}
	}
	@keyframes aa1{
		0%{left:0;}
		20%{left:0;}
		100%{left:-80px;}
	}
	header .aAStart2{
		-moz-animation:aa2 1.0s ease-in 0s forwards;
		-webkit-animation:aa2 1.0s ease-in 0s forwards;
		animation:aa2 1.0s ease-in 0s forwards;
	}
	@-moz-keyframes aa2{
		0%{left:0;}
		20%{left:0;}
		100%{left:80px;}
	}
	@-webkit-keyframes aa2{
		0%{left:0;}
		20%{left:0;}
		100%{left:80px;}
	}
	@keyframes aa2{
		0%{left:0;}
		20%{left:0;}
		100%{left:80px;}
	}
	header #logo{
		width:240px;
		height:160px;
		opacity:0.0;
		position:absolute;
		top:0;
		right:0;
		bottom:0;
		left:0;
		z-index:0;
		margin:auto;
	}
	header h1{
		opacity:0;
		position:fixed;
		top:10px;
		left:10px;
		z-index:0;
	}
	header #logo img{
		width:240px;
		height:160px;
	}
	header h1 img{
		width:60px;
	}
	header .pc{
		display:none;
	}
	header .tab{
		display:none;
	}
	header .sp{
		display:block;
	}
}

/*----------------------------
NEWS設定
-----------------------------*/
/*PC環境*/
#news{
	width:100%;
	min-width:1024px;
	height:480px;
}
#news h2{
	min-width:384px;
	height:480px;
	background:#a1180e;
	position:relative;
	float:left;
	z-index:0
}
#news h2 img{
	height:62px;
	position:absolute;
	top:0;
	right:0;
	bottom:0;
	left:0;
	margin:auto;
}
#news .txtArea{
	width:640px;
	height:480px;
	background:url("../img/bg_news.jpg") no-repeat 0 0;
	float:left;
}
#news .txtArea .scrollbar{
	width:560px;
	height:400px;
	overflow-x:hidden;
	overflow-y:auto;
	margin:40px;
}
#news .txtArea .scrollbar::-webkit-scrollbar{
	width:4px;
	background:rgba(255,255,255,.2);
	border-radius:2px;
	margin:5px 0;
}
#news .txtArea .scrollbar::-webkit-scrollbar-thumb{
	background:rgba(255,255,255,1);
	border-radius:2px;
}
#news .txtArea li{
	margin:0 0 20px 0;
}
#news .txtArea li p{
	color:#fff;
	line-height:1.4;
	margin:0 0 5px 0;
}
#news .txtArea li p.data{
	font-size:18px;
	font-weight:bold;
}
#news .txtArea li p.txt{
	font-size:14px;
}

/*TAB環境*/
@media screen and (min-width:640px) and (max-width:1023px){
	#news{
		width:100%;
		min-width:100%;
		height:553px;
	}
	#news h2{
		width:100% !important;
		min-width:100%;
		height:85px;
		-moz-box-flex:1;
		-webkit-box-flex:1;
		-ms-flex:1;
		/*float:none;*/
		background:#a1180e;
		display:-moz-box;
		display:-webkit-box;
		display:-ms-flexbox;
		-moz-box-pack:center;
		-webkit-box-pack:center;
		-ms-flex-pack:center;
		-moz-box-align:center;
		-webkit-box-align:center;
		-ms-flex-align:center;
	}
	#news h2 img{
		height:45px;
	}
	#news .txtArea{
		width:100%;
		height:468px;
		background:url("../img/bg_news.jpg") no-repeat 0 50%;
		background-size:100%;
		display:-moz-box;
		display:-webkit-box;
		display:-ms-flexbox;
		float:none;
	}
	#news .txtArea .scrollbar{
		width:100%;
		-moz-box-flex:1;
		-webkit-box-flex:1;
		-ms-flex:1;
		height:408px;
		overflow-x:hidden;
		overflow-y:auto;
		margin:30px;
	}
	#news .txtArea .scrollbar::-webkit-scrollbar{
		width:4px;
		background:rgba(255,255,255,.2);
		border-radius:2px;
		margin:5px 0;
	}
	#news .txtArea .scrollbar::-webkit-scrollbar-thumb{
		background:rgba(255,255,255,1);
		border-radius:2px;
	}
	#news .txtArea ul{
		-moz-box-flex:1;
		-webkit-box-flex:1;
		-ms-flex:1;
	}
	#news .txtArea li{
		margin:0 0 20px 0;
	}
	#news .txtArea li p{
		color:#fff;
		line-height:1.4;
		margin:0 0 5px 0;
	}
	#news .txtArea li p.data{
		font-size:18px;
		font-weight:bold;
	}
	#news .txtArea li p.txt{
		font-size:14px;
	}
}

/*SP環境*/
@media screen and (max-width:639px){
	#news{
		width:100%;
		min-width:100%;
		height:420px;
	}
	#news h2{
		width:100% !important;
		min-width:100%;
		height:60px;
		-moz-box-flex:1;
		-webkit-box-flex:1;
		-ms-flex:1;
		/*float:none;*/
		background:#a1180e;
		display:-moz-box;
		display:-webkit-box;
		display:-ms-flexbox;
		-moz-box-pack:center;
		-webkit-box-pack:center;
		-ms-flex-pack:center;
		-moz-box-align:center;
		-webkit-box-align:center;
		-ms-flex-align:center;
	}
	#news h2 img{
		height:31px;
	}
	#news .txtArea{
		width:100%;
		height:360px;
		background:url("../img/bg_news.jpg") no-repeat 0 -100px;
		background-size:auto;
		display:-moz-box;
		display:-webkit-box;
		display:-ms-flexbox;
		float:none;
	}
	#news .txtArea .scrollbar{
		width:100%;
		-moz-box-flex:1;
		-webkit-box-flex:1;
		-ms-flex:1;
		height:320px;
		overflow-x:hidden;
		overflow-y:auto;
		margin:20px;
	}
	#news .txtArea .scrollbar::-webkit-scrollbar{
		width:4px;
		background:rgba(255,255,255,.2);
		border-radius:2px;
		margin:5px 0;
	}
	#news .txtArea .scrollbar::-webkit-scrollbar-thumb{
		background:rgba(255,255,255,1);
		border-radius:2px;
	}
	#news .txtArea ul{
		-moz-box-flex:1;
		-webkit-box-flex:1;
		-ms-flex:1;
	}
	#news .txtArea li{
		margin:0 0 20px 0;
	}
	#news .txtArea li p{
		color:#fff;
		line-height:1.4;
		margin:0 0 5px 0;
	}
	#news .txtArea li p.data{
		font-size:16px;
		font-weight:bold;
	}
	#news .txtArea li p.txt{
		font-size:12px;
	}
}

/*----------------------------
WORKS設定
-----------------------------*/
/*PC環境*/
#works{
	width:100%;
	min-width:1024px;
	height:480px;
}
#works h2{
	min-width:384px;
	height:480px;
	background:#6E100A;
	position:relative;
	float:left;
}
#works h2 img{
	height:62px;
	position:absolute;
	top:0;
	right:0;
	bottom:0;
	left:0;
	margin:auto;
}
#works .txtArea{
	width:640px;
	height:480px;
	background:url("../img/bg_works.jpg") no-repeat 0 0;
	float:left;
}
#works .txtArea .scrollbar{
	width:560px;
	height:400px;
	overflow-x:hidden;
	overflow-y:auto;
	margin:40px;
}
#works .txtArea .scrollbar::-webkit-scrollbar{
	width:4px;
	background:rgba(255,255,255,.2);
	border-radius:2px;
	margin:5px 0;
}
 .txtArea .scrollbar::-webkit-scrollbar-thumb{
	background:rgba(255,255,255,1);
	border-radius:2px;
}
#works .txtArea p{
	color:#fff;
	font-size:16px;
	margin:50px 0;
}

/*TAB環境*/
@media screen and (min-width:640px) and (max-width:1023px){
	#works{
		width:100%;
		min-width:100%;
		height:553px;
	}
	#works h2{
		width:100% !important;
		min-width:100%;
		height:85px;
		-moz-box-flex:1;
		-webkit-box-flex:1;
		-ms-flex:1;
		/*float:none;*/
		background:#a1180e;
		display:-moz-box;
		display:-webkit-box;
		display:-ms-flexbox;
		-moz-box-pack:center;
		-webkit-box-pack:center;
		-ms-flex-pack:center;
		-moz-box-align:center;
		-webkit-box-align:center;
		-ms-flex-align:center;
	}
	#works h2 img{
		height:45px;
	}
	#works .txtArea{
		width:100%;
		height:468px;
		background:url("../img/bg_works.jpg") no-repeat 0 0;
		background-size:100%;
		display:-moz-box;
		display:-webkit-box;
		display:-ms-flexbox;
		float:none;
	}
	#works .txtArea .scrollbar{
		width:100%;
		-moz-box-flex:1;
		-webkit-box-flex:1;
		-ms-flex:1;
		height:408px;
		overflow-x:hidden;
		overflow-y:auto;
		margin:30px;
	}
	#works .txtArea .scrollbar::-webkit-scrollbar{
		width:4px;
		background:rgba(255,255,255,.2);
		border-radius:2px;
		margin:5px 0;
	}
	#works .txtArea .scrollbar::-webkit-scrollbar-thumb{
		background:rgba(255,255,255,1);
		border-radius:2px;
	}
	#works .txtArea p{
		color:#fff;
		font-size:16px;
		margin:40px 0;
	}
}

/*SP環境*/
@media screen and (max-width:639px){
	#works{
		width:100%;
		min-width:100%;
		height:420px;
	}
	#works h2{
		width:100% !important;
		min-width:100%;
		height:60px;
		-moz-box-flex:1;
		-webkit-box-flex:1;
		-ms-flex:1;
		/*float:none;*/
		background:#a1180e;
		display:-moz-box;
		display:-webkit-box;
		display:-ms-flexbox;
		-moz-box-pack:center;
		-webkit-box-pack:center;
		-ms-flex-pack:center;
		-moz-box-align:center;
		-webkit-box-align:center;
		-ms-flex-align:center;
	}
	#works h2 img{
		height:31px;
	}
	#works .txtArea{
		width:100%;
		height:360px;
		background:url("../img/bg_works.jpg") no-repeat 0 0;
		background-size:auto;
		display:-moz-box;
		display:-webkit-box;
		display:-ms-flexbox;
		float:none;
	}
	#works .txtArea .scrollbar{
		width:100%;
		-moz-box-flex:1;
		-webkit-box-flex:1;
		-ms-flex:1;
		height:320px;
		overflow-x:hidden;
		overflow-y:auto;
		margin:20px;
	}
	#works .txtArea .scrollbar::-webkit-scrollbar{
		width:4px;
		background:rgba(255,255,255,.2);
		border-radius:2px;
		margin:5px 0;
	}
	#works .txtArea .scrollbar::-webkit-scrollbar-thumb{
		background:rgba(255,255,255,1);
		border-radius:2px;
	}
	#works .txtArea p{
		color:#fff;
		font-size:14px;
		margin:30px 0;
	}
}

/*----------------------------
RECRUIT設定
-----------------------------*/
/*PC環境*/
#recruit{
	width:100%;
	min-width:1024px;
	height:480px;
}
#recruit h2{
	min-width:384px;
	height:480px;
	background:#a1180e;
	position:relative;
	float:left;
}
#recruit h2 img{
	height:62px;
	position:absolute;
	top:0;
	right:0;
	bottom:0;
	left:0;
	margin:auto;
}
#recruit .txtArea{
	width:640px;
	height:480px;
	background:url("../img/bg_recruit.jpg") no-repeat 0 0;
	float:left;
}
#recruit .txtArea .scrollbar{
	width:560px;
	height:400px;
	overflow-x:hidden;
	overflow-y:auto;
	margin:40px;
}
#recruit .txtArea .scrollbar::-webkit-scrollbar{
	width:4px;
	background:rgba(255,255,255,.2);
	border-radius:2px;
	margin:5px 0;
}
 .txtArea .scrollbar::-webkit-scrollbar-thumb{
	background:rgba(255,255,255,1);
	border-radius:2px;
}
#recruit .txtArea p{
	color:#fff;
	font-size:16px;
}

/*TAB環境*/
@media screen and (min-width:640px) and (max-width:1023px){
	#recruit{
		width:100%;
		min-width:100%;
		height:553px;
	}
	#recruit h2{
		width:100% !important;
		min-width:100%;
		height:85px;
		-moz-box-flex:1;
		-webkit-box-flex:1;
		-ms-flex:1;
		/*float:none;*/
		background:#a1180e;
		display:-moz-box;
		display:-webkit-box;
		display:-ms-flexbox;
		-moz-box-pack:center;
		-webkit-box-pack:center;
		-ms-flex-pack:center;
		-moz-box-align:center;
		-webkit-box-align:center;
		-ms-flex-align:center;
	}
	#recruit h2 img{
		height:45px;
	}
	#recruit .txtArea{
		width:100%;
		height:468px;
		background:url("../img/bg_recruit.jpg") no-repeat 0 50%;
		background-size:100%;
		display:-moz-box;
		display:-webkit-box;
		display:-ms-flexbox;
		float:none;
	}
	#recruit .txtArea .scrollbar{
		width:100%;
		-moz-box-flex:1;
		-webkit-box-flex:1;
		-ms-flex:1;
		height:408px;
		overflow-x:hidden;
		overflow-y:auto;
		margin:30px;
	}
	#recruit .txtArea .scrollbar::-webkit-scrollbar{
		width:4px;
		background:rgba(255,255,255,.2);
		border-radius:2px;
		margin:5px 0;
	}
	#recruit .txtArea .scrollbar::-webkit-scrollbar-thumb{
		background:rgba(255,255,255,1);
		border-radius:2px;
	}
	#recruit .txtArea p{
		color:#fff;
		font-size:16px;
	}
}

/*SP環境*/
@media screen and (max-width:639px){
	#recruit{
		width:100%;
		min-width:100%;
		height:420px;
	}
	#recruit h2{
		width:100% !important;
		min-width:100%;
		height:60px;
		-moz-box-flex:1;
		-webkit-box-flex:1;
		-ms-flex:1;
		/*float:none;*/
		background:#a1180e;
		display:-moz-box;
		display:-webkit-box;
		display:-ms-flexbox;
		-moz-box-pack:center;
		-webkit-box-pack:center;
		-ms-flex-pack:center;
		-moz-box-align:center;
		-webkit-box-align:center;
		-ms-flex-align:center;
	}
	#recruit h2 img{
		height:31px;
	}
	#recruit .txtArea{
		width:100%;
		height:360px;
		background:url("../img/bg_recruit.jpg") no-repeat 0 50%;
		background-size:auto;
		display:-moz-box;
		display:-webkit-box;
		display:-ms-flexbox;
		float:none;
	}
	#recruit .txtArea .scrollbar{
		width:100%;
		-moz-box-flex:1;
		-webkit-box-flex:1;
		-ms-flex:1;
		height:320px;
		overflow-x:hidden;
		overflow-y:auto;
		margin:20px;
	}
	#recruit .txtArea .scrollbar::-webkit-scrollbar{
		width:4px;
		background:rgba(255,255,255,.2);
		border-radius:2px;
		margin:5px 0;
	}
	#recruit .txtArea .scrollbar::-webkit-scrollbar-thumb{
		background:rgba(255,255,255,1);
		border-radius:2px;
	}
	#recruit .txtArea p{
		color:#fff;
		font-size:14px;
	}
}

/*----------------------------
ABOUT設定
-----------------------------*/
/*PC環境*/
#about{
	width:100%;
	min-width:1024px;
	height:500px;
}
#about h2{
	min-width:384px;
	height:500px;
	background:#6E100A;
	position:relative;
	float:left;
}
#about h2 img{
	height:62px;
	position:absolute;
	top:0;
	right:0;
	bottom:0;
	left:0;
	margin:auto;
}
#about .txtArea{
	width:640px;
	height:500px;
	background:url("../img/bg_about.jpg") no-repeat 0 0;
	float:left;
}
#about .txtArea .scrollbar{
	width:560px;
	height:420px;
	overflow-x:hidden;
	overflow-y:auto;
	margin:40px;
}
#about .txtArea .scrollbar::-webkit-scrollbar{
	width:4px;
	background:rgba(255,255,255,.2);
	border-radius:2px;
	margin:5px 0;
}
 .txtArea .scrollbar::-webkit-scrollbar-thumb{
	background:rgba(255,255,255,1);
	border-radius:2px;
}
#about .txtArea p{
	color:#fff;
	font-size:14px;
	margin:0 0 10px 0;
}
#about .txtArea p span{
	font-size:18px;
}

/*TAB環境*/
@media screen and (min-width:640px) and (max-width:1023px){
	#about{
		width:100%;
		min-width:100%;
		height:595px;
	}
	#about h2{
		width:100% !important;
		min-width:100%;
		height:85px;
		-moz-box-flex:1;
		-webkit-box-flex:1;
		-ms-flex:1;
		/*float:none;*/
		background:#a1180e;
		display:-moz-box;
		display:-webkit-box;
		display:-ms-flexbox;
		-moz-box-pack:center;
		-webkit-box-pack:center;
		-ms-flex-pack:center;
		-moz-box-align:center;
		-webkit-box-align:center;
		-ms-flex-align:center;
	}
	#about h2 img{
		height:45px;
	}
	#about .txtArea{
		width:100%;
		height:510px;
		background:url("../img/bg_about.jpg") no-repeat 0 0;
		background-size:100%;
		display:-moz-box;
		display:-webkit-box;
		display:-ms-flexbox;
		float:none;
	}
	#about .txtArea .scrollbar{
		width:100%;
		-moz-box-flex:1;
		-webkit-box-flex:1;
		-ms-flex:1;
		height:450px;
		overflow-x:hidden;
		overflow-y:auto;
		margin:30px;
	}
	#about .txtArea .scrollbar::-webkit-scrollbar{
		width:4px;
		background:rgba(255,255,255,.2);
		border-radius:2px;
		margin:5px 0;
	}
	#about .txtArea .scrollbar::-webkit-scrollbar-thumb{
		background:rgba(255,255,255,1);
		border-radius:2px;
	}
	#about .txtArea p{
		color:#fff;
		font-size:16px;
	}
}

/*SP環境*/
@media screen and (max-width:639px){
	#about{
		width:100%;
		min-width:100%;
		height:480px;
	}
	#about h2{
		width:100% !important;
		min-width:100%;
		height:60px;
		-moz-box-flex:1;
		-webkit-box-flex:1;
		-ms-flex:1;
		/*float:none;*/
		background:#a1180e;
		display:-moz-box;
		display:-webkit-box;
		display:-ms-flexbox;
		-moz-box-pack:center;
		-webkit-box-pack:center;
		-ms-flex-pack:center;
		-moz-box-align:center;
		-webkit-box-align:center;
		-ms-flex-align:center;
	}
	#about h2 img{
		height:31px;
	}
	#about .txtArea{
		width:100%;
		height:420px;
		background:url("../img/bg_about.jpg") no-repeat 0 0;
		background-size:auto;
		display:-moz-box;
		display:-webkit-box;
		display:-ms-flexbox;
		float:none;
	}
	#about .txtArea .scrollbar{
		width:100%;
		-moz-box-flex:1;
		-webkit-box-flex:1;
		-ms-flex:1;
		height:380px;
		overflow-x:hidden;
		overflow-y:auto;
		margin:20px;
	}
	#about .txtArea .scrollbar::-webkit-scrollbar{
		width:4px;
		background:rgba(255,255,255,.2);
		border-radius:2px;
		margin:5px 0;
	}
	#about .txtArea .scrollbar::-webkit-scrollbar-thumb{
		background:rgba(255,255,255,1);
		border-radius:2px;
	}
	#about .txtArea p{
		color:#fff;
		font-size:14px;
	}
}

/*----------------------------
電話・メールボタン設定
-----------------------------*/
/*PC環境*/
#telMail{
	width:100%;
	min-width:1024px;
	margin:30px 0;
}
#telMail .tel{
	width:900px;
	margin:0 auto 30px auto;
}
#telMail .mail{
	width:900px;
	margin:0 auto;
}
#telMail a{
	width:900px;
	height:57px;
	color:#fff;
	font-size:26px;
	text-decoration:none;
	-webkit-border-radius:10px;
	border-radius:10px;
	display:-moz-box;
	display:-webkit-box;
	display:-ms-flexbox;
	padding:15px 0;
}
#telMail .tel a{
	background:rgba(24,125,103,1);
}
#telMail .tel a:hover{
	background:rgba(81,173,153,1);
}
#telMail .mail a{
	background:rgba(88,75,142,1);
}
#telMail .mail a:hover{
	background:rgba(160,154,184,1);
}
#telMail a div{
	width:70px;
	display:-moz-box;
	display:-webkit-box;
	display:-ms-flexbox;
	position:relative;
	-moz-box-pack:center;
	-webkit-box-pack:center;
	-ms-flex-pack:center;
	-moz-box-align:center;
	-webkit-box-align:center;
	-ms-flex-align:center;
	margin:0 50px 0 70px;
}
#telMail a img{
	width:70px;
	height:57px;
	position:absolute;
	top:0;
	right:0;
	bottom:0;
	left:0;
	margin:auto;
}
#telMail a p{
	-moz-box-flex:1;
	-webkit-box-flex:1;
	-ms-flex:1;
	display:-moz-box;
	display:-webkit-box;
	display:-ms-flexbox;
	-moz-box-pack:start;
	-webkit-box-pack:start;
	-ms-flex-pack:start;
	-moz-box-align:center;
	-webkit-box-align:center;
	-ms-flex-align:center;
	margin:0 70px 0 0;
}

/*TAB環境*/
@media screen and (min-width:640px) and (max-width:1023px){
	#telMail{
		width:100%;
		min-width:100%;
		margin:20px 0;
	}
	#telMail .tel{
		width:auto;
		margin:0 20px 20px 20px;
	}
	#telMail .mail{
		width:auto;
		margin:0 20px;
	}
	#telMail a{
		width:100%;
		height:49px;
		color:#fff;
		font-size:21px;
		text-decoration:none;
		-webkit-border-radius:10px;
		border-radius:10px;
		display:-moz-box;
		display:-webkit-box;
		display:-ms-flexbox;
		padding:15px 0;
	}
	#telMail .tel a{
		background:rgba(24,125,103,1);
	}
	#telMail .tel a:hover{
		background:rgba(81,173,153,1);
	}
	#telMail .mail a{
		background:rgba(88,75,142,1);
	}
	#telMail .mail a:hover{
		background:rgba(160,154,184,1);
	}
	#telMail a div{
		width:60px;
		display:-moz-box;
		display:-webkit-box;
		display:-ms-flexbox;
		position:relative;
		-moz-box-pack:center;
		-webkit-box-pack:center;
		-ms-flex-pack:center;
		-moz-box-align:center;
		-webkit-box-align:center;
		-ms-flex-align:center;
		margin:0 40px 0 60px;
	}
	#telMail a img{
		width:60px;
		height:49px;
		position:absolute;
		top:0;
		right:0;
		bottom:0;
		left:0;
		margin:auto;
	}
	#telMail a p{
		-moz-box-flex:1;
		-webkit-box-flex:1;
		-ms-flex:1;
		display:-moz-box;
		display:-webkit-box;
		display:-ms-flexbox;
		-moz-box-pack:start;
		-webkit-box-pack:start;
		-ms-flex-pack:start;
		-moz-box-align:center;
		-webkit-box-align:center;
		-ms-flex-align:center;
		margin:0 60px 0 0;
	}
}

/*SP環境*/
@media screen and (max-width:639px){
	#telMail{
		width:100%;
		min-width:100%;
		margin:20px 0;
	}
	#telMail .tel{
		width:auto;
		margin:0 20px 20px 20px;
	}
	#telMail .mail{
		width:auto;
		margin:0 20px;
	}
	#telMail a{
		width:100%;
		height:38px;
		color:#fff;
		font-size:13px;
		text-decoration:none;
		-webkit-border-radius:10px;
		border-radius:10px;
		display:-moz-box;
		display:-webkit-box;
		display:-ms-flexbox;
		padding:12px 0;
	}
	#telMail .tel a{
		background:rgba(24,125,103,1);
	}
	#telMail .tel a:hover{
		background:rgba(81,173,153,1);
	}
	#telMail .mail a{
		background:rgba(88,75,142,1);
	}
	#telMail .mail a:hover{
		background:rgba(160,154,184,1);
	}
	#telMail a div{
		width:47px;
		display:-moz-box;
		display:-webkit-box;
		display:-ms-flexbox;
		position:relative;
		-moz-box-pack:center;
		-webkit-box-pack:center;
		-ms-flex-pack:center;
		-moz-box-align:center;
		-webkit-box-align:center;
		-ms-flex-align:center;
		margin:0 10px;
	}
	#telMail a img{
		width:47px;
		height:38px;
		position:absolute;
		top:0;
		right:0;
		bottom:0;
		left:0;
		margin:auto;
	}
	#telMail a p{
		-moz-box-flex:1;
		-webkit-box-flex:1;
		-ms-flex:1;
		display:-moz-box;
		display:-webkit-box;
		display:-ms-flexbox;
		-moz-box-pack:start;
		-webkit-box-pack:start;
		-ms-flex-pack:start;
		-moz-box-align:center;
		-webkit-box-align:center;
		-ms-flex-align:center;
		margin:0 10px 0 0;
	}
}

/*----------------------------
ACCESS設定
-----------------------------*/
/*PC環境*/
#access{
	width:100%;
	min-width:1024px;
	background:#fff;
	margin:0 0 20px 0;
}
#access h3{
	width:100%;
	min-width:1024px;
	text-align:center;
	background:#a1180e;
	margin:0 0 50px 0;
	padding:20px 0;
}
#access h3 img{
	height:62px;
}
#access .map{
	-moz-box-flex:1;
	-webkit-box-flex:1;
	-ms-flex:1;
	height:720px;
	display:-moz-box;
	display:-webkit-box;
	display:-ms-flexbox;
	margin:0 50px 30px 50px;
}
#access p{
	color:#000;
	font-size:21px;
	margin:0 20px;
}
#access .pc{
	display:block;
}
#access .tab{
	display:none;
}
#access .sp{
	display:none;
}

/*TAB環境*/
@media screen and (min-width:640px) and (max-width:1023px){
	#access{
		width:100%;
		min-width:100%;
		margin:0 0 20px 0;
	}
	#access h3{
		width:100%;
		min-width:100%;
		text-align:center;
		background:#a1180e;
		margin:0 0 40px 0;
		padding:15px 0;
	}
	#access h3 img{
		height:45px;
	}
	#access .map{
		-moz-box-flex:1;
		-webkit-box-flex:1;
		-ms-flex:1;
		height:450px;
		display:-moz-box;
		display:-webkit-box;
		display:-ms-flexbox;
		margin:0 50px 20px 50px;
	}
	#access p{
		color:#000;
		font-size:18px;
		margin:0 20px;
	}
	#access .pc{
		display:none;
	}
	#access .tab{
		display:block;
	}
	#access .sp{
		display:none;
	}
}

/*SP環境*/
@media screen and (max-width:639px){
	#access{
		width:100%;
		min-width:100%;
		margin:0 0 20px 0;
	}
	#access h3{
		width:100%;
		min-width:100%;
		text-align:center;
		background:#a1180e;
		margin:0 0 30px 0;
		padding:10px 0;
	}
	#access h3 img{
		height:31px;
	}
	#access .map{
		-moz-box-flex:1;
		-webkit-box-flex:1;
		-ms-flex:1;
		height:320px;
		display:-moz-box;
		display:-webkit-box;
		display:-ms-flexbox;
		margin:0 20px 10px 20px;
	}
	#access p{
		color:#000;
		font-size:14px;
		margin:0 20px;
	}
	#access .pc{
		display:none;
	}
	#access .tab{
		display:none;
	}
	#access .sp{
		display:block;
	}
}

/*----------------------------
フッター設定
-----------------------------*/
/*PC環境*/
footer{
	width:100%;
	min-width:1024px;
	position:relative;
	background:#a1180e;
}
footer p{
	color:#b89d49;
	font-size:21px;
	text-align:center;
	padding:33px 0 27px 0;
}
footer .toTop{
	position:absolute;
	top:-72px;
	right:25px;
}
footer .toTop a{
	border:2px solid #a1180e;
	background:rgba(161,24,14,.0);
	-webkit-border-radius:10px;
	border-radius:10px;
	display:block;
}
footer .toTop a:hover{
	border:2px solid #a1180e;
	background:rgba(161,24,14,.3);
	-webkit-border-radius:10px;
	border-radius:10px;
	display:block;
}
footer .toTop a img{
	width:60px;
	height:60px;
}

/*TAB環境*/
@media screen and (min-width:640px) and (max-width:1023px){
	footer{
		width:100%;
		min-width:100%;
		position:relative;
		background:#a1180e;
	}
	footer p{
		color:#b89d49;
		font-size:14px;
		text-align:center;
		padding:23px 0 17px 0;
	}
	footer .toTop{
		position:absolute;
		top:-55px;
		right:15px;
	}
	footer .toTop a{
		border:2px solid #a1180e;
		background:rgba(161,24,14,.0);
		-webkit-border-radius:10px;
		border-radius:10px;
		display:block;
	}
	footer .toTop a:hover{
		border:2px solid #a1180e;
		background:rgba(161,24,14,.3);
		-webkit-border-radius:10px;
		border-radius:10px;
		display:block;
	}
	footer .toTop a img{
		width:45px;
		height:45px;
	}
}

/*SP環境*/
@media screen and (max-width:639px){
	footer{
		width:100%;
		min-width:100%;
		position:relative;
		background:#a1180e;
	}
	footer p{
		color:#b89d49;
		font-size:12px;
		text-align:center;
		padding:13px 0 10px 0;
	}
	footer .toTop{
		position:absolute;
		top:-40px;
		right:10px;
	}
	footer .toTop a{
		border:1px solid #a1180e;
		background:rgba(161,24,14,.0);
		-webkit-border-radius:5px;
		border-radius:5px;
		display:block;
	}
	footer .toTop a:hover{
		border:1px solid #a1180e;
		background:rgba(161,24,14,.3);
		-webkit-border-radius:5px;
		border-radius:5px;
		display:block;
	}
	footer .toTop a img{
		width:30px;
		height:30px;
	}
}