@charset "utf-8";
/*///////////////////////////////////

reset

///////////////////////////////////*/


/* 
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com 
Twitter: @rich_clark
*/

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}

ul {
	list-style: none;
}

blockquote, q {
	quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}

a {
	margin: 0;
	padding: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
}

del {
	text-decoration: line-through;
}

abbr[title], dfn[title] {
	border-bottom: 1px dotted;
	cursor: help;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

hr {
	display: block;
	height: 1px;
	border: 0;
	border-top: 1px solid #cccccc;
	margin: 1em 0;
	padding: 0;
}

input, select {
	vertical-align: middle;
}

/*///////////////////////////////////

common

///////////////////////////////////*/
body {
	background-image: linear-gradient(90deg,
			hsl(224deg 37% 20%) 0%,
			hsl(224deg 36% 23%) 8%,
			hsl(223deg 35% 25%) 17%,
			hsl(223deg 34% 27%) 25%,
			hsl(223deg 34% 30%) 33%,
			hsl(221deg 33% 33%) 42%,
			hsl(221deg 32% 35%) 50%,
			hsl(221deg 33% 33%) 58%,
			hsl(223deg 34% 30%) 67%,
			hsl(223deg 34% 27%) 75%,
			hsl(223deg 35% 25%) 83%,
			hsl(224deg 36% 23%) 92%,
			hsl(224deg 37% 20%) 100%);
}

.wrap {
	font-family: "Shippori Mincho B1", serif;
	background-image: url(../img/bg_01.png), linear-gradient(180deg,
			hsla(224, 37%, 20%, 0.2) 0%,
			hsla(222, 57%, 32%, 0.2) 17%,
			hsla(221, 64%, 40%, 0.2) 33%,
			hsla(262, 48%, 46%, 0.2) 50%,
			hsla(283, 32%, 32%, 0.2) 67%,
			hsla(199, 33%, 46%, 0.2) 83%,
			hsla(218, 71%, 28%, 0.2) 100%);

	background-size: auto, 100%;
	background-attachment: fixed, scroll;
	line-height: 200%;
}

.wrap img {
	width: 100%;
	height: auto;
}

.wrap .bold {
	font-weight: bold;
}

.wrap .inner {
	background-image: url(../img/bg_inner.png);
	background-color: #202A45;
	max-width: 1200px;
	margin: 0px auto;
}

@media screen and (max-width: 1200px) {
	.wrap .inner {
		margin: 0px 20px;
	}
}

.wrap .fadeUp {
	animation-name: fadeUpAnime;
	animation-duration: 1s;
	animation-fill-mode: forwards;
	opacity: 0;
}

@keyframes fadeUpAnime {
	from {
		filter: blur(20px);
		transform: scale(1.02);
		opacity: 0;
	}

	to {
		filter: blur(0);
		transform: scale(1);
		opacity: 1;
	}
}





/*///////////////////////////////////

header 

///////////////////////////////////*/

.wrap header {
	text-align: center;
	margin: 0px auto;
}

.wrap header .opacityImg {
	opacity: 0;
	animation-name: fade;
	animation-duration: 4s;
	animation-fill-mode: forwards;
}

@keyframes fade {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}


/*///////////////////////////////////

main 

///////////////////////////////////*/

.wrap .main {
	padding: 20px;
	border-top: 30px solid #d0b67a;
}

@media screen and (max-width: 800px) {
	.wrap .main {
		padding: 10px;
	}
}

/* ticketArea */

.wrap .main .ticketArea {
	background-color: rgba(255, 255, 255, 0.2);
	padding: 50px 20px;
	color: #d0b67a;
}

@media screen and (max-width: 800px) {
	.wrap .main .ticketArea {
		padding: 50px 10px;
	}
}

.wrap .main .ticketArea .ticketPrice .ticketBox {
	display: flex;
	flex-wrap: wrap;
}

.wrap .main .ticketArea .ticketPrice .ticketBox:not(:last-of-type) {
	margin-bottom: 30px;
}

.wrap .main .ticketArea .ticketPrice .heading {
	background-image: linear-gradient(270deg,
			hsl(224deg 37% 20%) 0%,
			hsla(224, 37%, 20%, 0)100%);

	width: 25%;
	text-align: center;
	font-size: clamp(1.3rem, 1.227rem + 0.36vw, 1.5rem);
	font-weight: bold;
	border-right: 4px solid #d0b67a;
	border-top: 1px solid #d0b67a;
	padding: 20px;
	box-sizing: border-box;
}

@media screen and (max-width: 800px) {
	.wrap .main .ticketArea .ticketPrice .heading {
		width: 100%;
	}
}

.wrap .main .ticketArea .ticketPrice .detail {
	background-image: linear-gradient(90deg,
			hsl(224deg 37% 20%) 0%,
			hsla(224, 37%, 20%, 0)100%);

	width: 75%;
	font-size: clamp(1rem, 0.891rem + 0.55vw, 1.3rem);
	border-top: 1px solid #d0b67a;
	padding: 20px;
	box-sizing: border-box;
}

@media screen and (max-width: 800px) {
	.wrap .main .ticketArea .ticketPrice .detail {
		width: 100%;
	}
}

.wrap .main .ticketArea .ticketPrice .detail .ticket_heading {
	background-image: linear-gradient(90deg,
			#d0b67a 0%,
			#d0b67a00 100%);
	color: #202A45;
	font-weight: bold;
	padding-left: 5px;
	margin-bottom: 10px;
}

.wrap .main .ticketArea .ticketPrice .detail .preList dt {
	font-weight: bold;
	border-bottom: 1px solid #d0b67a;
	margin-bottom: 5px;
}

.wrap .main .ticketArea .ticketPrice .detail .preList dt a {
	color: #d0b67a;
	text-decoration: none;
}

.wrap .main .ticketArea .ticketPrice .detail .preList dt a::after {
	font-family: "Material Symbols Outlined";
	content: 'open_in_new';
	padding-left: 0.5rem;
	vertical-align: middle;
	font-size: 1rem;
	font-weight: normal;
	color: #ccc;
}

.wrap .main .ticketArea .ticketPrice .detail .preList dd {
	margin-bottom: 20px;
}

.wrap .main .ticketArea .ticketPrice .detail .playguideList li {
	line-height: 150%;
	border-bottom: 1px dotted #d0b67a;
	padding: 10px 0px;
}

.wrap .main .ticketArea .ticketPrice .detail .playguideList li a {
	color: #d0b67a;
	text-decoration: none;
}

.wrap .main .ticketArea .ticketPrice .detail .playguideList li a::after {
	font-family: "Material Symbols Outlined";
	content: 'open_in_new';
	padding-left: 0.5rem;
	vertical-align: middle;
	font-size: 1rem;
	font-weight: normal;
	color: #ccc;
}

/* profileArea */
.wrap .main .profileArea {
	padding: 50px 0px;
	color: #d0b67a;
}

.wrap .main .profileArea .profileAreaTitle {
	background-image: url(../img/bg_line.png), url(../img/bg_line.png);
	background-repeat: no-repeat;
	background-position: top 5px center, bottom 5px center;
	text-align: center;
	font-size: 3rem;
	padding: 30px 0px 40px;
	margin-bottom: 50px;
}


.wrap .main .profileArea .profileAreaList {
	display: flex;
	flex-wrap: wrap;
}


.wrap .main .profileArea .profileAreaList li {
	width: calc(50% - 10px);
	background-color: rgba(255, 255, 255, 0.2);
	padding: 20px;
	box-sizing: border-box;

	font-size: clamp(1.2rem, 0.909rem + 1.45vw, 2rem);
	font-weight: bold;
	text-align: center;

	margin-bottom: 20px;
}

@media screen and (max-width: 800px) {
	.wrap .main .profileArea .profileAreaList li {
		width: 100%;
	}
}

.wrap .main .profileArea .profileAreaList li.l_20 {
	margin-left: 20px;
}

@media screen and (max-width: 800px) {
	.wrap .main .profileArea .profileAreaList li.l_20 {
		margin-left: 0px;
	}
}

.wrap .main .profileArea .profileAreaList li.w33 {
	width: calc((100% / 3));
}

@media screen and (max-width: 800px) {
	.wrap .main .profileArea .profileAreaList li.w33 {
		width: 100%;
	}
}


.wrap .main .profileArea .profileAreaList li figcaption {
	margin-top: 20px;
}

@media screen and (max-width: 1200px) {
	.wrap .main .profileArea .profileAreaList li figcaption span {
		display: block;
	}

}


.wrap .main .profileArea .profileAreaList li a {
	background-color: #d0b67a;
	display: block;
	width: fit-content;
	text-decoration: none;
	font-size: 1.2rem;
	font-weight: bold;
	padding: 10px 20px;
	margin: 20px auto 0px;
	border-radius: 50px;
	color: #202A45;
}


/* venue */
.wrap .main .venue {
	padding: 50px 0px 0px;
	color: #d0b67a;
}

.wrap .main .venue h2 {
	background-image: url(../img/bg_line.png), url(../img/bg_line.png);
	background-repeat: no-repeat;
	background-position: top 5px center, bottom 5px center;
	text-align: center;
	font-size: 3rem;
	padding: 30px 0px 40px;
	margin-bottom: 50px;
}

.wrap .main .venue .venueDetail {
	background-color: rgba(255, 255, 255, 0.2);
}

.wrap .main .venue .venueDetail div {
	display: flex;
	flex-wrap: wrap;
}

.wrap .main .venue .venueDetail dt {
	background-image: linear-gradient(270deg,
			hsl(224deg 37% 20%) 0%,
			hsla(224, 37%, 20%, 0)100%);

	width: 25%;
	text-align: center;
	font-size: clamp(1.3rem, 1.227rem + 0.36vw, 1.5rem);
	font-weight: bold;
	border-right: 4px solid #d0b67a;
	border-top: 1px solid #d0b67a;
	padding: 20px;
	box-sizing: border-box;
}

@media screen and (max-width: 800px) {
	.wrap .main .venue .venueDetail dt {
		width: 100%;
	}
}

.wrap .main .venue .venueDetail dd {
	background-image: linear-gradient(90deg,
			hsl(224deg 37% 20%) 0%,
			hsla(224, 37%, 20%, 0)100%);

	width: 75%;
	font-size: clamp(1rem, 0.891rem + 0.55vw, 1.3rem);
	border-top: 1px solid #d0b67a;
	padding: 20px;
	box-sizing: border-box;
}

@media screen and (max-width: 800px) {

	.wrap .main .venue .venueDetail dd {
		width: 100%;
	}
}


/*///////////////////////////////////

footer 

///////////////////////////////////*/

footer {
	margin-bottom: 20px;
	padding-bottom: 50px;
}

/* x  */
footer .x a {
	background-color: #d0b67a;
	display: block;
	width: fit-content;
	text-decoration: none;
	font-size: 1.2rem;
	font-weight: bold;
	padding: 10px 20px;
	margin: 20px auto 0px;
	border-radius: 50px;
	color: #202A45;
}