<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";


@media (max-width: 767px){ .for-pc{ display: none !important; } }
@media (min-width: 768px){ .for-sp{ display: none !important; } }

.entry-modal-trigger:not(:checked) ~ .entry-modal{
	visibility: hidden;
	opacity: 0;
}
.entry-modal-trigger{
	display: none;
}
.entry-modal{
	position: fixed;
	inset: 0;
	display: grid;
	place-items: center;
	transition: 300ms ease;
}
.entry-modal__bg{
	background: color-mix(in srgb, transparent, black 50%);
	position: absolute;
	z-index: -1;
	inset: 0;
}
.entry-modal__body{
	background: white;
	position: relative;
	z-index: 0;
}
.entry-modal__close{
	position: absolute;
	inset: 0 0 auto auto;
	translate: 50% -50%;
	
	display: grid;
	place-items: center;
	
	cursor: pointer;
	user-select: none;
	
	line-height: 1;
	font-size: 1.75em;
	font-weight: bold;
	text-align: center;
	
	background: white;
	width: 1.25em;
	height: 1.25em;
	border-radius: 100vw;
}

.entry-pop{
	max-width: min(1200px, 100vw - 26px * 2);
	max-height: 80vh;
	overflow: auto;
}
.entry-pop__header{
	text-align: center;
	color: white;
	background: #F6AA00;
	padding: 1em;
}
.entry-pop__title{
	font-size: 1.333em;
	font-weight: bold;
	text-align: center;
}
.entry-pop__body{
	padding: 2em 2em 0 2em;
	/* padding-top: 2em; */
}
@media (max-width: 768px){
	.entry-pop__body{
		padding-bottom: 1em;
	}
}
.entry-pop__body &gt; * + *{
	margin-top: 2rem;
}
.entry-pop__note{
	text-align: center;
}

.entry-pop__option{
	text-align: center;
	
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1em;
	
	border-top: 1px solid;
	margin-block: 1em 0;
	padding-block: 1.75em;
}
@media (max-width: 767px){
	.entry-pop__option{
		flex-direction: column;
	}
}

.entry-pop__option :where(img){
	max-width: 160px;
}

.entry-pop__footer{
	text-align: center;
	background: #F1F1F1;
	border-top: 1px solid;
	padding: 1em;
}
.entry-pop__list{
	display: flex;
}
@media (max-width: 767px) {
	.entry-pop__list{
		flex-direction: column;
	}
}
.entry-pop__list &gt; *{
	font-size: 1.166em;
	font-weight: bold;
	text-align: center;
	padding: 0 2em 2em;
	flex: 1 1 0;
}
.entry-pop__list &gt; * + *{
	border-left: 2px dotted;
}
@media (max-width: 767px) {
	.entry-pop__list &gt; *{
		padding: 0 0 1em;
	}
	.entry-pop__list &gt; * + *{
		border-left: 0;
	}
}
.entry-pop__qr{
	display: block;
}
@media (max-width: 767px){
	.entry-pop__qr{
		line-height: 1.333;
		color: white;
		background: black;
		border-radius: .5em;
		padding: 1em;
		
		display: grid;
		grid-template-columns: 1fr auto;
		align-items: center;
	}
	.entry-pop__qr:hover{
		color: white;
	}
	.entry-pop__qr::after{
		content: "";
		width: .75em;
		height: .75em;
		border-style: solid;
		border-width: 2px 2px 0 0;
		rotate: 45deg;
	}
	.entry-pop__qr--fresh{
		background: #1e3284;
	}
}
.entry-pop__qr-image{
	display: block;
	margin-inline: auto;
	
	max-width: 100%;
	height: auto;
}
@media (max-width: 767px) {
	.entry-pop__qr-image{
		display: none;
	}
}
.entry-pop__event{
	font-weight: bold;
}
.entry-pop__event:not(:hover){
	text-decoration: underline;
}


/* modify @ 2024 */
.header_entry_btn:where(label){
	cursor: pointer;
}
/* modify @ 2024 */
</pre></body></html>