@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=Hachi+Maru+Pop&display=swap');

/*
	TRiP Bar JIN用 Event CSS
		Write: 2026/07/04
		Adjustment: 2026/07/25
*/

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

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

h1{
	//color: #F99;
	background: #000;
	font-size: 20px;
	font-weight: 900;
	letter-spacing: .2em;
	text-align: center;
	text-shadow:
	0 0 10px #6F7BA6,
	0 0 20px #6F7BA6,
	0 0 40px #6F7BA6;
	font-family: "Hachi Maru Pop", cursive;	/*お盆用フォント*/
	border-radius: 4rem;
	margin: 10px 0;
	padding: 0.3em;
	box-shadow: 0 0 .2rem #fff,
		0 0 .1rem #fff,
		0 0 2rem #7272A3,
		0 0 0.6rem #7979C7,
		0 0 1.6rem #396DF7,
		inset 0 0 1.0rem #718DF0;
	animation: neonFlicker 3.0s infinite alternate;
	width: 200px;	//130px;
	
	&:after{
		content: "-Bar JIN-";
		font-size: 8px;
		font-family: "Playwrite NO", cursive;	/*お盆用に設定*/
		display: block;
		border-top: 1px ridge #300;
		margin: 5px 0;
		padding: 3px 0;
	}
}

main{
	padding: 25px 35px;
	
	&:before{
		content: "Menu";
		color: #999;
		background: linear-gradient(transparent 60%, #0F104D 60%);
		font-size: 15px;
		padding: 0 8px;
		border-radius: 5px;
	}
}

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: "Hachi Maru Pop", cursive;
	font-weight: bold;
	letter-spacing: .2em;
	padding: 5px;
	margin-top: 2px;
	width: 99%;
	border: 0;
	border-bottom: 1px dashed #666;
}
textarea:focus, input[type=text]:focus{
  outline: none;
  border-bottom: 1px dashed #666;
}

footer{
	position: fixed;
	bottom: 0;
	right: 0;
	
	background: #000;
	text-align: right;
	font-size: 9px;
	padding: 5px;
	z-index: -1;
}

address{
	color: #999;
	letter-spacing: 1px;
}
address a{
	color: #336;
}

code{
	color: #666;
	font-size: 1.3em;
	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%, 27%, 52%, 54%, 100% {
		color: #00ffff;
		text-shadow: none;
		box-shadow: 0 0 .2rem #fff,
			0 0 .1rem #e6e6fa,
			0 0 2rem #ffa500,
			0 0 0.6rem #7979C7,
			0 0 1.6rem #4682b4,
			inset 0 0 1.0rem #ffa500;
	}
	20%, 24%, 36%, 55% {
		color: #00ffff;
		text-shadow:
			0 0 10px #ffa500,
			0 0 20px #e0ffff,
			0 0 40px #ffa500;
		box-shadow: 0 0 .2rem #fff,
			0 0 .1rem #fff,
			0 0 2rem #7272A3,
			0 0 0.6rem #7979C7,
			0 0 1.6rem #4682b4,
			inset 0 0 1.0rem #718DF0;
	}
}

/* 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;

}