@charset "UTF-8";

/*======================================================================
	reset
======================================================================*/

html {
	background-color: black;
	font-size: 6.25%;
}

body,div,nav,ul,li,h3,p {
    margin: 0;
	padding: 0;
}

*:focus {
	outline: none;
}

li {
    list-style-type: none;
}

a {
	text-decoration: none;
}

.spv {
	display: none;
}

.hidden {
	opacity: 0;
	transition: opacity 0.3s;
	pointer-events: none !important;
}

/* 汎用new　*/
.new:after {
	content: " ";
	position: absolute;
	right: -25px;
	top: -15px;
	/*z-index: 300;*/

	background: url( ../img/new.png ) no-repeat;
	width: 81px;
	height: 38px;
	pointer-events: none;
	animation: blink 2.5s infinite;
}

/* nav専用new　*/
nav .new:after {
	content: " ";
	position: absolute;
	right: -25px;
	top: -7px;
	z-index: 300;

	background: url( ../img/nav/new.png ) no-repeat;
	width: 62px;
	height: 32px;
	pointer-events: none;
	animation: blink 2.5s infinite;
}

@keyframes blink {
	0% { opacity: 1; }
	50% { opacity: 0; }
	100% { opacity: 1; }
}

/*======================================================================
	common
======================================================================*/

body {
	width: 100%;
	font-family: 'Noto Serif JP', '游明朝', 'ＭＳ 明朝', serif;
	font-size: 21rem;
	line-height: 1.5em;
	color: white;
	overflow-x: hidden;
}

#contents {
    position: absolute;
	width: 100%;
	padding-top: 150px;
	overflow: hidden;
}

h3 {
	color: #b62123;
	text-shadow: black 1px 1px 7px, black -1px 1px 7px,black 1px -1px 7px, black -1px -1px 7px;
}

.btn_common img {
	transition: background-color 0.3s;
}
.btn_common img:hover {
	background-color: #b62123;
	transition: background-color 0.3s;
}

/* ======================================================================
	nav
====================================================================== */

nav {
    position: fixed;
    width: 100%;
    height: 151px;
    max-height: 151px;
    z-index: 100;

	background: url( "../img/nav/bg.png" );
	pointer-events: none;
}

nav .nav_list {
	width: 590px;
    margin: 0 auto;
    display: flex;
    flex-wrap: nowrap;
	justify-content: center;
	pointer-events: auto;
}

nav .nav_list li {
	position: relative;
}

nav .story img { background: url( "../img/nav/story.png" ) no-repeat; width: 84px; height: 50px; }
nav .character img { background: url( "../img/nav/character.png" ) no-repeat; width: 83px; height: 50px; }
nav .system img { background: url( "../img/nav/system.png" ) no-repeat; width: 151px; height: 50px; }
nav .gallery img { background: url( "../img/nav/gallery.png" ) no-repeat; width: 84px; height: 50px; }
nav .product img { background: url( "../img/nav/product.png" ) no-repeat; width: 149px; height: 50px; }

nav img:hover, nav .active img {
    background-position: 0 100%;
}


nav .nav_etc {
	width: 590px;
	height: 36px;
	margin: 0 auto;
    display: flex;
    flex-wrap: nowrap;
	justify-content: center;
	pointer-events: none;
}

nav .nav_logo {
	position: relative;
	left: -230px;
	top: -60px;
	pointer-events: auto;
	transition: opacity 0.3s;
}

nav .nav_bgm {
	position: relative;
	left: 250px;
	top: -10px;
	pointer-events: auto;
	cursor: pointer;
}
nav .nav_reserve {
	position: relative;
	left: 250px;
	top: -10px;
	pointer-events: auto;
}

nav .nav_reserve img {
	transition: background-color 0.3s;
}
nav .nav_reserve img:hover {
	background-color: #b62123;
	transition: background-color 0.3s;
}

.nav_open {
	display: none;
}



/* ======================================================================
	footer
====================================================================== */

footer {
	text-align: center;
	line-height: 1.1em;
	margin-top: 100px;
	padding-bottom: 16px;
	font-size: 0.6em;

	background: url( ../img/footer/bg.png ) no-repeat;
	background-size: 100% 100%;
	
}

footer ul {
	display: flex;
	justify-content: center;
}

footer .snsicon li {
	margin: 5px 10px;
}
footer .snsicon img {
	width: 40px;
	height: 40px;
	transition: filter 0.3s;
}
footer .snsicon img:hover {
	filter: brightness(1.1);
	transition: filter 0.3s;
}

footer .ps_mark {
	height: 10px;
}
footer .ps4logo {
	height: 11px;
}

/* ======================================================================
	pagetop
====================================================================== */

#pagetop {
    display: none;
    position: fixed;
    right: 25px;
    bottom: 25px;
	z-index: 99;
	animation: btn_pagetop_anime 3s infinite linear;
}

.pagetop img {
	background: url( ../img/button_pagetop.png ) no-repeat;
	width: 108px;
	height: 42px;
	transition: filter 0.3s;
}

.pagetop img:hover {
	filter: brightness( 1.3 );
	transition: filter 0.3s;
}

@keyframes btn_pagetop_anime {
	0% {
		filter: blur(3px);
		opacity: 0;
	}
	50% {
		filter: blur(0);
		opacity: 1;
	}
	100% {
		filter: blur(3px);
		opacity: 0;
	}
}
