@charset "utf-8";
/* CSS Document */

/***font
font-family: 'Noto Sans JP', sans-serif; wght@400;500;700;900
font-family: 'Noto Serif JP', serif; :wght@600;700;900
***/

/***color
金　#e2cb73;
***/

/******フェードイン*****/

.fadein {
    animation-name: fadein;
    animation-duration: 3s;
}

@keyframes fadein {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fadein2 {
/*  opacity : 0;*/
  transform: translateY(20px);
  transition: all 1s;
}


@media (orientation: portrait) { /**　画面が縦長の時　**/
}

/********リンク********/
a{
    color: #e2cb73;
    text-decoration: none;
}
a:hover{}


a:hover img{
  filter: alpha(opacity=70);
  opacity: 0.7;
  zoom: 1.0;
  }

a:hover img{
  opacity: 1;
  -webkit-animation: flash 1.5s;
  animation: flash 1.5s;
}
@-webkit-keyframes flash {
  0% {
    opacity: .4;
  }
  100% {
    opacity: 1;
  }
}
@keyframes flash {
  0% {
    opacity: .4;
  }
  100% {
    opacity: 1;
  }
}

/********マージン、パディング********/

.marTop1em {margin-top: 1em;}
.marTop2em {margin-top: 2em;}
.marTop3em {margin-top: 3em;}
.marTop4em {margin-top: 4em;}
.marTop5em {margin-top: 5em;}
.marRgt1em {margin-right: 1em;}
.marRgt2em {margin-right: 2em;}
.marRgt3em {margin-right: 3em;}
.marRgt4em {margin-right: 4em;}
.marRgt5em {margin-right: 5em;}
.marBtm1em {margin-bottom: 1em;}
.marBtm2em {margin-bottom: 2em;}
.marBtm3em {margin-bottom: 3em;}
.marBtm4em {margin-bottom: 4em;}
.marBtm5em {margin-bottom: 5em;}
.marLft1em {margin-left: 1em;}
.marLft2em {margin-left: 2em;}
.marLft3em {margin-left: 3em;}
.marLft4em {margin-left: 4em;}
.marLft5em {margin-left: 5em;}


/********テキスト********/

.uline {text-decoration: underline;}
.bold {font-weight: bold;}
.italic {font-style: italic;}

.right {text-align: right;}
.left {text-align: left;}
.cen {text-align: center;}

.point {color:#e2cb73;}


/********共通********/

.floatL {float: left;}
.floatR {float: right;}
.clear {float: clear;}

.clearfix::after{
  content: "";
  display: block;
  clear: both;
}

.hidden {
	display: none;
}

.pk {
    display: inline-block;
}

.anchor {
	display: block;
	margin-top: -3em;
	padding-top: 3em;
}

/********改行********/

.res {
	display: none;
}

.res2 {
	display: none;
}

.res3 {
	display: none;
}

.res4 {
	display: none;
}


@media screen and (max-width: 768px){

	.res {
		display: inline;
	}
}

@media screen and (max-width: 414px){

	.res2 {
		display: inline;
	}
}

@media screen and (max-width: 375px){

	.res3 {
		display: inline;
	}
}

@media screen and (max-width: 320px){

	.res4 {
		display: inline;
	}
}



html {  
	overflow-y:scroll; 
	overflow-x: hidden;
	margin: 0;
	padding: 0;
	font-size: 6.25%; /* sets the base font to 10px for easier math */
 	-webkit-text-size-adjust: none;
} 

body{
	margin: 0;
	padding: 0;
	font-size: 18em;
	line-height:2;
	color:#fff;
	font-family: 'Noto Serif JP', serif; 
    font-weight: 400;
	
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
    
	background-color: #000;

}

body:before{}

@media (orientation: portrait) { /**　画面が縦長の時　**/
    body {}    
}

@media screen and (max-width: 768px){
	html {font-size: 5%;}
	body {font-size: 16em;}    
}


@media screen and (max-width: 768px){
	html {font-size: 5%;}
	body {font-size: 16em;}    
}



/******************************
　メニュー
******************************/

/*モーダルメニュー*/
.menu-btn {
    position: fixed;
    top: 10px;
    left: 10px;
    width: 1em;
    height: 2.5em;
    line-height: 1.4;
    text-align: center;
    cursor: pointer;
    z-index: 1000;
}

.menu-btn span {
    color: #e2cb73;
    line-height: 1;

}
.menu-btn span .lbl {
    display: block;
    font-weight: 900;
    font-size: 0.7em;

}

.menu-btn > span:before {
    font-family: "Font Awesome 6 Free";	
	content: "\f0c9";
	font-size: 2.5em;
    font-weight: 900;
}

/* 開閉用ボタンがクリックされた時のスタイル */
.open .menu-btn span {
    color: #fff;
}
.open .menu-btn span .lbl {
    display: none;
}

.open .menu-btn > span:before {
    font-family: "Font Awesome 6 Free";
	content: "\f00d";
	font-size: 3em;
}


@media screen and (max-width: 414px){
.menu-btn {
    left: 5px;    
    line-height: 1.6;
    }
}

/*モーダルメニューここまで*/

/*メニューのスタイル*/
nav {
    position: fixed;
    display: table;
	z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    -webkit-transition: all .5s;
    transition: all .5s;
    visibility: hidden;
    opacity: 0;
}

nav  ul {
    display: table-cell;
	padding: 2em 0;
    vertical-align: middle;
}

nav li {
    max-width: 600px;
    line-height: 1.3;
    margin: 0 auto 1em;
    text-align: center;
	font-size: 30rem;
}


nav li .s {
	font-size: 14rem;
}

nav li a {
    display: block;
/*	font-size: 2.4rem;*/
    color: #e2cb73;
	text-decoration: none;
    transition: 0.2s;
}

nav li a:hover {
   color: #fff;
}

nav li .fab {
	padding-left: 0.2em;
}

nav li a .en {
	font-family: 'Noto Serif JP', serif;
	color: #e2cb73;
	background: -webkit-linear-gradient(90deg, #403404, #ffe378, #ffe378, #ecda80);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	font-weight: 900;
} 

nav li .en .amp {
	margin: 0 0.2em;
}

nav li a .jp {
	display: block;
    letter-spacing: 0;
    font-size: 0.4em;
    font-family: 'Noto Sans JP', sans-serif; 
    font-weight: 500;
    color: #fff;
} 

/* 開閉用ボタンがクリックされた時のスタイル */
.open nav  {
    -webkit-transition: all .5s;
    transition: all .5s;
    visibility: visible;
    opacity: 1;
}
/*メニューのスタイルここまで*/

 
@media only screen and (max-width: 767px){

	/*モーダルメニュー*/
	.menu-btn {
		right: 5px;
		top: 5px;
	}

	nav {
		padding-top: 40px;
	}
	
	nav li {
/*		height: 40px;*/
		font-size: 28rem;
	}
}

@media only screen and (max-width: 767px){
	nav li {
		margin: 0 auto 0.5em;
	}
}


@media only screen and (max-width: 500px){
/*    nav li {
        font-size: 20rem;
    }*/
}

@media screen and (orientation: landscape) and (max-height: 640px) { /*画面が横長で高さが500以下の時*/
    nav {

    }

    nav  ul {
        display: block;
        height: 100%;
        overflow-scrolling:touch;
        overflow-y: scroll;
        padding: 2em 0 4em;
    }

    nav  ul li:not(:last-of-type) {
        margin: 0 auto 0.5em;
    }



    nav  ul li:last-of-type {
        margin: 0 auto 2em;
    }
}  


/**********************
　フッター
***********************/

.foot_link {
	text-align: center;
    margin: 3em auto;
    padding: 0 1em;
	line-height: 1.5;
	font-feature-settings: "palt";
	color: #fff;
}

.foot_link .item {
    display: inline-block;
    font-weight: 700;
}

.foot_link a {
    text-decoration: none;
	color: #fff;
}

footer{
	width: 100%;
	margin: 10px auto 0;
    padding: 2em;
	background: rgba(255,255,255,0.07);
	text-align: center;
	font-size: 16rem;
	bottom: 0;
}

.footer .crea {
    max-width: 350px;
    width: 100%;
    margin: 0 auto;
}
.footer .crea img {
    width: 100%;
}

@media screen and (max-width: 767px){
    .footer .crea {
        width: 60%;
    }
}

.footer .copy {
	display: block;
	color: #fff;
    font-weight: 500;
}

.footer .copy .icon {
	display: inline-block;
    width: 90px;
	margin: 0 0.5em;
	vertical-align: top;
}
.footer .copy .icon img {
	width: 100%;
}



footer .sns_link {
    margin: 30px auto;
}

footer .sns_link li {
    display: inline-block;
    margin: 1em;
    text-align: center;
    vertical-align: middle;
}

footer .sns_link li.twi {
    width: 34px;
}

footer .sns_link li.note {
    width: 40px;
}

footer .sns_link li.tiktok {
    color: #fff;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 900;
}

footer .sns_link li.tiktok a {
    color: #fff;
}

footer .sns_link li img {
    display: block;
	width: 100%;
}

.policy_link {
	display: block;
    margin-bottom: 1em;
	font-weight: 400;
}

.policy_link .link a {
    display: inline-block;
	margin: 0 1em;
	text-decoration: none;
	color: #fff;
	font-size: 14rem;
	font-weight: 500;
}

.policy_link .link a:hover {
	text-decoration: underline;
}

.policy_link .link:not(:last-of-type)::after {
	content: "|";
	padding: 0 0.5em;
	color: #fff;
}

#pagetop{
    position: fixed;
    right: 15px;
    bottom: 15px;
    line-height: 0;
	z-index: 1000;

}

#pagetop a {
	text-decoration: none;
	color: #dec56e;
    text-shadow: 0 0 20px #000;
}

#pagetop a::after {
	font-family: "Font Awesome 6 Free";	
	content: "\f106";
	font-weight: 900;
	font-size: 4em;
}
@media screen and (max-width: 414px){
}




/**********************
　構造
***********************/

.wrap{ 
    min-height: 100vh;/*フッター固定用*/
	box-sizing: border-box;/*フッター固定用*/
	position: relative;
	width: 100%;
	margin: 0 auto;
	text-align: center;

	opacity: 0;
	animation-name:appeare;
	animation-duration:3s;
	animation-timing-function:ease;
	animation-iteration-count:1;
	animation-fill-mode:forwards;
}

@keyframes appeare {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.sec {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	max-width: 900px;
	margin: 0 auto 15em;
	padding: 0 20px;
}


/**********************
　見出し
***********************/

.heading_sec {
    text-align: center;
    font-size: 50rem;
    margin: 0 auto 1.5em;
	line-height: 1.5;
}

.heading_sec .en {
    font-family: 'Noto Serif JP', serif;
	color: #e2cb73;
	background: -webkit-linear-gradient(90deg, #403404, #ffe378, #ffe378, #ecda80);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.heading_sec .en .amp {
	margin: 0 0.2em;
}

.heading_sec .jp {
    display: block;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 500;
    font-size: 0.35em;
    margin: 0.5em auto 0;
	color: #fff;
}

@media screen and (max-width: 550px){
    .heading_sec {
        font-size: 40rem;
    }
}

@media screen and (max-width: 490px){
    .heading_sec {
        font-size: 38rem;
    }
}


@media screen and (max-width: 365px){
    .heading_sec {
        font-size: 32rem;
    } 
}

@media screen and (max-width: 320px){
/*    .heading_sec {
        font-size: 40rem;
    } */
}

@media (orientation: portrait) { /**　画面が縦長の時　**/

    .heading_sec.first {
        margin: 0em auto 0;
    }
}




/**********************
　トップページ
***********************/


/****　メインビジュアル　****/

.area_hero {
    margin: 1em auto 10em;
}
.area_hero .head_info {
    margin-top: 1em;
}
.area_hero .head_info .btn {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	display: inline-block;
	max-width: 500px;
	width: 100%;
	margin: 0 5px 10px;
	padding: 0.5em 1em;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);

	border: 3px solid #e2cb73;
	color: #e2cb73;
	font-size: 20rem;
	font-family: 'Noto Serif JP', serif;
	line-height: 1.3;
	font-weight: 700;
	transition: 0.5s;
}

.area_hero .head_info .btn:hover {
	background: #e2cb73;
	color: #000;
}

.area_hero .visual {
    display: block;
    width: 100%;
    max-width: 900px;
    margin: 1em auto 0;
}

.area_hero .visual img {
    display: block;
    width: 100%;
}

.area_hero .visual2 {
    display: block;
    width: 100%;
    max-width: 900px;
    margin: 1em auto 0;
}

.area_hero .visual2 img {
    display: block;
    width: 100%;
}

@media screen and (max-width: 980px){
    .area_hero .visual{
		margin-top: 70px;
    }
    .area_hero .head_info {
		margin-top: 70px;
    }
}
@media screen and (max-width: 900px){
    .area_hero {
		width: 95%;
    }
}

@media screen and (max-width: 400px){
	.area_hero .head_info .btn {
		border: 2px solid #e2cb73;
		font-size: 18rem;
	}
}


/**************************************
　開催概要
**************************************/

.area_outline {}

.area_outline .heading_sec .en {
	display: inline-block;
}

.area_outline .list {
	max-width: 900px;
    width: 100%;
	margin: 2em auto 0;
	border: 2px solid #e2cb73;
}
/*
.area_outline .list .btn {
	display: block;
	max-width: 10em;
	padding: 0.5em 1em;
	background: #e2cb73;
	color: #000;
	font-size: 0.8em;
	text-decoration: none;
}*/

.area_outline .list th,
.area_outline .list td {
	padding: 1em;
	border: 1px solid #e2cb73;
	font-weight: 500;
}

.area_outline .list th {
	white-space: nowrap;
	background:  rgba(255,255,255,0.07);
	color: #fff;
}

.area_outline .list td {
	text-align: left;
}

.area_outline .list td .kakeru {
	display: inline-block;
	margin-right: 0.5em;
	color: #e2cb73;
}

.area_outline .list td .note {
	display: block;
	font-size: 0.9em;
	text-indent: -0.5em;
}
.area_outline .msg {
	margin: 4em auto 0;
	line-height: 3em;
}

.area_outline .kaijyo {
	margin: 4em auto 0;
}

.area_outline .kaijyo .logo {
	max-width: 260px;
	width: 60%;
	margin: 0 auto 1em;
}
.area_outline .kaijyo .logo img {
	display: block;
	width: 100%;
}

.area_outline .kaijyo .btn {
	display: block;
	max-width: 200px;
	margin: 0 auto;
	padding: 0.3em 1em;
	border: 1px groove #e2cb73;
	color: #e2cb73;
	font-size: 0.9em;
	border-radius: 2px;
	line-height: 1;
	text-decoration: none;
	font-weight: 700;
	transition: 0.5s;
}

.area_outline .kaijyo .btn:hover {
	background: #e2cb73;
	color: #000;
}

.area_outline .announce {
	margin: 2em auto 0;
	font-size: 1.1em;
}
.area_outline .announce .lbl {
	display: inline-block;
	margin: 0 0.5em;
	font-size: 0.9em;
}
.area_outline .announce .name {
	display: inline-block;
	margin: 0 0.5em;
}

@media screen and (max-width: 500px){
	.area_outline .list {
		border: 1px solid #e2cb73;
	}
	.area_outline .list th,
	.area_outline .list td {
		display: block;
		width: 100%;
		text-align: center;
	}

	.area_outline .list th {
		white-space: inherit;
		border-top: none;
		border-bottom: none;
	}

	.area_outline .list td {
	}
	.area_outline .list td .kakeru {
		display: block;
		font-size: 1.5em;
	}

}


/**************************************
　イベント
**************************************/

.area_event {}
.area_event .list > dt {
	padding: 0.5em;
	border-top: 1px groove #e2cb73;
	border-bottom: 1px groove #e2cb73;
	font-size: 2em;
	color: #e2cb73;
}
.area_event .list > dd {
	padding: 1em;
}

@media screen and (max-width: 500px){
	.area_event .list > dt {
		font-size: 1.5em;
	}
}

.area_event .catch {
	margin: 2em auto 1em;
	font-size: 1.3em;
	line-height: 2em;
	text-shadow: 0 0 20px #e2cb73,0 0 10px #e2cb73,0 0 3px #000;
}
.area_event .text {
	font-size: 1.1em;
	line-height: 2em;
}

.area_event .list .list_name {
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	align-items: center;
	gap: 0.5em;
	margin: 2em auto 5em;
}
.area_event .list .list_name li {
	width: 24%;
	padding: 1em;
	background: rgba(255,255,255,0.1);
	border-radius: 5px;
/*	border: 1px solid #e2cb73;*/
	font-size: 1.5em;
	line-height: 1.5;
}
.area_event .list .list_name .pict {
	display: block;
	max-width: 120px;
	margin: 0 auto;
}
.area_event .list .list_name .pict img {
	display: block;
	width: 100%;
}
.area_event .list .list_name .lbl {
	display: block;
	margin: 0.5em auto;
	text-align: center;
	color: #e2cb73;
}
.area_event .list .list_name .lbl2 {
	display: block;
	text-align: center;
	font-size: 0.6em;
	text-shadow: 0 0 20px #e2cb73,0 0 3px #000;
}
.area_event .list .list_name .name {
	display: inline-block;
	text-align: center;
	text-shadow: 0 0 20px #e2cb73,0 0 3px #000;
}

.area_event .list .list_item {
	max-width: 900px;
	margin: 3em auto 0;
}
.area_event .list .list_item dt {
	color: #e2cb73;
	font-size: 1.2em;
}
.area_event .list .list_item dd {
}
.area_event .list .list_item table {
	width: 100%;
}
.area_event .list .list_item th,
.area_event .list .list_item td {
	padding: 0.5em 1em;
	border: 1px solid #e2cb73;
}
.area_event .list .list_item th {
	width: 18em;
	background: rgba(255,255,255,0.1);
}
.area_event .list .list_item .btn_sample {
	display: inline-block;
	margin: 0 0.5em;
	padding: 0.5em 1em;
	background: #e2cb73;
	border-radius: 2px;
	color: #000;
	line-height: 1;
	font-size: 0.9em;
}

@media screen and (max-width: 900px){
	.area_event .list .list_name li {
		width: 49%;
	}
}

@media screen and (max-width: 500px){
	.area_event .list .list_item dt {
		margin-bottom: 0.5em;
		font-size: 1.5em;
	}
	.area_event .list .list_item table {
		border-top: 1px solid #e2cb73;
	}
	.area_event .list .list_item th,
	.area_event .list .list_item td {
		width: 100%;
		display: block;
		text-align: center;
	}
	.area_event .list .list_item th {
		border-top: none;
		border-bottom: none;
	}
	.area_event .list .list_item td {
		padding: 1.5em 1em;
	}
}

@media screen and (max-width: 400px){
	.area_event .list .list_name li {
		width: 80%;
		padding-top: 1.3em;
	}
}

.area_event .list .word_point {
	max-width: 900px;
	margin: 3em auto 0;
}
.area_event .list .word_point dt {
	color: #e2cb73;
	font-size: 1.3em;
}
.area_event .list .word_point dd {
}
.area_event .list .word_point dd.smp {
	display: none;
}
	.area_event .list .word_point .title2 {
	display: none;
}
.area_event .list .word_point table {
	width: 100%;
}
.area_event .list .word_point th,
.area_event .list .word_point td {
	padding: 0.5em 1em;
	border: 1px solid #e2cb73;
}
.area_event .list .word_point th {
	width: 18em;
	background: rgba(255,255,255,0.1);
}

@media screen and (max-width: 500px){
	.area_event .list .word_point dt {
		font-size: 1.5em;
	}
	.area_event .list .word_point dd.pc {
		display: none;
	}
	.area_event .list .word_point dd.smp {
		display: block;
	}
}

.area_event .caution {
	margin: 2em auto 0;
	padding: 0 1em;
	text-align: left;
}
.area_event .caution li {
	padding-left: 1em;
	text-indent: -1em;
	font-size: 0.9em;
}



/***************************************************
　グッズ
**************************************************/

.area_goods {}

.area_goods.sec {
	margin: 0 auto 10em;
}

.area_goods .msg_kako {
	margin: 2em auto;
	font-size: 1.2em;
	color: rgba(255,255,255,0.9);
}

.area_goods .list {
	max-width: 900px;
	margin: 60px auto 0;
	border: 1px solid #dec56e;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.area_goods .list > dt{
	padding:0.5em 1em;
	background: rgba(226,203,115,0.8);
	color: #000;
    font-size: 22rem;
    text-align: center;
	line-height: 1.5;
	font-weight: 900;
}

.area_goods .list > dd{
	padding: 1em;
	border-top: none;	
	text-align: center;
	color: #fff;
}

.area_goods .list .name {
	display: block;
	margin: 0 auto;
	padding-bottom: 0.5em;
	border-bottom: 1px solid rgba(0,0,0,0.5);
}

.area_goods .list .price {
	display: inline-block;
	margin: 0.5em 0.5em 0;
	font-size: 0.9em;
}

.area_goods .list .price .s {
	font-size: 0.8em;
}

.area_goods .list .photo {
	margin: 0 auto 1em;
}

.area_goods .list .photo img {
	display: block;
	width: 100%;
	margin: 0 auto;
}

.area_goods .list.m_card .photo img {max-width: 600px;}

.area_goods .list .photo.smp {
    display: none;
}
.area_goods .list .special {
	margin: 1em auto 0;
	padding: 2em;
	border: 1px solid #dec56e;
	border-radius: 5px;
	text-align: center;
}

.area_goods .list .special .title {
	margin-bottom: 1em;
	color: #dec56e;
	font-size: 1.1em;
}
.area_goods .list .special .caution {
	font-size: 0.9em;
}

.area_goods .list .special.vip .text {
	text-align: left;
}

@media screen and (max-width: 500px) {
    .area_goods .list .photo.pc {
        display: none;
    }
    .area_goods .list .photo.smp {
        display: block;
    }
	.area_goods .list .special {
		padding: 1em;
	}
}

.area_goods .list .catch {
	margin: 0 auto;
	padding: 1em;
	line-height: 2;
}

.area_goods .list .catch a {
	color: #755a06;
	text-decoration: underline;
	transition: 0.5s;
}
.area_goods .list .catch a:hover {
	color: #9a081e;
}

.area_goods .list .catch .note {
	display: block;
	font-size: 0.8em;
}

.area_goods .list .lineup {
	max-width: 600px;
	width: 100%;
	table-layout: fixed;
	margin: 1em auto 0;
	text-align: left;
}

.area_goods .list .lineup caption {
	margin-bottom: 0.5em;
	color: #dec56e;
	font-size: 1.1em;
}
.area_goods .list .lineup caption .note {
	display: inline-block;
	margin-left: 1em;
	color: #fff;
}
.area_goods .list .lineup th,
.area_goods .list .lineup td {
	padding: 0.5em 1em;
	border: 1px solid #dec56e;
	line-height: 1.5;
	font-weight: 500;
}
.area_goods .list .lineup th {

}
.area_goods .list .lineup th.title {
	background: rgba(255,255,255,0.1);
	text-align: center;
}
.area_goods .list .data {
	margin: 1em auto 0;
	padding: 2em 0 1em;
	border-top: 1px groove #dec56e;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 400;
	line-height: 1.5;
}

.area_goods .list .data li {
	display: inline-block;
    margin: 0 0.5em;
}


@media screen and (max-width: 590px){

	.area_goods .list .catch {
		text-align: left;
	}
	.area_goods .list .catch .pk {
		display: inline;
	}
}

@media screen and (max-width: 530px){

	.area_goods .list .name {
		display: block;
		margin: 0 auto 0.3em;
		padding-bottom: 0.3em;
		border-bottom: 1px solid rgba(0,0,0,0.5);
		line-height: 1.3;
	}
	.area_goods .list .price {
		display: block;
		margin: 0 auto;
		font-size: 0.8em;
	}
	.area_goods .list .photo {
		padding: 1em 0;
	}
}

@media screen and (max-width: 450px){
	.area_goods .list .data {
		font-size: 0.9em;
	}
}

@media screen and (max-width: 400px){
	.area_goods .list > dt{
		font-size: 20rem;
	}

	.area_goods .list .data li {
		font-size: 0.8em;
	}
}

.area_goods .caution {
	margin: 2em auto;
    padding: 0 1em;
	text-align: left;
}


.area_goods .caution li {
	margin-bottom: 0.5em;
	padding-left: 1em;
	text-indent: -1em;
	line-height: 1.5;
	font-weight: 400;
	font-size: 0.9em;
}

.area_goods .sale {
	margin: 3em auto 0;
}

.area_goods .sale > dt{
	padding: 0 0.5em 0.3em;
	color: #dec56e;
	font-weight: 700;
    font-size: 1.2em;
    text-align: left;
	line-height: 1.5;
}


.area_goods .sale > dt::before {
	content: "●";
	margin-right: 0.2em;
	color: #dec56e;
}

.area_goods .sale > dd{
	margin-bottom: 2em;

}

.area_goods .sale > dd .shop {
	font-size: 1.1em;	
	text-align: left;
}

@media screen and (max-width: 430px){

	.area_goods .sale > dt{
		text-align: center;
	}

	.area_goods .sale > dt::before {
		content: none;
	}

}

.area_goods .sale table {
	width: 100%;
	margin: 0 auto;
	border: 1px solid #dec56e;
    font-size: 1.1em;
}

.area_goods .sale th,
.area_goods .sale td {
	padding: 1em;
/*	border: 1px solid #dec56e;*/
	vertical-align: middle;
}

.area_goods .sale th {
	width: 8em;
	background: rgba(255,255,255,0.07);
	white-space: nowrap;
}

.area_goods .sale td {
	text-align: left;

}

.area_goods .sale .btn_order {
	display: block;
	max-width: 20em;
	margin: 0.5em 0 1em;
	padding: 0.5em 1em 0.5em;
	border-radius: 1px;
	outline: 1px solid #dec56e;
	text-decoration: none;
	font-family: 'Noto Serif JP', serif;
	font-weight: 700;
	font-size: 24rem;
	text-align: center;
	color: #dec56e;
	line-height: 1;
	transition: 0.5s;
}

.area_goods .sale .btn_order.ls {
	letter-spacing: 0.1em;
}

.area_goods .sale .btn_order .fas {
	margin-right: 0.2em;
	transition: 0.5s;
}

.area_goods .sale .btn_order:hover {
	background: rgba(255,255,255,0.07);
	color: #fff;
}

.area_goods .sale .note {
	display: block;
	padding: 0.5em;
	font-size: 0.9em;
	line-height: 1.5;
}

.area_goods .sale .link {
	text-decoration: underline;
	color: #dec56e;
}

@media screen and (max-width: 430px){
	.area_goods .sale table {

	}
	
	.area_goods .sale th,
	.area_goods .sale td {
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		padding: 0.5em;
		box-sizing: border-box;
		text-align: center;
	}
	.area_goods .sale th {
		display: block;
		width: 100%;
		border-top: 1px solid #000;
		border-bottom: 1px solid #000;
		text-align: center;
	}

	.area_goods .sale td {
		display: block;
		width: 100%;
		padding: 10px
	}
	.area_goods .sale .btn_order {
		margin: 0.5em auto;
	}
	.area_goods .sale > dd .shop {	
		text-align: center;
	}

}

.area_goods .sale .caution {
    display: inline-block;
    margin: 0.5em auto 0;
    padding: 0;
    line-height: 1.5;
    font-size: 0.9em;
}


/***************************************************
　お問い合わせ先
**************************************************/

.area_contact {}

.area_contact.sec {
	margin: 0 auto 10em;
}
.area_contact .heading_sec {
	margin-bottom: 1em;
}

.area_contact .box {
	padding: 2em;
	border: 1px solid #dec56e;
}

.area_contact .box .office {
	margin-bottom: 1em;
}

.area_contact .box .mail .icon {
	margin-right: 0.5em;
}

/***************************************************
　関連リンク
**************************************************/

footer .list_link {
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 1.1em;
}
footer .list_link li {
	flex: 1;
	max-width: 20%;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0.5em;
	min-height: 3.5em;
/*	border: 1px solid #dec56e;
	border-radius: 5px;*/
/*	background: rgba(255,255,255,0.07);*/
	line-height: 1.5;
}
footer .list_link li:not(:last-of-type){
	border-right: 1px solid rgba(255,255,255,0.4);
}

footer .list_link li a {
	display: block;
	color: #fff;
	transition: 0.5s;
}
footer .list_link li a:hover {
	color: #dec56e;
}
footer .list_link li .note {
/*	display: block;*/
	display: inline-block;
}
footer .list_link li .note2 {
	display: block;
	font-size: 0.8em;
}
footer .list_link li .icon {
	display: none;
}

@media screen and (max-width: 1400px){
	footer .list_link {
		font-size: 1em;
	}
	footer .list_link li {
		max-width: 24%;
	}
}

@media screen and (max-width: 1100px){

	footer .list_link {
		 flex-wrap: wrap;
		gap: 0.5em;
	}
	footer .list_link li {
		max-width: 100%;
		width: 44%;
		min-height: 4em;
		flex: initial;
		background: rgba(226,203,115,0.5);
		border-radius: 3px;
	}
	footer .list_link li:not(:last-of-type){
		border-right: none;
	}
	footer .list_link li .note2 {
		display: inline-block;
	}
}

@media screen and (max-width: 500px){
	footer .list_link {
		display: block;
	}
	footer .list_link li {
		position: relative;
		display: block;
		margin: 0 auto 0.5em;
		width: 100%;
		min-height: 3em;
	}
	footer .list_link li .icon {
		display: inline-block;
		position: absolute;
		top: calc(50% - 0.5em);
		right: 1em;
	}
}
	

/**********************************************************************

　舞台写真サンプル　モーダルウィンドウ

**********************************************************************/

.stage_photo .modal-wrapper {
  z-index: 1001;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 60px 10px;
  text-align: center
}

.stage_photo .modal-wrapper:not(:target) {
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s;
}

.stage_photo .modal-wrapper:target {
  opacity: 1;
  visibility: visible;
  transition: opacity .4s, visibility .4s;
}

.stage_photo .modal-wrapper::after {
  display: inline-block;
  height: 100%;
  margin-left: -.05em;
  vertical-align: middle;
  content: ""
}

.stage_photo .modal-wrapper .modal-window {
	box-sizing: border-box;
	display: inline-block;
	z-index: 20;
	position: relative;
	max-width: 1200px;
	margin: 0 auto 2em;
	padding: 2em;
	background-color: rgba(255,255,255,1);
    border: 2px solid #e2cb73;
}

.stage_photo .modal-wrapper .modal-window .modal-content {
	max-height: 60vh;
	overflow-y: auto;
    margin-top: 2em;
	padding: 0 2em;

}

.stage_photo .modal-wrapper .modal-window .modal-content::-webkit-scrollbar {
    width: 10px;
}
.stage_photo .modal-wrapper .modal-window .modal-content::-webkit-scrollbar-track {
	background: #eee;
	
}
.stage_photo .modal-wrapper .modal-window .modal-content::-webkit-scrollbar-thumb {
	background: #e2cb73;
	
}

.stage_photo .modal-overlay {
  z-index: 10;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, .5)
}

.stage_photo .modal-wrapper .modal-close {
  z-index: 20;
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  color: #333 !important;
  font-size: 30px;
  font-weight: 700;
  line-height: 60px;
  text-align: center;
  text-decoration: none;
  text-indent: 0
}

.stage_photo .modal-wrapper .modal-close:hover {
  color: #000 !important
}

@media screen and (max-width: 414px){

    .stage_photo .modal-wrapper .modal-window {
	 padding: 2em 1.5em 1.5em;
    }

	.stage_photo .modal-wrapper .modal-window .modal-content {
		padding: 0 0.5em;
	}
}

.stage_photo .photo {
	max-width: 900px;
	margin: 0 auto;
}
.stage_photo .photo img {
	display: block;
	width: 100%;
}

.stage_photo .photo.pc {}
.stage_photo .photo.smp {
	display: none;
}

@media (orientation: portrait) and (max-width: 768px) {
  /* 縦長かつ画面幅768px以下の場合 */
	.stage_photo .photo.pc {
		display: none;
	}
	.stage_photo .photo.smp {
		display: block;
	}
}

