@charset "utf-8";
/* CSS Document */


/***フォント
font-family: 'Noto Sans JP', sans-serif; wght@400;500;700;900
font-family: 'Noto Serif JP', serif; :wght@400,600;700;900

font-family: 'Averia Serif Libre', cursive;　@400;700 英字
***/

/***色
黒　#281e1c; rgba(40,30,28,1);
赤　#964d54;
明るい赤　#e75c69;
***/

/******フェードイン*****/

.fadein {
    animation-name: fadein;
    animation-duration: 3s;
}

@keyframes fadein {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}


/********リンク********/
a {
    color: #c69c60;
    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: #281e1c;
	font-family: 'Noto serif JP', sans-serif;
	font-weight: 500;
	
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	background: #d0c8c5;
}

html,body { /*背景色用*/
/*  height: 100vh*/
}

body:after {
    z-index: -1;
    position: fixed;
    top: 0; left: 0;
    width: 100vw; /* 画面幅いっぱいに */
    height: 100vh; /* 画面高さいっぱいに */
    content: "";
    background-image: url("../images/bg_pc.jpg");
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: cover;  
    background-color: #d0c8c5;
}

body.index:after {
    z-index: -1;
    position: fixed;
    top: 0; left: 0;
    width: 100vw; /* 画面幅いっぱいに */
    height: 100vh; /* 画面高さいっぱいに */
    content: "";
    background-image: url("../images/bg_pc_index.jpg");
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;  
    background-color: #d0c8c5;
}

@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;
}

/****　スタートエフェクト　****/
/*.fade-sequence {
  background: url("../images/bg_pc_index.jpg") top center/cover no-repeat;
  position: relative;
  width: 100vw;
  height: 100vh;
  opacity: 1;
  animation:
    sequence 5s ease-out forwards;
}

.fade-sequence .logo {
  position: absolute;
  top:50%; left:50%;
  transform: translate(-50%, -50%);
  max-width: 60vw;
  opacity: 0;
  animation: logoFade 5s ease-out forwards;
}

.index .logo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  max-width: 60vw;
}

.index .logo img {
    display: block;
    width: 100%;
}

@keyframes sequence {
  0%   { opacity:1; }
  70%  { opacity:1; }
  100% { opacity:0; }
}

@keyframes logoFade {
  0%, 20%   { opacity:0; }
  30%, 70%  { opacity:1; }
  100%      { opacity:0; }
}

.hp-content {
  opacity: 0;
  display: none;
}*/

/****************************************

　ナビ

*****************************************/
.openbtn {
  display: none;
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 999;
  background: #281e1c;
  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: #ccbdb0;
  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; }

.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 {
  animation-name: fadeDownAnime;
  animation-duration: .5s;
  animation-fill-mode: forwards;
  opacity: 0;
  display: block;
}
@keyframes fadeDownAnime {
  from { opacity: 0; transform: translateY(-100px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ヘッダー共通 */
#header {
	position: relative;
	z-index: 1;
  box-sizing: border-box;
  min-height: 70px;
  width: 100%;
  padding: 0.5em 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ナビ初期は非表示 */
#g-navi {
    display: none;
    flex-direction: column;
    font-family: sans-serif;
    line-height: 1;
}
#g-navi ul {
  margin: 0 1em;
  padding: 0;
}
#g-navi ul li {
  display: inline-block;
  margin: 0 0.5em;
  padding: 5px 0;
  font-size: 26rem;
}

#g-navi ul .res {
	display: none;
}

#g-navi ul li a {
  display: inline-block;
  text-decoration: none;
  color: #fff;
}

/* Edgeで文字が透明になるのを防ぐために明示的に指定 */
#g-navi ul li a span {
  color: inherit;
  opacity: 1;
  visibility: visible;
}

#g-navi ul li .en {
	display: block;
	font-family: 'Averia Serif Libre', cursive;
	font-weight: 400;
	color: #ccbdb0;
}
#g-navi ul li .en .amp {
  margin: 0 0.2em;
  font-size: 0.8em;
}
#g-navi ul li .jp {
  display: block;
	display: block;
    font-size: 0.5em;
    line-height: 1;
	font-family: 'Noto Serif JP', serif;
	font-weight: 400;
    color: #fff;
}

@media screen and (max-width: 1200px) {
	#g-navi ul li {
	  font-size: 22rem;
	}
/*	#header {
	  min-height: 140px;
	}
	#g-navi ul .res {
		display: inline;
	}*/

}

/****************************************
　画面サイズによる表示切り替え
*****************************************/

/* PCナビ表示 */
.pc-nav {
  display: flex !important;
  flex-direction: row;
}

/* スマホ展開時のナビ */
#header.panelactive {
  min-height: inherit;
}

#header.panelactive #g-navi {
  display: flex !important;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
	background-color: rgba(40,30,28,1); 
	box-shadow: 0 0 20px rgba(40,30,28,0.5);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 999;
}
#header.panelactive #g-navi ul li {
  display: block;
  margin: 0 auto 0.5em;
}

@media screen and (max-height: 500px) {
    #header.panelactive #g-navi ul li {
        display: inline-block;
        margin: 0 0.8em;
        font-size: 24rem;
    }
}

/* PC用表示制御 */
@media screen and (min-width: 1020px) {
  .openbtn { display: none; }
  #header {
	background-color: rgba(40,30,28,1); 
	box-shadow: 0 0 20px rgba(40,30,28,0.5);
	border-bottom: 2px solid #4e3720;
  }
  #g-navi {
    display: flex !important;
  }
}

/* スマホ用表示制御 */
@media screen and (max-width: 1019px) {
  .openbtn { display: block; }
  #header {
    background: none;
    border-bottom: none;
  }
}
/****************************************

　フッター

*****************************************/

/****　ページトップへ戻る　****/

#pagetop{
    position: fixed;
    right: 15px;
    bottom: 30px;
    line-height: 0;
	z-index: 1000;

}

#pagetop a {
	text-decoration: none;
	color: #964d54;
}

#pagetop a::after {
	font-family: "Font Awesome 6 Free";	
	content: "\f106";
	font-weight: 900;
	font-size: 4em;
}


footer{
	width: 100%;
	margin: 10em auto 0;
    padding: 0;
	color: #281e1c;
	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 {
	position: relative;
    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: #281e1c;
	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;
	max-width: 1000px;
}

.sec:not(:first-of-type) {
	padding: 3em 0;
}

@media screen and (max-width: 500px){
}

/****************************************

　見出し

*****************************************/

.heading_page {
    position: relative;
    margin: 1em auto 0.5em;
    font-size: 60rem;
	text-shadow: 5px 5px 5px rgba(40,30,28,0.2);
	line-height: 1;
}

.heading_page .en {
	color: #281e1c;
/*	background-image: url(../images/bg_heading_page.jpg);
	-webkit-background-clip: text;
	color: transparent;*/
	font-family: 'Averia Serif Libre', cursive;
	font-weight: 400;
}

.heading_page .jp {
	display: block;
	margin: 0.2em auto 0;
	font-family: 'Noto Serif JP', serif;
	font-weight: 400;
	font-size: 0.3em;
    color: #281e1c;
}

@media screen and (max-width: 600px){

	.heading_page {
		font-size: 50rem;
	}
   
}

@media screen and (max-width: 460px){

	.heading_page {
		font-size: 40rem;
	}
   
}


/****************************************

　トップページ

*****************************************/

/****************************************
　メインビジュアル（速報）
*****************************************/
.index main {
	padding: 0;
}

.index .sec {
	margin: 2em auto;
    padding: 0;
}

/***　メインビジュアル　***/

.index .area_visual {
    margin: 0.5em auto 0;
}

.index .area_visual .area_info {
    margin: 1.5em auto;
}

.index .area_visual .area_info .btn {
    display: block;
    max-width: 600px;
    margin: 0 auto;
    padding: 0.3em 0;
    background: #fff;
    border: 1px solid #000;
    text-decoration: none;
    color: #000;
    font-weight: 500;
    font-size: 1.2em;
}

.index .area_visual .area_info .btn2 {
    display: inline-block;
    width: 100%;
    max-width: 400px;
    margin: 0 0.25em 0.5em;
    padding: 0.3em 0;
    background: #fff;
    border: 1px solid #000;
    text-decoration: none;
    color: #000;
    font-weight: 500;
    font-size: 1.2em;
}

/*.index .area_visual .visual .item {
    display: block;
    max-width: 900px;
    margin: 0 auto;
}

.index .area_visual .visual .item img {
    display: block;
    width: 100%;
}*/

@media screen and (max-width: 920px){
    .index .area_visual .area_info .btn2 {
        max-width: 300px;
        font-size: 1.1em;
    }

    .index .area_visual {
        width: 95%;
    }
}

@media screen and (max-width: 650px){
    .index .area_visual .area_info .btn2 {
        display: block;
        margin: 0 auto 0.5em;
    }
}

@media screen and (max-width: 300px){
	.heading_sec {
		font-size: 24rem;
	}
}


/**********************************************************************
　メインビジュアル（本ビジュアル）
**********************************************************************/
.index .area_visual {
    margin: 0 auto;
}
.index .area_visual .visual.tate {
    max-width: 900px;
    margin: 0 auto;

}
.index .area_visual .visual.tate img {
    display: block;
    width: 100%;
	box-shadow: 0 0 30px rgba(40,30,28,0.5);
}

.index .area_visual .visual.yoko {
	position: relative;
	display: none;
    width: 100%;
    height: calc(100vh - 60px); 
    margin: -2.5vh auto 0;
}
.index .area_visual .visual.yoko img {
    width: 100%;
    height: auto;
    /* 縦横比を保って枠内に収める設定 */
    object-fit: contain; 
}

@media (orientation: landscape) {
	.index .area_visual .visual.tate {
		display: none;
	}
	.index .area_visual .visual.yoko {
		display: block;
	}
}

@media screen and (max-width: 1019px) {
	.index .area_visual .visual.yoko {
		display: none;
	}
	.index .area_visual .visual.tate {
		display: block;
	}
}

/*@media screen and (max-width: 900px) {
	.index .area_visual .visual.yoko {
		width: 100%;
		height: inherit;
	}
	.index .area_visual .visual.yoko img {
		width: 100%;
		height: auto;

	}
}*/

.index .area_visual .billing {
	max-width: 380px;
	width: 100%;
	margin: 10em auto 2em;
}

@media (max-width: 900px) {

	.index .area_visual .billing {
		width: 60%;
	}
}
@media (max-width: 600px) {
/*
	.index .area_visual .billing {
		margin: 0.5em auto;
	}*/
}


/*******************************************

　ニュース

********************************************/
.area_news {
	max-width: 900px;
	margin: 0 auto 2em;
}

.area_news .list {
	margin-bottom: 0.5em;
	font-family: 'Noto serif JP', sans-serif;
	font-weight: 500;
	font-size: 18rem;
	text-align: left;
}

.area_news .list dd {
    padding: 0 0 0.5em;
    line-height: 1.5;
	border-bottom: 1px solid rgba(153,143,133,0.9);
}

/*.area_news .list li:not(:last-child) {
	border-bottom: 1px solid rgba(153,143,133,0.9);
}
*/
.area_news .list a {
	color: #964d54;
	position: relative;
    transition: 1s;
}

.area_news .list a:hover {
	color: #964d54;
}

.area_news .list .day {
    display: block;
    color: #964d54;
}

.area_news .list .text {
    display: block;
}

@media screen and (max-width: 900px){
    .area_news .list {
        font-size: 16rem;
    }
}

@media screen and (max-width: 768px){
    
    .area_news .list .day {
        display: block;
        margin-right: 0;

    }

}

@media screen and (max-width: 375px){
	.area_news .list {
		font-size: 18rem;
	}

}


/*******************************************

	イントロページ

********************************************/

.area_intro {
	margin-bottom: 10em;
}

.area_intro .box {
	margin: 0 auto 2em;
	padding: 3em 4em 3em;
	background-color: #eae6e3;
	outline: 2px solid rgba(153,143,133,0.9);
	text-align: center;
	font-family: 'Noto serif JP', sans-serif;
	font-weight: 500;

}

.area_intro .box .point{
	display: inline-block;
	font-size: 24rem;
	font-weight: 900;
}

.area_intro .box .bold{
	display: inline-block;
	font-weight: 900;
}
.area_intro .box .catch {
	text-align: left;
}

.area_intro .box .catch p{
	margin-bottom: 1.5em;
}

.area_intro .box .catch p:last-child {
	margin-bottom: 0;
}

.area_intro .box .catch .note {
	color: #964d54;
	font-weight: bold;
}

.area_intro .box .cast {
	margin-bottom: 1.5em;
	text-align: center;
}

.area_intro .box .text {
	text-align: left;
	font-size: 18rem;
}

.area_intro .box .text:not(:last-of-type) {
	margin-bottom: 1em;
}

.area_intro .box .note_yaku {
	padding: 0 1em;
	text-align: right;
	font-size: 0.9em;
}

.area_intro .box .mark {
	color: #964d54;
}


@media (max-width: 630px) {
	.area_intro .box {
		padding: 3em 3em 3em;
	}
}

@media (max-width: 560px) {
	.area_intro .box .catch .note {
		line-height: 1.5;
	}
	.area_intro .box .catch .note .pk {
		display: block;
	}
	.area_intro .box .catch .res {
		display: none;
	}
}

@media (max-width: 480px) {
	.area_intro .box .catch p.lead {
		text-align: left;
	}
	.area_intro .box .catch .pk {
		display: inline;
	}
}

@media (max-width: 420px) {
	.area_intro .box {
		padding: 2em 2em 2em;
	}
}

@media (max-width: 345px) {
	.area_intro .box .catch p {
		text-align: left;
	}
	.area_intro .box .catch .note .pk {
		display: inline;
	}
	.area_intro .box .catch .res {
		display: inline;
	}
}


/*******************************************

	ストーリーページ

********************************************/

.area_story {
	margin-bottom: 10em;
}

.area_story .box {
	margin: 0 auto 2em;
	padding: 3em 4em 3em;
	background-color: #eae6e3;
	outline: 2px solid rgba(153,143,133,0.9);
	text-align: center;
	font-family: 'Noto serif JP', sans-serif;
	font-weight: 500;

}

.area_story .box .text {
	text-align: left;
	font-size: 18rem;
}

.area_story .box .text .point {
	color: #964d54;
	font-weight: 900;
}

.area_story .box .text:not(:last-of-type) {
	margin-bottom: 1em;
}

@media (max-width: 630px) {
	.area_story .box {
		padding: 3em 3em 3em;
	}
}

@media (max-width: 420px) {
	.area_story .box {
		padding: 2em 2em 2em;
	}
}

.area_story .box .diagram {
	margin: 2em auto 0;
}

.area_story .box .diagram .pict {
	max-width: 900px;
	margin: 0 auto;
	box-shadow: 0 0 10px rgba(40,30,28,0.2);
}

.area_story .box .diagram .pict img {
	display: block;
	width: 100%;
}

.area_story .box .diagram .btn {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	display: block;
	max-width: 300px;
	margin: 0.5em auto 0;
	padding: 0.5em;
	background-color: #964d54;
	border-radius: 3px;
	color: #fff;
	line-height: 1;
	font-size: 20rem;
	text-align: center;
	text-decoration: none;
}

.area_story .box .diagram .btn .icon {
	margin-left: 0.3em;
}


@media (max-width: 420px) {
	.area_story .box .diagram .btn {
		font-size: 18rem;
	}
}


/*******************************************

	キャストページ

********************************************/

.area_cast {
	margin-bottom: 10em;
}

.area_cast .heading_page {
	margin-bottom: 1.5em;
}

.area_cast .heading_page .note_popup {
	display: block;
	margin: 2em auto 0;
	font-family: 'Noto Serif JP', serif;
	font-weight: 500;
	font-size: 15rem;
	line-height: 1.3;
}

.area_cast .list_p {
	margin: 0 auto 4em;
}

.area_cast .list_p li {
	display: inline-block;
	margin: 0 20px 1em;
	width: 9em;
	vertical-align: top;
	font-size: 30rem;
}

.area_cast .list_p .photo {
	display: block;
	max-width: 240px;
	width: 100%;
	margin: 0 auto;
}

.area_cast .list_p .photo img {
	display: block;
	width: 100%;
	margin: 0 auto;
	box-shadow: 3px 3px 20px rgba(26,5,2,0.3);
}


.area_cast .list_p .yaku {
	display: block;
	margin: 1em auto 0;
	font-size: 0.6em;
	color: #964d54;
	font-family: 'Noto Serif JP', serif;
	font-weight: 700;
	line-height: 1;
	letter-spacing: -0.05em;
}

.area_cast .list_p .name {
    display: block;
	margin: 0.3em auto 0.5em;
	font-family: 'Noto Serif JP', serif;
    font-weight: 700;
/*	font-size: 30rem;*/
	line-height: 1;
	color: #1a0502;
}


.area_cast .list_p .btn {
	display: block;
	width: 7em;
	margin: 0 auto;
	padding: 0.2em 0 0.3em;
	background: #964d54;
	color: #fff;
	font-family: 'Averia Serif Libre', cursive;
	text-decoration: none;
	font-size: 15rem;
	line-height: 1;
	transition: 0.5s;
}

@media screen and (max-width: 1200px){

	.area_cast .list_p li {
		width: auto;
		margin: 0 10px 3em;
		font-size: 28rem;
	}

}

@media screen and (max-width: 860px){
	.area_cast .list_p li {
		font-size: 24rem;
	}
	.area_cast .list_p .photo {
		max-width: 180px;
	}
}

@media screen and (max-width: 680px){
	.area_cast .list_p li {
		margin: 0 5px 2em;
	}
}

@media screen and (max-width: 620px){
	.area_cast .list_p li {
		font-size: 22rem;
	}
	.area_cast .list_p .photo {
		max-width: 140px;
	}
}

@media screen and (max-width: 510px){
	.area_cast .list_p li {
		display: block;
	}
	.area_cast .list_p .photo {
		max-width: 180px;
	}
}

@media print{
	.area_cast .list_p li {
		margin: 0 1em 1em;
		width: auto;
		font-size: 24rem;
	}
}

.area_cast .list_p2 {
	margin: 0 auto;
}
.area_cast .list_p2:last-of-type {
	margin-bottom: 5em;
}
.area_cast .list_p2 .item {
	display: block;
	margin: 0 auto 2em;
	vertical-align: top;
	font-size: 26rem;
}

.area_cast .list_p2 .item.w_cast dd {
	display: inline-block;
	margin: 0 0.5em;
	vertical-align: top;
}

.area_cast .list_p2 .yaku {
	display: block;
	margin: 1em auto 0.8em;
	font-size: 0.7em;
	color: #964d54;
	font-family: 'Noto Serif JP', serif;
	font-weight: 700;
	line-height: 1;
}

.area_cast .list_p2 .photo {
	display: block;
	max-width: 200px;
	width: 100%;
	margin: 0 auto;
}

.area_cast .list_p2 .photo img {
	display: block;
	width: 100%;
	margin: 0 auto;
	box-shadow: 3px 3px 20px rgba(26,5,2,0.3);
}

.area_cast .list_p2 .name {
    display: block;
	margin: 0.3em auto 0.5em;
	font-family: 'Noto Serif JP', serif;
    font-weight: 700;
	line-height: 1;
	color: #1a0502;

}
.area_cast .list_p2 .name .note{
    display: block;
	margin-top: 0.2em;
	font-size: 0.6em;
}

@media screen and (max-width: 1100px){
	.area_cast .list_p2 {
		margin: 0 auto;
	}
	.area_cast .list_p2 .item {
		display: block;
		margin: 0 auto 2em;
		font-size: 24rem;
	}
	.area_cast .list_p2 .item.w_cast dd {
		margin: 0 0.5em;
	}
}

@media screen and (max-width: 860px){
	.area_cast .list_p2 .item {
		font-size: 20rem;
	}

	.area_cast .list_p2 .photo {
		max-width: 150px;
	}
}

@media screen and (max-width: 620px){
	.area_cast .list_p2 .item {
		font-size: 18rem;
	}
	
	.area_cast .list_p2 .photo {
		max-width: 105px;
	}
}

@media screen and (max-width: 500px){
	.area_cast .list_p2 .photo {
		max-width: 135px;
	}
}

@media screen and (max-width: 340px){
		.area_cast .list_p2 .item.w_cast dd {
			margin: 0 0.25em;
		}
}

@media screen and (max-width: 320px){
	.area_cast .list_p2 .photo {
		max-width: 120px;
	}
}

@media print{
	.area_cast .list_p2 li {
		margin: 0 1em 1em;
		width: auto;
		font-size: 20rem;
	}
}

.area_cast .list_e {
	margin: 5em auto 1em;
}

.area_cast .list_e li {
	display: inline-block;
	margin: 0 1em 1em;
	font-size: 18rem;
}

.area_cast .list_e .yaku {
	display: block;
	margin: 1em auto 0;
	font-size: 0.6em;
	color: #964d54;
	font-family: 'Noto Serif JP', serif;
	font-weight: 700;
	line-height: 1;
}

.area_cast .list_e .name {
    display: block;
	margin: 0.3em auto 0.5em;
	font-family: 'Noto Serif JP', serif;
    font-weight: 700;
	line-height: 1;
	color: #1a0502;

}


@media screen and (max-width: 1080px){
	.area_cast .list_e li {
		margin: 0 0.5em 1em;
	}
}

@media screen and (max-width: 620px){
	.area_cast .list_e li {
		font-size: 15rem;
	}
}

@media print{
	.area_cast .list_e li {
		margin: 0 1em 1em;
		font-size: 15rem;
	}
}

.area_cast .list_e2 {
	margin: 0 auto;
}

.area_cast .list_e2:last-of-type {
	margin: 0 auto 1em;
}

.area_cast .list_e2 .res2 {
	display: none;
}

.area_cast .list_e2 .res3 {
	display: none;
}

.area_cast .list_e2 li {
	display: inline-block;
	margin: 0 1em 1em;
	font-size: 18rem;
	font-family: 'Noto Serif JP', serif;
    font-weight: 700;
	line-height: 1;
	color: #1a0502;

}

.area_cast .list_e2 li.empty {
	display: none;
}
.area_cast .list_e2 li.empty2 {
	display: none;
}

.area_cast .note_leave {
	margin: 0 auto 4em;
	font-family: 'Noto Serif JP', serif;
	font-size: 0.8em;
	text-align: center;
	font-weight: 700;
}

.area_cast .list_e2 .note {
	padding: 0 1em;
	font-weight: 700;
	text-align: right;
	font-size: 0.8em;
}

@media screen and (max-width: 1080px){

	.area_cast .list_e2 .res {
		display: none;
	}
	.area_cast .list_e2 .res2 {
		display: inline;
	}
	.area_cast .list_e2 li {
		width: 6em;
		margin: 0 0.5em 1em;
	}
	.area_cast .list_e2 li.empty {
		display: inline-block;
	}
	.area_cast .list_e2 li.empty2 {
		display: inline-block;
	}
}

@media screen and (max-width: 620px){
	.area_cast .list_e2 li {
		font-size: 15rem;
	}
}

@media screen and (max-width: 540px){
	.area_cast .list_e2 .res2 {
		display: none;
	}
	.area_cast .list_e2 .res3 {
		display: inline;
	}
	.area_cast .list_e2 li.empty2 {
		display: none;
	}
}

@media screen and (max-width: 450px){
	.area_cast .note_leave {
		width: 90%;
		text-align: left;
	}
	.area_cast .note_leave .pk {
		display: inline;
	}
}

@media screen and (max-width: 430px){
	.area_cast .list_e2 .res3 {
		display: none;
	}
}

.area_cast .list_s {
	margin: 0 auto;
}

.area_cast .list_s li {
	display: inline-block;
	margin: 0 0.5em 1em;
	font-size: 18rem;
}

.area_cast .list_s dt {
	margin: 1em auto 0.5em;
	font-size: 0.8em;
	color: #964d54;
	font-family: 'Noto Serif JP', serif;
	font-weight: 700;
	line-height: 1;
}

.area_cast .list_s .name {
    display: block;
	margin: 0.3em auto 0.5em;
	font-family: 'Noto Serif JP', serif;
    font-weight: 700;
	line-height: 1;
	color: #1a0502;

}

@media screen and (max-width: 700px){
	.area_cast .list_s dt {
		font-size: 0.5em;
	}
}

@media print{
	.area_cast .list_s li {
		margin: 0 1em 1em;
		font-size: 15rem;
	}
}

.area_cast .list_k {
	margin: 0 auto 4em;
}

.area_cast .list_k .wrap_w {
	display: inline-block;
	margin: 0 1em 1em;
	font-size: 18rem;
}

.area_cast .list_k .yaku {
	display: block;
	margin: 1em auto 0;
	font-size: 0.7em;
	color: #964d54;
	font-family: 'Noto Serif JP', serif;
	font-weight: 700;
	line-height: 1;
}

.area_cast .list_k .yaku .note {
	display: block;
	margin: 0.5em auto 0;
	font-size: 0.8em;
}

.area_cast .list_k .name {
    display: inline-block;
	margin: 0.3em 0.5em 0.5em;
	font-family: 'Noto Serif JP', serif;
    font-weight: 700;
	line-height: 1;
	color: #1a0502;
	font-size: 18rem;
}

/*@media screen and (max-width: 700px){
	.area_cast .list_k .yaku {
		font-size: 0.5em;
	}
}*/

@media screen and (max-width: 860px){
	.area_cast .list_k .wrap_w {
		margin: 0 0.5em 1em;
	}

}

@media screen and (max-width: 620px){
	.area_cast .list_k .wrap_w {
		font-size: 15rem;
	}
	.area_cast .list_k .name {
		font-size: 15rem;
	}
}

@media screen and (max-width: 480px){
	.area_cast .list_k .wrap_w {
		display: block;
	}
}

@media print{
	.area_cast .list_e2 {
		text-align: left;
	}
	.area_cast .list_e2 .res {
		display: none;
	}
	.area_cast .list_e2 li {
		font-size: 15rem;
		text-align: center;
	}
}

/*******************************************
	コメント　モーダルウィンドウ
********************************************/

.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: #eae6e3;
	outline: 2px solid rgba(153,143,133,0.9);
	box-shadow: 0 0 10px rgba(26,5,2,0.5), 0 0 30px inset rgba(26,5,2,0.2);;
	text-align: center;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 400;
}

.cast_cmt .modal-wrapper .modal-window .modal-content {
  max-height: 80vh;
  overflow-y: auto;
	padding: 0;
}

.cast_cmt .modal-wrapper .modal-window .modal-content::-webkit-scrollbar {
    width: 10px;
}
.cast_cmt .modal-wrapper .modal-window .modal-content::-webkit-scrollbar-track {
	background: #fff;
	
}
.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, .8)
}

.cast_cmt .modal-wrapper .modal-close {
  z-index: 20;
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  color: #281e1c !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: #fff !important
}

@media screen and (max-width: 414px){

    .cast_cmt .modal-wrapper .modal-window {
	 padding: 2em 1.5em 1.5em;
    }
}

.cast_cmt .cmt .cmt_box .name {
    display: block;
	margin: 1em auto 0.2em;	
    font-size: 30rem;
    line-height: 1;
    color: #281e1c;
	font-family: 'Noto Serif JP', serif;
    font-weight: 700;
    letter-spacing: 0.2;
	text-shadow: 3px 3px 3px rgba(40,30,28,0.2);
}

.cast_cmt .cmt .cmt_box .yaku  {
    display: block;
    font-size: 16rem;
	margin-bottom: 1em;
	color: #964d54;
	font-family: 'Noto Serif JP', serif;
	font-weight: 500;
	text-shadow: 2px 2px 3px rgba(40,30,28,0.3);
}

.cast_cmt .cmt .cmt_box .yaku::before {
	content: "（";
}
.cast_cmt .cmt .cmt_box .yaku::after {
	content: "）";
}
.cast_cmt .cmt .cmt_box .name .ls {
    letter-spacing: 0.1em;
}

.cast_cmt .cmt .cmt_box .text {
	padding: 0 1em;
    text-align: left;
	color: #281e1c;
	font-family: 'Noto Serif JP', serif;
	font-weight:500;
}
.cast_cmt .cmt .cmt_box .text p {
/*	margin-bottom: 1em;*/
	font-size: 18rem;
}


/*******************************************

	クリエイティブ

********************************************/
.area_creat {
	margin-bottom: 10em;
}

.area_creat .list {
	margin: 6em auto 0;
}

.area_creat .list li {
	margin: 0 auto 1em;
	font-size: 20rem;
	font-family: 'Noto Serif JP', serif;
    font-weight: 700;
}
.area_creat .list.s li {
	font-size: 18rem;
}
.area_creat .list li .palt {
	letter-spacing: -0.05em;
	}

.area_creat .list .work {
	display: block;
	margin: 0 auto;
	font-size: 0.7em;
	color: #964d54;
	line-height: 1;
}

.area_creat .list .name {
    display: block;
	margin: 0.3em auto 0;
	line-height: 1.5;
	color: #1a0502;
}

.area_creat .list .btn {
	display: block;
	width: 7em;
	margin: 0 auto;
	padding: 0.2em 0 0.3em;
	background: #964d54;
	color: #fff;
	font-family: 'Averia Serif Libre', cursive;
	text-decoration: none;
	font-size: 15rem;
	line-height: 1;
	transition: 0.5s;
}

@media screen and (max-width: 700px){
	.area_creat .list .work {
		font-size: 0.6em;
	}
}

@media print{
	.area_creat .list li{
		font-size: 16rem;
	}
	.area_creat .list li.s {
		font-size: 15rem;
	}
}
/*.area_creat .yoko {
	margin: 6em auto 0;
}
.area_creat .yoko .list {
	margin: 0 auto;
}
.area_creat .yoko .list li {
	display: inline-block;
	margin: 0 1em 1.5em;
}

@media screen and (max-width: 580px){
	.area_creat .yoko .list li {
		display: block;
		margin: 0 auto 1em;
	}
}*/


/****************************************

　チケット

*****************************************/

.area_ticket {
}


.area_ticket .box.sokuho {
	margin: 0 auto 6em;
}
.area_ticket .box.sokuho .list {
	font-size: 28rem;
}
.area_ticket .box.sokuho .list dt {
	font-weight: 700;
}
.area_ticket .box.sokuho .list dd {
	margin: 0 auto 1em;
	padding: 1em;
	background-color: #eae6e3;
	outline: 2px solid rgba(153,143,133,0.9);
	text-align: center;
	font-size: 0.8em;
}
.area_ticket .box.sokuho .list dd .day,
.area_ticket .box.sokuho .list dd .place {
	display: inline-block;
	margin: 0 0.5em;
}

@media screen and (max-width: 400px){
	.area_ticket .box.sokuho .list {
		font-size: 24rem;
	}
}


/***************************************************

　ムービーページ

**************************************************/

.area_movie {}

.area_movie .list {
    max-width: 900px;
    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: 0 10px 2em;
    vertical-align: bottom;
	margin-top: auto;
}

.area_movie .list .name {
    margin-bottom: 0.5em;
    padding: 0.3em 1em;
	border-top: 2px solid rgba(153,143,133,0.9);
	border-bottom: 2px solid rgba(153,143,133,0.9);
    font-size: 22rem;
	font-family: 'Noto Serif JP', serif;
    font-weight: 500;
    line-height: 1.3;
	color: #281e1c;
}

.area_movie .list .name .pk {
	display: inline-block;
	margin: 0 0.5em;
}

.area_movie .list .youtube {
	position: relative;
	height: 0;
	margin-bottom: 20px;
	padding-bottom: 56.25%;
	overflow: hidden;
	box-shadow: 0 0 30px rgba(40,30,28,0.5);
}

.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{
        width: 90%;
        margin: 0 auto 2em;
    }
	.area_movie .list .name {
		font-size: 20rem;
	}
}

@media screen and (max-width: 414px){
    .area_movie .list .name {
        font-size: 16rem;
		font-weight: 700;

    }
    .area_movie .list .list {
        margin-bottom: 10px;
    } 
}
