@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=PT+Sans:wght@700&Noto+Sans+JP:wght@400;500;700&display=swap');

:root {
	--bg: #ffecdc;
	--menuBg: #fe7aab;
	--menuOn: #d20200;
	--wh: #ffffff;
	--yellow: #ffff00;
	--pink: #ff0088;
	--text: #000000;
	--radius: 1em;
	--padding: 1em;
	--padding-2: 2em;
	--shadow: 0 10px 24px rgba(27, 61, 8, 0.18);

	--red: #fe0733;
	--coral: #e8735d;
	--cardboard: #f8dda6;
	--paper: #fffdf7;
	--seat: #b99760;
	--orange: #ff9600;
}

body {
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 16px;
	line-height: 1.65em;
	color: var(--text);
	background: url(../images/common/bg-gold.jpg) var(--wh) top center repeat;
	margin: 0;
	padding: 0;
	position: relative;
	animation: bg-scroll 20s linear infinite;
}

@keyframes bg-scroll {
	0% {
		background-position: center 0;
	}
	100% {
		background-position: center -500px;
	}
}

.bg-line {
	width: 100vw;
	height: 100vh;
	position: fixed;
	top: 0;
	right: 0;
	background: url(../images/common/bg-line.svg?v=2) center center;
	background-size: cover;
}

.bg-kira {
	width: 100vw;
	height: 100vh;
	position: fixed;
	top: 0;
	right: 0;
	background: url(../images/common/bg-kira.png?v=2) center center repeat;
}

* {
	font-size: 1em;
	box-sizing: border-box;
	background-size: contain;
	word-break: break-all;
}

html, body, p, h1, h2, h3, h4, h5, ul, ol, li, dd, dl, dt, div {
	padding: 0;
	margin: 0;
	font-weight: normal;
}

img {
	border: 0;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	max-width: 100%;
}

html { height: 100%; }
li { list-style-type: none; }
a {
	color: inherit;
	text-decoration: none;
}
a.underline,
.underline a { text-decoration: underline; }
.none { display: none; }
.sp { display: none; }
.pc { display: block; }

/* for modern brouser */
.clearfix:after {
	content: ".";
	display: block;
	clear: both;
	height: 0;
	line-height: 0;
	font-size: 0;
	visibility: hidden;
}

/* IE7,MacIE5 */
.clearfix { display: inline-block; }

/* WinIE6 below, Exclude MacIE5 \*/
* html .clearfix { height: 1%; }
.clearfix { display: block; }
.tcenter { text-align: center; }
.tright { text-align: right; }

/* 選択色 */
::selection {
	background: #000;
	color: #fff;
}

::-moz-selection {
	background: #000;
	color: #fff;
}

/* YouTube 埋め込み */
.YT {
	position: relative;
	width: 100%;
	padding-top: 56.25%;
}
.YT iframe {
	position: absolute;
	top: 0;
	right: 0;
	width: 100% !important;
	height: 100% !important;
}

.red { color: #f00; }
.pink { color: var(--menuOn); }
.blue { color: #4249b4; }
.green { color: #42967e; }

main {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 1200px;
	margin: 0px auto;
	display: grid;
	grid-gap: 0;
	grid-template-columns: 1fr 200px;
	background: #fff;
	border-left: var(--red) solid 1em;
	border-right: var(--red) solid 1em;
}

main div.menu {
	background: var(--menuBg);
	grid-row: 1 / 2;
	grid-column: 2 / 3;
	text-align: center;
	padding: 1em 0;
}
main div.menu img.ttl { width: 90%; }
main div.menu a { color: var(--wh); }

main div.menu ul {
	display: grid;
	grid-gap: 0;
	grid-template-columns: 1fr;
	padding: 1em 0;
	color: #fff;
}
main div.menu ul li { padding: 0.5em 0 0; }
main div.menu ul a li { color: #fff; }
main div.menu ul li.on,
main div.menu ul li:hover { background: var(--menuOn); }
main div.menu ul li.off {
	background: none;
	color: rgba(255,255,255,0.35);
}

.whTXT {
	font-size: 0.7em;
	color: #fff;
}
div.sns {
	width: 90%;
	display: grid;
	grid-gap: 0.5em;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	margin: 0 auto;
	padding: 0 0 1em;
}

main div#container {
	grid-row: 1 / 2;
	grid-column: 1 / 2;
	text-align: center;
}
div.ttl { padding: 4em 1em 1em; }
div.ttl h1 img { max-width: 90%; }
div.ttl h2 {
	font-size: 1.3em;
	font-weight: bold;
}

dl#news {
	padding: 0 1em;
	margin: 0 auto 2em;
	width: calc(100% - 4em);
	max-height: 13.5em;
	overflow: auto;
	text-align: left;
	border: var(--menuOn) solid 3px;
	background: rgba(255,255,255,0.85);
}
 
dl#news dt {
	color: var(--menuOn);
	clear: left;
	float: left;
	margin: 0;
	padding: 0.5em 1em 0;
	width: 8em;
	line-height: 1.5em;
}
 
dl#news dd {
	vertical-align: middle;
	margin: 0;
	padding: 0.5em 1em 0.5em 9em;
	border-bottom: 1px dashed #CCC;
}
dl#news dd:last-child {
	border-bottom: 0;
}
 
dl#news a {
	padding: 5px 20px 5px 0;
	color: #000;
	text-decoration: underline;
}
 
dl#news a:hover { text-decoration: none; }


/* 日程 Box */
.ttl-top {
	color: var(--red);
	font-weight: bold;
	font-size: 2em;
	line-height: 1.5;
	padding: 0 1em;
	margin-bottom: 1em;
}
.schedule-wrap { padding: 1em; }
.schedule-card {
	color: var(--red);
	display: grid;
	grid-template-columns: 4.5em minmax(0, 1fr);
	width: calc(100% - 4em);
	background: var(--cardboard);
	border: 0.2em solid var(--menuOn);
	box-shadow: 0.5em 0.5em 0 var(--menuOn);
	margin: 0 auto 1em;
	text-align: left;
}

.schedule-number {
	display: grid;
	place-items: center;
	background: var(--red);
	color: var(--wh);
	font-family: "Gravitas One", serif;
	font-size: 2em;
	line-height: 1;
}

.schedule-content {
	display: grid;
	grid-template-columns: 8em minmax(0, 1fr);
	padding: 1em;
}

.date-column {
	display: grid;
	grid-template-columns: max-content;
	align-content: start;
	justify-items: start;
}

.schedule-date {
	font-family: "Gravitas One", serif;
	font-size: 2em;
	line-height: 1.25;
	white-space: nowrap;
}
.schedule-date small {
	display: block;
	font-size: 0.65em;
}

.weekday,
.city-en {
	display: inline-flex;
	align-items: center;
	min-height: 1.5em;
	font-size: 0.7em;
	font-weight: normal;
	line-height: 1;
}

.weekday {
	margin-top: 0;
	padding: 0.25em 0.5em;
	background: var(--red);
	color: var(--paper);
}

.city-en {
	margin-top: 0.25em;
	padding: 0.25em 0.5em;
	background: var(--wh);
	color: var(--red);
}

.event-column {
	min-width: 0;
}

.event-column h1 {
	font-size: 2em;
	font-weight: bold;
	line-height: 1.25;
	margin-bottom: 0.25em;
	background: var(--wh);
	padding: 0.25em 0.5em;
}
.event-column h1 small { font-size: 0.5em; }

.schedule-time {
	display: flex;
	gap: 0.5em;
	margin: 0 0 0.25em;
	font-size: 0.85em;
	font-weight: normal;
	line-height: 1.25;
	white-space: nowrap;
}

.seat-list {
	display: flex;
	align-items: center;
	gap: 0.5em;
	flex-wrap: wrap;
	margin-top: 0.5em;
}

.seat-list span {
	display: inline-flex;
	align-items: center;
	padding: 0.25em 0.5em;
	background: var(--seat);
	color: var(--wh);
	font-size: 0.85em;
	font-weight: normal;
	line-height: 1;
	white-space: nowrap;
}
.schedule-card .t2 {
	grid-column: 1 / 3;
	padding-top: 0.5em;
	font-size: 0.85em;
	line-height: 1.25;
}

.schedule-card.gold {
	background:
		radial-gradient(circle at 86% 20%, rgba(255,255,255,.9) 0 .08em, transparent .1em),
		radial-gradient(circle at 72% 72%, rgba(255,255,255,.7) 0 .06em, transparent .09em),
		radial-gradient(circle at 94% 60%, rgba(255,255,255,.8) 0 .05em, transparent .08em),
		linear-gradient(135deg, #fff9e8 0%, #f7e3aa 38%, #fff2c8 68%, #d8aa32 100%);
	background-size: 7em 7em, 9em 9em, 11em 11em, auto;
	border-color: #c49316;
	box-shadow: 0.5em 0.5em 0 #9a6a00;
	color: #9a6500;
}

.schedule-card.gold h1 {
	padding-top: 0;
	color: #9a6500;
}
.schedule-card.gold .schedule-number {
	background: linear-gradient(180deg, #e9c655 0%, #bf8909 55%, #9c6700 100%);
	color: #fff;
	text-shadow: 0 0.06em 0 rgba(89, 52, 0, .35);
}

.schedule-card.gold .schedule-date {
	color: #9a6500;
	text-shadow: 0 0.03em 0 rgba(255,255,255,.8);
}

.schedule-card.gold .weekday {
	background: linear-gradient(180deg, #c99517 0%, #9d6900 100%);
	color: #fff;
}

.schedule-card.gold .city-en {
	color: #9a6500;
	border: 1px solid rgba(164, 111, 0, .28);
}

.schedule-card.gold .event-column h1 {
	background: linear-gradient(180deg, #fffef8 0%, #fffaf0 100%);
	border: 1px solid rgba(196, 147, 22, .28);
	box-shadow: 0 0.18em 0.45em rgba(138, 92, 0, .10);
}

.schedule-card.gold .seat-list span {
	background: linear-gradient(180deg, #c99b29 0%, #a66e00 100%);
	color: #fff;
}

.btn-gradient-radius {
	font-size: 1.5em;
	font-weight: bold;
	margin-bottom: 1em;
	display: inline-block;
	padding: 0.75em 2em;
	border-radius: 2em;
	text-decoration: none;
	color: #FFF;
	background: var(--red);
}


.attention {
	margin: 2em 2.5em;
	padding: 2em;
	background: var(--menuOn);
	font-size: 0.8em;
	font-weight: bold;
	line-height: 1.25em;
	text-align: left;
	color: #fff;
}
.attention h2 {
	font-size: 1.5em;
	font-weight: bold;
	color: var(--yellow);
}
.attention span.red { color: var(--yellow); }

.toiawase {
	margin: 2em 2.5em;
	font-size: 0.8em;
	line-height: 1.5em;
	text-align: left;
}
.toiawase h2 {
	font-size: 1.2em;
	font-weight: bold;
}
.toiawase .p10 { padding: 0 0 0 1em }
.toiawase a {
	text-decoration: underline;
	color: var(--menuOn);
}

main div#ft {
	background: var(--menuOn);
	color: #fff;
	grid-row: 2 / 3;
	grid-column: 1 / 3;
	text-align: center;
	padding: 1em;
}
main div#ft span { margin: 0 0.5em; }

@media all and (max-width: 736px) {
	img { max-width: 90%; }
	.sp { display: block; }
	.pc { display: none; }

	body {
		font-size: 3vw;
	}

	main {
		grid-template-columns: 1fr;
		border: none;
	}
	main div.menu {
		grid-row: 1 / 2;
		grid-column: 1 / 2;
		position:fixed;
		top:0;
		left:0;
		width: 100%;
		box-shadow: 0 0.25em 2em hsl(0 0% 0% / 30%);
	}

	.open_spmenu {
		position:absolute;
		right:1.5vw;
		top:0;
		height:7.5vw;
		cursor:pointer;
	}

	.close_spmenu {
		position:absolute;
		right:4vw;
		top:0;
		cursor:pointer;
		font-size:3vw;
		color:#fff;
		padding:0;
		vertical-align:middle;
	}
	.open_spmenu img,
	.close_spmenu img { height: 15vw; }
	
	.spmenu {
		display:none;
		position:fixed;
		top:0;
		left:0;
		height:100vh;
		width:100vw;
		padding:15vh 5vw;
		box-sizing:border-box;
		background-color: var(--menuBg);
		z-index:99;
		text-align:center;
		overflow: auto;
	}

	main div.menu p {
		display: grid;
		grid-gap: 0;
		grid-template-columns: 23vw 1fr 15vw;
		text-align: center;
	}
	main div.menu p .logo { width: 90%; }
	main div.menu ul li.on {
		background: var(--menuOn);
		color: #fff;
	}
	main div.menu ul li { padding: 1em 0 0.5em; }
	main div.menu ul li img { width: 60%; }
	div.sns { width: 50%; }

	main div#container {
		grid-row: 2 / 3;
		grid-column: 1 / 2;
		margin-top: 15vw;
	}
	div.ttl { padding: 2em 1em 1em; }
	div.ttl .logo { width: 40%; }
	div.ttl p {
		padding: 0 1em;
		font-size: 1em;
		line-height: 1.5;
	}

	main div#ft {
		grid-row: 3 / 4;
		grid-column: 1 / 2;
	}
	main div#ft span { display: block; }

	dl#news dt {
		padding: 0.5em 0;
		width: 100%;
	}
 
	dl#news dd {
		padding: 0.5em 0;
		border-bottom: 1px dashed #CCC;
	}

	/* 日程カード */
	.schedule-content {
		grid-template-columns: 1fr;
		gap: 0;
	}
	.event-column h1 { font-size: 1.5em; }
	.date-column {
		display: flex;
		align-items: center;
		gap: 0.5em;
	}

	.weekday,
	.city-en { margin-top: 0; }
	.schedule-card .t2 { grid-column: 1 / 2; }
	.schedule-date small { display: inline-block; margin-right: 0.25em; }
}
