@charset "UTF-8";
/*==================
共通部分の設定
====================*/
html {
	font-size: 62.5%;
	box-sizing: border-box;
}
*,
*::before,
*::after {
	box-sizing: inherit;
}
.wrap {
	overflow: hidden;
}
/*SPサイズ*/
@media (max-width: 599px){
	.sp_none{
		display: none;
	}
	.tb_none{
		display: block;
	}
}
/*tbサイズ*/
@media (min-width: 600px) {
	.tb_none{
		display: none;
	}
	.sp_none{
		display: block;
	}
	a:hover{
		opacity: 0.8;
		transition: .4s;
	}
}
/*PCサイズ*/
@media (min-width: 1025px) {
	/* .inner_pc01{
		max-width: 1200px;
		margin: 0 auto;
	}
	.inner_pc02{
		max-width: 1160px;
		margin: 0 auto;
	} */
	
	a[href^="tel:"] {
	pointer-events: none;
	}
}
body{
	background-color: #111111;
	color: #E6E6E6;
	font-size: 1.3rem;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 400;
  	font-style: normal;
	box-sizing: border-box;
	-webkit-font-smoothing:antialiased;/*文字のアンチエイリアス設定*/
	-moz-osx-font-smoothing:grayscale;
	font-feature-settings: "palt";/*文字詰*/
}
img{
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
}
a{
	color: #E6E6E6;
	text-decoration: none;
}

ul{
	list-style: none;
}
.flex_a{
	display: flex;
	height: auto;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: center;
}
.flex_b{
	display: flex;
	height: auto;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}
h1{
	font-size: 2.5rem;
	font-weight: bold;
	color: #000000;
}
h2{
	font-size: 2.2rem;
	text-align: center;
	line-height: 1.5;
}

/*==================
header sp
====================*/
header{
	position: relative;
}
header a{
		position: absolute;
		top: 1.5rem;
		left: 1.5rem;
		width: 107px;
		height: 107px;
		z-index: 100;
}
header img{
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
}
header .character01{
		width: 50px;
}
header .rotation{
		animation: 12s linear infinite rotation;
}
@keyframes rotation {
    0% { transform: rotateZ(0);}
    100% { transform: rotateZ(-360deg); }
}
@media (max-width: 599px) {
	header .rotation{
		width: 107px;
}
}
/*==================
header pc
====================*/
@media (min-width: 600px) {
	header a{
		width: 130px;
		height: 130px;
	}
	header .character01{
		width: 60px;
}

}
/*==================
footer sp
====================*/
footer{
	background-color: #111111;
	color: #999999;
	padding: 1rem 1.5rem;
}
footer .flex_b{
		max-width: 155px;
		margin: 0 0 0 auto;
}


/*==================
footer pc
====================*/
@media (min-width: 1025px) {



}
/*--------------- 最下部バナー ---------------*/
/*==================
banner_area01 sp
====================*/
.banner_area01{
	background-color: #000000;
	padding: 2.5rem 1.5rem 3.5rem;
}
.link_banner01{
	display: block;
	width: 100%;
	height: auto;
	margin: 0 auto 2rem;
}
.link_metagame01{
	display: block;
	width: 209px;
	height: auto;
	margin: 0 auto;
}

/*==================
banner_area01 pc
====================*/
@media (min-width: 600px) {
.banner_area01{
	padding: 3.5rem 1.5rem 2.5rem;
}
.link_banner01{
	max-width: 720px;
}
}

