@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)
*/

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;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
html {
	/*overflow-x: hidden;*/
}
body {
	line-height: 1;
	text-align: left;
	overflow-x: hidden;
	transform-origin: top center;
	position: relative;
}


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

.animate__fadeInUpSmall {
	-webkit-animation-name: fadeInUpSmall;
	animation-name: fadeInUpSmall;
  }
  @keyframes fadeInUpSmall {
	from {
	  opacity: 0;
	  -webkit-transform: translate3d(0, 200px, 0);
	  transform: translate3d(0, 200px, 0);
	}
  
	to {
	  opacity: 1;
	  -webkit-transform: translate3d(0, 0, 0);
	  transform: translate3d(0, 0, 0);
	}
  }

/*font-family: 'Montserrat', sans-serif;*/
/***************************************
02.共通
***************************************/
body {
	font-size: 16px;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 400;
	text-align: justify;
	-webkit-text-size-adjust: 100%;
	color: #000053;
	background-image: url("../img/pc-bg.jpg");
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
}

h1, h2, h3, h4, h5, h6 {
}
a {
	color: var(--link-color);
	word-break: break-all;
	text-decoration: none;
}

a:hover {
	color: var(--link-color);
	text-decoration: underline;
}

img {
	width: 100%;
	vertical-align: middle;
}
.clearfix:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}
small{
	font-size: 0.9rem;
}
p small{
	line-height: 1.4em;
    display: inline-block;
	font-weight: normal;
}
.t_a_c {
	text-align: center;
}
.f_w_b {
	font-weight: bold;
}
.sp_only {
	display: none;
}
.pc_only {
	display: block;
}
.sp_tb_only {
	display: none;
}
section {
	padding: 60px 0 40px;
	position: relative;
	overflow-y:visible;
	font-weight: 400;
	z-index: 2;
}
section p{
	line-height: 1.7em;
}

section h3 span{
	display: inline-block;
	position: relative;
}




@media screen and (max-width:767px) {
*{
	margin:0;
	padding:0;  
}
body::before {
	content:"";
	display:block;
	position:fixed;
	top:0;
	left:0;
	z-index:-1;
	width:100%;
	height:100vh;
	background-repeat:no-repeat;
	background-position:50% 100%;
	background-image:url("../img/sp-bg.jpg");
	background-size:cover;
}
	
	section{
		padding: 40px 0;
	}
	section .wrapper{
		padding: 20px 20px 40px 20px;
	}

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

/*------------チケット-----------------*/
.ticket {
	position: fixed;
	bottom: 10%;
    right: 10px;
    padding: 0px;
    z-index: 3;
}
.ticket img{
	width: 120px;
}

.ticket .bt {
	position: relative;
	display: block;
	width: 165px;
	height: 67px;
	overflow: hidden;
	cursor: pointer;
	padding-bottom: 20px;
}
.bt img {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 100%;
	display: block;
	-webkit-transition: .4s ease-in-out;
	transition: .4s ease-in-out;
}

/*------------ヘッダー-（ナビゲーション・ロゴ）----------------*/
/*.pc_logo_area {
	width: 50%;
    padding:0;
    display: block;
    box-sizing: border-box;
}
.pc_logo_area a{
	display: block;
	background: #FF9EA2 url(../img/logo_s.svg) no-repeat center center/60%;
	text-indent: -9999px;
	border-radius: 50%;
	width: 160px;
	height: 160px;
	position: absolute;
	top: -20px;
	left: 14px;
}
.pc_logo_area a small{
	font-size: 16px;
}
.sp_logo_area,
.sp-tickets {
	display: none;
}*/
header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background-color: #292D52;
	z-index: 1000;
	display: block;
}
header nav {
	display: flex;
	width: 100%;
	flex-direction: row-reverse;
	align-items: center;
	background-color: #292D52;
	height: 48px;
}
header nav ul {
	width: 50%;
	padding: 0 3vw 0 0;
	display: flex;
	justify-content: space-between;
	box-sizing: border-box;
}
header nav ul a {
	text-decoration: none;
	font-size: 16px;
	display: inline-block;
	padding-top: 5px;
	color: #FBDEC2;
	font-family: "DM Serif Text", serif;
	font-style: italic;
}

header nav ul a:hover {
	text-decoration: none;
	color: #fff;
	padding-bottom: 0;
}
.fixed{
	position: fixed;
	top: 0;
	right: 0;
	z-index: 900;
}

/*ナビゲーション*/
@media screen and (max-width:1024px) {
	header{
		display: block!important;
	}
	#top-head {
		position: fixed;
		display: block!important;
		z-index: 200;
		height: 40px;
	}
	.header-info, .header-nav-list a span {
		display: none;
	}
	.header-inner {
		padding-right: 16px;
		z-index: 100;
		position: absolute;
		right: 0;
	}
	.header-nav {
		width: 100%;
		margin: 0 auto;
		padding-top: 60px;
	}
	.header-nav-list {
		display: block;
	}
	.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;
	}
	.ticket {
	}
	.ticket  img{
		width:80px;
	}

	.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;
		width: 100%;
		height: 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;
	}
	header nav ul a:hover {
		padding: 25px 15px;
	}

      /*開閉ボタン*/
	#nav_toggle{
		display: block;
		width: 30px;
		height: 20px;
		position: relative;
		top: 8px;
		z-index: 100;
	}
	#nav_toggle div {
		position: relative;
	}
	#nav_toggle span{
		display: block;
		height: 1px;
		background: #FBDEC2;
		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 span:nth-child(1){
		top:0px;
	}
	#nav_toggle span:nth-child(2){
		top:9px;
	}
	#nav_toggle span:nth-child(3){
		top:18px;
	}
	
	/*開閉ボタン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: 25px 15px;
		font-size: 30px;
		font-weight: bold;
		z-index: 2;
	}
	header nav ul a:hover {
		text-decoration: none;
		color: #fff;
	}
}
@media screen and (max-width:767px) {
	header nav {
		display: none;
		position: fixed;
		top: 0px;
		width: 100%;
		height: 100%;
		left: 0;
	}
}

/*------------フッター-----------------*/
footer {
	padding-bottom: 70px;
}
footer p {
	text-align: center;
	font-size: 12px;
}

/*------------共通-----------------*/
.contents {
	position: relative;
}

@media screen and (max-width:767px) {

}
section .inner{
	width: 72.5%;
	margin: 0 auto;
	max-width: 1120px;
	position: inherit;
    z-index: 50;
	box-sizing: border-box;
}

/***************************************
03.タイトル
***************************************/
#intro h2 {
	height: 10vw;
}
#news h2 {
	height: 2.9vw;
}
#performer h2 {
	height: 9vw;
}
#ticket h2 {
	height: 2.9vw;
}
#access h2 {
	height: 2.9vw;
	padding-bottom: 10px;
}
#goods h2 {
	height: 7.8vw;
}
#archive h2 {
	height: 2.9vw;
	padding-bottom: 24px;
}
#intro h2, #news h2, #performer h2, #ticket h2, #access h2, #goods h2, #archive h2 {
	width: auto;
	text-align: center;
}
#intro h2 img, #news h2 img, #performer h2 img, #ticket h2 img, #access h2 img, #goods h2 img, #archive h2 img {
	height: 100%;
	width: auto;
}
@media screen and (max-width:767px) {
	#intro h2 {
		height: 21vw;
        padding-right: 4vw;
	}
	#news h2 {
		height: 5.9vw;
	}
	#performer h2 {
		height: 18vw;
	}
	#ticket h2 {
		height: 5.9vw;
	}
	#access h2 {
		height: 5.9vw;
		padding-bottom: 20px;
	}
	#goods h2 {
		height: 16vw;
	}
	#archive h2 {
		height: 5.9vw;
		padding-bottom: 20px;
	}
}
	
/***************************************
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;
}
/***************************************
04.ボタン　ホバー
***************************************/
#news .bt {
	position: relative;
	width: 51%;
	max-width: 440px;
    aspect-ratio: 100 / 13.3;
	margin: 5px auto 0;
	display: block;
	overflow: hidden;
	cursor: pointer;
}
#ticket .bt {
	position: relative;
	width: 280px;
	height: 80px;
	margin: 0 auto;
	display: block;
	overflow: hidden;
	cursor: pointer;
}
.bt img {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 100%;
	display: block;
	-webkit-transition: .4s ease-in-out;
	transition: .4s ease-in-out;
}
.bt:hover img:nth-of-type(2) {
	opacity: 0;
}

@media screen and (max-width:767px) {
	#ticket .bt {
		position: relative;
		width: 202px;
		height: 63px;
	}
	#news .bt {
		position: relative;
		width: 100%;
    	aspect-ratio: 100 / 13.3;
		margin-top: 10px;
	}
}

/***************************************
05.メインビジュアル
***************************************/
.mv {
	background-color: var(--bg-color);
	z-index: 2;
	position: relative;
}
.mv .mv-img{
	background: url("../img/pc-mv-bg02.jpg") no-repeat center bottom/100%;
	margin: 0;
    padding-top: calc(1420 / 2400 * 100%);
	position: relative;
	animation-name:blurAnime;
	animation-duration:1.5s;
	animation-fill-mode:forwards;
}
@keyframes blurAnime{
  from {
	filter: blur(10px);
	transform: scale(1.02);
  }

  to {
	filter: blur(0);
	transform: scale(1);
  }
}
.mv h1 {
	text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
    line-height: 0;
	background: url("../img/pc-mv02.png") no-repeat center 100px/72%;
	width: 100%;
	height: 100%;
	position: absolute;
	top: -4%;
	left: 0%;
}
.mv .date{
	font-size: 3vmax;
	text-align: center;
	width: 100%;
	position: absolute;
	bottom: 16%;
	left: 0;
	color: white;
}
.mv .date small{
	font-size: 20px;
}


.kiradeco {
	width: 8vw;
    margin-top: -3vw;
    position: absolute;
    z-index: 100;
    margin-left: 20vw;
}

@media screen and (max-width:767px) {
	.mv .mv-img{
		margin: 0;
		background: url("../img/sp-mv-bg.jpg") no-repeat center bottom/100%;
		padding-top: calc(2094 / 1170 * 100%);
	}
	.mv h1 {
		background: url("../img/sp-mv02.png") no-repeat center 100px/100%;
		top: 5%;
	}
	.kiradeco {
		width: 9vw;
		margin-top: -4vw;
		position: absolute;
		z-index: 100;
		margin-left: 8vw;
	}
}
	
/***************************************
05.NEWS
***************************************/
section#news {
	padding: 30px 0 0;
}
.information{
	width: 100%;
	padding: 30px 0 7.5px;
}
.information div.text-area>div{
	max-height: 250px;
	max-width: 500px;
	margin: auto;
	overflow: auto;
	padding: 0!important;
}

.information ul {
	height: 100%;
	overflow: auto;
}

.information ul li {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	line-height: 2em;
	padding: 10px 20px;
	box-sizing: border-box;
	border-bottom: 1px solid #AF9949;	
}

.information ul li time {
	width: 5em;
	font-family: "DM Serif Display", serif;
}

.information ul li p {
	padding-left: 1em;
	width: calc(100% - 6em);
}

/*.twitter-area a.bt{
	position: relative;
	background: var(--gr-color);
	color: white;
	text-align: center;
	width: 20em;
	padding: 15px;
	display: block;
	margin: auto;
}*/



@media screen and (max-width:1023px) {

}

@media screen and (max-width:767px) {
	.information ul {
		margin-top: 8px;
	}
	.information ul li{
		padding: 8px 10px 3px;
		line-height: 1.4em;
		font-size: 14px;
	}
	.twitter-area a.bt{
		width: auto;
	}
	
}

/***************************************
04.イントロダクション
***************************************/
section#intro {
	padding: 60px 0 0;
}
#intro .inner{/*
	width: 100%;*/
	margin: 0 auto;
	max-width: 1130px;
}

#intro .inner {
	margin: 0 auto;
	position: relative;
}
#intro .t-inner{
	text-align: center;
}
#intro .banner{
	padding-bottom: 80px;
	display: flex;
	justify-content: center;
}
#intro .banner a{
	display: inline-block;
	margin: 0 20px;
}
#intro .banner a img{
	width: 300px;
}

#intro .text-area {
	padding: 0;
	font-size: 1.125em;
	line-height: 1.66em;
	position: inherit;
	z-index: 10;
}
#intro .text-area h3 {
	font-weight: 600;
    font-size: 1.5em;
    line-height: 1.5em;
    padding-bottom: 4px;
	text-align: center;
	margin-bottom: 0;
}
#intro .text-area .text-2 p {
	margin-bottom: 1em;
	text-align: center;
}


@media screen and (max-width:767px) {
	#intro .text-area h3 {
		padding-bottom: 4px;
		font-size: 1.2em;
	}
}



/***************************************
05.アーティスト #performer
***************************************/
section#performer {
    padding: 30px 0 40px;
}
.Performer {
	margin: 0 auto;
}
.pc_p_first {
	display: block;
	padding: 0 0 2.3vw 0;
}
.pc_p_first .img-area {
	width: 40%;
	margin: 0 auto;
	background-color: #fff;
	padding: 8px;
}
.pc_p_first img{
	width: 100%;
	display: block;
	margin: 0 auto;
}
.pc_p_first .message-area-1 {
	width: 70%;
	margin: 10px auto 0;
	padding-bottom: 8px;
    border-bottom: 1px solid #AF9949;
}
#performer ul.guest{
	display: flex;
	justify-content:space-between;
	flex-wrap: wrap;
	max-width: 1140px;
	width: 100%;
	margin: auto;
}
#performer ul.guest li{
	width: 31%;
	padding-bottom: 30px;
	text-align: center;
}
#performer ul.guest li .bg-w {
	background-color: #fff;
	padding: 7px;
}
#performer ul.guest li img{
	width: 100%;
}
#performer ul.guest li p{
	font-weight: bold;
	font-size: 16px;
	line-height: 1.5em;
	padding: 8px 0 7px;
}
#performer ul.guest li .comment-top {
	padding-top: 8px;
}

@media screen and (max-width:767px) {
	#performer h3{
		font-size: 30px;
	}

	#performer ul.guest{
		display: block;
		justify-content: space-between;
	}
	#performer ul.guest li{
		width: 87%;
		margin: 0 auto;
		padding-bottom: 0;
	}
	#performer ul.guest::after{
	display: none;
	}
	#performer ul.guest li p{
		line-height: 1.4em;
		font-size: 18px;
		padding: 15px 0 8px 0;
	}
	#performer ul.guest.oneline li p{
		height: auto;
	}
}


details {
	padding: 0 10px 10px;
	margin-bottom: 40px;
}
summary {
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-weight: bold;
	padding: 5px 0px;
	cursor: pointer;
	font-size: 18px;
	font-weight: 700;
	display: flex;
	align-items: center;
} 
summary::-webkit-details-marker {
	display: none;
  }
summary div.question span{
	font-weight: 700;
	display: block;
	margin-right: 0.5em;
	font-size: 32px;
	color: #000053;
}
summary .comment {
	font-family: "DM Serif Text", serif;
}
summary div.question {
	display: flex;
	align-items: center;
}
summary div.mark{
	position: relative;
	width: 15px;
	height: 15px;
}
summary div.mark::after{
	content: "";
	display: block;
	width: 2px;
	height: 15px;
	position: absolute;
	top: 0px;
	right: 7px;
	background-color: #000053;
}
summary div.mark::before{
	content: "";
	display: block;
	width: 15px;
	height: 2px;
	position: absolute;
	top: 7px;
	right: 0px;
	background-color: #000053;
}
div.answer{
	padding: 10px 0;
	line-height: 1.6em;
	text-align: left;
	border-bottom: 1px solid #AF9949;
	font-size: 14px;
}
  
details[open] summary {
	padding-bottom: 10px;
}
details[open] summary div.mark::after{
	display: none;
}

@media screen and (max-width:767px) {
	details{
        margin-bottom: 0;
        padding: 0 10px;
	}
	details[open] summary{
		padding-bottom: 10px;
	}
	summary{
		padding: 3px 0;
		font-size: 16px;
	}
	div.answer{
		font-size: 14px;
	}
}


#performer .name {
	font-weight: bold;
	padding-top: 8px;
	text-align: center;
}


#performer p.message-title{
	text-align: center;
	font-family: "DM Serif Display", serif;
	font-size: 18px;
	font-style: italic;
	padding-top: inherit;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1.5em;
	width: 100%;
}

#performer p.message-title::before,
#performer p.message-title::after {
	content: "";
	flex: 1 1 auto;
	min-width: 0;
	border-top: 1px solid #AF9949;
}

#performer p.message{
	font-size: 1rem;
	padding-top: 0.5rem;
}	
	
.Performer #box-3 {
	animation-delay: .3s;
}

.Performer #box-4 {
	animation-delay: .6s;
}
#performer .Performer .sns-area.w60 {
	width: 55%;
	margin: 0 auto;
}
#performer .Performer .sns-area.w60 ul {
	display: flex;
	justify-content: center;
	align-items: center;
	padding-top: 15px;
}
#performer .Performer .sns-area.w60 ul li {
	width: 20%;
    padding: 0 3%;
	margin: 0 auto;
}
#performer .Performer .sns-area.w60 ul li a:hover{
	opacity: 0.7;
}
#performer .Performer .sns-area.w50 {
	width: 50%;
	margin: 0 auto;
}
#performer .Performer .sns-area.w50 ul {
	display: flex;
	justify-content: center;
	align-items: center;
	padding-top: 15px;
}
#performer .Performer .sns-area.w50 ul li {
	width: 25%;
    padding: 0 3%;
	margin: 0 auto;
}
#performer p.andmore{
	text-align: center;
	font-family: 'Poppins', sans-serif;
	font-size: 1.4rem;
}
#performer p.small{
	text-align: right;
	font-size: 0.8rem;
}



/***************************************
07.チケット #ticket
***************************************/
#ticket .inner {
	background-color: #FFF9F5;
	padding: 16px;
}
#ticket .inner .ticket-bg {
	border: 1px solid #AF9949;
	padding: 50px 0 40px;
}
#ticket .inner .outline,
#ticket .inner .about-ticket{
	padding-top: 32px;
}
#ticket .inner h3{
	font-size: 14px;
	display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5em;
    width: 73%;
	margin: 0 auto 24px;
}
#ticket .inner h3::before, #ticket .inner h3::after {
    content: "";
    flex: 1 1 auto;
    min-width: 0;
    border-top: 1px solid #AF9949;
}
#ticket .inner .outline h4{
	padding: 0;
	font-weight: bold;
	font-size: 28px;
	font-family: "Noto Serif", serif;
	line-height: 1em;
}
#ticket .inner .outline h4{
	font-size: 28px;
	text-align: center;
	padding-bottom: 24px;
}

#ticket .t-contents{
	text-align: center;
}

#ticket .day {
	text-align: center;
	font-size: 1.6875em;
	font-weight: 500;
	position: relative;
	z-index: 10;
}
#ticket .day .text-1 {
	font-family: "DM Serif Text", serif;
	font-size: 32px;
    font-weight: 700;
	line-height: 1em;
}
#ticket .day .text-1 span {
	font-size: 24px;
}
#ticket .day .text-2 {
	font-family: "DM Serif Text", serif;
	font-size: 18px;
    font-style: italic;
	line-height: 1.5em;
}
#ticket .day .text-3 {
	color: #FF5571;
	font-size: 16px;
	font-weight: bold;
	text-align: center;
}
#ticket .day .text-3::before {
	content: "";
    background: url("../img/map-pin-off.png") no-repeat;
    width: 8px;
    height: 15px;
    display: inline-block;
    background-size: contain;
    padding-right: 4px;
    vertical-align: middle;
}

#ticket .day .text-1 span {
	font-size: 24px;
}
#ticket {
	z-index: 2;
}
.t-a-bg {
	display: grid;
}

@media screen and (max-width:767px) {
	#ticket .inner .outline,
	#ticket .inner .about-ticket{
		padding-top: 20px;
	}
	#ticket .day .text-1 {
		line-height: 1em;
		font-size: 28px;
	}
	#ticket .day .text-1 span,
	#ticket .day .text-2 span {
		font-size: 16px;
	}
	#ticket .inner .outline h4{
		padding: 10px 0;
		line-height: 1.2em;
	}
	#ticket .t-contents .p-area small {
		font-size: 14px;
	}
	#ticket .t-contents .p-area .price-info {
		font-size: 12px;
	}
	#ticket .t-contents .t-detail .sub-ttl {
		font-size: 22px;
	}
	#ticket .t-contents .t-detail h4 {
		font-size: 14px;
	}
	#ticket .t-contents .t-detail .eception-period p {
		line-height: 1.2em;
	}
}

#ticket h4 small{
	font-size: 1rem;
}
#ticket .contact-1 {
	text-align: center;
	padding: 20px 0 50px;
	line-height: 1.5em;
}
#ticket .contact-2 p{
	text-align: center;
	line-height: 1.5em;
	padding-bottom: 10px;
}
#ticket table .b-der-r {
	border-right: 1px solid #162328;
}
#ticket table .p-left {
	padding: 40px 10px 40px 20px;
}
#ticket table .ta-right span {
	text-align: right;
	display: inherit;
}
#ticket .row_01{
	padding-top: 40px;
	margin: auto;
	width: 70%;
}
#ticket .row_01 .ttl,
.sec_7 .row_01 .ttl {
	text-align: center;
	font-weight: 500;
	font-size: 24px;
	line-height: 1.25em;
}
#ticket .real {
	padding-bottom: 20px;
}
#ticket .t-contents {
	margin: 0 auto;
	position: relative;
	z-index: 10;
}
#ticket .t-contents .p-area {
	text-align: center;
}
#ticket .t-contents .p-area{
	padding-bottom: 10px;
	font-size: 18px;
	font-weight: 700;
}
#ticket p.price{
	padding: 0;
	font-size: 20px;
}
#ticket .t-contents .p-area strong{
	font-size: 32px;
	font-family: "DM Serif Text", serif;
	display: inline-block;
	margin-left: 24px;
	padding-top: 8px;
}
#ticket .t-contents .p-area small {
	font-size: 16px;
}
#ticket .t-contents .p-area .price-info {
	font-size: 14px;
	font-weight: 400;
}
#ticket .t-contents .t-detail {
	padding: 20px 0 0;
    margin: 0 auto;
	max-width: 600px;
	text-align: left;
}
#ticket .t-contents .t-detail .sub-ttl {
	font-size: 20px;
	font-weight: bold;
	text-align: center;
}
#ticket .t-contents .t-detail h4 {
	font-weight: 500;
	font-size: 16px;
	text-align: center;
}
#ticket .t-contents .t-detail .eception-period {
	text-align: center;
	font-size: 16px;
}	
#ticket .t-detail  {
	line-height: 1.5em;
}

#ticket .t-detail p.fc{
	padding-bottom: 20px;
}


#ticket .day-ticket{
	
}
#ticket .day-ticket h4{
	
}
#ticket .day-ticket p.info-txt{

}
#ticket .day-ticket strong{

}

.ticket-box.end {
    margin: 40px auto 0px;
    position: relative;
    border-top: 1px solid #AF9949;
    border-bottom: 1px solid #AF9949;
	width: 73%;
    padding: 20px 0;
}
.ticket-box.end details {
    margin-bottom: 0px;
	padding: 0px;
}
.ticket-box.end details summary {
    font-size: 20px;
    list-style: none;
    cursor: pointer;
	display: block;
}
.ticket-box.end details summary span {
    position: relative;
}
.ticket-box.end details summary span:before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 2px;
    background: #000053;
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
}
.ticket-box.end details summary span:after {
    content: "";
    display: inline-block;
    width: 2px;
    height: 20px;
    background: #000053;
    position: absolute;
    right: -31px;
    top: 50%;
    transform: translateY(-50%);
}
.ticket-box.end details summary::marker,
.ticket-box.end details summary::-webkit-details-marker {
	display: none;
}
.ticket-box.end details[open] summary span:after{
    display: none;
}

@media screen and (max-width:767px) {
	.ticket-box.end {
    margin-top: 24px;
	width: 100%;
	}
    .ticket-box.end details summary {
    font-size: 18px;
	}
}
/***************************************
08.チケットに関する注意事項 #ticket
***************************************/
#ticket .ttl-area {
	padding-bottom: 50px;
}
	
#ticket .row_01 h4 {
	font-size: 20px;
	text-align: center;
	font-weight: bold;
	padding: 30px 0 10px 0;
	box-sizing: border-box;
}
p.center{
	text-align: center;
	padding-top: 20px;
}

.row_01 a{
	color: var(--text-color);
}
.row_01 h5{
	padding: 20px 0 10px;
}
.row_01 {
	text-align: left;
	position: inherit;
	z-index: 20;
}
.row_01 p {
	line-height: 1.5em;
}
.row_01 ul {
	padding-left: 0.5em;
}
.row_01 ul li {
	font-size: 14px;
	padding-left: 1em;
	padding-bottom:0.5em;
    line-height: 1.7em;
	list-style: disc;
	list-style-position: inside;
	box-sizing: border-box;
}
.row_01 ul li.none_disc {
	text-indent: -1em;
	list-style: none;
}
.row_01 ul li ul {
	padding-left: 0;
}
.row_01 .l-s-none li {
	list-style: none;
	text-indent: -0.5em;
    padding-left: 0.5em;
}
.row_01 .l-s-none li::before {
	content: "・";
	display: inline-block;
}
.contact-2{
	padding-top: 50px;
}
@media screen and (max-width:767px) {
	.row_01 h4,
	#ticket .row_01 h4 {
		font-size: 20px;
        font-weight: bold;
        text-align: center;
	}
	.row_01 ul li {}
}

/***************************************
09.アクセス #access
***************************************/
#access {
	background: url("../img/pc-bg-access.jpg") no-repeat center top / 100% auto;
    background-size: cover;
	z-index: 1;
    margin-top: -7vw;
}
#access .inner {
	padding-top: 25px;
}
#access .place-map {
	color: #FF5571;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
	padding-bottom: 4px;
}
#access .place-map-area {
	font-size: 16px;
	font-weight: bold;
	text-align: center;
	padding-bottom: 10px;
}
#access .place-map::before {
    content: "";
    background: url(../img/map-pin-off.png) no-repeat;
    width: 9px;
    height: 15px;
    display: inline-block;
    background-size: contain;
    padding-right: 4px;
    vertical-align: middle;
}
#access .access-link {
	padding:10px 0 30px 0;
	z-index: 10;
    position: relative;
}
#access a.bt{
	font-size: 20px;
	background: var(--gr-color);
	color: white;
	display: block;
	margin: auto;
	width: 10em;
	padding: 15px 10px;
	box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
	text-align: center;
}
#access a.bt:hover{
	background: var(--gr-g-color);
	text-decoration: none;
}
#access .g_map {
	width: 49%;
	margin: 0 auto;
	position: relative;
    z-index: 10;
}
#access .g_map_inner {
	position: relative;
	width: 100%;
	margin: 0 auto;
	height: 0;
	padding-top: 65%;
	z-index: 10;
}
#access .g_map_inner iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media screen and (max-width:1024px) {
	#access {
		background: url(../img/sp-bg-access.jpg) no-repeat center top / 100% auto;
		background-size: cover;
		z-index: 1;
	}
	
}




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

#goods .ttl-area {
	padding-bottom: 50px;

}
section#goods {
	padding-bottom: 0;
	
}
.goods .coming-soon {
	font-family: "DM Serif Text", serif;
	font-size: 24px;
    font-style: italic;
	text-align: center;
}
.goods p.coming-soon {
	margin-bottom: 0;
}
.goods p{
	margin-bottom: 30px;
	font-size: 18px;
}

/***************************************
10.ARCHIVE
***************************************/
#archive {
	
}
#archive ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
#archive ul li {
	width: 31.5%;
	margin-bottom: 28px;
}
#archive ul li .text-area {
	text-align: center;
}
#archive ul li .text-area .text-01 {
	font-family: "Noto Serif", serif;
	font-size: 16px;
	font-weight: bold;
	margin-bottom: 0;
}
#archive ul li .text-area .text-01 span {
	font-size: 14px;
}
#archive ul li .text-area .text-02 {
	font-weight: 500;
	font-size: 14px;
	margin-bottom: 0;
}


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

/***************************************
12.ご来場になるお客様へのお願い sec_7
***************************************/
section.sec_7 {
	padding-bottom: 0
}
.sec_7 .row_02 {
	font-size: 14px;
	line-height: 1.7em;
	padding-bottom: 40px;
}
.sec_7 .row_01 h4 {
	font-size: 20px;
	font-weight: bold;
	text-align: center;
	padding-bottom: 16px;
}
.sec_7 .row_02 h5 {
	font-weight: bold;
	padding: 14px 0 5px;
}

.sec_7 .f-contact {
	text-align: center;
	font-size: 14px;
}
.sec_7 .f-contact .row-1 {
	padding-bottom: 20px;
}
.sec_7 .f-contact .row-1 .fc-ttl-1 {
	
}
.sec_7 .f-contact .row-2 {
	padding: 20px 0 33px;
}
.sec_7 .f-contact .row-2 .fc-ttl-2 {
	font-size: 20px;
	font-weight: bold;
}
/***************************************
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;
}
/***************************************
14.レスポンシブ
***************************************/
@media screen and (min-width:1400px){
	.pc_logo_area a br.pc-small{
		display: none;
	}
}
@media screen and (min-width:1300px) {
	.cast-list {
		padding-top: 30px;
	}
}

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

	.sp_tb_only {
		display: none;
	}
}


@media screen and (min-width:1025px) and (max-width:1200px) {
	.pc_logo_area{
		width: 40%;
	}
	header nav ul {
		padding: 0 3vw 0 0vw;
		width: 60%;
	}
	.modal__content {
		width: 80%;
	}
}
@media screen and (max-width:1024px) {
	.mv .mv-img {
		margin: 0;
	}
	header {
		height: auto;
	}
	.ticket {
        right: 10px;
    }
	.pc_only {
		display: none;
	}
	.sp_only {
		display: block;
	}
	#intro {
		padding-bottom: 0!important;
	}
	

	#performer p.andmore{
		padding-bottom: 10px;
	}

	#ticket .t-contents .p-area {
		display: block;
	}
	
	#ticket .t-contents {
		width: 100%;
		margin: 0 auto;
	}
	#ticket .inner {
    	padding: 8px 0 20px 0;
		padding: 8px;
	}

	#ticket h3 span {
		border-bottom: none!important;
		width: auto;
	}
	#ticket .t-contents br.sp_only,
	#ticket .sp-bg-area-4 br.sp_only{
		display: none;
	}
	#ticket .t-contents .t-detail .eception-period {
		padding: 10px 0 0 0;
	}
	#ticket .price .t_a_c {
		padding-bottom: 10px;
	}
	#ticket .price span {
		font-size: 14px;
	}
	#ticket .t-contents .p-area {
		padding: 0px 0 10px 0;
	}
	#ticket .t-contents .p-area .t_a_c{
		font-size: 20px;
		line-height: 1.6em;
	}
	#ticket .day {
		padding-bottom: 25px;
		font-weight: 300;
	}
	
	#ticket .day .text-1 .text-1 {
		font-size: 23px;
	}
	#ticket .day .text-1 .text-1-1 {
		font-size: 16px;
	}
	#ticket .day .text-1 .text-1-2 {
		font-size: 14px;
	}
	#ticket .day .text-1 .text-1-3 {
		font-size: 19px;
	}
	#ticket .day .text-2 {
		font-size: 23px;
	}
	#ticket .live .real .p-area .t_a_c {
		font-size: 18px;
		padding-bottom: 15px;
	}
	#ticket .live .real .p-area span {
		font-size: 14px;
		text-align: center;
		display: inherit;
		padding-bottom: 40px;
	}
	#ticket .live .real .p-area span.f-s-08 {
		display: inline-block;
	}
	#ticket .live .real .f_w_b_500 {
		font-weight: 500;
	}
	#ticket .t-detail dl {
		padding-bottom: 20px;
		text-align: left;
		display: flex;
	}
	#ticket .t-detail dl dt {
		width: 100%;
		text-align: center;
		padding-bottom: 0;
		font-size: 0.8rem;
	}
	#ticket .t-detail dl dd {
		width: 100%;
		text-align: center;
	}
	#ticket .p-area .t_a_c{
		font-size: 18px;
		padding-bottom: 30px;
	}
	#ticket .sub-ttl {
		font-weight: 500!important;
		padding-bottom: 5px;
	}
	#ticket table .f-ttl {
		text-align: center;
	}
	#ticket table .b-der-r {
		border-right: none;
	}
	#ticket .sub-ttl-1 {
		text-align: center;
		font-weight: 500;
		font-size: 19px;
		padding-bottom: 10px;
	}
	#ticket .price-area {
		display: flex;
		justify-content: space-around;
		padding: 20px;
		text-align: center;
		font-size: 16px;
	}
	#ticket .price-area span.f_l {
		display: block;
	}
	#ticket .price-area span.f_s {
		display: block;
		padding-bottom: 10px;
		font-size: 0.875em;
	}
	#ticket .url-area {
		padding-bottom: 20px;
	}
	#ticket .url-area a {
		font-size: 0.9em;
	}
	#ticket .contact-2 {
		width: 87%;
		margin: 0 auto;
		padding: 10px 0 0;
	}
	#ticket .contact-2 p {
		text-align: center;
		line-height: 1.5em;
		padding-bottom: 10px;
	}
	#ticket .row_01 {
		width: 100%;
		padding: 7px;
		box-sizing: border-box;
	}
	#ticket .row_01 h4 {
		padding: 0 0 10px;
	}
		section#ticket .wrapper {
        width: 87%;
        margin: 0 auto;
        padding: 0 0 30px 0;
    }
	.bg-item-7 {
		width: 24%;
		max-width: 300px;
		margin-top: -140px;
		margin-left: -20px;
	}

	
	
}
@media screen and (min-width:1025px) and ( max-width:1160px) {
	.pc_only {
		display: block;
	}
	.sp_only {
		display: none;
	}
	.pc_p_first {
		padding: 15px 0 40px;
	}
	#performer .name {
		padding-top: 4px;
	}
	#performer .Performer .sns-area.w60 ul {
		padding-top: 10px;
	}
	#performer .Performer .sns-area.w50 ul {
		padding-top: 8px;
	}
}
@media screen and (min-width:768px) and ( max-width:1000px) {
	/**共通**/
	body {
		font-size: 14px!important;
	}
	.pc_only {
		display: none;
	}
	.sp_only {
		display: block;
	}
	.sp_tb_only {
		display: block;
	}
	.Performer-list .sp_only {
		display: none;
	}
	.scroll-area {
		width: 100px;
		margin: 0 auto;
		position: absolute;
		left: 43.5%;
		top: 79%;
	}
	/**sec_01**/
	#intro {
		padding-bottom: 95px;
		position: relative;
		z-index: 0;
		/*background: url(../img/mv-sp-2.jpg)no-repeat;
		background-attachment: fixed;
		background-size: cover;*/
	}
	#intro .inner {
		padding-bottom: 100px;
	}
	#intro .text-area {
		padding: 30px 0 80px;
	}

	/**sec_02**/

	#performer .inner {
		padding: 25px 0 0;
	}
	#performer .modal-content .content {
		margin: 0 auto;
		padding: 30px 40px 0;
	}
	#performer .name {
		font-size: 1.5em;
	}
	#performer .name_s {
		font-size: 1.25em;
	}
	.modal__content {
		padding: 20px;
		width: 100%;
	}
	#ticket {
		padding-bottom: 80px;
		position: relative;
		z-index: 0;
	}
	#ticket .inner .outline,
	#ticket .inner .about-ticket{
		width: 100%;
	}
	#ticket .sp_only.price {
		display: none;
	}
	#ticket .t-contents .t-detail {
		width: 100%;
	}
	#ticket .contact-1 {
		padding: 20px 0 30px;
	}
	#ticket table {
		width: 100%;
	}
	#access thead th {
		text-align: center;
	}
	#access table .w_15 {
		width: 20%;
	}
	#access table td {
		padding-right: 1em;
		box-sizing: border-box;
	}
	#access table th.f-c-glay {
		padding: 2em 0.5em 2em 0.5em;
	}
	#access .inner {
		padding-bottom: 80px;
	}

	#goods .comingsoon .montserrat {
		padding: 30px 0 60px;
	}

}

@media screen and (max-width:767px) {
	body {
		font-size: 16px;
		position: relative;
	}
	.pc_only {
		display: none;
	}
	.sp_only {
		display: block;
	}
	.sp_tb_only {
		display: block;
	}

	section .inner{
		width: 92%;
		margin: 0 auto;
		
	}
	section h2 {
		font-size: 24px;
    	z-index: 10;
	}
	section h2::after{
		width: 100px;
		bottom: -20px;
	}
	.scroll-area {
		width: 100px;
		margin: 0 auto;
		position: absolute;
		top: 71%;
		left: 38%;
	}
	/*ローディング*/
	.loader img {
		width: 50%;
		margin: 0 auto;
		display: block;
	}

	/*チケット*/
	.ticket .bt {
		width: 23vw;
		height: 9.5vw;
	}
	.information{
		margin-bottom: 0px;
		padding: 0;
	}
	
	#intro {
		padding-bottom: 0;
	}

	#intro .banner{
		padding-bottom: 40px;
		justify-content: space-between;
	}
	#intro .banner a{
		margin: 0;
		display: block;
		width: 49%;
	}
	#intro .banner a img{
		width: 100%;
	}

	#intro #twitter-widget-0, .t-inner iframe {
		width: 76vw!important;
		max-width: 800px!important;
		height: calc(76vw * 0.60)!important;
		margin: auto;
	}
	#intro .text-area {
		padding: 0px 0 0px;
		font-size: 1.125em;
		line-height: 1.66em;
		text-align: center;
		margin-top: -16px;
	}
	#intro .text-area .text-2 p {
		font-size: 16px;
		margin-bottom: 1em;
	}
	#intro .text-area p br{
		display: none;
	}
	#intro .img-area {
		width: 100%;
		padding-top: 30px;
	}
	#intro .t-inner {
		text-align: center;
	}
	.twitter-area .t-ttl {
		line-height: 1.25em;
		font-size: 1em;
    	font-weight: 600;
	}
	#intro {
		position: relative;
	}
	
	section#news {
		padding-bottom: 0;
	}
	#ticket {
		position: relative;
		padding-bottom: 0;
	}
	.pc_p_first .img-area {
		width: 86%;
		padding: 6px;
	}
		#performer p.message{
		font-size:  14px;
	}
	.pc_p_first .message-area-1 {
		margin: 10px auto 0;
		width: 87%;
	}
	.pc_p_first{
		width: 100%;
		padding: 0;
	}
	.modal-content .content {
		padding: 0;
	}
	#performer .Performer ul.Performer-list {
		display: block;
		width: 100%;
		margin: 0 auto;
	}
	#performer .Performer ul.Performer-list li {
		width: 100%;
		padding: 0;
		padding-bottom: 30px;
	}

	#performer .Performer ul li,
	#performer .Performer .empty_item{
		width: 87%;
		margin: 0 auto;
		padding-top: 24px;
	}
	#performer .Performer .sns-area.w60 ul {
		width: 100%;
		padding-top: 10px;
	}
	#ticket .t-contents .t-detail {
		width: 100%;
		padding: 30px 0 0;
	}
	#performer .name {
		padding: 6px 0 3px;
		font-size: 18px;
	}
	#performer .Performer .sns-area.w50 ul {
		padding-top: 5px;
	}
	#performer .Performer .sns-area.w50 {
		width: 62%;
		margin: 0 auto;
	}
	#ticket .t-contents {
		width: 100%;
		margin: 0 auto;
		border-bottom:none;
	}
	#ticket .inner {
		width: 100%;
		border-bottom:none;
	}
	#ticket .t-contents br.sp_only,
	#ticket .sp-bg-area-4 br.sp_only{
		display: block;
	}
	#performer .modal-inner-2 .pc_only.sns-box {
		display: none;
	}
	#performer .modal-inner-2 .sp_only.sns-box {
		display: block;
	}
	#ticket .inner h3{
		margin-bottom: 10px;
		width: 100%;
		font-size: 14px;
	}
	#ticket .price {
		text-align: center;
		padding: 1em 0 0 0;
		font-size: 18px;
	}
	#ticket .price .t_a_c {
		padding-bottom: 10px;
	}
	#ticket .day {
		padding-bottom: 4px;
	}
	
	#ticket .day .text-1 .text-1 {
		font-size: 23px;
	}
	#ticket .day .text-1 .text-1-1 {
		font-size: 16px;
	}
	#ticket .day .text-1 .text-1-2 {
		font-size: 14px;
	}
	#ticket .day .text-1 .text-1-3 {
		font-size: 19px;
	}
	#ticket .day .text-2 {
		font-size: 23px;
		line-height: 1em;
	}
	#ticket h3.price-pc {
		width: 100%;
		padding-bottom: 30px;
	}
	#ticket .live .real .p-area .t_a_c {
		font-size: 18px;
		padding-bottom: 15px;
	}
	#ticket .live .real .p-area span {
		font-size: 14px;
		text-align: center;
		display: inherit;
		padding-bottom: 40px;
	}
	#ticket .live .real .f_w_b_500 {
		font-weight: 500;
	}
	#ticket .live .live_archive {
		border-bottom: 1px solid #162328;
		padding-bottom: 20px;
	}
	#ticket .t-detail dl {
		padding-bottom: 20px;
		text-align: left;
		display: flex;
	}
	#ticket .t-detail dl dt {
		width: 100%;
		text-align: center;
		padding-bottom: 0;
		font-size: 0.8rem;
	}
	#ticket .t-detail dl dd {
		width: 100%;
		text-align: center;
	}
	#ticket table td.w50 {
		padding-left: 0;
	}
	#ticket table ul {
		border-bottom: 1px solid #768593;
	}
	#ticket table ul:last-child {
		border-bottom: none;
	}
	#ticket table th {
		display: block;
		width: 100%;
		margin: 0 auto;
		padding: 1em!important;
		text-align: center;
		box-sizing: border-box;
	}
	#ticket table td {
		display: block;
		width: 100%;
		margin: 0 auto;
		box-sizing: border-box;
		padding: 1em 0 2em;
	}
	#ticket table .p-left {
		padding: 1em 0 2em;
	}
	#ticket table .l-tr {
		border-bottom: none!important;
	}
	#ticket table dl,
	#ticket .sp-bg-area-4 dl {
		display: flex;
		flex-wrap: wrap;
	}
	#ticket table dt,
	#ticket .sp-bg-area-4 dt {
		font-weight: normal;
		width: 25%;
		padding-bottom: 0.75em
	}
	#ticket table dd{
		width: 75%;
		padding-bottom: 0.75em;
		line-height: 1.25em;
	}
	#ticket .sp-bg-area-4 dd {
		width: 75%;
		line-height: 1.25em;
		padding-bottom: 0.75em;
	}
	#ticket .sp-bg-area-4 dt.w-40 {
		width: 40%;
	}
	#ticket .sp-bg-area-4 dd.w-60 {
		width: 60%;
	}
	#ticket .p-area .t_a_c{
		font-size: 18px;
		padding-bottom: 30px;
	}
	#ticket .sub-ttl {
		font-weight: 500!important;
		padding-bottom: 5px;
		text-align: center;
		font-size: 18px;
	}
	#ticket table .f-ttl {
		text-align: center;
	}
	#ticket table .b-der-r {
		border-right: none;
	}
	#ticket .sub-ttl-1 {
		text-align: center;
		font-weight: 500;
		font-size: 19px;
		padding-bottom: 10px;
	}
	#ticket .price-area {
		display: flex;
		justify-content: space-around;
		padding: 20px;
		text-align: center;
		font-size: 16px;
	}
	#ticket .price-area span.f_l {
		display: block;
	}
	#ticket .price-area span.f_s {
		display: block;
		padding-bottom: 10px;
		font-size: 0.875em;
	}
	#ticket .url-area {
		padding-bottom: 20px;
	}
	#ticket .url-area a {
		font-size: 0.9em;
	}
	#ticket h4{
		font-size: 1.2em;
		padding:0 0 0px 0;
	}
	#ticket .contact-2 {
		width: 87%;
		margin: 0 auto;
		padding: 20px 0 10px;
	}
	#ticket .contact-2 p {
		text-align: center;
		line-height: 1.5em;
		padding-bottom: 10px;
		border-bottom: none;
	}
	#ticket .row_01 {
		
	}

	#ticket h4 small{
		font-size: 0.8rem;
	}
	#ticket .t-contents .p-area .t_a_c{
		padding-bottom: 0;
		font-size: 17px;
		font-weight: bold;
	}
	#ticket .t-detail dl{
		padding-bottom: 0px;
	}
	#ticket .t-contents .p-area .t_a_c br.sp_only{
		display: none;
	}
	#ticket .t-contents .p-area .t_a_c:before{
		display: none;
	}
	#ticket .t-contents .p-area .t_a_c.streaming-price{
		padding-bottom:10px;
	}
	#ticket .movie{
		width: 100%;
		margin: 10px auto;
	}
	#ticket .movie video{
		height: 200px;
	}
	#access {
		padding: 30px 0;
	}
	#access .g_map {
		width: 100%;
	}
	#access{
		margin-top: 0;
	}
	section#access .wrapper {
        padding: 0;
    }
	#access .inner {
		padding-top: 0;
	}
	#access .place-map-area
	#access .text-area .text-1 {
		font-size: 23px;
		font-weight: 300;
		padding: 20px 0 ;
	}
	#access .place-map p {
		font-size: 14px;
	}
	#access .place-map a {
		font-size: 16px;
	}
	#access a.bt{
		padding: 10px;
		font-size: 18px;
	}
	#access .text-area .text-2 {
		font-size: 1em;
		line-height: 1.25em;
		padding: 15px 0 10px;
	}

	.sec_7 {
		position: relative;
		padding-bottom: 80px;
	}

	.sec_7 .row_01 .ttl,
	.sec_7 .row_01 .info_text{
		text-align: left;
	}
	.sec_7 .row_01 .ttl{
		font-size: 1.1em;
	}
	
	.sec_6 .inner_2 {
		height: 300px;
	}
	.sec_6 h2:before {
		content: '';
		display: block;
		width: 80px;
		height: 80px;
		background: url("../img/history-icon.png") no-repeat center center;
		background-size: contain;
		margin: 0 auto;
	}


	#goods .comingsoon{
		padding: 30px 0;
	}
	section#archive {
		padding: 40px 0 32px;
	}
	#archive ul {
		display: block;
	}
	#archive ul li {
		width: 76%;
		margin: 0 auto 24px;
	}
	#archive ul li .text-area .text-02 {
		font-size: 12px;
		line-height: 1.2em;
	}
	section.sec_7 {
		padding: 0 0 40px;
	}
	.sec_7 .row_01 h4 {
		padding: 0 0 10px;
    	line-height: 1.7em;
	}
	.sec_7 .row_02 h4 {
		padding: 9px 0 5px;
	}
	.sec_7 .f-contact .row-1 {
		padding-bottom: 16px;
	}
	.sec_7 .row_02 {
		padding-bottom: 56px;
	}
	.sec_7 .f-contact .row-2 {
		padding: 16px 0 0;
	}
	footer p {
		font-size: 0.8em;
		line-height: 1.5em;
	}
	footer {
		padding: 16px 0 67px 0;
	}
	footer .bg-item-7 {
		width: 39%;
		margin-top: -120px;
		margin-left: -15px;
	}
}

@media screen and (max-width: 380px) {
	#performer .Performer ul li, #performer .Performer .empty_item {
		padding-top: 15px;
	}
	.header-nav > ul > li a {
		font-size: 24px;
	}

}




















