@charset "utf-8";

/*
	common.css
-----------------------------------------------------------------------------------------*/
/* common
----------------------------------------------------*/
body {
	position:relative;
	height:auto !important;
	/*min-width:980px;*/
	padding: 0;
	margin: 0;
	text-align: left;
	line-height: 1.6;
	font-family: Verdana, Roboto, "Droid Sans", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
	font-size: 16px;
	color: #333;
	background: #fff;
}
.sp{
	display:none !important;
	*display:none\9;
}
#sp_header,
#spNav{
	display:none ;
}
*, *:before, *:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}
img { vertical-align: bottom;}

input[type=text], input[type=password], input[type=checkbox], input[type=radio], input[type=textarea], select, textarea {
	font-family: Verdana, Roboto, "Droid Sans", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
	outline: 0;
	/*border: none;*/
}
.clear:after {
	content: ".";
	display: block;
	clear: both;
	height: 0;
	visibility: hidden;
}
.clear { display: block; clear:both;}
* html .clear { height: 1%}
a { text-decoration: none;}
a:hover { text-decoration: underline;}

img.scale-up {
	-moz-transition: -moz-transform 0.5s linear;
	-webkit-transition: -webkit-transform 0.5s linear;
	-o-transition: -o-transform 0.5s linear;
	-ms-transition: -ms-transform 0.5s linear;
	transition: transform 0.5s linear;
}
img.scale-up:hover {
	-webkit-transform: scale(1.2);
	-moz-transform: scale(1.2);
	-o-transform: scale(1.2);
	-ms-transform: scale(1.2);
	transform: scale(1.2);
}
.mt10{margin-top:10px !important;}
.mt20{margin-top:20px !important;}
.mt30{margin-top:30px !important;}
.mt40{margin-top:40px !important;}
.mt50{margin-top:50px !important;}
.mt60{margin-top:60px !important;}
.mt70{margin-top:70px !important;}
.mt80{margin-top:80px !important;}

.mb10{margin-bottom:10px !important;}
.mb20{margin-bottom:20px !important;}
.mb30{margin-bottom:30px !important;}
.mb40{margin-bottom:40px !important;}
.mb50{margin-bottom:50px !important;}
.mb60{margin-bottom:60px !important;}
.mb70{margin-bottom:70px !important;}
.mb80{margin-bottom:80px !important;}

.pt10{padding-top:10px !important;}
.pt20{padding-top:20px !important;}
.pt30{padding-top:30px !important;}
.pt40{padding-top:40px !important;}
.pt50{padding-top:50px !important;}
.pt60{padding-top:60px !important;}
.pt70{padding-top:70px !important;}
.pt80{padding-top:80px !important;}


/* wrapper
----------------------------------------------------*/
#wrapper {
	width: 100%;
	height: auto;
	margin: 0 auto;
	background-color: #fff;
}

/* header
----------------------------------------------------*/
header {
	/*box-shadow: 0px 20px 40px 0px #b5b5b5;
	-moz-box-shadow: 0px 20px 40px 0px #b5b5b5;
	-webkit-box-shadow: 0px 20px 40px 0px #b5b5b5;*/
	overflow:hidden;
}

/* nav
----------------------------------------------------*/
nav {
	background: #003559;
	height: 52px;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 9999;
	width: 100%;
	opacity:0.8;
	filter: alpha(opacity=80);
	background-color:rgba(0,53,89,0.8);
}
nav ul {
	width: 980px;
	height: auto;
	margin: 6px auto 0;
	font-size: 0;
}
nav ul li {
	display: inline-block;
	vertical-align: middle;
	width: 105px;
	position: relative;
	text-align: center;
	border-left:1px solid #fff;
}
nav ul li:first-child,
nav ul li:nth-child(2){
	border-left:none;
}
nav ul li.logo {
	margin: 0 auto;
	padding: 3px 0 13px;
	margin-right:100px;
}
nav ul li a img { vertical-align: middle;}
nav ul li a {
	display: block;
	padding: 4px 0;
	font-size:13px;
	color:#fff;
}
nav ul li.box { 
	position: relative;
	cursor: pointer;
}
nav ul li.box:before {
	height: 5px;
	width: 0;
	left: 50%;
	bottom: -5px;
	content: "";
	position: absolute;
	display: block;
}
nav ul li.box:hover:before {
	width: 100%;
	left: 0;
}

/* dropmenu
----------------------------------------------------*/
.dropmenu {
	*zoom: 1;
  list-style-type: none;
}
.dropmenu:before, .dropmenu:after { content: "";}
.dropmenu:after { clear: both;}
.dropmenu li {
	position: relative;
}
.dropmenu li ul {
	list-style: none;
	position: absolute;
	z-index: 100;
	top: 100%;
	left: 0;
	margin-top: 8px;
	padding: 0;
	width: 105px;
}
.dropmenu li ul li {
	width: 100%;
	overflow: hidden;
	height: 0;
	-webkit-transition: all 0.8s;
	-moz-transition: all 0.8s;
	-ms-transition: all 0.8s;
	-o-transition: all 0.8s;
	transition: all 0.8s;
	z-index: 100;
	opacity: 0;
	border:none;
}
.dropmenu li ul li a {
	padding: 11px 0;
	background: #003559;
	text-align: center;
	color: #fff;
	font-size: 13px;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
	background-color:rgba(0,53,89,0.8);
}
.dropmenu li ul li a:hover {
	border-bottom: none;
	text-decoration: none;
	color: #003559;
	background:#fff;
}
.dropmenu li:hover ul li {
	overflow: visible;
	opacity: 1;
	height: 42px;
}


/* nav.scroller
----------------------------------------------------*/
nav.scoller {
	width: 100%;
	height: 52px;
	/*margin: 0 auto;*/
	position: fixed;
	top: 0;
	z-index: 10000;
}
nav.scoller ul {
	height: 80px;
	/*margin: 0 auto;
	display: table;*/
}
nav.scoller ul li {
	/*width: 124px;
	display: table-cell;*/
}
nav.scoller ul li.logo {
	margin: 0 auto;
	padding: 3px 0 13px;
	margin-right:100px;
}
nav.scoller ul li a {
	display: block;
	/*padding: 5px 0;*/
}
/*nav.scoller ul li.logo a { padding: 36px 0 29px;}
nav.scoller .dropmenu li ul { width: 168px;}
nav.scoller ul li.bdn ul li a { padding: 15px 0;}
nav.scoller ul li.box:before {
	height: 3px;
	bottom: 0px;
}*/
nav.scoller ul li.bdn ul li { display: inline-block;}

/* main_img
----------------------------------------------------*/
header .mainimg1{
	position: absolute;
	top:0;
	right:0;
	width:794px;
	height:60%;
	/*width:50%;
	height:55%;*/
	background:url(../img/main1.jpg) no-repeat;
	/*background-size:cover;*/
}
header .mainimg2{
	position: absolute;
	bottom:0;
	right:0;
	width:794px;
	height:41%;
	/*width:50%;
	height:45%;*/
	background:url(../img/main2.jpg) no-repeat;
	/*background-size:cover;*/
}
header .mainimg3{
	position: absolute;
	top:0;
	left:0;
	width:794px;
	height:50%;
	/*right:58%;
	width:50%;
	height:45%;*/
	background:url(../img/main3.jpg) no-repeat;
	/*background-size:cover;*/
}
header .mainimg4{
	position: absolute;
	bottom:0;
	left:0;
	width:794px;
	height:50%;
	/*right:58%;
	width:50%;
	height:55%;*/
	background:url(../img/main4.jpg) no-repeat;
	/*background-size:cover;*/
}
header .main_title{
	position: absolute;
	top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

/* section
----------------------------------------------------*/
section .inner {
	width: 1200px;
	height: auto;
	margin: 0 auto;
}


/* pagetop
----------------------------------------------------*/
/*#pagetop {
	position: absolute;
    text-align: center;
    margin: 0 auto 30px;
    bottom: 2%;
    right: 15%;
}*/
#pageTop{
	border-radius:5px;
	color:#FFF;
	padding:20px;
	position:fixed;
	bottom:120px;
	right:20px;
	}
#pageTop img{
	width:40px;
	height:auto;
}

/* footer
----------------------------------------------------*/
footer {
	background-color: #003559;
}
footer .inner {
	width: 980px;
	height: auto;
	margin: 0 auto;
	color: #fff;
	display: table;
	table-layout: auto;
	padding:20px 0;
}
footer a{
	color:#fff;
	font-size:13px;
}
footer ul{
	text-align:center;
	padding-left:14%;
}
footer ul li{
	display:inline-block;
	padding:0 20px;
	border-left:1px solid #fff;
}
footer ul li:first-child,
footer .icon ,
footer .icon ul li{
	border:none;
}
footer .icon{
	float:right;
}
footer .icon ul{
	padding-left:0;
}
footer .icon ul li{
	padding:0 0 0 10px;
}
footer .icon ul li:first-child{
	padding:0;
}
footer ul.copy {
	font-size:10px;
	color:#fff;
	margin:20px 0 0 0;
	padding-left:0;
}
footer ul.copy li{
	border:none;
	vertical-align:text-bottom;
	width:49%;
}
footer ul.copy li:nth-child(2){
	text-align:right;
}
.facebook-wrapper {
    max-width: 500px;
    /*margin: 0 auto 50px auto;*/
}
.facebook-wrapper > .fb-page {
    width: 100%;
}
.facebook-wrapper > .fb-page > span,
.facebook-wrapper iframe {
    width: 100% !important;
}

/* 404 */
#e404{
	padding:100px 0;
	text-align:center;
	font-size:18px;
}
@media screen and (max-width: 1920px){
	header{
		width:100% !important;
	}
	header .mainimg1{
		left:58%;
		width:50%;
		height:55%;
		background-size:cover;
		background-position-x:left;
	}
	header .mainimg2{
		left:58%;
		width:50%;
		height:45%;
		background-size:cover;
		background-position-x:left;
	}
	header .mainimg3{	
		right:58%;
		width:42%;
		height:45%;
		background-size:cover;
		background-position-x:right;
	}
	header .mainimg4{
		right:58%;
		width:42%;
		height:55%;
		background-size:cover;
		background-position-x:right;
	}

}
		
@media screen and (max-width: 670px){
	.pc{display:none !important;}
	.sp{display:block !important;}
	#wrapper {
		width: 100%;
		height: auto;
		margin: 0 auto;
		background-color: #fff;
	}
	#spNav{
		position:absolute;
		top:60px;
		width:100%;
		background-color:rgba(0,53,89,0.8);
		border:none;
	}
	#spNav span:before{
		content: "";
		display: block;
		border-top: solid 1px rgba(186,186,186,0.8);
		width: 10%;
		height: 1px;
		position: absolute;
		top: 50%;
		left:30%;
		z-index: 1;
	}
	#spNav p span{
		padding: 0 20px;
		position: relative;
		z-index: 5;
	}
	#spNav span:after{
		content: "";
		display: block;
		border-top: solid 1px rgba(186,186,186,0.8);
		width: 10%;
		height: 1px;
		position: absolute;
		top: 50%;
		right:30%;
		z-index: 1;
	}
	nav {
		height:60px;
		opacity:1;
		filter: alpha(opacity=100);
		background-color:rgba(0,53,89,1);
	}
	nav ul{
		margin: 10px auto 0;
	}
	nav ul li span {
		display: block;
		padding: 5px 0;
		font-size:14px;
		color:#bababa;
	}
	nav.scoller,
	nav.scoller ul{
		height: 60px;
	}
	#spNav p{
		padding:10px 0;
		border-bottom:1px dashed #fff;
	}
	#spNav p.bd_none{
		border-bottom:none;
	}
	.sp_main{
		display:none !important;
	}
	body,
	nav ul,
	section .inner,
	footer .inner,
	#access .bnr_area li img
	{
		width:100% !important;
	}
	nav ul li{
		display:none;
	}
	nav ul li.logo,
	nav ul li.sp{
		display:block;
	}
	nav ul li.logo{
		margin-right:0;
		float:left;
		padding-left:3% !important;
	}
	nav ul li.sp{
		float:right;
		border:none;
		width:14%;
	}
	#access .bnr_area li{
		width:49%;
		margin-right:0 !important;
	}
	#access iframe{
		height:250px;
	}
	footer ul{
		width:100%;
		padding:1%;
	}
	footer ul li{
		width:40%;
		padding:0;
		margin-bottom:10px;
	}
	footer ul li.icon{
		width:100%;
		margin-top:10px;
	}
	footer ul li.icon ul li{
		width:10%;
	}
	footer ul li:nth-child(3){
		border-left:none;
	}
	footer ul.copy li{
		width:90%;
		display:block;
		text-align:center;
		margin:0 auto;
	}
	
	footer ul.copy img{
		 width:100%;
	}
	#pagetop{
		bottom:4.5%;
		right:0%;
	}
	#pagetop img{
		text-align:right;
	}
	header.sp{
		padding-top:60px !important;
	}
}

