@charset "utf-8";

@media print {
	body {
		display: none;
	}
}

html,
body {
	margin: 0;
	padding: 0;
	scroll-behavior: smooth;
	transition: 0.3s;
}

body {
	font-size: 15px;
	line-height: 1.6;
	font-family: "Midashi Go MB31", sans-serif;
	font-feature-settings: "palt";
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	color: #101010;
	animation: fadein 1s forwards;
}

body::after {
	content: "";
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #fff;
	z-index: 9999;
	pointer-events: none;
	opacity: 0;
	-webkit-transition: opacity 0.8s ease;
	-ms-transition: opacity 0.8s ease;
	-moz-transition: opacity 0.8s ease;
	transition: opacity 0.8s ease;
}

@keyframes fadein {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

a {
	color: #101010;
	text-decoration: underline;
}

a:hover {
	color: #101010;
	text-decoration: none;
}

a:visited {
	color: #101010;
}

::selection {
	background: #101010;
	color: #fff;
}

.underline {
	text-decoration: underline;
}

header {
	position: fixed;
	width: auto;
	padding: 5px;
	mix-blend-mode: difference;
	z-index: 999;
}

#header-logo {
	width: 450px;
	transition: 0.5s;
}

#header-logo.smaller {
	width: 250px;
}

#header-logo a:hover {
	opacity: 0.4;
	transition: 0.2s;
}

.section-title {
	position: relative;
	margin: 0 0 40px 0;
	font-size: 37px;
	font-family: "warbler-deck", serif;
	font-weight: bold;
	text-align: center;
	line-height: 1;
	color: #000;
	z-index: 1;
}

.section-title::after {
	content: "";
	display: inline-block;
	position: absolute;
	top: calc(50% - 10px);
	left: 10%;
	width: 80%;
	height: 15px;
	background: #ffb5b5;
	border: 1px solid #101010;
	z-index: -1;
	transform: rotate(-4deg);
}

.section-title span {
	display: block;
	margin: 7px 0 0 0;
	font-size: 13px;
	font-family: "A+nbGw-イワタ中明朝体オールド OTF Pr6N", sans-serif;
	font-weight: normal;
	font-style: italic;
	letter-spacing: 3px;
	transform: scale(1.5, 1);
	color: #ad0000;
}

.wrapper {
	position: fixed;
	top: 0;
	left: 0;
	display: flex;
	width: 100%;
	height: 100vh;
	margin: 0;
	padding: 0;
}

.main {
	position: relative;
	width: 600px;
	height: 100%;
	flex-shrink: 0;
}

.main-content {
	position: absolute;
	top: 0;
	right: 0;
	width: 600px;
	margin: 0;
	padding: 0;
	overflow: hidden;
	background: #f8f8f8;
}

.menu-wrapper {
	position: fixed;
	top: 10px;
	right: 10px;
	z-index: 9999;
}

.btn {
	width: 100%;
	display: block;
	width: 40px;
	height: 20px;
	position: relative;
	z-index: 999;
	cursor: pointer;
}

.bar {
	width: 40px;
	height: 2px;
	display: block;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	background: #12586e;
}

.bar-top {
	top: 0;
}

.bar-middle {
	top: 50%;
	transform: translate(-50%, -50%);
}

.bar-bottom {
	bottom: 0;
}

.btn.close .bar {
	background: #888;
}

.btn.close .bar-top {
	transform: translate(-50%, 10px) rotate(45deg);
}

.btn.close .bar-middle {
	opacity: 0;
}

.btn.close .bar-bottom {
	transform: translate(-50%, -8px) rotate(-45deg);
}

.nav_mobile {
	position: absolute;
	top: 0;
	right: -100vw;
	display: flex;
	gap: 50px;
	background: #e6e6e6;
	width: 400px;
	height: 100vh;
	padding: 100px 25px 40px 50px;
	z-index: 999;
	overflow: hidden;
}

.nav_mobile.open {
	-webkit-transform: translateX(-100vw);
	transform: translateX(-100vw);
}

.nav_mobile.open .menu-wrapper {
	background: red;
}

.nav--nav_area {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	z-index: 900;
	cursor: pointer;
}

.nav--nav_area.active {
	display: block;
}

.nav_mobile ul {
	display: flex;
	flex-flow: column;
	gap: 25px;
	margin: 0;
	padding: 0 0 0 25px;
	list-style: none;
	width: 230px;
	height: 300px;
	border-right: 1px solid #888;
	flex-shrink: 0;
}

.nav_mobile li {
	position: relative;
	font-size: 1.3rem;
	font-weight: 400;
	line-height: 1;
}

#this_page {
	color: #12586e;
}

#this_page::before {
	content: "";
	position: absolute;
	top: 0;
	left: -30px;
	width: 17px;
	height: 17px;
	background: #12586e;
	border-radius: 50%;
}

.nav_mobile a {
	display: block;
	text-decoration: none;
}

.nav_mobile a:hover {
	color: #888;
}

.nav--sub_menu {
	border: 0;
	gap: 15px;
	height: auto;
}

.nav--sub_menu li {
	font-size: 1.1rem;
	font-weight: 300;
}

.nav_mobile > div {
	display: flex;
	flex-flow: column;
	justify-content: space-between;
	height: 300px;
}

.nav_mobile > div img {
	width: 100px;
}

.scroll_down {
	position: absolute;
	bottom: 0;
	right: 50%;
	animation: arrowmove 1s ease-in-out infinite alternate-reverse;
}

.scroll_down a {
	position: absolute;
	left: -25px;
	bottom: 25px;
	color: #fff;
	font-size: 12px;
	writing-mode: vertical-rl;
	text-decoration: none;
	letter-spacing: 5px;
}

.scroll_down:before {
	content: "";
	position: absolute;
	bottom: 20px;
	right: -6px;
	width: 2px;
	height: 20px;
	background: #fff;
	transform: skewX(-31deg);
}

.scroll_down:after {
	content: "";
	position: absolute;
	bottom: 20px;
	right: 0;
	width: 2px;
	height: 85px;
	background: #fff;
}

@keyframes arrowmove {
	0% {
		bottom: 1%;
	}
	50% {
		bottom: 2%;
	}
	00% {
		bottom: 1%;
	}
}

.front-top {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100vh;
}

.front-top_img {
	width: 93%;
	height: 97%;
}

.front-top_img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border: 2px solid #ad0000;
	border-top-left-radius: 50px;
	border-top-right-radius: 10px;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 50px;
}

.front-top_copy {
	position: absolute;
	padding: 4px 2px 0 2px;
	writing-mode: vertical-rl;
	background: #fff;
	border: 1px solid #101010;
	font-size: 25px;
	letter-spacing: 2px;
	line-height: 1;
}

.front-top_copy-1 {
	position: absolute;
	top: 100px;
	right: 10px;
}

.front-top_copy-2 {
	position: absolute;
	bottom: 100px;
	left: 10px;
}

.front-top_story {
	display: flex;
	align-items: center;
	flex-direction: column;
	padding: 120px 0 10px 0;
}

.front-top_story-copy {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 5px;
	padding: 0 0 30px 0;
	writing-mode: vertical-rl;
	font-feature-settings: normal;
	letter-spacing: 2px;
}

.front-top_story-copy span {
	display: block;
	font-size: 22px;
	font-style: italic;
	line-height: 1.55;
	transform: scale(0.8, 1);
}

.story_fujisawa {
	font-family: "A+nbGw-イワタ中明朝体オールド OTF Pr6N", serif;
}

.front-top_gallery {
	position: relative;
	display: flex;
	flex-flow: column;
	align-items: center;
	margin: 20px 0 60px 0;
}

.front-top_gallery figure:first-child {
	top: 0;
	left: 0;
	width: 84%;
	transform: rotate(-4deg);
	animation-timing-function: steps(2, end);
}

.front-top_gallery figure:last-child {
	width: 86%;
	transform: rotate(2deg);
	animation: yurayura1 1s linear infinite;
	animation-timing-function: steps(2, end);
}

.front-top_gallery figure > img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 10px;
}

@keyframes yurayura1 {
	0% {
		transform: rotate(-2deg);
	}
	100% {
		transform: rotate(2deg);
	}
}
.front-top_story-body {
	position: relative;
	width: 100%;
	height: 100%;
	padding: 80px 3% 120px 3%;
	background: url(../assets/images/003.jpg) no-repeat;
	background-size: cover;
	background-position: 50%;
	background-blend-mode: overlay;
	z-index: 0;
}

.front-top_story-body_bg {
	position: absolute;
	top: -5px;
	left: 0;
	width: 100%;
	height: calc(100% + 10px);
	background: linear-gradient(0deg, #f8f8f8, #ffffff95 50%, #f8f8f8);
	-webkit-backdrop-filter: blur(2px);
	backdrop-filter: blur(2px);
	z-index: -1;
}

.story-body {
	display: flex;
	flex-flow: column;
	gap: 10px;
	z-index: 2;
}

.story-body p {
	margin: 0;
	text-align: center;
	letter-spacing: 2px;
	font-size: 18px;
}

.news--list {
	display: flex;
	flex-flow: column;
	margin: 0;
	padding: 0;
	list-style-type: none;
}

.news {
	padding: 30px 0 20px 0;
}

.news--list a {
	display: flex;
	gap: 20px;
	width: 100%;
	padding: 15px 0;
	text-decoration: none;
}

.news--list a:hover {
	background: #f8f8f8;
}

.content-menu {
	width: 100%;
	margin: 0;
	padding: 0 5%;
	list-style: none;
}

.content-menu li {
	padding: 0;
	border-bottom: 1px solid #101010;
}

.content-menu li:last-child {
	border-bottom: none;
}

.content-menu_label {
	position: relative;
	display: block;
	padding: 8px 0;
	cursor: pointer;
}

.news--summary {
	display: flex;
	align-items: center;
	gap: 20px;
	padding: 10px 0;
}

.date {
	width: 90px;
	font-size: 13px;
}

.title {
	padding-right: 70px;
}

.content-menu_content {
	margin-left: 30px;
	padding: 20px 0 10px 30px;
	display: none;
	border-left: 1px solid #101010;
}

.content-menu_content h3 {
	position: relative;
	margin: 0 0 5px 0;
	padding: 0;
	line-height: 1;
}

.content-menu_content p {
	margin: 20px 0;
	font-family: "A+nbGw-イワタ中明朝体オールド OTF Pr6N", serif;
}

.content-menu_content p + h3 {
	margin-top: 50px;
}

.ac-icon-wrap {
	position: absolute;
	right: -10px;
	top: 48px;
	transform: translateY(-50%);
	width: 40px;
	height: 40px;
}

.ac-icon {
	position: relative;
	display: inline-block;
	width: 100%;
	height: 100%;
}

.ac-icon:before,
.ac-icon:after {
	position: absolute;
	content: "";
	display: block;
	transition: all 0.4s;
	background: #101010;
	left: 0;
	top: 5px;
	width: 50%;
	height: 1px;
	transform: translate(-50%, -50%);
}

.ac-icon:before {
	transform: translate(-50%, -50%) rotate(90deg);
}

.ac-icon.open:before {
	transform: translate(-50%, -50%) rotate(0deg);
}

.link-box__pdf {
	margin: 0 0 90px 0;
}

.cast {
	padding: 0 5%;
}

.cast-item {
	width: 100%;
	padding: 0 8%;
}

.cast-item:last-child {
	margin-top: 70px;
}

.cast figure {
	display: flex;
	justify-content: center;
}

.cast_img {
	animation: floating-y_1 2s ease-in-out infinite alternate-reverse;
}

.cast_img-hayashi {
	animation: floating-y_2 1.8s ease-in-out infinite alternate-reverse;
}

.cast-item_kiuchi {
	transform: rotate(3deg);
}

.cast-item_hayashi {
	transform: rotate(-1deg);
}

.cast_img img {
	transform: rotate(2deg);
}

.cast_img-hayashi img {
	transform: rotate(-3deg);
}

@keyframes floating-y_1 {
	0% {
		transform: translateY(-2%);
	}
	100% {
		transform: translateY(2%);
	}
}

@keyframes floating-y_2 {
	0% {
		transform: translateY(-3%);
	}
	100% {
		transform: translateY(3%);
	}
}

.cast .section-title {
	margin-top: 50px;
}

.cast_img {
	width: 230px;
	height: 300px;
	border: 1px solid #ad0000;
}

.cast_img-hayashi::after {
	top: 2px;
	left: -15px;
}

.cast_img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.cast-name {
	margin: 23px 0 12px 0;
	font-size: 22px;
	text-align: center;
	line-height: 1;
	letter-spacing: 4px;
	color: #ad0000;
}

.cast-name span {
	display: block;
}

.cast-name span:nth-child(2) {
	color: #101010;
}

.cast-name span:last-child {
	margin-top: 10px;
	font-size: 14px;
	letter-spacing: 1px;
}

.cast-item p {
	line-height: 1.7;
	font-size: 16px;
	font-family: "A+nbGw-イワタ中明朝体オールド OTF Pr6N", serif;
	text-align: justify;
	text-justify: inter-ideograph;
}

.cast-item a {
	position: relative;
	margin-top: 5px;
	display: inline-flex;
	align-items: center;
	text-decoration: none;
	color: #101010;
}

.cast-item a::after {
	content: "";
	display: inline-block;
	position: absolute;
	bottom: 1px;
	width: 100%;
	height: 1px;
	background: #101010;
}

.cast-item a:hover::after {
	background: hsla(0, 0%, 0%, 0);
}

.cast-item a > i {
	display: inline;
	font-size: 24px;
	line-height: 0;
}

.about {
	padding: 80px 5%;
	background: linear-gradient(0deg, #f8f8f8, #ffcdcd 50%, #f8f8f8);
}

.about_gabaco p {
	margin: 6px 0;
	text-align: justify;
	text-justify: inter-ideograph;
	font-size: 17px;
}

.about_gabaco,
.about_togakusai {
	display: flex;
	flex-flow: column;
	margin-top: 20px;
}

.about_togakusai h2 {
	margin: 10px 0;
	padding: 5px 0;
	font-size: 18px;
	font-weight: normal;
	text-align: center;
	letter-spacing: 3px;
	border-top: 1px solid #101010;
	border-bottom: 1px solid #101010;
}

.about_togakusai p {
	margin: 8px 0;
	font-family: "A+nbGw-イワタ中明朝体オールド OTF Pr6N", serif;
	text-align: justify;
	text-justify: inter-ideograph;
	line-height: 1.6;
}

.about_gabaco p:first-child,
.about_togakusai p:first-child {
	margin-top: 0;
}

.about_gabaco figure:first-child {
	margin: 10px 0;
}

.stage-photo {
	margin: 20px 0 30px 0;
	transform: rotate(-4deg);
}

.stage-photo img {
	border: 1px solid #101010;
	border-radius: 5px;
}

.stage-photo figcaption {
	margin-top: 5px;
	font-size: 13px;
	letter-spacing: 0.5px;
}

.engekisai_info {
	margin-top: 10px;
}

.engekisai_info p {
	margin: 0;
	font-size: 12px;
	font-family: "Midashi Go MB31", "ShueiGoGinStd-B", sans-serif;
	line-height: 1.4;
	text-align: center;
	letter-spacing: 1px;
}

.engekisai_info p:first-child {
	margin-bottom: 5px;
	font-size: 15px;
}

a.link-box {
	display: block;
	width: 100%;
	margin: 5px 0;
	padding: 12px 0;
	text-align: center;
	border: 2px solid #101010;
	background: #fff;
	color: #101010;
	text-decoration: none;
	font-size: 18px;
	transition: 0.3s;
}

a.link-box:hover {
	background: #101010;
	color: #fff;
}

a.link-box > i {
	font-size: 22px;
}

a.link-box-ticket {
	margin-top: 50px;
	padding: 12px 0;
	font-size: 22px;
	color: #ad0000;
	border: 2px solid #ad0000;
	letter-spacing: 2px;
}

a.link-box-ticket:hover {
	background: #ad0000;
	color: #fff;
}

a.link-box-ticket > i {
	font-size: 25px;
}

.schedule {
	padding: 80px 5%;
}

.place h2,
.contact h2,
.schedule h2 {
	position: relative;
	margin: 60px 0 20px 0;
	padding: 5px 0 10px 30px;
	font-weight: normal;
	font-size: 20px;
	border-bottom: 1px dashed #101010;
	letter-spacing: 1px;
}

.place h2:first-child,
.contact h2:first-child,
.schedule h2:first-child {
	margin-top: 0;
}

.place h2::before,
.contact h2::before,
.schedule h2::before {
	content: "";
	position: absolute;
	top: calc(50% - 7px);
	left: 0;
	display: inline-block;
	width: 14px;
	height: 14px;
	background: #fff;
	border: 2px solid #101010;
	border-radius: 50%;
}

.place h2:hover::before,
.contact h2:hover::before,
.schedule h2:hover::before {
	background: #101010;
}

.place h2 {
	line-height: 1.3;
}

#whole-schedule {
	display: flex;
	flex-flow: column;
	margin: 40px 0;
	padding: 18px 25px;
	border: 2px solid #101010;
	border-radius: 10px;
	box-shadow: 1px 2px 0 #101010;
	text-align: center;
}

#whole-schedule span:nth-child(1) {
	display: inline-block;
	margin-bottom: 12px;
	padding-bottom: 5px;
	font-size: 15px;
	letter-spacing: 2px;
	border-bottom: 1px solid #101010;
}

#whole-schedule span:nth-child(2) {
	font-size: 30px;
	letter-spacing: 1px;
}

.whole-schedule_min {
	display: inline-block;
	font-size: 17px;
}

#schedule-note {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 0 10px 0;
	font-size: 18px;
	text-align: center;
	letter-spacing: 1px;
}

#schedule-note span {
	font-size: 30px;
	color: #ad0000;
}

.time-schedule-item-title {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 10px 0;
	border-bottom: 1px solid #101010;
	gap: 8px;
}

.time-schedule-item-title div {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 5px 0;
	border: 1px solid #101010;
	border-radius: 5px;
	box-shadow: 0 2px 0 #101010;
}

.time-schedule-item-title div:first-child {
	border: none;
	box-shadow: none;
}

.time-schedule-item {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 8px;
	padding: 5px 0;
	border-bottom: 1px solid #101010;
}

.time-schedule-item-title div,
.time-schedule-item div {
	flex: 1;
	text-align: center;
}

.time-schedule-item div {
	font-size: 50px;
	font-family: "warbler-deck", serif;
	font-weight: bold;
	color: #ccc;
	text-align: center;
}

.time-schedule-item div:first-child {
	flex: 1;
	width: 30px;
	padding: 3px 0;
	font-size: 16px;
	font-family: "Midashi Go MB31", "ShueiGoGinStd-B", sans-serif;
	font-weight: normal;
	color: #101010;
	border: 1px solid #101010;
	border-radius: 5px;
	box-shadow: 0 2px 0 #101010;
	flex-shrink: 0;
}

.schedule-in {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 60px;
	height: 60px;
	border: 1px solid #101010;
	border-radius: 50%;
}

/*
.time-schedule-item:nth-child(odd) {
	background: #ededed;
}*/

.time-schedule-item:last-child {
	border-bottom: 1px solid #101010;
}

.schedule-me {
	color: #ad0000;
}

.ticket {
	display: flex;
	flex-flow: column;
	margin: 10px 0 20px 0;
}

.ticket-item {
	display: flex;
	align-items: center;
	padding: 15px 0;
	border-bottom: 1px solid #101010;
	text-align: center;
}

.ticket-item-title {
	display: flex;
	align-items: center;
	padding: 15px 0;
	border-bottom: 1px solid #101010;
	letter-spacing: 5px;
	background: #efefef;
	text-align: center;
}

.ticket-item-title div:first-child,
.ticket-title {
	width: 150px;
	flex-shrink: 0;
	letter-spacing: 3px;
}

.ticket-item-title div {
	width: 100%;
}

.ticket-pre,
.ticket-post {
	width: 100%;
	font-size: 25px;
}

.ticket-item:hover {
	background: #fff569;
}

.ticket-title {
	text-align: left;
	color: #ad0000;
}

.waribiki {
	display: flex;
	flex-flow: column;
	margin: 20px 0 50px 0;
}

.waribiki-item {
	display: flex;
	padding: 15px 0;
	border-bottom: 1px solid #101010;
}

.waribiki-item span:first-child {
	width: 150px;
	flex-shrink: 0;
}

.waribiki-item span:first-child::before {
	content: "◼︎";
	display: inline-block;
	margin-right: 5px;
	color: #ccc;
}

.note {
	display: flex;
	flex-flow: column;
	gap: 7px;
	margin: 15px 0;
	padding: 0;
	list-style: none;
	letter-spacing: 0.5px;
}

.note li {
	position: relative;
	padding-left: 2em;
}

.note li::before {
	content: "─";
	position: absolute;
	top: 0;
	left: 0;
	display: inline-block;
	padding-left: -2em;
}

.place {
	padding: 50px 5%;
	background: #fff569;
}

.place .section-title::after {
	background: #fff;
}

.oji-logo {
	display: flex;
	justify-content: center;
}

.oji-logo img {
	width: 270px;
}

.place h2 {
	margin: 20px 0;
}

.access {
	display: flex;
	flex-flow: column;
	gap: 10px;
	padding: 0;
	list-style: none;
}

.access li {
	font-size: 16px;
	line-height: 1.65;
}

.place iframe {
	aspect-ratio: 1 / 1;
	width: 100%;
	height: auto;
	margin: 30px 0;
}

.place-info {
	display: flex;
	flex-flow: column;
	gap: 5px;
}

.staff {
	padding: 50px 0 80px 0;
}

.staff-container {
	display: flex;
	justify-content: center;
	gap: 50px;
	width: 100%;
	margin: 0 auto;
}

.staff-container div {
	display: flex;
	flex-flow: column;
	justify-content: baseline;
	gap: 20px;
	font-size: 18px;
	line-height: 1;
}

.staff-post,
.staff-name {
	flex-shrink: 0;
}

.staff-post span {
	letter-spacing: 5px;
	font-family: "A+nbGw-イワタ中明朝体オールド OTF Pr6N", serif;
	transform: scale(0.8, 0.7);
	color: #ad0000;
}

.staff-name span {
	letter-spacing: 4px;
}

.sponsored {
	display: flex;
	flex-flow: column;
	gap: 25px;
	width: 80%;
	margin: 0 auto;
	margin-top: 50px;
	padding-top: 30px;
	border-top: 1px solid #101010;
}

.sponsored-item {
	display: flex;
	flex-flow: column;
	align-items: center;
	gap: 5px;
}

.sponsored-item span:first-child {
	font-family: "A+nbGw-イワタ中明朝体オールド OTF Pr6N", serif;
	color: #ad0000;
}

.sponsored-item span:last-child {
	font-size: 18px;
	letter-spacing: 4px;
}

.contact {
	padding: 80px 5%;
	background: linear-gradient(0deg, #ffcdcd, #f8f8f8 95%);
}

footer {
	display: flex;
	flex-flow: column;
	align-items: center;
	padding: 30px 5%;
	border-top: 2px solid #101010;
}

.footer-logo {
	width: auto;
}

.footer-logo img {
	width: 260px;
}

.footer-alert {
	display: flex;
	flex-flow: column;
	gap: 5px;
	margin-top: 10px;
	font-size: 13px;
	line-height: 1.3;
	letter-spacing: 0.5px;
	text-align: center;
}

.contact p {
	font-family: "A+nbGw-イワタ中明朝体オールド OTF Pr6N", sans-serif;
}

.contact-table {
	display: flex;
	flex-flow: column;
	line-height: 1;
	margin: 20px 0;
}

.contact-table a {
	display: block;
	width: 100%;
	height: 100%;
	padding: 25px 0;
}

.contact-table-item {
	display: flex;
	align-items: center;
	border-bottom: 1px solid #101010;
}

.contact-table-title {
	display: flex;
	gap: 4px;
	align-items: center;
	width: 50px;
	flex-shrink: 0;
}

.contact-table-title img {
	width: 18px;
	height: 18px;
	margin-left: 2px;
}
.contact-table-title i {
	font-size: 25px;
}

.contact-table-body {
	width: 100%;
	font-size: 20px;
}

/* -------------------- */

.menu-screen {
	position: fixed;
	width: 100%;
	height: 100vh;
	backdrop-filter: blur(6px);
	background: rgba(255, 255, 255, 0.4);
	color: #000;
	align-items: center;
	justify-content: center;
	flex-flow: column;
	left: 0;
	top: 0;
	overflow: hidden;
	visibility: hidden;
	opacity: 0;
	z-index: 9999;
	transition: 0.3s;
}

.menu-screen_outer {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100vw;
	height: 100vh;
}

.menu-screen_inner {
	display: flex;
	align-items: flex-start;
	gap: 70px;
	margin: 0 auto;
}

.menu-screen_inner a {
	padding: 0;
	border: 0;
	color: #101010;
}

.menu-screen_inner a:hover {
	padding: 0;
	border: 0;
	color: #888;
}

.menu-screen_inner ul {
	display: flex;
	flex-flow: column;
	padding: 0;
	list-style: none;
}

.menu-screen_inner li {
	line-height: 1;
}

.menu-nav-left {
	gap: 30px;
	margin-right: 120px;
}

.menu-nav-left li {
	font-size: 2.7rem;
	font-weight: 900;
}

.menu-nav-right {
	gap: 25px;
	padding-right: 30px;
}

.menu-nav-right li {
	font-size: 2rem;
	font-weight: 600;
}

.menu-nav-right a {
	display: flex;
	align-items: center;
	gap: 5px;
}

.menu-nav-right i {
	font-size: 2.9rem;
	font-weight: normal;
}

.sub {
	position: relative;
	width: 100%;
	height: 100%;
	border-right: 3px solid #101010;
	background: url(../assets/images/004.jpg) no-repeat;
	background-size: cover;
	z-index: 0;
}

#sub_bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #64646481;
	-webkit-backdrop-filter: blur(5px);
	backdrop-filter: blur(5px);
	z-index: -1;
}

#sub_logo {
	position: absolute;
	top: -10px;
	left: 0;
}

#sub_logo img {
	height: 100vh;
}

.nav-screen {
	position: absolute;
	bottom: 40px;
	right: 30px;
	display: flex;
	flex-flow: column;
	gap: 15px;
	padding: 0;
	list-style: none;
	font-family: "warbler-deck", serif;
	font-weight: bold;
	font-size: 40px;
	line-height: 1;
	text-align: right;
}

.nav-screen a {
	text-decoration: none;
	transition: 0.2s;
	color: #fff;
}

.nav-screen a:hover {
	color: #101010;
	transition: 0.3s;
}

#ticket-circle {
	position: absolute;
	top: 30px;
	right: 20px;
	width: 140px;
	height: 140px;
}

#ticket-circle a {
	position: relative;
	transition: 0.2s;
	text-decoration: none;
	display: block;
	width: 100%;
	height: 100%;
}

#ticket-circle-svg {
	width: 100%;
	height: 100%;
}

#ticket-circle-svg img {
	width: 100%;
	height: 100%;
	animation: rotateCircle 15s linear infinite;
}

.circle-svg {
	transform-origin: center;
	animation: rotateCircle 15s linear infinite;
}

#ticket-circle a:hover .circle-svg {
	transition: 0.2s;
	fill: #fff569;
}

@keyframes rotateCircle {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}

#ticket-circle-text {
	position: absolute;
	top: 0;
	left: 0;
	width: 140px;
	height: 140px;
	display: flex;
	flex-flow: column;
	justify-content: center;
	align-items: center;
	z-index: 5;
}

#ticket-circle-text span {
	font-size: 20px;
	line-height: 1.3;
	text-align: center;
}
