@charset "utf-8";
/* CSS Document */

/* ------------------------------------------------------------
	00. BASE SETTING CSS
   ------------------------------------------------------------ */

body{
	color: #2E3233;
	width:100%;
	background:#FFF;
	font-size:14px;
	line-height:1.6;
}

:root * {
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
	box-sizing: border-box;
}
:root * a img {
	-webkit-transition: all 0.1s ease;
	transition: all 0.1s ease;
}
:root * img {
	vertical-align: bottom;
}


/* ------------------------------------------------------------
	links
   ------------------------------------------------------------ */

a {outline: none;}

a,
a:link,
a:visited{
	text-decoration: none;
	color: #2E3233;
	-webkit-transition: all .3s;
	transition: all .3s;
}

a:hover{
	opacity:0.5;
}


/* ------------------------------------------------------------
	02. LAYOUT CSS
   ------------------------------------------------------------ */

/* ------------------------------------------------------------
	header
   ------------------------------------------------------------ */
#header{
	width: 100%;
	text-decoration: none;
	background: #FFF;
}
#header .headerInner{
	width: 900px;
	height: 100px;
	margin: 0 auto;
	position: relative;
}


#header #logo{
	position: absolute;
	top: 28px;
	left: 0;
}
#header #logo img{
	vertical-align: middle;
	width:118px;
	height:auto;
}
	#header #logo a:hover{
		opacity:1.0;
	}
	#header #logo img:hover{
		opacity:1.0;
	}
#header #logo_sp{
	display:none;
}

/* ------------------------------------------------------------
	hamburgerMenu
   ------------------------------------------------------------ */


/* ------------------------------------------------------------
	globalNav
   ------------------------------------------------------------ */
#globalNav{
	position: absolute;
	top: 40px;
	right:0;
}
#globalNav ul{
	border-left:1px solid #000;
}

#globalNav ul li{
	display: inline-block;
	text-align:center;
	width:auto;
	padding:0 20px;
	border-right:1px solid #000;

}
#globalNav ul li:first-child{
	margin-left:0;
}
#globalNav ul li a{
	position: relative;
	display:block;
	font-size:15px;
	font-weight:bold;
	letter-spacing: .1em;
}
	#globalNav ul li a:after {
		content: '';
		position: absolute;
		bottom: 0;
		left: 50%;
		width: 0;
		height: 1px;
		background-color: #000;
		transition: .3s;
		-webkit-transform: translateX(-50%);
		transform: translateX(-50%);
	}

#globalNav ul li a:hover{
	opacity:1.0;
}
	#globalNav ul li a:hover:after {
		width: 100%;
	}
/* ------------------------------------------------------------
	contents
   ------------------------------------------------------------ */
#contents {
	width: 900px;
	margin: 0 auto 100px;
}
#contents:after {
	content: "";
	display: block;
	clear: both;
	height: 0;
}

#contents #main{
	width: 590px;
	float: right;
    min-height: 128px;
}
#contents #side{
	width: 290px;
	float: left;
}

.ttlarea{
	zoom:1;
	height:70px;
}
	.ttlarea:after {
	  content: "";
	  display: block;
	  clear: both;
	  }

.ttlarea .hd_h1{
	width: 310px;
    float: left;
	line-height: 40px;
}
.ttlarea .hd_h2{
    float: left;
	line-height: 40px;
}
#main .hd_h2{
	line-height: 1.0;
	margin-bottom:30px;
}
#main a,
#main a:link,
#main a:visited {
	color: rgb(0,100,180);
}

/*	breadCrumb
   ------------------------------------------------------------ */
#contents #breadCrumb{
	font-size: 12px;
	margin:20px 0 50px;
}
#contents #breadCrumb li{
	display: inline-block;
	position: relative;
	color:#787a7b;
}
	#contents #breadCrumb li:after{
		content:'>';
		display:inline-block;
		margin:0 5px 0 10px;
	}
	#contents #breadCrumb li:last-child:after{
		content:'';
		display:none;
	}

#contents #breadCrumb li a{
	color:#787a7b;
}



/* ------------------------------------------------------------
	side
   ------------------------------------------------------------ */
#side .side_menu{
	width:220px;
}
#side .side_menu li{
	font-size:14px;
	border-top:1px dotted #2E3233;
}
#side .side_menu li:last-child{
	border-bottom:1px dotted #2E3233;
}
#side .side_menu li a{
	display:block;
	padding:7px 5px;
	line-height:27px;
}
#side .side_menu li a:hover{
	background: #F0EDD4;
	opacity:1.0;
}



/* ------------------------------------------------------------
	footer
   ------------------------------------------------------------ */
#footer{
	width: 100%;
	background:#F0EDD4;
}
#footer .footerInner{
	width: 900px;
	margin: 0 auto;
	padding: 35px 0 10px;
	position: relative;
}
#footer #footerNav{
	zoom:1;
	margin-bottom:20px;
}
	#footer #footerNav:after {
	  content: "";
	  display: block;
	  clear: both; }


#footer #footerNav dl{
	width:auto;
	float:left;
	margin-right:60px;
}

#footer #footerNav dl dt a{
	width:100%;
	font-size:15px;
	font-weight:bold;
	padding-bottom:8px;
	border-bottom:2px solod #000;
}
#footer #footerNav dl dt{
	border-bottom:1px solid #000;
	margin-bottom:15px;
}

#footer #footerNav dl dd li{
	font-size:12px;
	margin-bottom:5px;
}

#footer .footerInnerBottom{
	background:#fff;
	padding:20px 0;
}

/* ------------------------------------------------------------
	footerInnerBottom
   ------------------------------------------------------------ */
#footerInnerBottom{
	height:50px;
	background:#fff;
}
.footerInnerBottom{
	width: 900px;
	margin: 0 auto;
	padding: 15px 0;
	position: relative;
}
.footerInnerBottom ul{
	float:left;
	border-left:1px solid #000;
}

.footerInnerBottom ul li{
	display: inline-block;
	text-align:center;
	width:auto;
	padding:0 20px;
	border-right:1px solid #000;

}
.footerInnerBottom ul li:first-child{
	margin-left:0;
}
.footerInnerBottom ul li a{
	position: relative;
	display:block;
	font-size:15px;
	font-weight:bold;
	letter-spacing: .1em;
}
	.footerInnerBottom ul li a:after {
		content: '';
		position: absolute;
		bottom: 0;
		left: 50%;
		width: 0;
		height: 1px;
		background-color: #000;
		transition: .3s;
		-webkit-transform: translateX(-50%);
		transform: translateX(-50%);
	}

.footerInnerBottom ul li a:hover{
	opacity:1.0;
}
	.footerInnerBottom ul li a:hover:after {
		width: 100%;
	}

/*	footerCopyright
   ------------------------------------------------------------ */
#footerInnerBottom #footerCopyright{
	float:right;
	font-size:12px;
}

#pagetop {
	display:none;
}
/*#pagetop {
	position: fixed;
	right: 30px;
	bottom: 45px;
	z-index: 999;
	display: none;
}
#pagetop a {
	display:block;
	width:70px;
	height:70px;
	border-radius:70px;
	background: #91c9d2;
	opacity:0.3;
	text-align:center;
	line-height:40px;
}
#pagetop a img{
	opacity:1.0;
}
#pagetop a:hover {
	opacity:1.0;
}
*/
