@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: #11244A;
	--p-bg-color:#F4F4EA;
	--b-bg-color:#F4F4EA;
	--b-text-color: #333;
	--p-text-color: #5E4D7D;
	--text-color: #fff;
	--accent-color:#65A5D2;
	--bt-color:#EBA223;
	--link-color:#fff;
	--b-link-color:#11244A;
	--w-bg-color:rgba(255 255 255/0.7);
	--pink-text-color:rgba(186,116,129,1);
	--grad-color:linear-gradient(135deg, rgba(186,116,129,1) 0%, rgba(94,77,125,1) 100%);
	--grad-rev-color:#65A5D2;
	--h-bg-color:linear-gradient(90deg, rgba(186,116,129,1) 70%, rgba(186,116,129,0) 100%);
	--current-bg-color:linear-gradient(90deg, rgba(94,77,125,0) 0%, rgba(94,77,125,1) 30%, rgba(94,77,125,0) 100%);
	--menu-font:"Noto Sans JP", serif;
	--default-font:"Noto Sans JP", serif;
	--daruma-font:"Darumadrop One", sans-serif;
	--box-shadow:0px 4px 4px rgba(0,4,4,0.25);
	--text-shadow:0px 4px 4px rgba(0,0,0,0.25);
}

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;
	color: #000;
	font-family:var(--default-font);
	font-weight: 400;
	text-align: justify;
	-webkit-text-size-adjust: 100%;
	color: var(--text-color);
	background:var(--bg-color);
	background-attachment: fixed;
	overflow-x: hidden;
}
body:after{
	content: "";
	width: 100%;
	height:100vh;
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	background:#020520 url(../img/back.webp) no-repeat left top/300%;
	z-index: -2;
}
body::before{
	content: "";
	width: 100%;
	height:100vh;
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	background: url(../img/chara.png) no-repeat 25% 90% / 10%;
	z-index: -1;
}
@media screen and (min-width:768px) {
	body{
	}
	body:after{
		background:#020520 url(../img/back.webp) no-repeat left bottom/cover;
		background-size:auto contain;
	}
}

h1, h2, h3, h4, h5, h6 {
}
a {
	color: var(--link-color);
	word-break: break-all;
	text-decoration: none;
	z-index: 10;
}
@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.8rem;
	display: inline-block;
	line-height: 1.4em;
	font-weight: 400;
}
strong{
	font-weight: 600;
}

section {
	padding: 40px 0 40px;
	position: relative;
	overflow-y:visible;
}
section .inner p{
	line-height: 1.8em;
}
section h2 {
	font-family: var(--daruma-font);
	font-size: 54px;
	padding: 0px 0 20px 0;
	text-align: center;
	line-height: 3.6rem;
	color: var(--bt-color);
	text-shadow: var(--text-shadow);
}
section h2 small{
	font-family:var(--default-font);
	display: block;
	text-align: center;
	text-shadow: none;
}
section h2.jp {
	font-family: var(--default-font);
	font-size: 32px;
	font-weight: 700;
}
h4{
	font-size: 16px;
	text-align: center;
	font-weight: 600;
	margin-top: 10px;
	margin-bottom: 10px;
}
h5{
	text-align: center;
	font-weight: 600;
	padding-bottom: 5px;
}

section .inner{
	padding: 0 20px;
}

a.bt{
	background: var(--bt-color);
	color: var(--bg-color);
	display: inline-block;
	padding: 6px 25px;
	border-radius: 30px;
	position: relative;
}
a.bt:before{
	content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
	border-radius: 30px;
	background: var(--grad-rev-color);
	opacity: 0;
	transition: all 0.8s ease-in-out;
}
a.bt:hover{
	opacity: 1;
}
a.bt:hover::before {
    opacity: 1;
	transition: all 0.8s ease-in-out;
}
/*a.bt:hover{
	background: var(--grad-rev-color);
	background-position: 100% 0;
	opacity: 1;
	transition: all 0.8s ease-in-out;
}*/

dl{
	display: flex;
	justify-content: center;
	font-size: 14px;
	flex-wrap: wrap;
	margin-bottom: 1rem;
}
dl dt,
dl dd{
	text-align: left;
	padding-bottom: .5em;
}
dl dt{
	width: 40%;
	text-align: right;
	margin-right: 2%;
}
dl dd{
	width: 58%;
}

#last ul.sns{
	display: flex;
	justify-content: center;
	margin: 30px auto;
}
#last ul.sns li{
	padding: 0 20px;
}
ul.sns li a{
	display: block;
	width: 30px;
	height: 30px;
}
ul.sns li a img{
	width: 100%;
	display: block;
}

@media screen and (min-width:768px) {
	section{
		/*padding: 80px 0 0 0;*/
	}
	ul.sns.sp_only{
		display: none;
	}
	.sp_only{
		display: none;
	}
	section h2 {
		padding: 0px 0 10px 0;
	}
}

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

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

.ticket {
	z-index: 10;
	position: fixed;
	bottom: 20px;
	right: 0px;
	opacity: 0;
}
.ticket a{
	display: block;
	transition: all 0.5s 0s ease;
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 10;
}
.ticket  img{
	width:80px;
}
@media screen and (min-width:1024px) {
	.ticket {
		position: fixed;
		bottom: 5%;
		right: 5%;
		padding: 0px;
		z-index: 10;
	}
	.ticket a{
		display: block;
		transition: all 0.5s 0s ease;
	}
	.ticket a:hover{
		transform: rotate(10deg);
	}
	.ticket img{
		width:127px;
	}
}
/*------------ヘッダー-（ナビゲーション・ロゴ）----------------*/

/*ナビゲーション*/

	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:#020520 url(../img/back.webp) no-repeat left top/300%;
		z-index: 90;
	}
	.header-nav img.chara{
		position: absolute;
		bottom: 10%;
		right: 10px;
		width: 157px;
	}
	.header-nav-list {
		display: block;
		z-index: 100;
		font-weight: 600;
		font-size: 24px;
	}
	.header-nav-list li{
		padding: 10px 0;
		text-align: center;
	}
	.header-nav-list li a span{
		display: block;
		margin: auto;
	}
	.sp_header {
		display: flex;
	}
	.pc_logo_area {
		display: none;
	}
	.sp_logo_area {
		width: 60px;
		padding: 15px;
		display: block;
	}
	.sp-tickets {
		display: flex;
		height: auto;
		padding: 7px 10px;
		text-align: center;
		margin: 0 auto;
		box-sizing: border-box;
		width: 100%;
	}
	.sp-tickets a.sp-logo{
		display: block;
		background: #FF9EA2 url(../img/logo_s.svg) no-repeat center center/60%;
		text-indent: -9999px;
		border-radius: 50%;
		width: 80px;
		height: 80px;
		position: absolute;
		top: -10px;
		left: -10px;
	}

	.sp-tickets .tickets-img {
		width:78px;
		position: absolute;
		right: 80px;
	}
	.sp-tickets img {
		width: 100%;
		height: auto;
	}
	/*ヘッダー*/
	header {
		height: 60px;
	}
	header nav{
		display: none;
		position: fixed;
		top:100px;
		width: 100%;
		left: 0;
	}
	header nav ul{
		display: block;
		margin: 0 auto;
		width: 100%;
        height: 100%;
		padding: 0;
		padding-left: 0;
	}
	header nav ul li{
		width: 76%;
		margin: 0 auto;
		text-align: left;
	}
	header nav ul li:last-child{
		border: none;
	}
	header nav ul li a{
		display: block; 
		padding: 16px;
	}
	header nav ul a:hover::after {
		display: none;
	}
	header nav ul li > ul.sns {
		display: block;
		position: relative;
		right: auto;
		top: auto;
		margin: 20px auto;
		transform: none;
		width: 100%;
	}
	header nav ul li > ul.sns li {
		padding: 0 10px;
		width: auto;
	}

    /*開閉ボタン*/
	#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: var(--text-color);
		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: var(--accent-color);
	}
	#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: 10px 0px;
		font-size: 24px;
		font-weight: 600;
		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 (max-width:376px) {
		.header-nav-list li{
			padding: 0;
		}
		.header-nav img.chara{
			bottom: 10px;
			right: 10px;
			width: 127px;
		}
	}

	@media screen and (min-width:1024px) {
		.header-nav img.chara{
			display: none;
		}
		#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: 30%;
			right: 0;
			top: 44%;
			transform: translateY(-50%);
			margin: 0;
			height: auto;
		}
		header nav ul li{
			text-align: left;
			padding: 20px 0;
		}
		.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(--bt-color);
			position: absolute;
			padding: 3px 20px;
			top: -3px;
			left: -20px;
			width: 100%;
			height: 100%;
			border-radius: 40px;
			z-index: -1;
		}
		header nav ul li > ul.sns {
			width: 30%;
			margin: 0;
		}
		header nav ul li > ul.sns li{
			padding: 0;
		}
		header nav ul li > ul.sns li a{
			width: 30px;
		}
		header nav ul li > ul.sns li a.is-current:before,
		header nav ul li > ul.sns li a:hover:before{
			min-width:auto;
		}
	}
	@media screen and (max-width:1024px) {
		.header-nav-list{
			display: block!important;
			padding-top: 0px;
		}
	}


/*------------共通-----------------*/
.contents {
	position: relative;
	max-width: 450px;
	margin: 0 auto;
	overflow-x: hidden;
}
.contents:after{
	content: "";
	width: 100%;
	max-width: 450px;
	height:100vh;
	display: block;
	position: fixed;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	background:url(../img/content-back.webp) no-repeat center bottom/cover;
	z-index: -1;
}



/***************************************
03.ローディング
***************************************/
#loading {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
    background:#020520 url(../img/back.webp) no-repeat left top/300%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
	opacity: 1;
	transition: all 0.8s ease-out;
}

#loading .load{
		align-items: center;
		justify-content: center;
		position: fixed;
		width: 35%;
		height: 100%;
	}
	#loading .load img{
		width: 220px;
	}
	#loading .load.blur{
		animation-name:blurAnime3;
		animation-duration:1s;
		animation-fill-mode:forwards;
	}
	@keyframes blurAnime3{
		from {
		filter: blur(10px);
		transform: scale(1.02);
		opacity: 0;
		}
		to {
		filter: blur(0);
		transform: scale(1);
		opacity: 1;
		}
	}

#loading.hide{
	opacity: 0;
	z-index: -2;
}
.load{
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: -15%;
}
.loaded {
  opacity: 0;
  visibility: hidden;
}
#sample{
	width: 280px;
	height: 199px;
}
#logo path {
    fill:#fff; /* 塗りの色 */
}
#mask path {
    fill:none; /* 塗りの色 */
    stroke:#fff; /* 線の色 */
    stroke-width:21px; /* 線幅 */
    stroke-linecap:round; /* 線端の形状 */
    stroke-linejoin:round; /* 角の形状 */
}

@media screen and (min-width:768px) {
	#loading {
		background:#000 url(../img/back.webp) no-repeat center bottom/cover;
	}
	#sample{
		width: 500px;
		height: 355px;
	}
	.load{
		margin-top: -4%;
	}
}

/***************************************
03.メインビジュアル
***************************************/
#mv {
	position: relative;
	width: 100%;
	z-index: 100;
}
#mv .mv-img{
	background: url(../img/mv.webp) no-repeat center top / 100%;
    height: 100%;
    width: 100%;
    max-width: 450px;
    padding-top:calc(1669 / 1132* 100%);
    margin: auto;
    opacity: 0;
}
#mv .mv-img.display{
	animation-name:blurAnime;
	animation-duration:1.5s;
	animation-fill-mode:forwards;
}
#mv div.name{
	position: absolute;
	bottom: 60px;
	text-align: center;
	left: 50%;
	transform: translateX(-50%);
	text-indent: -9999px;
	width: 183px;
	height: 48px;
	background: url(../img/name.png) no-repeat center center/100%;
}
@keyframes blurAnime{
	from {
	  filter: blur(10px);
	  transform: scale(1.02);
	  opacity: 0;
	}
  
	to {
	  filter: blur(0);
	  transform: scale(1);
	  opacity: 1;
	}
}
@media screen and (min-width:768px) {
	#mv {
		height: 664px;
	}
	#mv .mv-img{
        position: relative;
        margin: 0 auto;
        height: 100%;
        padding: 0;
        background: url(../img/mv.webp) no-repeat center top / 100%;
	}
}

#mv h1 {
	text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
    line-height: 0;
	background: url(../img/logo.svg) no-repeat center 42%/300px;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0%;
	left: 0%;
	/*opacity: 0;
	animation-name:blurAnime2;
	animation-duration:1.5s;
	animation-delay: 1s;
	animation-fill-mode:forwards;
	display: none;*/
}
/*@keyframes blurAnime2{
	from {
	  filter: blur(10px);
	  transform: scale(1.02);
	  opacity: 0;
	}
	to {
	  filter: blur(0);
	  transform: scale(1);
	  opacity: 1;
	}
}*/
@media screen and (min-width:768px) {
	#mv h1 {
		background-size: 80%;
	}
}

.theatre{
	padding: 20px 0;
	text-align: center;
	position: relative;
	font-size: 24px;
	font-weight:700;
}
.theatre small{
	display: block;
	font-size: 16px;
}
.theatre img.hagaki{
	width: 62px;
	position: absolute;
	bottom: 0;
	left: 20px;
}
.theatre img.pencil{
	width: 50px;
	position: absolute;
	bottom: 0;
	right: 20px;
}

/***************************************
04.news
***************************************/
#news{
	padding-bottom: 20px;
}
#news .inner{
	margin: 0 20px;
}

#news ul {
	max-height: 120px;
	overflow: auto;
	background: rgba(17 36 74/0.6);
	padding: 10px 10px;
}
#news ul::-webkit-scrollbar {
	width: 5px;
	height: 5px;
	border-radius: 10px;
  }
  #news ul::-webkit-scrollbar-thumb {
	--bg-opacity: 1;
	background-color:var(--accent-color);
	width: 5px;
	height: 5px;
	border-radius: 10px;
  }

#news ul li {
	line-height: 1.7em;
	padding: 8px 10px;
	box-sizing: border-box;
	font-size: 14px;
	border-bottom: 1px solid var(--accent-color);
	display: flex;
}
#news ul li:last-child{
	border: none;
}

#news ul li time {
	padding-right: .5em;
	line-height: 1.4em;
}

#news ul li p {
	line-height: 1.4em;
}
#news ul li p.link{
	margin-bottom: 10px;
}
#news ul li p a{
	display: inline-block;
	background: linear-gradient(transparent 70%, rgba(186, 116, 129, 1) 70%);
	font-weight: 700;
}

.twitter-area{
	text-align: center;
	padding: 20px 0;
}
.twitter-area a{
	display: inline-block;
	margin: 0 10px;
}
.twitter-area a img{
	width: 30px;
	display: inline-block;
	margin: 0px auto;
}
@media screen and (min-width:768px) {
	#news ul {
		/*max-height: 124px;*/
	}
}

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

#intro{
	position: relative;
}
#intro .inner{
	position: relative;
	background-color: var(--b-bg-color);
	margin: 0 15px;
	padding: 20px;
	box-shadow: var(--box-shadow);
}
#intro .inner p{
	color: var(--b-text-color);
	padding-bottom: 1em;
	font-size: 16px;
}
#intro .inner img.stump{
	position: absolute;
	top: 10px;
	left: 10px;
	width:102px
}
#intro .inner img.pen{
	position: absolute;
	bottom: 10px;
	right: 3px;
	width:56px
}
@media screen and (max-width:376px) {
	#intro .inner img.stump{
		top: -4px;
		left: 2px;
	}
}
div.fixed-logo div.logo-img{
	display: none;
}

@media screen and (min-width:768px) {

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

/***************************************
04.キャスト
***************************************/
#cast{
	position: relative;
}
#cast img.staff-name{
	max-width: 220px;
	display: block;
	margin: 20px auto 20px auto;
}
#cast img.cast-name{
	max-width: 200px;
	display: block;
	margin: 40px auto 40px auto;
}
@media screen and (min-width:768px) {
	#cast{
	}
}
.modal-open-button {
  padding: 8px 20px;
  background: #ddd;
  color: var(--b-link-color);
  border-radius: 60px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  margin-left: 1.2em;
  font-size: 14px;
  font-weight: 600;
  line-height: 1em;
  position: relative;
  min-width: 7em;
}
.modal-open-button:hover{
	opacity: 0.7;
	background: #fff;
	color: var(--bt-color);
}
#cast ul li .modal-open-button:after{
	content: "";
	display: block;
	background: url(../img/fukidashi_tale1.svg) no-repeat left bottom/100%;
	width: 7px;
	height: 7px;
	position: absolute;
	top: -6px;
	right: 15px;
}


#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: 0.5em;
	padding-bottom: 0;
	font-weight: 700;
	text-align: left;
}
p.name ruby{
	ruby-align: start;
}

#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;
}
#cast ul li p.name span.chara.no-left{
	padding-left: 0;
}
#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;
}
#cast dl dt,
#cast dl dd{
	width: 46%;
	margin: 0;
	padding: 5px 1%;
}
#cast .cast_hr{
	margin-bottom: 30px;
}
.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{
}
#ticket > div.inner {
	background-color: var(--bg-color);
	position: relative;
	margin: 0 15px;
	padding: 20px;
	color: white;
}
#ticket > div.inner::before,
#ticket > div.inner::after{
	content: "";
	height: 30px;
	width: 100%;
	position: absolute;
	left: 0;
}
#ticket > div.inner::before{
	content: "";
	background: url(../img/wave1.svg) no-repeat center top/100%;
	top: -30px;
}
#ticket > div.inner::after{
	content: "";
	background: url(../img/wave2.svg) no-repeat center bottom/100%;
	bottom: -30px;
}
#ticket div.title{
	font-size: 22px;
	font-weight: 600;
	text-align: center;
}
p.date,
div.place{
	padding-top: 20px;
	text-align: center;
}
.place_show{
	text-align: center;
    color: var(--bg-color);
    font-size: 18px;
    font-weight: 700;
    position: relative;
    background: url(../img/noise.png) repeat center center / 100%;
    margin-bottom: 10px;
}
p.date{
	padding-bottom: .5em;
}
div.place a{
	display: flex;
    justify-content: center;
    align-items: center;
	position: relative;
	color: var(--bt-color);
}
div.place a:before{
	content: "";
	display: inline-block;
	background: url(../img/map-pin.svg) no-repeat center center/100%;
	width: 9px;
	height: 13px;
	margin-right: .2em;
}

#ticket h4{
	font-size: 14px;
	text-align: center;
	font-weight: 300;
	margin-top: 10px;
	margin-bottom: 10px;
	background: url(../img/lines.svg) no-repeat center center/100%;
}
#ticket h4 span{
	position: relative;
	display: inline-block;
	padding: 0 10px;
	z-index: 10;
	background:var(--bg-color);
}
.price-box{
	text-align: center;
	padding: 10px;
	color: var(--accent-color);
	font-size: 18px;
	font-weight: 700;
	position: relative;
	margin-bottom: 10px;
	border: 1px solid var(--accent-color);
    border-radius: 8px;
}
.price-box div,
.price-box p{
	position: relative;
	z-index: 1;
}

#ticket div.ticket-box{
	margin-top: 40px;
	margin-bottom: 20px;
	position: relative;
	border: 1px solid var(--accent-color);
	border-radius: 8px;
	padding: 20px;
	text-align: center;
	font-size: 14px;
}
#ticket div.ticket-box .category{
	font-size: 18px;
	font-weight: 700;
	padding-bottom: 1em;
}
#ticket div.ticket-box .category small{
	display: block;
}
#ticket div.ticket-box h4{
	background: none;
	margin-top: -30px;
	margin-bottom: 30px;
}
#ticket div.ticket-box .sale{
	font-weight: 700;
	padding-bottom: .5em;
}
#ticket div.ticket-box .sale h5{
	font-size: 14px;
	font-weight: 300;
}
#ticket div.ticket-box p.att{
	text-align: left;
	padding-left: 1em;
	position: relative;
	padding-bottom: .5em;
	line-height: 1.4em;
	font-weight: 300;
	
}
#ticket div.ticket-box p.att::before{
	content: "※";
	position: absolute;
	top: 0;
	left: 0;
}

#ticket h3{
	font-size: 18px;
	text-align: center;
	margin-bottom: 20px;
	position: relative;
	font-weight: 600;
}
#ticket h3 .soldout{
	font-size: 16px;
	color: #D1536A;
}
.ticket-box p.date strong,
.ticket-box p.price strong{
	font-size: 24px;
	font-weight: 600;
}
.ticket-box.date p.time strong{
	font-size: 20px;
}

.ticket-box p{
	padding-bottom: 1em;
}
#ticket div.ticket-box .sale-wrap{
	background: url(../img/lines.svg) no-repeat center bottom/100%;
	padding-bottom: 20px;
	margin-bottom: 20px;
}
#ticket div.ticket-box .sale-wrap.last{
	background: none;
	margin-bottom: 0;
	padding-bottom: 0;
}
#ticket div.ticket-box .sale-bt{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

#ticket div.ticket-box a.bt{
	display: inline-block;
	padding: 8px 30px;
	color: var(--bg-color);
	font-weight: 700;
	margin-bottom: 10px;
}

details.about-early{
	text-align: left;
	margin-top: 0px;
}
#ticket div.ticket-box details.about-early a.bt{
	margin-bottom: 0;
}
.schedule{
	position: relative;
	padding-bottom: 30px;
}
@media screen and (min-width:768px) {
	#ticket h3{
		font-size: 20px;
	}
	#ticket h3 .soldout{
		font-size: 18px;
	}
	#ticket div.ticket-box a.bt{
		width: 52%;
	}
	#ticket div.ticket-box .sale br{
		display: none;
	}
	
}


div.exp{
	padding-bottom: 10px;
}
div.bt{
	text-align: center;
}
details.about-early .details-box div.bt p{
	padding-bottom: 0;
}
.ticket-box h3 small{
	display: block;
	color: var(--p-text-color);
	font-weight: 600;
}
div.area{
	padding-bottom: 10px;
}

div.inq{
	padding-top: 20px;
	text-align: center;
}
@media screen and (min-width:768px) {
	div.inq a.tel{
		pointer-events: none;
	}
}
@media screen and (max-width:767px) {
	div.inq a.tel{
		color: var(--accent-color);
		text-decoration: underline;
	}
}
div.inq h5{
	font-size: 14px;
	font-weight: 300;
}
.osaka .schedule img{
	width: 50%;
	margin-bottom: 20px;
}
a.question{
	display: inline-block;
	background: rgba(186 116 129/0.8);
	color: var(--text-color);
	width: 16px;
	height: 16px;
	line-height: 16px;
	border-radius: 50%;
	text-align: center;
	font-size: 12px;
	margin-left: 0.2em;
}



/***************************************
08.チケットに関する注意事項 #ticket
***************************************/
.attention{
	padding: 20px 0px 20px;
}
.attention h4{
	text-align: center;
	font-weight: 600;
	margin-bottom: 1em;
	font-size: 18px;
	color: var(--text-color);
}
.attention ul{
	margin-bottom: 0px;
}
.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;
}
@media screen and (min-width:768px) {
	.attention h4{
		font-size: 20px;
	}
}
.contact{
	text-align: center;
	padding-bottom: 40px;
}
.contact a{
	font-weight: 600;
}

.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%;
}

/***************************************
10.ACCESS
***************************************/
#access {
	text-align: center;
}
.access-map{
	padding-bottom: 20px;
}
.access-map.osaka{
	padding-bottom: 0;
}
.access-map a.bt{
	margin-bottom: 10px;
	padding: 6px 20px;
	/*padding: 15px 30px;*/
	font-weight: 600;
}
#access div.place{
	font-size: 18px;
	font-weight: 700;
	padding-top: 0px;
}
#access div.place a:before{
	width: 12px;
    height: 20px;
	margin-top: 1px;
}
#access iframe{
	display: block;
	margin: 10px auto 10px auto;
	width: 100%;
	height: 260px;
}
#access .access{
	text-align: left;
}
#access .access ul{
	margin-left: 1em;
	margin-top: 5px;
}
#access .access ul li{
	list-style-type:disc;
	margin-bottom: 5px;
}

#access .place_show_acess{
	text-align: center;
    color: var(--bg-color);
    font-size: 14px;
    font-weight: 700;
    position: relative;
    background: url(../img/noise.png) repeat center center / 100%;
	padding: 4px;
    margin-bottom: 8px;
}


#caution h2 span{
	position: relative;
}
#caution h2 span::before,
#caution h2 span::after{
	content: "";
	background: url(../img/deco.png) no-repeat center center/100%;
	width: 19px;
	height: 37px;
	position: absolute;
	top: 50%;
}
#caution h2 span::before{
	left: -22px;
	transform: translateY(-50%);
}
#caution h2 span::after{
	right: -22px;
	transform:scale(-1, 1) translateY(-50%);
}

/***************************************
10.MOVIE
***************************************/
#movie {
}
#movie h2 span{
	position: relative;
}
#movie h2 span::before,
#movie h2 span::after{
	content: "";
	background: url(../img/radio.png) no-repeat center center/100%;
	width: 32px;
	height: 31px;
	position: absolute;
	top: 50%;
}
#movie h2 span::before{
	left: -40px;
	transform: rotate(-20deg) translateY(-50%);
}
#movie h2 span::after{
	right: -40px;
	transform: rotate(20deg) translateY(-50%);
}
#movie .button-area{
	text-align: center;
	padding: 20px 0;
}
#movie .button-area a.bt{
	font-weight: 700;
}
a.youtube{
	display: block;
	margin-bottom: 30px;
	font-weight: 700;
}
a.youtube p{
	padding-bottom: 10px;
}


/***************************************
10.GOODS sec_5
***************************************/
#goods {
	text-align: center;
	padding-bottom: 80px;
	
}
.comingsoon{
	text-align: center;
	font-size: 20px;
	padding: 80px 0 140px;
	text-align: center;
}

#goods:before{
	content: "";
	display: block;
	background: url(../img/obake_moto.png) no-repeat center center/100%;
	width: 70px;
	height: 111px;
	position: absolute;
	bottom: 0px;
	left: 30px;
	transform: rotate(20deg);
}
#goods:after{
	content: "";
	display: block;
	background: url(../img/obake_moto.png) no-repeat center center/100%;
	width: 60px;
	height: 95px;
	position: absolute;
	top: 0px;
	right: 40px;
	transform: rotate(202deg);
}

#goods h4{
	font-size: 16px;
	font-weight: 600;
	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: 600;
}
#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;
}
@media screen and (min-width:768px) {
	.goods-link img{
		margin-bottom: 20px;
	}
	#goods ul li a{
		pointer-events:auto;
	}
}

/***************************************
10.FAQ
***************************************/
section#faq{
	padding-bottom: 80px;
}
@media screen and (min-width:768px) {
	section#faq{
		padding-bottom: 150px;
	}
}
details {
	padding: 10px 0;
	border-bottom: 1px solid var(--b-accent-color);
}
summary {
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-weight: bold;
	padding: 5px 0px;
	cursor: pointer;
	font-size: 16px;
	font-weight: 400;
	display: flex;
	align-items: center;
} 
summary::-webkit-details-marker {
	display: none;
}
summary div.comment span{
	font-weight: 600;
	display: block;
}
summary div.comment {
	display: flex;
	align-items: center;
	position: relative;
	padding-left: 1.6em;
	padding-right: 30px;
}
summary div.comment span{
	position: absolute;
	top: 0;
	left: 0;
}
summary div.mark{
	position: absolute;
	top: 10px;
	right: 7px;
	width: 18px;
	height: 16px;
}
summary div.mark::after{
	content: "";
	display: block;
	position: absolute;
	width:0;
	height:0;
	border-style:solid;
	border-width: 14px 9px 0 9px;
	border-color: #D9D9D9 transparent transparent transparent;

}
div.answer{
	padding: 10px 0;
	line-height: 1.6em;
	text-align: left;
	color: var(--accent-color);
	padding-left: 1.6em;
	position: relative;
}
div.answer span{
	position: absolute;
	top: 10px;
	left: 0;
	font-weight: 600;
	display: block;
}
  
summary::-webkit-details-marker {
	display: none;
}
details[open] summary {
	padding-bottom: 10px;
}
details[open] summary div.mark::after{
	border-width: 0 9px 14px 9px;
	border-color: transparent transparent #D9D9D9 transparent;
}

/***************************************
11.
***************************************/

/***************************************
12.ご来場になるお客様へのお願い sec_7
***************************************/
#caution{}

#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;
}

/***************************************
13.last
***************************************/

#last{
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content:flex-start;
	align-items: center;
	position: relative;
	text-align: center;
	padding-bottom: 0;
}
#last img.logo{
	display: block;
	margin: 20px auto;
	width: 200px;
}
#last p{
	padding-bottom: 1.6em;
}
#last p small{
	font-weight: 700;
    display: block;
}
#last p small.name {
    display: inline-block;
    font-weight: 400;
    font-size: 0.7rem;
}

@media screen and (min-width:430px) {

}
@media screen and (min-width:768px) {

}

/*------------フッター-----------------*/
footer {
	padding: 20px 0 0px 0;
}
footer p {
	text-align: center;
	font-size: 12px;
	color: var(--accent-color);
}
@media screen and (max-width:395px) {
	footer {
	}
}


/***************************************
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;
}

