/* ====================================
	common
==================================== */
.wrap {
	max-width: 1920px;
	margin: 0 auto;
	position: relative;
}

/* --------------------
	header
-------------------- */
header {
	background-color: #ffffff;
	color: #ffffff;
	font-size: 3.6rem;
	padding: 0 0;
}

.header_flex {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 100px;
	max-width: 1280px;
	margin: 0 auto;
}

.header_flex > div:nth-child(2) {
	padding: 0 20px;
	position: relative;
	width: 180px;
}

.header_flex > div:nth-child(3) {
	padding: 0 20px;
	position: relative;
	width: calc(100% - 180px);
	text-align: right;
}

.header_flex > div:nth-child(1),
.header_flex > div:nth-child(4) {
	display: none;
}


.header_flex > div:nth-child(2) .header_logo {
	display: block;
	margin: 0 auto;
	width: 180px;
max-width:100%;
}

.header_flex > div:nth-child(3) .header_logo {
	display: block;
	margin: 0 0 0 auto;
	width: 180px;
}

.header__link {
	display: flex;
	justify-content: flex-end;
}

.header__link li {
	padding: 0 0 0 30px;
}

.header__link a {
	display: inline-block;
	color: #666666;
	font-size: 1.6rem;
	font-weight: bold;
	padding: 0 0 0 60px;
	border-left: 1px solid #cccccc;
	background-repeat: no-repeat;
	background-position: left 20px center;
	background-size: 20px;
	line-height: 20px;
}

.header__link li:nth-child(1) a {
	background-image: url("../_common_img/header__crazybanet.svg");
	border: 0;
}

.header__link li:nth-child(2) a {
	background-image: url("../_common_img/header__amusement.svg");
}

.header__link li:nth-child(3) a {
	background-image: url("../_common_img/header__characap.svg");
}

.header__link li:nth-child(4) a {
	background-image: url("../_common_img/header__capsel.svg");
}

@media only screen and (max-width: 767px) {
	header {
		position: fixed;
		z-index: 5;
		top: 0;
		width: 100%;
	}

	.header_flex {
		height: 70px;
	}

	.header_logo {
		width: 90px;
	}

	.header_flex > div:nth-child(4) {
		display: block;
		width: 60px;
	}

	.header_flex > div:nth-child(3) {
		display: none;
	}
}

/* --------------------
	hamburger
-------------------- */
.menu-trigger {
	display: none;
	box-sizing: border-box;
}

.menu-trigger span {
	display: inline-block;
	box-sizing: border-box;
}

.menu-trigger {
	position: relative;
	width: 50px;
	height: 34px;
	background: none;
	border: none;
	appearance: none;
	cursor: pointer;
}

.menu-trigger:focus:not(:focus-visible) {
	outline: none;
}

.menu-trigger::before,
.menu-trigger::after {
	content: '';
}

.menu-trigger::before,
.menu-trigger::after,
.menu-trigger span {
	position: absolute;
	width: 100%;
	height: 4px;
	background: #333333;
	border-radius: 4px;
	transform-origin: 50% 50%;
	transition: .2s;
}

.menu-trigger::before {
	top: 20px;
	left: 0;
	transform: rotate(45deg) scaleX(0);
}

.menu-trigger::after {
	top: 20px;
	right: 0;
	transform: rotate(-45deg) scaleX(0);
}

.menu-trigger span:nth-of-type(1) {
	top: 0;
	left: 0;
	transition-delay: .2s;
}

.menu-trigger span:nth-of-type(2) {
	top: 15px;
	left: 0;
	transition-delay: .2s;
}

.menu-trigger span:nth-of-type(3) {
	bottom: 0;
	left: 0;
	transition-delay: .2s;
}

.menu-trigger.active::before {
	transform: rotate(45deg) scaleX(1);
	transition-delay: .2s;
}

.menu-trigger.active::after {
	transform: rotate(-45deg) scaleX(1);
	transition-delay: .2s;
}

.menu-trigger.active span {
	transform: scaleX(0);
	transition-delay: 0s;
}

@media only screen and (max-width: 767px) {
	.menu-trigger {
		display: block;
	}
}


/* --------------------
	nav
-------------------- */
nav {
	display: block;
	margin: 0 0 150px 0;
	width: 100%;
	order: 2;
	position: relative;
}

nav::after {
	content: "";
	position: absolute;
	bottom: -100px;
	left: 0;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 100px 100vw 0 0;
	border-color: #E72334 transparent transparent transparent;
}

nav .nav__wrap {
	background-color: #E72334;
	width: 100%;
}

nav ul {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0 0;
	margin: 0 auto;
	max-width: 1080px;
	height: 150px;
}

nav.fixed ul {
	height: 100px;
}

nav ul li {
	width: calc(100% / 6);
}

nav ul li a {
	display: block;
	color: #ffffff;
	padding: 20px 0;
}

nav ul li a.actiove {
	opacity: 1;
}

nav ul li a img {
	display: block;
	width: 36px;
	margin: 0 auto 10px auto;
}

nav ul li a div {
	text-align: center;
	font-size: 1.4rem;
}

nav .menu__logo {
	display: none;
}

nav .menu__logo img {
	width: auto;

}
.menu__vr {
display: none;
}
.menu__esports {
display: none;
}


@media only screen and (max-width: 950px) {
.menu__vr {
display: block;
}
.menu__esports {
display: block;
}
}

nav.fixed .nav__wrap {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10;
	opacity: 0;
	animation-name: fadeIn;
	animation-duration: 1s;
	animation-fill-mode: forwards;
}

@keyframes fadeIn {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

nav.fixed ul li {
	width: auto;
	padding: 0 0 0 35px;
}

nav.fixed ul li a img {
	display: none;
}

nav.fixed .menu__logo {
	display: block;
	padding: 0 0 0 0;
}

nav.fixed .menu__logo img {
	display: block;
}

@media only screen and (max-width: 768px) {
	nav ul li a div {
		font-size: 1.4rem;
	}
}

@media only screen and (max-width: 767px) {
	nav {
		display: none;
		position: fixed;
		top: 70px;
		z-index: 5;
	}

	nav ul {
		flex-wrap: wrap;
		height: auto;
		justify-content: flex-start;
	}

	nav ul li {
		width: calc(100% / 3);
	}

	nav.fixed .nav__wrap {
		position: relative;
	}
}

/* --------------------
	aside
-------------------- */
@media only screen and (max-width: 767px) {
	aside {
		margin: 70px 0 70px 0;
	}
}

/* --------------------
	footer
-------------------- */
.footer__link {
	background-color: #eeeeee;
}

.footer__link ul {
	display: flex;
	margin: 0 auto;
	justify-content: center;
}

.footer__link ul li {
	padding: 20px 20px;
}

.footer__link ul li a {
	color: #333333;
}

footer {
	padding: 0;
	margin: 0 auto;
	width: 100%;
	background-color: #000000;
}

footer p {
	text-align: center;
	color: #666666;
	font-size: 12px;
	margin: 0;
	padding: 20px 0 0 0;
}

footer img {
	display: block;
	padding: 20px 0;
	margin: 0 auto;
	width: auto;
}

/* --------------------
	content__common
-------------------- */
.content__common {
	margin: 0 0 100px 0;
	padding: 0 20px 100px 20px;
}

.content__common h2 {
	font-size: 4.0rem;
	margin: 0 0 40px 0;
}

.content__common h2 img {
	max-width: 1920px;
	margin: 0 auto;
}

/* --------------------
	layout__basic
-------------------- */
.layout__basic {
	padding: 0 60px;
}

@media only screen and (max-width: 768px) {
	.layout__basic {
		padding: 0 20px;
	}
}

.common__section--title {
	text-align: left;
	font-size: 4.0rem;
	font-weight: bold;
	margin: 0 0 60px 0;
}

.btn__join {
	display: block;
	background-color: #E72334;
	text-align: center;
	margin: 0 auto 20px auto;
	color: #ffffff;
	max-width: 360px;
	line-height: 70px;
	font-size: 1.8rem;
	font-weight: bold;
	letter-spacing: 3px;
}


.btn__join.yellow {
	border: 2px solid #FED02F;
	background-color: #ffffff;
	color: #FED02F;
}

.btn__join.gray {
	background-color: #333333;
	color: #ffffff;
}

.btn__join.blue {
	background-color: #1797CA;
	color: #ffffff;
}

.btn__join.white {
	background-color: #ffffff;
	color: #E72334;
}

.btn__join.facility {
	display: inline-block;
	padding: 0 20px;
	line-height: 24px;
	border-radius: 12px;
	background-color: #E72334;
	color: #ffffff;
	max-width: none;
	font-size: 1.6rem;
	letter-spacing: 0;
	font-weight: normal;
}


@media only screen and (max-width: 950px) {

	.common__section--title {
		font-size: 3.0rem;
	}
}

@media only screen and (max-width: 415px) {}
