/*---------------
COMMON
---------------*/
body,div,dl,dt,dd,ul,ol,li,p,h1,h2,h3,h4,h5,h6,th,td,pre,code,blockquote,form,fieldset,legend,input,textarea,figcaption,figure{margin:0;padding:0}table{border-collapse:collapse;border-spacing:0}fieldset,img{border:0}address,caption,cite,code,dfn,em,th,var{font-style:normal;font-weight:normal}li{list-style:none}caption,th{text-align:left}h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:normal}q:before,q:after{content:''}abbr,acronym{border:0;font-variant:normal}sup{vertical-align:text-top}sub{vertical-align:text-bottom}input,textarea,select{font-family:inherit;font-size:inherit;font-weight:inherit}input,textarea,select{*font-size:100%}legend{color:#FFF}hr{display:none}img{vertical-align:bottom}select,input,button,textarea{font-size:99%}table{font-size:inherit;font:100%;border-collapse:collapse;border-spacing:0}pre,code,kbd,samp,tt{font-family:monospace;*font-size:108%;line-height:100%}.hd{display:block;width:0;height:0;overflow:hidden}.cf:before,.cf:after{content:"";display:table}.cf:after{clear:both}.cf{*zoom:1}article,aside,details,figcaption,figure,footer,header,hgroup,hr,menu,nav,section,main{display:block}*{margin:0;padding:0;box-sizing:border-box;max-height:999999px;outline:none;}*:focus{outline:none;}button{background-color:transparent;border:none;cursor:pointer;outline:none;padding:0;}
:root{
	/* font-family */
	--font-serif: 'Noto Serif JP', serif; /* 400,700 */
	--font-trajan: "trajan-pro-3", serif; /* 400 */

	/* color */
	--color-light-blue: #58ffff;
	--color-blue: #0028a4;
	--color-yellow: #fdd000;
	--color-pink: #f24e3f;

	--main-color:var(--color-pink);

	--color-gradation-blue: linear-gradient(to top, rgb(0,0,0) 0%, rgb(0,40,164) 100%);

	/* sp-size */
	--sp-size-2: min(0.2667vw, 2px);
	--sp-size-4: min(0.5334vw, 4px);
	--sp-size-8: min(1.0667vw, 8px);
	--sp-size-10: min(1.3334vw, 10px);
	--sp-size-12: min(1.6vw, 12px);
	--sp-size-16: min(2.1334vw, 16px);
	--sp-size-20: min(2.6667vw, 20px);
	--sp-size-24: min(3.2vw, 24px);
	--sp-size-26: min(3.4667vw, 26px);
	--sp-size-28: min(3.7334vw, 28px);
	--sp-size-30: min(4vw, 30px);
	--sp-size-32: min(4.2667vw, 32px);
	--sp-size-36: min(4.8vw, 36px);
	--sp-size-40: min(5.3334vw, 40px);
	--sp-size-48: min(6.4vw, 48px);
	--sp-size-56: min(7.4667vw, 56px);
	--sp-size-64: min(8.5334vw, 64px);
	--sp-size-72: min(9.6vw, 72px);
	--sp-size-80: min(10.6667vw, 80px);
	--sp-size-96: min(12.8vw, 96px);
	--sp-size-192: min(25.6vw, 192px);
}

body{
	-webkit-text-size-adjust:100%;
	background-color:#000;
	color:#fff;
	font-family:var(--font-serif);
	font-size:16px;
	font-weight:normal;
	letter-spacing:0.025em;
	line-height:2;
	word-break:normal;
}
.f_tra{
	font-family: var(--font-trajan);
}
a{color:#fff;}
a:hover{text-decoration:none;}
.ah{transition:opacity .3s ease;}
.ah:hover{opacity:.7;}
::selection{
	background:#000;
	color:#fff;
}
::-moz-selection{
	background:#000;
	color:#fff;
}



@media screen and (max-width:768px){
	html{
		font-size:62.5%;
		height:-webkit-fill-available;
	}
	body{
		font-size:10px;
		font-size:1rem;
		min-width:320px;
		min-height:100vh;
		min-height:-webkit-fill-available;
	}
	.pc{display:none;}
	.ah:hover{opacity:1;}
}
@media screen and (min-width:769px){
	.sp{display:none;}
	::-webkit-scrollbar{
		width:8px;
		height:8px;
	}
	::-webkit-scrollbar-track{
		border-radius:0px;
		background:#000;
	}
	::-webkit-scrollbar-thumb{
		background:#FFF;
		border-radius:0px;
		margin:2px;
		box-shadow:none;
	}
}

/*COMMON*/
@media screen and (min-width:769px){
	.sp{
		display: none!important;
	}
}
@media screen and (max-width:768px){
	.pc{
		display: none!important;
	}
}
.inner{
	width: 1200px;
	padding: 0 80px;
	margin: 0 auto;
}

@media screen and (max-width:768px){
	.inner{
		width: 100%;
		padding: 0 0;
		margin: 0 auto;
	}
}
/* CURSOR */
.cursor{
	display: none;
	width:40px;
	height:40px;
	position:fixed;
	top:0;
	left:0;
	pointer-events:none;
	z-index:10001;
}
.cursor:before {
	content:'';
	position: absolute;
	left:30px;
	top:30px;
	width:40px;
	height:40px;
	background:url(../img/common/cursor_yubi.png) no-repeat center center / contain;
}
@media (hover: hover) and (pointer: fine){
	.cursor{
		display: block;
	}
}

/**LINK BOTTON**/
.linkBox a{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 320px;
	height: 64px;
	background: #000;
	border: 1px solid #9d885f;
	font-size: 16px;
	text-decoration: none;
	position: relative;
	transition: all .2s ease;
	z-index: 1;
	margin: 0 auto;
}
@media screen and (max-width:768px){
	.linkBox a{
		font-size: max(3.2vw,16px);
	}
}
.linkBox a.is-active,
.linkBox a:hover{
	border: 1px solid #000;
	color: #000;
}
.linkBox a::before{
	display: block;
	content: "";
	height: 85%;
	width: 97%;
	border: 1px solid #9d885f;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	opacity: 0.4;
	z-index: 1;
}
.linkBox a.is-active::before,
.linkBox a:hover::before{
	border: 1px solid #000;
}
.linkBox a::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	background:#9d885f;/*背景色*/
	width: 100%;
	height: 100%;
	transition: transform .4s ease;
	transform: scale(0, 1);
	transform-origin: right top;
}
.linkBox a.is-active:after,
.linkBox a:hover:after{
	transform-origin:left top;
	transform:scale(1, 1);
}

/*sec_ttl*/
.sec_content{
	padding: 80px 0;
}
@media screen and (max-width:768px){
	.sec_content{
		padding: 12vw 0;
	}
}
.section_ttl{
	display:flex;
	align-items: flex-end;
	margin-bottom: 80px;
	padding-left: 40px;
	justify-content: center;
}
@media screen and (max-width:768px){
	.section_ttl{
		margin-bottom: 9.3vw;
		padding-left: 3.33vw;
	}
}
.section_ttl .section_ttl_main{
	display: block;
	line-height: 1;
	font-size: 104px;
	color: var(--main-color);
	/*margin-right: 40px;*/
}

@media screen and (max-width:768px){
	.section_ttl .section_ttl_main{
		font-size: max(10.2vw,25px);
/*		margin-right: 10vw;*/
	}
}

/*---------------
NEWS
---------------*/
.newsLists{
	margin-bottom: 40px;
}
.newsList{
	display: block;
	/*width: 480px;*/
	height: 136px;
	background-color: rgba(0,0,0,0.8);
	position: relative;
}
.newsList .newsList_innerWrap{
	display: block;
	text-decoration: none;
	height: 100%;
	padding: 20px 30px 20px 35px;
}
@media screen and (max-width:768px){
	.newsListsWrap{
		padding: 0 6.4vw;
		/*margin-bottom: 10vw;*/
	}
	.newsLists{
		margin-bottom: 5.3vw;
	}
	.newsList{
		display: block;
		width: 100%;
		height: auto;
	}
	.newsList .newsList_innerWrap{
		padding: 3vw 3vw 3vw 3vw;
	}
}

.newsList_inner{
	position: relative;
	height: 100%;
}
.newsList_inner::after{
	content: "";
	width: 39px;
	height: 8px;
	position: absolute;
	bottom: 0;
	right: 0;
	-webkit-mask-image:url(../img/common/news_arrow.svg);
	mask-image:url(../img/common/news_arrow.svg);
	background-color: #FFF;
	background-size: 100% auto;
	transition: all .2s ease;
}
@media screen and (max-width:768px){
	.newsList_inner::after{
		width: min(11vw,39px);
		height: min(3vw,8px);
	}
}
.newsList:hover .newsList_inner::after{
	transform: translateX(10px);
	-webkit-transform: translateX(10px);
	-ms-transform: translateX(10px);
	background-color: #9d885f;
}
.newsList:hover a{
	color: #9d885f;
	transition: all .2s ease;
}
.news_day{
	display:inline-block;
	padding-right: 15px;
	position: absolute;
	bottom: 0;
	left: 0;
	line-height: 1;
}
.news_day::after{
	display: block;
	content: "";
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	height: 15px;
	width: 1px;
	background-color: rgba(255, 255, 255, .4);
}
.newsList a:hover .news_day::after{
	background-color: #9d885f;
}
.newsList_ttl{
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}
@media screen and (max-width:768px){

	.newsList a{
		display: block;
		width: 100%;
		height: 100%;
		padding: 4vw 6.4vw 4vw 6.4vw;
	}
	.news_day{
		padding-right: 3vw;
		position: relative;
	}
}

.newsList:not(:last-child){
	margin-bottom: 25px;
}
@media screen and (max-width:768px){
	.newsList:not(:last-child){
		margin-bottom:2vw;
	}
}
.newsList::before{
	display: block;
	content: "";
	width: 2px;
	height: 100%;
	background: #9d885f;
	position: absolute;
	left: 5px;
	top: 0;
	pointer-events: none;

}

/*----------------
SUB NEWS
----------------*/
.contents_news.sub #fullWrap::before{
		content: "";
		width: 100%;
		height: 100%;
		display: block;
		position: fixed;
		top: 0;
		left: 0;
		z-index: 2;
		opacity: 0.6;
		background-color: #000;
		pointer-events: none;
}
.sub .sec_content {
	padding: 160px 0;
}
.sub .inner {
	width: 1040px;
	padding: 0 80px;
	margin: 0 auto;
}
.contents_news .newsList{
	width: 100%;
	margin-bottom: 25px;

}

.pagerLists{
	display: flex;
	justify-content: center;
}
.pagerLists .pagerList .linkBox{
	margin: 0 10px;

}
.pagerLists .pagerList .linkBox a{
	width: 48px;
	height: 48px;
}
.pagerLists .linkBox a::before {
	height: 85%;
	width: 85%;
}

@media screen and (max-width:768px){
	.sub .sec_content {
		padding: 12.8vw 0;
	}
	.sub .inner {
		width: 100%;
		padding: 0 6.4vw;
		margin: 0 auto;
	}
	.contents_news .newsList{
		width: 100%;
		margin-bottom: 2vw;
	
	}
	
	.pagerLists{
		display: flex;
		justify-content: center;
	}
	.pagerLists .pagerList .linkBox{
		margin: 0 10px;
	
	}
	.pagerLists .pagerList .linkBox a{
		width: 9.6vw;
		height: 9.6vw;
	}
	.sub .newsListsWrap {
		padding: 0 0;
		margin-bottom: 10vw;
	}
}

/*NEWS DETAIL*/
.news_detailArea{
	margin-bottom: 80px;
}
.news_detailArea .newsList {
	margin-bottom: 40px;
}
.newsList_innerWrap{
	display: block;
	text-decoration: none;
	height: 100%;
	padding: 20px 30px 20px 35px;
}
@media screen and (max-width: 768px){
	.news_detailArea{
		margin-bottom: 12.8vw;
	}
	.news_detailArea .newsList {
		margin-bottom: 2vw;
	}
	.newsList_innerWrap{
		padding: 4vw 6.4vw 4vw 6.4vw
	}
}
.news_detailArea .newsList_inner::after {
	display: none;
}
/*NEWS DETAIL TEXT AREA*/
.news_detailArea_txtBox{
	background-color: rgba(0,0,0,0.8);
	padding: 40px 40px 80px 40px;	
}
.news_detailArea_txtBox a{
	color: var(--main-color);
}
.news_detailArea_txtBox p{
	display: block;
	margin-bottom: 40px;
}
.news_detailArea_txtBox img{
	display: block;
	margin:0 auto 40px auto;
}
.linkBox.btn_back a{
	margin: 0 auto;

}
@media screen and (max-width: 768px){
	.news_detailArea_txtBox{
		padding: 6.4vw 6.4vw 8.5vw 6.4vw;	
	}
	.news_detailArea_txtBox p{
		margin-bottom: 6.4vw;
	}
	.news_detailArea_txtBox img{
		margin:0 auto 6.4vw auto;
	}
}

/*---------------
FOOTER
---------------*/

.footer{
	background:#000 url(../img/common/bg.png);
	position:relative;
	z-index:100;
	display:flex;
	justify-content:space-between;
	flex-direction:column;
	padding:80px 40px;
	min-width:1200px;
	margin-top:auto;
}
/*
.footer::before{
	content: "";
	width: 100%;
	height: 100%;
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	background-image: url(../img/common/ft_bg.png);
	background-size: cover;
	z-index: -1;
	opacity: .24;
}*/
.footer__aniplex img{
	width:140px;
	height:auto;
}
.footer__caution{
	text-align:left;
	font-size:12px;
	color:rgba(255,255,255,.4);
	line-height:1;
}
@media screen and (max-width:768px){
	.footer__caution{
		text-align:center;
	}
	.footer__aniplex img{
		width:24vw;
		height:auto;
	}
}
.footer__links{
	display:flex;
	justify-content:center;
}
.footer__links li{
	padding:0 30px;
	position:relative;
	height:16px;
}
.footer__links li:not(:last-child):after{
	content:'';
	position:absolute;
	right:0;
	top:0;
	bottom:0;
	width:1px;
	background:rgba(255,255,255,.4);
}
.footer__links li a{
	text-decoration:none;
	display:block;
	line-height:1.3333;
	font-size:12px;
	white-space: nowrap;
}
.footer__links li a:hover{
	text-decoration:underline;
}
.footer__copyright{
	font-size:12px;
	line-height:1.5;
	color:rgba(255,255,255,.4);
	text-align:center;
}
.footer__share{
	display: flex;
	justify-content: center;
	margin-bottom: 80px;
}
.footer__share dt{
	height:22px;
	display:flex;
	width: 60px;
	justify-content:center;
	align-items:center;
	font-size:14px;
}
.footer__share dd{
	height:22px;
	width: 50px;
}
.footer__share dd a{
	display:block;
	height:22px;
	position:relative;
}
.footer__share--twitter{
	background:url(../img/common/icon_x.svg) no-repeat center center / 20px auto;
}
.footer__share--facebook{
	background:url(../img/common/sns_fb_w.svg) no-repeat center center / 20px auto;
}
.footer__share--line{
	background:url(../img/common/sns_line_w.svg) no-repeat center center / 20px auto;
}
.footer_bannerLists{
	width: 100%;
	display: flex;
	justify-content: center;
	margin-top: 80px;
}
.footer_bannerList{
	width: 280px;
	padding: 0 20px;
	margin-bottom: 80px;
}
.footer_bannerList a{
	display: block;
	transition: .3s ease;
}
.footer_bannerList a img{
	width: 100%;
}
.footer_bannerList a:hover{
	opacity: .8;
}
.ft_linkWrap{
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 80px;
}
.ft_link{
	display: flex;
	align-items: center;
}
.footer__share dd a{
	transition: all .3s ease;
}
.footer__share dd a:hover{
	opacity: .8;
}
@media screen and (max-width:768px){
	.footer{
		height:auto;
		min-height:1px;
		display:block;
		padding:12.8vw 3.2vw 12.8vw;
		min-width:1px;
		z-index: 100;
		position: relative;
	}
	.footer__aniplex{
		text-align:center;
	}
	.footer__aniplex img{
		width:33.8666vw;
		height:auto;
	}
	.footer__caution{
		font-size:1rem;
		color:rgba(255,255,255,.4);
		line-height:2;
		margin-bottom:6vw;
	}
	.footer__links{
		margin-bottom:0;
	}
	.footer__links li{
		padding:0 3.5vw;
		height:1rem;
	}
	.footer__links li a{
		line-height:1;
		font-size:1rem;
	}
	.footer__copyright{
		font-size:1rem;
	}
	.footer__share{
		margin-top:0;
		display:flex;
		margin-bottom: 5vw;
	}
	.footer__share dt{
		height:6.4vw;
		/*width:15%;*/
		font-size:1.4rem;
		justify-content:flex-start;
	}
	.footer__share dd{
		height:6.4vw;
		width:10%;
	}
	.footer__share dd a{
		height:6.4vw;
	}
	.footer_bannerLists {
		flex-wrap: wrap;
		margin-top: 0;
		padding: 0;
		justify-content: space-around;
		margin-bottom: 12.8vw;
	}
	.footer_bannerList {
		width: 50%;
		padding: 0 3.2vw;
		margin-bottom: 6.4vw;
	}
	.ft_linkWrap {
		margin-bottom: 5vw;
		flex-direction: column;
	}
	.ft_link {
		margin-bottom: 5vw;
	}	
}

/*-----------------------------------------------
 * Header
-------------------------------------------------*/
.header {
	width: 100%;
	position: absolute;
	top: 0;
	/*pointer-events: none;*/
	z-index: 999;
}
/* inner */
.header__inner {
	position: fixed;
	top: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	min-width: 1200px;
	background-color:rgba(0,0,0,0.6);
	padding: 0 120px;
	height: 80px;
}
/*@media screen and (min-width:1450px){
	.header__inner {
		position: fixed;
		top: 0;
		display: flex;
		justify-content: center;
		align-items: center;
		width: 100%;
		min-width: 1200px;
		background-color:rgba(0,0,0,0.6);
		padding: 0 120px;
		height: 80px;
	}
}*/
.header_logo{
	width: min(19.5%, 135px);
	/*padding-top: 34px;
	margin-left: min(3.3334%, 40px);*/
}
.header_logo a{
	display: block;
	pointer-events: auto;
	transition: .3s ease;
}
.header_logo a img{
	width: 100%;
}
@media screen and (min-width:769px){
	
	.header_logo{
		position: absolute;
		left: 40px;
	}
	.header_logo a:hover{
		opacity: .8;
	}
}
@media screen and (max-width:768px){
	.header__inner {
		-webkit-overflow-scrolling: touch;
		position: fixed;
		top: 0;
		right: 0;
		width: 55%;
		height: 100%;
		min-width:auto;
		min-height: 100vh;
		min-height: 100dvh;
		overflow: auto;
		overflow-x: hidden;
		padding: 25.3vw 6vw;
		opacity: 0;
		pointer-events: none;
		z-index: 1;
		transition: opacity .5s ease-in-out;
		transform: translateX(100%);
		transition: all .3s ease;
		display: flex;
		flex-direction: column;
		justify-content: unsafe;
		background-color:transparent;
	}
	.header.is-active .header__inner {
		opacity: 1;
		transform: translateX(0%);
		pointer-events: auto;
		display: flex;
		justify-content: flex-start;
	}
	.header_logo{
		display: none;
	}	
}

/**
 * headerNav
 */
.headerNavLists{
	display: flex;
}
@media screen and (max-width: 768px){
	.headerNav{
		width: 100%;
	}
	.headerNavLists {
		flex-direction: column;
		text-align: right;
	}
}
.headerNavLists__item{
	font-size: 16px;
	font-weight: 700;
	line-height: 1;
	white-space: nowrap;
	padding: 0 8px;
}
.headerNavLists__item a{
	display: inline-block;
	padding-left: calc(min(3.3334%, 40px) * 1.25);
	text-decoration: none;
	font-weight: 600;
	color: #FFF;
	pointer-events: auto;
	position: relative;
	transition: .3s ease;
}
@media screen and (max-width:768px){
	.headerNavLists__item {
		font-size: 16px;
		padding: 0;
	}
	.headerNavLists__item:not(:last-child){
		margin-bottom: 10%;
	}
	.headerNavLists__item a{
		padding-left: 0;
	}
}
.headerNavLists__item a span:after{
	content: '';
	position: absolute;
	left: 0;
	height: 100%;
	top: -1px;
	width: 100%;
	background: linear-gradient(var(--main-color) , var(--main-color)) right center/ 0 100% no-repeat;
	transition: background-size .3s ease;
	z-index: -1;
}
.headerNavLists__item a:hover,
.headerNavLists__item a.is-active{
	color: #000;
}
.headerNavLists__item a:hover span::after,
.headerNavLists__item a.is-active span:after{
	background-size: 100% 100%;
	background-position: left center;
}
.headerNavLists__item a span{
	display: inline-block;
	position: relative;
}
.headerNavLists__item a span:before{
	content: '';
	position: absolute;
	left: 0;
	height: 100%;
	top: -1px;
	right: 0;
	background-color: #000;
	z-index: -1;
}


/* SNS */
.header_snsLists{
	height: 20px;
	position: absolute;
	right: 0;
	padding-right: 28px;
	display: flex;
	align-items: center;
}
.header_snsList{
	position: relative;
	padding: 0 8px;
	width: 32px;
	height: 16px;
}
.header_snsList.-instagram{
	width: 32px;
}.header_snsList.-facebook{
	width: 32px;
}
.header_snsList.-discord{
	width: 36px;
}
.header_snslink{
	display: block;
	text-decoration: none;
	position: relative;
	width: 100%;
	height: 100%;
}
.header_xlink_link:after{
	/*background: url(../img/common/icon_x.svg) no-repeat center / contain;*/
}
.header_ig_link:after{
	background: url(../img/common/icon_insta.svg) no-repeat center / contain;
}
.header_facebook_link:after{
	background: url(../img/common/sns_fb_w.svg) no-repeat center / contain;
}
.header_tiktok_link:after{
	background: url(../img/common/icon_tiktok.svg) no-repeat center / contain;
}
.header_snslink:after {
	content: '';
	position: absolute;
	right: 0;
	bottom: 1px;
	width: 100%;
	height: 100%;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-size: contain;
	mask-size: contain;
}
.header_xlink_link:after{
	-webkit-mask-image: url(../img/common/icon_x.svg);
	mask-image: url(../img/common/icon_x.svg);
	background-color: #FFF;
	transition: all .4s ease;
}
.header_discord_link:after{
	-webkit-mask-image: url(../img/common/icon_discord.svg);
	mask-image: url(../img/common/icon_discord.svg);
	background-color: #fff;
	transition: all .4s ease;
}
.header_xlink_link:hover:after,
.header_discord_link:hover:after{
	background-color:var(--main-color);
}
.header_insta_link:after{
	background: url(../img/common/icon_insta.svg) no-repeat center / contain;
}
.header_tiktok_link:after{
	background: url(../img/common/icon_tiktok.svg) no-repeat center / contain;
}
@media screen and (max-width: 768px){
	.header_snsLists{
		position: relative;
		width: 100%;
		height: auto;
		justify-content: flex-end;
		margin-top: calc(8vw - 5%);
		margin-bottom: 8vw;
		padding-right: 0;
	}
	.header_snsList{
		width: 24px;
		height: 24px;
		padding: 0;
		margin: 0 12px;
	}
	.header_snsList:last-child{
		margin-right: 0;
	}
	.header_snsList.-instagram{
		width: 26px;
	}
	.header_snsList.-facebook{
		width: 26px;
	}
	.header_snsList.-discord{
		width: 28px;
	}
}

@media screen and (max-width:768px){
/* bg */
.header:before {
	content: "";
	background-color: rgba(0,0,0,.8);
	-webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);
	position: fixed;
	width: 55%;
	height: 100%;
	top: 0;
	right: 0;
	z-index: 0;
	transform: translateX(100%);
	transition: transform .6s cubic-bezier(0.25, 1, 0.5, 1);
}
.header.is-active:before {
	transform: translateX(0);
}
}

/* navBtn */
@media screen and (max-width:768px){
.navBtnWrap {
	width: 54px;
	height: 54px;
	position: fixed;
	top: 0;
	right: 0;
	z-index: 2;
}
.navBtn {
	background-color: rgba(0,0,0,0.6);
	display: flex;
	align-items: center;
	flex-direction: column;
	justify-content: center;
	width: 100%;
	height: 100%;
	position: relative;
	text-decoration: none;
	transition: background-color .3s ease;
	background-image: url(../img/common/menu_frame.svg);
	background-size: 100% auto;
}
.navBtn.is-active {
	background-color: #9d885f;
	background-image: url(../img/common/menu_frame_on.svg);
}
.navBtn__lineWrap {
	width: 30px;
	height: 10px;
	margin-top: 4px;
	position: relative;
	z-index: 1;
}
.navBtn--line {
	background-color: #FFF;
	display: block;
	width: 100%;
	height: 1px;
	margin: auto;
	position: absolute;
	transition: all .3s ease-in-out;
}
.navBtn.is-active .navBtn--line {
	background-color: #fff;
}
.navBtn--line:nth-child(1) {
	top: 0;
}
.navBtn--line:nth-child(2) {
	bottom: 0;
}

.navBtn.is-active .navBtn--line:nth-child(1) {
	top: 5px;
	transform: rotate(30deg);
}
.navBtn.is-active .navBtn--line:nth-child(2) {
	bottom: 4px;
	transform: rotate(-30deg);
}

.navBtn:after {
	content: "MENU";
	color: #FFF;
	font-size: 10px;
	letter-spacing: 0.01em;
	line-height: 1;
	margin-top: 8px;
	transition: all .3s ease-in-out;
}
.navBtn.is-active:after {
	content: "CLOSE";
}
}
/*MOVIE WRAP*/

#movieWrap{
	width:100%;
	position:absolute;
	bottom:0;
	left:0;
	top:0;
	pointer-events:none;
	min-width:1200px;
}
#sub #movieWrap{
	width:100%;
	position:absolute;
	bottom:0;
	left:0;
	top:0;
	pointer-events:none;
}
.movieWrap__box{
	width:100%;
	height:100vh;
	position:sticky;
	left:0;
	top:0;
	display:flex;
	justify-content:center;
	align-items:center;
	overflow:hidden;
}
.movieWrap__box--inner{
	flex-shrink:0;
}
.movieWrap__box--inner {
	position: relative;
}
.movieWrap__box--yt{
	width:calc(100% + 200px);
	height:calc(100% + 200px);
	margin:-100px -100px;
	position: relative;
	z-index: 1;
	transform:scale(1.2);
}
.index #movieWrap{
	z-index: -10;
	position: fixed;
}
@media screen and (max-width:768px){
	#movieWrap{
		top:0;
		min-width:320px;
	}
	.index .movieWrap__box {
		position: absolute;

	}
	.movieWrap__box--yt{
		transform:scale(1.2);
	}
}
@media screen and (max-width:768px){
	.index #movieWrap{
		z-index: -10;
		position: absolute;
	}
	.index #movieWrap::before {
		z-index: 10;
	}
	.index .movieWrap__box{
		width:100%;
		height:100%;
		position:absolute;
		left:0;
		top:0;
		display:flex;
		justify-content:center;
		align-items:center;
		overflow:hidden;
	}
	.index .movieWrap__box--inner{
		height: 100%!important;
	}
	.index .movieWrap__box--yt {
		width: calc(100% + 200px);
		height: 100%;
		margin: -0 -100px;
		position: relative;
		z-index: 1;
	}

	/*
	.top_page .movieWrap__box--yt{
		width:calc(100% + 200px);
		height:calc(100% + 200px);
		margin:-100px -100px;
		position: relative;
		z-index: 1;
	}*/
}
/*-------*/
#movieWrap2{
	position: absolute;
	top:0;
	left: 0;
	width: 110%;
	height: 110%;
	overflow: hidden;
	z-index: -1;
	filter: blur(6px);
}
#movieWrap2::before,
#movieWrap::before{
	content: "";
	width: 100%;
	height: 100%;
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	background-image: url(../img/top/fv_over.png);
	z-index: 1;
}

/*---------------
MOVIE MODAL
---------------*/
.movieModal{
	position:fixed;
	left:0;
	top:0;
	right:0;
	bottom:0;
	background:#000;
	z-index:25000;
	display:none;
}
.modalClose{
	position:absolute;
	left:0;
	right:0;
	top:0;
	bottom:0;
}
.modalClose a{
	display:block;
	position:absolute;
	right:0;
	top:0;
	width:80px;
	height:80px;
	overflow:hidden;
}
.modalClose a:before,
.modalClose a:after{
	content:'';
	position:absolute;
	height:2px;
	top:50%;
	left:50%;
	width:200px;
	background:#FFF;
	margin-left:-100px;
	margin-top:-1px;
}
.modalClose a:before{
	transform:rotate(45deg);
}
.modalClose a:after{
	transform:rotate(-45deg);
}
.movieModal__inner{
	position:absolute;
	left:80px;
	right:80px;
	top:80px;
	bottom:80px;
}
.movieModal__inner iframe{
	width:100%;
	height:100%;
}
@media screen and (max-width:768px){
	.modalClose a{
		width:12.8vw;
		height:12.8vw;
	}
	.movieModal__inner{
		position:absolute;
		left:0;
		right:0;
		top:50%;
		bottom:auto;
		height:56.25vw;
		margin-top:-28.125vw;
	}
}
/*sp nav bnr*/
.linkBoxWrap_spnav{
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	width: 100%;
}
.linkBoxWrap_spnav li{
	margin-top: 3vw;
	text-align: right;
}
.linkBoxWrap_spnav li a{
	display: block;
	text-align: right;
}
.linkBoxWrap_spnav li img{
	height: 10vw;
	width: auto;
}


.header__bgm {
	display: flex;
	position: absolute;
	right:150px;
	top:0;
	bottom:0;
	align-items: center;
}
@media screen and (max-width:768px){
	.header__bgm {
		display: flex;
		position:relative;
		right:unset;
		top:unset;
		bottom:unset;
		align-items: center;
		padding-top:6.4vw;
		width:100%;
		justify-content: flex-end;
	}
}
.header__bgmTitle {
	font-size:16px;
	font-weight: 300;
	margin-right:10px;
	padding-top: 2px;
}
.header__bgmIcon {
	width:29px;
	height:22px;
	background:#fff;
	margin-right:8px;
}
.header__bgm.--off .header__bgmIcon {
	-webkit-mask: url(../img/common/icon_bgm_off.svg) no-repeat center center / contain;
	mask: url(../img/common/icon_bgm_off.svg) no-repeat center center / contain;
}
.header__bgm.--on .header__bgmIcon {
	-webkit-mask: url(../img/common/icon_bgm_on.svg) no-repeat center center / contain;
	mask: url(../img/common/icon_bgm_on.svg) no-repeat center center / contain;
}
.header__bgmLevel {
	margin-right:10px;
}
.header__bgmLevel,
.header__bgmLevel div {
	width:14px;
	height:16px;
	position: relative;
}
.header__bgmLevel:before,
.header__bgmLevel:after,
.header__bgmLevel div:before,
.header__bgmLevel div:after {
	content:'';
	position: absolute;
	bottom:0;
	width:2px;
	height:2px;
	background:#fff;
}
.header__bgmLevel:before {
	left:0;
}
.header__bgmLevel:after {
	left:4px;
}
.header__bgmLevel div:before {
	left:8px;
}
.header__bgmLevel div:after {
	left:12px;
}
@keyframes bgmlevel {
	0%,100% {
		height:2px;
	}
	20% {
		height:16px;
	}
	40% {
		height:6px;
	}
	60% {
		height:12px;
	}
	80% {
		height:9px;
	}
}
.header__bgm.--on .header__bgmLevel:before {
	animation:bgmlevel 0.8s ease infinite;
}
.header__bgm.--on .header__bgmLevel:after {
	animation:bgmlevel 0.6s ease infinite;
}
.header__bgm.--on .header__bgmLevel div:before {
	animation:bgmlevel 0.7s ease infinite;
}
.header__bgm.--on .header__bgmLevel div:after {
	animation:bgmlevel 0.9s ease infinite;
}
.header__bgmNow {
	display: block;
	width:27px;
	font-size:12px;
}
.header__bgm.--off .header__bgmNow:before {
	content:'OFF';
}
.header__bgm.--on .header__bgmNow:before {
	content:'ON';
}
.header__bgmLink {
	position: absolute;
	display: block;
	left:0;
	top:0;
	right:0;
	bottom:0;
	z-index:50;
}
.bcbgAudioPlayer {
	width:0;
	height:0;
	overflow: hidden;
}