/* normalize
-------------------*/

/*! normalize.css v2.0.1 | MIT License | git.io/normalize */article,aside,details,figcaption,figure,footer,header,hgroup,nav,section,summary{display:block}audio,canvas,video{display:inline-block}audio:not([controls]){display:none;height:0}[hidden]{display:none}html{font-family:sans-serif;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%}body{margin:0}h1{font-size:2em}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:700}dfn{font-style:italic}mark{background:#ff0;color:#000}code,kbd,pre,samp{font-family:monospace,serif;font-size:1em}pre{white-space:pre;white-space:pre-wrap;word-wrap:break-word}q{quotes:"\201C" "\201D" "\2018" "\2019"}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:0}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}legend{border:0;padding:0}button,input,select,textarea{font-family:inherit;font-size:100%;margin:0}button,input{line-height:normal}button,html input[type="button"],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],input[disabled]{cursor:default}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}input[type=search]{-webkit-appearance:textfield;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box}input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration{-webkit-appearance:none}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}textarea{overflow:auto;vertical-align:top}table{border-collapse:collapse;border-spacing:0}

/* reset
-------------------*/

html {
	/*background-color:#FFF;*/
	font-size: 62.5%; /* sets the base font to 10px for easier math */
}
body,h1,h2,h3,h4,h5,h6,pre,ul,ol,li,dl,dt,dd,p,img {
	margin: 0;
	padding: 0;
}
body {
	color:#333;
	
	overflow-x: hidden;
}
body * {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}
a,a:link,a:hover,a:focus {
	color: #333;
	text-decoration: none;
	cursor: pointer;
	outline: none;
	-webkit-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}
ul,ol {
	list-style-type: none;
}
::selection {
	background-color: #000;
	color: #FFF; /* Safari */
}
::-moz-selection {
	background-color: #000;
	color: #FFF; /* Firefox */
}
@font-face {
  font-family: 'Yu Gothic';
  font-style: normal;
  font-weight: 600;
  src: url("../css/font/YuGothic-B.woff") format('woff');
}
@font-face {
  font-family: 'Yu Gothic';
  font-style: normal;
  font-weight: 500;
  src: url("../css/font/YuGothic-M.woff") format('woff');
}





.spMenu{
	background: #5d0030;
	cursor: pointer;
	display: block;
	height: 80px;
	width: 80px;
	position: fixed;
	right: 0;
	top: 0;
	z-index: 1010;
}
.spMenu span {
	background-color: #FFF;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
	display: inline-block;
	vertical-align: top;
	zoom: 1; /* Fix for IE7 */
    height: 1px;
    width: 45px;
    position: absolute;
    left: 18px;
	-webkit-transition: all 600ms cubic-bezier(0.19, 1, 0.22, 1);
	transition: all 600ms cubic-bezier(0.19, 1, 0.22, 1);
}
.spMenu span:nth-of-type(1) { top: 25px; }
.spMenu span:nth-of-type(2) { top: 40px; }
.spMenu span:nth-of-type(3) { top: 55px; }
.spMenu.active{
	height:80px;
	width: 80px;
}
.spMenu.active span{
	background-color: #fff;
}
.spMenu.active span:nth-of-type(1) {
	-webkit-transform: translateY(20px) rotate(-45deg);
	transform: translateY(20px) rotate(-45deg);
}
.spMenu.active span:nth-of-type(2) {
	opacity: 0;
}
.spMenu.active span:nth-of-type(3) {
	-webkit-transform: translateY(-10px) rotate(45deg);
	transform: translateY(-10px) rotate(45deg);
}
.spMenu.active span:nth-of-type(1) {
    top: 20px;
}
.spMenu.active span:nth-of-type(3) {
    top: 50px;
}
#spNav{
	/*height: 100%;*/
	display: block;
	transition: all 550ms ease 0.25s;
	/*visibility: hidden;*/
	padding-top: 59px;
	/*width: 80%;*/
	width:100%;
    position: fixed;
	right: -100%;
    top: 0;
	z-index: 990;
}
#spNav.active{
	visibility: visible;
	right: 0;
	background-color: #000;
}
/*#spNav #spBg{
	background: rgba(0,0,0,0.5);
    height: 100%;
    width: 500%;
    position: fixed;
	right: -50%;
    top: 0;
    z-index: -1;
    opacity: 0;
	transition: all 550ms ease 0.25s;
	pointer-events: none;
}*/
#spNav.active #spBg{
	right: 0;
    opacity: 1;
	pointer-events: auto;
}
#spNav::after {
	background: rgba(0,0,0,0.8);
    content: "";
    height: 100%;
    left: 100%;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -1;
}
#spNav::before,
#spNav::after {
    opacity: 0;
	transition: all 550ms ease 0.25s;
}
#spNav.active::before,
#spNav.active::after {
    opacity: 1;
}
#spNav .closeBtn{
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	padding: 15px 3%;
	text-align: right;
}
#spNav nav{
	width:100%;
}
#spNav nav ul li{
	border-bottom: 1px solid rgba(255,255,255,0.2);
	width: 100%;
}
#spNav nav ul li a{
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	color: #666;
	font-size: 20px;
	font-weight: bold;
	text-align: center;
	display: block;
	padding: 30px 10px;
	/*font-family: 'Amiri', serif;*/
	line-height:1.2;
	letter-spacing:0.6rem;
}
#spNav nav ul li a:hover{
	background-color: #333;
	color: #FFF;
	text-decoration: none;
}
#spNav nav ul li:nth-child(5),#spNav nav ul li.snsBtn {
	border-bottom: none;
}
#spNav nav ul li:nth-child(5) a {
	letter-spacing:0rem;
	font-size: 20px;
	font-style: italic;
}
#spNav nav ul li:nth-child(5) a .font24 {
	font-size: 24px;
}
#spNav nav ul li:nth-child(5) a .font13 {
	font-size: 13px;
}
#spNav nav ul li.snsBtn {
	text-align: center;
}
#spNav nav ul li.snsBtn .btn {
	line-height: 0;
	display: inline-block;
	width: 35px;
	height: 35px;
	margin: 10px 7px 50px;
	padding: 0;
}
#spNav nav ul li.snsBtn .btn a {
	padding: 0;
}
#spNav nav ul li.snsBtn .btn a:hover {
	background-color: #000;
	display: block;
}
#spNav nav ul li.snsBtn a img {
	display: block;
}
#spNav nav .logo a img {
	width:120px;
	height:94px;
}
.pcDisp {
	display: none;
	pointer-events: none;
	cursor: inherit;
}

@media only screen and (min-width:768px) {
.spDisp {
	display: none;
	pointer-events: none;
	cursor: inherit;

}
	#spNav nav{
	width:600px;
}
#spNav::after {
    left: 600px;
    width: 600px;
}
#spNav {
    width: 600px;
}
#spNav nav ul li.snsBtn .btn {
    width: 28px;
	height: 28px;
}
}
