@charset "utf-8";

h1 {
	display: block;
	padding: 1em 1em 0.5em;
	text-align: left;
	background: #b87733;
	color: #fff;
	font-size: 2em;
	font-weight: bold;
}
h1 span { font-size: 1rem; }
h1 img {
	height: 10vw;
	max-height: 50px;
}
h2 img { max-width: 90%; }

.scheduleBox {
	width: 80%;
	display: grid;
	grid-gap: 0.5em;
	grid-template-columns: 1fr;
	margin: 0 auto;
	padding: 1em 0;
	text-align: left;
}
.scheduleBox li {
	border-bottom: #ccc dashed 1px;
	display: grid;
	grid-gap: 0;
	grid-template-columns: 120px 1fr;
}
.textBox {
	padding: 1em;
	word-break: break-all;
}
.textBox.left { text-align: left; }
.textBox.left h2 {
	font-size: 1.35em;
	color: #f00;
}
span.price { font-size: 1.5em; }
span.price small { font-size: 1rem; }

.ticketBox {
	margin: 0 1em 1em;
	padding: 1em;
	text-align: left;
}
.ticketBox.redBOX { border: #b87733 solid 5px; }
.ticketBox small { font-size: 0.8em; }

.textBox .p10 { padding: 0 1em; }
.ticketBox h2 {
	font-weight: bold;
	color: #b87733;
}
.textBox h2 {
	margin: 0 auto 1em;
	padding: 0.5em 1em;
}
.textBox h2.bg1 { background: #d2534b; color: #fff; }
.textBox h2.bg2 { background: #dd81a6; color: #fff; }
.textBox h2.bg3 { background: #fbd57b; color: #000; }
.textBox h2.bg4 { background: #88bdae; color: #fff; }
.textBox h2.bg5 { background: #a57eb6; color: #fff; }
.textBox h2.bg6 { background: #171c61; color: #fff; }
.textBox strong.pink { color: #dd81a6; }

.ticketBox h3.ttl {
	font-weight: bold;
	font-size: 1.25em;
}
.ticketBox strong.pink, .ticketBox h3.ttl.pink { color: #f08; }

.ticketBox p { padding: 0 1em; }

.imgBox {
	margin: 1em auto 0;
	display: grid;
	grid-gap: 1em;
	grid-template-columns: 1fr 1fr 1fr;	
}
.imgBox.T { grid-template-columns: 1fr 1fr; }

main div#container ul.btnBox {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: flex-start;
	justify-content: flex-start;
}
main div#container ul.btnBox a {
	-webkit-flex-grow: 1;
	flex-grow: 1;
	background: #b87733;
	color: #fff;
	text-align: center;
	text-decoration: none;
	padding: 0.5em;
	margin: 0.5em;
	border-radius: 0.5em;
	font-weight: 700;
	font-size: 1.25em;
}
main div#container ul.btnBox a.blue{ background: #0067d1; }

hr {
	margin: 1.5em auto;
	border: #999 solid 1px;
}
@media all and (max-width: 736px) {
	.scheduleBox { width: 90%; }
	.scheduleBox li {
		grid-template-columns: 20vw 1fr;
	}
	.textBox { text-align: left; }
	.textBox.left h2 { font-size: 1.25em; }
	span.price { font-size: 3.75vw; }
	.imgBox {
		margin: 1em auto 0;
		display: grid;
		grid-gap: 0.5em;
		grid-template-columns: 1fr 1fr;
	}
	.imgBox img { max-width: 100%; }
	.imgBox.T { grid-template-columns: 1fr; }

	main div#container ul.btnBox {
		-webkit-flex-direction: column;
		flex-direction: column;
	}
	main div#container ul.btnBox a { margin: 0.125em; }
}