@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: #FFF4F1;
	--accent-color:#F36335;
	--link-color:#F36335;
	--text-color: #000;
	--gray-color:#fff;
	--font-titan:"Titan One", sans-serif;
	--font-h3:24px;
	--font-h4:20px;
	--font-h5:18px;
	--font-h6:18px;
	--font-middle:18px;
	--font-default:16px;
	--font-small:14px;
	--box-shadow:0px 4px 4px rgba(0,0,0,0.25);
}
@media screen and (max-width:767px) {
	:root {
		--font-h3:16px;
		--font-h4:18px;
		--font-h6:16px;
		--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: var(--bg-color);
	color: var(--text-color);
}
@media screen and (max-width:767px) {
	body {
	}
}
.wrap{
	padding-top: 48px;
}

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;
	text-decoration: underline;
	font-size: 18px;
	font-weight: 700;
}
a.map-link::before{
	content: "";
	background: url(../img/pin.svg) no-repeat center center/100%;
	width: 18px;
	height: 25px;
	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: 40px 0 20px 0;
	position: relative;
}
section h2 {
	text-align: center;
	position: relative;
	font-size: 45px;
	margin-bottom: 40px;
	font-weight:900;
}
section h2 span{
	display: inline-block; 
	padding-bottom: 10px;
	border-bottom: 3px solid var(--text-color);
	position: relative;
}
section h2 span::after{
	content: "";
	display: block;
	width:0;
	height:0;
	border-style:solid;
	border-width: 9px 5.5px 0 5.5px;
	border-color: #000000 transparent transparent transparent;
	position: absolute;
	bottom: -10px;
	left: 50%;
	line-height: 1;
	transform: translateX(-50%);
}
section h3{
	font-size:var(--font-h3);
	padding-bottom: 20px;
}
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: 10px;
	line-height: 1.6em;
	text-align: center;
}
section h6{
	font-size: var(--font-h6);
	padding-bottom: 10px;
}
section p{
	line-height: 1.6em;
}

@media screen and (max-width:767px) {
	section{
		padding: 20px 0;
	}
	section h2 {
		font-size: 35px;
		margin-bottom: 20px;
	}
	.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: 50;
}
#ticket_bt a{
	display: block;
	background: url(../img/ticket_bt.png) no-repeat center right/100%;
	width: 194px;
	height: 99px;
}
#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: 96px;
    	height: 49px;
	}
	#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: fixed;
	z-index: 100;
	width: 100%;
	/*display: none;*/
	background: var(--text-color);
}
.header-inner{
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 48px;
}

header nav {
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: flex-end;
	z-index: 10;
	position: relative;
}
header nav ul {
	width: auto;
	padding: 10px;
	background: var(--text-color);
	margin-right: 3vw;
	display: flex;
	justify-content:space-between;
	box-sizing: border-box;
}
header nav ul li{
	padding:0 1em;
}
header nav ul a {
	text-decoration: none;
	display: inline-block;
	font-size: 20px;
	color:white;
	font-weight:900;
}
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: 48px;
	}
	.header-info, .header-nav-list a span {
		display: none;
	}
	.header-inner {
		padding: 0 10px;
		z-index: 100;
		width: 100%;
		height: 48px;
	}
	.header-nav {
		width: 100%;
		position: fixed;
		top: 0;
	}
	.header-nav-list {
		display:flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		width: auto;
		background: var(--text-color);
		position: relative;
	}
	.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: 40px 15px;
	}

      /*開閉ボタン*/
	#nav_toggle{
		display: block;
		width: 30px;
		height: 24px;
		position: relative;
		z-index: 100;
	}
	#nav_toggle div {
		position: relative;
	}
	#nav_toggle span{
		display: block;
		height: 3px;
		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: 35px 15px;
		font-weight: bold;
		z-index: 2;
		font-size: 25px;
	}
}
@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;
}
footer p {
	padding-bottom: 0.5em;
	text-align: center;
	line-height: 1.6em;
	font-size: var(--font-small);
	font-weight: 100;
}

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


/***************************************
03.メインビジュアル
***************************************/
.mv {
}
.mv .mv-img{
	background:#fff url(../img/main.webp) no-repeat center center/contain;
	margin: 0;
    /*padding-top: calc(809 / 1440 * 100%);*/
	height: 810px;
	position: relative;
}
.mv h1{
	display: none;
}
@media screen and (max-width:1024px) {
	.mv {
		padding-top: 0px;
	}
}
@media screen and (max-width:767px) {
	.mv .mv-img{
		background:#fff url(../img/main_sp.webp) no-repeat center center/contain;
		padding-top: calc(1150 / 750 * 100%);
		height: auto;
	}
}

.banner{
	padding: 40px 0 0 0;
	text-align: center;
}
.banner a img{
	width: 100%;
	max-width: 352px;
}
@media screen and (max-width:767px) {
	.banner{
		padding: 30px 0 0 0;
	}
}
/*news*/

#news ul {
	max-height: 148px;
	overflow: auto;
	display: flex;
	justify-content:flex-start;
	flex-direction: column;
	max-width: 500px;
	padding: 0 0 20px 0px;
	margin: auto;
}
#news ul li {
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	line-height: 1.7em;
	padding: 5px 0px;
	box-sizing: border-box;
	border-bottom: 1px solid var(--text-color);
}
#news ul li time {
	width: 7em;
}
#news ul li p {
	padding-left: 1em;
	text-align: left;
	width: calc(100% - 7em);
}

a.bt{
	display: block;
	margin: 20px auto;
	width: 298px;
	border-radius: 50px;
	text-align: center;
	position: relative;
	font-weight: 700;
	font-size: 16px;
	background: var(--link-color);
	color: white;
	padding: 15px 0px;
	box-sizing: content-box;
	transition: all 0.5s 0s ease;
	box-sizing: border-box;
	z-index: 1;
	box-shadow: var(--box-shadow);
	transition: all 0.5s 0s ease;
	right: 0;
	bottom: 0;
}
a.bt:hover{
	background: var(--text-color);
	color: white;
	transition: all 0.5s 0s ease;
}


@media screen and (max-width:767px) {
	#news{
		max-width: 100%;
	}
	#news ul {
		padding: 0 0 20px 0;
	}
	a.bt{
		margin-bottom: 10px;
	}
}
/***************************************
04.イントロダクション
***************************************/


section.sec_1 .inner{
	text-align: center;
	max-width: 660px;
}
section.sec_1 a.bt{
	margin-top: 10px;
}
@media screen and (max-width:767px) {
	section.sec_1 h2{
	}
}
.sec_1 .text-area {
	padding: 0px 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;
	}
	.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;
}
.Performer .flex > div{
	line-height: 1.2em;
	margin-bottom: 30px;
	font-weight: 700;
	margin: 0 1% 30px 1%;
	width: 800px;
	font-weight: bold;
	font-size: 20px;
}
.Performer .flex.four > div{
	width: auto;
	margin: 30px 5% 60px 5%;
}

.Performer .flex > div img{
	width: 100%;
	margin-bottom: 20px;
	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 0px 0;
	}
	.Performer .flex > div{
		margin: 0 0 10px 0;
	}
}

/***************************************
07.チケット .sec_3
***************************************/
.sec_3 {
}
.sec_3 .inner{
	text-align: center;
}
.ticket-wrap{
	padding: 40px 40px 20px 40px;
	background: white;
	box-shadow: var(--box-shadow);
}

.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;
	line-height: 1.6em;
}
.sec_3 .inner div.title small{
	font-size: 0.8em;
}

div.place{
	margin-top: 20px;
	font-weight: 700;
	line-height: 1.8em;
	font-size: 16px;
}
div.place p{
	font-size: 16px;
}
@media screen and (max-width:767px) {
	.sec_3 .inner div.title{
		font-size: 18px;
		line-height: 1.4em;
	}
	.ticket-wrap{
		padding: 20px 20px 0 20px;
	}
}
.sec_3 .inner div.day strong{
	font-weight: 700;
	font-size: var(--font-middle);
	line-height: 1.8em;
}
.sec_3 .inner div.price{
	padding: 20px 0 0px 0;
	margin: auto;
	margin-bottom: 30px;
	font-weight: 700;
}
.sec_3 .inner div.price h5{
	position: relative;
}
.sec_3 .inner div.price p{
	padding-bottom: 20px;
	font-size: 25px;
}


.sec_3 .inner div.price p strong{
	font-size:32px;
	font-family: "Roboto", sans-serif;
	font-weight: 700;
	display: inline-block;
}
.sec_3 .inner div.price p small{
	font-size: 16px;
	line-height: 1.4rem;
}
@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);
	}
	.sec_3 .inner div.price h5{
	}
}


.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:0 0 10px 0;
		line-height: 1.4em;
	}
	.sec_3 .inner div.day strong{
		font-weight: 700;
		font-size:16px;
		line-height: 1.2em;
	}
	div.place{
		margin: 20px 0 0 0;
	}
	.sec_3 .inner div.price{
		font-size: 24px;
	}
	.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;

}
.sec_3 .inner .ticket-info{
	text-align: left;
	font-weight: 700;
	display: inline-block;
}
.sec_3 .inner .ticket-info p{
	display: inline-block;
	text-align: left;
}
.sec_3 .inner .ticket-info p span{
	display: inline-block;
}
.sec_3 .inner dl{
	margin: auto;
	text-align: left;
	display: inline-block;
	padding-bottom: 2em;
}
.sec_3 .inner dl dt,
.sec_3 .inner dl dd{
	padding-bottom: 5px;
	text-align: left;
	position: relative;
	display: inline-block;
}
.sec_3 .inner dl dt{
	width: 5.5em;
	text-align: right;
}
.sec_3 .inner dl dt.detail{
	position: relative;
	margin-bottom: 10px;
}
.sec_3 .inner dl dt.detail:after{
	content: "(申込・出品共通)";
	font-size: 10px;
	position: absolute;
	bottom: -.7rem;
	right: 10px;
}

.sec_3 .inner dl dd{
	/*width: calc(100% - 6.5em);*/
	word-break: break-all;
}
@media screen and (max-width:767px) {
	.sec_3 .inner dl{
		display: flex;
		flex-wrap: wrap;
	}
	.sec_3 .inner dl dd{
		width: calc(100% - 5.5em);
	}
	.sec_3 .inner dl dt.detail:after{
		bottom: 0;
	}
}

.sec_3 .row_01 details{
	margin: 10px 0;
	padding: 10px 20px 10px 30px;
	background: white;
	border-radius: 10px;
}
.sec_3 .row_01 details summary{
	font-weight: 700;
}
 .row_01 .details-box{
	text-align: left;
	padding-top: 20px;
}
 .row_01 .details-box h5{
	text-align: left;
	font-size: 16px;
}
 .row_01 .details-box h5::before{
	content: "━";
	display: inline-block;
	padding-right: 0.5em;
}
 .row_01 .details-box p{
	padding-bottom: 1em;
}

/*アコーディオン*/
.tickets_box02{
	margin-bottom: 20px;
	box-shadow: var(--box-shadow);
	border-radius: 10px;
}
.tickets_box02 details{
}
.tickets_box02 details .details-box{
    padding: 20px;
	border-radius: 0 0 10px 10px;
	background: white;
}
.tickets_box02 details summary{
    list-style: none;
    cursor: pointer;
    padding: 15px;
	background:var(--text-color);
	color: white;
	border-radius: 10px;
	font-size: 16px;
	font-weight: bold;
	position: relative;
}
.tickets_box02 details[open] summary{
	border-radius: 10px 10px 0 0;
}
.tickets_box02 details summary::-webkit-details-marker {
	display: none;
}
.tickets_box02 details summary span{
    position: relative;
}
.tickets_box02 details summary:before{
	content: "";
    display: inline-block;
    width: 20px;
    height: 2px;
    background: #fff;
    position: absolute;
    right:20px;
    top: 50%;
    transform: translateY(-50%);
}
.tickets_box02 details summary:after{
	content: "";
    display: inline-block;
    width: 2px;
    height: 20px;
    background: #fff;
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
}
.tickets_box02 details[open] summary:after{
    display: none;
}


/***************************************
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{
}
.sec_4 .map{
	padding-bottom: 30px;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.sec_4 .text-area {
	text-align: left;
	line-height: 1.6em;
}
.sec_4 .access-info{
	width: 48%;
	text-align: left;
}
.sec_4 .address p{
	padding-bottom: 1em;
	font-weight: 700;
}
.sec_4 .g_map {
	width: 48%;
	position: relative;
    z-index: 10;
	box-shadow: var(--box-shadow);
}
.sec_4 a.map-link{
	font-size: 20px;
	text-decoration: none;
	margin-bottom: 20px;
}
.sec_4 .g_map iframe {
	width: 100%;
	height: 285px;
	display: block;
}
.sec_4 .access-info p{
	padding-bottom: 0.5em;
}
.sec_4 .access-info{
}
.sec_4 .access-info ul {
	margin: 20px 0;
	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;
		width: auto;
	}
	.sec_4 .map{
		padding-bottom: 0px;
	}
	.sec_4 .text-area {
		width: 100%;
		padding: 0 20px;
	}
	.sec_4 .access-info{
		width: 100%;
	}
	.sec_4 div.place{
		font-size: 14px;
	}
	.sec_4 .g_map {
		display: block;
		width: 100%;
		margin-bottom: 0px;
	}
	.sec_4 .address{
		text-align: center;
	}
	.sec_4 .address p{
		line-height: 1.4em;
	}
	.sec_4 a.map-link{
		font-size: 16px;
		margin-bottom: 10px;
	}
	.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 {
   
}
.sec_5 h2 {
    padding-bottom: 30px;
}
section.sec_5 {
}
section.sec_5 .inner{
	text-align: center;
}
section.sec_5 .inner .comingsoon {
    color:  var(--accent-color);
    font-size: 26px;
    font-weight: bold;
}
.sec_5 .inner #GOODS .goods_img {
    width: 100%;
    margin: 0 auto;
    margin-top: 10px;
    margin-bottom: 80px;
}
.sec_5 .inner #GOODS h3 {
    font-weight: bold;
    text-align: center;
    font-size: 24px;
    padding-bottom: 20px;
	color:  var(--accent-color);
	line-height: 1.4;
}
.sec_5 .inner #GOODS .dates {
    font-size: 18px;
    font-weight: bold;
    padding: 20px;
    background: white;
    color: #000;
    text-align: center;
    line-height: 1.7;
    margin-bottom: 20px;
}
.sec_5 .inner #GOODS .dates .small {
    font-size: 14px;
}
.sec_5 .inner #GOODS .goods_info {
    list-style-position: outside;
    padding-left: 1em;
    list-style-type: "※";
    text-align: left;
    line-height: 1.7;
	margin-bottom: 40px;
}
.sec_5 .inner #GOODS .goods_ec {
    width: 100%;
    display: block;
    margin: 0 auto;
    margin-bottom: 60px;
}
.sec_5 .inner #GOODS .row_01 {
    margin-top: 50px;
}
.sec_5 .inner #GOODS .row_01 h4:nth-of-type(n+2) {
    margin-top: 20px;
}
.sec_5 .inner #GOODS .row_01 .l-s-none {
    text-align: left;
    line-height: 1.7;
    margin-bottom: 20px;
    padding-left: 0.5em;
}
.sec_5 .inner #GOODS .row_01 .l-s-none li {
    padding-left: 1em;
    padding-bottom: 0.6em;
    line-height: 1.5em;
	margin-left: -1em;
    /*list-style: disc;
    list-style-position: inside;*/
    box-sizing: border-box;
}
.sec_5 .inner #GOODS .row_01 p{
	padding-bottom: 10px;
}
.sec_5 .inner #GOODS .row_01 p strong{
	font-weight: bold;
}
.sec_5 .inner #GOODS .row_01 h5 {
    padding: 10px 0 8px;
}
.sec_5 .inner #GOODS .row_01 p.credit{
	line-height: 2em;
	font-weight: bold;
}
.sec_5 .inner #GOODS .row_01 h6 {
    padding-bottom: 8px;
	line-height: 1.5;
}
.sec_5 .inner #GOODS .row_01 h6:first-of-type{
	padding-top: 10px;
}
.sec_5 .inner #GOODS .row_01 h4 {
    font-size: 18px;
	text-align: left;
}
.sec_5 .inner #GOODS .row_01 .l-s-none li .small {
    font-size: 14px;
    line-height: 1.5;
}
.sec_5 .inner #GOODS a{
	color: #9E8C77;
}
.sec_5 .inner .goods-area {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 50px;
}
.sec_5 .inner .goods-area .goods_item {
    width: 48%;
    background: white;
    /*border-radius: 20px;*/
	box-shadow: var(--box-shadow);
    padding: 30px;
    box-sizing: border-box;
    margin-bottom: 40px;
}
 .slide-items div.goods-img {
    width: 371px;
    position: relative;
    padding-bottom: 20px;
}
.sec_5 .inner .goods-area .slide-items .goods_item img {
    width: 371px;
    height: 371px;
	/*width: 80%;
    margin: auto;*/
    display: block;
    padding: 0 2px;
    vertical-align: middle;
    padding-bottom: 15px;
}
.sec_5 .inner .goods-area .goods_item .slide-items {
    margin-bottom: 30px;
}
.sec_5 .inner .goods-area .goods_item .name_price {
    /*display: flex;
    justify-content: space-between;*/
}
.sec_5 .inner .goods-area .goods_item .name_price .name {
    font-size: 20px;
    font-weight: bold;
	text-align: left;
	line-height: 1.4;
}
.sec_5 .inner .goods-area .goods_item .name_price .name .small {
    font-size: 16px;
}
.sec_5 .inner .goods-area .goods_item .name_price .price {
    text-align: right;
    padding-bottom: 10px;
    line-height: 1.6;
}
.sec_5 .inner .goods-area .goods_item .name_price .price strong {
    font-size: 20px;
	font-weight: bold;
}
.sec_5 .inner .goods-area .goods_item .size {
	padding-top: 20px;
    padding-bottom: 10px;
    font-size: 14px;
    text-align: left;
	line-height: 1.6;
}
.sec_5 .inner .goods-area .goods_item .size2 {
	padding-top: 0;
}
.sec_5 .inner .goods-area .goods_item .red {
    text-align: left;
    font-size: 14px;
    color: var(--accent-color);
	line-height: 1.5;
}
.sec_5 .slick-prev:before {
    border-bottom: solid 4px  var(--accent-color);
    border-left: solid 4px  var(--accent-color);
    width: 20px;
    height: 20px;
    transform: rotate(45deg);
    content: '' !important;
    display: block !important;
}
.sec_5 .slick-next:before {
    border-top: solid 4px  var(--accent-color);
    border-right: solid 4px  var(--accent-color);
    width: 20px;
    height: 20px;
    transform: rotate(45deg);
    content: '' !important;
    display: block !important;
}
.sec_5 .slick-dots {
    height: 6px !important;
    display: block !important;
    line-height: 0 !important;
    bottom: 0 !important;
}
.sec_5 .slick-dots li {
    width: 10px !important;
    height: 10px !important;
}
.sec_5 .slick-dots li button {
    width: 100% !important;
    height: 100% !important;
}
.sec_5 .slick-dots li button:before {
    font-size:28px !important;
    color: #cdcdcd !important;
    opacity: 1 !important;
    line-height: 0 !important;
    top: 5px !important;
}
.sec_5 .slick-dots li.slick-active button:before {
    color:  var(--accent-color)!important;
}
.sec_5 .inner #GOODS .dates dl {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	line-height: 1.6em;
	text-align: left;
	width: 78%;
	margin: 0 auto;
}
.sec_5 .inner #GOODS .dates dl dt {
	width: 30%;
    position: relative;
    padding-right: 5px;
	text-align: right;
}
.sec_5 .inner #GOODS .dates dl dd {
    width: 70%;
    line-height: 1.5;
}
.sec_5 .inner #GOODS .dates dl.after {
    width: 90%;
}
.sec_5 .inner #GOODS .dates dl.after dt {
    width: 25%;
}
.sec_5 .inner #GOODS .dates dl.after dd {
    width: 70%;
}
.sec_5 .inner .goods-area .goods_item .small {
    font-size: 14px;
    line-height: 1.4;
    text-align: left;
}
.sec_5 .inner #GOODS h3 span {
    font-size: 0.8em;
}

@media screen and (max-width:767px) {
	small{
		font-size: 0.8em;
		line-height: 1.2em;
		display: inline-block;
	}
	.sec_5 .inner #GOODS .dates dl{
		width: 100%;
	}

	.sec_5 .inner #GOODS .goods_img {
		margin-bottom: 50px;
	}	
	.sec_5 .inner #GOODS h3 {
		padding-bottom: 10px;
		font-size: 20px;
	}
	.sec_5 .inner #GOODS .dates {
		font-size: 14px;
		margin-bottom: 15px;
	}
	.sec_5 .inner #GOODS .row_01 {
		margin-top: 40px;
	}
	.sec_5 .inner #GOODS .goods_ec {
		margin-bottom: 40px;
	}
	.sec_5 .inner #GOODS .row_01 h4 {
		padding-bottom: 10px;
		font-size: 16px;
	}
	.sec_5 .inner #GOODS .row_01 .l-s-none li .small{
		font-size: 12px;
	}
	.sec_5 .inner .goods-area {
		margin-top: 20px;
	}
	.slide-items{
		width: 300px;
		margin: auto;
	}
	.slide-items div.goods-img{
		width: 300px;
	}
	.sec_5 .inner .goods-area .goods_item {
		width: 100%;
		padding: 20px 15px;
		margin-bottom: 25px;
	}
	.sec_5 .inner .goods-area .slide-items .goods_item img {
		width: 300px;
		height: 300px;
		display: block;
		margin: auto;
	}
	.sec_5 .inner .goods-area .goods_item .name_price .name {
		font-size: 16px;
	}
	.sec_5 .inner .goods-area .goods_item .name_price .name .small {
		font-size: 14px;
	}
	.sec_5 .inner .goods-area .goods_item .name_price .price strong {
		font-size: 16px;
	}
	.sec_5 .inner .goods-area .goods_item .size {
		padding-top: 10px;
	}
	.sec_5 .inner .goods-area .goods_item .size2 {
        padding-top: 0;
    }
	.sec_5 .slick-next:before, .sec_5 .slick-prev:before {
        width: 10px;
        height: 10px;
    }
	.slick-next {
		right: -12px!important;
	}
	.slick-prev {
		left: -12px!important;
	}
	
}




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

/***************************************
12.ご来場になるお客様へのお願い sec_7
***************************************/
.sec_7 {
	padding-top: 0;
}
.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: 
}

img.deco1{
	position: absolute;
	top: 20px;
	left: 0;
	width: 52px;
}
img.deco2{
	position: absolute;
	bottom: 0;
	right: 0;
	width: 68px;
}
img.deco3{
	position: absolute;
	top: 40%;
	left: -10%;
	width: 66px;
}
img.deco4{
	position: absolute;
	top: 0;
	right: -20%;
	width: 68px;
}
img.deco5{
	position: absolute;
	bottom: 20%;
	left: -10%;
	width: 64px;
}
img.deco6{
	position: absolute;
	bottom: 0;
	right: -5%;
	width: 74px;
}

img.deco7{
	position: absolute;
	bottom: 50%;
	left: -10%;
	width: 60px;
}
img.deco8{
	position: absolute;
	bottom: 0;
	right: -5%;
	width: 74px;
}

img.deco9{
	position: absolute;
	bottom: 50%;
	left: -10%;
	width: 60px;
}
img.deco10{
	position: absolute;
	bottom: 0;
	right: -5%;
	width: 74px;
}

@media screen and (max-width:767px) {
	img.deco1{
		top: 10px;
		left:5px;
		width:24px;
	}
	img.deco2{
		width: 30px;
		bottom: -60px;
	}
	img.deco3{
		top: auto;
		bottom: 0;
		left: auto;
		right: 10px;
		width: 32px;
	}
	img.deco4{
		display: none;
	}
	img.deco5{
		display: none;
	}
	img.deco6{
		position: absolute;
		bottom: -20px;
		right: auto;
		left: 0;
		width: 42px;
		transform: rotate(-45deg);
	}

	img.deco7{
		position: absolute;
		bottom: 54%;
		left: auto;
		right: 0px;
		width: 32px;
	}
	img.deco8{
		display: none;
	}
	img.deco8_sp{
		position: absolute;
		bottom:-30px;
		right: 0px;
		width: 39px;
	}

	img.deco9{
		top: -40%;
		left: 0px;
		width: 40px;
	}
	img.deco10{
		display: none;
	}
}