@charset "UTF-8";
body {
	-webkit-text-size-adjust: 100%;
	background-image: url(../_img/back.png);
	background-repeat: repeat;
	background-attachment: fixed;
	animation: bodymove 3s linear infinite;
}

@keyframes bodymove {
	0% {
		background-position: 0 0;
	}
	100% {
		background-position: -46px -78px;
	}
}

/* ========== ========== ========== ========== ========== */
/* HEADER */
/* ========== ========== ========== ========== ========== */
header {
	border-top: 4px solid #452000;
	display: block;
	margin-bottom: 40px;
}
header section {
	height: 100px;
}
header h1 {
	width: 266px;
	height: 100px;
	text-indent: -9999px;
	background-image: url(../_img/header/logo.png);
	background-position: 0 50%;
	background-size: 100%;
}
header h1 a {
	display: block;
	width: 100%;
	height: 100%;
}
header section p {
	position: absolute;
	top: 20px;
	width: 60px;
	height: 60px;
	text-indent: -9999px;
	background-position: 50% 50%;
	border-radius: 4px;
}
header #header-twitter {
	right: 20px;
	background-color: #1da1f2;
	background-image: url(../_img/header/twitter.png);
}
header #header-tumblr {
	right: 100px;
	background-color: #405064;
	background-image: url(../_img/header/tumblr.png);
}
header section p:hover {
	opacity: 0.7;
}
header section p a {
	display: block;
	width: 100%;
	height: 100%;
}
header nav {
	background-image: url(../_img/header/bg.png);
	background-repeat: repeat;
	height: 71px;
}
header nav ul {
	width: 1024px; height: 100%;
	margin: auto;
	background-position: 0 50%;
}
header nav li {
	float: left;
	width: 170px; height: 100%;
	text-indent: -9999px;
	background-image: url(../_img/header/headermenu_1.png);
}
header nav li:nth-of-type(1), header nav li:nth-of-type(6) {
	width: 172px;
}
/* [HEADER]
 * 1 TOP
 * 2 PRODUCTS
 * 3 GOODS
 * 4 EVENT
 * 5 BLOG
 * 6 SUPPORT
 */
header nav li:nth-of-type(1) { background-position: 0px 50% }
header nav li:nth-of-type(2) { background-position: -172px 50% }
header nav li:nth-of-type(4) { background-position: -342px 50% }
header nav li:nth-of-type(5) { background-position: -512px 50% }
header nav li:nth-of-type(6) { background-position: -682px 50% }
header nav li:nth-of-type(3) { background-position: -852px 50% }

header nav li a {
	display: block;
	width: 100%; height: 100%;
	opacity: 0;
	background-image: url(../_img/header/headermenu_2.png);
}
header nav li a:hover {
	opacity: 1;
}
header nav li:nth-of-type(1) a { background-position: 0px 50% }
header nav li:nth-of-type(2) a { background-position: -172px 50% }
header nav li:nth-of-type(4) a { background-position: -342px 50% }
header nav li:nth-of-type(5) a { background-position: -512px 50% }
header nav li:nth-of-type(6) a { background-position: -682px 50% }
header nav li:nth-of-type(3) a { background-position: -852px 50% }

/* ========== ========== ========== ========== ========== */
/* FOOTER */
/* ========== ========== ========== ========== ========== */
footer {
	padding: 40px 0;
	color: #ffffff;
	background-color: #452000;
	background-image: url(../_img/footer-bg.png);
	background-repeat: repeat;
	z-index: 1;
}
footer nav {
	padding-bottom: 40px;
}
footer nav ul {
	margin: auto;
	width: 1024px;
	text-align: center;
}
footer nav ul li {
	display: inline-block;
	margin: 0 8px;
}
footer nav ul li a {
	display: block;
	color: #ffffff;
}
footer nav ul li a:hover {
	color: #FFEB3B;
}
footer nav ul li a::before, footer nav ul li a::after {
	content: "・";
}

#pagetop {
	cursor: pointer;
	position: fixed;
	right: 40px;
	bottom: -120px;
	width: 110px;
	height: 110px;
	background-image: url(../_img/pagetop.png);
	border-radius: 50%;
	opacity: 0.5;
	z-index: 100;
}
#pagetop:hover {
	opacity: 0.7;
}
#pagetop.active {
	bottom: 30px;
	opacity: 1;
}

/* ========== ========== ========== ========== ========== */
/* AUTHENTICATION */
/* ========== ========== ========== ========== ========== */
#authentication {
	position: fixed;
	top: 0; left: 0;
	width: 100%; height: 100%;
	background-color: rgba(255,255,255,0.5);
	z-index: 200;
}
#authentication-dialog {
	overflow: hidden;
	display: block;
	width: 700px; height: 300px;
	padding: 0;
	border: 2px solid #ffaa77;
	background-color: #ffffff;
	background-image: url(../_img/h2-bg.png);
	background-repeat: repeat-x;
	border-radius: 4px;
}
.sp #authentication-dialog {
	width: 90%;
	padding-bottom: 20px;
	height: auto;
}
.sp #authentication-dialog p span {
	display: inline-block;
	white-space: nowrap;
}
#authentication-dialog p {
	line-height: 2;
}
.sp #authentication-dialog p {
	padding-left: 8px;
	padding-right: 8px;
	font-size: 15px;
}
#authentication-dialog p:first-of-type {
	margin-top: 40px;
}
#authentication-yes,
#authentication-no {
	cursor: pointer;
	display: inline-block;
	margin: 20px;
	padding: 8px 20px;
	color: #ffffff;
	border-radius: 5px;
}
#authentication-yes {
	background-color: #FFA968;
}
#authentication-no {
	background-color: #68BEFF;
}
#authentication-no a { color: #ffffff }

/* ========== ========== ========== ========== ========== */
/* MODAL */
/* ========== ========== ========== ========== ========== */
.modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(33, 33, 33, 0.5);
	z-index: -100;
	opacity: 0;
}

#modal.active {
	opacity: 1;
	z-index: 200;
}

#modal-trigger {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

#modal-main {
	position: absolute;
	margin: auto;
	width: 1000px;
	height: 500px;
	max-height: 90%;
	overflow-x: hidden;
	overflow-y: scroll;
	background: #FFF;
	transition: none;
	-webkit-box-shadow: 0 12px 15px 0 rgba(0, 0, 0, 0.24), 0 17px 50px 0 rgba(0, 0, 0, 0.19);
	-moz-box-shadow: 0 12px 15px 0 rgba(0, 0, 0, 0.24), 0 17px 50px 0 rgba(0, 0, 0, 0.19);
	-ms-box-shadow: 0 12px 15px 0 rgba(0, 0, 0, 0.24), 0 17px 50px 0 rgba(0, 0, 0, 0.19);
	-o-box-shadow: 0 12px 15px 0 rgba(0, 0, 0, 0.24), 0 17px 50px 0 rgba(0, 0, 0, 0.19);
	box-shadow: 0 12px 15px 0 rgba(0, 0, 0, 0.24), 0 17px 50px 0 rgba(0, 0, 0, 0.19);
}

#modalclosebtn {
	cursor: pointer;
	position: absolute;
	top: 4px;
	right: 4px;
	width: 60px;
	height: 60px;
	background-color: #212121;
	background-image: url(../_img/icon/close_white.png);
	background-position: 50% 50%;
	background-size: 32px;
	background-repeat: no-repeat;
	border-radius: 60px;
	z-index: 10;
}

#modalclosebtn:hover {
	opacity: 0.6;
}

#modal-contents {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow-x: hidden;
	overflow-y: hidden;
}

.sp #modal-main {
	width: 80%;
	height: 80%;
}

/* ========== ========== ========== ========== ========== */
/* DEFINED CLASS */
/* ========== ========== ========== ========== ========== */
.sponly {
	display: none;
}

.maincontents article {
	margin-bottom: 40px;
	text-align: left;
}
.maincontents article > h2 {
	height: 40px;
	line-height: 40px;
}
.maincontents article > h2::before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 20px;
	background-image: url(../_img/h2-bg.png);
	background-repeat: repeat-x;
	background-position: 0 100%;
	border-radius: 4px 4px 0 0;
	z-index: -10;
}
.maincontents article > h2 img {
	margin: 4px 0 0 16px;
}
.maincontents article .main {
	background-color: #ffffff;
	border-left: 2px solid #ffaa77;
	border-right: 2px solid #ffaa77;
	border-bottom: 4px solid #ffaa77;
	border-radius: 0 0 4px 4px;
}
