@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Playwrite+NO:wght@100..400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic&display=swap');

/*
	TRiP Bar JIN用CSS
		Write: 2026/03/21
*/

html,body{
	color: #333;
	background: #000;
	font-family: "Playwrite NO", cursive;
	font-size: 12px;
	margin:0;
	padding: 0;
}
a{
	color: #333;
	cursor: pointer;
	text-decoration: none;
}
a:hover{
	color: #F00;
}

header{
	height: 60px;
	padding: 30px 15px;
	background: #000;
}

h1{
	margin: 20px 0;
	padding: 2px;
	color: #FFF;
	background: #000;
	font-size: 20px;
	font-weight: 900;
	letter-spacing: .2em;
	text-align: center;
	text-shadow:
	0 0 10px #39ff14,
	0 0 20px #39ff14,
	0 0 40px #39ff14;
	animation: neonFlicker 1.5s infinite alternate;
	border-radius: 2rem;
	padding: 0.4em;
	box-shadow: 0 0 .2rem #fff,
		0 0 .2rem #fff,
		0 0 2rem #bc13fe,
		0 0 0.8rem #bc13fe,
		0 0 2.8rem #bc13fe,
		inset 0 0 1.3rem #bc13fe;
	width: 130px;
}

main{
	padding: 0 50px;
}

main:before{
	content: "Menu";
	color: #999;
	background: linear-gradient(transparent 60%, #600 60%);
}

ol{
	line-height: 3.0;
	display: flex;
	list-style: none;
	padding: 0;
	margin-bottom: 0;
}

li{
	cursor: pointer;
	flex: auto;
	border: 1px outset #666;
	border-radius: 5px;
}

li a{
	width: 95%;
	display: block;
	font-weight: bold;
	padding: 3px;
}

li:hover{
	background: #333;
	text-align: right;
	font-style: italic;
	border: 1px inset #666;
}

li a:hover{
	color: #666;
	padding: 3px;
}

form, input{
	margin: 0;
	padding: 0;
}

textarea, input[type=text]{
	/* https://web-camp.io/magazine/archives/100045/ */
	color: #666;
	background: #000;
	font-family: "Zen Maru Gothic", sans-serif;
	font-weight: bold;
	letter-spacing: .2em;
	padding: 5px;
	margin-top: 2px;
	width: 99%;
	border: 0;
	border-bottom: 1px dashed #CCC;
}
textarea:focus, input[type=text]:focus{
  outline: none;
  border-bottom: 1px dashed #CCC;
}

footer{
	background: #000;
	text-align: right;
	font-size: 9px;
	padding: 5px;
}

code{
	color: #666;
	font-size: .8em;
	font-weight: bold;
	margin: 0;
	padding: 2px;
	border-radius: 3px;
}

#juzi{
	display: none;
}

/*=====*/
/* https://nextage-tech.com/blog/2025/12/08/post-4349/#outline__3_1 */
@keyframes neonFlicker {
	0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
		text-shadow:
			0 0 10px #39ff14,
			0 0 20px #39ff14,
			0 0 40px #39ff14;
	}
	20%, 24%, 55% {
		text-shadow: none;
	}
}

/* https://codepen.io/silvia-odwyer/pen/RwKMOpb */
@keyframes pulsate {
    
  100% {

      text-shadow:
      0 0 4px #fff,
      0 0 11px #fff,
      0 0 19px #fff,
      0 0 40px #bc13fe,
      0 0 80px #bc13fe,
      0 0 90px #bc13fe,
      0 0 100px #bc13fe,
      0 0 150px #bc13fe;
  
  }
  
  0% {

    text-shadow:
    0 0 2px #fff,
    0 0 4px #fff,
    0 0 6px #fff,
    0 0 10px #bc13fe,
    0 0 45px #bc13fe,
    0 0 55px #bc13fe,
    0 0 70px #bc13fe,
    0 0 80px #bc13fe;

}