@charset "utf-8";

/* PC */
@media (min-width: 769px) , print{
}

/* SP */
@media (max-width: 768px) {
}


/* ---------------------------------------------------------------- *
	gNavi
 * ---------------------------------------------------------------- */
/* PC */
@media (min-width: 769px) , print{
	#gNavi .inner{
		display: -webkit-box;
		display: -ms-flexbox;
		display: -webkit-flex;
		display: flex;
		-webkit-box-align: center;
		-ms-flex-align: center;
		-webkit-align-items: center;
		align-items: center;
		-webkit-justify-content: space-between;
		-webkit-box-pack: space-between;
		-ms-flex-pack: space-between;
		-moz-box-pack: space-between;
		justify-content: space-between;
	}
}

/* ----- logo ----- */
#gNavi .logo{
	max-width: 100px;
  bottom: 1vh;
  left: 20px;
}
/* PC */
@media screen and (min-width: 600px){
	#gNavi .logo{
		position: absolute;
	}
}
/* SP */
@media (max-width: 768px) {
	#gNavi .logo{
		width: 60%;
		max-width: 50px;
		position: absolute;
		bottom: 20px;
	}
}

/* ----- menu_in ----- */
/* SP */
#gNavi .menu_in{
  position: fixed;
  top: 0;
  width: 100%;
  left: 0;
  right: 0;
  height: calc(100vh - 0px);
  background: #acb2b7;
  overflow-y: scroll;
  -webkit-transition-duration: 0.2s;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -ms-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  opacity: 0;
  visibility: hidden;
  z-index: 999;
}
#gNavi .menu_in.menu_open_box{
  opacity: 1;
  visibility: visible;
}

/* -----  ul ----- */

/* SP */
#gNavi ul{
  padding: 90px 0 30px;
}
/* PC */
@media screen and (min-width: 600px){
	#gNavi ul{
		display: -webkit-box;
		display: -ms-flexbox;
		display: -webkit-flex;
		display: flex;
		-webkit-box-align: center;
		-ms-flex-align: center;
		-webkit-align-items: center;
		align-items: center;
		-webkit-justify-content: center;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		-moz-box-pack: center;
		justify-content: center;
		-ms-flex-wrap: wrap;
		-webkit-flex-wrap: wrap;
		flex-wrap: wrap;
	}
	#gNavi ul li{
		width: 50%;
	}
}
/* SP */
@media screen and (max-width: 599px){
	#gNavi ul{
		margin-left: 60px;
		padding-top: 60px;
	}
}

/* ----- a ----- */
#gNavi ul a{
	color: #000;
  position: relative;
  font-family: 'Noto Serif JP', serif;
  display: block;
  padding: 10px;
  text-align: center;
  font-size: 40px;
}
#gNavi ul a.sns{
  font-size: 30px;
}

/*#gNavi ul a::after{
	content: "";
	display: block;
	width: 100%;
	max-width: 70px;
	height: 5px;
	background-color: #000;
	margin-left: auto;
	margin-top: 20px;
}
#gNavi ul .sns a::after{
	display: none;
}*/

/* SP */
@media (max-width: 768px) {
	#gNavi ul a{
  	font-size: 30px;
		text-align: right;
	}
}

/* ----- trigger ----- */
#gNavi{
  position: fixed;
  z-index: 99999;
  width: 50px;
  height: 50px;
  top: 10px;
  left: 0;
	right: 0;
	margin: auto;
}
#gNavi .trigger{
  width: 50px;
  height: 50px;
  cursor: pointer;
  display: block;
  position: absolute;
  z-index: 99999;
  color: #000;
  -webkit-transition: all 400ms ease-in-out;
  transition: all 400ms ease-in-out;
  border: 0;
  border-radius: 50%;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}
#gNavi .trigger span,
#gNavi .trigger span::before,
#gNavi .trigger span::after{
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  height: 3px;
  width: 50px;
  cursor: pointer;
  background: #333;
  display: block;
  -webkit-transition-duration: 0.2s;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -ms-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  -webkit-transform: translate(-50%, -13px);
  -ms-transform: translate(-50%, -13px);
  -o-transform: translate(-50%, -13px);
  transform: translate(-50%, -13px);
}

#gNavi .trigger p{
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	text-align: center;
	line-height: 1;
}
#gNavi .trigger p::before{
	content: "MENU";
	color: #333;
  font-family: 'Noto Sans JP', serif;
	font-size: 12px;
	font-weight: 700;
}
.tog_active #gNavi .trigger p::before{
	content: "CLOSE";
	color: #333;
}

/* SP */
@media (max-width: 768px) {
/*	#gNavi .trigger span,
	#gNavi .trigger span::before,
	#gNavi .trigger span::after{
		box-shadow: 0 0 20px #000, 0 0 10px #000, 0 0 10px #000;
	}*/
}
.tog_active #gNavi .trigger span,
.tog_active #gNavi .trigger span::before,
.tog_active #gNavi .trigger span::after{
  background: #000;
	box-shadow: none;
}
#gNavi .trigger span::before{
  -webkit-transform: translate(-50%, -13px);
  -ms-transform: translate(-50%, -13px);
  -o-transform: translate(-50%, -13px);
  transform: translate(-50%, -13px);
}
#gNavi .trigger span::after{
  -webkit-transform: translate(-50%, 9px);
  -ms-transform: translate(-50%, 9px);
  -o-transform: translate(-50%, 9px);
  transform: translate(-50%, 9px);
}
/* メニュー展開 */
.tog_active #gNavi .trigger span{
  background-color: transparent !important;
}

.tog_active #gNavi .trigger span::before{
  -webkit-transform: translateX(-50%)rotate(45deg);
  -ms-transform: translateX(-50%)rotate(45deg);
  -o-transform: translateX(-50%)rotate(45deg);
  transform: translateX(-50%)rotate(45deg);
  top: 0;
}

.tog_active #gNavi .trigger span::after{
  -webkit-transform: translateX(-50%)translateY(-10px)rotate(-45deg);
  -ms-transform: translateX(-50%)translateY(-10px)rotate(-45deg);
  -o-transform: translateX(-50%)translateY(-10px)rotate(-45deg);
  transform: translateX(-50%)translateY(-10px)rotate(-45deg);
  top: 10px;
}


/* ---------------------------------------------------------------- *
	mainvisual
 * ---------------------------------------------------------------- */
#mainvisual{
	background-color: #acb2b7;
	position: relative;
}
#mvin{
	background-image: url("../img/top/mv_bg.jpg");
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	height: 768px;
	position: relative;
	width: 100%;
	overflow: hidden;
}
/* SP */
@media screen and (max-width: 599px){
	#mvin{
		height: 530px;
	}
}

/* ----- inner ----- */
#mainvisual .inner{
	position: relative;
	height: 100%;
}

/* ----- mvinfo ----- */
#mainvisual .mvinfo{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	line-height: 1.2;
}

/* ----- catchcopy ----- */
#mainvisual .catchcopy{
	color: #a60021;
	font-size: 25px;
	font-weight: 700;
	text-shadow: 0 0 5px rgba(255,255,255,1), 0 0 5px rgba(255,255,255,1), 0 0 10px rgba(255,255,255,1), 0 0 20px rgba(255,255,255,1), 0 0 20px rgba(255,255,255,1);
	position: absolute;
	top: 225px;
	z-index: 5;
}
/* PC */
@media screen and (min-width: 600px){
	#mainvisual .catchcopy{
		left: 0;
	}
}
/* SP */
@media screen and (max-width: 599px){
	#mainvisual .catchcopy{
    font-size: 18px;
    line-height: 1.4;
    top: 40px;
    right: 0;
    text-align: center;
    width: 35%;
	}
}

/* ----- tobecon ----- */
#mainvisual .tobecon{
	font-size: 50px;
  font-feature-settings : "palt";
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 700;
	position: absolute;
	bottom: 60px;
  left: 60%;
	text-shadow: 0 0 5px rgba(210, 219, 226, 0.4), 0 0 5px rgba(210, 219, 226, 0.4), 0 0 10px rgba(210, 219, 226, 0.4), 0 0 20px rgba(210, 219, 226, 0.4), 0 0 20px rgba(210, 219, 226, 0.4);
	z-index: 5;
	font-feature-settings : "palt";
}
#mainvisual .tobecon i{
	font-style: normal;
	font-size: 70%;
}
/* PC */
@media screen and (min-width: 600px){
	#mainvisual .tobecon{
		left: auto;
		right: 0;
		width: 35%;
		text-align: center;
	}
	#mainvisual .tobecon span{
		text-align: left;
		display: inline-block;
	}
}

/* SP */
@media screen and (max-width: 599px){
	#mainvisual .tobecon{
		font-size: 40px;
		left: 0;
		right: 0;
		bottom: 20px;
    width: 95%;
    margin-left: auto;
    margin-right: auto;
		padding-right: 50px;
		box-sizing: border-box;
	}
}

/* ----- logo ----- */
#mainvisual .logo{
	margin: auto;
	background-color: #e1dccd;
	width: 100px;
	height: 100%;
	padding: 0 21px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
	-webkit-justify-content: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-moz-box-pack: center;
	justify-content: center;
  z-index: 3;
  position: relative;
}
#mainvisual .logo img{
	display: inline-block;
}
/* SP */
@media screen and (max-width: 599px){
	#mainvisual .logo{
		width: 50px;
	}
}

/* ----- logo ----- */
#mainvisual .sns{
	position: absolute;
	bottom: 10px;
  right: 0;
	z-index: 5;
}
#mainvisual .sns a{
	display: block;
	color: #fff;
	background-color: #333;
	border-radius: 5px;
	padding: 10px;
	line-height: 1;
	width: 50px;
	height: 50px;
	box-sizing: border-box;
	font-size: 32px;
}
#mainvisual .sns a:hover{
	color: #333;
	background-color: #fff;
	opacity: 1;
}

/* ----- mv_main ----- */
#mainvisual .mv_main{
	position: absolute;
	right: 0;
	z-index: 2;
}
/* PC */
@media screen and (min-width: 600px){
	#mainvisual .mv_main{
		top: 0;
	}
}
/* SP */
@media screen and (max-width: 599px){
	#mainvisual .mv_main{
		bottom: 0;
	}
	#mainvisual .mv_main img{
		width: 150px;
	}
}

/* ----- mv_sub ----- */
#mainvisual .mv_sub{
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}
#mainvisual .mv_sub img{
	width: auto;
	display: block;
}
/* SP */
@media screen and (max-width: 599px){
	#mainvisual .mv_sub img{
		width: 150px;
	}
}

/* ---------------------------------------------------------------- *
	banner
 * ---------------------------------------------------------------- */
#banner{
	z-index: 4;
	background-color: #acb2b7;
	padding: 40px 0;
}
#banner ul{
	margin-bottom: 10px;
}
#banner ul:last-of-type{
	margin-bottom: 0;
}

#banner a{
	text-align: center;
	font-size: 18px;
  font-feature-settings : "palt";
	font-family: 'Noto Sans JP', sans-serif;
	position: relative;
	z-index: 4;
	font-weight: 700;
  background: #fff;
  border: none;
  padding: 2px;
  cursor: pointer;
  display: block;
  overflow: hidden;
  margin: 0 auto;
}
#banner a:hover{
	opacity: 1;
}
#banner li .button,
#banner li .button span {
  background: #a60021;
  color: #fff;
}
#banner li .button:after,
#banner li .button:before,
#banner li .button:hover span {
  background: #fff;
  color: #444;
} 
.button span {
  display: block;
  padding: 20px;
  background: #fff;
  z-index: 100;
  position: relative;
  transition: all .35s ease-in-out .35s;
}
.button:hover span {
  background: #a60021;
  color: #fff;
  transition: all .35s ease-in-out .35s;
}
.button:after {
  bottom: -100%;
  right: -100%;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background: #a60021;
  transition: all .35s ease-in-out .5s;
}
.button:hover:after {
  right: 0;
  bottom: 0;
  transition: all ease-in-out .35s;
}
.button:before {
  top: -100%;
  left: -100%;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background: #a60021;
  transition: all .35s ease-in-out .5s;
}
.button:hover:before {
  left: 0;
  top: 0;
  transition: all ease-in-out .35s;
}

#banner li{
	margin-bottom: 10px;
}
#banner li:last-of-type{
	margin-bottom: 0;
}

/* PC */
@media screen and (min-width: 600px){
	#banner ul{
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: start;
    align-items: start;
    -webkit-justify-content: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -moz-box-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
	}
	#banner li{
  	width: calc(50% - 10px);
    max-width: 600px;
		box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
		margin-left: 10px;
	}
	#banner li:nth-of-type(odd) {
    margin-left: 0;
	}
}

/* SP */
@media screen and (max-width: 599px){
}

/* ---------------------------------------------------------------- *
	comment
 * ---------------------------------------------------------------- */
#comment{
	background-color: #efefef;
}
#comment .contTtl {
  color: #a60021;
	margin-bottom: 50px;
	text-align: center;
}

/* PC */
@media (min-width: 769px) , print{
	#comment .comList{
		display: -webkit-box;
		display: -ms-flexbox;
		display: -webkit-flex;
		display: flex;
		-webkit-box-align: center;
		-ms-flex-align: stretch;
		-webkit-align-items: stretch;
		align-items: stretch;
		-webkit-justify-content: start;
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		-moz-box-pack: start;
		justify-content: start;
		-ms-flex-wrap: wrap;
		-webkit-flex-wrap: wrap;
		flex-wrap: wrap;
		
		max-width: 800px;
    margin: auto;
	}
}

#comment .comList li{
	background-color: #fff;
	padding: 30px;
	box-sizing:border-box; 
	margin-bottom: 35px;
	box-shadow: 0px 0px 16px -6px rgba(0,0,0,0.2);
}
/* PC */
@media (min-width: 769px) , print{
	#comment .comList li{
		/*width: 49%;
		margin-right: 2%;*/
		width: 100%;
	}
	#comment .comList li:nth-of-type(2n){
		position: relative;
		/*top: 30px;*/
		margin-right: 0;
	}
}
/* SP */
@media (max-width: 768px) {
	#comment .comList li{
		margin-bottom: 15px;
	}
	#comment .comList li:last-of-type{
		margin-bottom: 0;
	}
}
	
#comment .bigCom{
	font-size: 20px;
	margin-bottom: 10px;
}
#comment .bigCom::before{
	content: "―";
	margin-right: 3px;
}

#comment .comTtl{
	font-size: 20px;
	font-weight: 400;
	margin-top: 10px;
	color: #a60021;
	text-align: right;
}
#comment .comTtl span{
	font-size: 14px;
}

/* ---------------------------------------------------------------- *
	trailer
 * ---------------------------------------------------------------- */
#trailerSpace{
	height: 100px;
	background-color: #acb2b7;
}
#trailer{
	text-align: center;
	background-color: #acb2b7;
	overflow: hidden;
	position: relative;
	padding-top: 0;
}
#trailer .contTtl{
	margin-bottom: 50px;
}
#trailer .inner{
	position: relative;
	z-index: 3;
}

/* ----- bgLine ----- */
#trailer .bgLine {
	position: relative;
	z-index: 1;
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
	-webkit-transition: 0.8s;
  -moz-transition: 0.8s;
  -ms-transition: 0.8s;
  -o-transition: 0.8s;
  transition: 0.8s;
	opacity: 1;
}
#trailer .bgLine::before{
	content: "";
	display: block;
	background-color: #acb2b7;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
	-webkit-transform: scale(1,1);
	-ms-transform: scale(1,1);
	-o-transform: scale(1,1);
	transform: scale(1,1);
	-webkit-transition: 5.0s;
  -moz-transition: 5.0s;
  -ms-transition: 5.0s;
  -o-transition: 5.0s;
  transition: 5.0s;
}
#trailer .bgLine.vv::before{
	-webkit-transform: scale(0,1);
	-ms-transform: scale(0,1);
	-o-transform: scale(0,1);
	transform: scale(0,1);
}
#trailer .bgLine p{
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	left: 0;
	right: 0;
}
#trailer .bgLine p::after{
	content: "";
	width: 100%;
	height: 1px;
	background-color: #fff;
	display: block;
}
#trailer .bgLine p:nth-of-type(1)::after{
	-webkit-transform: rotate(25deg)scale(10,1);
	-ms-transform: rotate(25deg)scale(10,1);
	-o-transform: rotate(25deg)scale(10,1);
	transform: rotate(25deg)scale(10,1);
}
#trailer .bgLine p:nth-of-type(2)::after{
	-webkit-transform: rotate(-25deg)scale(10,1);
	-ms-transform: rotate(-25deg)scale(10,1);
	-o-transform: rotate(-25deg)scale(10,1);
	transform: rotate(-25deg)scale(10,1);
}

/* =====================================
  youtube
===================================== */
.youtube {
  margin-bottom: 5em;
}

.tab_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 80%;
  margin: 0 auto;
}

.tab_label {
  width: 50%;
  background: #d3d3d3;
  padding: 1em 0;
  border-right: solid 1px #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: White;
  text-align: center;
  cursor: pointer;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.tab_label:last-of-type {
  border-right: none;
  /* width: 33.334%; */
}

.tab_item {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
  display: none;
  -webkit-box-ordinal-group: 1;
      -ms-flex-order: 0;
          order: 0;
}

.tab_item::before {
  display: block;
  content: " ";
  padding-top: 56.25%;
}

.tab_item iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.tab_switch:checked+.tab_label {
  background: #333;
}

.tab_switch:checked+.tab_label+.tab_item {
   display: block;
}

.tab_switch {
  display: none;
}

/* hover */
@media screen and (min-width: 768px) {
  .tab_label:hover {
    background: #afafaf;
    -webkit-transition: .2s;
    transition: .2s;
  }
}

/* sp + tab */
@media screen and (max-width: 768px) {
  .youtube {
    margin-bottom: 3em;
  }
  .tab_container {
    width: 100%;
  }
  .tab_label {
    padding: .5em 0;
  }
}

/* ---------------------------------------------------------------- *
	intro
 * ---------------------------------------------------------------- */
#intro{
	background-color: #efefef;
}
/* SP */
@media screen and (max-width: 599px){
	#intro{
		padding-top: 0;
	}
}

/* ----- contTtl ----- */
#intro .contTtl{
	color: #fff;
	margin-bottom: -70px;
	position: relative;
	top: -140px;
}
/* SP */
@media screen and (max-width: 599px){
#intro .contTtl{
		margin-bottom: -35px;
		top: -20px;
	}
}

/* ----- h3 ----- */
#intro h3{
	color: #a60021;
	font-size: 30px;
	border-bottom: 1px solid #a60021;
	padding-bottom: 20px;
	margin-bottom: 20px;
	font-weight: 400;
}

/* ----- img ----- */
#intro .img{
	margin-bottom: 40px;
}

/* ----- text ----- */
#intro .text{
	padding-left: 20px;
	box-sizing: border-box;
	margin-left: auto;
}
/* PC */
@media screen and (min-width: 600px){
	#intro{
		background-color: #efefef;
		background-image: url("../img/top/intro.jpg");
		background-size: 48%;
		background-position: top left;
		background-repeat: no-repeat;
		top: -140px;
	}
	#intro .text{
		width: 50%;
	}
}

/* ---------------------------------------------------------------- *
	bg-story
 * ---------------------------------------------------------------- */
#bg-story{
	background-image: url("../img/top/bg-story.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	height: 500px;
}
/* SP */
@media screen and (max-width: 599px){
	#bg-story{
		height: 200px;
	}
}

/* ---------------------------------------------------------------- *
	story
 * ---------------------------------------------------------------- */
#story{
	background-color: #efefef;
}
#story .contTtl{
	color: #a60021;
	text-align: right;
	margin-bottom: -70px;
	position: relative;
	top: -140px;
}
/* SP */
@media screen and (max-width: 599px){
	#story .contTtl{
		margin-bottom: -35px;
		top: -120px;
	}
}

/* ----- box ----- */
/* PC */
@media screen and (min-width: 600px){
	#story .box{
		display: -webkit-box;
		display: -ms-flexbox;
		display: -webkit-flex;
		display: flex;
		-webkit-box-align: stretch;
		-ms-flex-align: stretch;
		-webkit-align-items: stretch;
		align-items: stretch;
		-webkit-justify-content: center;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		-moz-box-pack: center;
		justify-content: center;
	}
}

/* ----- tex ----- */
#story .text{
	line-height: 2;
	position: relative;
	z-index: 2;
}
#story .text p{
	margin-bottom: 0;
}
#story .text p:last-of-type{
	font-size: 20px;
}
/* PC */
@media screen and (min-width: 600px){
	#story .text{
		-ms-writing-mode: tb-rl;
		writing-mode: vertical-rl;
		text-orientation: upright;
		height: 500px;
		margin-left: 200px;
	}
}

/* ----- img ----- */
#story .img{
	max-width: 472px;
}
#story .img img:nth-of-type(1){
	position: relative;
	z-index: 2;
}
#story .img img:nth-of-type(2){
  margin-top: -30px;
	position: relative;
	z-index: 1;
}
/* PC */
@media screen and (min-width: 600px){
	#story .img img:nth-of-type(2){
		margin-left: 60px;
	}
}
/* SP */
@media screen and (max-width: 599px){
	#story .img{
		margin-bottom: 30px;
	}
	#story .img img{
		width: 80%;
	}
	#story .img img:nth-of-type(2){
		margin-left: 20%;
	}
}

/* ---------------------------------------------------------------- *
	cast
 * ---------------------------------------------------------------- */
#cast{
	padding: 0;
}

#bg-cast{
	background-image: url("../img/top/bg-cast.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	background-attachment: fixed;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
}

/* ---------------------------------------------------------------- *
	director
 * ---------------------------------------------------------------- */
#director{
	padding: 100px 0;
	position: relative;
}
#director .inner{
	position: relative;
	z-index: 2;
}
#director::after{
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #efefef;
	opacity: .8;
	z-index: 0;
}
#director .contTtl{
	margin-bottom: -70px;
	position: relative;
	top: -140px;
}
/* SP */
@media screen and (max-width: 599px){
	#director .contTtl{
		margin-bottom: -35px;
		top: -120px;
	}
}

/* PC */
@media screen and (min-width: 600px){
	#director .box{
		display: -webkit-box;
		display: -ms-flexbox;
		display: -webkit-flex;
		display: flex;
		-webkit-box-align: start;
		-ms-flex-align: start;
		-webkit-align-items: start;
		align-items: start;
		-webkit-justify-content: start;
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		-moz-box-pack: start;
		justify-content: start;
	}
}

#director .img{
	width: 282px;
	margin-right: 30px;
}
/* SP */
@media screen and (max-width: 599px){
	#director .img{
		width: 50%;
		margin: 0 auto 30px;
		text-align: center;
	}
}

#director .text{
	width: 100%;
}
#director h3{
	color: #a60021;
}
#director .comment{
	padding: 10px 20px;
	background-color: #fff;
}

/* ---------------------------------------------------------------- *
	castList
 * ---------------------------------------------------------------- */
#castList{
	padding: 100px 0;
	position: relative;
}
#castList .inner{
	position: relative;
	z-index: 2;
}
#castList::after{
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #919ba7;
	opacity: .8;
	z-index: 0;
}
#castList .contTtl{
	text-align: center;
	margin-bottom: -70px;
	position: relative;
	top: -140px;
}
/* SP */
@media screen and (max-width: 599px){
	#castList .contTtl{
		margin-bottom: -35px;
		top: -120px;
	}
}
/* PC */
@media screen and (min-width: 600px){
	#castList ul{
		display: -webkit-box;
		display: -ms-flexbox;
		display: -webkit-flex;
		display: flex;
		-webkit-box-align: start;
		-ms-flex-align: start;
		-webkit-align-items: start;
		align-items: start;
		-webkit-justify-content: center;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		-moz-box-pack: center;
		justify-content: center;
	}
}
/* mid */
@media screen and (min-width: 600px) and (max-width: 1120px){
	#castList ul{
		-ms-flex-wrap: wrap;
		-webkit-flex-wrap: wrap;
		flex-wrap: wrap;
	}
}

#castList ul li{
	cursor: pointer;
}
#castList ul li a{
	width: 100%;
	display: block;
}

/* PC */
@media screen and (min-width: 600px){
	#castList ul li{
		width: 19.2%;
		margin-right: 1%;
		text-align: center;
	}
	#castList ul li:last-of-type{
		margin-right: 0;
	}
	#castList ul li:nth-of-type(even){
		padding-top: 40px;
	}
}
/* mid */
@media screen and (min-width: 600px) and (max-width: 1120px){
	#castList ul li{
		margin-top: 30px;
	}
	#castList ul li:nth-of-type(5n){
		margin-right: 0;
	}
	#castList ul li:nth-child(-n + 5){
		margin-top: 0;
	}
}
/* SP */
@media screen and (max-width: 599px){
	#castList ul li{
		margin-bottom: 20px;
	}
	#castList ul li:last-of-type{
		margin-bottom: 0;
	}
	#castList ul li a{
		display: -webkit-box;
		display: -ms-flexbox;
		display: -webkit-flex;
		display: flex;
		-webkit-box-align: center;
		-ms-flex-align: center;
		-webkit-align-items: center;
		align-items: center;
		-webkit-justify-content: center;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		-moz-box-pack: center;
		justify-content: center;
	}
	#castList ul li:nth-of-type(even) a{
    flex-flow: row-reverse;
	}
}

#castList ul h4{
	color: #fff;
	text-align: center;
	font-size: 18px;
}
/* SP */
@media screen and (max-width: 599px){
	#castList ul h4{
		font-size: 20px;
	}
}

/* PC */
@media screen and (min-width: 600px){
	#castList ul li .img{
		margin-bottom: 10px;
	}
}
/* SP */
@media screen and (max-width: 599px){
	#castList ul li .img{
		width: 40%;
	}
	#castList ul li:nth-of-type(odd) .img{
		margin-right: 30px;
	}
	#castList ul li:nth-of-type(even) .img{
    flex-flow: row-reverse;
		margin-left: 30px;
	}
}

/* ---------------------------------------------------------------- *
	modal
 * ---------------------------------------------------------------- */
.modal-overlay {
	z-index:96;
	display:none;
	position:fixed;
	top:0;
	left:0;
	width:100%;
	height:100%;
	background-color:rgba(0,0,0, .80);
	cursor: zoom-out;
}

.modal-content {
	position:fixed;
	display:none;
	z-index:99;
	width:100%;
	max-width: 1000px;
	margin:0;
	color:#000;
	text-align:left;
	background-color: #efefef;
	-moz-box-shadow: 0px 0px 20px rgba(0,0,0, .50);
	-webkit-box-shadow: 0px 0px 20px rgba(0,0,0, .50);
	box-shadow: 0px 0px 20px rgba(0,0,0, .50);
}

.modal_inner{
	overflow: hidden;
}

.modal-close{
	width: 40px;
	height: 40px;
	margin-left: auto;
	margin-right: auto;
	background-color: #000;
	cursor: pointer;
}

.modal-close:hover{
	opacity: 1;
	background-color: #fff;
}

.modal-close::before,
.modal-close::after{
	display: block;
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 40px;
	height: 1px;
	background-color: #fff;
	-webkit-transition-duration:  0.2s;
	-webkit-transition:  0.2s;
  -moz-transition:  0.2s;
  -ms-transition:  0.2s;
  -o-transition:  0.2s;
  transition:  0.2s;
}

.modal-close:hover::before,
.modal-close:hover::after{
	background-color: #000;
}

.modal-close::before{
	-webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
	transform: translateX(-50%) translateY(-50%) rotate(45deg);
}

.modal-close::after{
	-webkit-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
	transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}

/* PC */
@media (min-width: 769px) , print{
	.modal-close{
		position: absolute;
		text-align: center;
		top: 0px;
		right: 0;
	}
}
/* SP */
@media (max-width: 768px) {
	.modal-content {
		width:95%;
    overflow: scroll;
    max-height: 80vh;
    padding: 0 20px;
    box-sizing: border-box;
	}
  
  .modal-close{
		position: relative;
    width: 100%;
    margin: auto;
    display: block;
		margin-top: 20px;
    margin-bottom: 20px;
  }
}

/* ===== cast box ===== */
.cast-modal dl{
	font-size: 0;
}
/* PC */
@media (min-width: 769px) , print{
	.cast-modal dl{
		display: -webkit-box;
		display: -ms-flexbox;
		display: -webkit-flex;
		display: flex;
		-webkit-box-align: center;
		-ms-flex-align: center;
		-webkit-align-items: center;
		align-items: center;
		-webkit-justify-content: start;
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		-moz-box-pack: start;
		justify-content: start;
	}
}

.cast-modal dl h3 span{
	font-size: 70%;
  margin-left: 1em;
}

.cast-modal dl dt{
	display: inline-block;
	vertical-align: top;
}

.cast-modal dl dd{
	display: inline-block;
	vertical-align: top;
	font-size: 16px;
	text-align: justify;
}

.cast-modal dl dd p{
	font-feature-settings : "palt";
	font-size: 15px;
}

/* PC */
@media (min-width: 769px) , print{
	.cast-modal dl dt img{
		height: 370px;
		width: auto;
		max-width: none;
	}
	.cast-modal dl dd{
		width: 78%;
		margin-left: 2%;
		padding: 40px 4%;
	}
}

/* SP */
@media (max-width: 768px) {
  .cast-modal dl dt{
		display: block;
		width: 60%;
		text-align: center;
		margin: 20px auto;
	}
	.cast-modal dl dd{
		display: block;
		width: 100%;
		margin-left: 0;
	}
}

.cast_name{
	color: #a60021;
}

/* ---------------------------------------------------------------- *
	theater
 * ---------------------------------------------------------------- */
#theater{
	background-color: #fff;
}
#theater .contTtl{
	text-align: center;
	margin-bottom: 100px;
}

.list{
	margin: 0 auto 0px;
	font-family: 'Noto Sans JP', sans-serif;
}
.list dl{
	overflow: hidden;
	/*border-left:1px solid #333;*/
	position:relative;
}
.list dt,
.list dd{
	padding:10px 20px;
	box-sizing: border-box;
	/*border-right:1px solid #333;*/
	border-bottom:1px solid #333;
	background-color: #fff;
}
.list-top dt,
.list-top dd{
	padding:10px 20px;
	font-size: 14px;
	border-top:1px solid #333;
	background-color: #333;
	border-right: 1px solid #fff;
	color: #fff;
}
.list-top dd.maeuri{
	border-right:1px solid #333;
}
.list .list-venue dd.name{
  padding-top: 0;
	padding-bottom: 0;
}
.list dd a{
	color: #000;
	display: block;
	padding: 10px 0;
}
/*.list dt.pref{
	width: 100px;
}
.list dd.name{
	width: 290px
}
.list dd.period{
	width: 100px;
}
.list dd.maeuri{
	width: 164px;
}*/

/*PC*/
@media (min-width: 769px) {
	.list dl{
		display: -webkit-box;
		display: -ms-flexbox;
		display: -webkit-flex;
		display: flex;
		-webkit-box-align: stretch;
		-ms-flex-align: stretch;
		-webkit-align-items: stretch;
		align-items: stretch;
		-webkit-justify-content: space-between;
		-webkit-box-pack: space-between;
		-ms-flex-pack: space-between;
		-moz-box-pack: space-between;
		justify-content: space-between;
	}
	.list dt,
	.list dd{
		width: 100%;
	}
	.list dt.pref{
		width: 20%;
	}
	.list dd.name{
		width: 55%;
	}
	.list dd.period{
		width: 15%;
	}
	.list dd.maeuri{
		width: 10%;
	}
	/*.list dl:nth-child(even):not(.list-top) dt,
	.list dl:nth-child(even):not(.list-top) dd{
		background-color: #efefef;
	}*/
	.list .list-venue dd.name{
		padding: 0;
	}
	.list dd a{
		color: #000;
		display: block;
		padding: 10px;
	}
	.list dd a:hover{
		background-color: #efefef;
	}
}

/*SP*/
@media (max-width: 768px) {
	.list{
		width: 100%;
		margin: 0 auto ;
	}
	.list-head{
		font-size: 24px;
		margin-bottom: 20px;
		line-height: 1.3;
	}
	.list-top{
		display: none;
	}
	.list dl,
	.list dt,
	.list dd{
		border:none;
	}
	.list dt.pref,
	.list dd.name,
	.list dd.period,
	.list dd.maeuri{
		width: auto;
	}
	.list dd.maeuri.not{
		display: none;
	}
	.list dd.period:before{
		content:"公開日：";
	}
	.list dd.maeuri:before{
		content:"前売り券：";
	}
	.list dl{
		margin: 5px 0 30px;
		padding: 0;
		border: 1px solid #333;
		background-color: #fff;
	}
	.list dl:last-of-type{
		margin-bottom: 0;
	}
	.list dt,
	.list dd {
		padding: 3px 5%;
		text-align: left;
		background-color: #fff;
	}
	.list dt.pref{
		margin-bottom: 5px;
	}
	.list .pref{
		background-color: #333;
		color: #fff;
		font-size: 18px;
		font-weight: bold;
	}
	.list .not .pref{
		display: none;
	}
	.list-venue.not{
		margin-top: -31px;
	}
}

/* ---------------------------------------------------------------- *
	billing
 * ---------------------------------------------------------------- */
#billing{
	background-image: url("../img/top/billing_bg.jpg");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	padding-top: 50px;
	padding-bottom: 50px;
	text-align: center;
}
/* SP */
@media screen and (max-width: 599px){
	#billing img{
		width: 100%;
		max-width: 420px;
		margin: auto;
	}
}