@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: 600px){

	#g-navi ul li {
		margin: 0 0.5em; 
		font-size: 30rem;
	}
}

@media screen and (max-width: 400px){

	#g-navi ul li {
		font-size: 24rem;
	}
}

@media screen and (max-width: 370px){

	#g-navi ul li {
		font-size: 20rem;
	}
}


/*.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 {
	margin: 1em auto;
}

@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: 0 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_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;
	width: 6em;
	margin: 0 auto;
	vertical-align: top;
}
.area_cast .list_p1 .t_cast {}
.area_cast .list_p1 .t_cast li {
	display: inline-block;
	width: 6em;
	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;
}

@media screen and (max-width: 480px){
	.area_cast .list_p1 {
		font-size: 26rem;
		line-height: 1.3;
	}
	.area_cast .list_p1 .w_cast li {
		width: 5.6em;
	}
	.area_cast .list_p1 .t_cast li {
		width: 5.6em;
	}
}

@media screen and (max-width: 390px){
	.area_cast .list_p1 .w_cast li {
		display: block;
		width: inherit;
		margin-bottom: 0.5em;
	}
	.area_cast .list_p1 .t_cast li {
		display: block;
		width: inherit;
		margin-bottom: 0.5em;
	}
}

/****　プリンシバル2　****/

.area_cast .list_p2 {
	margin: 0 auto 2em;
	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 .w_cast {}
.area_cast .list_p2 .w_cast li {
	display: inline-block;
	margin: 0 0.8em;
	vertical-align: top;
}

@media screen and (max-width: 480px){
	.area_cast .list_p2 {
		font-size: 22rem;
	}
}

@media screen and (max-width: 390px){
	.area_cast .list_p2 .w_cast li {
		display: block;
		margin-bottom: 0.5em;
	}
	.area_cast .list_p2 .t_cast li {
		display: block;
		margin-bottom: 0.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 .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 > 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 {
	max-width: 900px;
	margin: 0 auto;
}

.area_goods .head {
	padding: 0 0 1em;
	font-size: 34rem;
}

.area_goods .head .catch .text1 {
	font-size: 0.7em;
	color: #cbad6d;
	text-shadow: 5px 5px 5px #000;
}
.area_goods .head .catch .text1::before {
	content: "～";
	margin-right: 0.3em;
}
.area_goods .head .catch .text1::after {
	content: "～";
	margin-left: 0.3em;
}

.area_goods .head .catch .text2 {
	margin: 1em auto;
	text-shadow: 0 0 20px #fff;
}

.area_goods .head .catch {
	max-width: 900px;
	margin: 0 auto;
}

.area_goods .head .catch img {
	width: 100%;
}

.area_goods .head .catch2 {
	font-size: 0.7em;
}

@media screen and (max-width: 800px){
	.area_goods .head {
		font-size: 30rem;
	}
}

@media screen and (max-width: 600px){
	.area_goods .head .catch .text1 {
		padding: 0.5em;
		border-top: 3px double #cbad6d;
		border-bottom: 3px double #cbad6d;
		line-height: 1.5;
	}
	.area_goods .head .catch .text1::before {
		content: none;
	}
	.area_goods .head .catch .text1::after {
		content: none;
	}
}

@media screen and (max-width: 440px){
	.area_goods .head .catch2 {
		font-size: 0.65em;
	}
}

@media screen and (max-width: 400px){
	.area_goods .head {
		font-size: 26rem;
	}
}

@media screen and (max-width: 340px){
	.area_goods .head .catch .text2 {
		font-size: 0.9em;
	}
}

.area_goods .photo_main {
	margin: 0 auto;
}
.area_goods .photo_main img {
	display: block;
	width: 100%;
}

.area_goods .lead {
	padding: 2em 0;
	text-align: left;
}
.area_goods .lead p:not(:last-of-type) {
	margin-bottom: 1em;
}

.area_goods .photo_sub {
	display: flex;
	justify-content: center;
	margin: 0 auto;
}
.area_goods .photo_sub .item:first-of-type {
	margin-right: 0.5em;
}
.area_goods .photo_sub .item img {
	display: block;
	width: 100%;
}
.area_goods .photo_sub .item .cap {
	font-size: 0.8em;
}
.area_goods .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 .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 .order dt:before,
.area_goods .order dt:after {
    content: "";
    height: 1px;
    flex-grow: 1;
    background-color: #cbad6d;
}

.area_goods .order dt:before {
    margin-right: 0.5em;
}

.area_goods .order dt:after {
    margin-left: 0.5em;
}

.area_goods .order dd {
	padding: 1em;
}

.area_goods .order .caution {
    margin: 1em auto 0;
}
.area_goods .order .caution li{
    text-align: center;

}

.area_goods .order dd .day {
	font-size: 1.2em;
	font-weight: 700;
}

.area_goods .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 .order .btn:hover {
	background: none;
	color: #f6cf70;
}

.area_goods .order .btn .icon {
	position: absolute;
	top: calc(50% - 0.5em);
	right: 1em;
}

@media screen and (max-width: 500px){
	.area_goods .order .btn {
		width: 90%;
		font-size: 20rem;
	}
}

@media screen and (max-width: 340px){
	.area_goods .order .btn {
		width: 95%;
		font-size: 18rem;
	}
}

.area_goods .caution li {
	padding-left: 1em;
	text-indent: -1em;
	text-align: left;
    font-size: 0.9em;
}