@charset "utf-8";
/*===========================================
title:common.css
create:2014-12-05
update:2014-12-05
===========================================*/


/* 1.Common Set
********************************************/

/*-------------------------------------------
Font set (62.5% = 10px)
------------------------------------------ */
html {
     font-size: 62.5%;
}

body {
	background: #000;
	font-size: 1.4em; /* 14px */
	-webkit-text-size-adjust: 100%;
	font-family: 'Muli','Noto Sans Japanese',sans-serif,Meiryo,Osaka;
	/*font-family: 'Questrial', 'Josefin Slab','Noto Sans Japanese',sans-serif,Meiryo,Osaka;*/
	/*font-family: 'Josefin Slab','Noto Sans Japanese',sans-serif,Meiryo,Osaka;*/
	letter-spacing: 1px;
	font-weight: 300;
	color: #333;
	line-height: 1.5;
	overflow-x: hidden;
}

.noto100{  font-family: 'Noto Sans Japanese', serif; font-weight:100;}
.noto200{  font-family: 'Noto Sans Japanese', serif; font-weight:200;}
.noto300{  font-family: 'Noto Sans Japanese', serif; font-weight:300;}
.noto400{  font-family: 'Noto Sans Japanese', serif; font-weight:400;}
.noto500{  font-family: 'Noto Sans Japanese', serif; font-weight:500;}
.noto700{  font-family: 'Noto Sans Japanese', serif; font-weight:700;}
.noto900{  font-family: 'Noto Sans Japanese', serif; font-weight:900;}
.pathway { font-family: 'Pathway Gothic One', sans-serif;}

/*-------------------------------------------
Link set
------------------------------------------ */
a{
	text-decoration: none;
	color: #aaa;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-o-transition: 0.5s;
	-ms-transition: 0.5s;
	transition: 0.5s;
}

a:visited {
	text-decoration: none;
	color: #aaa;
}

a:hover {
	text-decoration: none;
	color: #eee;
}

a:active {
	text-decoration: none;
	color: #aaa;
}

/* 文字装飾
********************************************/
.red {
	color: #660000;
}

.white {
	color: #ffffff;
}

.drawer{
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: scroll;
	-webkit-overflow-scrolling: touch;
	background: #000;
	opacity: 0.85;
	z-index: 9997;
}

.closeArea{
	position: absolute;
	top: 0;
	left: 0;
	display: none;
	width: 100%;
	height: 100%;
	background: none;
	z-index: 9998;
	cursor: pointer;
}

.drawer .inner{
	position: relative;
	width: 100%;
	height: auto;
	box-sizing: border-box;
	padding: 20px;
	opacity: 1;
	z-index: 9999;
}

.drawer .inner li{
	border-top: 1px solid #555;
	padding: 20px 0;
	text-align: center;
	font-size: 120%;
	font-weight: 300;
	text-decoration: none;
	list-style: none;
}

.drawer .inner li:last-child{
	border-bottom: 1px solid #555;
}

.drawer .inner li a{
	display: block;
}

.close{
	position: fixed;
	bottom: 0;
	right: 0;
	width: 30px;
	height: 30px;
	cursor: pointer;
	line-height: 1;
}

.close img{
	width: 30px;
}

/*　bodyタグに追加してスクロールを消す　*/
.off{
	height: 100%;
	overflow: hidden;
}

