@charset "utf-8";
/*-----------------------------------------------
 root
-----------------------------------------------*/
h1,h2,h3,h4,h5,h6,p,ul,ol,dl,dt,dd{
	padding: 0;
	margin: 0;
}
ol,ul{
	list-style-type: none;
}
html{
	overflow-y: scroll;
	font-size: medium;
}
body{
	overflow: hidden;
	min-width: 1200px;
	background-image: url(../img/global/bg.png);
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-position: center top;
	background-size: cover;
	background-color: #efeff0;
	font-size: 62.5%; /* 16px -> 10px */
	font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Meiryo, 'メイリオ', sans-serif;
	font-weight: 300;
}
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: #000;
	text-decoration: none;
}
a:hover{
	text-decoration: underline;
}
section{
	position: relative;
}
@media only screen and (max-width: 640px) {
	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{
	position: relative;
	z-index: 10;
	height: 116px;
	background-color: #000;
}
#header > .inner{
	position: relative;
	width: 1200px;
	margin: 0 auto;
}
#header .logo{
	position: absolute;
	top: 6px;
	left: 0;
}
#header .title{
	padding-top: 20px;
    font-size: 32px;
	font-weight: 700;
	color: #fff;
	text-align: center;
}
#header .title a {
	color: #fff;
	text-decoration: none;
}
#header .title .sp {
	display: none;
}
#header nav ul{
	position: absolute;
	top: 78px;
	right: 0;
	font-size: 0;
}
#header nav ul li{
	display: inline-block;
	width: 198px;
	border-left: 1px solid #069f99;
	text-align: center;
}
#header nav ul li:last-child{
	border-right: 1px solid #069f99;
}

@media only screen and (max-width: 640px) {
	#header{
		height: auto;
	}
	#header > .inner{
		width: auto;
		padding: 5% 0;
		box-sizing: border-box;
	}
	#header .logo{
	    top: 2px;
	    left: 4px;
    }
	#header .logo img{
		width: 68px;
	}
	#header nav{
		display: none;
	}
	#header .title{
		position: static;
		font-size: 	4.375vw;
		line-height: 1.2;
		padding-top: 0;
		text-align: center;
	}
	#header .title .sp {
		display: block;
	}
}
/*-----------------------------------------------
 footer
-----------------------------------------------*/
#footer{
	position: relative;
	z-index: 10;
	padding-bottom: 30px;
	background-color: #000;
}
#footer .bannerList{
	padding: 20px 0;
	background-color: #fff;
	font-size: 0;
	text-align: center;
}
#footer .bannerList li{
	display: inline-block;
	margin-right: 10px;
	border: 1px solid #f9f8f5;
}
#footer .bannerList li:last-child{
	margin-right: 0;
}
#footer .logo{
	margin-bottom: 15px;
	padding-top: 30px;
	text-align: center;
}
#footer small{
	display: block;
	text-align: center;
	color: #fff;
}
@media only screen and (max-width: 640px) {
	#footer .bannerList{
		padding: 20px 0 10px;
	}
	#footer .bannerList li{
		margin: 0 5px 10px;
	}
}
/*-----------------------------------------------
 navigation
-----------------------------------------------*/
#open{
	display: none;
	position: fixed;
	z-index: 20;
	top: 10px;
	right: 10px;
	width: 55px;
	height: 55px;
	background-image: url(../img/global/navigation/open.png);
	background-size: 55px;
}
#close{
	position: fixed;
	z-index: 20;
	top: 10px;
	right: 10px;
	width: 55px;
	height: 55px;
	background-image: url(../img/global/navigation/close.png);
	background-size: 55px;
}
#navigation{
	overflow: hidden;
	display: none;
	position: fixed;
	z-index: 30;
	top: 0;
	width: 100%;
	height: 0;
	background-color: rgba(0,0,0,0.8);
}
#navigation nav{
    display: table;
    width: 100vw;
    height: 100vh;
}
#navigation ul{
	display: table-cell;
	vertical-align: middle;
	text-align: center;
}
#navigation li{
	margin-bottom: 5vh;
}
#navigation li img{
	max-width: 100%;
}
#navigation li.logo img{
	width: 110.5px;
}
#navigation li.top img{
	width: 51px;
}
#navigation li.comment img{
	width: 143px;
}
#navigation li.about img{
	width: 160px;
}
#navigation li.chronology img{
	width: 199px;
}
#navigation li.novel img{
	width: 211px;
}
#navigation li.books img{
	width: 124.5px;
}
/*-----------------------------------------------
 pageTop
-----------------------------------------------*/
#pageTop {
    position: fixed;
    bottom: 10px;
    right: 10px;
    z-index: 20;
	cursor: pointer;
}
@media only screen and (max-width: 640px) {
	#pageTop{
		width: 36px;
	}
	#pageTop img{
		width: 100%;
	}
}
