@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

***/

/***色
黒　#402b22; rgba(64,43,34,1);
薄茶　#bc9f75; rgba(188,159,117);
橙　#c25d2c;
***/

/******フェードイン*****/

.fadein {
    animation-name: fadein;
    animation-duration: 3s;
}

@keyframes fadein {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}


/********リンク********/
a {
    color: #c5a44a;
    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:2;
	color: #402b22;
	font-family: 'Noto Serif JP', serif;
    font-weight: 500;
	
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	background: #e8dec5;	
}

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: top;
    background-size: cover;  
    background-color: #e8dec5;
}

@media (orientation: portrait) { /**　画面が縦長の時　**/

	body:after {
		background-image: url("../images/bg_smp.jpg");
		background-size: cover;  
	}
}

@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;
    /*ボタンの形状*/
    box-shadow: 0 0 50px rgba(64,43,34,0.3);
	background: #c25d2c;
	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;
	width:100%;
	padding-top: 1em;
}

/*.doneクラスがついたヘッダー*/
#header.dnone {
	opacity: 0;/*透過0にして非表示に*/
}

/*メニューボタンをクリックした際に付与されるpanelactiveクラスがついたら*/
#header.dnone.panelactive {
	opacity: 1;/*不透明にして出現*/
}


/*==ヘッダーのテキストナビゲーションの形状*/

#g-navi ul {
    margin: 0 1em;
    padding: 0.5em 0; 
    line-height: 1.3;
    vertical-align: top;
}

#g-navi ul .res_nav {
	display: none;
}

#g-navi ul li {
    display: inline-block;
    margin: 0 0.5em;
    padding: 5px 0 5px; 
    font-size: 28rem;
    line-height: 1.3;
    vertical-align: top;

}

#g-navi ul li a {
    text-decoration: none;
    transition: 0.5s;
}

#g-navi ul li .jp {
	display: block;
	color: #402b22;
	font-family: 'Noto Serif JP', serif;
	font-feature-settings: "palt";
	font-weight: 500;
	text-shadow: 0 0 20px rgba(64,43,34,0.8),2px 2px 5px rgba(64,43,34,0.3);
	transition: 0.5s;
}

#g-navi ul li .en {
	display: block;
	font-family: 'Noto Serif JP', serif;
	font-weight: 500;
	color: #c25d2c;
	font-size: 0.5em;
	text-shadow: 0 0 5px rgba(64,43,34,0.3);
}

#g-navi ul li .en .amp {
	margin: 0 0.2em;
	font-size: 0.8em;
}


#g-navi ul li:hover .jp {
	text-shadow: 0 0 5px rgba(255,255,255,1),0 0 30px rgba(255,255,255,1),0 0 50px rgba(255,255,255,1),0 0 50px rgba(255,255,255,1);
}


@media screen and (max-width: 600px){

	#g-navi ul li {
		font-size: 30rem;
	}
}

@media screen and (max-width: 400px){

	#g-navi ul li {
		font-size: 22rem;
	}
}

@media screen and (max-width: 320px){

}


/*.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;

}

#header.dnone #g-navi .logo {
	display: none;
}

#header.dnone #g-navi ul .res_nav {
	display: none;
}

/*メニューボタンをクリックした際に付与されるpanelactiveクラスがついたナビゲーションの形状*/
#header.dnone.panelactive #g-navi{
	opacity: 1;/*不透明に*/
	z-index:998;/*最前面に*/
	background:rgba(242,238,227,0.9);
	width:100%;
	height: 100vh;
}

#header.dnone.panelactive #g-navi ul li {
	display:block;/*flexの横並びをblockにして縦並びに*/
	padding:1em 10px 0;
	font-size: 28rem;
}


/*リストの形状*/

#header.dnone.panelactive #g-navi li a{}

@media screen and (max-height: 800px) { /*画面の高さが800以下の時*/

	#header.dnone.panelactive #g-navi ul li {
		padding: 0.5em 0;
		font-size: 24rem;
	}
}  
@media screen and (max-height: 520px) { /*画面の高さが500以下の時*/

	#header.dnone.panelactive #g-navi ul li {
		font-size: 20rem;
	}
} 
@media screen and (max-height: 400px) { /*画面の高さが360以下の時*/

	#header.dnone.panelactive #g-navi ul li {
		padding: 0.3em 0; 
		font-size: 16rem;
	}
}  


/****************************************

　フッター

*****************************************/

/****　ページトップへ戻る　****/

#pagetop{
    position: fixed;
    right: 15px;
    bottom: 15px;
    line-height: 0;
	z-index: 999;

}

#pagetop a {
	text-decoration: none;
	color: #c25d2c;
    text-shadow: 0 0 30px rgba(0,0,0,0.3);
}

#pagetop a::after {
	font-family: "Font Awesome 6 Free";	
	content: "\f106";
	font-weight: 900;
	font-size: 4em;
}

footer{
	width: 100%;
	margin: 0 auto;
    padding: 2em 0 0;
	color: #402b22;
	text-align: center;
	font-size: 18rem;
	bottom: 0;
}

footer .copy {
	display: block;
	padding: 1em;
    font-weight: 700;
	font-style: normal;
	line-height: 1.5;
}

footer .sns_link {
    margin-top: 40px;
}

footer .sns_link li {
    display: inline-block;
    margin: 1em 0.5em;
    text-align: center;
    vertical-align: top;
}

footer .sns_link li img {
    width: 100%;
}

footer .sns_link li.icon_toho {
    width: 45px;
}

footer .sns_link li.icon_x {
	position: relative;
	top: 5px;
    width: 35px;
}

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: #402b22;
	font-size: 16rem;
	font-weight: 500;
}

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 {
	max-width: 900px;
    margin: 0 auto;
/*	padding: 0 1em;*/
}

.sec:not(:first-of-type) {
	padding: 3em 0;
}


.sec .inner {
    margin: 0 auto;
}

@media screen and (max-width: 500px){
}



/*******************************************

　見出し

********************************************/

.heading_sec {
    margin: 1em auto 0.5em;
    font-size: 40rem;
    line-height: 1.3;
    text-align: center;
}

.heading_sec .jp {
	display: block;
	color: #402b22;
	font-family: 'Noto Serif JP', serif;
	font-feature-settings: "palt";
	font-weight: 500;
	text-shadow: 0 0 20px rgba(64,43,34,0.8),2px 2px 5px rgba(64,43,34,0.3);
}

.heading_sec .en {
	display: block;
	font-family: 'Noto Serif JP', serif;
	font-weight: 500;
	color: #c25d2c;
	font-size: 0.5em;
	text-shadow: 0 0 5px rgba(64,43,34,0.3);
	transition: 0.5s;
}

.heading_sec .en .amp {
	margin: 0 0.2em;
	font-size: 0.8em;
}


.heading_sec .and {
	font-size: 0.8em;
}

@media screen and (max-width: 500px) {
	.heading_sec {
		font-size: min(10vw, 28rem);
		
	}
}


/****************************************

　ビジュアル

*****************************************/

.area_visual {
    max-width: 900px;
	width: 100%;
    margin: 0 auto;
}

.area_visual .visual .item {
    display: block;
    margin: 1em auto;
    text-align: center;
    box-shadow: 0 0 50px rgba(64,43,34,0.8);
}

.area_visual .visual .item img {
	display: block;
    width: 100%;

}


@media (orientation: portrait) { /**　画面が縦長の時　**/
    .area_visual {

    }  
}


/**********************************************************************

　ニュース

**********************************************************************/

.area_news .inner {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	display: block;
	width: 100%;
	margin: 2em auto 0;
	padding: 4em;
	outline: 10px double rgba(188,159,117,0.5);
	outline-offset: -20px;
	background: rgba(255,255,255,0.5);
    box-shadow: 0 0 50px rgba(64,43,34,0.3);
	color: #402b22;
}

.area_news .list {
	text-align: left;
}

.area_news .list dt {
	padding: 0 0.5em;
	color: #c25d2c;
}

.area_news .list dd {
	padding: 0 0.5em 0.5em;
}
.area_news .list dd:not(:last-of-type) {
	border-bottom: 1px dotted rgba(188,159,117,0.5);
}

.area_news .btn_list {
	display: block;
	max-width: 300px;
	margin: 2em auto 0;
	padding: 0.5em;
	background: #c25d2c;
	color: #fff;
	text-decoration: none;
	line-height: 1.5;
	transition: 0.5s;
}

.area_news .btn_list:hover {
	background: #402b22;
}

@media screen and (max-width: 768px) {

}

@media screen and (max-width: 400px) {
	.area_news .inner{
		padding: 4em 3em;
	}
}

/***　ニュース一覧ページ　***/
.news_list {}

.news_list .btn_back {
	display: block;
	max-width: 300px;
	margin: 2em auto 0;
	padding: 0.5em;
	background: #c25d2c;
	color: #fff;
	text-decoration: none;
	line-height: 1.5;
	transition: 0.5s;
}

.news_list .btn_back:hover {
	background: #402b22;
}



/**********************************************************************

　イントロ

**********************************************************************/

.area_intro .inner{
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	display: block;
	width: 100%;
	margin: 2em auto 0;
	padding: 4em;
	outline: 10px double rgba(188,159,117,0.5);
	outline-offset: -20px;
	background: rgba(255,255,255,0.5);
    box-shadow: 0 0 50px rgba(64,43,34,0.3);
	color: #402b22;
}

.area_intro .catch {
	margin: 0 auto 1em;
	font-size: 24rem;
	font-weight: 700;
	text-align: center;
	text-shadow: 2px 2px 5px rgba(64,43,34,0.3);
	color: #c25d2c;
}
.area_intro .catch .note {
	font-size: 0.8em;
}

.area_intro .text {
	text-align: left;
}

.area_intro .text p:not(:last-of-type) {
	margin: 0 auto 1em;
}

.area_intro .text .point {
	color: #f5da96;
}

.area_intro .text .about {
	margin: 2em auto 0;
	padding: 1em 1.5em 1em;
	background: rgba(188,159,117,0.1);
	border-radius: 3px;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 400;
	font-size: 0.95em;
}

.area_intro .text .about dt {
	margin-bottom: 0.5em;
	padding-bottom: 0.5em;
	border-bottom: 1px solid rgba(188,159,117,0.5);
	text-align: center;
}

.area_intro .text .about dd {}

.area_intro .text .about p {
	margin-bottom: 0;
}

.area_intro .text .about .from {
	margin-bottom: 1em;
	text-align: right;
	font-size: 0.9em;
}

@media screen and (max-width: 768px) {
	.area_intro .catch {
		font-size: 20rem
	}
}

@media screen and (max-width: 400px) {
	.area_intro .inner{
		padding: 4em 3em;
	}
}

/**********************************************************************

　ストーリー

**********************************************************************/

.area_story .inner{
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	display: block;
	width: 100%;
	margin: 2em auto 0;
	padding: 4em;
	outline: 10px double rgba(188,159,117,0.5);
	outline-offset: -20px;
	background: rgba(255,255,255,0.5);
    box-shadow: 0 0 50px rgba(64,43,34,0.3);
	color: #402b22;
}

.area_story .text {
	text-align: left;
}

.area_story .text p:not(:last-of-type) {
	margin: 0 auto 1em;
}

.area_story .text .point {
	color: #f5da96;
}

@media screen and (max-width: 400px) {
	.area_story .inner{
		padding: 4em 3em;
	}
}


/**********************************************************************

　キャスト

**********************************************************************/

.sec.area_cast {
/*	max-width: 1300px;*/
}

.area_cast .inner{
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	display: block;
	width: 100%;
	margin: 2em auto 0;
	padding: 5em 4em 4em;
	outline: 10px double rgba(188,159,117,0.5);
	outline-offset: -20px;
	background: rgba(255,255,255,0.5);
    box-shadow: 0 0 50px rgba(64,43,34,0.3);
	color: #402b22;
}

@media screen and (max-width: 500px) {
	.area_cast .inner{
		padding: 4em 1em 1em;
	}
}


/***　ヨウコ／陽子　***/

.area_cast .list_yoko {
	margin: 0 auto 3em;
	font-size: 28rem;
	line-height: 1.3;
}

.area_cast .list_yoko li:not(:last-of-type) {
	margin-bottom: 2em;
}

.area_cast .list_yoko .photo img {
	display: block;	
	width: 100%;
}

.area_cast .list_yoko .yaku {
	display: block;
	margin-right: -0.5em;
	font-size: 0.6em;
	color: #c25d2c;
}

.area_cast .list_yoko .name {
	display: block;
}

.area_cast .list_yoko .btn_cmt {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	display: block;
	max-width: 10em;
	margin: 0.3em auto;
	padding: 0.2em 0.5em;
	border-radius: 1px;
	border: 1px solid #c25d2c;
	color: #c25d2c;
	text-decoration: none;
	font-size: 14rem;
	line-height: 1;
	font-family: 'Noto Sans JP', sans-serif;
}


@media screen and (max-width: 500px) {
	.area_cast .list_yoko{
		font-size: 24rem;
	}
}

@media screen and (max-width: 400px) {
	.area_cast .list_yoko{
		font-size: 22rem;
	}
	.area_cast .list_yoko .photo {
		width: 35vw;
	}
}

@media screen and (max-width: 380px) {
	.area_cast .list_yoko li {
		margin: 0 auto 0.25em;
	}
	.area_cast .list_yoko{
		font-size: 20rem;
	}
	.area_cast .list_yoko .btn_cmt {
		font-size: 13rem;
	}
}


/****　ズームアップ　****/
.area_cast .list_yoko .image-hover-container {
	display: inline-block;
	position: relative;
	margin: 0 auto;
}

.area_cast .list_yoko .photo {
	display: block;
	margin: 0 auto 0.2em;
}
.area_cast .list_yoko .photo .image1 {
	max-width: 320px;
	width: 30vw;
	object-fit: cover;
	display: block;
	margin: 0 auto;
}

.area_cast .list_yoko .photo .image2 {
      position: fixed;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: auto;
      height: auto;
      max-width: 90vw;
      max-height: 90vh;
      opacity: 0;
      filter: blur(50px);
      transition: opacity 0.8s ease, filter 0.8s ease;
      z-index: 1001;
      pointer-events: none;
}

/* オーバーレイ（画面全体を暗くする） */
.area_cast .overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      background: rgba(0, 0, 0, 0.8);
      opacity: 0;
      transition: opacity 0.3s ease;
      z-index: 1000;
      pointer-events: none;
}

/* ---------- PC用 hover ---------- */
@media (hover: hover) and (pointer: fine) {
  .area_cast .list_yoko .image-hover-container:hover .photo .image2 {
    opacity: 1;
    filter: blur(0);
    pointer-events: none;
  }

  .area_cast .list_yoko .image-hover-container:hover .overlay {
    opacity: 1;
    pointer-events: none;
  }
}

    /* ---------- スマホ用 zoomed クラス ---------- */
    @media (hover: none) and (pointer: coarse) {
      .area_cast .list_yoko .image-hover-container.zoomed .photo .image2 {
        opacity: 1;
        filter: blur(0);
        pointer-events: auto;
      }

      .area_cast .list_yoko .image-hover-container.zoomed .overlay {
        opacity: 1;
        pointer-events: auto;
      }
    }
/***　プリンシバル　***/

.area_cast .list_p {
	margin: 0 auto;
	font-size: 26rem;
	line-height: 1.3;
}

.area_cast .list_p li:not(:last-of-type) {
	margin: 0 auto 2em;
}
.area_cast .list_p li:last-of-type {
	margin-bottom: 3em;
}

.area_cast .list_p .item_w {
	display: inline-block;
	margin: 0 0.5em;
}

.area_cast .list_p .photo img {
	display: block;	
	width: 100%;
}

.area_cast .list_p .yaku {
	display: block;
	font-size: 0.7em;
	color: #c25d2c;
}

.area_cast .list_p .name {
	display: block;
}
.area_cast .list_p .name .note {
	display: block;
	font-size: 0.5em;
}

@media screen and (max-width: 500px) {
	.area_cast .list_p{
		font-size: 22rem;
	}

}

@media screen and (max-width: 400px) {
	.area_cast .list_p{
		font-size: 20rem;
	}
	.area_cast .list_p .photo {
		width: 28vw;
	}
}

@media screen and (max-width: 330px) {
	.area_cast .list_p{
		font-size: 18rem;
	}
}


/****　ズームアップ　****/
.area_cast .list_p .image-hover-container {
	display: inline-block;
	position: relative;
	margin: 0 auto;
}
.area_cast .list_p .image-hover-container.item_w {
      display: inline-block;
      position: relative;
      margin: 1em;
}

.area_cast .list_p .photo {
	display: block;
	margin: 0 auto 0.2em;
}
.area_cast .list_p .photo .image1 {
	width: 27vw;
	max-width: 280px;
	object-fit: cover;
	display: block;
	margin: 0 auto;
}

.area_cast .list_p .photo .image2 {
      position: fixed;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: auto;
      height: auto;
      max-width: 90vw;
      max-height: 90vh;
      opacity: 0;
      filter: blur(50px);
      transition: opacity 0.8s ease, filter 0.8s ease;
      z-index: 1001;
      pointer-events: none;
}

/* オーバーレイ（画面全体を暗くする） */
.area_cast .overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      background: rgba(0, 0, 0, 0.8);
      opacity: 0;
      transition: opacity 0.3s ease;
      z-index: 1000;
      pointer-events: none;
}

/* ---------- PC用 hover ---------- */
@media (hover: hover) and (pointer: fine) {
  .area_cast .list_p .image-hover-container:hover .photo .image2 {
    opacity: 1;
    filter: blur(0);
    pointer-events: none;
  }

  .area_cast .list_p .image-hover-container:hover .overlay {
    opacity: 1;
    pointer-events: none;
  }
}

    /* ---------- スマホ用 zoomed クラス ---------- */
    @media (hover: none) and (pointer: coarse) {
      .area_cast .list_p .image-hover-container.zoomed .photo .image2 {
        opacity: 1;
        filter: blur(0);
        pointer-events: auto;
      }

      .area_cast .list_p .image-hover-container.zoomed .overlay {
        opacity: 1;
        pointer-events: auto;
      }
    }

/***　アンサンブル　***/

.area_cast .list_e {
	margin: 0 auto 2em;
	font-size: 20rem;
	line-height: 1.5;
}

.area_cast .list_e li {
	display: inline-block;
	width: 6em;
	margin: 0 0 0.5em;
}

.area_cast .list_e li.emp {
	height: 0;
	margin-bottom: 0;
	line-height: 0;
}

.area_cast .list_e li.emp2 {
	height: 0;
	margin-bottom: 0;
	line-height: 0;
}

.area_cast .list_e .note {
	margin: 1em 1em 0 0;
	font-size: 0.7em;
	text-align: right;
}

@media screen and (max-width: 540px) {
	.area_cast .list_e {
		padding: 0 2em;
	}
}

@media screen and (max-width: 500px) {
	.area_cast .list_e {
		font-size: 18rem;
	}

	.area_cast .list_e li.emp2 {
		display: none;
	}
}

@media screen and (max-width: 400px) {
	.area_cast .list_e {
		font-size: 16rem;
	}
}

@media screen and (max-width: 330px) {
	.area_cast .list_e {
		font-size: 15rem;
	}
}

@media screen and (max-width: 300px) {
	.area_cast .list_e li {
		display: block;
		width: inherit;
	}
	.area_cast .list_e li:not(:last-of-type) {
		margin-bottom: 0.5em;
	}
}

/***　スウィング　***/

.area_cast .list_s {
	margin: 2.5em auto;
	font-size: 20rem;
	line-height: 1.5;
}
.area_cast .list_s ul:not(:first-of-type) {
	margin-top: 2em;
}
.area_cast .list_s li {
	display: inline-block;
	margin: 0 0.5em 0.5em;
}

.area_cast .list_s .note {
	font-size: 0.7em;
}
.area_cast .list_s .res1 {
	display: none;
}
.area_cast .list_s .res2 {
	display: none;
}

@media screen and (max-width: 650px) {
	.area_cast .list_s .pk {
		display: inline;
	}
	.area_cast .list_s .res {
		display: inline;
	}
}

@media screen and (max-width: 540px) {
	.area_cast .list_s .pk {
		display: inline;
	}
	.area_cast .list_s .res2 {
		display: inline;
	}
}
@media screen and (max-width: 500px) {
	.area_cast .list_s {
		font-size: 18rem;
	}
}

@media screen and (max-width: 400px) {
	.area_cast .list_s {
		font-size: 16rem;
	}
}

@media screen and (max-width: 330px) {
	.area_cast .list_s {
		font-size: 15rem;
	}
}

@media screen and (max-width: 300px) {
	.area_cast .list_s .res {
		display: none;
	}
	.area_cast .list_s .res2 {
		display: none;
	}
	.area_cast .list_s li {
		display: block;
		width: inherit;
	}
	.area_cast .list_s li:not(:last-of-type) {
		margin-bottom: 0.5em;
	}
}


/**********************************************************************

　スタッフ

**********************************************************************/


.area_staff .inner{
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	display: block;
	width: 100%;
	margin: 2em auto 0;
	padding: 4em;
	outline: 10px double rgba(188,159,117,0.5);
	outline-offset: -20px;
	background: rgba(255,255,255,0.5);
    box-shadow: 0 0 50px rgba(64,43,34,0.3);
	color: #402b22;
}

.area_staff .inner{
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	display: block;
	width: 100%;
	margin: 2em auto;
}

.area_staff .list {
	line-height: 1.4;
}

.area_staff .list:not(:last-of-type) {
	margin-bottom: 2.5em;
}

.area_staff .list.l {
	font-size: 24rem;
	line-height: 1.8;
}
.area_staff .list.l .work {
	display: block;
	font-size: 0.8em;
}
.area_staff .list.l .work .note {
	display: inline-block;
}

.area_staff .list.m {
	font-size: 20rem;
}
.area_staff .list.s {
	font-size: 18rem;
}

.area_staff .list dt {
	color: #c25d2c;
	font-size: 0.8em;
}

.area_staff .list dd:not(:last-of-type) {
	margin-bottom: 1em;
}

.area_staff .list dd .ls {
	letter-spacing: -0.08em;
}

.area_staff .list .work {
	display: block;
	font-size: 0.9em;
}

.area_staff .list .btn_cmt {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	display: block;
	max-width: 10em;
	margin: 0.3em auto;
	padding: 0.2em 0.5em;
	border-radius: 1px;
	border: 1px solid #c25d2c;
	color: #c25d2c;
	text-decoration: none;
	font-size: 14rem;
	line-height: 1;
	font-family: 'Noto Sans JP', sans-serif;
}

@media screen and (max-width: 500px) {
	.area_staff .list.l {
		font-size: 24rem;
	}
}

@media screen and (max-width: 400px) {
	.area_staff .list.l{
		font-size: 22rem;
	}
}

@media screen and (max-width: 380px) {
	.area_staff .list.l {
		font-size: 20rem;
	}
	.area_staff .list .btn_cmt {
		font-size: 13rem;
	}
	.area_staff .list.m {
		font-size: 18rem;
	}
	.area_staff .list.s {
		font-size: 16rem;
	}
}



/**********************************************************************

　キャスト、スタッフ：モーダルウィンドウ

**********************************************************************/

.cast_cmt .modal-wrapper {
  z-index: 1001;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 60px 10px;
  text-align: center
}

.cast_cmt .modal-wrapper:not(:target) {
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s;
}

.cast_cmt .modal-wrapper:target {
  opacity: 1;
  visibility: visible;
  transition: opacity .4s, visibility .4s;
}

.cast_cmt .modal-wrapper::after {
  display: inline-block;
  height: 100%;
  margin-left: -.05em;
  vertical-align: middle;
  content: ""
}

.cast_cmt .modal-wrapper .modal-window {
	box-sizing: border-box;
	display: inline-block;
	z-index: 20;
	position: relative;
	max-width: 800px;
	margin: 0 auto 2em;
	padding: 2em 3em 3em;
	background-color: rgba(255,255,255,0.9);
	text-align: center;
	font-weight: 700;
}

.cast_cmt .modal-wrapper .modal-window .modal-content {
	max-height: 80vh;
	overflow-y: auto;
	padding: 0 2em;
}

.cast_cmt .modal-wrapper .modal-window .modal-content::-webkit-scrollbar {
    width: 10px;
}
.cast_cmt .modal-wrapper .modal-window .modal-content::-webkit-scrollbar-track {
	background: #c25d2c;
	
}
.cast_cmt .modal-wrapper .modal-window .modal-content::-webkit-scrollbar-thumb {
	background: rgba(153,143,133,0.9);
	
}

.cast_cmt .modal-overlay {
  z-index: 10;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, .5)
}

.cast_cmt .modal-wrapper .modal-close {
  z-index: 20;
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  color: #c25d2c !important;
  font-size: 30px;
  font-weight: 700;
  line-height: 60px;
  text-align: center;
  text-decoration: none;
  text-indent: 0
}

.cast_cmt .modal-wrapper .modal-close:hover {
  color: #c25d2c !important
}

@media screen and (max-width: 414px){

    .cast_cmt .modal-wrapper .modal-window {
	 padding: 2em 1.5em 1.5em;
    }

	.cast_cmt .modal-wrapper .modal-window .modal-content {
		padding: 0 0.5em;
	}
}


.cast_cmt .name {
    display: block;
	margin: 1em auto;	
	padding: 1em 0;
    font-size: 30rem;
    line-height: 1;
    letter-spacing: 0.2;
	text-shadow: 0 0 5px rgba(64,43,34,0.3);
	font-weight: 700;
}

.cast_cmt .name .yaku,
.cast_cmt .name .work{
	display: block;
	margin-bottom: 0.5em;
	font-size: 0.7em;
	color: #c25d2c;
}

.cast_cmt .name .ls {
    letter-spacing: 0.1em;
}

.cast_cmt .text {
	margin: 0 auto;
	text-align: left;
}

.cast_cmt .text dt {
	margin: 2em auto 0;
	font-size: 20rem;
	color: #c25d2c;
}

.cast_cmt .text dd {
    text-align: left;
	color: #fff;
	font-weight: 400;
	font-size: 18rem;
}

.cast_cmt .text p:not(last-of-type) {
	margin-bottom: 1em;

}

@media screen and (max-width: 600px){
	.cast_cmt .name {
		font-size: 24rem;
	}
}
@media screen and (max-width: 360px){
	.cast_cmt .name {
		font-size: 20rem;
	}
}



/**********************************************************************

　チケット

**********************************************************************/

.area_ticket{
	margin: 0 auto;
	max-width: 900px;
}


/****　速報　****/
.area_ticket .sokuho {}

.area_ticket .sokuho .list {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	display: block;
	width: 100%;
	margin: 2em auto 0;
	padding: 2em;
	outline: 10px double rgba(188,159,117,0.5);
	outline-offset: -20px;
	background: rgba(255,255,255,0.5);
    box-shadow: 0 0 50px rgba(64,43,34,0.3);
	color: #402b22;
	font-size: 30rem;
}

.area_ticket .sokuho .list dt {
	display: block;
	color: #c25d2c;
	font-family: 'Noto Serif JP', serif;
	font-feature-settings: "palt";
	font-weight: 500;
}

.area_ticket .sokuho .list dd {
}
.area_ticket .sokuho .list dd:not(:last-of-type) {
	margin-bottom: 0.5em;
	padding-bottom: 0.5em;
	border-bottom: 1px solid rgba(188,159,117,0.5);
}
.area_ticket .sokuho .list dd .area {
	display: inline-block;
	margin: 0 0.25em;

}

.area_ticket .sokuho .list dd .theater {
	display: inline-block;
	margin: 0 0.25em;
}

.area_ticket .sokuho .list dd.tour {
	font-size: 0.8em;
}


@media screen and (max-width: 500px) {

	.area_ticket .sokuho .list {
		font-size: 24rem;
	}
}

@media screen and (max-width: 370px) {

	.area_ticket .sokuho .list {
		font-size: 22rem;
	}
}

@media screen and (max-width: 330px) {

	.area_ticket .sokuho .list {
		font-size: 20rem;
	}
}

/****　本報　****/

.area_ticket .stage_info {
	margin: 2em auto 3em;
	padding: 1em 2em 0;
}

.area_ticket .stage_info .sch {
	max-width: 619px;
	width: 100%;
	height: auto;
	margin: 0 auto 1em;
}

.area_ticket .stage_info .sch img {
	width: 100%;
}

.area_ticket .stage_info .theater {
	max-width: 280px;
	width: 50%;
	margin: 0 auto 3em;
    font-weight: 400;
}

.area_ticket .stage_info .theater img {
	display: block;
	width: 100%;
}

.area_ticket .stage_info .hoshitori {
	max-width: 1100px;
	width: 100%;
	height: auto;
	margin: 0 auto;
}

.area_ticket .stage_info .hoshitori img {
	width: 100%;	
}

@media screen and (max-width: 500px){
	.area_ticket .stage_info {
		padding: 1em 0 0;
	}
}

.area_ticket .stage_info .list_price {
	margin: 2em auto 0;

}

.area_ticket .stage_info .list_price caption {
	margin-bottom: 0.3em;
	color: #402b22;
	font-size: 1.2em;
}

.area_ticket .stage_info .list_price table {
	table-layout: fixed;
	max-width: 900px;
	width: 100%;
	margin: 0 auto;
	background: rgba(255,255,255,0.5);
	border: 2px solid rgba(188,159,117,0.7);
	line-height: 1.5;
}

.area_ticket .stage_info .list_price th,
.area_ticket .stage_info .list_price td {
	padding: 0.5em;
	border: 1px solid rgba(188,159,117,0.7);
	line-height: 1.5;
}

.area_ticket .stage_info .list_price th {
	background: rgba(188,159,117,0.3);
	color: #402b22;
}

.area_ticket .stage_info .list_price td {
	height: 4em;
}

@media screen and (max-width: 400px){
	.area_ticket .stage_info .list_price td {
		font-size: 18rem;
	}
}

@media screen and (max-width: 330px){
	.area_ticket .stage_info .list_price {
		font-size: 0.9em;
	}
}

.area_ticket .stage_info > .caution {
	max-width: 900px;
	margin: 3em auto 0;
	padding: 0;
	text-align: left;
	font-family: 'Noto Sans JP', sans-serif;
}
.area_ticket .stage_info .caution li {
	margin-bottom: 0.5em;
	padding-left: 1em;
	text-indent: -1em;
	line-height: 1.5;
	font-size: 0.8em;
}

.area_ticket .stage_info .caution li a {
	color: #c25d2c;
}

.area_ticket .stage_info .caution li .tele {
	text-decoration: none;
	color: #402b22;
}

.area_ticket .stage_info .caution .caution2 {
	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;
	outline: 10px double rgba(188,159,117,0.5);
	outline-offset: -20px;
	background: rgba(255,255,255,0.5);
    box-shadow: 0 0 50px rgba(64,43,34,0.3);
	color: #402b22;
}

.area_ticket .way a {
	color: #402b22;
}

.area_ticket .way {

}

.area_ticket .way > dt {
	padding: 0.5em 1em;
	border-bottom: 2px solid rgba(188,159,117,0.5);
	color: #402b22;
	font-size: 26rem;
	line-height: 1.5;
}

.area_ticket .way > dd {
	padding: 1em;
	line-height: 1.5;
}
.area_ticket .way > dd .caution {
	margin: 2em auto 0;
    font-size: 0.8em;
	font-family: 'Noto Sans JP', sans-serif;
}

.area_ticket .way > dd .caution li {}

.area_ticket .way > dd .caution.left {
    text-align: left;
}

.area_ticket .way > dd .caution.left li {
    margin-bottom: 0.5em;
    padding-left: 1em;
    text-indent: -1em;
    line-height: 1.5;
}

.area_ticket .way > dd .caution.cen {
    text-align: center;
}

.area_ticket .way > dd .caution.cen li {}

.area_ticket .way .start {
	display: inline-block;
	margin: 1em auto;
	line-height: 1.5;
	font-size: 20rem;
	color: #c25d2c;
	font-weight: 500;
}

.area_ticket .way .start::before {
	content: "≪";
	margin-right: 0.2em;
}

.area_ticket .way .start::after {
	content: "≫";
	margin-left: 0.2em;
}


@media (max-width: 480px) {
	.area_ticket .box_area {
		padding: 1.5em;
	}

	.area_ticket .way > dt {
		font-size: 22rem;
	}
}

@media screen and (max-width: 414px){

	.area_ticket .way > dt{
		font-size: 20rem;
		font-feature-settings: "palt";
	}
	.area_ticket .way > dd{
		padding: 1em 1em 2em;
	}
    .area_ticket .start {
        font-size: 18rem;
    }
}

@media screen and (max-width: 374px){

}

.area_ticket .way .toho .btn {
	position: relative;
	display: block;
	max-width: 400px;
	margin: 0.5em auto 0;
	padding: 0.5em;
	background: #c25d2c;
	color: #fff;
	text-decoration: none;
	line-height: 1.5;
	font-size: 28rem;
	transition: 0.5s;
}

.area_ticket .way .toho .btn:hover {
	background: #402b22;
}

.area_ticket .way .toho .btn .icon{
	position: absolute;
	top: calc(50% - 0.7em);
	right: 1em;
}

.area_ticket .way .toho .senkou .list {
	table-layout: fixed;
	width: 100%;
	margin: 2em auto 1em;
	background: rgba(255,255,255,0.5);
	border: 2px solid rgba(188,159,117,0.7);
	line-height: 1.5;
}

.area_ticket .way .toho .senkou .list th,
.area_ticket .way .toho .senkou .list td {
	padding: 0.5em 1em;
	border: 1px solid rgba(188,159,117,0.7);
}

.area_ticket .way .toho .senkou .list th {
	width: 12em;
	background: rgba(188,159,117,0.3);
	color: #402b22;
}

.area_ticket .way .toho .senkou .list td {
	height: 4em;
	text-align: left;
}

@media screen and (max-width: 480px){
	.area_ticket .way .toho .senkou .list th,
	.area_ticket .way .toho .senkou .list td {
		padding: 0.5em 0.8em;
	}
	.area_ticket .way .toho .senkou .list th {
		width: 8em;
	}
}

@media screen and (max-width: 420px){
	.area_ticket .way .toho .senkou .list {
		border: 1px solid rgba(188,159,117,0.7);
	}
	.area_ticket .way .toho .senkou .list th,
	.area_ticket .way .toho .senkou .list td {
		display: block;
		width: 100%;
		text-align: center;
	}

}

.area_ticket .way .toho .senkou .caution {
	margin-top: 0.8em;
	padding: 0 0.8em;
}

/***　グループ観劇　***/
.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(131,105,33,0.1);
	border: 1px solid #836921;
	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 .btn {
	position: relative;
	display: block;
	max-width: 400px;
	margin: 0 auto 1em;
	padding: 0.5em;
	background: #c25d2c;
	color: #fff;
	text-decoration: none;
	line-height: 1.5;
	transition: 0.5s;
}

.area_ticket .way .group .btn:hover {
	background: #402b22;
}

.area_ticket .way .group .btn .icon{
	position: absolute;
	top: calc(50% - 0.7em);
	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 .tele .tel {
	display: block;
	font-size: 24rem;
	line-height: 1.5;
}

.area_ticket .way .tele .tel a{
	color: #402b22;
	text-decoration: none;
}

.area_ticket .way .tele .tel .icon {
	margin-right: 0.2em;
	font-size: 0.9em;
	color: #c25d2c;
}

.area_ticket .way .tele .tel .note {
	display: inline-block;
	font-size: 0.8em;
}

/*****　プレイガイド　*****/
.area_ticket .way .playguide {
    margin: 1em auto 0;
}

/*.area_ticket .way .playguide .btn {
	position: relative;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	display: block;
	max-width: 400px;
	margin: 1em auto 0;
	padding: 0.5em 2em;
	box-shadow: 2px 2px 5px rgba(0,0,0,0.2);
	background: #f1dfc3;
	color: #185472;
	font-weight: 700;
	font-size: 20rem;
	text-decoration: none;
	line-height: 1.5;
	text-shadow: none;
	transition: 0.5s;
}

.area_ticket .way .playguide .btn:hover {
	background: rgba(255,255,255,0.8);
}

.area_ticket .way .playguide .btn .icon{
	position: absolute;
	top: calc(50% - 0.5em);
	right: 1em;
}*/

.area_ticket .way .playguide .btn {
	position: relative;
	display: block;
	max-width: 400px;
	margin: 0.5em auto 0;
	padding: 0.5em;
	background: #c25d2c;
	color: #fff;
	text-decoration: none;
	line-height: 1.5;
	transition: 0.5s;
}

.area_ticket .way .playguide .btn:hover {
	background: #402b22;
}

.area_ticket .way .playguide .btn .icon{
	position: absolute;
	top: calc(50% - 0.7em);
	right: 1em;
}


/*****　リセール　*****/

.area_ticket .way .resale p {
	padding: 0 1em;
    text-align: left;
	font-size: 16rem;
}

.area_ticket .way .resale .list {
    margin-top: 2em;
}

.area_ticket .way .resale .list li {
    margin: 1em;
    display: inline-block;
}

.area_ticket .way .resale .list li img {
	display: block;
}

.area_ticket .way .resale .list .about {
	display: block;
	font-weight: 500;
}

.area_ticket .way .resale .list a {
    text-decoration: none;
}



/***　会場案内　***/

.area_ticket .way > dd.kaijyou {
	text-align: center;
}

.area_ticket .kaijyou .logo {
	max-width: 300px;
	width: 80%;
	margin: 1em auto;
    font-weight: 400;
}

.area_ticket .kaijyou .logo img {
	width: 100%;
}
.area_ticket .kaijyou .access {
	display: inline-block;
	margin: 1em auto 0;
	text-align: left;
}

.area_ticket .kaijyou .access li::before {
	content: "・";
	color: #c25d2c;
}

.area_ticket .kaijyou .list_btn {
    margin: 2em auto 0;
}

.area_ticket .kaijyou .list_btn .btn {
	position: relative;
	display: inline-block;
	max-width: 240px;
    width: 100%;
	margin: 0 0.5em 0.5em;
	padding: 0.5em;
	background: #c25d2c;
	color: #fff;
	text-decoration: none;
	line-height: 1.5;
	transition: 0.5s;
}

.area_ticket .kaijyou .list_btn .btn:hover {
	background: #402b22;
}

.area_ticket .kaijyou .list_btn .btn .icon{
	position: absolute;
	top: calc(50% - 0.7em);
	right: 1em;
}

@media screen and (max-width: 480px){

	.area_ticket .kaijyou .access {
		font-size: 15rem;
	}
	
	.area_ticket .kaijyou .list_btn .btn {
		padding: 0.5em 2em 0.5em 1.5em;
		font-size: 18rem;
	}
}

@media screen and (max-width: 360px){
	.area_ticket .kaijyou .list_btn {
		display: block;
		max-width: inherit;
	}
	.area_ticket .kaijyou .list_btn .btn {
		display: block;
		margin: 0 auto;
		padding: 0.5em 1em;
		font-weight: 900;
	}
	.area_ticket .kaijyou .list_btn .btn:not(:last-of-type) {
		margin-bottom: 0.5em;
	}
	.area_ticket .kaijyou .list_btn .btn .in::before {
		content: none;
	}
}


/****************************************
　お問合せ
****************************************/

.area_ticket .way .contact{
    text-align: center;
    line-height: 1.5;
}
.area_ticket .way .contact .office {
    display: inline-block;
    margin-right: 0.2em;
}

.area_ticket .way .contact .tel {
    display: inline-block;
    margin: 0.5em auto 0;
}

.area_ticket .way .contact .tel a{
    color: #402b22;
    text-decoration: none;
}

.area_ticket .way .contact .tel .icon {
    margin-right: 0.2em;
    font-size: 0.9em;
	color: #c25d2c;
}

@media screen and (max-width: 340px){
    .area_ticket .way .contact .caution {
        text-align: left;
        padding-left: 1em;
        text-indent: -1em;
    }
}




/**********************************************************************

　ツアー

**********************************************************************/

.area_tour {
	margin: 0 auto;
	max-width: 900px;
}

.area_tour .sokuho {}

.area_tour .sokuho .list {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	display: block;
	width: 100%;
	margin: 2em auto 0;
	padding: 2em;
	outline: 10px double rgba(188,159,117,0.5);
	outline-offset: -20px;
	background: rgba(255,255,255,0.5);
    box-shadow: 0 0 50px rgba(64,43,34,0.3);
	color: #402b22;
	font-size: 30rem;
}

.area_tour .sokuho .list dt {
	display: block;
	color: #c25d2c;
	font-family: 'Noto Serif JP', serif;
	font-feature-settings: "palt";
	font-weight: 500;
}

.area_tour .sokuho .list dd {
}
.area_tour .sokuho .list dd:not(:last-of-type) {
	margin-bottom: 0.5em;
	padding-bottom: 0.5em;
	border-bottom: 1px solid rgba(188,159,117,0.5);
}
.area_tour .sokuho .list dd .area {
	display: inline-block;
	margin: 0 0.25em;

}

.area_tour .sokuho .list dd .theater {
	display: inline-block;
	margin: 0 0.25em;
}

.area_tour .sokuho .list dd.tour {
	font-size: 0.8em;
}


@media screen and (max-width: 500px) {

	.area_tour .sokuho .list {
		font-size: 24rem;
	}
}

@media screen and (max-width: 370px) {

	.area_tour .sokuho .list {
		font-size: 22rem;
	}
}

@media screen and (max-width: 330px) {

	.area_tour .sokuho .list {
		font-size: 20rem;
	}
}


/**********************************************************************

　ツアー

**********************************************************************/

.area_tour {
	max-width: 900px;
	margin: 2em auto;
}

.area_tour .list {
	margin: 0 auto;
}

.area_tour .list .list dt {
	font-size: 30rem;
	color: #e83428;
	font-weight: 700;
	text-shadow: 2px 2px 2px #140402;
}
.area_tour .list .list dd {
	margin: 0 auto 3em;
	padding: 2em 1em;
	background: rgba(255,255,255,0.1);
	line-height: 1.5;
}

/*.area_tour .list {
	width: 100%;
	margin: 2em auto 0;
	padding: 1em;
	background: #fff104;
	color: #02243d;
}

.area_tour .list a {
	color: #02243d;
}

.area_tour .list > dt{
	padding: 0.5em 1em;
	border-bottom: 1px solid #02243d;
    font-size: 24rem;
    text-align: center;
	line-height: 1.5;
	color: #02243d;
	font-weight: 900;
}

.area_tour .list > dd{
	padding: 1em 2em;
	border-top: none;	
	text-align: center;
}
*/

.area_tour .list {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	display: block;
	width: 100%;
	margin: 2em auto 0;
	padding: 2em;
	outline: 10px double rgba(188,159,117,0.5);
	outline-offset: -20px;
	background: rgba(255,255,255,0.5);
    box-shadow: 0 0 50px rgba(64,43,34,0.3);
	color: #402b22;
}

.area_tour .list a {
	color: #402b22;
}

.area_tour .list > dt {
	padding: 0.5em 1em;
	border-bottom: 2px solid rgba(188,159,117,0.5);
	color: #402b22;
	font-size: 26rem;
	line-height: 1.5;
}

.area_tour .list > dd {
	padding: 1em;
	line-height: 1.5;
}

.area_tour .list > dd .caution {
	margin: 2em auto 0;
    font-size: 0.8em;
	font-family: 'Noto Sans JP', sans-serif;
}
.area_tour .list .day {
	display: block;
	margin: 0 0.5em;
	font-size: 30rem;
	font-weight: 700;
}
.area_tour .list .day .s {
	display: inline-block;
	margin: 0 0.1em;
	font-size: 0.7em;
}
.area_tour .list .theater {
	display: block;
	margin: 0.5em auto;
	font-size: 24rem;
	font-weight: 700;
	line-height: 1.5;
	transition: 0.5s;
}
.area_tour .list .theater a {
	transition: 0.5s;
}
.area_tour .list .theater a:hover {
	color: #c25d2c;
}

.area_tour .list .theater .icon {
	margin-left: 0.3em;
	color: #c25d2c;
	vertical-align: super;
	font-size: 0.8em;
}

.area_tour .list .hoshitori {
	display: block;
	max-width: 440px;
	width: 100%;
	margin: 0 auto;
}
.area_tour .list .hoshitori img {
	display: block;
	width: 100%;
}

@media screen and (max-width: 500px){
	.area_tour .list .day {
		font-size: 28rem;
	}
	.area_tour .list .theater {
		font-size: 20rem;
	}
}
@media screen and (max-width: 400px){
	.area_tour .list > dd{
		padding: 1em;
	}
	.area_tour .list .day {
		font-size: 22rem;
	}
	
	.area_tour .list .theater {
		font-size: 20rem;
	}
}

@media screen and (max-width: 360px){

	.area_tour .list .day {
		font-size: 20rem;
		font-weight: 500;
	}

	.area_tour .list .theater {
		font-size: 18rem;
		font-weight: 500;
	}
}

.area_tour .list .contact {
	width: 100%;
	margin: 1em auto 0;
	padding: 0.5em 1em;
	border: 1px solid #02243d;
	background: #fff;
	line-height: 1.5;
}
.area_tour .list .contact .lbl {
	display: inline-block;
}
.area_tour .list .contact .lbl::after {
	content: "：";
}
.area_tour .list .contact .office,
.area_tour .list .contact .tel,
.area_tour .list .contact .time {
	display: inline-block;
}

.area_tour .list .contact .tel {
	margin: 0 0.5em;
}
.area_tour .list .contact .tel a{
	text-decoration: none;
	color: #0780db;
}
.area_tour .list .contact .url {
	display: block;
}

.area_tour .list .contact .url a {
	color: #0780db;
	text-decoration: none;
	transition: 0.5s;
}

.area_tour .list .contact .url a:hover {
	text-decoration: underline;
}

@media screen and (max-width: 560px){
	.area_tour .list .contact .lbl {
		display: block;
	}
	.area_tour .list .contact .lbl::before {
		content: "［";
	}
	.area_tour .list .contact .lbl::after {
		content: "］";
	}
}

@media screen and (max-width: 400px){
	.area_tour .list .contact td {
		padding: 0.5em;
		line-height: 1.5em;
	}
	.area_tour .list .contact .url .lbl {
		display: block;
		margin-top: 0.8em;
		line-height: 1;
	}
}

.area_tour .foot_note {
	margin: 1em 0 0 0;
	text-align: right;
}

/***************************************************<strong></strong>

　ムービー

**************************************************/

.area_movie {}

.area_movie .list {
    max-width: 800px;
    display: flex;
    flex-wrap: wrap; 
    margin: 0 auto 40px;
    padding: 10px;
}

.area_movie .list.center {
    justify-content: center;
}

.area_movie .list .item{
    width: 100%;
    justify-content: center;
    margin-bottom: 4em;
    margin: 0 10px 4em;
    vertical-align: bottom;
	margin-top: auto;
}

.area_movie .list .name {
    margin-bottom: 0.5em;
    padding: 0.3em 1em;
    font-size: 24rem;
    line-height: 1.3;
	color: #402b22;
}

.area_movie .list .name .pk {
	display: inline-block;
	margin: 0 0.25em;
}

.area_movie .list .youtube {
	position: relative;
	height: 0;
	margin-bottom: 20px;
	padding-bottom: 56.25%;
	overflow: hidden;
}

.area_movie .list .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_movie .list {
        display: block;
        margin: 0 auto;
        text-align: center;
    }
    .area_movie .list .item{
        margin: 0 auto 2em;
    }
	.area_movie .list .name {
		font-size: 20rem;
	}
}

@media screen and (max-width: 414px){
    .area_movie .list .name {
        font-size: 16rem;
    }
    .area_movie .list .list {
        margin-bottom: 10px;
    } 
}
@media screen and (max-width: 340px){

}

