@charset "utf-8";

h1,h2,h3,h4,h5,h6,p,ul,ol,dl,dt,dd{
	padding: 0;
	margin: 0;
}

ol,ul{
	list-style-type: none;
}

/*-----------------------------------------------
 root
-----------------------------------------------*/

html{
	overflow-y: scroll;
}

body{
	overflow:hidden;
	font-family: sans-serif;
	font-weight: 400;
	background-image:url(../img/bg.jpg);
	background-size: contain;
	background-repeat: repeat;
	background-attachment: fixed;
}

/*-----------------------------------------------
 font
-----------------------------------------------*/

html{
	overflow-x: hidden;
	font-size: medium;
}

body{
	min-width: 1000px;
	font-size: 62.5%; /* 16px -> 10px */
}

div{
	line-height: 0;
}

dt,dd,li,
caption,th,td,
input,button,textarea,select,
h1,h2,h3,h4,h5,h6,address{
	line-height: 0;
	font-size: 140%;
	margin: 0;
	padding: 0;
}

p{
	line-height: 1.5;
	font-size: 140%;
	margin: 0;
	padding: 0;
}

h1 *,h2 *,h3 *,h4 *,h5 *,h6 *,
p input,p button,p select,
li h1,li h2,li h3,li h4,li h5,li h6,li p,li dt,li dd,li li,li th,li td,li input,li button,li textarea,li select,
dd h1,dd h2,dd h3,dd h4,dd h5,dd h6,dd p,dd dt,dd dd,dd li,dd th,dd td,dd input,dd button,dd textarea,dd select,
tr h1,tr h2,tr h3,tr h4,tr h5,tr h6,tr p,tr dt,tr dd,tr li,            tr input,tr button,tr textarea,tr select{
	font-size: 100%;
}

input,button,select,option,textarea{
	font-size: 14px;
}

figure{
	margin: 0;
}

a,
a:link,
a:visited{
	color: #1d99c1;
	text-decoration: none;
}

a:hover{
	text-decoration: underline;
}

section{
	position: relative;
}

@media only screen and (max-width: 1000px) {
	body{
		min-width: 0;
	}
}

/*-----------------------------------------------
 cf
-----------------------------------------------*/

.clearfix:after {
	content: " ";
	display: block;
	clear: both;
	height: 0;
	visibility: hidden;
}

.clearfix {
	min-height: 1px;
}

* html .clearfix {
	height: 1px;
	/*¥*//*/
	height: auto;
	overflow: hidden;
	/**/
}

/*-----------------------------------------------
 hover
-----------------------------------------------*/

.hover :hover{
	opacity: 0.8;
	animation: btn 0.5s;
	-webkit-animation: btn 0.5s;
	-moz-animation: btn 0.5s;
}

@keyframes btn {
	0% {
		opacity: 1;
	}
	10% {
		opacity: 0.4;
	}
	100% {
		opacity: 0.8;
	}
}

@-webkit-keyframes btn {
	0% {
		opacity: 1;
	}
	10% {
		opacity: 0.4;
	}
	100% {
		opacity: 0.8;
	}
}
@-moz-keyframes btn {
	0% {
		opacity: 1;
	}
	10% {
		opacity: 0.4;
	}
	100% {
		opacity: 0.8;
	}
}

/*-----------------------------------------------
 header
-----------------------------------------------*/

header {
	height: 80px;
}
header .nav-sp {
	display: none;
}
header .nav-pc {
	position: fixed;
	width: 100%;
	margin: 0 auto;
	background-color: #fff;
	border-bottom: 2px solid #000;
	z-index: 20;
}
header .nav-pc .navigation {
	width: 1000px;
	margin: 0 auto;
	font-size: 0;
	text-align: center;
	border-left: 2px solid #000;
	border-right: 2px solid #000;
}
header .nav-pc .navigation li {
	width: 200px;
	display: inline-block;
	vertical-align: top;
}

#pagetop {
	position: fixed;
	bottom: 135px;
	right: 10px;
}
@media only screen and (max-width: 1000px) {
	header .nav-pc {
		display: none;
	}
	header .nav-sp {
		position: fixed;
		display: block;
		width: 100%;
		height: 100px;
		background-color: #000;
		z-index: 20;
	}
	header .nav-sp .nav-btn {
		position: absolute;
		top: 0;
		right: 0;
		width: 100px;
		height: 100px;
		background: url(../img/global/nav-open.png) no-repeat top center;
		background-size: cover;
	}
	header .nav-sp .nav-btn.active {
		background: url(../img/global/nav-close.png) no-repeat top center;
		background-size: cover;
	}
	header .nav-sp .nav-box {
		display: none;
		position: fixed;
		top: 100px;
		right: 0;
		width: 100%;
		height: 100vh;
		z-index: 50;
		background-color: rgba(255,255,255,0.6);
	}
	header .nav-sp .navigation {
		position: absolute;
		top: 0;
		right: 0;
		width: 100%;
	}
	header .nav-sp .navigation li img {
		width: 100%;
	}
	header .nav-box .sns-sp {
		position: absolute;
		top: 1026px;
		right: 0;
		width: 100%;
		height: 157px;
		border-bottom: 6px solid #000;
		background-color: #fff;
	}
	header .nav-box .sns-sp ul {
		text-align: center;
		padding-top: 34px;
	}
	header .nav-box .sns-sp ul li {
		display: inline-block;
		vertical-align: middle;
		margin: 0 20px;
	}
	header .nav-box .sns-sp ul li img{
		width: 100%;
	}
	
	#content .sns-pc {
		display: none;
	}
}

/*-----------------------------------------------
 footer
-----------------------------------------------*/
#footer{
	position: relative;
	padding: 20px 0;
	border-top: 9px solid #e40b18;
	background-color: #211f20;
	text-align: center;
}
#footer .logo{
	margin-bottom: 10px;
}
#footer small{
	font-size: 12px;
	color: #fff;
}
