@charset "UTF-8";

/***************************************
01.Reset
02.共通
　ーヘッダー
　ーパンくず
　ーフッター
03.トップページ
04.
05.

***************************************/
/***************************************
01.Reset
***************************************/
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

:root {
	--bg-color: #fff;
	--y-bg-color:#F6E276;
	--o-bg-color:#F2CA8A;
	--do-bg-color:#F95700;
	--g-bg-color:#92C4A9;
	--b-text-color: #003E6A;
	--o-text-color: #F95700;
	--text-color: #1B1B1B;
	--text-hover-color: #D74F4F;
	--accent-color:#6C6C6C;
	--b-accent-color:#65A5D2;
	--link-color:#003E6A;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
	box-sizing: border-box;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
html {
	/*overflow-x: hidden;*/
}

ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/***************************************
02.共通
***************************************/
body {
	font-size: 14px;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 400;
	text-align: justify;
	-webkit-text-size-adjust: 100%;
	color: var(--text-color);
	background-color: var(--y-bg-color);
}

@media screen and (min-width:768px) {
	body{
		font-size: 16px;
	}
	body:after{
		background-size:auto contain;
		height: 870px;
	}
}

h1, h2, h3, h4, h5, h6 {
}
a {
	color: var(--link-color);
	word-break: break-all;
	text-decoration: none;
	z-index: 10;
}
a.text-o {
	color: var(--o-text-color);
	text-decoration: underline;
}
@media screen and (min-width:768px) {
	a:hover {
		color: var(--link-color);
		opacity: 0.7;
	}
}

img {
	width: 100%;
	max-width: 100%;
	vertical-align: middle;
}
small{
	font-size: 0.9rem;
}
strong{
	font-weight: 700;
}

section {
	padding: 40px 0 40px;
	position: relative;
	overflow-y:visible;
}
section .inner p{
	line-height: 1.8em;
}
section h2 {
	text-align: center;
	color: var(--o-text-color);
	font-weight: 900;
}
.ttl-img {
	height: 43PX;
	width: auto;
	text-align: center;
	margin-bottom: 8px;
}
.ttl-img img {
	height: 100%;
	width: auto;
}
/*section h2 {
	background-repeat: no-repeat;
	background-position: center top;
	background-size: 100%;
	margin: 30px auto;
	text-indent: -9999px;
}
section#news h2{
	width: 175px;
	height: 27px;
	background-image:url(../img/news.png);
	margin-bottom: 10px;
}
section#intro h2{
	width: 175px;
	height: 64px;
	background-image:url(../img/story.png);
}
section#cast h2{
	width: 144px;
	height: 58px;
	background-image:url(../img/cast.png);
}
section#ticket h2{
	width: 140px;
	height: 58px;
	background-image:url(../img/ticket.png);
}
section#goods h2{
	width: 111px;
	height: 58px;
	background-image:url(../img/goods.png);
}
section#caution h2{
	width: 171px;
	height: 58px;
	background-image:url(../img/caution.png);
}
section#faq h2{
	width: 242px;
	height: 58px;
	background-image:url(../img/faq.png);
}*/
section .inner{
	padding: 0 20px;
}
a.bt{
	font-family: "Noto Sans JP", sans-serif;
	background: var(--do-bg-color);
	border: 1px solid #fff;
	color: #fff;
	display: inline-block;
	padding: 6px 24px;
	border-radius: 30px;
	font-size: 14px;
	font-weight: bold;
}

@media screen and (min-width:768px) {
	section{
		padding: 48px 0 0 0;
	}
}

/*a[href^="tel:"]{
	color: var(--text-color);
}*/

@media screen and (max-width:767px) {
	section .inner {
		padding: 0 4%;
	}
}


/*------------チケット-----------------*/

.ticket {
	z-index: 80;
	position: fixed;
	bottom: 10px;
	right: 10px;
}
.ticket  img{
	width:146px;
	height: auto;
}
@media screen and (min-width:1024px) {
	.ticket {
		position: fixed;
		bottom: 5%;
		right: 5%;
		padding: 0px;
		z-index: 100;
	}
	.ticket a{
		display: block;
		transition: all 0.5s 0s ease;
	}
	.ticket a:hover{
		transform: rotate(10deg);
	}
	.ticket img{
		width: 134px;
	}
}

@media screen and (max-width:768px) {
	.ticket {
		z-index: 95;
		position: fixed;
		bottom: 7px;
		right: 7px;
	}
	.ticket img {
		width: 100px;
		height: auto;
	}
}

/*------------ヘッダー-（ナビゲーション・ロゴ）----------------*/

/*ナビゲーション*/

	header{
	}
	#top-head {
		position: fixed;
		display: inline-block;
		width: 100%;
		z-index: 100;
	}
	.header-info, .header-nav-list a span {
		display: none;
	}
	.header-inner {
		padding: 5px 15px 15px;
		z-index: 100;
		width: 100%;
		position: relative;
	}
	.header-nav {
		width: 100%;
		margin: 0 auto;
		padding-top: 60px;
		background: var(--bg-color);
		z-index: 90;
	}
	.header-nav-list {
		display: block;
		z-index: 100;
	}
	.header-nav-list li{
		padding: 20px 0;
	}
	.header-nav-list li a span{
		display: block;
		margin: auto;
		text-indent: -9999px;
		background-repeat: no-repeat;
		background-position: center top;
		background-size: 100%;
	}
	.header-nav-list li:nth-of-type(1) a span{
		width: 220px;
		height: 28px;
		background-image:url("../img/nav-introduction.png");
	}
	.header-nav-list li:nth-of-type(2) a span{
		width: 100px;
		height: 27px;
		background-image:url("../img/nav-news.png");
	}
	.header-nav-list li:nth-of-type(3) a span{
		width: 200px;
		height: 33px;
		background-image:url("../img/nav-personality.png");
	}
	.header-nav-list li:nth-of-type(4) a span{
		width: 116px;
		height: 32px;
		background-image:url("../img/nav-tickets.png");
	}
	.header-nav-list li:nth-of-type(5) a span{
		width: 120px;
		height: 30px;
		background-image:url("../img/nav-access.png");
	}
	.header-nav-list li:nth-of-type(6) a span{
		width: 106px;
		height: 27px;
		background-image:url("../img/nav-goods.png");
	}
	.sp_header {
		display: flex;
	}

																															/*ヘッダー*/
																														header {
																																					  height: 60px;
																														}	
	header nav{
		display: none;
		position: fixed;
		top:100px;
		width: 100%;
		left: 0;
	}

	header nav ul {
		padding: 0;
	}
    header nav ul li a {
		padding: 16px;
    }
	header nav ul a {
		font-weight: bold;
	}
	header nav ul{
		display: block;
		margin: 0 auto;
		width: 100%;
        height: 100%;
		padding-left: 0;
	}
	header nav ul li{
		width: 76%;
		margin: 0 auto;
		text-align: center;
	}
	header nav ul li:last-child{
		border: none;
	}
	header nav ul li a{
		display: block; 
	}
	header nav ul a:hover::after {
		display: none;
	}

      /*開閉ボタン*/
	#nav_toggle{
		display: block;
		width: 30px;
		height: 30px;
		position: fixed;
		top: 12px;
		z-index: 100;
		right: 10px;
	}
	#nav_toggle div {
		position: relative;
	}
	#nav_toggle span{
		display: block;
		height: 2px;
		background: #56AFCB;
		position:absolute;
		width: 100%;
		left: 0;
		-webkit-transition: 0.5s ease-in-out;
		-moz-transition: 0.5s ease-in-out;
		transition: 0.5s ease-in-out;	
	}
	#nav_toggle.ticket-area{
		background: #56AFCB;
	}
	#nav_toggle span:nth-child(1){
		top:0px;
	}
	#nav_toggle span:nth-child(2){
		top:12px;
	}
	#nav_toggle span:nth-child(3){
		top:24px;
	}
	
	/*開閉ボタンopen時*/
	.open #nav_toggle span:nth-child(1) {
		top: 12px;
	   -webkit-transform: rotate(135deg);
		-moz-transform: rotate(135deg);
		transform: rotate(135deg);
	}
	.open #nav_toggle span:nth-child(2) {
		width: 0;
		left: 50%;
	}
	.open #nav_toggle span:nth-child(3) {
		top: 12px;
		-webkit-transform: rotate(-135deg);
		-moz-transform: rotate(-135deg);
		transform: rotate(-135deg);
	}
	.header-nav > ul > li a {
		display: block;
		position: relative;
		text-decoration: none;
		padding: 15px 15px;
		font-size: 30px;
		font-weight: bold;
		z-index: 2;
	}
	header nav ul a:hover {
		text-decoration: none;
		color: #fff;
	}

	header nav {
		display: none;
		position: fixed;
		top: 0px;
		width: 100%;
		height: 100%;
		left: 0;
	}

	@media screen and (min-width:1024px) {
		#nav_toggle{
			display: none;
		}
		.header-nav{
			display: block;
			background: none;
			width: 100%;
			margin: 0;
			position: absolute;
		}
		.header-nav-list {
			display:none;
		}
		header nav ul{
			position: fixed;
			width: 33%;
			right: 0;
			top: 50%;
			transform: translateY(-50%);
			margin: 0;
			height: auto;
			padding-left: 5%;
		}
		header nav ul li{
			text-align: left;
		}
		.header-nav > ul > li a{
			padding: 0;
			margin: 0;
			display: inline-block;
			width: auto;
			position: relative;
			z-index:2;
		}
		.header-nav > ul > li a:hover{
			opacity: 1;
		}
		.header-nav > ul > li a.is-current:before,
		.header-nav > ul > li a:hover:before{
			content: "";
			display: block;
			background-color: var(--g-bg-color);
			position: absolute;
			padding: 10px 20px;
			top: -10px;
			left: -20px;
			width: 100%;
			height: 100%;
			border-radius: 40px;
			z-index: -1;
		}
	}
	@media screen and (max-width:1023px) {
		.header-nav-list{
			display: block!important;
		}
		.header-nav-list li {
			padding: 16px 0;
		}
		.header-nav-list li a span {
			display: block;
			margin: 0 auto;
			text-indent: 0px;
			background-repeat: no-repeat;
			background-position: center top;
			background-size: 100%;
			font-size: 16px;
		}
		.header-nav-list li:nth-of-type(1) a span,
		.header-nav-list li:nth-of-type(2) a span,
		.header-nav-list li:nth-of-type(3) a span,
		.header-nav-list li:nth-of-type(4) a span,
		.header-nav-list li:nth-of-type(5) a span,
		.header-nav-list li:nth-of-type(6) a span{
			width: 100%;
			height: auto;
			background-image:none;
		}
		.header-nav-list li a {
			content: "";
			display: block;
			background-color: var(--y-bg-color);
			border: 1px solid #56AFCB;
			color: var(--text-color);
			position: absolute;
			padding: 9px 0!important;
			width: 100%;
			height: 100%;
			border-radius: 40px;
			z-index: -1;
		}
		header nav ul li {
			width: 56%;
		}
	}


/*------------共通-----------------*/
.contents {
	position: relative;
	background-color: var(--bg-color);
	z-index: 90;
	margin-top: 100vh;
	padding-top: 24px;
}
.contents .c-inner {
	width: 33%;
	max-width: 450px;
	min-width: 450px;
	margin: 0 auto;
}
@media screen and (min-width:1190px) {
	.contents {
		position: relative;
		background-color: var(--bg-color);
		z-index: 90;
		margin-top: 100vh;
	}
}
@media screen and (max-width:767px) {
	.contents .c-inner {
		width: 100%;
		max-width: 100%;
		min-width: 100%;
	}
}
/***************************************
03.ローディング
***************************************/
#loading {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
    background-color: #162328;
    transition: all 1s;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
}
.loaded {
  opacity: 0;
  visibility: hidden;
}

/***************************************
03.メインビジュアル
***************************************/
#mv {
	position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}
#mv .mv-img{/*
	background: url("../img/mv.jpg") no-repeat center top/100%;
	height: 100%;
	max-width: 450px;
	padding-top: calc(1466 / 750 * 100%);
	margin: auto;*/
	text-align: center;
	height: 100vh;
	width: auto;
	animation-name:blurAnime;
	animation-duration:1.5s;
	animation-fill-mode:forwards;
}
#mv .mv-img img {
	height: 100%;
	width: auto;
	max-width: max-content;
}
@keyframes blurAnime{
	from {
	  filter: blur(10px);
	  transform: scale(1.02);
	  opacity: 0;
	}
  
	to {
	  filter: blur(0);
	  transform: scale(1);
	  opacity: 1;
	}
}

@media screen and (max-width:767px) {
	#mv {
		position: static;
		transform: translateX(0);
	}
	#mv .mv-img {
		height: auto;
    	width: 100%;
	}
	#mv .mv-img img {
		width: 100%;
		height: auto;
	}
	.contents {
		margin-top: 0;
		padding-top: 0;
	}
	
}

@media screen and (min-width:768px) {
	#mv h1 {
		background-position:center 240px;
		background-size: 90%;
	}
}

/***************************************
04.cast-text
***************************************/
section#cast .inner {
    padding: 0;
}
.ppersonality-img {
	background: url("../img/bg.png") no-repeat center top / 100% auto;
	padding-top: calc(979 / 1320* 100%);
	text-align: center;
	position: relative;
}
.ppersonality-img .cast-img {
	top: 9%;
	position: absolute;
	right: 0;
	left: 0;
	margin: 0 auto;
}
.ppersonality-img .cast-img img{
	width: 74%;
	padding-top: 20px;
}
.ppersonality-img p {
	line-height: 1em!important;
}
.ppersonality-img .name {
	position: absolute;
	bottom: 11%;
	right: 0;
    left: 0;
}
.ppersonality-img .jp {
	font-size: 24px;
	font-weight: bold;
}
.ppersonality-img .en {
	font-family: "Manrope", sans-serif;
	font-size: 12px;
	font-weight: 500;
}
@media screen and (min-width:768px) and  (max-width:1023px) {
	.ppersonality-img .cast-img img {
		width: 74%;
		padding-top: 20px;
	}
	.ppersonality-img .name {
		bottom: 12%;
	}
	.ppersonality-img .jp {
		font-size: 20px;
		font-weight: bold;
	}
}
#cast-text{
	margin-top: -100px;
	padding: 0;
}
#cast-text .cast-text-inner {
	text-align: center;
	padding-bottom: 50px;
	line-height: 2em;
}

#cast-text p span{
	font-size: 130%;
}
@media screen and (min-width:768px) {
	#cast-text{
		margin-top: -100px;
		padding: 0;
	}
}
@media screen and (max-width:767px) {
	.ppersonality-img {
		background: url(../img/bg.png) no-repeat center top / 115% auto;
		padding-top: calc(1200 / 1320 * 100%);
		text-align: center;
		position: relative;
	}
	.ppersonality-img .cast-img img {
		width: 87%;
    	padding-top: 11px;
	}
	.ppersonality-img .name {
		position: absolute;
        bottom: 18%;
	}
	.ppersonality-img .cast-img {
		top: 13%;
	}
}
@media screen and (max-width:435px) {
	.ppersonality-img .name {
        bottom: 12%;
	}
}

/***************************************
04.news
***************************************/
#news ul {
	max-height: 170px;
	overflow: auto;
	background: var(--y-bg-color);
	padding: 10px 10px;
}
#news ul::-webkit-scrollbar {
	width: 5px;
	height: 5px;
	border-radius: 10px;
  }
  #news ul::-webkit-scrollbar-thumb {
	--bg-opacity: 1;
	width: 5px;
	height: 5px;
	border-radius: 10px;
  }

#news ul li {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	line-height: 1.7em;
	padding: 5px 0px;
	box-sizing: border-box;
	font-size: 14px;
	border-bottom: 1px solid #fff;
}

#news ul li time {
	width: 5em;
}
section#news .inner {
	padding: 0;
}
#news ul li p {
	width: calc(100% - 6em);
	line-height: 1.4em;
	padding-top: 2px;
}
#news ul li a {
	color: var(--text-hover-color);
}

.twitter-area{
	text-align: center;
	padding: 20px 0 0;
}
.twitter-area a img{
	width: 29px;
	display: block;
	margin: 0 auto;
}
@media screen and (min-width:768px) {
	#news ul {
		max-height: 124px;
	}
}
@media screen and (max-width:767px) {
	section#news {
		padding: 40px 0 8px;
	}
	#news .inner {
		width: 92%;
		margin: 0 auto;
		padding: 0;
	}
	#news ul {
		padding: 0 10px 10px 10px;
	}
}

/***************************************
04.イントロダクション
***************************************/

#intro{
	position: relative;
	background: var(--y-bg-color);
	padding: 30px 16px;
	font-weight: 500;
	text-align: center;
}
#intro .ttl-img{
	margin-bottom: 24px;
}
section#intro h2{
	margin-bottom: 0;
}

#intro p{
	padding-bottom: 1em;
	line-height: 1.9em;
}
@media screen and (max-width:767px) {
	div.fixed-logo,
	div.fixed-logo.blur{
		display: none;
	}

}

@media screen and (min-width:1024px) {
	div.fixed-logo,
	div.fixed-logo.blur{
		display: block;
	}
	div.fixed-logo .fixed{
		margin-top: -100vh;
	}
	div.fixed-logo div.logo-img{
		display: none;
		align-items: center;
		justify-content: center;
		position: fixed;
		width: 32%;
		opacity: 0;
		height: 100%;
		z-index: 110;
	}
	div.fixed-logo img{
		width: 90%;
	}
	div.fixed-logo div.logo-img.blur{
		animation-name:blurAnime3;
		animation-duration:1.5s;
		animation-fill-mode:forwards;
		text-align: center;
	}
}
	@keyframes blurAnime3{
		from {
		filter: blur(10px);
		transform: scale(1.02);
		opacity: 0;
		}
		to {
		filter: blur(0);
		transform: scale(1);
		opacity: 1;
		}
}

@media screen and (min-width:1351px)  {
	div.fixed-logo div.logo-img {
        width: 35%;
    }
}
@media screen and (min-width:1301px) and (max-width:1350px) {
	div.fixed-logo div.logo-img {
        width: 33%;
    }
}
@media screen and (min-width:1024px) and (max-width:1300px) {
	div.fixed-logo div.logo-img {
        width: 32%;
    }
}

/***************************************
04.キャスト
***************************************/
#cast{
	position: relative;
}
#cast ul li{
	margin-bottom: 40px;
	position: relative;
}
#cast ul li img{
	padding-bottom: 15px;
}
#cast ul li p{
	padding-bottom: 1em;
}
#cast ul li p.name{
	font-size: 24px;
	margin-top: -5px;
	line-height: 1em;
	padding-bottom: 0;
	font-weight: 700;
}
#cast ul li p.member{
	text-align: center;
	margin-top: 0;
}
#cast ul li p.name span.chara{
	font-size: 12px;
	display: inline-block;
	padding-left: 1em;
}

.modal-open-button {
  padding: 8px 20px;
  background: white;
  border-radius: 60px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  margin-left: 1.2em;
  font-size: 14px;
  font-weight: 700;
  line-height: 1em;
  position: relative;
}
#cast ul li .flex{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
#cast ul li .flex.center{
	justify-content: center;
	margin-right: 1.2em;
	padding-top: 1em;
}

.staff {
	padding-bottom: 20px;
}
.staff h3{
	font-size: 24px;
	text-align: center;
	margin-bottom: 30px;
	position: relative;
	font-weight: 700;
}
.staff h3:before,
.staff h3:after{
	content: "";
	width: 98px;
	height: 7px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}

@media screen and (min-width:768px) {
	.staff h3:before,
	.staff h3:after{
		width: 128px;
	}
}
.staff p {
	margin-bottom: 20px;
}
.staff p .modal-open-button{
	padding: 4px 10px;
}

@media screen and (min-width:768px) {
	.staff p .modal-open-button{
		padding: 4px 20px;
	}
}

.modal {
    display: none;
    height: 100vh;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}
.modal__bg {
    background: #162328;
    opacity: 0.3;
    height: 100vh;
    position: absolute;
    width: 100%;
}

.modal__content {
    height:auto;
	max-height: 90vh;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
	max-width: 410px;
    box-sizing: border-box;
}
@media screen and (min-width:768px) {
	.goods .modal__content{
		max-width: 852px;
	}
}

.modal__content .modal-inner {
    height: auto;
	max-height: 90vh;
    overflow-y: auto;
    background: #F4F4EA;
	color: var(--b-text-color);
	box-shadow: 0px 0px 20px 16px rgba(0, 0, 0, 0.1);
	border:none;
	overflow-y: scroll;
    padding: 20px;
}
.goods .modal__content .modal-inner{
	background: #062E53;
	color: white;
	padding-top: 30px;
}
@media screen and (min-width:768px) {
	.goods .modal__content .modal-inner{
		padding: 50px;
	}
}
.modal__content .modal-inner > div{
	padding-bottom: 20px;
}
.modal__content .modal-inner h4{
	font-size: 18px;
	font-weight: 700;
	padding-bottom: 5px;
}
.modal__content .modal-inner a.bt{
	display: block;
	margin: 0px auto;
	padding: 10px 0;
	text-align: center;
	width: 12em;
}
.modal__content .modal-inner p{
	padding-bottom: 1em;
}

.modal__content .modal-inner p.name{
	font-size: 24px;
	line-height: 1em;
	font-weight: 700;
}
.modal__content .modal-inner p.name span.chara{
	font-size: 12px;
	display: block;
}
.modal__content .modal-inner p.txt span{
	padding-left: 1.2em;
	display: block;
	position: relative;
}
.modal__content .modal-inner p.txt span:before{
	content: "※";
	display: inline-block;
	position: absolute;
	top: 0;
	left: 0;
}
.modal__content .modal-inner p.txt a{
	text-decoration: underline;
}
.goods .modal__content .modal-inner p.name{
	font-size: 18px;
	line-height: 1.6em;
	padding-bottom: 0;
}
.goods .modal__content .modal-inner > div{
	padding-bottom: 0;
}
.goods .modal__content .modal-inner .title p.price{
	position: relative;
	text-align: right;
}
.goods .modal__content .modal-inner p{
	padding-bottom: 0.5em;
}
@media screen and (min-width:768px) {
	.goods .modal__content .modal-inner p.name{
		font-size: 20px;
		line-height: 1.6em;
	}
	.goods .modal__content .modal-inner p.name br{
		display: none;
	}
	.goods .modal__content .modal-inner p.price strong {
		font-size: 20px;
	}
}

/*バツボタン*/

.batsu {
    display: block;
    position: fixed;
    width: 46px;
    height: 46px;
	top: 5px;
	right: 5px;
	background: transparent;
    border-radius: 50%;
	background: #F4F4EA;
	border-radius: 0 0 0 20px;
}
.goods .batsu {
	background: transparent;
	width: 20px;
	height: 20px;
}

.batsu::before,
.batsu::after {
    /* 共通設定 */
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1px;
    /* 棒の幅（太さ） */
	height: 20px;
    background:var(--b-text-color);
}
.goods .batsu::before,
.goods .batsu::after {
	background: white;
}
@media screen and (min-width:768px) {
	.goods .batsu {
		background: transparent;
		width: 30px;
		height: 30px;
		top: 10px;
		right: 10px;
	}
	.goods .batsu::before,
	.goods .batsu::after {
		height: 30px;
	}
}

.batsu::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.batsu::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

/***************************************
07.チケット #ticket
***************************************/
#ticket{
	padding-top: 60px;
}
#ticket > div.inner {
	background: var(--o-bg-color);
	padding-top: 24px;
	padding-bottom: 80px;
	position: relative;
	z-index: 5;
}
.ticket-head {
	text-align: center;
	padding-top: 12px;
}
.ticket-head h3 {
	font-size: 24px;
	font-weight: bold;
}
.ticket-head .place,
#access .place {
	font-size: 16px;
	font-weight: bold;
}
.ticket-head .place a {
	color: #fff;
	text-decoration: underline;
}
.ticket-head .place a::before,
#access .place a::before{
	content: "";
	display: inline-block;
	background: url("../img/mappin.svg") no-repeat;
	background-size: contain;
	width: 10px;
	height: 15px;
	padding-right: 2px;
}
.ticket-head .day-time {
	font-family: "Manrope", sans-serif;
	margin: 8px auto 16px;
}
.ticket-head .day-time .text-01 {
	font-size: 18px;
	font-weight:600;
	line-height: 1.2em;
}
.ticket-head .day-time .text-02 {
	font-size: 14px;
	font-weight: 500;
	line-height: 1.2em;
}
.price {
	margin: 24px 0 0;
}
.price .price-area {
	width: 50%;
    margin: 10px auto 24px;
}
.price h4 {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 14px;
	font-weight: 500;
}
.price h4::before,
.price h4::after {
	content: "";
	display: inline-block;
	background: url("../img/line-short.png") no-repeat;
	background-size: contain;
	width: 32%;
	height: 6px;
}
.price-box {
	display: flex;
	justify-content: space-between;
}
.price .text-01 {
	font-size: 18px;
	font-weight: 500;
}
.price .text-02 .text-01-1 {
	font-family: "Noto Sans JP", sans-serif;
	font-size: 24px;
	font-weight: bold;
}
.price .text-02 .text-01-2 {
	font-family: "Noto Sans JP", sans-serif;
	font-size: 16px;
	font-weight: bold;
}
.price .text-02 .text-01-3 {
	font-size: 14px;
	font-weight: 500;
}

.price-2 {
	margin-top:  4px;
}
.price-2 .price-box {
    display: block;
    text-align: center;
}

.sell{
	border: 1px solid var(--accent-color);
	border-radius: 6px;
	padding: 0 15px 30px 15px;
	text-align: center;
}
.sell h4{
	text-align: center;
	margin-top: -15px;
}
.sell h4 span{
	display: inline-block;
	padding: 0 10px;
	background: var(--o-bg-color);
	font-size: 14px;
}
.sell .sell-box{
	padding-top: 16px;
}
.sell .sell-box ul {
	text-align: left;
	font-size: 12px;
}
.sell .sell-box ul li {
	padding-left: 1em;
	margin-bottom: 8px;
}
.sell .sell-box ul li:last-child {
	margin-bottom: 0;
}
.sell .sell-box ul li::before {
	content: "※";
	margin-left: -1em;
}
.sell .sell-box .title p.text-01 {
	font-size: 18px;
	font-weight: bold;
	line-height: 1.4em;
}
.sell .sell-box .title p.text-02 {
	font-size: 14px;
	font-weight: 500;
	line-height: 1.4em;
}
.sell .sell-box .title.br{
	line-height: 1.4em;
}
.sell .sell-box .title div.soldout{
	display: inline-block;
	padding: 5px 10px;
	font-size: 14px;
	color: var(--b-text-color);
	background: var(--accent-color);
	position: absolute;
	bottom: -5px;
	right: -10px;
	transform: rotate(-9deg);
	z-index: 10;
}
.sell .sell-box .date{
	font-size: 14px;
	font-weight: 400;
	padding: 8px 0;
	line-height: 1.7em;
}
.sell .sell-box .date span {
	font-size: 16px;
	font-weight: 500;
}
.sell .sell-box a.bt{
	margin: 8px auto 0;
	padding: 3px 20px;
	min-width: 150px;
	font-size: 14px;
}
a.bt.nolink{
	pointer-events:none;
	background: #B0B0B0;
}
.line-deco {
	width: 100%;
	margin: 16px auto 0;
}
@media screen and (max-width:767px) {
	.price .price-area {
		width: 60%;
		margin: 14px auto 30px;
	}
	.price h4::before, .price h4::after {
		content: "";
		display: inline-block;
		background: url(../img/line-short.png) no-repeat;
		background-size: contain;
		width: 34%;
		height: 6px;
	}
	#ticket > div.inner {
		padding-bottom: 21px;
	}
	section#ticket {
		padding: 0;
	}
}

/***************************************
08.チケットに関する注意事項 #ticket
***************************************/
.attention{
	padding: 24px 0px 4px;
	font-size: 14px;
}
.attention h4{
	text-align: center;
	font-weight: 700;
	margin-bottom: 8px;
	font-size: 16px;
}
.attention ul{
	margin-bottom: 20px;
}
.attention ul li{
	margin-bottom: 0.5em;
	padding-left: 1em;
	position: relative;
	line-height: 1.6em;
	font-size: 14px;
}
.attention ul.dot li::after{
	content: "・";
	display: inline;
	position: absolute;
	top: 0;
	left: 0;
}
.attention ul.kome li::after{
	content: "※";
	display: inline;
	position: absolute;
	top: 0;
	left: 0;
}

.accordion {
	padding: 0px 20px 16px;
	cursor: pointer;
	position: relative;
	font-weight: bold;
	text-decoration: underline;
}

/* 矢印 */
.accordion::after {
	content: "";
	background: url("../img/allow.png")no-repeat;
	background-size: contain;
	width: 10px;
	height: 5px;
	position: absolute;
	margin-left: 7px;
	top: 36%;
	transform: translateY(-50%) rotate(180deg);
	transition: transform .3s ease;
}

/* 開いた時 */
.accordion.is-open::after {
	transform: translateY(-50%);
}

.accordion-inner {
	padding: 0 20px;
	overflow: hidden;
	max-height: 0;
	transition: max-height .4s ease, padding .4s ease;
}

/* 開いた状態 */
.accordion-inner.is-open {
	padding: 0 20px 20px;
	max-height: 1000px; /* 中身より大きければOK */
}





.contact{
	text-align: center;
	padding-top: 20px;
}
.contact .f-1 {
	font-size: 14px;
}
.contact .f-2 {
	font-size: 18px;
	font-weight: bold;
}
.contact .f-3 {
	font-size: 14px;
	font-weight: 500;
}
.contact .f-3 a {
	font-family: "Manrope", sans-serif;
	color: var(--o-text-color);
}
.contact .f-3 span {
	font-size: 14px;
	font-weight: 400;
}

.produce{
	padding: 40px 0;
	text-align: center;
}
.produce .flex{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	align-items: center;
	padding-top: 30px;
}
.produce .flex a{
	display: block;
	width: 48%;
}
.produce .flex a img{
	width: 80%;
}
@media screen and (max-width:767px) {
	.contact {
		padding-bottom: 24px;
	}
}

/***************************************
10.GOODS
***************************************/
section#goods {
    background: var(--y-bg-color);
	border-radius: 8px;
	margin-top: 48px;
	padding: 15px 0;
}
.comingsoon{
	text-align: center;
	font-size: 14px;
	font-weight: 500;
}

#goods h4{
	font-size: 16px;
	font-weight: 700;
	padding-bottom: 10px;
}
#goods .goods-bt{
	padding: 20px 0;
}
#goods .goods-bt a.bt{
	background: var(--accent-color);
	color: var(--b-text-color);
	font-weight: 700;
}
#goods ul li{
	padding-bottom: 20px;
}
#goods ul li a{
	color: white;
	text-align: left;
	pointer-events: none;
}
.goods-link img{
	display: block;
	margin-bottom: 5px;
}
.title{
	position: relative;
}
.title p.name{
	font-size: 15px;
	font-weight: bold;
}
.title p.price{
	position: absolute;
	bottom: 0;
	right:0;
}
.title p.price strong{
	font-size: 16px;
	font-weight: bold;
}
@media screen and (min-width:768px) {
	.goods-link img{
		margin-bottom: 20px;
	}
	#goods ul li a{
		pointer-events:auto;
	}
}

@media screen and (max-width:768px) {
	section#goods {
		width: 96%;
		margin: 48px auto 0;
	}
}

/***************************************
10.Access
***************************************/
section#access {
	background: var(--g-bg-color);
	padding: 30px 0;
}
section#access h2 {
    color: var(--y-bg-color);
}
.address-info {
	padding-top: 8px;
}
#access .place a {
	color: #fff;
	text-decoration: underline;
	display: flex;
    justify-content: center;
    align-items: center;
	padding-bottom: 8px;
}
/*#sec_5 .place a:hover{
	color: var(--g-bg-color);
}*/
#access .place a:hover::before {
    content: "";
    background: url("../img/mappin.svg") no-repeat;
	width: 13px;
    height: 20px;
    display: inline-block;
    background-size: contain;
    padding-right: 8px;
    vertical-align: middle;
}
#access .access__text-1 {
	text-align: center;
	font-size: 14px;
	padding-bottom: 8px;
}
.g_map_inner {
    width: 100%;
    aspect-ratio: 358 / 192;
}
.g_map_inner iframe {
    width: 100%;
    height: 100%;
}

/***************************************
12.注意事項
***************************************/
#caution .inner{
	font-size: 14px;
}
section#caution h2 {
	font-size: 12px;
	font-weight: bold;
	padding: 8px 0;
}

#caution ul li{
	margin-bottom: 0.5em;
	padding-left: 1em;
	position: relative;
	line-height: 1.6em;
	font-size: 14px;
}
#caution ul li::after{
	content: "・";
	display: inline;
	position: absolute;
	top: 0;
	left: 0;
}

.sponsored {
	margin: 24px auto 48px;
	text-align: center;
}
.sponsored p{
	font-size: 14px;
	font-weight: bold;
}
.sponsored h3 {
	font-size: 14px;
	padding-top: 24px;
}
.bn-area {
	padding-top: 4px;
	width: 80%;
    margin: 0 auto;
}
.bn-area ul li {
	margin-bottom: 4px;
}

@media screen and (max-width:767px) {
	section#caution {
		padding-bottom: 0;
	}
}


/*------------フッター-----------------*/
footer {
	padding: 27px 0;
	bottom: 40px;
	z-index: 10;
	background: var(--y-bg-color);
}
footer p {
	text-align: center;
	font-size: 12px;
	font-weight: 300;
	font-family: "Manrope", sans-serif;
	letter-spacing: 0.5px;
}


/***************************************
13.pagetop
***************************************/
#pagetop {
    position: fixed;
    bottom: 5px;
    right: 5px;
    float: right;
    width: 60px;
    height: 60px;
	z-index: 1000;
}
#pagetop a{
	width: 60px;
	height: 60px;
	color: white;
	line-height: 60px;
	background: #000;
	display: block;
	border-radius: 50%;
	text-align: center;
}
#pagetop img {
    width: 100%;
    height: auto;
}