html,body{
	margin:0;
	padding:0;
	overflow-x: hidden;
}

body {
    font-family: 'Zen Kaku Gothic Antique', sans-serif;
    font-size:15px;
    color:#CCBEC9;
    line-height:1.8;
    letter-spacing:0.05em;
}

a{
	text-decoration: none;
}

.event:hover {
  filter: opacity(70%);
  cursor: pointer;
}


img {
  image-rendering: auto;
}

.pc { display: block !important; }
.sp { display: none !important; }

@media only screen and (max-width: 1000px) {
    .pc { display: none !important; }
    .sp { display: block !important; }
}

.sp {
  position: relative;
  z-index: 0; /* 背景より前に出すため */
}


.sp::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  background-image: url('../img/nightgame202.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1; /* コンテンツの後ろに表示 */
}


.pc {
  position: relative;
  z-index: 0; /* 背景より前に出すため */
}


.pc::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  background-image: url('../img/nightgame272.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1; /* コンテンツの後ろに表示 */
}

/****************メニュー設定****************/

nav {
	display: flex;
	list-style: none;
	margin: 0 auto;
	letter-spacing:1px;
	height: 50px;
}

.nav a {
	color:#fff;
	text-decoration: none;
	font-size: 14px;
	font-family: Futura;
	
}

.nav a:hover{
	color:#ff8cff;
}

.drawer_menu a {
	color: inherit;
	text-decoration: none;
	font-size: 13px;
	font-weight: 600;
	letter-spacing:2px;
	
}

.drawer_menu a:visited {
	color: inherit;
}

.drawer_menu .drawer_nav {
	padding: 0;
	margin: 0 auto;
	list-style-type: none;
	font-size: 14px;
	letter-spacing: 1px;
}


.dropdown-btn {
	top:-5px;
	position:relative;
	display:inline-block;
	padding:20px;
	margin-left:0px;
	cursor:pointer;
}

.dropdown-btn:hover {
     
    }

.dropdown {
	z-index:1000;
	
	position:absolute;
	left:0;
	top:50px;
	width:200px;
	padding:15px 15px;
	display:none;
	list-style: none;
}
.dropdown li {
	display:inline-block;
	margin:5px 10px;
}

.open {
	display:block;
}

.close {
	display:block;
}





/* 三本線ボタン本体 */
.drawer_menu .drawer_button {
	display: block;
	color: #fff;
	background-color: transparent;
	border: none;
	padding: 0;
	width: 45px;
	cursor: pointer;
	position: fixed;
	top: 15px;
	right: 15px;
	z-index: 6001;
	text-align: center;
	outline: none;
}

.drawer_button .drawer_bar {
  display: block;
  width: 30px;               /* ← 少し短くして交差しやすく */
  height: 2px;
  margin: 6px auto;          /* ← 上下感覚を詰めると交差しやすい */
  background-color: #fff;
  border-radius: 10px;
  transition: all 0.3s ease;
  transform-origin: center;
}

/* アクティブ（×状態） */
.drawer_button.active .drawer_bar1 {
  transform: rotate(45deg);
  position: relative;
  top: 8px;
}

.drawer_button.active .drawer_bar2 {
  opacity: 0;
}

.drawer_button.active .drawer_bar3 {
  transform: rotate(-45deg);
  position: relative;
  top: -8px;
}




/*メニュー外枠*/
/*ransform: translate(250px);にて右に250pxずらして非表示*/
.drawer_menu .drawer_nav_wrapper {
	width: 100vw;
	height: 100%;
	transition: all 0.2s;
	transform: translate(100%);
	position: fixed;
	top: 0;
	right: 0;
	z-index: 6000;
	overflow-x: hidden;
	overflow-y: auto;
}

/*親メニュー全体構成*/
.drawer_menu .drawer_nav {
	display: block;
	position: relative;
	margin-top: 40px;
}

/*親メニュー個別構成*/
.drawer_menu .drawer_nav li {
	/* background-color: #333; */
	background-color: #000;
	height: auto;
	line-height: 45px;
	position: relative;
	/* border-bottom:1px solid #555; */
}



/* ボタン 押下時、右にずれていたメニューを元の位置へ表示 */
.drawer_menu .drawer_nav_wrapper.open {
	transform: translate(0);
}


/****************メニュー設定ここまで****************/



.pcmenu2 {
  color: #CCBEC9;
  margin-right: 8px;
  font-weight: 900;
  letter-spacing: 1px;
  display: inline-block;
  position: relative;
  transition: all 0.3s ease;
}

/* マウスオーバー時の文字色とネオンエフェクト */
.pcmenu2:hover {
  color: #FF80F4;
  text-shadow:
    0 0 5px #FF80F4,
    0 0 10px #FF80F4,
}

/* 下線の初期状態 */
.pcmenu2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: #FF80F4;
  box-shadow: 0 0 5px #FF80F4, 0 0 10px #FF80F4;
  transition: width 0.3s ease;
}

/* ホバー時に下線が伸びて光る */
.pcmenu2:hover::after {
  width: 100%;
}


.icon-img {
  width: 24px;
  display: block;
	margin-top:-13px;
}

.img-hover-wrapper {
  position: relative;
  display: inline-block;
  width: 24px;
  height: auto;
}

.img-hover-wrapper img {
  display: block;
  width: 100%;
  height: auto;
  transition: opacity 0.3s ease;
  position: absolute;
  top: 0;
  left: 0;
}

.img-base {
  z-index: 1;
  opacity: 1;
}

.img-hover {
  z-index: 2;
  opacity: 0;
}

.img-hover-wrapper:hover .img-hover {
  opacity: 1;
}

.img-hover-wrapper:hover .img-base {
  opacity: 0;
}


.back-to-top {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.back-img {

  transition: filter 0.3s ease;
margin-right:-10px;
}

.arrow-img {

  transition: transform 0.3s ease;
}

/* ホバー時、矢印だけふわっと上へ */
.back-to-top:hover .arrow-img {
  transform: translateY(-6px);
}



/* 縦スクロールアニメーション */

@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@300;400&display=swap');

.scroll_down {
  position: relative;
  width: 100%;
  height: 100vh;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.scroll_down:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80%;
  background: linear-gradient(180deg,rgba(#000, 0) 0, rgba(#000, .8) 80%, rgba(#000, .8) 100%);
  }

.scroll_down a {
  display: inline-block;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  width: 9px;
  padding: 10px 10px 110px;
  color:#CCBEC9;
  font-size: 11px;
  font-family: 'Josefin Sans', sans-serif;
  line-height: 1;
  letter-spacing: .2em;
  text-transform: uppercase;
  text-decoration: none;
  writing-mode: vertical-lr;
  transition: .2s;
  overflow: hidden;
  margin: auto;
}

.scroll_down a:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 1px;
  height: 100px;
  background: #CCBEC9;
}

.scroll_down a:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 1px;
  height: 100px;
  background: #000;
}

.scroll_down a:hover {
  opacity: .5;
}

#type01 a:after {
  animation: sdl01 1.5s cubic-bezier(1, 0, 0, 1) infinite;
}

@keyframes sdl01 {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  50.1% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}



















.neon {
  font-size:22px;
  font-weight: 400;
  color: #ff8cff;
  padding: 10px;
  border: 2px solid #ffff8f;
  border-radius: 8px;
  text-transform: uppercase;
  animation: flicker 1.1s infinite alternate;     
}



.neon:focus {
  outline: none;
}

.neon3 {
  font-size:16px;
  font-weight: 400;
  color: #ff8cff;
  padding: 10px 50px;
  border: 2px solid #ffff8f;
  border-radius: 80px;
  text-transform: uppercase;
  animation: flicker 1.1s infinite alternate;     
}



.neon3:focus {
  outline: none;
}


/* Animate neon flicker */
@keyframes flicker {
    
    0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
      text-shadow:
	0 0 1px #ff8cff,
	0 0 1px #ff8cff,
	0px 0px 3px #ff8cff,
	0 0 5px #ff1273,
	0 0 15px #ff1273,
	0 0 25px #ff1273,
	0 7px 3px #000;
	
      box-shadow:
	0 0 1px #ffff8f,
	inset 0 0 1px #ffff8f,
	0px 0px 3px #ffff8f,
	inset 0px 0px 3px #ffff8f,
	0 0 15px #f9a90f,
	inset 0 0 15px #f9a90f,
	0 7px 3px #000;
    }
    
    20%, 24%, 55% {        
        text-shadow: none;
        box-shadow: none;
    }    
}

.neon3:hover {
   animation: flicker3 1.1s infinite alternate;  
}
@keyframes flicker3 {
    
    0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
      text-shadow:
	0 0 1px #ff8cff,
	0 0 1px #ff8cff,
	0px 0px 3px #ff8cff,
	0 0 5px #ff1273,
	0 0 30px #ff1273,
	0 0 50px #ff1273,
	0 7px 3px #000;
	
      box-shadow:
	0 0 1px #ffff8f,
	inset 0 0 1px #ffff8f,
	0px 0px 3px #ffff8f,
	inset 0px 0px 3px #ffff8f,
	0 0 30px #f9a90f,
	inset 0 0 40px #f9a90f,
	0 7px 3px #000;
    }
    
    20%, 24%, 55% {        
        text-shadow: none;
        box-shadow: none;
    }    
}




.neon2 {
  padding-top:100px;
  line-height:1.9;
  font-weight: 300;
  font-size:18px;
  color:#8effff;
  
  animation: flicker2 1.1s infinite alternate;     
}



.neon2:focus {
  outline: none;
}

/* Animate neon flicker */
@keyframes flicker2 {
    
    0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
	text-shadow: 0 0 1px #8effff,
	  0 0 1px #8effff,
	  0px 0px 3px #8effff,
	  0 0 5px #13abfa,
	  0 0 15px #13abfa,
	  0 0 25px #13abfa,
	  0 7px 3px #000;
	
    }
    
    20%, 24%, 55% {        
        text-shadow: none;
        box-shadow: none;
    }    
}




.neon4 {
  padding-top:100px;
  line-height:1.9;
  font-weight: 300;
  font-size:18px;
  color:#ff8cff;
  text-transform: uppercase;
  animation: flicker4 1.1s infinite alternate;     
  


}



.neon4:focus {
  outline: none;
}


.neon5 {
  line-height:1.9;
  font-weight: 300;
  font-size:18px;
  color:#ff8cff;
  animation: flicker4 1.1s infinite alternate;     

}

.neon5:focus {
  outline: none;
}



/* Animate neon flicker */
@keyframes flicker4 {
    
    0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
      text-shadow:
	0 0 1px #ff8cff,
	0 0 1px #ff8cff,
	0px 0px 3px #ff8cff,
	0 0 5px #ff1273,
	0 0 15px #ff1273,
	0 0 25px #ff1273,
	0 7px 3px #000;
	
    }
    
    20%, 24%, 55% {        
        text-shadow: none;
        box-shadow: none;
    }    
}









/* Animate neon flicker */
@keyframes flicker2 {
    
    0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
	text-shadow: 0 0 1px #8effff,
	  0 0 1px #8effff,
	  0px 0px 3px #8effff,
	  0 0 5px #13abfa,
	  0 0 15px #13abfa,
	  0 0 25px #13abfa,
	  0 7px 3px #000;
	
    }
    
    20%, 24%, 55% {        
        text-shadow: none;
        box-shadow: none;
    }    
}







.example3{
    list-style: none;
    padding-left: 1.2em;
    margin-left: 0em;
    font-size:14px;
}
.example3 li{
    text-indent: -1.5em;
}
.example3 li:before{
    content: "・";
    margin-right: 0.1em;
}




.example4{
    list-style: none;
    padding-left: 1.2em;
    margin-left: 0em;
    font-size:20px;
}
.example4 li{
    text-indent: -1.5em;
}
.example4 li:before{
    content: "・";
    margin-right: 0.1em;
}


















 /*電話リンク無効化*/
.disable-auto-tel a[href^="tel:"] {
  color: inherit;
  text-decoration: none;
  pointer-events: none;
}







#menubox {
	top:0px;
	left:0px;
	z-index: 999;
	width:100%;
	height:65px;
	min-height: 1px;
	position: fixed;
}

.menubox3 {
	background-color:rgba(0,0,0,0);
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-o-transition: 0.5s;
	-ms-transition: 0.5s;
	transition: 0.5s;
 }

.menubox2 {
	background-color: rgba(69,0,148,0.9);
	/*background-color: #450094;*/
	-webkit-transition: 0.8s;
	-moz-transition: 0.8s;
	-o-transition: 0.8s;
	-ms-transition: 0.8s;
	transition: 0.8s;
}

#menubox4 {
	top:0px;
	left:0px;
	z-index: 999;
	width:100%;
	height:65px;
	min-height: 1px;
	position: fixed;
	height:65px;
}

.menubox5 {
	background-color:rgba(0,0,0,0);
	/* background-color: rgba(0,0,0,0.9);*/
	/* background-color: #450094; */
	-webkit-transition: 0.8s;
	-moz-transition: 0.8s;
	-o-transition: 0.8s;
	-ms-transition: 0.8s;
	transition: 0.8s;
}

#menubox6 {
	top:0px;
	left:0px;
	z-index: 999;
	width:100%;
	height:65px;
	min-height: 1px;
	position: fixed;
	height:80px;
}

.js-image {
	top:22px;
	left:15px;
	position:fixed;
	z-index: 1001;
}
.git-image {
  	z-index: 1000;
	top:10px;
	left:10px;
	position:fixed;
  	opacity: 0;
}


.imgback:hover {
  opacity: 0.6;
  transition-duration: 1s;
}

.asterisk li {
	list-style-type: none;
	text-indent: -1.3em;
}

.asterisk li:before {
  display: inline;
  content: "※";
}




.title{
	padding: 0.1em 0.3em;
	border-left: 10px solid #450094;
}



.news__items.offs.effect {
  opacity: 0;
  transform: translate(0, 100px);
  -webkit-transform: translate(0, 100px);
}
.news__items.ons.effect {
  opacity: 1;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  -webkit-transition: all 1.5s ease;
  transition: all 1s ease；;
}


.btn6 {
  display: inline-block;
  background: #450094;
  padding: 30px 0px 30px 0px;
  width:100%;
  text-decoration: none;
  color: #fff;
  text-align:center;
  position: relative;
}

.btn6::after {
  content: "››";
  position: absolute;
  top: 45%;
  right: 15px;
  transform: translateY(-50%);
  font-size:40px;
}

.btn6:hover {
  background: #fff;
  color: #450094;
}


.btn5 {
  display: inline-block;
  background: #450094;
  padding: 20px 0px 20px 0px;
  width:100%;
  text-decoration: none;
  color: #fff;
  text-align:center;
  position: relative; 
}

.btn5::after {
  content: "››";
  position: absolute;
  top: 45%;
  right: 10px;
  transform: translateY(-50%);
  font-size:25px;
}

.btn5:hover {
  background: #fff;
  color: #450094;
}
