@charset "UTF-8";

/* ========================================
	common
======================================== */
img {
	width: 100%;
	height: auto;
	vertical-align: top;
}
body {
}
body.is-hidden {
	overflow: hidden;
}
.l-wrapper {
	position: relative;
	overflow: hidden;
}


/* ========================================
	header
======================================== */
.l-logo-3ds {
	position: absolute;
	z-index: 5000;
	top: 13px;
	right: 10px;
	width: 21.33333%; /* 160px / 750px * 100 */
}


/* ========================================
	footer
======================================== */
l-footer {
}
.l-footer_nav {
	position: relative;
	margin-bottom: 18px;
	background: url(../images/common/footer_bg.png) repeat center center;
	background-size: 17px 17px;
}
.l-footer_logo {
	position: relative;
	top: -13px;
	width: 53.33333%;/* 400 / 750 * 100 */
	margin-left: 13px;
}
.l-footer_pagetop {
	width: 24.26667%;/* 182 / 750 * 100 */
	position: absolute;
	top: 8px;
	right: 15px;
}
.l-gnav {
	overflow: hidden;
	padding: 0 13px 3px;
}
.l-gnav_item {
	float: left;
	box-sizing: border-box;
	margin-bottom: 19px;
}
.l-gnav_item.l-gnav_item-line2 {
	width: 50%;
}
.l-gnav_item.l-gnav_item-line1 {
	width: 100%;
}
.l-gnav_item.l-gnav_item-line2:nth-child(odd) {
	padding-right: 7px;
}
.l-gnav_item.l-gnav_item-line2:nth-child(even) {
	padding-left: 7px;
}
.l-footer_info {
	background: #ffffff;
}
.l-footer_official {
	margin-bottom: 18px;
	text-align: center;
	font-size: 0;
}
.l-footer_official li {
	display: inline-block;
	font-size: 11px;
	padding: 0 8px;
}
.l-footer_official li:not(:last-child) {
	border-right: #372617 1px solid;
}
.l-footer_nintendo {
	width: 99px;
}
.l-footer_3ds {
	width: 162px;
}


/* ========================================
	modal
======================================== */
[data-modallink] {
	cursor: pointer;
}
[data-modalbody] {
	visibility: hidden;
	opacity: 0;
	transition: 200ms;
}
[data-modalbody].is-show {
	visibility: visible;
	opacity: 1;
}
.l-modal {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9500;
	width: 100%;
	height: 100%;
}
.l-modal_bg {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 10;
	width: 100%;
	height: 100%;
	background: rgba(1, 49, 82, 0.8);
}
.l-modal_close {
	margin-top: 25px;
	text-align: center;
}
.l-modal_close img {
	width: 42%; /* 315 / 750 * 100 */
}
.l-modal_contents {
	position: relative;
	z-index: 20;
	width: 100%;
	height: 100%;
	overflow-y: scroll;
	-webkit-overflow-scrolling: touch;
	overflow-scrolling: touch;
}


/* ========================================
	animation
======================================== */
.c-jump-animation {
	visibility: hidden;
	opacity: 0;
	-webkit-transform: translateY(90px);
	transform: translateY(90px);
}
.is-animation .c-jump-animation {
	transition:
		opacity 200ms linear,
		visibility 200ms linear,
		-webkit-transform 400ms cubic-bezier(0.175, 0.885, 0.320, 1.275),
		transform 400ms cubic-bezier(0.175, 0.885, 0.320, 1.275);
	visibility: visible;
	opacity: 1;
	-webkit-transform: translateY(0);
	transform: translateY(0);
}
