@charset "utf-8";
/* CSS Document */

/***フォント
font-family: 'Noto Sans JP', sans-serif; wght@400;500;700;900
font-family: 'Noto Serif JP', serif; :wght@600;700;900

font-family: "tot-shizukardmin-stdn", sans-serif;
font-weight: 400;
font-style: normal;

font-family: "ryo-display-plusn", serif;
font-weight: 500;700;
font-style: normal;

***/

/***色
藍 #32313f; rgba(50,49,63,1);
金 #cbad6d;
***/

/******フェードイン*****/

.fadein {
    animation-name: fadein;
    animation-duration: 3s;
}

@keyframes fadein {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}


/********リンク********/
a {
    color: #cbad6d;
    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;}



/********共通********/

.floatL {float: left;}
.floatR {float: right;}
.clear {float: clear;}

.clearfix::after{
  content: "";
  display: block;
  clear: both;
}

.hidden {
	display: none;
}

.pk {
    display: inline-block;
}


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: 1.8;
	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: #272732;
}

html,body { /*背景色用*/
/*  height: 100vh*/
}

body:after {
    z-index: -1;
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-image: url("../images/bg_pc.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;  
    background-color: #272732;
}

@media (orientation: portrait) { /**　画面が縦長の時　**/
   
}

@media screen and (max-width: 768px){
	html {font-size: 5%;}
	body {font-size: 16em;}    
}

@media screen and (max-width: 600px){
/*	body:after {
		background-size: 10vw;  
	}*/
}


/*****メインコンテンツ*****/

.wrap{
    min-height: 100vh;/*フッター固定用*/
	box-sizing: border-box;/*フッター固定用*/
	position: relative;
	width: 100%;
	margin: 0 auto;
	text-align: center;
}

main{
	margin: 0 auto;
	padding: 0 1em;
}

/****************************************

　ナビ

*****************************************/

/*========= 途中からハンバーガーメニューに変化するのためのCSS ===============*/

/*========= ボタンのためのCSS ===============*/

/*ボタン全体の形状*/
.openbtn{
    /*はじめは非表示に*/
	display: none;
    /*ボタンの位置*/
	position:fixed;
	top:10px;
	left: 10px;
	z-index: 999;
    /*ボタンの形状*/
	background: rgba(50,49,63,0.9);
	cursor: pointer;
    width: 50px;
    height:50px;
	border-radius: 2px;
}

/*ボタンのアイコン設定*/
.openbtn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
	background-color: #fff;
  	width: 45%;
  }

.openbtn span:nth-of-type(1) {
	top:15px;	
}

.openbtn span:nth-of-type(2) {
	top:23px;
}

.openbtn span:nth-of-type(3) {
	top:31px;
}

/*activeクラスが付与された後のボタンのアイコン設定*/
.openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}

.openbtn.active span:nth-of-type(2) {
	opacity: 0;
}

.openbtn.active span:nth-of-type(3){
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}

/*fadeDownクラスが付与された後のボタンの出現アニメーション設定*/
.fadeDown {
    animation-name: fadeDownAnime;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
    opacity: 0;
    display: block;
}
@keyframes fadeDownAnime{
  from {
    opacity: 0;
	transform: translateY(-100px);
  }

  to {
    opacity: 1;
	transform: translateY(0);
  }
}


/*========= ヘッダーナビゲーションのためのCSS ===============*/

/*==ヘッダーの形状*/
#header{
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	min-height: 100px;
	width:100%;
	padding: 1em 0;
	display: flex;
	justify-content: center;
	align-items: center;
	border-bottom: 1px groove #cbad6d;
}

/*.doneクラスがついたヘッダー*/
#header.dnone {
	opacity: 0;/*透過0にして非表示に*/
}

/*メニューボタンをクリックした際に付与されるpanelactiveクラスがついたら*/
#header.dnone.panelactive {
	opacity: 1;/*不透明にして出現*/
}


/*==ヘッダーのテキストナビゲーションの形状*/

#g-navi .logo {
	max-width: 200px;
	width: 80%;
	margin: 0 auto 0.5em;
}

#g-navi .logo img {
	display: block;
	width: 100%;
}

#g-navi ul {
    margin: 0 1em;
    padding: 5px 0 5px;
    line-height: 1.3;
    vertical-align: top;
}


#g-navi ul li {
    display: inline-block;
    margin: 0 0.5em;
    padding: 5px 0 5px; 
    line-height: 1.1;
    vertical-align: top;
    font-size: 30rem;
}


#g-navi ul li a {
    text-decoration: none;
    transition: 0.5s;
	color: #fff;
}


#g-navi ul li .en {
	display: block;
	text-shadow: 1px 1px 3px rgba(0,0,0,0.6);
	color: #fff;
	font-family: "ryo-display-plusn", serif;
	font-weight: 700;
	font-style: normal;
	transition: 0.5s;
}

#g-navi ul li .en .amp {
	margin: 0 0.2em;
	font-size: 0.8em;
}

#g-navi ul li .jp {
	display: block;
	font-size: 0.4em;
	color: #cbad6d;
	font-family: "tot-shizukardmin-stdn", sans-serif;
	font-weight: 400;
	font-style: normal;
}

#g-navi ul li .jp .lbl{
	display: inline-block;
    margin-left: 0.5em;
    padding: 0.1em 1em;
	background: #cbad6d;
    color: #32313f;
    font-weight: 700;
}

#g-navi ul li .en:hover {
	text-shadow: 0 0 5px rgba(76,72,128,0.9), 0 0 20px rgba(76,72,128,0.9),0 0 20px rgba(76,72,128,0.9),1px 1px 2px rgba(76,72,128,1),-1px -1px 2px rgba(76,72,128,1);
}

@media screen and (max-width: 1300px){
	#g-navi ul .res_navi {
		display: none;
	}
}
@media screen and (max-width: 800px){

	#g-navi ul li {
		margin: 0 0.5em; 
		font-size: 24rem;
	}
}

@media screen and (max-width: 400px){

	#g-navi ul li {
        padding: 2px 0 2px; 
		font-size: 18rem;
	}
}

@media screen and (max-width: 370px){

	#g-navi ul li {
        margin: 0 0.25em; 
        font-size: 16rem;
	}
}

@media screen and (max-width: 360px){

	#g-navi ul li {

	}
}

/*.doneクラスがついたヘッダーのテキストナビゲーションの形状*/
#header.dnone #g-navi{
    /*固定位置にして最背面に*/
    position:fixed;
	top: 0;
    left: 0;
	z-index: -1;
    /*高さと幅*/  
/*	width:100%;
	height: 100vh;*/
    /*天地中央＆テキスト中央揃え*/  
	/*display: flex;*/
	justify-content: center;
	align-items: center;
	text-align: center;
    /*はじめは透過0に*/  
    opacity: 0;
	transition: all 0.4s;
	display: none;

}

#header.dnone #g-navi .logo {
	display: none;
}

#header.dnone #g-navi ul .res {
	display: none;
}

/*メニューボタンをクリックした際に付与されるpanelactiveクラスがついたナビゲーションの形状*/
#header.dnone.panelactive #g-navi{
	display: flex;
	opacity: 1;/*不透明に*/
	z-index:998;/*最前面に*/
	background: rgba(50,49,63,0.9);
	width:100%;
	height: 100vh;
}
#header.dnone.panelactive #g-navi ul {
	max-width: 800px;
}
#header.dnone.panelactive #g-navi ul li {
	display:block;
	margin: 0 auto 1em;
	padding:0 auto;
	font-size: 28rem;
}


/*リストの形状*/

#header.dnone.panelactive #g-navi li a{
/*	color: #333;
	text-decoration: none;
	padding:10px;
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: bold;
	transition:all 0.3s;*/
}

@media screen and (max-height: 650px) { /*画面の高さが500以下の時*/
/*
	#header.dnone.panelactive #g-navi ul li {
		display: inline-block;
		margin: 0 0.5em 0.5em;
	}
} */
}
@media screen and (max-height: 300px) { /*画面の高さが500以下の時*/

	#header.dnone.panelactive #g-navi ul li {
		font-size: 18rem;
	}
} 
@media screen and (max-height: 360px) { /*画面の高さが360以下の時*/

/*	#header.dnone.panelactive #g-navi ul li {
		padding: 0.3em 0; 
		font-size: 16rem;
	}*/
}  

/****************************************

　フッター

*****************************************/

/****　ページトップへ戻る　****/

#pagetop{
    position: fixed;
    right: 10px;
    bottom: 10px;
    line-height: 0;
	z-index: 100;
}

#pagetop img {
	display: block;
	width: 100%;
	max-width: 150px;
}



@media screen and (max-width: 768px) {
	#pagetop img {
		width: 30vw;

	}

}

footer{
	width: 100%;
	margin: 6em auto 0;
    padding: 0;
	color: #fff;
	text-align: center;
	font-size: 18rem;
	bottom: 0;
}
footer .billing {
	font-weight: 400;
	font-size:clamp(12rem, 2vw, 16rem);
	color: rgba(255,255,255,0.9);
}

footer .copy {
	display: block;
	padding: 1em;
	font-family: "ryo-display-plusn", serif;
	font-weight: 500;
	font-style: normal;
	line-height: 1.5;
}

footer .sns_link {
	display: inline-block;
    margin: 40px 0.5em 0;
}

footer .sns_link li {
    display: inline-block;
    margin: 1em 0.5em;
    text-align: center;
    vertical-align: bottom;
}

footer .sns_link li img {
    width: 100%;
}

footer .sns_link li.icon_toho {
    width: 45px;
}

footer .sns_link li.icon_x {
	position: relative;
	bottom: 13px;
    width: 35px;
}

footer .sns_link li.ban_teigeki_closing {
    width: 240px;
}

footer .sns_link li.ban_concert {
    width: 200px;
}


footer .policy_link {
	margin: 1em auto 0;
}

footer .policy_link li {
	display: inline-block;
	margin: 0 auto 1em;
}

footer .policy_link li:not(:last-of-type)::after {
	content: "｜";
	margin: 0 0.5em;
}

footer .policy_link li a {
	text-decoration: none;
	color: #fff;
	font-size: 16rem;
	font-weight: 400;
}

footer .policy_link li a:hover {
	text-decoration: underline;
}


/****************************************

　ボックス

*****************************************/

.anchor {
    display: block;
    padding-top: 3em;
    margin-top: -3em;
}

@media screen and (max-width: 450px){

	.anchor {
		padding-top: 5em;
		margin-top: -5em;
	}
}

.sec {
    margin: 0 auto;
}

.sec:not(:first-of-type) {
	padding: 3em 0;
}


.sec .inner {
    max-width: 900px;
    margin: 0 auto;
}

@media screen and (max-width: 500px){
}

/****************************************

　見出し

*****************************************/
.heading_sec {
	margin: 2.5em auto 1.5em;
	font-size: 50rem;
	color: #070e20;
	line-height: 1.1;
	text-shadow: 0 0 10px #0d0d2b;
}

.heading_sec .en {
	display: block;
	font-family: "ryo-display-plusn", serif;
	font-weight: 700;
	font-style: normal;
	color: #fff;
}

.heading_sec .en .amp {
	margin: 0 0.2em;
	font-size: 0.8em;
}

.heading_sec .jp {
	display: block;
	text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
	font-family: "tot-shizukardmin-stdn", sans-serif;
	font-weight: 400;
	font-style: normal;
	color: #cbad6d;
	font-size: 0.4em;
}

.heading_sec_sub {
    font-size: 34rem;
	text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
	font-family: "tot-shizukardmin-stdn", sans-serif;
	font-weight: 400;
	font-style: normal;
	color: #cbad6d;
}

@media screen and (max-width: 400px){
	.heading_sec {
		font-size: 40rem;
	}
}


@media screen and (max-width: 300px){
	.heading_sec {
		font-size: 24rem;
	}
}


/****************************************

　トップページ

*****************************************/

/***　メインビジュアル　***/

.index .area_visual {
    max-width: 900px;
    margin: 1em auto 4em;
}

.index .area_visual .visual .item {
    display: block;
    margin: 1em auto;
    text-align: center;
}

.index .area_visual .visual .item img {
	display: block;
    width: 100%;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.index .area_visual .visual .credit {
    display: block;
    margin: 0.5em 0 0 auto;
    text-align: right;
    line-height: 1.5;
}
.index .area_visual .visual .credit li {
    display: inline-block;
    font-size: 0.75em;
}
.index .area_visual .visual .credit li:not(:last-of-type){
    margin-right: 0.5em;
}

/***　お問い合わせ先　***/
.index .area_contact {
	margin: 2em auto 0;
	font-size: 0.8em;
}
.index .area_contact dt::before {
	content: "［";
	margin-right: 0.2em;
}
.index .area_contact dt::after {
	margin-left: 0.2em;
	content: "］";
}
.index .area_contact .office,
.index .area_contact .tel {
	display: inline-block;
	margin: 0 0.5em;
}
.index .area_contact .tel a {
	text-decoration: none;
	color: #fff;
}
.index .area_contact .note {
	display: inline-block;
}

/**********************************************************************

　イントロ

**********************************************************************/

.area_intro {
	max-width: 900px;
	margin: 0 auto;
}

.area_intro .box {
	margin: 0 auto;
}
@media screen and (max-width: 960px){
	.area_intro .box {
		width: 85%;
	}
}
@media screen and (max-width: 610px){
	.area_intro .box {
		width: 90%;
	}
}
@media screen and (max-width: 400px){
	.area_intro .box {
		width: 95%;
	}
}
.area_intro .text {
	text-align: left;
	line-height: 2.5em;
}

.area_intro .text p {
	margin-bottom: 1em;
}

.area_intro .text p:last-of-type {
	margin-top: 2em;
}

@media screen and (max-width: 610px){
	.area_intro .text {
		text-align: left;
	}
}


/**********************************************************************

　ストーリー

**********************************************************************/

.area_story {
	max-width: 900px;
	margin: 0 auto;
}

.area_story .box {
	margin: 0 auto;
}

@media screen and (max-width: 960px){
	.area_story .box {
		width: 85%;
	}
}
@media screen and (max-width: 610px){
	.area_story .box {
		width: 90%;
	}
}
@media screen and (max-width: 400px){
	.area_story .box {
		width: 95%;
	}
}

.area_story .catch {
	margin: 0 auto 2em;
	font-family: "tot-shizukardmin-stdn", sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 30rem;
	text-shadow: 0 0 5px rgba(128,128,172,0.9), 0 0 20px rgba(128,128,172,0.9),0 0 20px rgba(128,128,172,0.9),1px 1px 2px rgba(128,128,172,1),-1px -1px 2px rgba(128,128,172,1);
}

@media screen and (max-width: 1000px){
	.area_story .catch {
		font-size: 28rem;
	}
}


.area_story .text {
	text-align: left;
	line-height: 2.5em;
}

.area_story .text p {
	margin-bottom: 1em;
}

.area_story .photo {
	max-width: 600px;
	margin: 2em auto 0;
}
.area_story .photo img {
	display: block;
	width: 100%;
	box-shadow: 0 0 50px #0d0d2b;
}

.area_story .cap {
	display: block;
	margin: 0.5em auto 0;
	font-size: 0.9em;
}

@media screen and (max-width: 610px){
	.area_story .text {
	}
}


/**********************************************************************

　キャスト

**********************************************************************/

.area_cast {
	max-width: 1200px;
	margin: 0 auto;
}

.area_cast .box {
	margin: 0 auto;
}

/****　プリンシバル1　****/

.area_cast .list_p1 {
	font-size: 30rem;
	line-height: 1.3;
}

.area_cast .list_p1 dt {
	font-size: 0.8em;
	color: #cbad6d;
	font-family: "tot-shizukardmin-stdn", sans-serif;
	font-weight: 400;
	font-style: normal;
}

.area_cast .list_p1 dt .note {
	display: block;
	font-size: 0.5em;
}

.area_cast .list_p1 dd {
	margin: 0 auto 2em;
	padding: 0.5em 0;
}

.area_cast .list_p1 .w_cast {}
.area_cast .list_p1 .w_cast li {
	display: inline-block;
	max-width: 300px;
	margin: 0 0.25em;
	vertical-align: top;
}
.area_cast .list_p1 .t_cast {}
.area_cast .list_p1 .t_cast li {
	display: inline-block;
	max-width: 300px;
	margin: 0 0.25em;
	vertical-align: top;
}
.area_cast .list_p1 .t_cast li .note {
	display: block;
	font-size: 0.4em;
}

.area_cast .list_p1 .t_cast li.adjust {
	text-indent: 0.5em;
}

.area_cast .list_p1 .photo {
    display: block;
    margin: 0 auto 0.3em;
}

.area_cast .list_p1 .photo img {
    display: block;
    width: 100%;
    box-shadow: 0 0 30px rgba(0,0,0,0.5);
    border: 3px groove #cbad6d;
    outline: 1px groove #88713e;
    outline-offset: -5px;
}

@media screen and (max-width: 1300px){
    .area_cast .list_p1 .w_cast li {
        max-width: 240px;
    }

    .area_cast .list_p1 .t_cast li {
        max-width: 240px;
    }
}

@media screen and (max-width: 900px){
	.area_cast .list_p1 {
		font-size: 22rem;
		line-height: 1.3;
	}
    .area_cast .list_p1 .t_cast li .note {
        font-size: 0.5em;
    }
    .area_cast .list_p1 .w_cast li {
        max-width: 192px;
    }

    .area_cast .list_p1 .t_cast li {
        max-width: 192px;
    }

}

@media screen and (max-width: 700px){

    .area_cast .list_p1 .w_cast li {
        max-width: 160px;
    }

    .area_cast .list_p1 .t_cast li {
        max-width: 160px;
    }

}

@media screen and (max-width: 600px){

    .area_cast .list_p1 .w_cast li {
        max-width: 120px;
    }

    .area_cast .list_p1 .t_cast li {
        max-width: 120px;
    }

}

@media screen and (max-width: 440px){
    
    .area_cast .list_p1 dt {
        margin-bottom: 1em;
        font-size: 1.2em;
    }
	.area_cast .list_p1 .w_cast li {
		display: block;
		max-width: 200px;
		margin: 0 auto 1.5em;
	}
	.area_cast .list_p1 .t_cast li {
		display: block;
		max-width: 200px;
		margin: 0 auto 1.5em;
	}
    .area_cast .list_p1 .t_cast li .note {
        font-size: 0.6em;
    }
}

/****　プリンシバル2　****/

.area_cast .list_p2 {
	margin: 0 auto 4em;
	font-size: 26rem;
	line-height: 1.5;
}

.area_cast .list_p2 dt {
	font-size: 0.8em;
	color: #cbad6d;
	font-family: "tot-shizukardmin-stdn", sans-serif;
	font-weight: 400;
	font-style: normal;
}

.area_cast .list_p2 dt .note {
	display: block;
	font-size: 0.5em;
}

.area_cast .list_p2 dd {
	margin: 0 auto 2em;
	padding: 0.5em 0;
}

.area_cast .list_p2 .s_cast li {
	display: inline-block;
	max-width: 270px;
	margin: 0 0.25em;
	vertical-align: top;
}

.area_cast .list_p2 .w_cast {}
.area_cast .list_p2 .w_cast li {
	display: inline-block;
	max-width: 270px;
	margin: 0 0.25em;
	vertical-align: top;
}

.area_cast .list_p2 .photo {
    display: block;
    margin: 0 auto 0.3em;
}

.area_cast .list_p2 .photo img {
    display: block;
    width: 100%;
    box-shadow: 0 0 30px rgba(0,0,0,0.5);
    border: 3px groove #cbad6d;
    outline: 1px groove #88713e;
    outline-offset: -5px;
}

@media screen and (max-width: 1300px){
    .area_cast .list_p2 .s_cast li {
        max-width: 216px;
    }
    .area_cast .list_p2 .w_cast li {
        max-width: 216px;
    }
}

@media screen and (max-width: 900px){
	.area_cast .list_p2 {
		font-size: 20rem;
	}

    .area_cast .list_p2 .s_cast li {
        max-width: 172px;
    }
    .area_cast .list_p2 .w_cast li {
        max-width: 172px;
    }
}

@media screen and (max-width: 700px){
    .area_cast .list_p2 .s_cast li {
        max-width: 144px;
    }
    .area_cast .list_p2 .w_cast li {
        max-width: 144px;
    }
}

@media screen and (max-width: 600px){
    .area_cast .list_p2 .s_cast li {
        max-width: 108px;
    }
    .area_cast .list_p2 .w_cast li {
        max-width: 108px;
    }
}

@media screen and (max-width: 440px){

    .area_cast .list_p2 dt {
        margin-bottom: 1em;
        font-size: 1em;
    }

	.area_cast .list_p2 .s_cast li {
		display: block;
        max-width: 180px;
        margin: 0 auto 1.5em;
	}
	.area_cast .list_p2 .w_cast li {
		display: block;
        max-width: 180px;
		margin: 0 auto 1.5em;
	}
}

/****　プリンシバル3　****/

.area_cast .list_p3 {
	margin: 0 auto 4em;
	font-size: 22rem;
	line-height: 1.5;
}

.area_cast .list_p3 dd {
	margin: 0 auto 2em;
	padding: 0.5em 0;
}

.area_cast .list_p3 li {
	display: inline-block;
	margin: 0 0.8em 0.5em;
	vertical-align: top;
}

.area_cast .list_p3 .yaku {
	display: block;
	font-size: 0.6em;
	color: #cbad6d;
	font-family: "tot-shizukardmin-stdn", sans-serif;
	font-weight: 400;
	font-style: normal;
	font-feature-settings: "palt";
}

@media screen and (max-width: 480px){
	.area_cast .list_p3 {
		font-size: 20rem;
	}
}

@media screen and (max-width: 450px){
	.area_cast .list_p3 .pk {
		display: inline;
	}
	.area_cast .list_p3 li {
		display: block;
	}
}


/****　アンサンブル　****/

.area_cast .list_e {
	margin: 0 auto 2em;

}
.area_cast .list_e ul {
	font-size: 0;
	line-height: 0;
}
.area_cast .list_e li {
	display: inline-block;
	margin: 0 0.8em 0.5em;
	vertical-align: top;
	font-size: 20rem;
	line-height: 1.5;
}

.area_cast .list_e li.emp {
	display: none;
}

.area_cast .list_e .res {}

@media screen and (max-width: 820px){
	.area_cast .list_e .res {
		display: none;
	}
	.area_cast .list_e li {
		width: 6em;
		margin: 0 auto 0.5em;
	}

	.area_cast .list_e li.emp {
		display: inline-block;
		width: 6em;
		margin-bottom: 0;
		line-height: 0;
	}
}

@media screen and (max-width: 480px){
	.area_cast .list_e li {
		font-size: 18rem;
	}
}

/****　トートダンサー　****/

.area_cast .list_d {
	margin: 0 auto 2em;
}

.area_cast .list_d dt {
	color: #cbad6d;
	font-family: "tot-shizukardmin-stdn", sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 16rem;
	line-height: 1.5;
}

.area_cast .list_d dd {
	padding: 0.5em 0;
}

.area_cast .list_d ul {
	font-size: 0;
	line-height: 0;
}

.area_cast .list_d li {
	display: inline-block;
	margin: 0 0.8em 0.5em;
	vertical-align: top;
	line-height: 1.5;
	font-size: 20rem;
}

.area_cast .list_d li.emp {
	display: none;
}

@media screen and (max-width: 820px){
	.area_cast .list_d .res {
		display: none;
	}
	
	.area_cast .list_d li {
		width: 6em;
		margin: 0 auto 0.5em;
	}

	.area_cast .list_d li.emp {
		display: inline-block;
		width: 6em;
		margin-bottom: 0;
		line-height: 0;
	}
}

@media screen and (max-width: 480px){
	.area_cast .list_d li {
		font-size: 18rem;
	}
}

/****　スウィング　****/

.area_cast .list_s {
	margin: 0 auto 2em;
	font-size: 20rem;
	line-height: 1.5;
}

.area_cast .list_s dt {
	font-size: 0.8em;
	color: #cbad6d;
	font-family: "tot-shizukardmin-stdn", sans-serif;
	font-weight: 400;
	font-style: normal;
}

.area_cast .list_s dd {
	padding: 0.5em 0;
}

.area_cast .list_s li {
	display: inline-block;
	margin: 0 0.8em;
	vertical-align: top;
}

@media screen and (max-width: 480px){
	.area_cast .list_s {
		font-size: 18rem;
	}
}

@media screen and (max-width: 310px){
	.area_cast .list_s li {
		display: block;
	}
}

/****　子役　****/

.area_cast .list_k {
	margin: 0 auto 2em;
	font-size: 20rem;
	line-height: 1.5;
}

.area_cast .list_k dt {
	font-size: 0.8em;
	color: #cbad6d;
	font-family: "tot-shizukardmin-stdn", sans-serif;
	font-weight: 400;
	font-style: normal;
}

.area_cast .list_k dt .note {
	display: block;
	font-size: 0.7em;
}

.area_cast .list_k dd {
	padding: 0.5em 0;
}

.area_cast .list_k li {
	display: inline-block;
	margin: 0 0.8em;
	vertical-align: top;
}
@media screen and (max-width: 480px){
	.area_cast .list_k {
		font-size: 18rem;
	}
}
@media screen and (max-width: 310px){
	.area_cast .list_k li {
		display: block;
	}
}


/**********************************************************************

　スタッフ

**********************************************************************/

.area_creative {}

.area_creative .list1 {
	margin: 0 auto 3em;
	font-size: 22rem;
	line-height: 1.5;
}

.area_creative .list1 dt {
	font-size: 0.8em;
	color: #cbad6d;
}
.area_creative .list1 dd {
	margin: 0 auto 1em;
}
.area_creative .list1 dd .office {
	display: block;
	font-size: 0.7em;
}

@media screen and (max-width: 480px){
	.area_creative .list1 {
		font-size: 20rem;
	}
}

.area_creative .list2 {
	margin: 0 auto 3em;
	font-size: 20rem;
	line-height: 1.5;
}

.area_creative .list2 dt {
	font-size: 0.8em;
	color: #cbad6d;
}
.area_creative .list2 dd {
	margin: 0 auto 1em;
}
.area_creative .list2 dd .office {
	display: block;
	font-size: 0.7em;
}
.area_creative .list2 dd .multi {}
.area_creative .list2 dd .multi li {
	display: inline-block;
}
.area_creative .list2 dd .multi li:not(:last-of-type)::after{
	content: "／";
	margin: 0 0.1em;
}
.area_creative .list2 dd .multi2 {}
.area_creative .list2 dd .multi2 li {
	display: inline-block;
}
.area_creative .list2 dd .multi2 li:not(:last-of-type)::after{
	content: "・";
	margin: 0 0.1em;
	color: #cbad6d;
}
.area_creative .list2 dd .multi .note {
	display: inline-block;
	font-size: 0.7em;
}

@media screen and (max-width: 480px){
	.area_creative .list2 {
		font-size: 18rem;
	}
}

.area_creative .list3 {
	margin: 0 auto 3em;
	font-size: 20rem;
	line-height: 1.5;
}

.area_creative .list3 dt {
	font-size: 0.8em;
	color: #cbad6d;
}
.area_creative .list3 dd {
	margin: 0 auto 1em;
}

.area_creative .list3 dd img {
	display: block;
	margin: 0 auto;
	max-width: 320px;
}

@media screen and (max-width: 768px){
	.area_creative .list3 dd img {
		max-width: 240px;
	}
}
@media screen and (max-width: 480px){
	.area_creative .list3 dd img {
		max-width: 200px;
	}
}

@media screen and (max-width: 280px){
	.area_creative .list3 dd img {
		width: 200px;
	}
}

/**********************************************************************

　チケット

**********************************************************************/

.area_ticket{
	margin: 0 auto;
	max-width: 900px;
}

.area_ticket .stage_info {
	margin: 0 auto 4em;
	padding: 0 2em;
}

.area_ticket .stage_info .sch {
	margin: 40px auto 1em;
	width: 100%;
    max-width: 701px;
}

.area_ticket .stage_info .theater {
	margin: 0 auto 2em;
	width: 70%;
    max-width: 400px;
}

.area_ticket .stage_info .hoshitori {
    margin: 2em auto;
    max-width: 900px;
}

.area_ticket .stage_info .sch img,
.area_ticket .stage_info .theater img,
.area_ticket .stage_info .hoshitori img {
    width: 100%;
}

.area_ticket .stage_info .btn_castsche {
	position: relative;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	display: block;
	max-width: 440px;
	margin: 0.5em auto 0;
	padding: 0.5em 2em;
	box-shadow: 2px 2px 5px rgba(0,0,0,0.2);
	background: rgba(203,173,109,0.2);
	border: 1px solid #cbad6d;
	color: #fff;
	font-weight: 500;
	font-size: 24rem;
	text-decoration: none;
	line-height: 1.5;
	transition: 0.5s;
}
.area_ticket .stage_info .btn_castsche:hover {
	background: none;
	color: #f6cf70;
}

.area_ticket .stage_info .btn_castsche .icon {
	position: absolute;
	top: calc(50% - 0.5em);
	right: 1em;
}

.area_ticket .stage_info .list_price table {
	width: 100%;
	margin: 2em auto 0;
	table-layout: fixed;
	background: rgba(0,0,0,0.1);
}
.area_ticket .stage_info .list_price caption {
	margin: 0 auto 0.2em;
	font-size: 20rem;
	color: #e6c37a;
}

.area_ticket .stage_info .list_price caption .s {
	font-size: 0.8em;
}
.area_ticket .stage_info .list_price th:first-of-type {
	width: 7em;
}
.area_ticket .stage_info .list_price th,
.area_ticket .stage_info .list_price td {
	padding: 0.5em 1em;
	border: 1px solid #cbad6d;
	font-weight: 500;
}

.area_ticket .stage_info .list_price th {
	background: rgba(203,173,109,0.5);
}

.area_ticket .stage_info .list_price .caution {
	margin: 0.5em 0 0 0;
	padding: 0.5em;
	text-align: right;
}

.area_ticket .stage_info .caution {
    margin: 2em auto 0;
	padding: 0 1em;
	text-align: left;
	line-height: 1.5;    
}

.area_ticket .stage_info .caution li{
	margin-bottom: 0.5em;
	padding-left: 1em;
	font-size: 0.85em;
	text-indent: -1em;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 400;
}

.area_ticket .stage_info .caution li:not(:last-of-type){
	margin-bottom: 0.5em;
}

.area_ticket .stage_info .caution li a{
	text-decoration: underline;
	color: #fff;
}
.area_ticket .stage_info .caution li .tel a{
	text-decoration: underline;
	color: #fff;
}
.area_ticket .stage_info .caution li .logo_awt{
    width: 60%;
    max-width: 240px;
    min-width: 90px;
    margin: 0 0 0 -15px;
}
.area_ticket .stage_info .caution li .logo_awt img{
	display: block;
    width: 100%;
}

/*.area_ticket .stage_info .caution li .tele_note {
	display: inline-block;
	text-indent: 0;
}

.area_ticket .stage_info .caution li .note .lbl {
	display: block;
}*/

@media screen and (max-width: 500px){
	.area_ticket .stage_info .caution {
		padding: 0;  
	}

	.area_ticket .stage_info .list_price th:first-of-type {
		/*width: 3em;*/
	}
}

@media screen and (max-width: 400px){
	.area_ticket .stage_info {
		padding: 0 1em;
	}
	.area_ticket .stage_info .list_price {
		font-size: 0.9em;
	}
}
@media screen and (max-width: 320px){
	.area_ticket .stage_info .list_price th,
	.area_ticket .stage_info .list_price td {
		padding: 0.5em;
	}
}

.area_ticket .way {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	display: block;
	width: 100%;
	margin: 2em auto 0;
	padding: 2em;
	background: rgba(0,0,0,0.2);
	border: 2px groove #cbad6d;
/*	outline: 1px solid rgba(131,105,31,0.5);
	outline-offset: -20px;*/
	color: #fff;
}

.area_ticket .way a{
    color: #cbad6d;
    font-weight: bold;
}

.area_ticket .way > dt {
	margin: 0 auto;
	padding: 0.8em;
	background: rgba(203,173,109,0.5);
	text-shadow: 3px 3px 5px rgba(0,0,0,0.3), 0 0 10px rgba(0,0,0,0.5);
	color: #fff;
	font-size: 24rem;
	text-align: center;
	line-height: 1.3;
	font-family: "ryo-display-plusn", serif;
	font-weight: 700;
	font-style: normal;
}

.area_ticket .way > dd {
	margin-bottom: 2em;
	padding: 2em 1em 1em;
    color: #fff;
	text-align: center;
}

@media screen and (max-width: 500px){
	.area_ticket .way {
		padding: 1.5em 1em;
	}
	.area_ticket .way > dt {
		font-size: 20rem;
	}

}

.area_ticket .way .start {
    display: inline-block;
    margin-bottom: 1em;
/*	border-bottom:1px solid #cbad6d;*/
	color: #cbad6d;
	font-weight: bold;
    line-height: 1.3;
}

.area_ticket .way .tel a {
	text-decoration: none;
	color: #fff;
}

.area_ticket .way .caution {
	margin-top: 1em;
	padding: 1em 1em 0;
/*	border-top: 1px solid #cbad6d;*/
	text-align: left;
}
.area_ticket .way .caution.long {
	text-align: left;
}
.area_ticket .way .caution li {
	margin-bottom: 0.5em;
	padding-left: 1em;
	font-size: 0.8em;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 400;
	text-indent: -1em;
	line-height: 1.5;
}

@media screen and (max-width: 890px){

	.area_ticket .way .caution {
		text-align: left;
	}
}

@media screen and (max-width: 400px){

	.area_ticket .way .caution {
		padding: 1em 0 0;
	}
}

/***　東宝ナビザーブ　***/

.area_ticket .way .toho .login {
	margin: 0 auto;
	text-align: center;
}
.area_ticket .way .toho .login .lbl {
	display: block;
	margin: 0 auto;
	text-align: center;
	font-weight: 700;
}

.area_ticket .way .toho .btn {
	position: relative;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	display: block;
	max-width: 440px;
	margin: 0.5em auto 0;
	padding: 0.5em 2em;
	box-shadow: 2px 2px 5px rgba(0,0,0,0.2);
	background: rgba(203,173,109,0.2);
	border: 1px solid #cbad6d;
	color: #fff;
	font-weight: 500;
	font-size: 24rem;
	text-decoration: none;
	line-height: 1.5;
	transition: 0.5s;
}
.area_ticket .way .toho .btn:hover {
	background: none;
	color: #f6cf70;
}

.area_ticket .way .toho .btn .icon {
	position: absolute;
	top: calc(50% - 0.5em);
	right: 1em;
}

@media screen and (max-width: 500px){
	.area_ticket .way .toho .btn {
		width: 90%;
		font-size: 20rem;
	}
}

@media screen and (max-width: 340px){
	.area_ticket .way .toho .btn {
		width: 95%;
		font-size: 18rem;
	}
}

.area_ticket .way .toho .senkou {}

.area_ticket .way .toho .senkou table {
	width: 100%;
	margin: 2em auto 0;
}

.area_ticket .way .toho .senkou table th,
.area_ticket .way .toho .senkou table td {
	padding: 0.5em;
	border: 1px solid #cbad6d;	
}

.area_ticket .way .toho .senkou table th {
	width: 14em;
	font-weight: normal;
	text-align: center;
}

.area_ticket .way .toho .senkou table td {
	text-align: left;
}

.area_ticket .way .toho .senkou .caution {
	margin-top: 0;
}

@media screen and (max-width: 500px){
	.area_ticket .way .toho {
		text-align: center;
	}

	.area_ticket .way .toho > dt {
		font-size: 1.2em;
	}
	.area_ticket .way .toho > dt::before {
		content: "≪";
		margin: 0 auto;
		color: #fff;
	}
	.area_ticket .way .toho > dt::after {
		content: "≫";
		margin: 0 auto;
	}
	.area_ticket .way .toho > dd {
		padding: 0;
	}
	.area_ticket .way .toho > dd .url {
		font-size: 1.2em;
	}
	.area_ticket .way .toho .senkou table {
		border: 1px solid #cbad6d;
	}
	.area_ticket .way .toho .senkou table th,
	.area_ticket .way .toho .senkou table td {
		display: block;
		width: 100%;
		border: none;
	}

	.area_ticket .way .toho .senkou table th {
		background: rgba(203,173,109,0.5);
		font-weight: 700;
	}

	.area_ticket .way .toho .senkou table td {
		text-align: center;
	}
}

/****　Bunkamura　****/

.area_ticket .way .bunkamura {
	text-align: left;
}

.area_ticket .way .bunkamura > dt {

	font-size: 1.1em;
}

.area_ticket .way .bunkamura > dt::before {
	content: "●";
	margin-right: 0.2em;
	color: #cbad6d;
}

.area_ticket .way .bunkamura > dd {
	margin-bottom: 1em;
	padding: 0 1.2em;
}
.area_ticket .way .bunkamura > dd .url {
	display: block;
	margin-bottom: 0.5em;
	word-break: break-all;
}
.area_ticket .way .bunkamura > dd .start {
	margin-bottom: 0.5em;
}
.area_ticket .way .bunkamura .senkou table {
	width: 100%;
	margin: 0 auto;
}
.area_ticket .way .bunkamura .senkou table th,
.area_ticket .way .bunkamura .senkou table td {
	padding: 0.5em;
	border: 1px solid #cbad6d;
}

.area_ticket .way .bunkamura .senkou table th {
	width: 14em;
	font-weight: normal;
	text-align: center;
}

.area_ticket .way .bunkamura .senkou table td {
	text-align: left;
}
.area_ticket .way .bunkamura .senkou table a {
	color: #fff;
	text-decoration: none;
}

.area_ticket .way .bunkamura .senkou .tc {
	padding: 0.5em 1em;
	border: 1px solid #cbad6d;
}

.area_ticket .way .bunkamura .senkou .note {
	display: block;
}
.area_ticket .way .bunkamura .senkou .caution {
	margin: 0 auto;
	padding: 0;
}

@media screen and (max-width: 500px){
	.area_ticket .way .bunkamura {
		text-align: center;
	}

	.area_ticket .way .bunkamura > dt {
		font-size: 1.2em;
	}
	.area_ticket .way .bunkamura > dt::before {
		content: "≪";
		margin: 0 auto;
		color: #fff;
	}
	.area_ticket .way .bunkamura > dt::after {
		content: "≫";
		margin: 0 auto;
	}
	.area_ticket .way .bunkamura > dd {
		padding: 0;
	}
	.area_ticket .way .bunkamura > dd .url {
		font-size: 1.2em;
	}
	.area_ticket .way .bunkamura .senkou table {
		border: 1px solid #cbad6d;
	}
	.area_ticket .way .bunkamura .senkou table th,
	.area_ticket .way .bunkamura .senkou table td {
		display: block;
		width: 100%;
		border: none;
	}

	.area_ticket .way .bunkamura .senkou table th {
		background: rgba(203,173,109,0.5);
		font-weight: 700;
	}

	.area_ticket .way .bunkamura .senkou table td {
		text-align: center;
	}
}


/***　プレイガイド　***/

.area_ticket .way .playguid {}

.area_ticket .way .playguid .btn {
	position: relative;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	display: block;
	max-width: 440px;
	margin: 1em auto 0;
	padding: 0.5em 2em;
	box-shadow: 2px 2px 5px rgba(0,0,0,0.2);
	background: rgba(203,173,109,0.2);
	border: 1px solid #cbad6d;
	color: #fff;
	font-weight: 500;
	font-size: 20rem;
	text-decoration: none;
	line-height: 1.5;
	transition: 0.5s;
}
.area_ticket .way .playguid .btn:hover {
	background: none;
	color: #f6cf70;
}

.area_ticket .way .playguid .btn .icon {
	position: absolute;
	top: calc(50% - 0.5em);
	right: 1em;
}
.area_ticket .way .playguid .btn:not(:last-of-type) {
	margin-bottom: 1em;
}

@media screen and (max-width: 500px){
	.area_ticket .way .playguid .btn {
		width: 90%;
		font-size: 18rem;
	}
}

@media screen and (max-width: 340px){
	.area_ticket .way .playguid .btn {
		width: 95%;
	}
}


/***　テレザーブ　***/

.area_ticket .way .tele .tel .no {
	font-size: 24rem;
	text-decoration: none;
	line-height: 1.5;
}

.area_ticket .way .tele .tel a {
	text-decoration: none;
	color: #fff;
}
.area_ticket .way .tel .note {
	display: inline-block;
	font-size: 0.7em;
}
.area_ticket .way .tele .caution {
	margin-top: 1em;
	padding: 1em;
	border-top: 1px dotted #cbad6d;	
}

/***　グループ観劇　***/
.area_ticket .way .group {}

.area_ticket .way .group .btn {
	position: relative;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	display: block;
	max-width: 440px;
	margin: 1em auto;
	padding: 0.5em 2em;
	box-shadow: 2px 2px 5px rgba(0,0,0,0.2);
	background: rgba(203,173,109,0.2);
	border: 1px solid #cbad6d;
	color: #fff;
	font-weight: 500;
	font-size: 20rem;
	text-decoration: none;
	line-height: 1.5;
	transition: 0.5s;
}
.area_ticket .way .group .btn:hover {
	background: none;
	color: #f6cf70;
}

.area_ticket .way .group .btn .icon {
	position: absolute;
	top: calc(50% - 0.5em);
	right: 1em;
}
.area_ticket .way .group .office,
.area_ticket .way .group .tel {
	display: inline-block;
	margin: 0 0.4em;
}

.area_ticket .way .group .tel a {
	text-decoration: none;
	color: #fff;
}

@media screen and (max-width: 500px){
	.area_ticket .way .group .btn {
		width: 90%;
		font-size: 18rem;
	}
}

@media screen and (max-width: 340px){
	.area_ticket .way .group .btn {
		width: 95%;
	}
}


/*****　リセール　*****/

.area_ticket .way .resale p {
    text-align: left;
	font-size: 16rem;
	font-weight: 400;
		
}

.area_ticket .way .resale .list {
    margin: 1em auto 0;
	text-align: center;
}

.area_ticket .way .resale .list li {
    margin: 1em;
    display: inline-block;
}

.area_ticket .way .resale .list span {
    font-size: 0.9em;
	font-weight: 500;
}

.area_ticket .way .resale .list img {
    display: block;
    margin-bottom: 0;
    vertical-align: bottom;
}
.area_ticket .way .resale .caution {
    margin: 0 auto;
    padding-top: 0;
}


/***　会場案内　***/

.area_ticket .way > dd.kaijyou {
	text-align: center;
}

.area_ticket .kaijyou .theater {
	font-size: 30rem;
	font-weight: 900;
}

.area_ticket .kaijyou .theater .icon {
	margin-left: 0.2em;
	font-size: 0.8em;
}

.area_ticket .kaijyou .logo {
	max-width: 400px;
	width: 80%;
	margin: 1em auto;
    font-weight: 400;
}

.area_ticket .kaijyou .logo img {
	width: 100%;
}

.area_ticket .kaijyou .add{
	font-size: 0.9em;
}

.area_ticket .kaijyou .add .pk {
	margin: 0 0.5em;
}

.area_ticket .kaijyou .btn {
	position: relative;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	display: inline-block;
	max-width: 45%;
	width: 100%;
	margin: 1em 0.25em 0;
	padding: 0.5em 2em;
	box-shadow: 2px 2px 5px rgba(0,0,0,0.2);
	background: rgba(203,173,109,0.2);
	border: 1px solid #cbad6d;
	color: #fff;
	font-weight: 500;
	font-size: 20rem;
	text-decoration: none;
	line-height: 1.5;
	transition: 0.5s;
}
.area_ticket .kaijyou .btn:hover {
	background: none;
	color: #f6cf70;
}

.area_ticket .kaijyou .btn .icon {
	position: absolute;
	top: calc(50% - 0.5em);
	right: 1em;
}


@media screen and (max-width: 500px){
	.area_ticket .kaijyou .btn {
		font-size: 18rem;
	}
}
@media screen and (max-width: 500px){
	.area_ticket .kaijyou .btn {
		display: block;
		width: 90%;
		max-width: inherit;
		margin: 0.5em auto 0;
	}
}


.area_ticket .contact {}

.area_ticket .contact .tel {
	display: inline-block;
	margin: 0 0.5em;
}

.area_ticket .contact .tel .lbl{
	margin-right: 0.3em;
}

.area_ticket .contact .tel a {
	text-decoration: none;
	color: #fff;
}

.area_ticket .contact .office {
	display: inline-block;
	margin: 0 0.5em;
}


/**********************************************************************

　ツアー

**********************************************************************/

.area_tour .inner{
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	display: block;
	width: 100%;
	margin: 2em auto 0;
/*	padding: 2em;
	background: rgba(0,0,0,0.2);
	border: 2px groove #cbad6d;*/
	color: #fff;
}

.area_tour .sokuho .list {
	display: inline-block;
	width: 100%;
	margin: 0 auto;
	font-size: 24rem;
	text-align: center;
}

.area_tour .sokuho .list dt {
	font-size: 28rem;
	color: #cbad6d;
}
.area_tour .sokuho .list dd {
	display: block;
	margin: 0 auto 1em;
	padding: 1em;
	border: 1px solid #cbad6d;
}
.area_tour .sokuho .list .day {
	display: block;
	margin: 0 0.5em;
}

.area_tour .sokuho .list .theater {
	display: block;
	margin: 0 0.5em;
}

.area_tour .sokuho .list .theater a {
	text-decoration: none;
	transition: 0.5s;
	color: #fff;
}
.area_tour .sokuho .list .theater a:hover {
	color: #cbad6d;
}
.area_tour .sokuho .list .theater .icon {
	margin-left: 0.3em;
	font-size: 0.6em;
	vertical-align: super;
	color: #cbad6d;
}

@media screen and (max-width: 620px) {
	.area_tour .sokuho .list {
		display: inline-block;
		margin: 0 auto;
		font-size: 20rem;
		text-align: left;
	}
}

@media screen and (max-width: 540px) {
	.area_tour .sokuho .list {
		text-align: center;
	}
	.area_tour .sokuho .list .day {
		display: block;
		width: inherit;
		margin: 0 auto;
		padding: 0 1em;
	}

	.area_tour .sokuho .list .theater {
		display: block;
		margin: 0 auto;
	}

}

@media screen and (max-width: 400px) {
	.area_tour .sokuho .list {
		display: inline-block;
		margin: 0 auto;
		font-size: 18rem;
	}
}
/**********************************************************************

　BD&DVD&CD

**********************************************************************/

.area_dvd {
	max-width: 900px;
	margin: 0 auto;
}

.area_dvd .box {
	margin: 0 auto;
}

.area_dvd .list:not(:last-of-type) {
	margin: 0 auto 2em;
}

.area_dvd .list li {
	display: inline-block;
	max-width: 340px;
	margin: 0 0.5em 0.5em;
}

.area_dvd .list li img {
	display: block;
	width: 100%;
}

/**********************************************************************

　GOODS

**********************************************************************/

.area_goods .heading_sec_sub {
    margin: 3em auto 0;
    color: #fff;
}

.area_goods .heading_sec_sub .note{
    display: block;
    font-size: 0.7em;
}

@media screen and (max-width: 600px){
    .area_goods .heading_sec_sub {
        font-weight: 30rem;
    }
}

/************
　公演グッズ
*************/

.area_goods .sg {
	max-width: 900px;
    margin: 1em auto 6em;
}

.area_goods .sg .head_msg {
    width: 95%;
	margin: 0 auto 2em;
	padding: 2em;
	border-top: 1px solid #cbad6d;
	border-bottom: 1px solid #cbad6d;
    text-align: left;
    font-size: 0.9em;
}
.area_goods .sg .head_msg .note {
	margin-top: 1em;
}

@media screen and (max-width: 350px){
	.area_goods .sg .head_msg {
		margin: 0 auto 1em;
		padding: 0.5em 1em;
		font-size: 1em;
		text-align: left;
	}
	.area_goods .sg .head_msg .pk {
		display: inline;
	}
}

.area_goods .sg .inner {
	max-width: 900px;
	margin: 0 auto;
}

.area_goods .sg .list .item a {
	text-decoration: underline;
}


.area_goods .sg .list .item {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	display: block;
	width: 100%;
	margin: 2em auto 0;
	padding: 2em;
	background: rgba(0,0,0,0.2);
	border: 2px groove #cbad6d;
/*	outline: 1px solid rgba(131,105,31,0.5);
	outline-offset: -20px;*/
	color: #fff;
}


.area_goods .sg .list .item > dt {
	margin: 0 auto;
	padding: 0.8em;
	background: rgba(203,173,109,0.5);
	text-shadow: 3px 3px 5px rgba(0,0,0,0.3), 0 0 10px rgba(0,0,0,0.5);
	color: #fff;
	font-size: 20rem;
	text-align: center;
	line-height: 1.3;
	font-family: "ryo-display-plusn", serif;
	font-weight: 700;
	font-style: normal;
}

.area_goods .sg .list .item > dd {
	padding: 2em 1em 1em;
    color: #fff;
	text-align: center;
}

.area_goods .sg .list .item > dt .name {
	display: inline-block;
	margin: 0 0.5em;
}

.area_goods .sg .list .item > dt .price {
	display: inline-block;
	margin: 0 0.5em;
}

.area_goods .sg .list .item > dt .price .s {
	font-size: 0.8em;
}

.area_goods .sg .list dd .photo {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	width: 100%;
	margin: 0.5em auto 0;
	padding: 1em;
	background: #fff;
}

.area_goods .sg .list dd .photo img {
	display: block;
	width: 100%;
	margin: 0 auto;
}

.area_goods .sg .list .program dd .photo img { max-width: 300px;}
.area_goods .sg .list .bag dd .photo img { max-width: 731px;}
.area_goods .sg .list .pouch dd .photo img { max-width: 730px;}
.area_goods .sg .list .key dd .photo img { max-width: 665px;}
.area_goods .sg .list .towel dd .photo img { max-width: 702px;}
.area_goods .sg .list .bath dd .photo img { max-width: 540px;}
.area_goods .sg .list .necklace dd .photo img { max-width: 530px;}
.area_goods .sg .list .cup dd .photo img { max-width: 499px;}
.area_goods .sg .list .pen dd .photo img { max-width: 420px;}
.area_goods .sg .list .make dd .photo img { max-width: 488px;}
.area_goods .sg .list .toilette dd .photo img { max-width: 500px;}
.area_goods .sg .list .clip dd .photo img { max-width: 535px;}
.area_goods .sg .list .tb dd .photo img { max-width: 579px;}
.area_goods .sg .list .collect dd .photo img { max-width: 495px;}
.area_goods .sg .list .as dd .photo img { max-width: 724px;}
.area_goods .sg .list .diorama dd .photo img { max-width: 704px;}
.area_goods .sg .list .mm dd .photo img { max-width: 750px;}
.area_goods .sg .list .mm_25 dd .photo img { max-width: 458px;}
.area_goods .sg .list .mmholder dd .photo img { max-width: 588px;}
.area_goods .sg .list .mmboard dd .photo img { max-width: 721px;}


.area_goods .sg .list dd .catch {
	margin: 2em auto 0;
	font-size: 0.9em;
	line-height: 1.8;
	font-weight: 400;
}
.area_goods .sg .list dd .note {
	display: inline-block;
    margin: 1em auto 0;
	font-size: 0.8em;
}

.area_goods .sg .list dd .data {
	margin: 2em auto 0;
	padding: 2em 0.5em 0;
	border-top: 1px solid #cbad6d;
	font-size: 0.9em;
	font-weight: 400;
	text-align: right;
}
.area_goods .sg .list dd .data li {
	display: inline-block;
    margin: 0 0.5em;
}

@media screen and (max-width: 580px){

	.area_goods .sg .list {
		padding: 1em 0;
	}
	.area_goods .sg .list .item {
		padding: 1em;
	}
	.area_goods .sg .list .item > dt {
		line-height: 1.5;
	}
	
	.area_goods .sg .list .item > dd {
	}
    .area_goods .sg .list dd .catch {
        text-align: left;
    }
    .area_goods .sg .list dd .catch .pk {
        display: inline;
    }
    .area_goods .sg .list dd .note {
        text-align: left;
    }
}

@media screen and (max-width: 460px){
/*	.area_goods .sg .list dd .catch .pk {
		display: inline;
	}*/	
}
@media screen and (max-width: 430px){
	.area_goods .sg .list .item > dt {
		font-size: 20rem;
	}
}

@media screen and (max-width: 380px){
	.area_goods .sg .list .item > dt {
		font-size: 18rem;
	}
	
	.area_goods .sg .list .item > dt .name {
		display: block;
	}

	.area_goods .sg .list .item > dt .price {
		display: block;
		margin-top: 0.2em;
		margin-left: 1em;
		font-size: 0.9em;
	}
}

/****　プログラム　***/

.area_goods .sg .list .program .p_cont {
	display: block;
	margin: 1em auto 0;
	padding: 1em;
	text-align: left;
	font-size: 0.9em;
}

.area_goods .sg .list .program .p_cont:first-of-type {
	margin-top: 2em;
}
.area_goods .sg .list .program .p_cont .lbl {
	display: block;
	border: 1px solid #cbad6d;
	color: #cbad6d;
	text-align: center;
}

.area_goods .sg .list .program .p_cont ul {
	padding: 1em 1em 0;
	text-align: left;
}

.area_goods .sg .list .program .p_cont ul li {
	position: relative;
	margin-bottom: 0.5em;
	padding-left: 1em;
	text-indent: -1em;
	line-height: 1.5;
}

.area_goods .sg .list .program .p_cont .mark {
	margin-right: 0.3em;
	color: #cbad6d;
}

.area_goods .sg .list .program .p_cont .text {
	padding: 1em;
}

/****　スノードーム　***/

.area_goods .sg .list .sd .sd_order {
	margin: 1em auto 0;
	padding: 1em;
	background: rgba(255,255,255,0.1);
}

.area_goods .sg .list .sd .sd_order p {
	text-align: left;
}
.area_goods .sg .list .sd .sd_order table {
	margin: 0.5em 1em 0;
}
.area_goods .sg .list .sd .sd_order th,
.area_goods .sg .list .sd .sd_order td {
	vertical-align: top;
}
.area_goods .sg .list .sd .sd_order th {
	font-weight: normal;
	white-space: nowrap;
}
.area_goods .sg .list .sd .sd_order th::after {
	content: "：";
}
.area_goods .sg .list .sd .sd_order td {
	text-align: left;
	word-break: break-all;
}

.area_goods .sg .movie {
    max-width: 800px;
    display: flex;
    flex-wrap: wrap; 
    margin: 0 auto;
    padding: 10px;
}

.area_goods .sg .movie.center {
    justify-content: center;
}

.area_goods .sg .movie .item{
    width: 100%;
    justify-content: center;
    margin-bottom: 4em;
    margin: 0 10px;
    vertical-align: bottom;
	margin-top: auto;
}

.area_goods .sg .movie .youtube {
	position: relative;
	height: 0;
	margin-bottom: 20px;
	padding-bottom: 56.25%;
	overflow: hidden;
}

.area_goods .sg .movie .youtube iframe {
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
 

	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

@media screen and (max-width: 768px){
    .area_goods .sg .movie {
        display: block;
        margin: 0 auto;
        text-align: center;
    }
    .area_goods .sg .movie .item{
        margin: 0 auto 2em;
    }
}

@media screen and (max-width: 414px){
    .area_goods .sg .movie .name {
        font-size: 16rem;
    }
}

/***　手ぬぐい　***/

.area_goods .sg .list .tenugui .note2 {
	margin: 1em auto 0;
	padding: 1em;
	border: 1px dotted #cbad6d;
	color: #cbad6d;
	font-size: 0.9em;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 500;
}


.area_goods .sg .foot_caution {
    margin: 2em auto 0;
	padding: 0 2em;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 400;
}

.area_goods .sg .foot_caution li {
	margin-bottom: 0.5em;
	padding-left: 1em;
	text-align: left;
	text-indent: -1em;
	line-height: 1.5;
	font-size: 0.9em;
}

@media screen and (max-width: 580px){
	.area_goods .sg .list .tenugui .note2 {
		text-align: left;
	}
	.area_goods .sg .list .tenugui .note2 .pk {
		display: inline;
	}
}

@media screen and (max-width: 430px){
	.area_goods .sg .list .program .p_cont {
		padding: 1em 0;
	}
	.area_goods .sg .list .program .p_cont ul {
		padding: 1em 0;
	}
}


.area_goods .sg .wrap_order {
	margin: 6em auto 4em;
}

.area_goods .sg .wrap_order .list_way {
	width: 100%;
	max-width: 900px;
	margin: 0 auto;
}

.area_goods .sg .wrap_order .list_way > dt {
	margin: 2em auto 0.5em;
	padding-left: 0.2em;
	color: #fff;
	font-size: 24rem;	
	line-height: 1.3;
	text-align: left;
}
.area_goods .sg .wrap_order .list_way > dt::before {
	content: "●";
	margin-right: 0.1em;
	color: #cbad6d;
}

.area_goods .sg .wrap_order .list_way > dd {
}
.area_goods .sg .wrap_order .list_way table {
	width: 100%;
	margin: 0 auto 2em;
	border: 1px solid #cbad6d;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 400;
}

.area_goods .sg .wrap_order .list_way th,
.area_goods .sg .wrap_order .list_way td {
	padding: 1em;
	border: 1px solid #cbad6d;
	text-align: left;
}
.area_goods .sg .wrap_order .list_way th {
	width: 8em;
	background: rgba(203,173,109,0.5);
	text-shadow: 3px 3px 5px rgba(0,0,0,0.3), 0 0 10px rgba(0,0,0,0.5);
	color: #fff;
    font-family: 'Noto Serif JP', serif;
    font-weight: 400;
	text-align: center;
}
.area_goods .sg .wrap_order .list_way td {
	line-height: 1.5;
}
.area_goods .sg .wrap_order .list_way td .list_handling{
}

.area_goods .sg .wrap_order .list_way td .note {
	padding: 1em 1em 0;
	font-size: 0.9em;
	text-indent: -1em;
	line-height: 1.5;
}

.area_goods .sg .wrap_order .list_way td .note2 {
	font-size: 0.9em;
}

.area_goods .sg .wrap_order .chanter {
	color: #fff;
	text-decoration: underline;
	transition: 0.5s;
	font-weight: 900;
}

.area_goods .sg .wrap_order .chanter .fas {
}

.area_goods .sg .wrap_order .chanter:hover {
}

.area_goods .sg .wrap_order .btn_order {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	display: block;
	width: 100%;
	max-width: 400px;
	margin: 0 0 0.5em;
	padding: 0.5em;
	background: rgba(223,180,71,0.1);
	border: 1px solid #cbad6d;
	border-radius: 2px;
	text-decoration: none;
	color: #fff;
	font-size: 24rem;
	text-align: center;
	transition: 0.5s;
}

.area_goods .sg .wrap_order .btn_order:hover {
	background: rgba(223,180,71,0.5);
}



@media screen and (max-width: 500px){
	.area_goods .sg .wrap_order .list_way th {
		width: 5.5em;
		padding: 0.5em;
	}
	.area_goods .sg .wrap_order .btn_order {
		width: 90%;
		max-width: 200px;
		font-size: 20rem;
	}
}

@media screen and (max-width: 400px){
	.area_goods .sg .wrap_order .list_way > dt{
		font-size: 20rem;
	}
	
	.area_goods .sg .wrap_order .list_way table {
	}
	.area_goods .sg .wrap_order .list_way th,
	.area_goods .sg .wrap_order .list_way td {
		display: block;
		width: 100%;
		text-align: center;
	}
	.area_goods .sg .wrap_order .list_way th {
		padding: 0.5em 0;
		border: none;
		line-height: 1;
	}
	.area_goods .sg .wrap_order .list_way td {
		padding: 1em;
		border: none;
	}
	.area_goods .sg .wrap_order .btn_order {
		margin: 0 auto 0.5em;
		width: 90%;
	}

	.area_goods .sg .wrap_order .list_way td .note {
		padding: 1em 2em 0;
		text-align: center;
	}

    .area_goods .sg .wrap_order .list_way td .caution {
        margin-top: 0.5em;
        text-align: left;
    }
    .area_goods .sg .wrap_order .list_way td .caution li {
        padding-left: 1em;
        text-indent: -1em;
    }
}

@media screen and (max-width: 340px){
	.area_goods .sg .wrap_order .list_way td .note {
		text-align: left;
	}
}

/**** RENI　****/

.area_goods .sg .wrap_order .box_reni {
    padding: 2em;
	border: 1px solid #cbad6d;
    text-align: center;
}
.area_goods .sg .wrap_order .box_reni > dt {
    margin-bottom: 1em;
    padding-bottom: 1em;
    border-bottom: 1px solid #cbad6d;
    font-size: 24rem;
}

.area_goods .sg .wrap_order .box_reni > dd .lead {
    padding: 0 1em;
}

.area_goods .sg .wrap_order .box_reni > dd {
}

.area_goods .sg .wrap_order .box_reni .place {
    margin: 1em auto;
    padding: 1em;
    background: rgba(255,255,255,0.1);
    border-radius: 5px;
}
.area_goods .sg .wrap_order .box_reni .place > dt{
    font-size: 24rem;
    color: #fff;
}

.area_goods .sg .wrap_order .box_reni .btn_order {
	margin: 1em auto;
}
.area_goods .sg .wrap_order .box_reni .list_note {
	display: inline-block;
	text-align: left;
	margin: 0 auto;
}

.area_goods .sg .wrap_order .box_reni .list_note li {
	padding-left: 1em;
	text-indent: -1em;
	font-size: 0.9em;
}

.area_goods .sg .wrap_order .box_reni .list_note li:not(:last-of-type) {
	margin-bottom: 0.5em;
}

.area_goods .sg .wrap_order .box_reni .list_note li a {
	color: #cbad6d;
}

.area_goods .sg .wrap_order .box_reni > dd table {
    width: 100%;
    margin: 1em auto 0;
/*	border: 1px solid #cbad6d;*/
}

.area_goods .sg .wrap_order .box_reni > dd table th {
    display: block;
    width: 100%;
	background: rgba(203,173,109,0.5);
	text-shadow: 3px 3px 5px rgba(0,0,0,0.3), 0 0 10px rgba(0,0,0,0.5);
	color: #fff;
    font-family: 'Noto Serif JP', serif;
    font-weight: 400;
	text-align: center;
}

.area_goods .sg .wrap_order .box_reni > dd table td {
    display: block;
    width: 100%;
    padding: 1em;
}

.area_goods .sg .wrap_order .box_reni .list_pass {
    margin: 0 auto;
}
.area_goods .sg .wrap_order .box_reni .list_pass li {
    display: inline-block;
    margin: 0 0.5em;
}
.area_goods .sg .wrap_order .box_reni .list_pass .lbl {
	color: #cbad6d;
}

@media screen and (max-width: 500px){
    .area_goods .sg .wrap_order .box_reni {
        padding: 1.5em 1em;
    }
    .area_goods .sg .wrap_order .box_reni > dt {
        font-size: 20rem;
    }
    .area_goods .sg .wrap_order .box_reni > dd table td {
        padding: 1em 0;
    }
    .area_goods .sg .wrap_order .box_reni .btn_order {
        line-height: 1.5;
    }
    .area_goods .sg .wrap_order .box_reni > dd .lead {
        padding: 0 0.5em;
    }
    .area_goods .sg .wrap_order .box_reni .place > dt{
        font-size: 20rem;
    }
}

/****************************************

　グッズ　モーダルウィンドウ

*****************************************/

.goods_note .modal-wrapper {
  z-index: 1001;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 20px 10px 40px;
  text-align: center
}

.goods_note .modal-wrapper:not(:target) {
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s;
}

.goods_note .modal-wrapper:target {
  opacity: 1;
  visibility: visible;
  transition: opacity .4s, visibility .4s;
}

.goods_note .modal-wrapper::after {
  display: inline-block;
  height: 100%;
  margin-left: -.05em;
  vertical-align: middle;
  content: ""
}

.goods_note .modal-wrapper .modal-window {
	box-sizing: border-box;
	display: inline-block;
	z-index: 20;
	position: relative;
	max-width: 900px;
	margin: 0 auto 2em;
	padding: 2em 3em 3em;
	background-color: rgba(255,255,255,0.8);
	text-align: center;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 700;
}

.goods_note.sd_window .modal-wrapper .modal-window {
	padding: 2em 3em 1em;
	background-color: rgba(0,0,0,0.9);
	border: 2px groove #cbad6d;
	text-align: left;
	font-family: 'Noto Serif JP', serif;
	font-weight: 500;
}

.goods_note .modal-wrapper .modal-window .modal-content {
  max-height: 80vh;
  overflow-y: auto;
	padding: 1em;
}

.goods_note .modal-wrapper .modal-window .modal-content::-webkit-scrollbar {
    width: 10px;
}
.goods_note .modal-wrapper .modal-window .modal-content::-webkit-scrollbar-track {
	background: #fcf9f6;	
}

.goods_note .modal-wrapper .modal-window .modal-content::-webkit-scrollbar-thumb {
	background: rgba(153,143,133,0.9);
}



.goods_note .modal-wrapper .modal-window .modal-main {
	font-weight: 400;
}

.goods_note .modal-wrapper .modal-window .modal-main dt {
	margin: 0 auto 2em;
	padding-bottom: 1em;
	border-bottom: 1px solid #fff;
	font-size: 24rem;
}

.goods_note .modal-wrapper .modal-window .modal-main dd {}
.goods_note .modal-wrapper .modal-window .modal-main dd li {
	display: inline-block;
	margin: 0 0.5em 1em;
}
.goods_note .modal-wrapper .modal-window .modal-main dd .photo {
	display: block;
	max-width: 340px;
	width: 100%;
}

.goods_note .modal-wrapper .modal-window .modal-main dd .photo img {
	display: block;
	width: 100%;
}

.goods_note .modal-wrapper .modal-window .modal-main dd .cap {}

.goods_note .modal-wrapper .modal-window .modal-main dd .text {
	margin: 2em auto 0;
}
.goods_note .modal-wrapper .modal-window .modal-main dd .text li {
	padding-left: 1em;
	text-indent: -1em;
	text-align: left;
	line-height: 1.5;
}

.goods_note .modal-overlay {
  z-index: 10;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, .8)
}

.goods_note .modal-wrapper .modal-close {
  z-index: 20;
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  color: #000 !important;
  font-size: 30px;
  font-weight: 700;
  line-height: 60px;
  text-align: center;
  text-decoration: none;
  text-indent: 0
}

.goods_note.sd_window .modal-wrapper .modal-close {
  color: #cbad6d !important;
}

.goods_note .modal-wrapper .modal-close:hover {
  color: #fcf9f6 !important
}


@media screen and (max-width: 414px){

    .goods_note .modal-wrapper .modal-window {
	 padding: 2em 1.5em 1.5em;
    }
}

.goods_note .pict {
	max-width: 1300px;
	margin: 0 auto;
}

.goods_note .pict img {
	display: block;
	width: 100%;
	max-height: 80vh;
}



/***　折り畳み　***/

/*ベース*/
.area_goods .toggle {
	display: none;
}
.area_goods .Label {		/*タイトル*/
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	display: inline-block;
/*	max-width: 500px;*/
	width: 100%;
	margin: 1em 0.25em 0em;
	padding: 1em;
/*	background: #a52038;
	box-shadow: 0 0 5px rgba(0,0,0,0.3);*/
    border: 3px double #cbad6d;
/*	color: #fff;*/
/*	font-size: 20rem;
	font-weight: 700;*/
	text-decoration: none;
	text-align: center;
	line-height: 1;
	transition: 0.5s;
}
.area_goods .Label::before{		/*タイトル横の矢印*/
	content:"";
	width: 12px;
	height: 12px;
	border-top: 5px solid #cbad6d;
	border-right: 5px solid #cbad6d;
	-webkit-transform: rotate(45deg);
	position: absolute;
	top:calc( 50% - 3px );
	right: 20px;
	transform: rotate(135deg);
}
.area_goods .Label,
.area_goods .about {
	-webkit-backface-visibility: hidden;	
	backface-visibility: hidden;
	transform: translateZ(0);
	transition: all 0.3s;
}
.area_goods .about {		/*本文*/
	height: 0;
	margin-bottom:10px;
	padding:0 20px;
	overflow: hidden;
}
.area_goods .toggle:checked + .Label + .about {	/*開閉時*/
	height: auto;
	padding:20px ;
	transition: all .3s;
}

.area_goods .toggle:checked + .Label::before {
	transform: rotate(-45deg) !important;
}

@media screen and (max-width: 400px){
    .area_goods .Label::before{		/*タイトル横の矢印*/
        width: 12px;
        height: 12px;
        border-top: 2px solid #cbad6d;
        border-right: 2px solid #cbad6d;
    }
}

/***　//折り畳み　***/

.area_goods {
	max-width: 900px;
	margin: 0 auto;
}

/***　ウォッチ　***/

.area_goods .watch .head {
	padding: 0;
	font-size: 30rem;
}

.area_goods .watch .head .catch {
	max-width: 900px;
	margin: 0 auto;
}

.area_goods .watch .head .catch .text1 {
    margin: 0 auto 0.5em;
	font-size: 0.7em;
	color: #cbad6d;
	text-shadow: 5px 5px 5px #000;
}
.area_goods .watch .head .catch .text1::before {
	content: "～";
	margin-right: 0.3em;
}
.area_goods .watch .head .catch .text1::after {
	content: "～";
	margin-left: 0.3em;
}

.area_goods .watch .head .catch .text2 {
	margin: 0 auto;
	text-shadow: 0 0 20px #fff;
    line-height: 1.5;
}

.area_goods .watch .head .catch .text3 {
    display: inline-block;
    margin: 0.3em auto 0;
    padding: 0.3em 1em;
    border-top: 1px solid rgba(255,255,255,0.5);
    border-bottom: 1px solid rgba(255,255,255,0.5);
	font-size: 0.7em;
    line-height: 1.3;
    letter-spacing: 0.05em;
	text-shadow: 0 0 10px #fff;
}


.area_goods .watch .head .catch img {
	width: 100%;
}

.area_goods .watch .head .catch2 {
	font-size: 0.7em;
}

@media screen and (max-width: 800px){
	.area_goods .watch .head {
		font-size: 30rem;
	}
}

@media screen and (max-width: 600px){
	.area_goods .watch .head .catch .text1 {
/*        margin-bottom: 0.5em;
		padding: 0.5em;
		border-top: 3px double #cbad6d;
		border-bottom: 3px double #cbad6d;
		line-height: 1.5;*/
	}
	.area_goods .watch .head .catch .text1::before {
		content: none;
	}
	.area_goods .watch .head .catch .text1::after {
		content: none;
	}
}

@media screen and (max-width: 440px){
	.area_goods .watch .head .catch2 {
		font-size: 0.65em;
	}
}

@media screen and (max-width: 400px){
	.area_goods .watch .head {
		font-size: 24rem;
	}
}

@media screen and (max-width: 340px){
	.area_goods .watch .head .catch .text2 {
		font-size: 0.9em;
	}
}

.area_goods .watch .photo_main {
    max-width: 600px;
	margin: 0 auto;
}
.area_goods .watch .photo_main img {
	display: block;
	width: 100%;
}

.area_goods .watch .lead {
	padding: 2em 0;
	text-align: left;
    font-size: 1.2em;
}
.area_goods .watch .lead p:not(:last-of-type) {
	margin-bottom: 1em;
}

.area_goods .watch .photo_sub {
	display: flex;
	justify-content: center;
	margin: 0 auto;
}
.area_goods .watch .photo_sub .item:not(:last-of-type){
	margin-right: 0.5em;
}
.area_goods .watch .photo_sub .item img {
	display: block;
	width: 100%;
}
.area_goods .watch .photo_sub .item .cap {
	font-size: 0.8em;
}

.area_goods .watch .detail_catch {
	font-size: 1.7em;
	color: #cbad6d;
	text-shadow: 5px 5px 5px #000;
}

.area_goods .watch .detail .item {
    margin: 2em auto;
    padding: 1em;
    background: rgba(255,255,255,0.1);
}

.area_goods .watch .detail .item::after{
  content: "";
  display: block;
  clear: both;
}

.area_goods .watch .detail .photo {
    max-width: 300px;
}
.area_goods .watch .detail .photo img {
    display: block;
    width: 100%;
}

.area_goods .watch .detail dt {
    background: rgba(203,173,109,0.5);
    color: #fff;
    font-size: 24rem;
    font-weight: 500;
}


.area_goods .watch .detail .text {
    padding: 1em;
    text-align: left;
}

.area_goods .watch .detail .text p:not(:last-of-type) {
    margin-bottom: 1em;
}

.area_goods .watch .detail .rgt .photo {
    float: right;
    margin: 1em 1em 0;
    box-shadow: 0 0 10px rgba(50,49,63,0.5);
}

.area_goods .watch .detail .lft .photo {
    float: left;
    margin: 1em 1em 0;
    box-shadow: 0 0 10px rgba(50,49,63,0.5);
}

@media screen and (max-width: 768px){

    .area_goods .watch .detail .photo {
        min-width: 180px;
        width: 30%;
    }
}

@media screen and (max-width: 450px){

    .area_goods .watch .detail .item {}

    .area_goods .watch .detail .photo {
        max-width: 240px;
        width: inherit;
    }

    .area_goods .watch .detail dt {
        display: flex;
        align-items: center;
        background: none;
        color: #cbad6d;
    }

    .area_goods .watch .detail dt:before,
    .area_goods .watch .detail dt:after {
        content: "";
        height: 1px;
        flex-grow: 1;
        background-color: #cbad6d;
    }

    .area_goods .watch .detail dt:before {
        margin-right: 1em;
    }

    .area_goods .watch .detail dt:after {
        margin-left: 1em;
    }

    .area_goods .watch .detail .text {
/*        padding: 1em;
        text-align: left;*/
        font-size: 1.1em;
    }

    .area_goods .watch .detail .rgt .photo {
        float: none;
        margin: 1em auto;
    }

    .area_goods .watch .detail .lft .photo {
        float: none;
        margin: 1em auto;
    }
}

@media screen and (max-width: 340px){
	.area_goods .watch .detail_catch {
		font-size: 1.4em;
	}
}

.area_goods .watch .detail2 {
    margin: 2em auto;
    padding: 1em;
/*    background: rgba(255,255,255,0.1);
    border: 1px solid #fff;*/
    text-align: left;
/*    font-size: 0.9em;*/
}

.area_goods .watch .detail2 .item::after{
  content: "";
  display: block;
  clear: both;
}

.area_goods .watch .detail2 .photo {
    max-width: 200px;
}
.area_goods .watch .detail2 .photo img {
    display: block;
    width: 100%;
}

.area_goods .watch .detail2 dt {
    color: #cbad6d;
}
.area_goods .watch .detail2 dt::before {
    content: "［";
}
.area_goods .watch .detail2 dt::after {
    content: "］";
}
.area_goods .watch .detail2 .text {
    padding: 0 1em;
}

.area_goods .watch .detail2 .rgt .photo {
    float: right;
    margin-left: 1em;
}

@media screen and (max-width: 768px){

    .area_goods .watch .detail2 .photo {
        min-width: 140px;
        width: 30%;
    }
}

.area_goods .watch .order {
	margin: 2em auto;
	padding: 1.5em 2em;
	border: 3px double #cbad6d;
	background-color: rgba(0,0,0,0.2);
	background: url("../images/goods_waku_lt.svg") no-repeat,url("../images/goods_waku_rt.svg") no-repeat,url("../images/goods_waku_rb.svg") no-repeat,url("../images/goods_waku_lb.svg") no-repeat;
	background-position: left 2px top 2px,right 2px top 2px,right 2px bottom 2px,left 2px bottom 2px;
	background-size: 40px 40px;
}

.area_goods .watch .order dt {
	color: #cbad6d;
	font-size: 1.2em;
    display: flex;
    align-items: center;
}

.area_goods .watch .order dt:before,
.area_goods .watch .order dt:after {
    content: "";
    height: 1px;
    flex-grow: 1;
    background-color: #cbad6d;
}

.area_goods .watch .order dt:before {
    margin-right: 0.5em;
}

.area_goods .watch .order dt:after {
    margin-left: 0.5em;
}

.area_goods .watch .order dd {
	padding: 1em;
}

.area_goods .watch .order .caution {
    margin: 1em auto 0;
}
.area_goods .watch .order .caution li{
    text-align: center;

}

.area_goods .watch .order dd .msg_close {
	font-size: 1.2em;
}

.area_goods .watch .order dd.price {
	font-size: 1.2em;
	font-weight: 700;
}

.area_goods .watch .order dd.price .note {
	font-size: 0.8em;
	font-weight: 500;
}

.area_goods .watch .order dd .day {
	font-size: 1.2em;
	font-weight: 700;
}

.area_goods .watch .order dd .day .close {
	text-decoration: line-through;
    color: rgba(255,255,255,0.5);
}

.area_goods .watch .order .btn {
	position: relative;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	display: block;
	max-width: 440px;
	margin: 0.5em auto 0;
	padding: 0.5em 2em;
	box-shadow: 2px 2px 5px rgba(0,0,0,0.2);
	background: rgba(203,173,109,0.2);
	border: 1px solid #cbad6d;
	color: #fff;
	font-weight: 500;
	font-size: 24rem;
	text-decoration: none;
	line-height: 1.5;
	transition: 0.5s;
}

.area_goods .watch .order .btn:hover {
	background: none;
	color: #f6cf70;
}

.area_goods .watch .order .btn .icon {
	position: absolute;
	top: calc(50% - 0.5em);
	right: 1em;
}

@media screen and (max-width: 500px){
	.area_goods .watch .order .btn {
		width: 90%;
		font-size: 20rem;
	}
}

@media screen and (max-width: 340px){
	.area_goods .watch .order .btn {
		width: 95%;
		font-size: 18rem;
	}
}

.area_goods .watch .caution li {
	padding-left: 1em;
	text-indent: -1em;
	text-align: left;
    font-size: 0.9em;
}

@media screen and (max-width: 450px){
	.area_goods .watch .caution li {
		font-size: 1em;
	}
}
/*
.area_goods .watch .msg_last {
    margin: 2em auto 0;
    color: #eacd90;
	text-shadow: 5px 5px 5px #000;
}

@media screen and (max-width: 450px){
    .area_goods .watch .msg_last {
        font-size: 1.1em;
    }
}
@media screen and (max-width: 370px){
	.area_goods .watch .msg_last {
		text-align: left;
	}
	.area_goods .watch .msg_last .pk {
		display: inline;
	}
}*/

/***　カレンダー　***/

.area_goods .calendar {
	max-width: 900px;
	margin: 0 auto;
}

.area_goods .calendar .head {
	padding: 0;
	font-size: 30rem;
}

.area_goods .calendar .head .catch .text1 {
	font-size: 0.7em;
	color: #cbad6d;
	text-shadow: 5px 5px 5px #000;
}
.area_goods .calendar .head .catch .text1::before {
	content: "～";
	margin-right: 0.3em;
}
.area_goods .calendar .head .catch .text1::after {
	content: "～";
	margin-left: 0.3em;
}

.area_goods .calendar .head .catch .text2 {
	margin: 0.5em auto 0.5em;
	text-shadow: 0 0 20px #fff;
}

.area_goods .calendar .head .catch {
	max-width: 900px;
	margin: 0 auto;
}

.area_goods .calendar .head .catch img {
	width: 100%;
}

.area_goods .calendar .head .catch2 {
	font-size: 0.7em;
}

@media screen and (max-width: 800px){
	.area_goods .calendar .head {
		font-size: 30rem;
	}
}

@media screen and (max-width: 600px){
	.area_goods .calendar .head .catch .text1 {
	}
	.area_goods .calendar .head .catch .text1::before {
		content: none;
	}
	.area_goods .calendar .head .catch .text1::after {
		content: none;
	}
}

@media screen and (max-width: 440px){
	.area_goods .calendar .head .catch2 {
		font-size: 0.65em;
	}
}

@media screen and (max-width: 400px){
	.area_goods .calendar .head {
        padding-right: 1em;
		font-size: 24rem;
        line-height: 1.5;
	}
}

@media screen and (max-width: 340px){
	.area_goods .calendar .head .catch .text2 {
		font-size: 0.9em;
	}
}

.area_goods .calendar .photo_main {
	margin: 1em auto 0;
}
.area_goods .calendar .photo_main img {
	display: block;
	width: 100%;
}

.area_goods .calendar .lead {
	padding: 2em 0;
	text-align: left;
}
.area_goods .calendar .lead p:not(:last-of-type) {
	margin-bottom: 1em;
}

.area_goods .calendar .photo_sub {
	display: flex;
	justify-content: center;
	margin: 0 auto;
}
.area_goods .calendar .photo_sub .item:first-of-type {
	margin-right: 0.5em;
}
.area_goods .calendar .photo_sub .item img {
	display: block;
	width: 100%;
}
.area_goods .calendar .photo_sub .item .cap {
	font-size: 0.8em;
}
.area_goods .calendar .order {
	margin: 2em auto;
	padding: 1.5em 2em;
	border: 3px double #cbad6d;
	background-color: rgba(0,0,0,0.2);
	background: url("../images/goods_waku_lt.svg") no-repeat,url("../images/goods_waku_rt.svg") no-repeat,url("../images/goods_waku_rb.svg") no-repeat,url("../images/goods_waku_lb.svg") no-repeat;
	background-position: left 2px top 2px,right 2px top 2px,right 2px bottom 2px,left 2px bottom 2px;
	background-size: 40px 40px;
}

.area_goods .calendar .order dt {
/*	border-top: 1px solid #cbad6d;
	border-bottom: 1px solid #cbad6d;
	background: rgba(203,173,109,0);*/
	color: #cbad6d;
	font-size: 1.2em;
    display: flex;
    align-items: center;
}

.area_goods .calendar .order dt:before,
.area_goods .calendar .order dt:after {
    content: "";
    height: 1px;
    flex-grow: 1;
    background-color: #cbad6d;
}

.area_goods .calendar .order dt:before {
    margin-right: 0.5em;
}

.area_goods .calendar .order dt:after {
    margin-left: 0.5em;
}

.area_goods .calendar .order dd {
	padding: 1em;
}

.area_goods .calendar .order .caution {
    margin: 1em auto 0;
}
.area_goods .calendar .order .caution li{
    text-align: center;

}

.area_goods .calendar .order dd .msg_close {
	font-size: 1.2em;
}

.area_goods .calendar .order dd .day {
	font-size: 1.2em;
	font-weight: 700;
}

.area_goods .calendar .order dd .day .close {
	text-decoration: line-through;
    color: rgba(255,255,255,0.5);
}

.area_goods .calendar .order .btn {
	position: relative;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	display: block;
	max-width: 440px;
	margin: 0.5em auto 0;
	padding: 0.5em 2em;
	box-shadow: 2px 2px 5px rgba(0,0,0,0.2);
	background: rgba(203,173,109,0.2);
	border: 1px solid #cbad6d;
	color: #fff;
	font-weight: 500;
	font-size: 24rem;
	text-decoration: none;
	line-height: 1.5;
	transition: 0.5s;
}

.area_goods .calendar .order .btn:hover {
	background: none;
	color: #f6cf70;
}

.area_goods .calendar .order .btn .icon {
	position: absolute;
	top: calc(50% - 0.5em);
	right: 1em;
}

@media screen and (max-width: 500px){
	.area_goods .calendar .order .btn {
		width: 90%;
		font-size: 20rem;
	}
}

@media screen and (max-width: 340px){
	.area_goods .calendar .order .btn {
		width: 95%;
		font-size: 18rem;
	}
}

.area_goods .calendar .caution li {
	padding-left: 1em;
	text-indent: -1em;
	text-align: left;
    font-size: 0.9em;
}


.area_goods .msg_last {
    margin: 2em auto 0;
    color: #eacd90;
	text-shadow: 5px 5px 5px #000;
}

@media screen and (max-width: 450px){
    .area_goods .msg_last {
        font-size: 1.1em;
    }
}
@media screen and (max-width: 370px){
	.area_goods .msg_last {
		text-align: left;
	}
	.area_goods .msg_last .pk {
		display: inline;
	}
}