html{
  height:100vh; 
}

body { margin: 0; padding:0;font-family: 'Yu Mincho Light','YuMincho','Yu Mincho','游明朝体','ヒラギノ明朝 ProN','Hiragino Mincho ProN','ヒラギノ明朝 ProN','Hiragino Mincho ProN',sans-serif; width:100%; height:100vh;background:#000;overflow-x:hidden;}
	

body:before{
  content:"";
  display:block;
  position:fixed;
  top:0;
  left:0;
  z-index:-10;
  width:100%;
  height:100vh;
  background:url(../img/back-dummy-01-min.jpg) center no-repeat;
	background-size: cover;
	background-position: top center;
}


.clearfix{
  zoom:1;
}
.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
  overflow: hidden;/* 隙間対応 */
  font-size: 0.1em;/* 隙間対応 */
  line-height: 0;/* 隙間対応 */
}

br.clear {
	clear:both;
}

br.sponly {display:none;}
br.pconly {display:inline;}

@media (max-width: 800px) {
br.sponly {display:inline !important;}
br.pconly {display:none !important;}

}



/* ========================================
POPUP
========================================== */


.popup {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 300000000;
  opacity: 0;
  visibility: hidden;
  transition: .6s;
}
.popup.is-show {
  opacity: 1;
  visibility: visible;
}
.popup-inner {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  width: 100%;
	max-width:1000px;
  padding: 10px;
  z-index: 2;
}
.popup-inner img {
  width: 100%;
}

.op-movie {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
}

.op-movie iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index:2;
}

.close-btn {
  position: absolute;
  right: 0px;
  top: 0px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  cursor: pointer;
  padding:5px;
    z-index:3;
}
.close-btn i {
  font-size: 40px;
  color: #fff;
}
.black-background-pop {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,.8);
  z-index: 1;
  cursor: pointer;
}





/* ========================================
ヘッダー
========================================== */


.navigation {
  position: absolute;
  left: 0;
  top: 5px ;
  width: 100%;
  height: 60px;
}

.global-nav {
  position: fixed;
  left: -420px; /* これで隠れる */
  top: 0;
  width: 400px; /* スマホに収まるくらい */
  height: 100vh;
  padding-top: 30px;
  background-color:rgba(0,0,0,0.4);
  color:#fff;
  transition: all .6s;
  z-index: 200000;
  overflow-y: auto; /* メニューが多くなったらスクロールできるように */
}
.hamburger {
  position: fixed;
  left: 15px;
  top: 5px;
  width: 100px; /* クリックしやすいようにちゃんと幅を指定する */
  height: 100px; /* クリックしやすいようにちゃんと高さを指定する */
  cursor: pointer;
  z-index: 300000;
  /* background-color:rgba(255,255,255,0.5);
  border-radius:50%; */

}
.global-nav__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.global-nav__item {
  text-align: center;
  padding: 0 14px;
}
.global-nav__item a {
  display: block;
  padding: 8px 0;
  text-decoration: none;
  color: #BF8BB9;
  font-size:1.7vw;
	transition-duration: 0.6s
}
.global-nav__item a:hover {
  color:#03D3FB;
}

.global-nav ul#sns-link-btn {
	width:100%;
	height:auto;
	list-style-type: none;
	padding:10px 0;
	margin:0;
	display: flex;
	justify-content: center;
}

.global-nav ul#sns-link-btn li {
	width: 12%;
	height: auto;
	padding: 0;
	margin: 0 4%;
}

.global-nav ul#sns-link-btn li img {
	width:100%;
	opacity: 1;
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.global-nav ul#sns-link-btn li img:hover {
  opacity: 1;
  -webkit-animation: flash 1.5s;
  animation: flash 1.5s;
}

.global-nav #menu-logo {
	width:100%;
	height:auto;
	margin:0;
	padding:20px 0 10px;
	text-align:center;
}

.global-nav #menu-logo img {
	width:50%;
	height:auto;
}

.hamburger__line {
  position: absolute;
  left: 25px;
  width: 50px;
  height: 4px;
  background-color: #BF8BB9 !important;
  transition: all .6s;
}

.hamburger #menu {
  position: absolute;
  top: 61px;
  left: 23px;
  font-weight:bold;
  color:#BF8BB9;
  font-size:1.1em;
}


.hamburger__line--1 {
  top: 17px;
}
.hamburger__line--2 {
  top: 37px;
}
.hamburger__line--3 {
  top: 57px;
}
.black-bg {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 100;
  background-color: #000;
  opacity: 0;
  visibility: hidden;
  transition: all .6s;
  cursor: pointer;
}
/* 表示された時用のCSS */
.nav-open .global-nav {
  left: 0;
}
.nav-open .black-bg {
  opacity: .8;
  visibility: visible;
}
.nav-open .hamburger__line--1 {
  transform: rotate(45deg);
  top: 23px;

}
.nav-open .hamburger__line--2 {
  width: 0;
  left: 50%;

}
.nav-open .hamburger__line--3 {
  transform: rotate(-45deg);
  top: 23px;

}






header {
	width:100%;
	height:auto;
	background-color:#000000;
	margin:0;
	padding:0;
	position:relative;
	overflow:hidden;
}






/* ========================================
トップメイン画像まわり
========================================== */


#topmain-sp {
	display:none !important;
}

#topmain-pc {
	width:100%;
	height:auto;
	padding:0;
	margin:0;
	text-align:center;
	position:relative;
	overflow:hidden;
}

#topmain-pc h1#up1 {
	width:100%;
	height:auto;
	padding:0;
	margin:0;
}

#topmain-pc h1#up1 img {
	width:100%;
	height:auto;
	vertical-align:bottom;
}

   .st0{fill:url(#sleep_1_);}
	.st1{fill:none;stroke:#FFF;stroke-width:16;stroke-miterlimit:10;}

#topmain-pc .svgall {
	width:55%;
	height:auto;
	text-align:center;
	position:absolute;
	top:13%;
	left:15%;
	opacity:0;
	z-index:2;
}


#topmain-pc #up2 ,
#topmain-pc #up3 {
	width:100%;
	height:auto;
	text-align:center;
	position:absolute;
	top:0;
	left:0;
	opacity:0;
}

#topmain-pc #up2 img , #topmain-pc #up3 img {
	width:100%;
	height:auto;
	vertical-align:bottom;
}

#topmain-pc #gekijo {
	width:20%;
	height:auto;
	text-align:center;
	position:absolute;
	bottom:0;
	left:13%;
	z-index:5;
}

#topmain-pc #gekijo img {
	width:100%;
	height:auto;
}

#pc-logo-area {
	width:55%;
	height:auto;
	position:absolute;
	bottom:0;
	left:0;
}




/* 以下タブレット・スマホ */
@media (max-width: 699px) {
#topmain-pc {
	display:none !important;
}


#topmain-sp {
	display:block !important;
	width:100%;
	height:auto;
	margin:0;
	padding:0;
	position:relative;
	overflow:hidden;
}


#topmain-sp h1#up1sp {
	width:100%;
	height:auto;
	margin:0;
	padding:0;
}

#topmain-sp h1#up1sp img {
	width:100%;
	height:auto;
	vertical-align:bottom;
}

#topmain-sp .svgall {
	width:100%;
	height:auto;
	text-align:center;
	position:absolute;
	top:37%;
	left:0;
	opacity:0;
	z-index:3;
}


#topmain-sp #up2sp {
	width:100%;
	height:auto;
	text-align:center;
	position:absolute;
	top:0;
	left:0;
	opacity:0;
}

#topmain-sp #up3sp {
	width:100%;
	height:auto;
	text-align:center;
	position:absolute;
	top:0;
	left:0;
	opacity:0;
	z-index:2;
}


#topmain-sp #up2sp img , #topmain-sp #up3sp img {
	width:100%;
	height:auto;
	vertical-align:bottom;
}


.hamburger {
	display:block !important;
}

ul#nav-button {
	display:none !important;
}

}


/* 以下スマホ */
@media (max-width: 511px) {
#topmain-pc {
	display:none !important;
}


.navigation {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 60px;
  background:none;
}

.global-nav {
  position: fixed;
  right: -320px; /* これで隠れる */
  top: 0;
  width: 300px; /* スマホに収まるくらい */
  height: 100vh;
  padding-top: 50px;
  background-color:rgba(0,0,0,1);
  color:#fff;
  transition: all .6s;
  z-index: 200000;
  overflow-y: auto; /* メニューが多くなったらスクロールできるように */
}

.global-nav #menu-logo img {
	width:70%;
	height:auto;
}

.global-nav__item a {
  display: block;
  padding: 8px 0;
  text-decoration: none;
  font-size:1.2em;
}


.hamburger {
  position: fixed;
  left: 0px;
  top: 5px;
  width: 60px; /* クリックしやすいようにちゃんと幅を指定する */
  height: 60px; /* クリックしやすいようにちゃんと高さを指定する */
	display:block !important;
}

.hamburger__line {
  position: absolute;
  left: 15px;
  width: 30px;
  height: 2px;
  background-color: #000;
  transition: all .6s;
}
.hamburger__line--1 {
  top: 12px;
}
.hamburger__line--2 {
  top: 22px;
}
.hamburger__line--3 {
  top: 32px;
}

.hamburger #menu {
  position: absolute;
  top: 37px;
  left: 12px;
  font-weight:bold;
  font-size:0.8em;
}

/* 表示された時用のCSS */
.nav-open .global-nav {
  right: 0;
}
.global-nav ul#sns-link-btn li {
	width: 14%;
	height: auto;
	padding: 0;
	margin: 0 2%;
}

.global-nav ul#sns-link-btn li img {
	width:82%;
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}


}

/* ========================================
グラデ背景エリア
========================================== */

#grade-bg {
  background: linear-gradient(90deg, #6A899B, #395B80, #1D2E5C, #020308);
  background-size: 600% 600%;
  animation: bggrade 12s ease infinite;
}


@keyframes bggrade { 
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}
}





/* ========================================
SNSボタンアリア
========================================== */

#button-area {
	width:100%;
	height:auto;
	margin:0;
	padding:50px 0 70px;
  background: -moz-linear-gradient(bottom, rgba( 2,3,8 , 0 ) 30%, rgba( 2,3,8 , 1 ));
  background: -webkit-linear-gradient(bottom, rgba( 2,3,8 , 0 ) 30%, rgba( 2,3,8 , 1 ));
  background: linear-gradient(to top, rgba( 2,3,8 , 0 ) 30%, rgba( 2,3,8 , 1 ));
}

#button-area ul#other-page-banner {
	width:100%;
	height:auto;
	margin:0;
	padding:20px 0;
	list-style-type:none;
	display:flex;
	justify-content:center;
	flex-wrap:wrap;
}

#button-area ul#other-page-banner li {
	width:20%;
	height:auto;
	margin:0 10px;
}

#button-area ul#other-page-banner li img {
	width:100%;
	height:auto;

}



#button-area #prize-sp {
	display:none;
}

#button-area #prize-pc {
	width:100%;
	height:auto;
	margin:0;
	padding:20px 0;
	display:block;
	text-align:center;
}

#button-area #prize-pc img {
	width:70%;
	height:auto;
}

#button-area #date-sp {
	display:none;
}

#button-area #date-pc {
	width:100%;
	height:auto;
	margin:0;
	padding:20px 0;
	display:block;
	text-align:center;
}

#button-area #date-pc img {
	width:80%;
	height:auto;
}

#button-area ul#banners {
	width:100%;
	height:auto;
	margin:0;
	padding:0 0 20px;
	list-style-type:none;
	display:flex;
	justify-content:center;
	align-items:center;
}

#button-area ul#banners li {
	width:20%;
	height:auto;
	margin:0 3%;
}

#button-area ul#banners li img {
	width:100%;
	height:auto;
}

#button-area #ticket-banners {
	width:100%;
	height:auto;
	margin:0;
	padding:0;
	display:flex;
	justify-content: center;
	flex-wrap:wrap;
}

#button-area #ticket-banners #mubi {
	width:100%;
	height:auto;
	margin:0;
	padding:0 0 40px;
	display:block;
	text-align:center;
}

#button-area #ticket-banners #mubi img {
	width:20%;
	height:auto;
}

#button-area #ticket-banners #theater-bnr {
	width:100%;
	height:auto;
	margin:0;
	padding:0 0 40px;
	display:block;
	text-align:center;
}

#button-area #ticket-banners #theater-bnr img {
	width:20%;
	height:auto;
}

#button-area ul#other-page-banner li a:hover ,
ul#banners li a:hover ,
#mubi a:hover ,
#theater-bnr a:hover {
  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;
  }
}


ul.social_buttons {
	list-style-type: none;
	padding:20px 0 0;
	margin:0;
	text-align: center;
	width:100%;
	display:flex;
	justify-content: center;
	flex-wrap:wrap;

}
ul.social_buttons li {
	height: auto;
	width:100px;
	margin:0 3px 0 3px;
	display: inline-block;
}

ul.social_buttons li.checkin {
	width:110px;
}

.fb_iframe_widget > span {
  vertical-align: baseline !important;
}

#button-area #bodycopy {
	width:80%;
	height:auto;
	margin:0;
	padding:100px 10% 0;
	display:block;
	text-align:center;
	color:#fff;
	font-size:1.8vw;
}


/* 以下タブレット・スマホ */
@media (max-width: 800px) {
#button-area {
	width:100%;
	height:auto;
	padding-bottom:30px;
}

#button-area ul#other-page-banner li {
	width:60%;
	height:auto;
	margin:10px 0;
}


#button-area #prize-pc {
	display:none !important;
}

#button-area #prize-sp {
	width:100%;
	height:auto;
	margin:0;
	padding:20px 0;
	display:block !important;
	text-align:center;
}

#button-area #prize-sp img {
	width:90%;
	height:auto;
}

#button-area #date-pc {
	display:none !important;
}

#button-area #date-sp {
	width:100%;
	height:auto;
	margin:0;
	padding:20px 0;
	display:block !important;
	text-align:center;
}

#button-area #date-sp img {
	width:90%;
	height:auto;
}

#button-area #ticket-banners {
	width:100%;
	height:auto;
	margin:0;
	padding:0;
	display:flex;
	justify-content: center;
	flex-wrap:wrap;
	flex-direction: column-reverse;
}

#button-area #ticket-banners #mubi {
	width:100%;
	height:auto;
	margin:0;
	padding:0 0 20px;
	display:block;
	text-align:center;
}

#button-area #ticket-banners #mubi img {
	width:60%;
	height:auto;
}

#button-area #ticket-banners #theater-bnr {
	width:100%;
	height:auto;
	margin:0;
	padding:0 0 10px;
	display:block;
	text-align:center;
}

#button-area #ticket-banners #theater-bnr img {
	width:60%;
	height:auto;
}

#button-area ul#banners {
	width:100%;
	height:auto;
	margin:0;
	padding:0 0 20px;
	list-style-type:none;
	display:flex;
	justify-content:center;
	align-items:center;
	flex-wrap:wrap;
}

#button-area ul#banners li {
	width:60%;
	height:auto;
	margin:10px 3%;
}

#button-area ul#banners li img {
	width:100%;
	height:auto;
}


#button-area ul.social_buttons {
	list-style-type: none;
	padding:0;
	margin-left:5%;
	text-align: center;
	width:90%;
	display:flex;
	justify-content: center;
	flex-wrap:wrap;
}
ul.social_buttons li {
	height: auto;
	width:100px;
	margin:5px;
	display: inline-block;
}

ul.social_buttons li.checkin {
	width:120px;
}

.fb_iframe_widget > span {
  vertical-align: baseline !important;
}


#button-area #bodycopy {
	width:90%;
	height:auto;
	margin:0;
	padding:50px 5% 10px;
	display:block;
	text-align:center;
	color:#fff;
	font-size:1.2em;
}



}



/* ========================================
プレイリスト
========================================== */

#playlist {
	width:100%;
	height:1200px;
	margin:0;
	padding:80px 0;
	text-align:center;
	position:relative;
}

#playlist h2 {
	width:100%;
	height:auto;
	text-align:center;
	padding:20px 0 50px;
	margin:0;
}

#playlist h2 img {
	width:30%;
	height:auto;
}

#playlist iframe {
	display:inline-block;
	position:relative;
	width:90%;
	max-width:1000px;
	z-index:1;
}

#playlist #playlist-bgsp {
	display:none;
}

#playlist #playlist-bg {
	display:block;
	width:100%;
	height:auto;
	margin:0;
	padding:200px 0 0;
	position:absolute;
	bottom:0;
	left:0;
}

#playlist #playlist-bg img {
	width:100%;
	height:auto;
	vertical-align:bottom;
}




/* 以下タブレット・スマホ */
@media (max-width: 800px) {

#playlist {
	width:100%;
	height:900px;
	margin:0;
	padding:80px 0;
	text-align:center;
	position:relative;
}

#playlist h2 img {
	width:60%;
	height:auto;
}

#playlist #playlist-bg {
	display:none;
}

#playlist #playlist-bgsp {
	display:block;
	width:100%;
	height:auto;
	margin:0;
	padding:0;
	position:absolute;
	bottom:0;
	left:0;
}

#playlist #playlist-bgsp img {
	width:100%;
	height:auto;
	vertical-align:bottom;
}

}

/* 以下タブレット・スマホ */
@media (max-width: 600px) {

#playlist {
	width:100%;
	height:740px;
	margin:0;
	padding:80px 0;
	text-align:center;
	position:relative;
}

}


/* ========================================
トレーラー
========================================== */


.trailer {
	width:90%;
	height:auto;
	margin-top:-1px;
	padding:100px 5% 120px;
  background: -moz-linear-gradient(top, rgba( 2,3,8 , 1 ), rgba( 2,3,8 , 0 ));
  background: -webkit-linear-gradient(top, rgba( 2,3,8 , 1 ), rgba( 2,3,8 , 0 ));
  background: linear-gradient(to bottom, rgba( 2,3,8 , 1 ), rgba( 2,3,8 , 0 ));
}

.trailer h2 {
	width:100%;
	height:auto;
	text-align:center;
	padding:20px 0;
	margin:0;
}

.trailer h2 img {
	width:30%;
	height:auto;
}


.video {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  margin-bottom: 10px;
  display:block;
}
 
.video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-sp {
  display:none !important;
}



/* 以下スマホ */
@media (max-width: 800px) {


.trailer {
	padding:70px 5% 30px;
}


.trailer h2 img {
	width:60%;
}
}

@media (max-width: 525px) {

.video {

}
.trailer {
	width:95%;
	height:auto;
	margin:0;
	padding:20px 2.5% 70px;
}

.trailer h2 {
	width:100%;
	height:auto;
	text-align:center;
	padding:0;
	margin:70px 0 20px;
	position:relative;
}

.trailer h2 img {
	width:50%;
}

}




/* ========================================
ストーリー＆イントロダクション
========================================== */

#story {
	width:100%;
	height:auto;
	padding:50px 0 0;
	margin:0;
}

#story h2#pch2 {
	display:block;
}
#story h2#sph2 {
	display:none;
}

#story h2 {
	width:100%;
	height:auto;
	padding:0;
	margin:0;
	text-align:center;
}

#story h2 img {
	width:60%;
	height:auto;
}



#story #story-box {
	width:100%;
	height:auto;
	margin:0;
	padding:0;
	position:relative;
}

#story #story-box .slider-area {
	width:100%;
	height:auto;
	padding:0;
	margin: 0 ;
	display:block;
	overflow:hidden;
}

#story #story-box h3 {
	width:100%;
	height:auto;
	padding:50px 0 10px;
	margin:0;
	text-align:center;
	color:#8ECAD5;
	font-size:1.7vw;
	position:absolute;
	top:5%;
	left:0;
	z-index:2;
}


#story #story-box #story-txt {
	width:80%;
	height:auto;
	padding:0 10%;
	margin:0;
	text-align:left;
	color:#fff;
	font-size:1.3vw;
	position:absolute;
	top:40%;
	left:0;
	z-index:2;
}

#story #story-box2 {
	width:100%;
	height:auto;
	margin-top:-1px;
	padding:0;
	position:relative;
}

#story #story-box2 #movie-list-imgsp {
	display:none;
}

#story #story-box2 #movie-list-img {
	display:block;
	width:100%;
	height:auto;
	margin:0;
	padding:0;
}

#story #story-box2 #movie-list-img img {
	width:100%;
	height:auto;
	vertical-align:bottom;
}

#story #story-box2 #movie-list {
	width:60%;
	height:auto;
	padding:0;
	margin:0;
	text-align:right;
	color:#fff;
	font-size:1.2vw;
	position:absolute;
	top:20%;
	right:2%;
	z-index:2;
}

#story #story-box2 #movie-list h4 {
	width:100%;
	height:auto;
	margin:0;
	padding:80px 0 5px;
}

#story #story-box2 #movie-list p {
	margin:0;
	padding:0;
}

#story #story-box2 #movie-list p.daylight {
	letter-spacing: -1px;
}




#story #story-box3 {
	width:100%;
	height:auto;
	margin-top:-1px;
	padding:0;
	position:relative;
}

#story #story-box3 #catch-bgsp {
	display:none;
}

#story #story-box3 #catch-bg {
	display:block;
	width:100%;
	height:auto;
	margin:0;
	padding:0;
}

#story #story-box3 #catch-bg img {
	width:100%;
	height:auto;
	vertical-align:bottom;
}

#story #story-box3 #catch-box {
	width:100%;
	height:auto;
	margin:0;
	padding:0;
	position:absolute;
	top:0;
	left:0;
	display:flex;
	justify-content: flex-start;
}

#story #story-box3 #catch-box #catch1 {
	width:2%;
	height:auto;
	margin:10% 2% 10% 20%;
	padding:0;
}

#story #story-box3 #catch-box #catch2 {
	width:2%;
	height:auto;
	margin:10% 2%;
	padding:0;
}

#story #story-box3 #catch-box #catch1 img ,
#story #story-box3 #catch-box #catch2 img {
	width:100%;
	height:auto;
}


/* 以下タブレット・スマホ */
@media (max-width: 800px) {

#story h2#sph2 {
	display:block !important;
}
#story h2#pch2 {
	display:none !important;
}


#story h2 {
	width:100%;
	height:auto;
	padding:0;
	margin:0;
	text-align:center;
}

#story h2 img {
	width:80%;
	height:auto;
}

#story #story-box h3 {
	width:100%;
	height:auto;
	padding:30px 0 10px;
	margin:0;
	text-align:center;
	color:#8ECAD5;
	font-size:1.2em;
	position:absolute;
	top:5%;
	left:0;
	z-index:2;
}


#story #story-box #story-txt {
	width:90%;
	height:auto;
	padding:0 5%;
	margin:0;
	text-align:left;
	color:#fff;
	font-size:1em;
	position:absolute;
	top:70%;
	left:0;
	z-index:2;
}

#story #story-box2 #movie-list-img {
	display:none !important;
}

#story #story-box2 #movie-list-imgsp {
	display:block !important;
	width:100%;
	height:auto;
	margin:0;
	padding:0;
}

#story #story-box2 #movie-list-imgsp img {
	width:100%;
	height:auto;
	vertical-align:bottom;
}

#story #story-box2 #movie-list {
	width:90%;
	height:auto;
	padding:0;
	margin:0;
	text-align:left;
	color:#fff;
	font-size:1em;
	position:absolute;
	top:8%;
	left:5%;
	z-index:2;
}

#story #story-box2 #movie-list h4 {
	width:100%;
	height:auto;
	margin:0;
	padding:80px 0 5px;
	font-size:1.3em;
}

#story #story-box3 #catch-bg {
	display:none !important;
}

#story #story-box3 #catch-bgsp {
	display:block !important;
	width:100%;
	height:auto;
	margin:0;
	padding:0;
}

#story #story-box3 #catch-bgsp img {
	width:100%;
	height:auto;
	vertical-align:bottom;
}

#story #story-box3 #catch-box {
	width:100%;
	height:auto;
	margin:0;
	padding:0;
	position:absolute;
	top:0;
	left:0;
	display:flex;
	justify-content: center;
}

#story #story-box3 #catch-box #catch1 {
	width:7%;
	height:auto;
	margin:55% 10% 0;
	padding:0;
}

#story #story-box3 #catch-box #catch2 {
	width:7%;
	height:auto;
	margin:55% 10% 0;
	padding:0;
}




}


/* 以下タブレット・スマホ */
@media (max-width: 600px) {

#story #story-box h3 {
	width:100%;
	height:auto;
	padding:30px 0 10px;
	margin:0;
	text-align:center;
	color:#8ECAD5;
	font-size:1.2em;
	position:absolute;
	top:5%;
	left:0;
	z-index:2;
}


#story #story-box .slider-area {
	width:100%;
	height:auto;
	padding:400px 0 0;
	margin: 0 ;
	display:block;
	overflow:hidden;
}

#story #story-box #story-txt {
	width:90%;
	height:auto;
	padding:0 5%;
	margin:0;
	text-align:left;
	color:#fff;
	font-size:1em;
	position:absolute;
	top:35%;
	left:0;
	z-index:2;
}


}



/* ========================================
スライダー
========================================== */

/* スライダー  */
.slider-area {
	width:100%;
	height:auto;
	padding:0;
	margin: 0 ;
	display:block;
	overflow:hidden;
	position:relative;
}

.slider-area .pcslide {
	display:block;
}
.slider-area .spslide {
	display:none;
}

.slider-area .forest-slider {
	width:100%;
	height:auto;
	margin:0;
	padding:00;
	text-align:center;
}

.slider-area .multiple-slider {
	width:100%;
	height:auto;
	margin:0;
	padding:0;
	text-align:center;
}

.forest-slider .slide-img , .multiple-slider .slide-img {
	width:30%;
	height:auto;
	margin:0;
	padding:0;
}

.forest-slider .slide-img img {
	width:100%;
	margin:0;
	padding:0;
	vertical-align:bottom;
}

.multiple-slider .slide-img img {
	width:100%;
	margin:0;
	padding:0;
}






/* 以下タブレット・スマホ */
@media (max-width: 800px) {

.slider-area .spslide {
	display:block !important;
}
.slider-area .pcslide {
	display:none !important;
}



}




/* ========================================
キャスト
========================================== */

#cast {
	width:100%;
	height:auto;
	margin-top:-1px;
	padding:0;
	position:relative;
  background: -moz-linear-gradient(top, rgba( 2,3,8 , 1 ), rgba( 2,3,8 , 0 ));
  background: -webkit-linear-gradient(top, rgba( 2,3,8 , 1 ), rgba( 2,3,8 , 0 ));
  background: linear-gradient(to bottom, rgba( 2,3,8 , 1 ), rgba( 2,3,8 , 0 ));
	overflow-x:hidden;
}

#cast h2 {
	width:100%;
	height:auto;
	padding:100px 0 50px;
	margin:0;
	text-align:center;
}

#cast h2 img {
	width:30%;
	height:auto;
}

#cast .cast-unit {
	width:100%;
	height:auto;
	margin:0;
	padding:0;
	position:relative;
}

#cast .cast-unit .cast-spimg {
	display:none;
}

#cast .cast-unit .cast-left {
	display:block;
	width:52.77%;
	height:auto;
	margin:0;
	padding:0;
}

#cast .cast-unit .cast-right {
	display:block;
	width:52.77%;
	height:auto;
	margin:0;
	padding:0;
	position:absolute;
	top:0;
	right:0;
}

#cast .cast-unit .cast-left img ,
#cast .cast-unit .cast-right img {
	width:100%;
	height:auto;
	vertical-align:bottom;
}

#cast .cast-unit .cast-text {
	width:45%;
	height:auto;
	margin:0;
	padding:0;
	position:absolute;
}

#cast .cast-unit .cast-text h3 {
	width:100%;
	height:auto;
	margin:0 0 10px;
	padding:0;
	text-align:left;
	font-size:1.8vw;
}

#cast .cast-unit .cast-text p {
	width:100%;
	height:auto;
	margin:0
	padding:0;
	text-align:left;
	font-size:1.3vw;
}

#cast .cast-unit #cast1left {
	position:relative;
	transform: translateX(-100%);
}

#cast .cast-unit #cast1right {
	transform: translateX(100%);
}


#cast .cast-unit #cast1txt {
	top:15%;
	right:5%;
	transform: translateX(115%);
}

#cast .cast-unit #cast1txt h3 {
	color:#8ECAD5;
}

#cast .cast-unit #cast1txt p {
	color:#fff;
}



#cast .cast-unit #cast2left {
	position:relative;
	transform: translateX(-100%);
}

#cast .cast-unit #cast2right {
	transform: translateX(100%);
}


#cast .cast-unit #cast2txt {
	top:15%;
	left:5%;
	transform: translateX(-115%);
}

#cast .cast-unit #cast2txt h3 {
	color:#C288B8;
}

#cast .cast-unit #cast2txt p {
	color:#fff;
}

#cast .cast-unit #cast3left {
	position:relative;
	transform: translateX(-100%);
}

#cast .cast-unit #cast3right {
	transform: translateX(100%);
}

#cast .cast-unit #cast3txt {
	top:15%;
	right:5%;
	transform: translateX(115%);
}

#cast .cast-unit #cast3txt h3 {
	color:#34587C;
}

#cast .cast-unit #cast3txt p {
	color:#000;
	padding:10px;
	font-weight: 600; 
}


/* 以下タブレット・スマホ */
@media (max-width: 800px) {

#cast h2 img {
	width:60%;
	height:auto;
}


#cast .cast-unit .cast-spimg {
	display:block !important;
	width:100%;
	height:auto;
	margin:0;
	padding:20px 0;
}

#cast .cast-unit .cast-spimg img {
	width:100%;
	height:auto;
}


#cast .cast-unit .cast-left ,
#cast .cast-unit .cast-right {
	display:none !important;
}

#cast .cast-unit .cast-text {
	width:90%;
	height:auto;
	margin:0;
	padding:0 5%;
	position:static;
}

#cast .cast-unit #cast1txt ,
#cast .cast-unit #cast2txt ,
#cast .cast-unit #cast3txt {
	transform: translateX(0%);
}


#cast .cast-unit .cast-text h3 {
	width:100%;
	height:auto;
	margin:0 0 10px;
	padding:0;
	text-align:center;
	font-size:1.2em;
}

#cast .cast-unit .cast-text p {
	width:100%;
	height:auto;
	margin:0
	padding:0;
	text-align:left;
	font-size:1em;
}

#cast .cast-unit #cast3txt p {
	color:#fff;
	font-weight: 400 !important; 
}

#cast .cast-unit #cast1txt h3 ,
#cast .cast-unit #cast2txt h3 ,
#cast .cast-unit #cast3txt h3 {
	font-size:1.4em;
}


#cast .cast-unit #cast3txt h3 {
	color:#C288B8;
}


}


/* ========================================
フッター
========================================== */

footer {
	width:100%;
	height:auto;
	padding:0;
	margin:0;
}

footer #foot-img-unit {
	display:block;
	width:100%;
	height:auto;
	padding:0;
	margin:0;
	position:relative;
}

footer #foot-img-unit #foot1sp ,
footer #foot-img-unit #foot2sp ,
footer #foot-img-unit #foot3sp ,
footer #foot-img-unit #foot4sp 
{
	display:none;
}

footer #foot-img-unit #foot1 {
	display:block;
	width:100%;
	height:auto;
	padding:0;
	margin:0;
	position:relative;
	z-index:2;
}

footer #foot-img-unit #foot2 ,
footer #foot-img-unit #foot3 ,
footer #foot-img-unit #foot4 
 {
	display:block;
	width:100%;
	height:auto;
	padding:0;
	margin:0;
	position:absolute;
	top:0;
	left:0;
}

footer #foot-img-unit #foot2 {
	z-index:1;
}
footer #foot-img-unit #foot3 {
	z-index:3;
}
footer #foot-img-unit #foot4 {
	z-index:4;
}



footer #foot-img-unit #foot1 img ,
footer #foot-img-unit #foot2 img ,
footer #foot-img-unit #foot3 img ,
footer #foot-img-unit #foot4 img 
{
	width:100%;
	height:auto;
	vertical-align:bottom;
}

footer #theater-bnr {
	width:100%;
	height:auto;
	margin:0;
	padding:20px 0 40px;
	display:block;
	text-align:center;
	background:#030000;
}

footer #theater-bnr img {
	width:15%;
	height:auto;
}

footer ul#sns-link-btn {
	display:none;
}

footer ul#banners {
	width:100%;
	height:auto;
	margin:0;
	padding:0 0 50px;
	list-style-type:none;
	display:flex;
	justify-content:center;
	align-items:center;
	background:#030000;
}

footer ul#banners li {
	width:15%;
	height:auto;
	margin:0 3%;
}

footer ul#banners li img {
	width:100%;
	height:auto;
}



footer .copyright {
	width:100%;
	height:auto;
	padding:5px 0 5px;
	color:#fff;
	text-align:center;
	font-size:1.1vw;
	background:#020308;
}

footer .copyright a {
	color:#fff;
}




@media (max-width: 800px) {

footer {
	width:100%;
	height:auto;
	padding:0;
	text-align:center;
	margin:0;
	vertical-align:bottom;
}

footer #foot-img-unit #foot1 ,
footer #foot-img-unit #foot2 ,
footer #foot-img-unit #foot3 ,
footer #foot-img-unit #foot4 
{
	display:none !important;
}

footer #foot-img-unit #foot1sp {
	display:block !important;
	width:100%;
	height:auto;
	padding:0;
	margin:0;
	position:relative;
	z-index:2;
}

footer #foot-img-unit #foot2sp ,
footer #foot-img-unit #foot3sp ,
footer #foot-img-unit #foot4sp 
 {
	display:block !important;
	width:100%;
	height:auto;
	padding:0;
	margin:0;
	position:absolute;
	top:0;
	left:0;
}

footer #foot-img-unit #foot2sp {
	z-index:1;
}
footer #foot-img-unit #foot3sp {
	z-index:3;
}
footer #foot-img-unit #foot4sp {
	z-index:4;
}


footer #foot-img-unit #foot1sp img ,
footer #foot-img-unit #foot2sp img ,
footer #foot-img-unit #foot3sp img ,
footer #foot-img-unit #foot4sp img 
{
	width:100%;
	height:auto;
	vertical-align:bottom;
}

footer ul#banners {
	display:none;
}

footer #theater-bnr img {
	width:60%;
	height:auto;
}


footer ul#sns-link-btn {
	width:100%;
	height:auto;
	margin:0;
	padding:20px 0;
	list-style-type:none;
	display:flex;
	justify-content: center;
	background:#020308;
}

footer ul#sns-link-btn li {
	width:10%;
	height:auto;
	margin:0 3%;
}

footer ul#sns-link-btn li img {
	width:100%;
	height:auto;
}

footer #foot-img-unit #foot-theater {
	width:30%;
	height:auto;
	position:absolute;
	top:59%;
	right:16%;
}

footer #foot-img-unit #foot-theater img {
	width:100%;
	height:auto;

}




footer .copyright {
	width:100%;
	height:auto;
	padding:5px 0 5px;
	color:#fff;
	text-align:center;
	font-size:0.7em;
}

}



/* ========================================
コメント
========================================== */

#grade-bg-com {
  background: linear-gradient(90deg, #000000, #112337, #172F48, #1F3E60);
  background-size: 600% 600%;
  animation: bggrade 10s ease infinite;
}

#comments {
	width:100%;
	height:auto;
	margin:0;
	padding:80px 0;
	text-align:center;
	position:relative;
}

#comments h2 {
	width:56%;
	height:auto;
	text-align:left;
	padding:20px 0 50px 44%;
	margin:0;
}

#comments h2 img {
	width:45%;
	height:auto;
}

#comments .com-unit {
	width:56%;
	height:auto;
	margin:80px 0% 120px 44%;
	padding:0;
	text-align:left;
}

#comments .com-unit .com-txt {
	width:100%;
	height:auto;
	margin:0;
	padding:0;
	color:#fff;
	font-size:1.3vw;
}

#comments .com-unit .com-txt span.com-bold {
	font-size:1.8vw;
	font-weight:bold;

}

#comments .com-unit .com-name {
	width:100%;
	height:auto;
	margin:0;
	padding:0;
	color:#fff;
	font-size:1.1vw;
}

#comments .com-unit .com-name span.name-pink {
	color:#BA81B6;
	font-size:1.8vw;
	font-weight:bold;
}

#comments .com-unit .com-name span.name-blue {
	color:#7484C1;
	font-size:1.8vw;
	font-weight:bold;
}

#comments .com-last {
	width:56%;
	height:auto;
	margin:80px 0% 50px 44% !important;
	padding:0;
	text-align:left;
}

#comments .junf-unit {
	width:56%;
	height:auto;
	margin:80px 3% 200px 41% !important;
	padding:0;
	text-align:right !important;
}

#comments .junf-unit .junf {
	font-size:1.1vw;
	text-align:right;
	color:#fff;
}


#comments #com-foot-sp {
	display:none;
}

#comments #com-foot {
	display:block;
	width:100%;
	height:auto;
	margin:0;
	padding:0;
	text-align:left;
	position:fixed;
	bottom:0;
	left:0;
}

#comments #com-foot img {
	width:70%;
	height:auto;
	vertical-align:bottom;
}



/* 以下タブレット・スマホ */
@media (max-width: 800px) {

#comments h2 {
	width:100%;
	height:auto;
	margin:0;
	padding:20px 0;
	text-align:center;
}

#comments h2 img {
	width:60%;
	height:auto;
}

#comments .com-unit {
	width:80%;
	height:auto;
	margin:90px 5% 90px 15%;
	padding:0;
	text-align:left;
}

#comments .com-last {
	width:80%;
	height:auto;
	margin:90px 5% 90px 15% !important;
	padding:0;
	text-align:left;

}

#comments .junf-unit {
	width:80%;
	height:auto;
	margin:0 20% 200px 0 !important;
	padding:0;
	text-align:right;
	color:#fff;
}

#comments .com-unit .com-txt {
	font-size:0.95em;
}

#comments .com-unit .com-txt span.com-bold {
	font-size:1.2em;
}

#comments .com-unit .com-name {
	font-size:0.8em;
}

#comments .com-unit .com-name span.name-pink ,
#comments .com-unit .com-name span.name-blue {
	font-size:1.8em;
	font-weight:bold;
}

#comments .junf-unit .junf {
	font-size:0.8em;
	text-align:right;
}


}




/* 以下タブレット・スマホ */
@media (max-width: 600px) {

#comments {
	width:100%;
	height:auto;
	margin:0;
	padding:80px 0;
	text-align:center;
	position:relative;
}

#comments h2 {
	width:100%;
	height:auto;
	margin:0;
	padding:20px 0 0;
	text-align:center;
}

#comments h2 img {
	width:60%;
	height:auto;
}

#comments .com-unit {
	width:98%;
	height:auto;
	margin:60px 1% 200px;
	padding:0;
	text-align:center;
}

#comments .com-unit .com-txt {
	font-size:1em;
}

#comments .com-unit .com-txt span.com-bold {
	font-size:1.3em;
}

#comments .com-unit .com-name {
	font-size:0.8em;
}

#comments .com-unit .com-name span.name-pink ,
#comments .com-unit .com-name span.name-blue {
	font-size:1.8em;
	font-weight:bold;
}

#comments .com-last {
	width:98%;
	height:auto;
	margin:60px 1% 50px !important;
	padding:0;
	text-align:center;
}


#comments .junf-unit {
	width:80%;
	height:auto;
	margin:0 10% 200px 10% !important;
	padding:0;
	text-align:right;
	color:#fff;
}

#comments .junf-unit .junf {
	font-size:0.8em;
	text-align:right;
}




#comments #com-foot {
	display:none;
}

#comments #com-foot-sp {
	display:block;
	width:100%;
	height:auto;
	margin:0;
	padding:0;
	text-align:left;
	position:fixed;
	bottom:0;
	left:0;
}

#comments #com-foot-sp img {
	width:100%;
	height:auto;
	vertical-align:bottom;
}


}


/* ========================================
タイアップ
========================================== */

#tieup {
	width:100%;
	height:auto;
	margin:0;
	padding:80px 0;
}

#tieup h2#tieup-headsp {
	display:none;
}

#tieup h2#tieup-headpc {
	display:block;
	width:100%;
	height:auto;
	margin:0;
	padding:30px 0 10px;
	text-align:center;
}

#tieup h2#tieup-headpc img {
	width:60%;
	height:auto;
}

#tieup #tieup-intro {
	width:60%;
	height:auto;
	margin:0;
	padding:30px 20%;
	text-align:left;
	color:#fff;
	font-size:1.3vw;
}

h3.h3sp {display:none;}
h3.h3pc {display:block;}




#tieup .futa-area {
	width:60%;
	height:auto;
	margin:80px 20%;
	padding:0;
	position:relative;
}

#tieup .futa-area .futa {
	width:98%;
	height:100%;
	margin:0;
	padding:0 2%;
	border:1px solid #BF8BB9;
	background:#BF8BB9;
	display:flex;
	justify-content:center;
	position:absolute;
	top:0;
	left:0;
	z-index:1;
}

#tieup .futa-area .tieup-box-mid {
	width:98%;
	height:auto;
	margin:0;
	padding:40px 2%;
	display:flex;
	justify-content:center;
	flex-wrap:wrap;
	position:absolute;
	top:0;
	left:0;
	z-index:2;
}

#tieup .futa-area #mid2 {
	padding:43px 2%;
}
#tieup .futa-area #mid3 {
	padding:40px 2%;
}


#tieup .futa-area .tieup-box {
	width:98%;
	height:auto;
	margin:80px 0;
	padding:40px 2%;
	border:1px solid #BF8BB9;
	display:flex;
	justify-content:center;
	flex-wrap:wrap;
}

#tieup .futa-area .tieup-box .thea-img ,
#tieup .futa-area .tieup-box-mid .thea-img {
	width:30%;
	height:auto;
	margin:0;
	padding:0;
}

#tieup .futa-area .tieup-box .thea-img img ,
#tieup .futa-area .tieup-box-mid .thea-img img {
	width:100%;
	height:auto;
}

#tieup .futa-area .tieup-box .thea-txt ,
#tieup .futa-area .tieup-box-mid .thea-txt {
	width:60%;
	height:auto;
	margin-left:5%;
	padding:0;
	color:#fff;
	text-align:left;
	font-size:1.25vw;
}

#tieup .futa-area .tieup-box .thea-txt h3 ,
#tieup .futa-area .tieup-box-mid .thea-txt h3 {
	width:100%;
	height:auto;
	margin:0 0 15px;
	padding:0;
	color:#BF8BB9;
	font-size:1.5vw;
	text-decoration:underline;
}

#tieup .futa-area .tieup-box .thea-txt h3 a ,
#tieup .futa-area .tieup-box-mid .thea-txt h3 a {
	color:#BF8BB9;
}

#tieup .futa-area .tieup-box .oto-txt ,
.sleepday-txt ,
#tieup .futa-area .tieup-box .salt-txt {
	visibility:hidden;
}
#tieup .futa-area .tieup-box .salt-txt  {
	padding:20px 0;
}
#tieup .futa-area .tieup-box .salt2 {
	padding:0 !important;
}

#tieup .futa-area .tieup-box .oto-txt ,
#tieup .futa-area .tieup-box-mid .oto-txt {
	display:flex;
	justify-content:center;
	align-items: center;
	flex-wrap:wrap;
}
#tieup .futa-area .tieup-box-mid .oto-txt h3 ,
#tieup .futa-area .tieup-box-mid .oto-txt h3 a {
	color:#FFF !important;
}

#tieup .futa-area .tieup-box .oto-txt p ,
#tieup .futa-area .tieup-box-mid .oto-txt p {
	display:block;
	width:60%;
	height:auto;
	color:#FFF;
}

#tieup .futa-area .tieup-box-mid .oto-txt p a {
	color:#FFF;
}

#tieup .futa-area .tieup-box .salt-txt ,
#tieup .futa-area .tieup-box-mid .salt-txt {
	padding:0 0 20px;
}

#tieup .futa-area .tieup-box-mid .salt2 {
	padding:0 !important;
}

#tieup .futa-area .tieup-box .salt-txt h3 ,
#tieup .futa-area .tieup-box-mid .salt-txt h3 {
	color:#FFF !important;
	text-decoration:none !important;
	margin:0 !important;
	padding:0 0 20px !important;
}
#tieup .futa-area .tieup-box-mid .salt-txt h3 a {
	color:#FFF !important;
	text-decoration:underline !important;
}


#tieup .futa-area .tieup-box-mid .salt-txt h3 span {
	background:#BF8BB9;
	text-decoration:none !important;
	margin-right:20px;
}

#tieup .futa-area .tieup-box-mid .salt-txt .goodnight {
	display:block;
	width:100%;
	height:auto;
	color:#FFF;
	font-size:1.2vw;
}

#tieup .futa-area .tieup-box-mid .salt-txt .goodnight2 {
	display:block;
	width:100%;
	height:auto;
	margin-top:20px;
	padding:10px;
	color:#FFF;
	font-size:1.0vw;
	background:#BF8BB9;
}

#tieup .futa-area .tieup-box-mid .salt-txt .goodnight2 .oblique {
	font-style: oblique;
}

#tieup .futa-area .tieup-box-mid .salt-txt .goodnight2 a {
	color:#FFF;
}


#tieup .futa-area .tieup-box .oto-txt #oto-qr ,
#tieup .futa-area .tieup-box-mid .oto-txt #oto-qr {
	display:block;
	width:40%;
	height:auto;
	text-align:center;
	opacity:0;
}

#tieup .futa-area .tieup-box .oto-txt #oto-qr img ,
#tieup .futa-area .tieup-box-mid .oto-txt #oto-qr img {
	width:80%;
	height:auto;
}

#tieup .futa-area .tieup-box h3.sleepday-head ,
#tieup .futa-area .tieup-box-mid h3.sleepday-head {
	width:100%;
	height:auto;
	margin:0 0 15px;
	padding:0;
	color:#fff;
	text-align:center;
	font-size:1.5vw;
	display:flex;
	justify-content: center;
	align-items: center;
}

#tieup .futa-area .tieup-box h3.sleepday-head img ,
#tieup .futa-area .tieup-box-mid h3.sleepday-head img {
	width:15%;
	margin-right:15px;
}

#tieup .futa-area .tieup-box .sleepday-purple ,
#tieup .futa-area .tieup-box-mid .sleepday-purple {
	width:80%;
	height:auto;
	margin:10px 10%;
	padding:20px;
	text-align:center;
	background:#BF8BB9;
	color:#000;
}

#tieup .futa-area .tieup-box-mid .sleepday-purple a {
	color:#000;
}

#tieup .futa-area .tieup-box .startday ,
#tieup .futa-area .tieup-box-mid .startday {
	width:100%;
	height:auto;
	margin:15px 0;
	padding:0;
	text-align:center;
	color:#fff;
	font-size:1.5vw;
}

#tieup .futa-area .tieup-box ul.sleepday-white ,
#tieup .futa-area .tieup-box-mid ul.sleepday-white {
	width:60%;
	height:auto;
	margin:10px 15% 10px 25%;
	padding:20px;
	text-align:left;
	color:#fff;
}
#tieup .futa-area .tieup-box .startday {
	visibility:hidden;
}

#tieup .futa-area .tieup-box .repeater ,
#tieup .futa-area .tieup-box-mid .repeater {
	width:86%;
	height:auto;
	margin:20px 6%;
	padding:10px 1%;
	background:#051639;
	display:flex;
	justify-content: center;
	align-items: center;
}

#tieup .futa-area .tieup-box .repeater .repeater-img ,
#tieup .futa-area .tieup-box-mid .repeater .repeater-img {
	width:37%;
	height:auto;
}

#tieup .futa-area .tieup-box .repeater .repeater-img img ,
#tieup .futa-area .tieup-box-mid .repeater .repeater-img img {
	width:100%;
	height:auto;
}

#tieup .futa-area .tieup-box .repeater .repeater-txt ,
#tieup .futa-area .tieup-box-mid .repeater .repeater-txt {
	width:60%;
	height:auto;
	margin-left:3%;
}

#tieup .futa-area .tieup-box .repeater .repeater-txt h3 ,
#tieup .futa-area .tieup-box-mid .repeater .repeater-txt h3 {
	width:100%;
	height:auto;
	margin:0 0 20px;
	padding:0;
	color:#fff;
	font-size:1.6vw;
	text-align:left;
}

#tieup .futa-area .tieup-box .repeater .repeater-txt h4 ,
#tieup .futa-area .tieup-box-mid .repeater .repeater-txt h4 {
	width:100%;
	height:auto;
	margin:0 0 20px;
	padding:0;
	color:#FFEF85;
	font-size:1.4vw;
	text-align:left;
}

#tieup .futa-area .tieup-box .repeater .repeater-txt p ,
#tieup .futa-area .tieup-box-mid .repeater .repeater-txt p {
	width:100%;
	height:auto;
	margin:0;
	padding:0;
	color:#fff;
	font-size:1.25vw;
	text-align:left;
}




img.gray {
-webkit-filter: grayscale(80%);
-moz-filter: grayscale(80%);
-ms-filter: grayscale(80%);
-o-filter: grayscale(80%);
filter: grayscale(80%);
}


#futa1 ,
#futa2 ,
#futa3 {
	transition-duration: 2.0s;
}
#futa4 ,
#futa5 ,
#futa55 ,
#futa6 {
	background:#fff !important;
	transition-duration: 2.0s;
}

#futa7 {
	background:#051639 !important;
	transition-duration: 2.0s;
	z-index:3 !important;
}


.zap {
	opacity:0;
}

.zap2 {
	display:none;
}

.zap3 {
	opacity:1 !important;
}

#tieup #tieup-daysp {
	display:none;
}

#tieup #tieup-daypc {
	display:block;
	width:100%;
	height:auto;
	margin:100px 0 50px;
	padding:0;
	text-align:center;
}

#tieup #tieup-daypc img {
	width:60%;
	height:auto;
}

#tieup ul#tieuppage-banners {
	width:100%;
	height:auto;
	margin:0 0 50px;
	padding:0;
	list-style-type:none;
	display:flex;
	justify-content: center;
}

#tieup ul#tieuppage-banners li {
	width:20%;
	height:auto;
	margin:20px;
}

#tieup ul#tieuppage-banners li img {
	width:100%;
	height:auto;
}



/* 以下タブレット・スマホ */
@media (max-width: 800px) {

#tieup h2#tieup-headpc {
	display:none;
}

#tieup h2#tieup-headsp {
	display:block;
	width:100%;
	height:auto;
	margin:0;
	padding:30px 0 10px;
	text-align:center;
}

#tieup h2#tieup-headsp img {
	width:70%;
	height:auto;
}

#tieup #tieup-intro {
	width:80%;
	height:auto;
	margin:0;
	padding:30px 10%;
	text-align:left;
	color:#fff;
	font-size:1em;
}

#tieup .futa-area {
	width:90%;
	height:auto;
	margin:80px 5%;
	padding:0;
	position:relative;
}

h3.h3sp {display:block;}
h3.h3pc {display:none;}


#tieup .futa-area .tieup-box-mid {
	width:98%;
	height:auto;
	margin:0;
	padding:40px 2%;
	display:flex;
	justify-content:center;
	flex-wrap:wrap;
	position:absolute;
	top:0;
	left:0;
	z-index:2;
}

#tieup .futa-area .tieup-box {
	width:98%;
	height:auto;
	margin:80px 0;
	padding:40px 2%;
	border:1px solid #BF8BB9;
	display:flex;
	justify-content:center;
	flex-wrap:wrap;
}

#tieup .futa-area .tieup-box-mid h3 ,
#tieup .futa-area .tieup-box h3 {
	width:100%;
	height:auto;
	margin:0;
	padding:10px 0;
	text-align:center;
	font-size:1.2em;
}

#tieup .futa-area .tieup-box-mid h3 a ,
#tieup .futa-area .tieup-box h3 a {
	color:#BF8BB9;
}

#tieup .futa-area .tieup-box h3 {
	visibility:hidden;
}

#tieup .futa-area .tieup-box .thea-img ,
#tieup .futa-area .tieup-box-mid .thea-img {
	width:100%;
	height:auto;
	margin:0;
	padding:0;
	text-align:center;
}

#tieup .futa-area .tieup-box .thea-img img ,
#tieup .futa-area .tieup-box-mid .thea-img img {
	width:80%;
	height:auto;
}

#tieup .futa-area .tieup-box .thea-txt ,
#tieup .futa-area .tieup-box-mid .thea-txt {
	width:80%;
	height:auto;
	margin:20px 10%;
	padding:0;
	color:#fff;
	text-align:left;
	font-size:1em;
}

#tieup .futa-area .tieup-box-mid .oto-txt h3 {
	font-size:1.2em;
}

#tieup .futa-area .tieup-box .oto-txt p ,
#tieup .futa-area .tieup-box-mid .oto-txt p {
	display:block;
	width:100% !important;
	height:auto;
	margin:0;
	padding:20px 0%;
}

#tieup .futa-area .tieup-box .oto-txt #oto-qr ,
#tieup .futa-area .tieup-box-mid .oto-txt #oto-qr {
	width:80%;
	height:auto;
	margin:0;
	padding:20px 10%;
	text-align:center;
}

#tieup .futa-area .tieup-box .oto-txt #oto-qr img ,
#tieup .futa-area .tieup-box-mid .oto-txt #oto-qr img {
	width:60%;
	height:auto;
}

#tieup .futa-area .tieup-box .salt-txt h3 ,
#tieup .futa-area .tieup-box-mid .salt-txt h3 {
	color:#FFF !important;
	text-decoration:none !important;
	font-size:1.2em;
}
#tieup .futa-area .tieup-box-mid .salt-txt h3 a {
	color:#FFF !important;
	text-decoration:underline !important;
}


#tieup .futa-area .tieup-box-mid .salt-txt h3 span {
	background:#BF8BB9;
	text-decoration:none !important;
	margin:0;
}

#tieup .futa-area .tieup-box .salt-txt .goodnight ,
#tieup .futa-area .tieup-box-mid .salt-txt .goodnight {
	display:block;
	width:100%;
	height:auto;
	color:#FFF;
	font-size:1em;
}

#tieup .futa-area .tieup-box .salt-txt .goodnight2 ,
#tieup .futa-area .tieup-box-mid .salt-txt .goodnight2 {
	display:block;
	width:98%;
	height:auto;
	margin-top:20px;
	padding:10px 1%;
	color:#FFF;
	font-size:1em;
	background:#BF8BB9;
}

#tieup .futa-area .tieup-box h3.sleepday-head ,
#tieup .futa-area .tieup-box-mid h3.sleepday-head {
	font-size:1.2em;
}

#tieup .futa-area .tieup-box h3.sleepday-head img ,
#tieup .futa-area .tieup-box-mid h3.sleepday-head img {
	width:15%;
	margin-right:15px;
}

#tieup .futa-area .tieup-box .startday ,
#tieup .futa-area .tieup-box-mid .startday {
	width:100%;
	height:auto;
	margin:15px 0;
	padding:0;
	text-align:center;
	color:#fff;
	font-size:1.1em;
}



#tieup .futa-area .tieup-box ul.sleepday-white ,
#tieup .futa-area .tieup-box-mid ul.sleepday-white {
	width:80%;
	height:auto;
	margin:10px 10%;
	padding:20px;
	text-align:left;
	color:#fff;
}




#tieup .futa-area .tieup-box .repeater ,
#tieup .futa-area .tieup-box-mid .repeater {
	width:90%;
	height:auto;
	margin:0 5% 40px;
	padding:0 0 10px;
	background:#051639;
	display:flex;
	justify-content: center;
	align-items: center;
	flex-wrap:wrap;
}

#tieup .futa-area .tieup-box .repeater .repeater-img ,
#tieup .futa-area .tieup-box-mid .repeater .repeater-img {
	width:100%;
	height:auto;
	text-align:center;
}

#tieup .futa-area .tieup-box .repeater .repeater-img img ,
#tieup .futa-area .tieup-box-mid .repeater .repeater-img img {
	width:100%;
	height:auto;
}

#tieup .futa-area .tieup-box .repeater .repeater-txt ,
#tieup .futa-area .tieup-box-mid .repeater .repeater-txt {
	width:80%;
	height:auto;
	margin:10px 10%;
}

#tieup .futa-area .tieup-box .repeater .repeater-txt h3 ,
#tieup .futa-area .tieup-box-mid .repeater .repeater-txt h3 {
	width:100%;
	height:auto;
	margin:0 0 10px;
	padding:0;
	color:#fff;
	font-size:1.2em;
	text-align:left;
}

#tieup .futa-area .tieup-box .repeater .repeater-txt h4 ,
#tieup .futa-area .tieup-box-mid .repeater .repeater-txt h4 {
	width:100%;
	height:auto;
	margin:0 0 10px;
	padding:0;
	color:#FFEF85;
	font-size:1.1em;
	text-align:left;
}

#tieup .futa-area .tieup-box .repeater .repeater-txt p ,
#tieup .futa-area .tieup-box-mid .repeater .repeater-txt p {
	width:100%;
	height:auto;
	margin:0;
	padding:0;
	color:#fff;
	font-size:1em;
	text-align:left;
}

#tieup #tieup-daypc {
	display:none;
}

#tieup #tieup-daysp {
	display:block;
	width:100%;
	height:auto;
	margin:100px 0 50px;
	padding:0;
	text-align:center;
}

#tieup #tieup-daysp img {
	width:65%;
	height:auto;
}

#tieup ul#tieuppage-banners {
	width:100%;
	height:auto;
	margin:0 0 50px;
	padding:0;
	list-style-type:none;
	display:flex;
	justify-content: center;
	flex-wrap:wrap;
}

#tieup ul#tieuppage-banners li {
	width:60%;
	height:auto;
	margin:10px 0;
}

#tieup ul#tieuppage-banners li img {
	width:100%;
	height:auto;
}




}
