@charset "utf-8";
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;}
/*-----------------------------------------------
 * Bace
 * Modal
 * Header
 * Parts
-------------------------------------------------*/
/*-----------------------------------------------
 * Bace
-------------------------------------------------*/
@font-face {
	font-family: "Yu Gothic";
	src: local("Yu Gothic Medium");
	font-weight: 100;
}
@font-face {
	font-family: "Yu Gothic";
	src: local("Yu Gothic Medium");
	font-weight: 200;
}
@font-face {
	font-family: "Yu Gothic";
	src: local("Yu Gothic Medium");
	font-weight: 300;
}
@font-face {
	font-family: "Yu Gothic";
	src: local("Yu Gothic Medium");
	font-weight: 400;
}
@font-face {
	font-family: "Yu Gothic";
	src: local("Yu Gothic Bold");
	font-weight: bold;
}
body{
	-webkit-text-size-adjust: 100%;
	background-color: #000;
	color: #FFF;
	font-family: 'Noto Sans JP', "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
	font-feature-settings: "palt";
	font-size: 14px;
	font-weight: normal;
	letter-spacing: 0.07em;
	line-height: 1.8;
	word-wrap: break-word;
}
.pc{ display: block; }
.sp{ display: none; }
a{ color: #FFF; }
a:hover{ text-decoration: none; }
.ah { transition: opacity .3s ease; }
.ah:hover { opacity: .7; }
::selection{
	background: #6ccfee;
	color: #fff;
}
::-moz-selection{
	background: #6ccfee;
	color:#fff;
}
@media screen and (max-width:767px){ 
	html{ 
		font-size: 62.5%;
	}
	body{
		font-size: 10px; 
		font-size: 1rem;
		min-width: 320px;
	}
	.sp{ display: block; }
	.pc{ display: none; }
	.ah:hover { opacity: 1; }
}

:root{
	--main-color-purple: #a84de4;
	--main-color-yellowgreen: #c3d82d;
	--main-color-red: #e64f4f;
	--group-color-bae: #eb6455;
	--group-color-tcw: #005290;
	--group-color-cozmez: #d0afd2;
	--group-color-akyr: #fbc85a;
	--group-color-buraikan: #a6903d;
	--group-color-visty: #e9589a;
	--group-color-amprule: #005738;
	--group-color-1nm8: #bdc3c4;
	--group-color-gokuluck: #e94a31;
	--font-family-roboto: 'Roboto Condensed', sans-serif;
	--gradation-p1: linear-gradient(30deg, var(--main-color-purple), var(--main-color-purple), var(--main-color-red), var(--main-color-red), var(--main-color-yellowgreen), var(--main-color-yellowgreen));
	--gradation-p2: linear-gradient(30deg, var(--main-color-yellowgreen), var(--main-color-yellowgreen), var(--main-color-red), var(--main-color-red), var(--main-color-purple), var(--main-color-purple));

	--sp-size-10: min(1.3334vw, 10px);
	--sp-size-12: min(1.6vw, 12px);
	--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-72: min(9.6vw, 72px);
	--sp-size-96: min(12.8vw, 96px);
}


/*-----------------------------------------------
 * Modal
-------------------------------------------------*/

/**
 * modalBox
 * 基盤のモーダル
 */
.modalBox{
	-webkit-overflow-scrolling: touch;
	background: rgba(0,0,0,.9);
	display: none;
	width: 100%;
	height: 100%;
	overflow: auto;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999;
}
.oneModal{
	display: none;
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 1;
}

/* oneModalIn */
.oneModalIn{
	display: flex;
	justify-content: center;
	align-items: center;
	height: auto;
	width: 100%;
	min-width: 100%;
	min-height: 100%;
	margin: 0 auto;
	position: relative;
}
.oneModalIn__cont{
	padding: 50px 0;
}
@media screen and (max-width:767px){
	.oneModalIn{
		min-width: 100%;
	}
	.oneModalIn__cont{
		width: 100%;
		padding: 30px 0;
	}
}

/**
 * closeBtn
 */
.closeBtn{
	width: 80px;
	height: 40px;
	position: absolute;
	top: 0;
	right: 0;
	z-index: 2;
}
@media screen and (max-width:767px){
	.closeBtn{
		width: var(--sp-size-96);
		height: var(--sp-size-48);
	}
}
.closeBtn a{
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	right: 0;
}
.closeBtn a:before,
.closeBtn a:after{
	content: '';
	position: absolute;
	width: 100%;
	height: 1px;
	background-color: #fff;
	top: 0;
	bottom: 0;
	right: 0;
	margin: auto;
}
.closeBtn a:before{
	transform: rotate(30deg);
}
.closeBtn a:after{
	transform: rotate(-30deg);
}

/**
 * iframe
 */
/* common */
.commonIframe{
	width: 100%;
	height: 100%;
	display: block;
}

/* youtube */
.youtubeIframeWrap {
	width: 70%;
	max-width: 159.993vh;
	position: relative;
}
@media screen and (max-width:767px){
	.youtubeIframeWrap {
		width: 100%;
		max-width: 100%;
	}
}
.youtubeIframeWrap:before{
	content: "";
	display: block;
	padding-top: 56.25%;
	z-index: 0;
}
.youtubeIframe{
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}


/*-----------------------------------------------
 * Header
-------------------------------------------------*/
.header {
	width: 100%;
	position: fixed;
	bottom: 0;
	z-index: 999;
}
@media screen and (max-width:767px){
	.header {
		top: 0;
		bottom: auto;
	}
}

/* inner */
@media screen and (max-width:767px){
	.header__inner {
		-webkit-overflow-scrolling: touch;
		width: 100%;
		height: 100%;
		overflow: auto;
		position: fixed;
		top: 0;
		left: 0;
		padding: 80px 0;
		opacity: 0;
		pointer-events: none;
		z-index: 1;
		transition: opacity .5s ease-in-out;
	}
	.header.is-active .header__inner {
		opacity: 1;
		pointer-events: auto;
	}

	.header__inner:before {
		content: "";
		background: rgba(0,0,0,.8);
		position: fixed;
		width: 100%;
		height: 100%;
		top: 0;
		left: 0;
		z-index: 0;
	}
}

/**
 * headerNav
 */
@media screen and (max-width:767px){
	.headerNav {
		position: relative;
		z-index: 1;
	}

	.headerNavLists__item a {
		color: #fff;
	}
}

/**
 * navBtn
 */
@media screen and (max-width:767px){
	.header__navBtnWrap {
		background-color: #000;
		width: 50px;
		height: 50px;
		position: absolute;
		top: 0;
		right: 0;
		z-index: 2;
	}
	.header__navBtn {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 100%;
		height: 100%;
		position: relative;
	}
	.header__navBtn__lineWrap {
		width: 24px;
		height: 13px;
		position: relative;
	}
	.header__navBtn--line {
		background-color: #fff;
		display: block;
		width: 100%;
		height: 1px;
		margin: auto;
		position: absolute;
	}
	.header__navBtn--line:nth-child(1) {
		top: 0;
	}
	.header__navBtn--line:nth-child(2) {
		top: 0;
		bottom: 0;
	}
	.header__navBtn--line:nth-child(3) {
		bottom: 0;
	}
}


/*-----------------------------------------------
 * Parts
-------------------------------------------------*/

/**
 * shareLists
 */
.shareLists {
	display: flex;
}

/* item */
.shareLists__item {
	width: 24px;
	height: 24px;
	margin: 0 12px;
}
@media screen and (max-width: 767px){
	.shareLists__item {
		width: var(--sp-size-48);
		height: var(--sp-size-48);
		margin: 0 var(--sp-size-24);
	}
}

/* link */
.shareLists__link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	position: relative;
	text-decoration: none;
}
.shareLists__link:before {
	content: "";
	width: 100%;
	height: 100%;
	background-color: #FFF;
	display: block;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-position: center;
	mask-position: center;
	-webkit-mask-size: 100%;
	mask-size: 100%;
	transition: background-color .4s ease;
}
.shareLists__link:hover:before {
	background-color: var(--main-color-red);
}

/* 各SNSパーツ */
.shareLists__item.is-twitter .shareLists__link:before {
	-webkit-mask-image: url(../img/common/icon_tw.svg);
	mask-image: url(../img/common/icon_tw.svg);
}
.shareLists__item.is-facebook .shareLists__link:before {
	-webkit-mask-image: url(../img/common/icon_fb.svg);
	mask-image: url(../img/common/icon_fb.svg);
}
.shareLists__item.is-line .shareLists__link:before {
	-webkit-mask-image: url(../img/common/icon_line.svg);
	mask-image: url(../img/common/icon_line.svg);
}


/**
* Rotate Animation
**/
@keyframes rotate{
	0%{transform: rotate(0);}
	100%{transform: rotate(360deg);}
}

/*-----------------------------------------------
 * Footer
-------------------------------------------------*/
.footer{
	width: 100%;
	background-color: #000;
	padding: 3.3334% 0;
	position: relative;
	z-index: 2;
}
.toTop{
	position: absolute;
	top: 0;
	margin-top: 2.5%;
	right: 2.5%;
	width: 103px;
	height: 103px;
}
.toTop a{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: block;
}
.toTop a:before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url(../img/common/toTop_txt.svg) no-repeat center / contain;
	animation: 18s rotate linear infinite;
}
.icon_toTop{
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	width: 65px;
	height: 65px;
	margin: auto;
	background: url(../img/common/toTop_circle.svg) no-repeat center / contain;
}
.icon_toTop:before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 8px;
	margin: auto;
	width: 36px;
	height: 30px;
	background: url(../img/common/icon_toTop.svg) no-repeat center / contain;
	transition: .3s ease;
}

.toTop a:hover::before{
	animation-play-state: paused;
}
.toTop a:hover .icon_toTop:before{
	transform: translateY(-3px);
}


.shareWrap{
	text-align: center;
	width: 100%;
}
.share_ttl{
	padding: 8px 4px 0;
	line-height: 1;
	display: inline-block;
	position: relative;
	margin-bottom: 24px;
}
.share_ttl:before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background-color: #FFF;
}
.share_ttl span{
	font-size: 12px;
	line-height: 1;
	letter-spacing: -0.02em;
	transform: scale(1, 1.2);
	transform-origin: center top;
	font-family: var(--font-family-roboto);
	display: inline-block;
}
.shareWrap .shareLists{
	justify-content: center;
}

.copyright{
	line-height: 1;
	font-size: 12px;
	text-align: center;
	padding-top: 80px;
}

@media screen and (max-width: 767px){
	.footer{
		padding: 12.8% 0 6.4%;
	}
	.toTop{
		margin-top: 6.4%;
		right: 6.4%;
		width: min(13.73334vw, 103px);
		height: min(13.73334vw, 103px);
	}
	.icon_toTop{
		width: min(8.6667vw, 65px);
		height: min(8.6667vw, 65px);
	}
	.icon_toTop:before{
		width: min(4.6667vw, 35px);
		height: min(4vw, 30px);
		bottom: min(1.0667vw, 8px);
	}
	.share_ttl{
		padding-top: 1.0667vw;
		padding-right: 2px;
		padding-left: 2px;
		margin-bottom: var(--sp-size-48);
	}
	.share_ttl span{
		font-size: min(2.1334vw, 16px);
	}
	.copyright{
		padding-top: var(--sp-size-96);
		font-size: min(2.1334vw, 16px);
	}
}


/*-----------------------------------------------
 * Loading
-------------------------------------------------*/
#loading{
	position: fixed;
	width: 100%;
	height: 100%;
	background-color: #000;
	z-index: 100;
	transition: transform .3s ease;
}
.loading_icon{
	width: 80px;
	height: 80px;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	mask: url(../img/common/icon_paradoxlive.svg) no-repeat center / contain;
	-webkit-mask: url(../img/common/icon_paradoxlive.svg) no-repeat center / contain;
	transition: .3s ease;
}
.loading_icon div{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image: var(--gradation-p1);
	background-size: 100%;
	animation: 1.8182s rotate linear infinite;
}
#loading.fin .loading_icon{
	opacity: 0;
	transform: translateY(10px);
}
#loading.fin{
	transition-delay: .4s;
	transform: translateX(100%);
}

