/*---------------------------
 base
--------------------------*/
html {
scroll-behavior: smooth;
}

body {
margin: 0;
padding: 0;
background-color: #fff;
font-size: 14px;
line-height:1.8;
font-family: 'Noto Sans JP', sans-serif;
font-weight: 400;
letter-spacing:0.1em;
/*letter-spacing:0.15em;*/
position: relative;
box-sizing: border-box;
}


ul,ol {
	padding:0px;
	margin:0;
	list-style:none;
}

ul.indent li,
ol.indent li {
	text-indent:-1em;
	padding-left:1em;
}

dt {
	font-weight:normal;
}

td,dl,dd,p {
	margin:0;
	padding:0;
}

.red {
	color: #ff0000;
}
.blue {
	color: #0000FF;
}
.pink {
	color: #ff00ff;
}

.bold {
	font-weight: bold;
}

a {
color: inherit;
text-decoration:underline;
word-wrap:break-word;
word-break: break-all;
transition: opacity 0.3s;
scroll-behavior: smooth;
}

a:hover {
color: inherit;
text-decoration:underline;
opacity: 0.5;
}
 
a:focus {
outline: 0;
-webkit-box-shadow: none;
box-shadow: none;
}


a.btn {
background-color: #fff;
border: 1px solid #fff;
color: #000;
opacity: 1;
text-decoration: none;
}


@media ( any-hover: hover ) {
a.btn:hover {
color: #000;
border: 1px solid #fff;
background-color: #fff;
opacity: 1;
}
}



img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  font-style: italic;
  background-repeat: no-repeat;
  background-size: cover;
  shape-margin: 0.75rem;
}


@media screen and (max-width: 768px) {
body {
font-size: 12px;
}

}

/*---------------------------
 header
---------------------------*/
header {
	position: fixed;
	background:#e9c4fa;
	width: 100%;
	height: 48px;
	z-index: 999;
}

header a {
	color:#fff;
}

header a:hover {
	color:#fff;
}

header h1 {
	line-height: 1;
	width: 120px;
	margin-bottom: 0;
	font-size: 1rem;
	aspect-ratio: 1134 / 305
}


#header_innner {
	padding: 8px 20px;
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

#header_innner .menuarea {
	display: none;
}

#header_innner .menuarea ul {
	display: flex;
	gap: 20px;
}

#header_innner .menuarea li,
#header_innner .menucover-content li {
	font-family: "Oleo Script", system-ui;
	font-weight: 700;
	font-size: 32px;
}

#header_innner .menucover-content li {
	font-size: 36px;
	line-height: 1.5;
}

#header_innner .menuarea li a,
#header_innner .menucover-content li a {
	text-decoration: none;
}


nav.menucover {
	display: none;
	position: fixed;
	background-color: #e9c4fa;
	color: #fff;
	inset: 0;
	height: 100dvh;
	width: 100%;
}
div.menucover-content {
	height: 100dvh;
	/*margin: 48px auto 0;*/
	margin: 0 auto;
	width: 91.4%;
	display: grid;
	align-content: center;
}

.menucover-content .link {
	text-align: center;
}
.menucover-content .link a {
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 700;
	font-size: 3.1vw;
	display: inline-block;
	text-decoration: none;
	position: relative;
}

.menucover-content .link a .material-symbols-outlined {
	font-size: 20px;
	font-weight: 200;
	position: relative;
	bottom: -5px;
}

div.menucover-content .rogo-l {
	margin: 0 auto 28px;
	max-width: 69.9%;
	width: 240px;
}

div.menucover-content ul {
	border-top: 1px solid rgba(255, 255, 255, 0.5);
	border-bottom: 1px solid rgba(255, 255, 255, 0.5);
	padding-top: 28px;
	padding-bottom: 28px;
	text-align: center;
	margin-bottom: 32px;
}

@media ( any-hover: hover ) {
	header a:hover {
		color:#fff;
		opacity: 0.5;
	}
}


@media (min-width: 768px) {
	header {
		height: 64px;
	}
	#header_innner {
		padding: 3px 60px 3px 20px;
	}
	header h1 {
		width: 160px;
	}

	#header_innner .menuarea {
		display: block;
	}

	div.menucover-content {
		/*margin-top: 64px;*/
		max-width: 600px;
	}

	.menucover-content .link a {
		font-size: 16px;
	}
	.menucover-content .link a .material-symbols-outlined {
		bottom: -1px;
	}

	div.menucover-content .rogo-l {
		width: 340px;
		max-width: 340px;
		margin-bottom: 40px;
	}
}



header .hamburger {
	top: 50%;
	right:20px;
	transform: translateY(-50%);
	position:absolute;
  display: block;
  width: 20px;
  height: 14px;
  z-index: 99999;
  transition: all .4s;
  box-sizing: border-box;
  cursor:pointer;
}
header .hamburger span {
  display: inline-block;
  transition: all .4s;
  box-sizing: border-box;
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  margin: 0 auto;
  background-color: #fff;
}
header .hamburger  span:nth-of-type(1) {
  top: 0;
}
header .hamburger  span:nth-of-type(2) {
  top: 6px;
}
header .hamburger  span:nth-of-type(3) {
  bottom: 0;
}

header .hamburger.active  span:nth-of-type(1) {
	transform: translateY(6px) rotate(45deg);
}

header .hamburger.active  span:nth-of-type(2) {
	opacity: 0;
}

header .hamburger.active  span:nth-of-type(3) {
	transform: translateY(-6px) rotate(-45deg);
}

/*---------------------------
 footer
---------------------------*/
footer {
	background-color: #e9c4fa;
	color: #fff;
	padding-top: 48px;
	padding-bottom: 48px;
}

footer a.btn {
	position: relative;
	border: 1px solid #fff;
	background-color: initial;
	padding: 8px 30px;
	color: #fff;
	text-decoration: none;
	display: block;
	margin: auto;
	max-width: 293px;
	font-size: 10px;
}

footer a.btn:after {
	font-family: 'material symbols outlined';
	position: absolute;
	content: "\e5df";
	font-size: 24px;
	top: -2px;
}


@media ( any-hover: hover ) {
footer a.btn:hover {
color: #000;
border: 1px solid #fff;
background-color: #fff;
opacity: 1;
}
}

footer p.copy {
	margin-top: 16px;
	font-size: 10px;
	text-align: center;
}


@media (min-width: 768px) {
	footer {
		width: 60%;
		margin-right: 0;
		margin-left: auto;
	}

	footer a.btn {
		font-size: 16px;
		max-width: 352px;
	}

	footer a.btn:after {
		top: 2px;
	}

	footer p.copy {
		font-size: 12px;
	}
}

/*---------------------------
 content
---------------------------*/
main {
	display: block;
	width: 100%;
	padding-top: 47px;
}


section {
	padding-top: 64px;
	padding-bottom: 64px;
	background-color: #fff;
}

h2 {
	font-family: "Oleo Script", system-ui;
	font-weight: 700;
	font-style: normal;
	font-size: 40px;
	text-align: center;
	margin-bottom: 36px;
}

@media (min-width: 768px) {
	main {
		display: table;
		padding-top: 48px;
	}
	.contents-left {
		width: 40%;
		display: table-cell;
		position: relative;
	}
	.contents-right {
		width: 60%;
		display: table-cell;
		position: relative;
	}

}

/*---------------------------
 mainvisual
---------------------------*/
.mainvisual {
		position: inherit;
		width: 100%;
		height: fit-content;
		padding-bottom: 0;
		top: auto;
		left: auto;
		aspect-ratio: 238 / 337;
}

@media (min-width: 768px) {
.mainvisual {
	width: 40%;
	position: fixed;
	/*height: 100vh;*/
	padding-top: 64px;
	top: 0;
	left: 0;
		overflow-y: auto; 
		scrollbar-width: none;
		-ms-overflow-style: none;
}
.mainvisual::-webkit-scrollbar {
  display: none;
}

}

/*---------------------------
 news
---------------------------*/
#news {}

#news .inner {
	padding-left: 16px;
	padding-right: 16px;
}

#news .inner .news_list {
	overflow-y: scroll;
	height: 350px;
	border: 1px solid #ccc;
	padding: 10px;
}

#news .inner .news_list table {
	width: 100%;
}

#news .inner .news_list table tr {
	border-bottom:dotted 1px #ccc;
	vertical-align:middle;
}

#news .inner .news_list table td {
	display:block;
}

#news .inner .news_list table td:last-child {
	padding-bottom:15px;
}


#news .inner a.btn.more {
	display: block;
	background-color: #fffcf3;
	border: solid 1px #999999;
	font-size: 18px;
	font-weight: 700;
	margin-top: 36px;
	margin-left: auto;
	margin-right: auto;
	width: 200px;
	height: 44px;
	transition: opacity 0.3s;
}

@media (min-width: 768px) {
	#news .inner {
		padding-left: 58px;
		padding-right: 58px;
	}

	#news .inner a.btn.more {
		margin-top: 48px;
		width: 356px;
	}
}


@media ( any-hover: hover ) {
#news .inner a.btn.more:hover {
color: #000;
background-color: #fffcf3;
opacity: 0.5;
}
}



/*---------------------------
 schedule
---------------------------*/
#schedule {
	background-color: #fffcf3;
}

#schedule .inner {
	padding-left: 16px;
	padding-right: 16px;
}

.schedule-item {
	display: block;
	gap: 20px;
}

.schedule-item:not(:last-of-type) {
	padding-bottom: 24px;
	border-bottom: 1px solid #CCC;
}

.schedule-item:not(:first-child) {
	padding-top: 24px;
}

.schedule-location {
	width: 100%;
	font-size: 32px;
	font-weight: 700;
	margin-bottom: 16px;
}

.schedule-location span {
	font-size: 16px;
	display: block;
}

.schedule-datetime {
	display: grid;
	gap: 8px;
}

.schedule-details dl dt {
	font-size: 24px;
	font-weight: 700;
}
.schedule-details dl dt span {
	font-size: 16px;
	margin-left: 8px;
}

.schedule-details dl dd {
	font-size: 20px;
	font-weight: 700;
}

.schedule-details dl:last-child {
	margin-bottom: 16px;
}

.schedule-contact {
	padding: 12px;
	border: 1px solid #000;
	background-color: #fff;
}

@media (min-width: 1121px) {
/*@media (min-width: 768px) {*/
	.schedule-item {
		display: flex;
		justify-content: space-between;
	}

	#schedule .inner {
		padding-left: 58px;
		padding-right: 58px;
	}
	.schedule-location {
		width: 280px;
		margin-bottom: 0;
	}

	.schedule-details {
		width: 60%;
	}

	.schedule-contact {
		margin: 0;
	}
}


/*---------------------------
 ticket
---------------------------*/
#ticket .inner {
	padding-left: 16px;
	padding-right: 16px;
}

#ticket .price dt,
#ticket .price dd {
	font-size:120%;
	font-weight:bold;
	text-align:center;
}

#ticket .seating-layout dt {
	text-align: center;
	font-family: "Noto Serif JP", serif;
	font-weight: 700;
	font-size: 20px;
}

#ticket .seating-layout dd img {
	width: 100%;
	max-width: 750px;
	margin: auto;
	display: block;
}

#ticket .ticket_box {
	padding:16px;
	border:solid 1px #000000;
	border-radius:5px;
	margin-bottom:1em;
}

#ticket .ticket_box:has(.status.closed) {
  opacity: 0.5;
}

#ticket .ticket_box:has(.status.closed) .open-modal {
	pointer-events: none;
	cursor: not-allowed;
	user-select: none;
	touch-action: none;
}
#ticket .ticket_box:has(.status.closed) .open-modal:hover,
#ticket .ticket_box:has(.status.closed) .open-modal:active {
  transform: none;
  box-shadow: none;
}

#ticket .ticket_box .title {
	padding-right:20px;
	position:relative;
	cursor:pointer;
	display: flex;
	flex-direction: column;
}

#ticket .ticket_box .title:after {
	content: "";
	display: block;
	width: 10px;
	height: 10px;
	border-top: 4px solid #707070;
	border-right: 4px solid #707070;
	transform: rotate(135deg);
	-webkit-transform: rotate(135deg);
	position: absolute;
	right: 3px;
	top: 50%;
	margin-top: -5px;
	transition-property: all;
	transition-duration: .3s;
	transition-timing-function: ease-out;
	transition-delay: .1s;
}

#ticket .ticket_box .title.select:after {
	transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
}

#ticket .ticket_box .title .ticket_ttl {
	font-size:110%;
	font-weight:bold;
}

#ticket .ticket_box .title .status {
	width:150px;
	padding:3px 0px;
	color:#FF0004;
	border:solid 1px #FF0004;
	text-align:center;
	line-height:2;
	margin-top: 10px;
}

#ticket .ticket_box .txt {
	margin: 18px auto;
	padding-top: 18px;
	border-top:solid 1px #ccc;
}

#ticket .ticket_box .txt dl {
	margin-bottom:40px;
}

#ticket .ticket_box .txt dt {
	font-weight:bold;
}

#ticket .ticket_box .txt a.btn,
.modal .modal-content a.btn,
#ticket .ticket_box .txt button.open-modal {
	background-color: #e9c4fa;
	color: #fff;
	font-size: 16px;
	letter-spacing: 1.4px;
	display: block;
	border: none;
	padding: 20px;
	margin: auto;
	border-radius: 5px;
	transition: opacity 0.3s;
	cursor: pointer;
}

@media ( any-hover: hover ) {
	#ticket .ticket_box .txt a.btn:hover,
	#ticket .ticket_box .txt button.open-modal:hover {
		opacity: 0.5;
}
}

@media (min-width: 768px) {
#ticket .inner {
	padding-left: 58px;
	padding-right: 58px;
}

#ticket .seating-layout dt {
	font-size: 24px;
}

#ticket .seating-layout dd img {
	width: 50%;
}

#ticket .price dt,
#ticket .price dd {
	font-size:24px;
}

}

@media (min-width: 1301px) {
	#ticket .ticket_box .title {
	margin:0px 10px;
	flex-direction: column;
}

#ticket .ticket_box .title:after {
	margin-top: -10px;
}

#ticket .ticket_box .title.select:after {
	transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	top: 60%;
}

#ticket .ticket_box .title .ticket_ttl {
	font-size:18px;
	font-weight:bold;
	width: calc(100% - 190px);
}

#ticket .ticket_box .title .status {
	position:absolute;
	top: -1px;
	right:40px;
	padding: 2px 0;
	margin-top: 0px;
}

#ticket .ticket_box .txt {
}

#ticket .ticket_box .txt dl {
	margin-bottom:32px;
}

#ticket .ticket_box .txt dt {
	font-size:16px;
	font-weight:bold;
}

#ticket .ticket_box .txt a.btn,
.modal .modal-content a.btn,
#ticket .ticket_box .txt button.open-modal {
	max-width: 280px;
	width: 100%;
}

}


/* modal */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  justify-content: center;
  align-items: center;
}
.modal.show {
  display: flex;
}
.modal-content {
  background: #fff;
  padding: 20px;
  width: 90%;
  max-width: 800px;
  height: 80%;
  border-radius: 6px;
  position: relative;
  animation: fadeIn .3s ease;
}
.modal-content-inner {
	overflow-y: scroll;
}

.modal-content-inner dl {
	margin-bottom:40px;
}

.modal-content-inner dt {
	font-weight:bold;
	padding: 8px 24px;
	background-color: #fffcf3;
	text-align: center;
	margin-bottom: 12px;
}

.close {
  position: absolute;
  right: auto;
  top: auto;
  bottom: 20px;
  cursor: pointer;
  font-size: 24px;
  background-color: #fff;
  border-radius: 9999px;
  padding: 7px 8px 9px 8px;
  opacity: 1;
  text-shadow: none;
}

.modal-content a.btn {
	margin-top: 20px!important;
	width: 100%;
}


@media (min-width: 768px) {
	.close {
		right: 10px;
		top: 10px;
		bottom: auto;
		font-size: 32px;
		padding: 6px 6px 10px 8px ;
}

.modal-content {
  height: 90%;
}


.modal-content-inner dl {
	margin-bottom:32px;
}

.modal-content-inner dt {
	font-size:16px;
	font-weight:bold;
}

.modal-content a.btn {
	margin-top: 20px!important;;
}
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.no-scroll {
  overflow: hidden;
}


/*---------------------------
 attention
---------------------------*/
#attention .inner {
	padding-left: 16px;
	padding-right: 16px;
}

#attention .attention_box {
	margin-bottom:1em;
	border: 1px solid;
}

#attention .attention_box .title {
	padding: 16px 20px 16px 16px;
	position:relative;
	cursor:pointer;
	display: flex;
	flex-direction: column;
	background-color: #e9c4fa;
	color: #000;
}

#attention .attention_box .title:after {
	content: "";
	display: block;
	width: 10px;
	height: 10px;
	border-top: 4px solid #000;
	border-right: 4px solid #000;
	transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	position: absolute;
	right: 20px;
	top: 50%;
	margin-top: -5px;
	transition-property: all;
	transition-duration: .3s;
	transition-timing-function: ease-out;
	transition-delay: .1s;
}

#attention .attention_box .title.select:after {
	transform: rotate(135deg);
	-webkit-transform: rotate(135deg);
}

#attention .attention_box .title .attention_ttl {
	font-size:110%;
	font-weight:bold;
}

#attention .attention_box .txt {
	margin: 0 auto 18px;
	padding-top: 12px;
	padding-left: 16px;
	padding-right: 16px;
}

#attention .attention_box .txt dl {
	margin-bottom: 21px;
}

#attention .attention_box .txt dt {
	font-weight:bold;
}

#attention .attention_box .txt .notes {
	display: block;
	margin: 16px 0;
	border: 1px solid;
	padding: 8px;
}




@media (min-width: 768px) {
	#attention .inner {
		padding-left: 58px;
		padding-right: 58px;
	}

	#attention .attention_box .title {
		flex-direction: column;
	}

#attention .attention_box .title:after {
	margin-top: -10px;
}

#attention .attention_box .title.select:after {
	top: 50%;
}

#attention .attention_box .title .attention_ttl {
	font-size:18px;
	font-weight:bold;
}

#attention .attention_box .title .status {
	position:absolute;
	top: -1px;
	right:40px;
	padding: 2px 0;
	margin-top: 0px;
}

#attention .attention_box .txt dl {
	margin-bottom:21px;
}

#attention .attention_box .txt dt {
	font-size:16px;
	font-weight:bold;
}

#attention .attention_box .txt .notes {
	margin: 16px;
}

}


