@charset "utf-8";

/* common
----------------------------------*/
.sp{display: none;}

@media screen and (max-width: 767px) {
	.pc{display: none;}
	.sp{display: block;}
}

body{
	counter-reset: num;
}


/* ---------------------------
	Header
--------------------------- */

header{
	width: 100%;
	height: 78px;
	overflow: hidden;
	background: rgba(255,255,255,0.1);
	position: fixed;
	left: 0;
	top: 0;
	z-index: 9999;
	box-shadow:0px 0px 6px 3px rgba(0,0,0,0.1);
	-moz-box-shadow:0px 0px 6px 3px rgba(0,0,0,0.1);
	-webkit-box-shadow:0px 0px 6px 3px rgba(0,0,0,0.1);

	transition: 0.5s all;
}
header div.pc{
	width: 970px;
	width: 100%;
	margin: 0 auto;
}
header.active{
	height: 68px;
	background: rgba(255,255,255,1);
}


header div.pc h1{
	float: left;
	padding:24px 15px;
		transition: 0.5s all;
}
header div.pc h1 img{
	width: 226px;
}
header div.pc h1 .active{display: none;}

header.active div.pc h1{
	padding:19px 15px;
}
header.active div.pc h1 .deactive{display: none;}
header.active div.pc h1 .active{display: block;}


header div.pc ul{
	text-align: right;
	letter-spacing: -0.4em;
	margin-right: 15px;
}
header div.pc ul li{
	display: inline-block;
	letter-spacing: normal;
}
header div.pc ul li a{
	text-decoration: none;
	color: #b3b3b3;
	line-height: 78px;
	padding: 0 15px;
		transition: 0.5s all;
}
header div.pc ul li.current a,
header div.pc ul li.active a,
header div.pc ul li a:hover{
	color: #333;
	text-decoration: none;
}

header.active div.pc ul li a{
	line-height: 68px;
}






footer{
	background: #fff;
}
footer div.notes{
	padding: 20px 0;
	border-bottom: 1px dotted #bbbcbe;
}
footer div.notes .indentList{
	width: 970px;
	margin: 0 auto;
	font-size: 12px;
}

ul#footerMenu{
	letter-spacing: -0.4em;
	text-align: center;
	margin-left: -80px;
}
ul#footerMenu li{
	display: inline-block;
	letter-spacing: normal;
	font-size: 14px;
	padding: 0 30px;
	font-size: 14px;
}
ul#footerMenu li:nth-child(2){
	padding-right: 45px;
}
ul#footerMenu li:nth-child(3){
	padding-left: 45px;
}
ul#footerMenu li a{
	display: inline-block;
	color: #333;
	line-height: 60px;
}

div.copyRight{
	background: #ec1c24;
	color: #fff;
	text-align: right;
	padding:35px 100px 20px;
	position: relative;
}
footer h2{
	float: left;
}
footer h2 img{
	width: 166px;
}

footer #goTop{
  width: 45px;
  height: 45px;
	top: -23px;
  left: 50%;
	margin-left: -23px;
  position: absolute;
  z-index: 999;
}

#pageTop {
  display: block;
  margin: 0;
  width: 60px;
  height: 60px;
  right: 10px;
  position: fixed;
  z-index: 999;
}
#pageTop a {
  display: block;
  background: url(../img/gotop.png) center center no-repeat;
  -webkit-background-size: 60px auto;
  background-size: 60px auto;
  width: 60px;
  height: 60px;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}

/*---------------------------------------------------------------*/

@media screen and (max-width: 736px) {

	header,
	header.active{
		height: auto;
		background: none;
	}
	header h1{
		text-align: center;
		padding:15px 0;
		background: #fff;
	}
	header div.ddMenu{
		border-top: #f2f2f2 1px solid;
		background: rgba(255,255,255,0.9);
		padding: 10px 0;
		display: none;
	}
	header div.ddMenu li{
		text-align: center;
	}
	header div.ddMenu li a{
		line-height: 34px;
		display: block;
		color: #333;
		font-size: 15px;
	}
	header div.ddMenu li a:hover{
		text-decoration: none;
	}
	.sp_menu {
		width: 44px;
		height: 44px;
		position: absolute;
		top: 0;
		right: 0;
		margin: 0;
	}
	.sp_menu i {
		width: 16px;
		position: absolute;
		left: 50%;
		margin-left: -8px;
		height: 15px;
		top: 22px;
	}
	.sp_menu span {
		transition: all 0.3s;
		transform: rotate(0deg);
		height: 2px;
		display: block;
		background-color: #333;
		line-height: 1;
		transform: translateY(-1);
	}
	.sp_menu span.top {
		transform: translateY(-5px);
	}
	.sp_menu span.bottom {
		transform: translateY(5px);
	}

	.sp_menu.open .middle {
	    background: rgba(255, 255, 255, 0);
	}
	.sp_menu.open .top {
	    transform: rotate(-45deg) translateY(2.5px);
	}
	.sp_menu.open .bottom {
	    transform: rotate(45deg) translateY(-2.5px);
	}



	footer div.notes{
		padding: 10px;
	}
	footer div.notes .indentList{
		width: 100%;
		font-size: 11px;
	}

	ul#footerMenu{
		margin-left: 0;
		height: 60px;
	}
	ul#footerMenu li{
		font-size: 11px;
		padding: 0 1.5%;
		font-size: 11px;
	}
	ul#footerMenu li:nth-child(2){
		padding-right: 1.5%;
	}
	ul#footerMenu li:nth-child(3){
		padding-left: 1.5%;
	}
	ul#footerMenu li a{
		display: inline-block;
		color: #333;
		line-height: 40px;
	}

	div.copyRight{
		text-align: right;
		padding:20px 15px 15px;
		position: relative;
	}
	footer h2 img{
		width: 100px;
	}

	footer #goTop{
	  width: 40px;
	  height: 40px;
		top: -20px;
		margin-left: -20px;
	}
	#pageTop {
	    width: 30px;
	    height: 30px;
	    right: 15px;
	}
	#pageTop a {
    display: block;
    background: url(../img/gotop.png) center center no-repeat;
    -webkit-background-size: 30px auto;
    background-size: 30px auto;
    width: 30px;
    height: 30px;
	}
}



/* sub
----------------------------------*/










/**/
