@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: #31B5C8;
	--accent-color:#F9D714;
	--link-color:#CA4C2A;
	--text-color: #000;
	--gray-color:#f5f5f5;
	/*--font-aclonica:"Aclonica",sans-serif;*/
	--font-aclonica:"Noto Sans JP",sans-serif;
	--font-h3:27px;
	--font-h4:20px;
	--font-h5:18px;
	--font-middle:20px;
	--font-default:16px;
	--font-small:14px;
	--box-shadow:0px 4px 4px 0px rgba(0,0,0,0.25);
}
@media screen and (max-width:767px) {
	:root {
		--font-h4:18px;
		--font-middle:17px;
		--font-small:12px;
	}
}

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

/*font-family: 'Montserrat', sans-serif;*/
/***************************************
02.共通
***************************************/
body {
	font-size: var(--font-default);
	font-family:"Noto Sans JP",sans-serif;
	font-weight: 400;
	text-align: justify;
	background: #fff;
	color: var(--text-color);
}
@media screen and (max-width:767px) {
	body {
	}
}

h1, h2, h3, h4, h5, h6 {
	font-weight: 700;
}
a {
	color: var(--link-color);
	word-break: break-all;
	text-decoration: none;
}
a.map-link{
	display: inline-block;
	position: relative;
}
a.map-link::before{
	content: "";
	background: url(../img/pin.svg) no-repeat center center/100%;
	width: 16px;
	height: 24px;
	display: inline-block;
	margin-right: .2em;
	vertical-align: middle;
}

a:hover {
	color:var(--accent-color);
	text-decoration: none;
}

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;
}
.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: 80px 0 80px 0;
	position: relative;
}
section h2 {
	text-align: center;
	position: relative;
	color: var(--accent-color);
	font-family:var(--font-aclonica);
	font-size: 50px;
	margin-bottom: 20px;
}
section h3{
	font-size:var(--font-h3);
	color: var(--accent-color);
	padding-bottom: 20px;
	font-family:var(--font-aclonica);
}
section h4{
	font-size: var(--font-h4);
	font-weight: 700;
	padding-bottom: 10px;
	line-height: 1.6em;
	text-align: center;
}
section h5{
	font-size: var(--font-h5);
	font-weight: 700;
	padding-bottom: 20px;
	line-height: 1.6em;
	text-align: center;
}
section p{
	line-height: 1.6em;
}

@media screen and (max-width:767px) {
	section{
		padding: 30px 0 50px 0;
		overflow-y: hidden;
	}
	section h2 {
		font-size: 35px;
	}
	.pc_only {
		display: none;
	}
	.sp_only {
		display: block;
	}
	br.sp_only{
		display: inline;
	}
}

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

/*------------チケット-----------------*/
#ticket_bt {
	position: fixed;
	bottom: 15%;
    right: 3%;
    padding: 0px;
    z-index: 100;
}
#ticket_bt a{
	display: block;
	background: url(../img/ticket_bt.png) no-repeat center right/100%;
	width: 149px;
	height: 107px;
}
#ticket_bt a:hover{
	opacity: 0.7;
}

@media screen and (max-width:1024px) {
	/*#ticket_bt{
		display: none!important;
	}*/
	#ticket_bt {
		bottom: 5px;
		right: 5px !important;
	}
	#ticket_bt a{
		width: 80px;
    	height: 57px;
	}
	#ticket_bt a:hover{
	opacity:1;
}
}
/*------------ヘッダー-（ナビゲーション・ロゴ）----------------*/
.pc_logo_area {
	width: 50%;
    padding:0 15px;
    display: block;
    box-sizing: border-box;
}
.pc_logo_area img{
	width: 51px;
	height: 51px;
}
.pc_logo_area a{
	display: block;
	color: white;
	text-decoration: none;
	font-size: 23px;
	font-weight: bold;
	line-height: 1.2em;
}
.pc_logo_area a small{
	font-size: 16px;
}

header {
	position: relative;
	width: 100%;
	display: none;
	background: var(--link-color);
}
.header-inner{
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 70px;
}

header nav {
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: flex-end;
	z-index: 10;
	position: relative;
}
header nav ul {
	width: 100%;
	padding: 0 3vw 0 0;
	display: flex;
	justify-content: flex-end;
	box-sizing: border-box;
}
header nav ul li{
	padding-left: 2em;
}
header nav ul a {
	text-decoration: none;
	display: inline-block;
	font-family:var(--font-aclonica);
	font-size: 20px;
	color: #fff;
	font-weight: bold;
}
header nav ul a:hover {
	text-decoration: none;
	color:var(--accent-color);
	padding-bottom: 0;
}
.fixed{
	position: fixed;
	top: 0;
	right: 0;
	z-index: 900;
}
.sp-tickets{
	display: none;
}

/*ナビゲーション*/
@media screen and (max-width:1024px) {
	header{
		display: block!important;
	}
	.pc_logo_area {
		width: 70%;
		padding:0 0px;
	}
	.pc_logo_area img{
		width: 38px;
		height: 38px;
	}
	#top-head {
		position: fixed;
		display: block!important;
		z-index: 100;
		height: 60px;
	}
	.header-info, .header-nav-list a span {
		display: none;
	}
	.header-inner {
		padding: 0 10px;
		z-index: 100;
		width: 100%;
		height: 60px;
	}
	.header-nav {
		width: 100%;
		position: fixed;
		top: 0;
	}
	.header-nav-list {
		display: block;
		padding-top: 100px;
		background: var(--link-color);
	}
	.sp_header {
		display: flex;
	}
	.sp_logo_area {
		width: 60px;
		padding: 15px;
		display: block;
	}
	.nav-right{
		display: flex;
		align-items: center;
	}
	.sp-tickets {
		display: flex;
		height: auto;
		padding: 0;
		text-align: center;
		margin-right: 10px;
		box-sizing: border-box;
		width: 80px;
	}
	.sp-tickets a img{
		width: 100%;
	}
	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: 100%;
		padding: 0;
		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;
		z-index: 100;
	}
	#nav_toggle div {
		position: relative;
	}
	#nav_toggle span{
		display: block;
		height: 1px;
		background: #fff;
		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:10px;
	}
	#nav_toggle span:nth-child(3){
		top:20px;
	}
	
	/*開閉ボタン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;
	}
}
@media screen and (max-width:767px) {
	header nav {
		display: none;
		position: fixed;
		top: 60px;
		width: 100%;
		height: 100%;
		left: 0;
	}
}

/*------------フッター-----------------*/
footer {
	padding: 40px 0 40px 0;
	position: relative;
	margin: auto;
	background: var(--link-color);
	color: white;
}
footer p {
	padding-bottom: 0.5em;
	text-align: center;
	line-height: 1.6em;
	font-size: var(--font-small);
}

/*------------共通-----------------*/
.contents {
}
section .inner{
	margin: 0 auto;
	position: inherit;
	max-width: 1000px;
}
@media screen and (max-width:767px) {
	section .inner{
		margin: 0 15px;
	}
}


/***************************************
03.メインビジュアル
***************************************/
.mv {
}
.mv .mv-img{
	background: url(../img/main.webp) no-repeat center center/cover;
	margin: 0;
    padding-top: calc(1266 / 2500 * 100%);
	position: relative;
}
.mv h1{
	display: none;
}
@media screen and (max-width:1024px) {
	.mv {
		padding-top: 60px;
	}
}
@media screen and (max-width:767px) {
	.mv .mv-img{
		background:#fff url(../img/main_sp.webp) no-repeat center center/100%;
		padding-top: calc(750 / 750 * 100%);
	}
}
/*news*/
#news{
	padding-bottom: 0;
}
#news ul {
	max-height: 148px;
	overflow: auto;
	display: flex;
	justify-content: center;
	flex-direction: column;
	max-width: 613px;
	padding: 20px 50px;
	margin: auto;
	overflow: scroll;
	box-shadow: var(--box-shadow);
	border-radius: 5px;
	background: var(--gray-color);
	color: #000;
}
#news ul li {
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	line-height: 1.7em;
	padding: 5px 0px;
	box-sizing: border-box;
}
#news ul li time {
	width: 5em;
}
#news ul li p {
	padding-left: 1em;
	text-align: left;
	width: calc(100% - 6em);
}

a.bt{
	display: block;
	margin: 20px auto;
	width: 20em;
	border-radius: 50px;
	text-align: center;
	position: relative;
	background: none;
	font-weight: 500;
	font-size: 16px;
	background: var(--link-color);
	color: white;
	padding: 10px 20px;
	box-sizing: content-box;
	transition: all 0.5s 0s ease;
	box-sizing: border-box;
}
a.bt:hover{
	background: var(--accent-color);
	transition: all 0.5s 0s ease;
}


@media screen and (max-width:767px) {
	#news{
		max-width: 100%;
	}
	#news ul {
		padding: 20px;
	}
	a.bt{
		width: 100%;
	}
}
/***************************************
04.イントロダクション
***************************************/
section.sec_1::after,
section.sec_2::after,
section.sec_3::after,
section.sec_4::after{
	content: "";
	/*width: 547px;
	height: 19px;*/
	height: 3px;
	max-width: 1000px;
	width: 100%;
	border-top: 3px dashed var(--link-color);
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	display: block;
	/*background: url(../img/line.png) no-repeat center center/100%;*/

}
@media screen and (max-width:767px) {
	section.sec_1::after,
	section.sec_2::after,
	section.sec_3::after,
	section.sec_4::after{
		width: 90%;
		height: 14px;
	}
}

section.sec_1 .inner{
	text-align: center;
}
@media screen and (max-width:767px) {
	section.sec_1 h2{
	}
}
.sec_1 .text-area {
	padding: 20px 0 0px 0;
	position: inherit;
	z-index: 10;
	font-weight: 500;
    font-size: var(--font-middle);
    line-height: 1.7em;
	text-align: center;
}
.sec_1 .text-area p{
	padding-bottom: 1.5em;
}
ul.comment{
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	margin: 0 -0.5%;
}
ul.comment li{
	padding: 30px;
	width: 49%;
	margin: 0 0.5%;
	background: #FFEAD1;
	box-shadow: var(--box-shadow);
	color: #000;
	border-radius: 5px;
	margin-bottom: 20px;
}
ul.comment li p{
	line-height: 1.6em;
}
ul.comment li h5{
	color: #000;
}
/*ul.comment li:first-child,
ul.comment li:last-child{
	background: #FFEAD1;
}*/
ul.comment.second li:nth-child(odd){
	background: var(--gray-color);
}
.summary{
	padding:30px 0 50px 0;
}

@media screen and (max-width:767px) {
	.sec_1 .text-area {
		font-size: 18px;
		padding: 0;
		text-align: left;
	}
	.summary p{
		text-align: left;
	}
	.summary p br{
		display: none;
	}
	ul.comment {
		margin: 0;
	}
	ul.comment li{
		width: 100%;
		padding: 20px;
		margin:0 0 20px 0;
	}
	ul.comment li p{
		text-align: left;
	}
}


/***************************************
05.アーティスト .sec_2
***************************************/
.sec_2{
	text-align: center;
}
.Performer {
	margin: 0px auto;
	padding: 0px 0;
	text-align: center;
	line-height: 2em;
}
.Performer .flex{
	display: flex;
	justify-content: center;
	max-width:600px;
	flex-wrap: wrap;
	margin: 10px auto;
	max-width: 90%;
}
.Performer .flex > div{
	line-height: 1.2em;
	margin-bottom: 30px;
	font-weight: 700;
	margin: 0 1% 30px 1%;
	width: 316px;
	font-weight: bold;
}
.Performer .flex.four > div{
	width: auto;
	margin: 30px 5% 60px 5%;
}

.Performer .flex > div img{
	width: 100%;
	margin-bottom: 10px;
	border-radius: 5px;
	box-shadow: var(--box-shadow);
	display: block;
}
.Performer .flex > div small{
	font-size: 14px;
	font-weight: 400;
	line-height: 1.4em;
	display: inline-block;
	padding-top: 5px;
}
.staff p{
	padding-bottom: 1em;
}

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

	.Performer {
		padding: 0px 0 40px 0;
	}
	.Performer .flex{
		width: 98%;
		margin-bottom: 0px;
	}
	.Performer .flex.four > div,
	.Performer .flex > div{
		width: 48%;
		margin-bottom: 10px;
	}
	.Performer .flex.guest.sp_only{
		display:flex;
	}
	.Performer .flex.guest.pc_only{
		display: none;
	}
	.Performer .flex > div small{
		font-size: 12px;
		line-height: 1.4em;
		padding-top: 5px;
	}

	.Performer .flex.main > div,
	.Performer .flex.guest > div{
		width: 49%;
	}
}

/***************************************
07.チケット .sec_3
***************************************/
.sec_3 {
}
.sec_3 .inner{
	text-align: center;
}

.sec_3 .inner .about-ticket{
	text-align: center;
	line-height: 1.8em;
	position: relative;
	margin: auto;
	margin-top: 30px;
}
.sec_3 .inner div.title{
	font-size: 24px;
	font-weight: bold;
	padding-bottom: 20px;
}

div.place{
	font-size: var(--font-middle);
	margin-bottom: 20px;
	font-weight: 700;
	line-height: 1.8em;
}
@media screen and (max-width:767px) {
	.sec_3 .inner div.title{
	font-size: 20px;
	}
}
.sec_3 .inner div.day strong{
	font-weight: 700;
	font-size: var(--font-h4);
	line-height: 1.8em;
}
.sec_3 .inner div.price{
	padding: 20px 0 60px 0;
}
.sec_3 .inner div.price p{
	padding-bottom: 20px;
}

.sec_3 .inner dl{
	width: 30em;
	margin: auto;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.sec_3 .inner dl dt,
.sec_3 .inner dl dd{
	padding-bottom: 10px;
	text-align: left;
	position: relative;
}
.sec_3 .inner dl dt{
	width: 6em;
}
.sec_3 .inner dl dd{
	width: calc(100% - 6.5em);
	word-break: break-all;
}
.sec_3 .inner div.price dl dd span.notice{
	position: absolute;
	bottom: 10px;
	right: -7em;
	font-size: 14px;
	font-weight: 700;
}
.sec_3 .inner div.price p strong{
	font-size:32px;
	font-weight: bold;
	display: inline-block;
	margin-left: 0.5em;
}
.sec_3 .inner div.price p{
	font-size: 15px;
	line-height: 1.4rem;
	font-weight: 400;
}
@media screen and (max-width:767px) {
	.sec_3 .inner dl{
		width: 100%;
	}
	.sec_3 .inner dl dt{
		padding-bottom: 0;
		width: 5em;
	}
	.sec_3 .inner dl dd{
		padding-bottom: 20px;
		width: calc(100% - 5.5em);
	}
}
.schedule{
	padding-top: 40px;
}
.schedule .schedule-wrap{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.schedule .schedule-wrap div{
	width: 49%;
	background: var(--gray-color);
	box-shadow: var(--box-shadow);
	border-radius: 5px;
	padding: 30px;
	color:#000;
}
.schedule .schedule-wrap div h6{
	margin-bottom: 20px;
}
.schedule .schedule-wrap div img{
	display: block;
	margin: 20px auto;
}
.schedule .schedule-wrap div:nth-of-type(2) img{
	max-width: 103px;

}

.sec_3 .t-contents{
	text-align: center;
}
.sec_3 .contact-1 {
	text-align: center;
	line-height: 1.5em;
	margin-bottom: 1em;
}
.sec_3 .contact-1 p{
	padding-bottom: 10px;
}
@media screen and (max-width:767px) {
	.sec_3 .inner .about-ticket{
		padding: 10px 0;
		line-height: 1.4em;
	}
	.sec_3 .inner div.day{
		font-weight: 700;
		font-size: var(--font-h4);
	}
	div.place{
		margin-bottom: 10px;
	}
	.sec_3 .inner div.price{
		font-size: 24px;
		padding: 20px 0 50px 0;
	}
	.sec_3 .inner div.price small{
		font-size: var(--font-default);
	}
	.sec_3 .inner div.price p{
		padding-bottom: 10px;
	}
	.schedule .schedule-wrap div{
		width: 100%;
		margin-bottom: 20px;
	}
	
}

.sec_3 .row_01{
	padding: 40px 0;
	margin: auto;
	width: 100%;
	
}
.sec_3 .row_01 .ttl,
.sec_7 .row_01 .ttl {
	text-align: center;
	font-weight: 500;
	font-size: 1.25em;
	line-height: 1.25em;
}

.sec_3 .t-contents {
	margin: 0 auto;
	position: relative;
	z-index: 10;
}
.sec_3 .t-contents .p-area {
	padding: 20px 0 0 0px;
	text-align: center;
}
.sec_3 .t-contents .p-area .t_a_c {
	padding-bottom: 10px;
	font-size: 32px;
    margin: auto;
    font-weight: 700;
}
.sec_3 .t-contents .p-area .t_a_c:before{
	content: "";
	width: 1rem;
	height: 1px;
	background: white;
	display: inline-block;
	vertical-align: middle;
	margin-right: 3px;

}

/***************************************
08.チケットに関する注意事項 .sec_3
***************************************/
.sec_3 .ttl-area {
	padding-bottom: 50px;
}
.sec_3 .inner .row_01 h4 {
	text-align: center;
}
.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 {
	text-indent: -1.4em;
	padding-left: 1em;
	padding-bottom: 0.6em;
    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) {
	.sec_3 .row_01{
		padding-top:30px;
	}
}

/***************************************
09.アクセス .sec_4
***************************************/
.sec_4 .inner{
	padding-top: 20px;
}
.sec_4 .map{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	padding-bottom: 30px;
}
.sec_4 .text-area {
	text-align: left;
	width: 58%;
	line-height: 1.6em;
}
.sec_4 p.address{
	padding-bottom: 1em;
}
.sec_4 div.place{
	margin-bottom: 5px;
}
.sec_4 .g_map {
	width: 39%;
	position: relative;
    z-index: 10;
}
.sec_4 .g_map iframe {
  width: 100%;
  height: 256px;
  display: block;
  box-shadow: var(--box-shadow);
}
.sec_4 .access-info p{
	padding-bottom: 0.5em;
}
.sec_4 .access-info ul {
	margin-left: 1em;
}
.sec_4 .access-info ul li{
	padding-bottom: 0.2em;
	list-style-type:disc;
}
@media screen and (max-width:767px) {
	.sec_4 .inner{
		display: block;
		margin: 0;
	}
	.sec_4 .text-area {
		width: 100%;
		padding: 0 20px;
	}
	.sec_4 div.place{
		font-size: 17px;
	}
	.sec_4 .g_map {
		display: block;
		width: 100%;
		margin-bottom: 20px;
	}
	.sec_4 p.address{
		line-height: 1.4em;
	}
	.sec_4 .g_map_inner {
		height: 250px;
	}
	.sec_4 .access-info h5{
		font-size: 1em;
		padding-bottom: 10px;
	}
	.sec_4 .g_map iframe {
		height: 250px;
	}
	.sec_4 .access-info ul li{
		padding-bottom: 0.5em;
	}
}


/***************************************
10.GOODS sec_5
***************************************/
.sec_5 {
	padding-bottom: 40px;
}
.sec_5 p.comingsoon{
	font-family:var(--font-aclonica);
	font-size: 22px;
	text-align: center;
	padding: 40px 0;
}
.sec_5 .img{
	padding: 30px 0 10px 0;
	text-align: center;
}
.sec_05 .c-s {
	font-size: 18px;
	text-align: center;
	font-weight: bold;
}
.sec_05 #GOODS {
    padding: 0;
	line-height: 1.5;
}
.sec_05 #GOODS .goods_notice p {
    text-align: center;
    line-height: 1.8rem;
	margin-top: 10px;
    margin-bottom: 40px;
	font-size: 20px;
	font-weight: bold;
}
.sec_05 #GOODS>a.btn {
    display: block;
    margin: 0 auto 20px;
    text-decoration: none;
    color: #fff;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    background-color: #E89600;
    width: fit-content;
    padding: 23px 60px;
    box-sizing: border-box;
    border-radius: 45px;
    border: 2px solid #fff;
	box-shadow: 0px 3px 6px 0px rgba(193, 1, 24, 0.4);
}
.sec_05 #GOODS>a.btn:hover {
    opacity: 0.8;
}
#GOODS h3 {
    font-weight: bold;
    text-align: center;
    font-size: 20px;
    padding-bottom: 20px;
	line-height: 1.8em;
}
.sec_05 #GOODS ul.goods_info {
	list-style-position: outside;
    padding-left: 1em;
    list-style-type: "※";
}
.sec_05 #GOODS ul.goods_info:nth-of-type(1) {
	margin-bottom: 40px;
}
.sec_05 #GOODS ul.goods_info li {
    padding-bottom: 8px; 
}
.sec_05 #GOODS ul.goods_list {
	display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 0 24px;
	margin-top: 60px;
}
.sec_05 #GOODS ul.goods_list li {
    width: 23%;
    margin-bottom: 40px;
}
.sec_05 #GOODS ul.goods_list li a {
    color: white;
    display: block;
}
.sec_05 #GOODS ul.goods_list li a:hover {
    text-decoration: none;
    color: #E89600;
}
.sec_05 #GOODS ul.goods_list li a.btn {
    display: block;
    margin: 0 auto 10px;
    text-decoration: none;
    color: #fff;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    background-color: #E89600;
    width: 100%;
    padding: 10px 20px 11px 15px;
    box-sizing: border-box;
    border-radius: 45px;
}
.sec_05 #GOODS ul.goods_list li a.btn:hover {
    opacity: 0.7;
}
.sec_05 #GOODS ul.goods_list li a img {
    width: 100%;
    margin-bottom: 10px;
}
.modal-inner h4, .sec_05 #GOODS ul.goods_list li a h4 {
    font-weight: bold;
    padding-bottom: 10px;
    line-height: 1.6rem;
}
.modal-inner p, .sec_05 #GOODS ul.goods_list li a p {
    margin-bottom: 10px;
}
.modal-inner p.price, .sec_05 #GOODS ul.goods_list li a p.price {
    text-align: right;
	font-weight: bold;
	padding-bottom: 15px;
}
.modal-inner p.price strong, .sec_05 #GOODS ul.goods_list li a p.price strong {
    font-size: 1.2rem;
    font-weight: bold;
}
.modal-inner p.exp, .sec_05 #GOODS ul.goods_list li a p.exp {
    line-height: 1.4rem;
}
.modal-inner p.exp span.small, .sec_05 #GOODS ul.goods_list li a p.exp span.small {
    font-size: 14px;
}
.sec_05 #GOODS .online_bnr {
    text-align: center;
}
#GOODS .dates{
	font-size: 20px;
    font-weight: bold;
    padding: 20px;
    background: white;
    color: #000;
    text-align: center;
    line-height: 1.7;
    margin-bottom: 20px;
}
#GOODS .dates dl {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    line-height: 1.6em;
    text-align: left;
}
#GOODS .dates dl dt {
    width: 25%;
    position: relative;
    text-align: right;
    padding-right: 5px;
}
#GOODS .dates dl dd {
    width: 60%;
    line-height: 1.5;
}
.sec_05 #GOODS h3.sales {
    margin-top: 40px;
}
.sec_05 #GOODS .goods_info_ttl {
    font-size: 18px;
    font-weight: bold;
    padding-bottom: 10px;
	margin-top: 20px;
}
.sec_05 #GOODS .goods_info_ttl:first-child {
    margin-top: 0;
}
/*------------mordal-area-----------------*/
.modal-content {
    width: 100%;
}
.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: 85%;
    background: #110B04;
    left: 50%;
    padding: 50px;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 50%;
    box-sizing: border-box;
    border: 1px solid #DEC9B0;
}
.batsu {
    display: block;
    position: absolute;
    width: 50px;
    height: 50px;
    top: -20px;
    right: -20px;
    background-color: #DEC9B0;
    border-radius: 50%;
	color: #110B04;
}
.batsu::before, .batsu::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 3.5px;
    height: 25px;
    background: #110B04;
}
.batsu::before {
    transform: translate(-50%, -50%) rotate(45deg);
}
.batsu::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}
.modal__content .modal-inner {
    height: 100%;
    overflow-y: auto;
}
.modal__content .modal-inner img {
    width: 75%;
    display: block;
    margin: auto;
    padding-bottom: 20px;
}
.modal-inner h4 {
    font-size: 1.4rem;
}
.modal-inner p.price{
	padding-bottom: 0;
}
.modal-inner p.price strong {
    font-size: 1.4rem;
}
@media screen and (max-width:767px) {
	.sec_5 p.coming{
		font-size: 20px;
	}
	section.sec_5 .inner a.bt{
		width: 100%;
	}
}
.sec_5 .comingsoon{
	text-align: center;
	font-size: 2.5em;
	text-align: center;
	padding: 80px 0 80px;
	text-align: center;
}
/*仮*/
.sec_5_2 {
	padding: 100px 0;
}

.sec_5 .ttl-area {
	padding-bottom: 50px;

}
#GOODS{
	padding-top: 30px;
}
#GOODS p{
	line-height: 1.8rem;
	margin-bottom: 30px;
}
#GOODS p.lead{
	text-align: center;
}
#GOODS p.dates{
	font-size: 1.3rem;
	font-weight: bold;
	padding: 20px;
	background: white;
	color: #000;
	text-align: center;
}

#GOODS>a.btn {
    display: block;
    margin: 30px auto 60px;
    text-decoration: none;
    color: #fff;
    text-align: center;
    font-size: 1.5rem;
	font-weight: bold;
    background: #A4000F;
    width:20em;
    padding: 14px 20px 16px 15px;
    box-sizing: border-box;
    border-radius: 30px;
}
#GOODS>a.btn:hover{
	opacity: 0.7;
}

#GOODS ul{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
#GOODS ul li{
	width: 32%;
	margin-bottom: 30px;
}
#GOODS ul h4{
	font-size: 18px;
}
#GOODS ul li p{
	margin-bottom: 0px;
	text-align: left;
}
#GOODS ul li img{
	width: 100%;
	margin-bottom: 10px;
}
#GOODS ul li a{
	color:#DEC9B0;
	display: block;
	
}
#GOODS ul li a:hover{
	text-decoration: none;
	color: #A2F8EC;
}
#GOODS ul li a:hover img{
	opacity: 0.7;
}
#GOODS ul li p.name{
	font-weight: bold;
	padding-bottom: 0px;
	line-height: 1.4rem;
}
#GOODS ul li p.price{
	text-align: right;
	font-size: 20px;
	font-weight: bold;
}
#GOODS ul li p.exp{
	font-size: 14px;
}
#GOODS ul li p.price strong{
	font-size: 1.2rem;
	font-weight: bold;
}
.modal-inner p.price strong{
	font-size: 1.4rem;
}

#GOODS div.day{
	padding: 30px;
	background: #DEC9B0;
	color: #000;
	margin-bottom: 30px;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
.sec_3 .inner .outline > div.day h5 {
    width: 2em;
    margin: 0.4em 2em 0 0em;
    padding: 0;
}
#GOODS div.day p{
	display: inline-block;
	margin: 0;
	font-size: 20px;
}
#GOODS div.day p span{
	display: inline-block;
	background: #110B04;
	color: #DEC9B0;
	padding: 3px 5px;
	width: 12em;
	margin-bottom: 10px;
	text-align: center;
	margin-right: 10px;
}
#GOODS div.day{
	font-weight: bold;
	padding-left:10px;
}


@media screen and (max-width:767px) {
	.sec_05 #GOODS .goods_notice p {
		font-size: 18px;
		line-height: 1.5;
		margin-bottom: 25px;
	}
	
	.sec_05 .c-s {
		font-size: 14px;
		text-align: center;
		padding: 0;
	}
	#GOODS h3 {
		padding-bottom: 10px;
	}
	#GOODS h3 br{
		display: none;
	}
	#GOODS .dates {
		font-size: 16px;
	}
	.sec_05 #GOODS>a.btn {
		font-size: 18px;
		padding: 20px 40px;
		width: fit-content;
	}
	
	#GOODS .dates dl {
		display: block;
	}
	#GOODS .dates dl dt {
		width: 100%;
		text-align: center;
	}
	#GOODS .dates dl dd {
		width: 100%;
		text-align: center;
		padding-bottom: 15px;
	}
	#GOODS .dates dl dd:last-child {
		padding-bottom: 0;
	}
	#GOODS ul li {
		gap: 0 13px;
	}
	#GOODS ul li {
		width: 48%;
	}
	.modal-inner p.price, .sec_05 #GOODS ul.goods_list li a p.price {
		font-size: 14px;
	}
	.modal-inner p.exp, .sec_05 #GOODS ul.goods_list li a p.exp {
		line-height: 1.2rem;
		font-size: 0.9rem;
	}
	.sec_05 #GOODS ul.goods_list li a.btn {
		font-size: 14px;
		padding: 10px;
	}
	.modal__content {
		width: 90%;
		padding: 50px 20px;
		top: 50%;
		left: 50%;
		position: absolute;
		transform: translate(-50%, -50%);
		/*height: auto;*/
		height: 96%;
	}
	.batsu {
		display: block;
		position: absolute;
		width: 35px;
		height: 35px;
		top: -10px;
		right: -10px;
		border-radius: 50%;
	}
	.batsu::before, .batsu::after {
		content: "";
		position: absolute;
		top: 50%;
		left: 50%;
		width: 3px;
		height: 20px;
	}
	.modal__content .modal-inner {
		height: 100%;
		overflow-y: auto;
	}
	.modal-inner h4 {
		font-size: 1.1rem;
		text-align: left;
	}
	.modal-inner p.price strong {
		font-size: 1.2rem;
	}
	.modal-inner p.exp {
		line-height: 1.4rem;
		font-size: 1rem;
	}
	.sec_05 #GOODS .goods_info_ttl {
		font-size: 16px;
		padding-bottom: 5px;
		margin-top: 15px;
	}
}


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

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

.sec_7 .row_01 .ttl{
	font-weight: 700;
	padding-bottom: 20px;
	font-size: 24px;
}
.sec_7 .row_01 .info_text {
	padding-top: 30px;
	text-align: center;
}

#history {
	text-align: center;
	font-weight: 700;
}
#history ul.flex{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	max-width: 458px;
	margin: 20px auto;
}
#history ul.flex li{
	width: 48%;
	font-weight: 400;
}
#history ul.flex li a{
	color: var(--text-color);
	line-height: 1.6em;
}
#history ul.flex li img{
	margin-bottom: 10px;
}

/***************************************
13.pagetop
***************************************/
#pagetop {
    position: fixed;
    bottom: 10px;
    left: 5px;
    width: 40px;
    height: 50px;
	z-index: 1000;
}
#pagetop a{
	width: 40px;
	height: 40px;
	color: white;
	background: url(../img/arrow.png) no-repeat top center/70%;
	background-color: rgba(0,0,0,0.5);
	line-height: 