@charset "UTF-8";

/* reset
-------------------------------------------------*/
html, body, div, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video, input {
	margin: 0;
	padding: 0;
	border: 0;
	vertical-align: bottom;
}
ol, ul {
	list-style: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
*, *:before, *:after {
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
         -o-box-sizing: border-box;
        -ms-box-sizing: border-box;
            box-sizing: border-box;
}
img {
    vertical-align: middle;
}

/* base setting
-------------------------------------------------*/
html {
font-size: 10px;
overflow-x: hidden
}
body {
	font-family: 'Noto Sans JP', sans-serif;
	font-feature-settings: "palt";
	color: #fff;
	font-size: 1.6rem;
	font-weight: 400;
	text-align: left;
	background-color: #000;
	background-image: url(_img/bg.jpg);
	background-position: center top;
	background-size: 100% auto;
	background-repeat: repeat-y;
}
@media(max-width: 799px) {
body {
font-size: 1.3rem;
}
}

body { width:100%;height:100%; position:relative; -webkit-font-smoothing:antialiased; }
a {
	position: relative;
	color: #fff;
	text-decoration: none;
}
a:hover {
	color: #fff;
	text-decoration: none;
	opacity: 0.7;
}

a,
a:before,
a:after,
a > *,
a > *:before,
a > *:after {
	transition: all 0.4s;
}
a:hover,
a:hover:before,
a:hover:after,
a:hover > *,
a:hover > *:before,
a:hover > *:after {
	transition: all 0.3s;
}
img {
	width: 100%;
	height: auto;
	vertical-align: top;
}
ul {
	list-style-type: none;
}

/* header
-------------------------------------------------*/
.hd_common {
	width: 100%;
	position: fixed;
	z-index: 2;
	top: 0px;
	padding-top: 1rem;
	padding-bottom: 1rem;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}
.hd_logo {
	width: 80px;
	margin-left: 3.5em;
	opacity: 0;
}
.change-color .hd_logo {
	opacity: 1;
}
.nav-wrapper {
	display: flex;
	align-items: flex-end;
}
.hd_common ul.hd_nav {
	display: flex;
	justify-content: flex-end;
	margin-right: 3.5em;
	color: #113567;
	font-weight: 700;
}
.hd_common ul.hd_nav li {
margin-left: 5rem;
display: flex;
align-items: center;
justify-content: center;
}
.hd_common ul.hd_nav li.entry_link {
	background: linear-gradient(90deg, #006bff, #0012b9);
	width: 187px;
	height: 45px;
	border-radius: 45px;
	line-height: 45px;
	text-align: center;
}
.hd_common ul.hd_nav li.entry_link a {
	display: block;
}
.entry_link_style{
	background: #7e7e7e!important;
	color:#fff;
	margin-left: 4rem!important;
}
.pv_link_style{
	margin-left: 3rem!important;	
}
@media(max-width: 450px) {
.pv_link_style, .entry_link_style{
	margin-left: 0rem!important;
	width: 100%!important;;	
}
}
.hd_common.change-color {
  background-color: #000;
  transition: 0.3s;
}
.burger-btn {
display: none;
}
@media(max-width: 799px) {
.hd_common {
width: 100%;
max-width: 100%;
height: 6rem;
padding:0 1px;
align-items: center;
}
.hd_logo {
	width: 50px;
	margin-left: 2em;
}
/* ボタンリセット */
button {
		-webkit-appearance: none;
		-moz-appearance: none;
		appearance: none;
		background: transparent;
		border: 0;
		border-radius: 0;
		color: inherit;
		cursor: pointer;
		font: inherit;
		margin: 0;
		outline: none;
		padding: 0;
		vertical-align: middle;
	}
/* ハンバーガーボタン */
.burger-btn{
	display: block;
	width: 50px;
	height: 50px;
	position: relative;
	z-index: 3;
	border: none;
	margin-right: 10px;
}    
.bar{      
  width: 30px;      
  height: 2px;        
  display: block;      
  position: absolute;      
  left: 50%;      
  transform: translateX(-50%);      
  background-color: #fff;    
}    
.bar_top{   
  top: 15px;
}
.bar_mid{    
  top: 50%;
  transform: translate(-50%,-50%);
}
.bar_bottom{
  bottom: 15px;
}
.burger-btn.close .bar_top{      
  transform: translate(-50%,10px) rotate(45deg);      
  transition: transform .3s;
    background-color: #fff;    
}    
.burger-btn.close .bar_mid{      
  opacity: 0;       
  transition: opacity .3s;
  background-color: #fff;    
}    
.burger-btn.close .bar_bottom{      
transform: translate(-50%,-8px) rotate(-45deg);      
transition: transform .3s;
background-color: #fff;    
}

/* ハンバーガーメニュー */
.nav-wrapper{      
  visibility: hidden;
  opacity: 0;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  transition: all .5s;       
  z-index: 2;     
}     
.header-nav{
	width: 100%;
	height: 100%;
	background-image: url(_img/kv.png);
	background-position: center top;
	background-size: cover;
	background-repeat: no-repeat;
	z-index: 2;
	background-color: #000;
}

/* ナビゲーション */
.hd_common ul.hd_nav  {
width: 62%;
display: block;
padding-top: 5rem;
margin-left: auto;
margin-right: auto;
}
.hd_common ul.hd_nav li {
	width: auto;
	height: auto;
	padding-top: 2rem;
	padding-bottom: 2rem;
	display: block;
	border-bottom: 1px solid #fff;
	position: relative;
	text-align: center;
	margin-left: 0px;
	padding-left: 0px;
}
.hd_common ul.hd_nav li a:link {
color: #fff;
padding-top: 2rem;
padding-bottom: 2rem;
}
.hd_common ul.hd_nav li a:visited {
color: #fff;
}
.hd_common ul.hd_nav li:last-child {
border-bottom: none;
padding-bottom: 0px;
}
.hd_common ul.hd_nav li.entry_link {
	margin: 2rem auto 0;
	padding: 0px;
}
.hd_common ul.hd_nav li.entry_link a {
padding:0px;
}

.sp_nav_btn {
	width: 62%;
	font-size: 1.6rem;
	font-weight: 600;
	height: 5rem;
	line-height: 5rem;
	margin: 30px auto 0;
}
.sp_nav_logo {
	width: 40%;
	margin: 50px auto 0;
}

/* メニューオープン時 */
.nav-wrapper.fade {
	visibility: visible;
	opacity: 1;
}

.noscroll{
  overflow: hidden;
}
}

/* common
-------------------------------------------------*/
section {
	margin-bottom: 200px;
	width: 100%;
}
.sp_obj {
display: none !important;
}
.common_wrap {
max-width: 1000px;
margin-left: auto;
margin-right: auto;
position: relative;
}
.common_wrap_s {
max-width: 850px;
margin-left: auto;
margin-right: auto;
position: relative;
}
.main_ttl_set {
	text-align: center;
	margin-bottom: 60px;
}
.main_ttl_set p.main_ttl_jp {
	font-size: 16px;
}
.main_ttl_set h2.main_ttl {
text-shadow: 0px 0px 38px rgba(255,0,255,1);
	font-size: 50px;
	font-weight: 700;
	position: relative;
}
.main_ttl_set h2.main_ttl::before,
.main_ttl_set h2.main_ttl::after {
	content: '';
	position: absolute;
	width: 325px;
	height: 20px;
	background-image: url(_img/mainttl_line.png);
	background-size: contain;
	background-position: center center;
	background-repeat: no-repeat;
}
.main_ttl_set h2.main_ttl::before {
left:0px;
top:0;
bottom:0;
margin: auto;
}
.main_ttl_set h2.main_ttl::after {
right:0px;
top:0;
bottom:0;
margin: auto;
transform: scale(-1, -1);
}
.note_txt {
	font-size: 10px;
	text-align: center;
}
.comingsoon {
	text-align: center;
	font-size: 32px;
	font-weight: 700;
}
.btn_white {
	color: #3d42bd;
	background: linear-gradient(to right, #fff, #eae8e9);
	box-shadow: 0px 10px 10px -6px rgba(34,31,255,0.80);
	-webkit-box-shadow: 0px 10px 10px -6px rgba(34,31,255,0.80);
	border-radius: 100px;
	display: block;
	text-align: center;
}
a.btn_white:hover {
color: #3d42bd;
}
@media(max-width: 799px) {
.pc_obj {
display: none !important;
}
.sp_obj {
display: block !important;
}
.common_wrap {
margin-left: 2rem;
margin-right:2rem;
}
section {
	margin-bottom: 100px;
}
.main_ttl_set {
	margin-bottom: 30px;
}
.main_ttl_set h2.main_ttl {
text-shadow: 0px 0px 20px rgba(255,0,255,1);
	font-size: 30px;
	font-weight: 700;
}
.main_ttl_set h2.main_ttl::before,
.main_ttl_set h2.main_ttl::after {
	width: 90px;
	background-size: auto;
	background-position: left center;
}
#invitedteam .main_ttl_set h2.main_ttl::before,
#invitedteam .main_ttl_set h2.main_ttl::after {
	width: 50px;
}
.main_ttl_set p.main_ttl_jp {
	font-size: 13px;
}
.comingsoon {
	font-size: 20px;
}
}

/* mv
-------------------------------------------------*/
.mv {
	margin-bottom: 0px;
	position: relative;
	height: 100vh;
	background-image: url(_img/kv.png);
	background-position: center top;
	background-size: cover;
	background-repeat: no-repeat;
}
.mv .mv_wrap {
	width: 100%;
}
.mv h1.mv_logo {
	width: 25vw;
	position: absolute;
	top:0;
	bottom:0;
	left:0;
	right:0;
	margin:auto;
	display: flex;
	align-items: center;
}
@media(max-width: 799px) {
.mv h1.mv_logo {
	width: 50vw;
}
}

/* news
-------------------------------------------------*/
.news {
	margin-bottom: 120px;
	text-align: center;
	color: #dbdbdb;
	font-size: 1em;
    	height: 60px;
    	background-color: #101010;
    	line-height: 60px;
}

@media(max-width: 450px) {
.news {
    line-height: 20px;
    padding: 10px 20px 0 20px;
}
}

/* sponcer
-------------------------------------------------*/
.sponcer_content_area {
}
ul.sponcer_list_01 {
	gap: 20px;
	margin-bottom: 15px;
		display: flex;
	justify-content: center;
	color: #C9C9C9;
}
ul.sponcer_list_01 li {
	width: 270px;
	height: 90px;
	background-color: #fff;
	display: flex;
	align-items: center;
	border-radius: 5px;
	justify-content: center;
}
ul.sponcer_list_01 li img {
	width: auto;
	height: auto;
}
ul.sponcer_list_02 {
	gap: 10px;
		display: flex;
	justify-content: center;
	color: #C9C9C9;
}
ul.sponcer_list_02 li {
	width: 155px;
	height: 70px;
	padding-left: 10px;
	padding-right: 10px;
		background-color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 5px;
}
ul.sponcer_list_02 li:nth-of-type(2) img {
	width: 130px;
}
ul.sponcer_list_02 li:nth-of-type(4) img {
	width: 100px;
}
ul.sponcer_list_02 li:nth-of-type(6) img {
	width: 130px;
	vertical-align: middle;
}
@media(max-width: 799px) {
ul.sponcer_list_01 {
flex-wrap: wrap;
gap: 10px;
}
ul.sponcer_list_01 li {
	height: 70px;
}
ul.sponcer_list_02 {
flex-wrap: wrap;
}
ul.sponcer_list_02 li {
	height: 50px;
}
ul.sponcer_list_02 li:nth-of-type(6) img {
}
}

/* about
-------------------------------------------------*/
.about_content_area {
padding-top: 70px;
margin-top: -70px;
}
.about_content_area .about_lead {
	text-align: center;
	margin-bottom: 60px;
}
.about_content_area .about_img {
	text-align: center;
	margin-bottom: 23px;
}
@media(max-width: 799px) {
}

/* invitedteam
-------------------------------------------------*/
.invitedteam_content_area {
}
ul.invitedteam_list {
display: flex;
justify-content: space-between;
flex-wrap: wrap;
gap:55px;
}
ul.invitedteam_list li {
width: 150px;
}
ul.invitedteam_list li .team_name {
	font-size: 20px;
	text-align: center;
	padding-top: 25px;
}
ul.invitedteam_list li:nth-of-type(9) .team_name {
	font-size: 16px;
}
@media(max-width: 799px) {
ul.invitedteam_list {
gap:15px;
}
ul.invitedteam_list li {

}
ul.invitedteam_list li .team_name {
	font-size: 16px;
	padding-top: 10px;
	line-height: 1.3em;
}
ul.invitedteam_list li:nth-of-type(9) .team_name {
	font-size: 16px;
}
}

/* prize
-------------------------------------------------*/
.prize_content_area {
}
.prize_content_area .prize_img {
	text-align: center;
	max-width: 545px;
	margin: 0 auto;
}
@media(max-width: 799px) {
}



/* stream
-------------------------------------------------*/
.stream_content_area {
}
.stream_content_area h3.main_sttl {
	text-align: center;
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 60px;
}
.stream_content_area .schedule_img {
	margin-bottom: 60px;
}
.stream_content_area .schedule_img img {
	margin-bottom: 30px;
}
/*
.stream_content_area .performer_img {
margin-bottom: 60px;
}
*/
.performer_block {
display: flex;
justify-content: space-between;
}
.performer_block .performer_box {
	width: 43%;
}
.performer_block .performer_date {
	border-radius: 100px;
	border: 1px solid #fff;
	height: 50px;
	line-height: 50px;
	text-align: center;
	margin-bottom: 50px;
	font-size: 24px;
	font-weight: 700;
}
.performer_block .performer_wrap {
	display: flex;
	justify-content: space-between;
	text-align: center;
	margin-bottom: 50px;
}
.performer_block .performer_wrap .performer_box2 {
	width: 200px;
}
.performer_block .performer_wrap .performer_sttl {
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 10px;
}
.performer_block .performer_img {
	background-color: rgba(255,255,255,0.15);
	max-width: 200px;
	margin-bottom: 15px;
}
.performer_block .performer_wrap .performer_name {
	font-size: 24px;
	font-weight: 700;
}
.performer_block .performer_platform .performer_ttl {
	font-size: 16px;
	font-weight: 700;
	position: relative;
	margin-bottom: 40px;
	display: flex;
	align-items: center;
	width: 100%;
}
.performer_block .performer_platform .performer_ttl::before,
.performer_block .performer_platform .performer_ttl::after {
	content: '';
	height: 1px;
	background-color: #fff;
	flex-grow: 1;
}
.performer_block .performer_platform .performer_ttl::before {
margin-right: 3rem;
}
.performer_block .performer_platform .performer_ttl::after {
margin-left: 3rem;
}

.performer_block .performer_platform a.btn_twitch {
	background-color: #6441a4;
	border-radius: 100px;
	color: #fff;
	text-align: center;
	display: block;
	margin-bottom: 30px;
	font-weight: 700;
	height: 65px;
	line-height: 65px;
	font-size: 22px;
	position: relative;
}
.performer_block .performer_platform a.btn_twitch::before {
	content: '';
	background-image: url(_img/icon_twitch.png);
	width: 30px;
	height: 30px;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	display: block;
	position: absolute;
	top:0;
	bottom:0;
	left:30px;
	margin: auto;
}
.performer_block .performer_platform a.btn_youtube {
	border-radius: 100px;
	text-align: center;
	display: block;
	color: #000;
	background-color: #fff;
	font-weight: 700;
		height: 65px;
	line-height: 65px;
	font-size: 22px;
	position: relative;
}
.performer_block .performer_platform a.btn_youtube::before {
	content: '';
	background-image: url(_img/icon_youtube.png);
	width: 42px;
	height: 32px;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	display: block;
	position: absolute;
	top:0;
	bottom:0;
	left:30px;
	margin: auto;
}
@media(max-width: 799px) {
.stream_content_area h3.main_sttl {
	font-size: 18px;
	margin-bottom: 30px;
}
.performer_block {
display: block;
}
.performer_block .performer_box {
	width: auto;
	margin-bottom: 50px;
}
.performer_block .performer_date {
	height: 40px;
	line-height: 40px;
	margin-bottom: 20px;
	font-size: 20px;
}
.performer_block .performer_wrap {
	margin-bottom: 25px;
}
.performer_block .performer_wrap .performer_box2 {
	width: 48%;
}
.performer_block .performer_wrap .performer_sttl {
	font-size: 16px;
	margin-bottom: 5px;
}
.performer_block .performer_img {
	margin-bottom: 10px;
}
.performer_block .performer_wrap .performer_name {
	font-size: 20px;
}
.performer_block .performer_platform .performer_ttl {
	margin-bottom: 20px;
}
.performer_block .performer_platform .performer_ttl::before {
margin-right: 2rem;
}
.performer_block .performer_platform .performer_ttl::after {
margin-left: 2rem;
}
.performer_block .performer_platform a.btn_twitch {
	margin-bottom: 15px;
	height: 60px;
	line-height: 60px;
	font-size: 18px;
}
.performer_block .performer_platform a.btn_twitch::before {
	left:20px;
}
.performer_block .performer_platform a.btn_youtube {
	height: 60px;
	line-height: 60px;
	font-size: 18px;
}
.performer_block .performer_platform a.btn_youtube::before {
	left:14px;
}
}

/* twitter
-------------------------------------------------*/
.twitter_content_area {
}
.twitter_content_area .tw_area {
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
}
@media(max-width: 799px) {
.twitter_content_area .tw_area {
	position: relative;
	width: 100%;
	/*  padding-top: 68%;*/
	overflow: auto;
	-webkit-overflow-scrolling: touch;
	margin-bottom: 30px;
}
.twitter_content_area .tw_area iframe {
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    border:none;
    display:block;
}
}

/* お問い合わせボタン
-------------------------------------------------*/
.contact_content_area {
	margin-bottom: 120px;
}
.contact_content_area h3.contact_ttl {
	font-weight: 700;
	margin-bottom: 15px;
	text-align: center;
}
.contact_content_area a.ft_contact {
	max-width: 420px;
	height: 3em;
	margin: 0 auto;
	line-height: 3em;
	font-size: 25px;
	font-weight: 700;
}
@media(max-width: 799px) {
.contact_content_area a.ft_contact {
	height: 2.5em;
	line-height: 2.5em;
}
}


/* footer
-------------------------------------------------*/
footer.ft_common {
	width: 100%;
	text-align: center;
	padding-bottom: 60px;
}
footer.ft_common .ft_box {
	margin-bottom: 50px;
}
footer.ft_common .ft_box h3.contact_ttl {
	font-weight: 700;
	margin-bottom: 15px;
}
footer.ft_common .ft_box h3.ft_ttl {
	display: flex;
	align-items: center;
	margin-bottom: 35px;
}
footer.ft_common .ft_box h3.ft_ttl:before,
footer.ft_common .ft_box h3.ft_ttl:after {
	content: "";
	height: 1px;
	flex-grow: 1;
	background-color: #fff;
}
footer.ft_common .ft_box h3.ft_ttl::before {
margin-right: 2rem;
}
footer.ft_common .ft_box h3.ft_ttl::after {
margin-left: 2rem;
}
footer.ft_common .bg_blue .ft_box h3.ft_ttl:before,
footer.ft_common .bg_blue .ft_box h3.ft_ttl:after {
	background-color: #fff;
}
footer.ft_common .ft_box a.ft_contact {
	max-width: 420px;
	height: 3em;
	margin: 0 auto 75px;
	line-height: 3em;
	font-size: 25px;
	font-weight: 500;
}
footer.ft_common .ft_box ul.link_list {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 25px;
}
footer.ft_common .ft_box ul.link_list li {}
footer.ft_common .ft_box ul.link_list li .link {
	font-size: 20px;
	font-weight: 500;
		height: 3em;
	line-height: 3em;
}
footer.ft_common .ft_box ul.link_list li p.link_note {
	font-size: 10px;
	padding-top: 15px;
}
footer.ft_common .ft_box ul.ft_list {}
footer.ft_common .ft_box ul.ft_list li {}
footer.ft_common .ft_box ul.partner {
	margin-bottom: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
		gap: 30px;
}
span.ft_sttl {
	font-size: 13px;
	font-weight: 500;
	margin-right: 10px;
}
footer.ft_common .ft_box ul.partner li a {
display: flex;
align-items: center;
}
footer.ft_common .ft_box ul.partner li:nth-of-type(1) img {
	width: 115px;
}
footer.ft_common .ft_box ul.partner li:nth-of-type(2) img {
	width: 150px;
}
footer.ft_common .ft_box ul.organizer {
	margin-bottom: 100px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	gap: 30px;
}
footer.ft_common .ft_box ul.organizer li:nth-of-type(1) {
	width: 90px;
}
footer.ft_common .ft_box ul.organizer li:nth-of-type(2) {
	width: 125px;
}
footer.ft_common .ft_box ul.organizer li:nth-of-type(3) {
	width: 85px;
}
footer.ft_common p.ft_copyright {
	font-size: 10px;
}

@media(max-width: 799px) {
footer.ft_common {
	padding-bottom: 30px;
}
footer.ft_common .ft_box ul.link_list {
grid-template-columns: 1fr;
}
footer.ft_common .ft_box ul.link_list li .link {
	font-size: 16px;
}
footer.ft_common .ft_box ul.sponser {
	grid-template-columns: 1fr 1fr 1fr;
}
footer.ft_common .ft_box ul.sponser_l {
width: auto;
}
footer.ft_common p.ft_copyright {
	margin: 0 2rem;
}
}