html{
  height:100%; 
}

body { 
	margin: 0; 
	padding:0;
	font-family: '游ゴシック体',YakuHanJP,'Noto Sans JP', YuGothic, '游ゴシック Medium', 'Yu Gothic Medium', '游ゴシック', 'Yu Gothic', 'メイリオ', sans-serif; 
	width:100%; 
	height:100%;
	overflow-x:hidden;
}
body > footer {
	position: sticky;
	top: 100vh;
}	
img {
    image-rendering: -webkit-optimize-contrast;
}
br.clear {
	clear:both;
}
br.sponly {display:none;}
br.sponly2 {display:none;}
br.pconly {display:inline;}
.img {
	width: 100%;
	height: auto;
	vertical-align: bottom;
}

@-webkit-keyframes flash {
	0% {
	  opacity: .4;
	}
	100% {
	  opacity: 1;
	}
  }
  @keyframes flash {
	0% {
	  opacity: .4;
	}
	100% {
	  opacity: 1;
	}
}
@keyframes loop-slide {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(-100%);
	}
}
@keyframes loop-slide-rev {
	from {
		transform: translateX(-100%);
	}
	to {
		transform: translateX(0);
	}
}
@keyframes loop-up {
	from {
		transform: translateY(0);
	}
	to {
		transform: translateY(-100%);
	}
}
@keyframes loop-down {
	from {
		transform: translateY(-100%);
	}
	to {
		transform: translateY(0);
	}
}




@keyframes fadeIn {
	from {
	opacity: 0;
	}

	to {
	opacity: 1;
	}
}
.fadeIn {
	animation-name:fadeIn;
	animation-duration:1.1s;
	animation-fill-mode:forwards;
	animation-timing-function: ease-out;
}
.fadeInFast {
	animation-name:fadeIn;
	animation-duration:0.2s;
	animation-fill-mode:forwards;
	animation-timing-function: ease-out;
}
.fadeInTeaser {
	animation-name:fadeIn;
	animation-duration:1.5s;
	animation-fill-mode:forwards;
	animation-timing-function: ease-out;
}

@keyframes fadeInUp {
	from {
	opacity: 0;
	transform: translateY(70px);
	}
	to {
	opacity: 1;
	transform: translateY(0);
	}
}
@keyframes fadeInUp2 {
	from {
	opacity: 0;
	transform: translateY(100px);
	}
	to {
	opacity: 1;
	transform: translateY(0);
	}
}
@keyframes fadeOut {
	from {
	opacity: 1;
	}

	to {
	opacity: 0;
	}
}
@keyframes blurIn {
	from {
	opacity: 0;
	filter: blur(10px);
	transform: scale(4);
	}
	to {
	opacity: 1;
	filter: blur(0);
	transform: scale(1);
	}
}
@keyframes zoomIn {
	from {
	transform: scale(0);
	opacity: 0;
	}

	to {
		transform: scale(1);
		opacity: 1;
	}
}



@media (max-width: 1024px) {
	body { 
		margin: 0; 
		padding:0;
		font-family: '游ゴシック体',YakuHanJP,'Noto Sans JP', YuGothic, '游ゴシック Medium', 'Yu Gothic Medium', '游ゴシック', 'Yu Gothic', 'メイリオ', sans-serif; 
		width:100%; 
		height:100vh;
		overflow-x:hidden;
	}
	.pcimg {display: none !important;}
	.spimg {display: inline;}
	br.sponly {display:inline;}
	br.sponly2 {display:none;}
	br.pconly {display:none;}
}
@media (max-width: 610px) {
	br.sponly2 {display:inline;}
}




/* ========================================
ローディング
========================================== */

/* 非表示 */
.is-hidee {
    display: none;
}
/* ローディング画面をフェードアウト */
.fadeout-bg {
    transition-property: opacity;
    transition-delay: 0s;
    transition-duration: 1s;
    opacity: 0;
    pointer-events: none;
}
/* ローダーをフェードアウト */
.fadeout-loader {
    transition-property: opacity;
    transition-delay: 0.5s;
    transition-duration: 2.0s;
    opacity: 0;
    pointer-events: none;
}
/* ローディング画面 */
#loader-bg {
    background: #000;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000000;
	overflow: hidden;
}
#loader {
	width:25%;
	height:auto;
	position:absolute;
	top: 50%;
	left: 50%;
	transform: translate3d(-50%, -50%, 0);
}
#loader #load-logo-wrap {
	width: 100%;
	height: auto;
	position: relative;
}
#loader #load-logo-wrap #load1 {
	width: 100%;
	height: auto;
}
#loader #load-logo-wrap #load2 {
	width: 100%;
	height: auto;
	position: absolute;
	top: 0;
	left: 0;
	animation: load2 3s ease 0s infinite;
}
@keyframes load2 {
	0% {opacity: 0;}
	20% {opacity: 1;}
	80% {opacity: 1;}
	100% {opacity: 0;}
}



/* 以下スマホ */
@media (max-width: 1024px) {
	#loader-bg {
		background: #000;
		width: 100%;
		height: 100%;
		position: fixed;
		top: 0;
		left: 0;
		z-index: 1000000;
		overflow: hidden;
	}
	#loader {
		width:60%;
		height:auto;
		position:absolute;
		top: 50%;
		left: 50%;
		transform: translate3d(-50%, -50%, 0);
	}
	

}


/* ========================================
ヘッダー
========================================== */
#pcheader {
	display: block;
	width:100%;
	height:auto;
	padding:15px 0 20px;
	position:fixed;
	top:0;
	background: -moz-linear-gradient(top, #000, transparent);
	background: -webkit-linear-gradient(top, #000, transparent);
	background: linear-gradient(to bottom, #000, transparent);
	z-index:1001;
	opacity: 0;
}
#pcheader ul#pcmenu {
	width:100%;
	height:auto;
	padding:0;
	margin:0;
	list-style-type:none;
	display:flex;
	justify-content: center;
}
#pcheader ul#pcmenu li {
	width:auto;
	height:auto;
	margin:0 1.5%;
	padding:0;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}
#pcheader ul#pcmenu li.menusns {
	width:auto;
	height:auto;
	margin:0 0.5%;
	padding:0;
	text-align:center;
	display:flex;
	justify-content: center;
	align-items: flex-start;
}
#pcheader ul#pcmenu li a {
	transition-duration: 0.4s;
	text-decoration:none !important;
}
#pcheader ul#pcmenu li a:hover {
	cursor:pointer;
}
#pcheader ul#pcmenu li a span.eng {
	display: block;
	width: 100%;
	font-size:1.5vw;
	line-height:1.5vw;
	text-align: center;
	color: #fff;
	font-family: "Metal", serif;
	font-weight: 400;
	font-style: normal;
}
#pcheader ul#pcmenu li.menusns a span.eng {
	transform: translateY(0px);
	font-size: 1.6vw;
}
#pcheader ul#pcmenu li.menusns a span.eng img {
	width: 2.5vw;
}
#pcheader ul#pcmenu li a span.jpn {
	display: block;
	width: 100%;
	font-size:0.7vw;
	line-height:0.7vw;
	text-align: center;
	color: #fff;
	font-family: 'Edu TAS Beginner', cursive;
	letter-spacing: 1px;
	transform: translateY(-1.5vw);
}
#pcheader ul#pcmenu li a:hover {
	opacity: 1;
	-webkit-animation: flash 1.5s;
	animation: flash 1.5s;
}
.navigation {
	display: none;
	position: absolute;
	left: 5px;
	top: 5px ;
	width: 100%;
	height: 100%;
}  
.global-nav {
	position: fixed;
	right: 0;
	top: -2000px;
	width: 100%;
	height: 100%;
	min-height: 100%;
	padding-top: 0;
	background: url(../img/MJ-menu-bg-2.jpg) no-repeat;
	background-size: cover;
	background-position: center center;
	z-index: 200000;
	overflow-y: scroll;
}
.global-nav .global-nav-inner {
	width: 100%;
	height: 100%;
	position: relative;
}
.global-nav .global-nav-inner .global-nav-content {
	width: 100%;
	height: auto;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translate3d(0, -50%, 0);
}
.hamburger {
	position: fixed;
	left: 5px;
	top: 1px;
	width: 65px;
	height: 65px;
	cursor: pointer;
	z-index: 300000;
	opacity:0;
}  
.global-nav #menu-logo {
	width:90%;
	height:auto;
	margin:1vw 5% 3vw;
	padding:0;
	text-align:center;
	position: relative;
}  
.global-nav #menu-logo img {
	width: 65%;
}
.global-nav__list {
	margin: 0;
	padding: 0;
	list-style: none;
}
.global-nav__item {
	text-align: center;
	padding: 0.1vw 0px;
}
.global-nav__item a {
	display: block;
	padding: 5px 0;
	text-decoration: none;	
	color: #000;
	transition: all .6s;
	letter-spacing: 1px;
}  
.global-nav__item a .en {
	width: 100%;
	font-size:2vw;
}
.global-nav__item a .jp {
	width: 100%;
	font-size:1vw;
	transform: translateY(-10px);
}
.hamburger__line {
	position: absolute;
	left: 8px;
	width: 50px;
	height: 4px;
	background-color: #fff !important;
	transition: all .6s;
}  
.hamburger #menu {
	position: absolute;
	top: 44px;
	left: 9px;
	font-weight:bold;
	color:#fff;
	font-size:1.0em;
	font-style: normal;
	font-weight: 400;
} 
.global-nav ul.nav-sns {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	list-style-type: none;
	display: flex;
	justify-content: center;
}
.global-nav ul.nav-sns li {
	width: 4%;
	margin: 0 2%;
}
.global-nav ul.nav-sns li a {
	color:#000;
}

.global-nav ul.nav-sns li img {
	width: 100%;
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}
.global-nav ul.nav-sns li img:hover {
  opacity: 1;
  -webkit-animation: flash 1.5s;
  animation: flash 1.5s;
}

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

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

}

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

.navigation {
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background:none;
	opacity: 1;
  }  
  .hamburger {
	width: 52px; /* クリックしやすいようにちゃんと幅を指定する */
	height: 54px; /* クリックしやすいようにちゃんと高さを指定する */
	  display:block !important;
  }  
  .hamburger__line {
	  position: absolute;
	  left: -2px;
	  width: 40px;
	  height: 4px;
	  transition: all .6s;
	}	
	.hamburger #menu {
	  position: absolute;
	  top: 38px;
	  left: -3px;
	  font-weight:bold;
	  font-size:0.9em;
	}
  
  .hamburger__line--1 {
	top: 8px;
  }
  .hamburger__line--2 {
	top: 21px;
  }
  .hamburger__line--3 {
	top: 34px;
  }
  
  .global-nav {
	position: fixed;
	top: -1600px; /* これで隠れる */
	left: 0;
	width: 100%; /* スマホに収まるくらい */
	height: 100%;
	min-height: 100%;
	padding: 0;
	transition: all .6s;
	z-index: 200;
	overflow-y: scroll; /* メニューが多くなったらスクロールできるように */
  }
  .global-nav__list {
	margin: 15vw 0;
  }
  .global-nav__item a {
	display: block;
	padding: 5px 0;
	text-decoration: none;
	transition: all .6s;
	font-family: "Metal", serif;
	font-weight: 400;
	font-style: normal;

  }
  .global-nav__item a .en {
	width: 100%;
	font-size:3.0em;
	line-height: 1.5em;
	color: #fff;
	font-weight: bolder;
}
.global-nav__item a .jp {
	width: 100%;
	font-size:3vw;
}
.global-nav ul.nav-sns li {
	width: 10%;
	margin: 0vw 2% 0;
	text-align: center;
}
.global-nav ul.nav-sns li a {
	font-size: 10vw;
}
.global-nav #tw-menu {
	width:100%;
	height:auto;
	padding:20px 0;
	margin:0;
	text-align: center;
	opacity: 1;
	position: relative;
	color: #fff;
	font-size: 10vw;
}
.global-nav #tw-menu a {
	color: #fff;
}
  
	/* 表示された時用のCSS */
	.nav-open .global-nav {
	  top: 0;
	}
	.nav-open .black-bg {
	  opacity: .8;
	  visibility: visible;
	}
	.nav-open .hamburger__line--1 {
	  transform: rotate(45deg);
	  top: 20px;
	
	}
	.nav-open .hamburger__line--2 {
	  width: 0;
	  left: 50%;
	
	}
	.nav-open .hamburger__line--3 {
	  transform: rotate(-45deg);
	  top: 20px;
	
	}
  
  
  ul#nav-button {
	  display:none !important;
  }
  
}  


/* 以下タブレット・スマホ */
@media (max-width: 550px) {
	.global-nav__item {
		margin: 30px 0 !important;
	}
	.global-nav__item a {
		display: block;
		padding: 1px 0;
		text-decoration: none;
		transition: all .6s;
	  }
	  .global-nav__item a .en {
		width: 100%;
		font-size:2.2rem;
		line-height: 2.2rem;
		letter-spacing: 1px;
	}
	.global-nav__item a .jp {
		width: 100%;
		font-size:3.2vw;
		transform: translateY(-36px);
	}
	.global-nav ul.nav-sns {
		width: 90%;
		height: auto;
		margin: 6vw 5% 0;
		padding: 0;
		list-style-type: none;
		display: flex;
		justify-content: center;
	
	}
	.global-nav ul.nav-sns li {
		width: 15%;
		margin: 2vw 4% 0;
		text-align: center;

	}
	
}





/* ========================================
トップメイン画像まわり
========================================== */
#topmain {
	width:100%;
	height:auto;
	padding:0;
	margin:0;
	background-color: #000;
	overflow: hidden;
	position: relative;
}
#topmain #top-bg {
	width: 100%;
	height: auto;
	position: relative;
}
#topmain #top-bg #top-bg1 {
	width: 100%;
	height: auto;
}
#topmain #top-bg #top-bg2 {
	width: 100%;
	height: auto;
	position: absolute;
	top: 0;
	left: 0;
	animation: top-bg2 4s ease 0s infinite;
}
#topmain #top-bg #top-bg3 {
	width: 100%;
	height: auto;
	position: absolute;
	top: 0;
	left: 0;
	animation: top-bg3 4s ease 0s infinite;
}
#topmain #top-bg #top-bg4 {
	width: 100%;
	height: auto;
	position: absolute;
	top: 0;
	left: 0;
}
#topmain #top-bg #top-bg5 {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background-color: rgba(0, 0, 0, 0.7);
	opacity: 0;
	transition: 1.0s all;
}
@keyframes top-bg2 {
	0% {opacity: 1;}
	10% {opacity: 1;}
	40% {opacity: 0;}
	60% {opacity: 0;}
	90% {opacity: 1;}
	100% {opacity: 1;}
}
@keyframes top-bg3 {
	0% {opacity: 1;}
	20% {opacity: 1;}
	50% {opacity: 0;}
	80% {opacity: 1;}
	100% {opacity: 1;}
}
#topmain #top-bg #top-tate {
	width: 3.5%;
	height: auto;
	position: absolute;
	top: 2%;
	left: 35%;
	opacity: 0;
}
#topmain #top-bg #pc-h1 ,
#topmain #top-bg #top-bb-pc {
	display: none;
}
.top-tate {
	animation: fadeIn 1.0s ease 1.2s forwards;
}
.top-others-anime {
	animation: fadeIn 1.2s ease 1.8s forwards;
}
#topmain h1 {
	width: 35%;
	height: auto;
	margin: 0;
	padding: 0;
	opacity: 0;
	position: absolute;
	top: 50%;
	right: 15%;
}
#topmain h1 img {
	width: 100%;
}
#topmain #top-bb {
	width: 35%;
	height: auto;
	margin: 0;
	padding: 0;
	opacity: 0;
	position: absolute;
	top: 65%;
	right: 15%;
}
#topmain #top-bb img {
	width: 100%;
}
#topmain #top-date {
	width: 100%;
	height: auto;
	margin: 0;
	text-align: center;
	position: absolute;
	bottom: 5%;
	opacity: 0;
}
#topmain #top-date img {
	width: 50%;
}



/* 以下タブレット・スマホ */
@media (max-width: 1024px) {
	#topmain {
		width:100%;
		height:auto;
		padding:0;
		margin:0;
		background-color: #000;
		position: relative;
		overflow: hidden;
	}
	#topmain #top-bg #top-tate {
		width: 8.3%;
		height: auto;
		position: absolute;
		top: 16%;
		left: 7.5%;
	}
	#topmain h1 {
		width: 80%;
		height: auto;
		margin: 0;
		padding: 0;
		opacity: 0;
		position: absolute;
		top: 58%;
		right: 10%;
	}
	#topmain h1 img {
		width: 100%;
	}
	#topmain #top-bb {
		width: 80%;
		height: auto;
		margin: 0;
		padding: 0;
		opacity: 0;
		position: absolute;
		top: 70%;
		right: 10%;
	}
	#topmain #top-bb img {
		width: 100%;
	}	
	#topmain #top-date {
		display: none;
	}
}



/* ========================================
トップ左スライダー
========================================== */


@keyframes loop-slide-tate {
	from {
		transform: translate3d(0, 0, 0);
		-webkit-transform: translate3d(0, 0, 0); 
		background-color: transparent;
	}
	to {
		transform: translate3d(0, -100% , 0);
		-webkit-transform: translate3d(0, -100%, 0); 
		background-color: transparent;
	}
}
@keyframes loop-slide-tate-rev {
	from {
		transform: translate3d(0, -100%, 0);
		-webkit-transform: translate3d(0, -100%, 0);
		background-color: transparent;

	}
	to {
		transform: translate3d(0, 0, 0);
		-webkit-transform: translate3d(0, 0, 0);
		background-color: transparent;
	}
}
#black-bg {
	width: 32%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background-color: #000;
}
#top-slider {
	width: 32%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background-color: #000;
	-webkit-mask-image: linear-gradient(to bottom, black 30%, transparent);
    mask-image: linear-gradient(to bottom, black 30%, transparent);
}
#top-slider .top-slide-wrap {
	width: 100%;
	height: auto;
	overflow: hidden;
}
#top-slider .top-slide-wrap .top-slide {
	list-style-type: none;
	margin: 0;
	padding: 0;
	animation: loop-slide-tate 60s infinite linear 0s both;
	perspective: 1000;
	backface-visibility:hidden;
	-webkit-backface-visibility:hidden;
}
#top-slider .top-slide-wrap .top-slide .content {
	width: 100%;
	height: auto;
	margin: 0;
}


/* 以下タブレット・スマホ */
@media (max-width: 1024px) {
	#top-slider {
		width: 100%;
		height: auto;
		max-height: auto;
		position: static;
		-webkit-mask-image: linear-gradient(to bottom, black, black);
		mask-image: linear-gradient(to bottom, black, black);
	
	}
	#black-bg {
		display: none;
	}
	#top-slider .top-slide-wrap {
		width: 100%;
		height: auto;
		margin: 0;
		display: flex;
		align-items: center;
		flex-wrap: nowrap;
		overflow: hidden;
	}
	#top-slider .top-slide-wrap .top-slide {
		list-style-type: none;
		margin: 0;
		padding: 0;
		display: flex;	
		perspective: 1000;
		backface-visibility:hidden;
		-webkit-backface-visibility:hidden;
		animation: loop-slide 60s infinite linear 0s both;
	}
	#top-slider .top-slide-wrap .top-slide .content {
		width: 60vw;
		height: auto;
		margin: 0;
	}
	#top-slider .top-slide-wrap .top-slide .content img {
		width: 100%;
		height: auto;
		vertical-align: bottom;
		backface-visibility:hidden;
		-webkit-backface-visibility:hidden;
	}	
}





/* ========================================
PCトップコンテンツ
========================================== */
#top-contents {
	width: 100%;
	height: auto;
	padding: 0 0 10vw;
	position: relative;
	background-color: #000;
}
#top-contents #top-date-sp {
	display: none;
}
#top-contents #banners {
	width: 100%;
	height: auto;
	margin: 2vw 0;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
#top-contents #com-banner {
	width: 15%;
	height: auto;
	margin: 0 1.5%;
	opacity: 0;
}
#top-contents #tshirts {
	width: 15%;
	height: auto;
	margin: 0 1.5%;
	opacity: 0;
}
#top-contents #butai {
	width: 15%;
	height: auto;
	margin: 0 1.5%;
	opacity: 0;
}
#top-contents #present {
	width: 15%;
	height: auto;
	margin: 0 1.5%;
	opacity: 0;
}
#top-contents #com-banner img:hover ,
#top-contents #tshirts img:hover ,
#top-contents #present img:hover ,
#top-contents #butai img:hover {
	animation: tbanner 0.5s ease forwards;
}
@keyframes tbanner {
	0% {transform: rotate(0deg);}
	100% {transform: rotate(10deg);}
}

#top-contents #sns-link {
	display: block;
	width: 100%;
	height: auto;
	margin: 0 0 3vw;
	padding: 0;
	list-style-type: none;
	display: flex;
	justify-content: center;
	opacity: 1;
}
#top-contents #sns-link li {
	width: 4%;
	margin: 0 1%;
}
#top-contents #theater {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0 0 2vw;
	text-align: center;
}
#top-contents #theater img {
	width: 17%;
}
#top-contents #major {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0 0 3vw;
	text-align: center;
}
#top-contents #major img {
	width: 17%;
}
#top-contents #mubi {
	width: 100%;
	height: auto;
	margin: 0;
	text-align: center;
}
#top-contents #mubi #mvtk-widgets-container {
	display: inline-block;
}
#top-contents #pink-banner {
	width: 100%;
	height: auto;
	margin: 0 0 2vw;
	padding: 0;
	text-align: center;
}
#top-contents #pink-banner img {
	width: 50%;
}
#top-contents #tower-banner {
	width: 100%;
	height: auto;
	margin: 0 0 3vw;
	padding: 0;
	text-align: center;
}
#top-contents #tower-banner img {
	width: 30%;
}
#top-contents #pgs-banner {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	text-align: center;
}
#top-contents #pgs-banner img {
	width: 22%;
}
#top-contents #theater img:hover ,
#top-contents #major img:hover ,
#top-contents #pink-banner img:hover , 
#top-contents #tower-banner img:hover , 
#top-contents #pgs-banner img:hover , 
#top-contents #sns-link li a img:hover {
	animation: flash 1.5s;
}


/* 以下タブレット・スマホ */
@media (max-width: 1024px) {
	#top-contents {
		width: 100%;
		height: auto;
		padding: 12vw 0 5vw;
		position: relative;
		overflow-x: visible;
	}	
	#top-contents h1 ,
	#top-contents #top-bb {
		display: none;
	}
	#top-contents #top-date {
		width: 100%;
		height: auto;
		margin: 0 0 3vw;
		text-align: center;
	}
	#top-contents #top-date img {
		width: 70%;
	}
	#top-contents #theater {
		width: 100%;
		height: auto;
		margin: 0;
		padding: 5vw 0;
		text-align: center;
	}
	#top-contents #theater img {
		width: 60%;
	}
	#top-contents #major {
		width: 100%;
		height: auto;
		margin: 0;
		padding: 0 0 5vw;
		text-align: center;
	}
	#top-contents #major img {
		width: 60%;
	}
	#top-contents #mubi {
		width: 100%;
		height: auto;
		margin: 0 0 5vw;
		text-align: center;
	}
	#top-contents #banners {
		width: 100%;
		height: auto;
		margin: 2vw 0;
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
	}
	#top-contents #banners #com-banner {
		width: 40%;
		height: auto;
		margin: 1vw 1.5%;
		opacity: 0;
	}	
	#top-contents #tshirts {
		width: 40%;
		height: auto;
		margin: 1vw 1.5%;
		opacity: 0;
	}
	#top-contents #butai {
		width: 40%;
		height: auto;
		margin: 1vw 1.5%;
		opacity: 0;
	}
	#top-contents #present {
		width: 40%;
		height: auto;
		margin: 1vw 1.5%;
		opacity: 0;
	}	
	#top-contents #sns-link {
		display: block;
		width: 100%;
		height: auto;
		margin: 3vw 0 5vw;
		padding: 0;
		list-style-type: none;
		display: flex;
		justify-content: center;
		opacity: 1;
	}
	#top-contents #sns-link li {
		width: 13%;
		margin: 0 2%;
	}
	#top-contents #top-date-sp {
		display: block;
		width: 100%;
		height: auto;
		padding: 3vw 0;
		text-align: center;
	}
	#top-contents #top-date-sp img {
		width: 70%;
	}
	#top-contents #pink-banner {
		width: 100%;
		height: auto;
		margin: 5vw 0 5vw;
		padding: 0;
		text-align: center;
	}
	#top-contents #pink-banner img {
		width: 90%;
	}
	#top-contents #tower-banner {
		width: 100%;
		height: auto;
		margin: 0 0 10vw;
		padding: 0;
		text-align: center;
	}
	#top-contents #tower-banner img {
		width: 60%;
	}
	#top-contents #pgs-banner {
		width: 100%;
		height: auto;
		margin: 2vw 0 10vw;
		padding: 0;
		text-align: center;
	}
	#top-contents #pgs-banner img {
		width: 60%;
	}
	
}

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


}

/* ========================================
ブリッジ
========================================== */
#bridge {
	width: 100%;
	height: auto;
	padding: 0;
	background-color: #000;
	position: relative;
	overflow-x: hidden;
}
#bridge #sns-link-sp {
	display: none;
}



/* 以下タブレット・スマホ */
@media (max-width: 1024px) {
	#bridge {
		width: 100%;
		height: auto;
		padding: 5vw 0;
		background-color: #000;
		position: relative;
		overflow-x: hidden;
	}
	#bridge #sns-link-sp {
		display: block;
		width: 100%;
		height: auto;
		margin: 0;
		padding: 0;
		list-style-type: none;
		display: flex;
		justify-content: center;
		opacity: 1;
	}
	#bridge #sns-link-sp li {
		width: 13%;
		margin: 0 1%;
	}

}

/* ========================================
モーダル
========================================== */
.modal{
    display: none;
    height: 100%;
    position: fixed;
    top: 0;
    width: 100%;
	z-index: 999999;
	overflow-x: hidden;
	box-sizing: border-box;
}
.modal__bg{
	background:#000;
	background-size: cover;
	background-position: center center;
    height: 100%;
    position: absolute;
    width: 100%;
	overflow-x: hidden;
	box-sizing: border-box;
}
.movie-bg {
	background:#000;
	background-size: cover;
	background-position: center center;
    height: 100%;
    position: absolute;
    width: 100%;
	opacity: 0.8;
}
.movie__content {
    width: 70%;
	height: auto;
    padding: 40px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
}
.modal__content {
    width: 60%;
	height: 80%; /* スクロール時は80% */
    padding: 1vw 0 1vw;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
	background-size: cover;
	background-position: center center;
	overflow-y: scroll;
	background-color: #000;
	-ms-overflow-style: none;
	text-align: center;
	scrollbar-width: 3px;
	scrollbar-color: #8b8989 #ccc;
	box-sizing: border-box;
}
.small_content {
	width: 60%;
	height: auto; /* スクロール時は80% */
}
.modal__content::-webkit-scrollbar {
    display:block;
}
.modal__content h2 {
	width: 80%;
	height: auto;
	margin: 2vw 10% 1vw;
	padding: 0;
	color: #C60019;
	font-size: 2.5rem;
	text-align: center;
	font-family: 'Yu Mincho Light','YuMincho','Yu Mincho','游明朝体','ヒラギノ明朝 ProN','Hiragino Mincho ProN',sans-serif;
}
.modal__content h2.jimmy {
	color: #fff;
	margin: 2vw 10% 2vw;
}
.modal__content h2 img {
	width: 50%;
}
.modal__content .t-ye {
	width: 100%;
	height: auto;
	text-align: center;
	font-size: 1.4rem;
	font-weight: bold;
	color: #fff;
}
.modal__content p {
	width: 86%;
	height: auto;
	margin: 2vw 7% 0;
	color: #fff;
	font-size: 1rem;
	text-align: left;
	overflow-wrap: break-word;
}
.modal__content p.center {
	text-align: center;
}

.modal__content p .bold {
	font-weight: bold;
}
.modal__content .modal-image {
	width: 100%;
	height: auto;
	margin: 1vw 0;
	text-align: center;
}
.modal__content .modal-image img {
	width: 50%;
}
.modal__content .modal-image .img-big {
	width: 70%;
}
.modal__content .modal-image2 img {
	width: 30%;
}
.modal-image2 span {
	display: inline-block;
	width: 100%;
	height: auto;
	text-align: center;
	font-size: 1.0rem;
	margin-bottom: 2rem;
}
.batsu {
	width: 3%;
	height: auto;
	position: fixed;
	top: 2%;
	right: 2%;
}
.batsu img {
	width: 100%;
}
.close-btn {
	display: inline-block;
	width: 160px;
	height: auto;
	padding: 2px 0;
	border: none;
	text-align: center;
	color: #fff;
	font-size: 1.2vw;
	border-radius: 10px;
	background-color: #009C91;
	box-shadow:2px 2px 2px #004641,
             -2px -2px 2px #02e6d6;
	transition: all 0.6s;
	text-decoration: none;
	position: fixed;
	bottom: 2%;
	left: 50%;
	transform: translateX(-50%);
}
.close-btn:hover {
	box-shadow:2px 2px 2px #02e6d6,
	-2px -2px 2px #004641;

}


/* 以下タブレット・スマホ */
@media (max-width: 1024px) {
	.movie__content {
		width: 100%;
		height: auto;
		padding: 1% 0;
		position: absolute;
		left: 50%;
		top: 50%;
		transform: translate(-50%,-50%);
	}
	.batsu {
		width: 10%;
		height: auto;
		position: fixed;
		top: 3%;
		right: 3%;
	}
	.modal__content {
		width: calc(90% - 5px);
		height: 90%;
		padding: 70px 0 150px;
		background-color: #000;
		position: absolute;
		left: 50%;
		top: 50%;
		transform: translate(-50%,-50%);
		overflow-y: scroll;
		box-sizing: border-box;
	}
	.modal__content h2 {
		width: 100%;
		height: auto;
		margin: 0 0 3vw;
		font-size: 2.0rem;
		text-align: center;
	}
	.modal__content h2.jimmy {
		color: #fff;
		width: 100%;
		height: auto;
		margin: 0 0 3vw;
		font-size: 2.0rem;
		text-align: center;
	}
	
	.modal__content h2 img {
		width: 80%;
	}
	.modal__content p {
		width: 98%;
		height: auto;
		margin: 2vw 1% 0;
		color: #fff;
		font-size: 1rem;
		text-align: left;
		overflow-wrap: break-word;
	}	
	.modal__content .modal-image img {
		width: 80%;
	}
	.modal__content .modal-image .img-big {
		width: 90%;
	}
	.modal__content .modal-image2 img {
		width: 80%;
	}
	.modal__content .fin-img {
		margin: 8vw 0;
	}
	.modal__content .dlbtn a {
		display: inline-block;
		width: 70%;
		height: auto;
		padding: 5px 0;
		font-size: 1rem;
		color: #fff;
		border: 2px solid #148F88;
		background-color: #148F88;
		transition: 1.0s all;
		text-align: center;
		text-decoration: none;
		font-weight: bold;
	}
	.close-btn {
		width: 40%;
		height: auto;
		padding: 2px 0;
		border: none;
		text-align: center;
		color: #fff;
		font-size: 1rem;
		border-radius: 10px;
		background-color: #009C91;
		box-shadow:2px 2px 2px #004641,
				 -2px -2px 2px #02e6d6;
		transition: all 0.6s;
		text-decoration: none;
		position: fixed;
		bottom: 5%;
		left: 30%;
		transform: translateX(0%);
	}
	
}





/* ========================================
トレーラー
========================================== */
.trailer {
	width:100%;
	height:auto;
	margin:0;
	padding:0;
	overflow: hidden;
	position: relative;
	background-color: #000;
}
.trailer #trailer-bg {
	width: 100%;
	height: auto;
}
.trailer h2 {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	position: absolute;
	top: 4vw;
	text-align: center;
}
.trailer h2 img {
	width: 12%;
}
#video-wrap {
	width: 60%;
	height: auto;
	margin: 0 20%;
	padding: 0;
	opacity: 0;
	position: absolute;
	top: 10vw;
	z-index: 1;
	box-sizing: border-box;
}
.video {
	width:100%;
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
	margin:0 0 10px;
	display:block;
} 
.video iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.trailer ul#movie-changer {
	width: 60%;
	height: auto;
	margin: 10px 20%;
	padding: 0%;
	list-style-type: none;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	position: absolute;
	top: 80%;
	z-index: 1;
}
.movie-btn {
	width: 30%;
	height: auto;
	margin: 5px 1%;
	padding: 3px 0;
	text-align: center;
	background-color: transparent;
	border: 1px solid #fff;
	color: #fff;
	font-size: 1.1vw;
	font-weight: bold;
}
.movie-btn i {opacity: 0;}
.activee {
	background: #fff;
	border: 1px solid #fff;
	color: #000;
}
.activee i {opacity: 1;}

.movie-btn:hover {
	background: #fff;
	border: 1px solid #fff;
	color: #000;
	cursor: pointer;
	transition-duration: 0.6s;
}


/* 以下タブレット・スマホ */
@media (max-width: 1024px) {
	.trailer {
		width:100%;
		height:auto;
		margin:0;
		padding:20vw 0;
		overflow: hidden;
		position: relative;
		background-color: #000;
	}
	.trailer #trailer-bg {
		display: none;
	}
	.trailer h2 {
		width: 100%;
		height: auto;
		margin: 0;
		padding: 5vw 0;
		position: static;
		text-align: center;
	}
	.trailer h2 img {
		width: 40%;
	}	
	#video-wrap {
		width: 94%;
		height: auto;
		margin: 0 3%;
		padding: 0;
		opacity: 0;
		position: static;
		box-sizing: border-box;
	}
	.trailer ul#movie-changer {
		width: 100%;
		height: auto;
		margin: 10px 0;
		padding: 0%;
		list-style-type: none;
		display: flex;
		justify-content: center;
		position: static;
	}
	.movie-btn {
		width: 30%;
		font-size: 2vw;
	}

}

@media (max-width: 610px) {
	.movie-btn {
		width: 45%;
		font-size: 3vw;
	}

}

/* ========================================
イントロダクション
========================================== */
#intro-bg1 {
	width: 100%;
	height: 100%;
	min-height: 100%;
	background: url(../img/MJ-intro-bg-1-pc.jpg) no-repeat;
	background-size: cover;
	background-position: center right;
	position: fixed;
	top: 0;
	left: 0;
	z-index: -30;
}
#intro-bg2 {
	width: 100%;
	height: 100%;
	min-height: 100%;
	background: url(../img/MJ-intro-bg-2-pc.jpg) no-repeat;
	background-size: cover;
	background-position: center left;
	position: fixed;
	top: 0;
	left: 0;
	z-index: -29;
	animation: intro-bg2 10s ease 0s infinite;
}
#intro-bg3 {
	width: 100%;
	height: 100%;
	min-height: 100%;
	background: url(../img/MJ-intro-bg-3-pc.jpg) no-repeat;
	background-size: cover;
	background-position: center left;
	position: fixed;
	top: 0;
	left: 0;
	z-index: -29;
	animation: intro-bg3 10s ease 0s infinite;
}
#intro-bg4 {
	width: 100%;
	height: 100%;
	min-height: 100%;
	background: url(../img/MJ-intro-bg-4-pc.jpg) no-repeat;
	background-size: cover;
	background-position: bottom center;
	position: fixed;
	top: 0;
	left: 0;
	z-index: -29;
	animation: intro-bg4 10s ease 0s infinite;
}
@keyframes intro-bg2 {
	0% {opacity: 0;}
	10% {opacity: 0;}
	25% {opacity: 1;}
	35% {opacity: 1;}
	50% {opacity: 0;}
	100% {opacity: 0;}
}
@keyframes intro-bg3 {
	0% {opacity: 0;}
	35% {opacity: 0;}
	50% {opacity: 1;}
	60% {opacity: 1;}
	75% {opacity: 0;}
	100% {opacity: 0;}
}
@keyframes intro-bg4 {
	0% {opacity: 0;}
	60% {opacity: 0;}
	75% {opacity: 1;}
	85% {opacity: 1;}
	100% {opacity: 0;}
}
#intro-songs {
	width: 35%;
	height: auto;
	position: fixed;
	bottom: 0;
	left: 0;
	z-index: -27;
}
#intro {
	width: 100%;
	height: auto;
	padding: 20vw 0 30vw;
	position: relative;
	z-index: -28;
}
#intro #intro-catch1 {
	width: 100%;
	height: auto;
	margin: 0 0 5vw;
	text-align: center;
	opacity: 0;
}
#intro #intro-catch1 img {
	width: 45%;
}
#intro #intro-catch2 {
	width: 100%;
	height: auto;
	margin: 0 0 5vw;
	text-align: center;
	opacity: 0;
}
#intro #intro-catch2 img {
	width: 35%;
}
#intro #intro-catch3 {
	width: 30%;
	height: auto;
	margin: 0 35% 30vw;
	position: relative;
}
#intro #intro-catch3 #intro-catch3-1 {
	width: 100%;
	height: auto;
	opacity: 0;
}
#intro #intro-catch3 #intro-catch3-2 {
	width: 100%;
	height: auto;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
}
@keyframes blink {
	0% { opacity: 1;}
	2% { opacity: .2;}
	3% { opacity: 1;}
	5% { opacity: .2;}
	6% { opacity: 1;}
	40% { opacity: 1;}
	42% { opacity: .2;}
	43% { opacity: 1;}
	45% { opacity: .2;}
	46% { opacity: 1;}
	70% { opacity: 1;}
	72% { opacity: .2;}
	73% { opacity: 1;}
	75% { opacity: .2;}
	76% { opacity: 1;}
}
.intro-catch3-2 {
	animation: fadeIn 1.1s ease 0s forwards , blink 3s linear 1.0s infinite;
}
#intro h2 {
	width: 100%;
	height: auto;
	margin: 0 0 15vw;
	padding: 0;
	text-align: center;
	opacity: 0;
}
#intro h2 img {
	width: 20%;
}
#intro #intro-lead1 {
	width: 100%;
	height: auto;
	margin: 0 0 10vw;
	text-align: center;
	opacity: 0;
}
#intro #intro-lead1 img {
	width: 40%;
}
#intro p {
	width: 50%;
	height: auto;
	margin: 0 25%;
	padding: 0;
	color: #fff;
	font-size: 1.1vw;
	line-height: 2.2vw;
	letter-spacing: 1.2px;
	opacity: 0;
}
#intro #intro-lead2 {
	width: 100%;
	height: auto;
	margin: 15vw 0 10vw;
	text-align: center;
	opacity: 0;
}
#intro #intro-lead2 img {
	width: 45%;
}


/* 以下タブレット・スマホ */
@media (max-width: 1024px) {
	#intro-bg1 {
		width: 100%;
		height: 100%;
		min-height: 100%;
		background: url(../img/MJ-intro-bg-1-sp.jpg) no-repeat;
		background-size: cover;
		background-position: center right;
		position: fixed;
		top: 0;
		left: 0;
		z-index: -30;
	}
	#intro-bg2 {
		width: 100%;
		height: 100%;
		min-height: 100%;
		background: url(../img/MJ-intro-bg-2-sp.jpg) no-repeat;
		background-size: cover;
		background-position: center left;
		position: fixed;
		top: 0;
		left: 0;
		z-index: -29;
		animation: intro-bg2 10s ease 0s infinite;
	}
	#intro-bg3 {
		width: 100%;
		height: 100%;
		min-height: 100%;
		background: url(../img/MJ-intro-bg-3-sp.jpg) no-repeat;
		background-size: cover;
		background-position: center left;
		position: fixed;
		top: 0;
		left: 0;
		z-index: -29;
		animation: intro-bg3 10s ease 0s infinite;
	}
	#intro-bg4 {
		width: 100%;
		height: 100%;
		min-height: 100%;
		background: url(../img/MJ-intro-bg-4-sp.jpg) no-repeat;
		background-size: cover;
		background-position: bottom center;
		position: fixed;
		top: 0;
		left: 0;
		z-index: -29;
		animation: intro-bg4 10s ease 0s infinite;
	}
	#intro-songs {
		width: 100%;
		height: auto;
		position: fixed;
		bottom: 0;
		left: 0;
		z-index: -27;
	}
	#intro {
		width: 100%;
		height: auto;
		padding: 60vw 0 210vw;
		position: relative;
		z-index: -28;
	}
	#intro #intro-catch1 {
		width: 100%;
		height: auto;
		margin: 0 0 20vw;
		text-align: center;
		opacity: 0;
	}
	#intro #intro-catch1 img {
		width: 85%;
	}
	#intro #intro-catch2 {
		width: 100%;
		height: auto;
		margin: 0 0 20vw;
		text-align: center;
		opacity: 0;
	}
	#intro #intro-catch2 img {
		width: 80%;
	}
	#intro #intro-catch3 {
		width: 90%;
		height: auto;
		margin: 0 5% 60vw;
		position: relative;
	}
	
	#intro h2 {
		width: 100%;
		height: auto;
		margin: 0 0 50vw;
		padding: 0;
		text-align: center;
		opacity: 0;
	}
	#intro h2 img {
		width: 75%;
	}
	#intro #intro-lead1 {
		width: 100%;
		height: auto;
		margin: 0 0 100vw;
		text-align: center;
		opacity: 0;
	}
	#intro #intro-lead1 img {
		width: 90%;
	}
	#intro p {
		width: 90%;
		height: auto;
		margin: 0 5%;
		padding: 0;
		color: #fff;
		font-size: 4vw;
		line-height: 8vw;
		letter-spacing: 1.2px;
		opacity: 0;
	}
	#intro #intro-lead2 {
		width: 100%;
		height: auto;
		margin: 100vw 0 50vw;
		text-align: center;
		opacity: 0;
	}
	#intro #intro-lead2 img {
		width: 90%;
	}
	

}



/* ========================================
固定画像
========================================== */
#fixed-image {
	width: 100%;
	height: auto;
	position: relative;
}
#fixed-image #fixed-image-bg {
	width: 100%;
	height: auto;
}
#fixed-image #fixed-image-catch {
	width: 25%;
	height: auto;
	position: absolute;
	top: 50%;
	left: 18%;
	opacity: 0;
}


/* 以下タブレット・スマホ */
@media (max-width: 1024px) {
	#fixed-image #fixed-image-catch {
		width: 80%;
		height: auto;
		position: absolute;
		top: 45%;
		left: 10%;
		opacity: 0;
	}
	
}

/* ========================================
インタビュー
========================================== */
#int-bg1 {
	width: 100%;
	height: 100%;
	min-height: 100%;
	background: url(../img/MJ-int-bg-1-pc.jpg) no-repeat;
	background-size: cover;
	background-position: left center;
	position: fixed;
	top: 0;
	left: 0;
	z-index: -25;
	opacity: 0;
}
#int-bg2 {
	width: 100%;
	height: 100%;
	min-height: 100%;
	background: url(../img/MJ-int-bg-2-pc.jpg) no-repeat;
	background-size: cover;
	background-position: right center;
	position: fixed;
	top: 0;
	left: 0;
	z-index: -24;
	opacity: 0;
}
.int-bg2 {
	animation: int-bg2 8.0s ease 0s infinite;
}
@keyframes int-bg2 {
	0% {opacity: 0;}
	35% {opacity: 0;}
	50% {opacity: 1;}
	85% {opacity: 1;}
	100% {opacity: 0;}
}
#interview {
	width: 100%;
	height: auto;
	padding: 25vw 0;
}
#interview h2 {
	width: 100%;
	height: auto;
	margin: 0 0 20vw;
	padding: 0;
	text-align: center;
}
#interview h2 img {
	width: 25%;
}
#interview .int-unit {
	width: 50%;
	height: auto;
	margin: 0 25% 7vw;
}
#interview .int-unit .int-q {
	width: 100%;
	height: auto;
	margin: 0 0 1vw;
	color: #e1c827;
	font-size: 1.1vw;
	line-height: 1.9vw;
	letter-spacing: 1.2px;
}
#interview .int-unit .int-a {
	width: 100%;
	height: auto;
	margin: 0;
	color: #fff;
	font-size: 1.1vw;
	line-height: 1.9vw;
	letter-spacing: 1.2px;
}

/* 以下タブレット・スマホ */
@media (max-width: 1024px) {
	#int-bg1 {
		width: 100%;
		height: 100%;
		min-height: 100%;
		background: url(../img/MJ-int-bg-1-sp.jpg) no-repeat;
		background-size: cover;
		background-position: bottom center;
		position: fixed;
		top: 0;
		left: 0;
		z-index: -25;
		opacity: 0;
	}
	#int-bg2 {
		width: 100%;
		height: 100%;
		min-height: 100%;
		background: url(../img/MJ-int-bg-2-sp.jpg) no-repeat;
		background-size: cover;
		background-position: right bottom;
		position: fixed;
		top: 0;
		left: 0;
		z-index: -24;
		opacity: 0;
	}
	#interview {
		width: 100%;
		height: auto;
		padding: 70vw 0;
	}
	#interview h2 {
		width: 100%;
		height: auto;
		margin: 0 0 40vw;
		padding: 0;
		text-align: center;
	}
	#interview h2 img {
		width: 80%;
	}
	#interview .int-unit {
		width: 90%;
		height: auto;
		margin: 0 5% 20vw;
	}
	#interview .int-unit .int-q {
		width: 100%;
		height: auto;
		margin: 0 0 3vw;
		color: #e1c827;
		font-size: 4vw;
		line-height: 7vw;
		letter-spacing: 1.2px;
	}
	#interview .int-unit .int-a {
		width: 100%;
		height: auto;
		margin: 0;
		color: #fff;
		font-size: 4vw;
		line-height: 7vw;
		letter-spacing: 1.2px;
	}

}



/* ========================================
スライダーエリア
========================================== */
#slider {
	width: 100%;
	height: auto;
	padding: 0;
	background-color: #000;
	position: relative;
	overflow-x: hidden;
}
#slider .top-slide-wrap {
	width: 100%;
	height: auto;
	margin: 0;
	display: flex;
	align-items: center;
	flex-wrap: nowrap;
	overflow: hidden;
	opacity: 1;
}
#slider #slider-1 .top-slide {
	list-style-type: none;
	margin: 0;
	padding: 0 0 5vw;
	display: flex;
	animation: loop-slide 70s infinite linear 0s both;
	perspective: 1000;
	backface-visibility:hidden;
	-webkit-backface-visibility:hidden;
}
#slider #slider-2 .top-slide {
	list-style-type: none;
	margin: 0;
	padding: 5vw 0 0;
	display: flex;
	animation: loop-slide-rev 70s infinite linear 0s both;
	perspective: 1000;
	backface-visibility:hidden;
	-webkit-backface-visibility:hidden;
}
#slider .top-slide-wrap .top-slide .content {
	width: 28vw;
	height: auto;
	margin: 0;
}
#slider .top-slide-wrap .top-slide .sp-slide {
	display: none;
}
#slider .top-slide-wrap .top-slide .content img {
	width: 100%;
	height: auto;
	vertical-align: bottom;
	backface-visibility:hidden;
	-webkit-backface-visibility:hidden;
}
#slider #comment {
	width: 100%;
	height: auto;
	padding: 5vw 0;
}
#slider #comment h2 {
	width: 100%;
	height: auto;
	margin: 0 0 1vw;
	padding: 0;
	text-align: center;
}
#slider #comment h2 img {
	width: 20%;
}
#slider #comment #keisho {
	width: 100%;
	height: auto;
	margin: 0 0 5vw;
	text-align: center;
	color: #CCB523;
	font-size: 1.1vw;
}

#slider #comment .com-unit {
	width: 50%;
	height: auto;
	margin: 0 25% 8vw;
}
#slider #comment .com-unit p {
	width: 100%;
	height: auto;
	margin: 0 0 2vw;
	padding: 0;
	font-size: 1.15vw;
	color: #fff;
	line-height: 2.4vw;
	letter-spacing: 1.3px;
}
#slider #comment .com-unit .com-name {
	width: 100%;
	height: auto;
	text-align: right;
	font-size: 1.6vw;
	color: #CCB523;
	line-height: 2.4vw;
	letter-spacing: 1.3px;
	font-weight: bold;
}
#slider #comment .com-unit .com-name span {
	display: inline-block;
	font-size: 1.15vw;
}
#slider #slide-credit {
	width: 100%;
	height: auto;
	text-align: center;
	color: #fff;
	font-size: 1.1vw;
	line-height: 2.0vw;
	letter-spacing: 1.2px;
}


/* 以下スマホ */
@media (max-width: 1024px) {
	#slider {
		width: 100%;
		height: auto;
		padding: 0;
		background-color: #000;
		position: relative;
		overflow-x: hidden;
	}
	#slider #slider-1 {
		margin: 0 0 15vw;
	}
	#slider #slider-2 {
		margin: 15vw 0 0;
	}
	#slider #slider-1 .top-slide {
		list-style-type: none;
		padding: 0;
		display: flex;
		animation: loop-slide 70s infinite linear 0s both;
		perspective: 1000;
		backface-visibility:hidden;
		-webkit-backface-visibility:hidden;
	}
	#slider #slider-2 .top-slide {
		list-style-type: none;
		padding: 0;
		display: flex;
		animation: loop-slide-rev 70s infinite linear 0s both;
		perspective: 1000;
		backface-visibility:hidden;
		-webkit-backface-visibility:hidden;
	}
	#slider .top-slide-wrap .top-slide .content {
		width: 80vw;
		height: auto;
		margin: 0;
	}
	#slider .top-slide-wrap .top-slide .sp-slide {
		display: block;
	}
	#slider #comment {
		width: 100%;
		height: auto;
		padding: 10vw 0;
	}
	#slider #comment h2 {
		width: 100%;
		height: auto;
		margin: 0 0 2vw;
		padding: 0;
		text-align: center;
	}
	#slider #comment h2 img {
		width: 50%;
	}
	#slider #comment #keisho {
		width: 100%;
		height: auto;
		margin: 0 0 15vw;
		text-align: center;
		color: #CCB523;
		font-size: 3.7vw;
	}	
	#slider #comment .com-unit {
		width: 90%;
		height: auto;
		margin: 0 5% 20vw;
	}
	#slider #comment .com-unit p {
		width: 100%;
		height: auto;
		margin: 0 0 2vw;
		padding: 0;
		font-size: 4vw;
		color: #fff;
		line-height: 8vw;
		letter-spacing: 1.3px;
	}
	#slider #comment .com-unit .com-name {
		width: 100%;
		height: auto;
		text-align: right;
		font-size: 5vw;
		color: #CCB523;
		line-height: 7vw;
		letter-spacing: 1.3px;
		font-weight: bold;
	}
	#slider #comment .com-unit .com-name span {
		display: inline-block;
		font-size: 4vw;
	}
		
	#slider #slide-credit {
		width: 100%;
		height: auto;
		margin: 0;
		text-align: center;
		color: #fff;
		font-size: 3.4vw;
		line-height: 5.8vw;
		letter-spacing: 0.6px;
	}
	
	
	
}








/* ========================================
SNSボタンアリア
========================================== */
.fadeInButton {
	animation-name:fadeIn;
	animation-duration:1.8s;
	animation-fill-mode:forwards;
	animation-delay: 2.7s;
}
.button-area {
	width:100%;
	height:auto;
	margin:0;
	padding:1vw 0;
	opacity: 1;
}
.button-area ul.social_sq_buttons {
	width:100%;
	height:auto;
	padding:0;
	margin:0;
	list-style-type: none;
	display:flex;
	justify-content: center;
	flex-wrap:wrap;
}
.button-area ul.social_sq_buttons li {
	width:140px;
	height: 20px;
	margin:0 3px;
	padding:0;
	display: flex;
	justify-content: center;
}
.button-area ul.social_sq_buttons li.fb {
	background:#1877F2;
}
.button-area ul.social_sq_buttons li.tw {
	background:#000;
}
.button-area ul.social_sq_buttons li.line {
	background:#06C755;
}
.button-area ul.social_sq_buttons li.checkin {
	background:#10519D;
}
.button-area ul.social_sq_buttons li.filmarks {
	background:#FFE100;
	text-align: center;
}
.button-area ul.social_sq_buttons li.filmarks img {
	width: 60%;
}
.button-area ul.social_sq_buttons li.fb .fb_iframe_widget > span {
  vertical-align: baseline !important;
}




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

.button-area {
	width:100%;
	height:auto;
	margin:0;
	padding:10px 0 10px;
}

.button-area ul.social_sq_buttons {
	width:100%;
	height:auto;
	padding:0;
	margin:0;
	list-style-type: none;
	display:flex;
	justify-content: center;
	flex-wrap:wrap;
}

.button-area ul.social_sq_buttons li {
	width:160px;
	height: 20px;
	margin:5px;
	padding:3px 0;
	display: flex;
	justify-content: center;
}


}



/* ========================================
フッター
========================================== */
footer {
	width:100%;
	height:auto;
	padding:0;
	margin:0;
	background-color: #000;
	position: relative;
	overflow: hidden;
}
footer #foot-bg1 {
	width: 100%;
	height: auto;
}
footer #foot-bg2 ,
footer #foot-bg3 {
	width: 100%;
	height: auto;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
}
.foot-bg2 {
	animation: fadeIn 2.5s ease 0.5s forwards;
}
.foot-bg3 {
	animation: fadeIn 2.5s ease 1.2s forwards;
}
footer #foot-logo {
	width: 28%;
	height: auto;
	position: absolute;
	top: 45%;
	left: 36%;
}
footer #foot-date {
	width: 5.5%;
	height: auto;
	position: absolute;
	top: 35%;
	left: 15%;
	opacity: 0;
}
footer .button-area {
	position: absolute;
	bottom: 0;
	opacity: 0;
}
.foot-last-anime {
	animation: fadeIn 1.0s ease 2.5s forwards;
}
.foot-date {
	animation: zoomIn 0.6s ease 2.0s forwards;
}

@media (max-width: 1024px) {
	footer {
		display: block;
		width:100%;
		height:auto;
		padding:0;
		margin:0;
		position: relative;
	}
	footer #foot-logo {
		width: 80%;
		height: auto;
		position: absolute;
		top: 7%;
		left: 10%;
	}
	footer #foot-date {
		width: 17%;
		height: auto;
		position: absolute;
		top: 25%;
		left: 10%;
	}
	
}
@media (max-width: 510px) {

}


/* ========================================
ダウンロード
========================================== */
#dl-body:before {
	content:"";
	display:block;
	position:fixed;
	top:0;
	left:0;
	z-index:-5;
	width:100%;
	height:100vh;
	background:url(../download/images/MJ-dl-bg.jpg) no-repeat;
	background-size: cover;
	background-position: left center;
	opacity: 1;
}
#dl-bg-item {
	width: 30%;
	height: auto;
	position: fixed;
	bottom: 0;
	left: 35%;
}

  .dlButton {
	  background-color:transparent;
	  border:1px solid #fff;
	  display:inline-block;
	  cursor:pointer;
	  color:#fff;
	  font-family:Arial;
	  width: 16vw;
	  font-size:1.1vw;
	  padding:10px 0;
	  text-align: center;
	  text-decoration:none;
	  font-weight: bold;
	  font-feature-settings:"palt";
  }
  .dlButton:hover {
	  background-color:#fff;
	  border:1px solid #fff;
	  color:#000;
	  transition-duration: 0.6s
  }
  .dlButton:active {
	  position:relative;
	  top:1px;
  }  
  .issiki {
	  margin:20px 0 80px;
	  color:#fff !important;
	  width: 25vw;
  }  
  .issiki:hover {
	  background-color:#fff;
	  color:#000 !important;
  }
  .dl-contents {
	  width:80%;
	  height:auto;
	  padding:20px 10% 80px;
	  font-size:1.3em;
  }  
  .dl-contents h2 {
	  width:100%;
	  text-align:center;
	  padding:0;
	  color:#fff;
	  font-size:2em;
	  margin-bottom:30px;
  }  
  .dl-contents h2 span.small {
	  font-size:0.5em;
	  line-height:0.7em;
  }
  
  .dl-contents h2 img {
	  width:35%;
  }  
  #dl-wrapper {
	  width:100%;
	  height:auto;
	  text-align:center;
	  margin-bottom:20px;
  }
  #dl-wrapper .dl-txt2 {
	width:100%;
	height:auto;
	text-align:center;
  }
  #dl-wrapper .dl-txt2 img {
	width: 30%;
  }
  #dl-wrapper .dl-txt1 {
	  width:100%;
	  height:auto;
	  text-align:center;
	  color:#fff;
	  margin:20px 0 5px;
	  font-size: 1.1em;
	  font-weight: bold;
	  font-feature-settings:"palt";

  }
  #dl-wrapper .dl-txt1 span {
	display: inline-block;
	position: relative;
	z-index: 2;
  }
  
  #dl-wrapper .dl-txt1 a {
	  color:#000;
  }
  
  #dl-wrapper .dl-txt1 img {
	  width:30%;
  }
  
  #dl-wrapper .sikiri {
	  width:100%;
	  height:auto;
	  padding:40px 0 20px;
	  text-align:center;
  }
  
  #dl-wrapper .sikiri img {
	  width:10%;
  }
  
  
  #dl-wrapper .dl-uline {
	  display:inline-block;
	  width:70%;
	  margin:20px 0 30px;
  }
  
  #dl-wrapper .dl-uline img {
	  width:100%;
	  height:60px;
  }
  .dl-wrap {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0 0 10vw;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
  }  
  .dl-wrap .img-box {
	  width:22%;
	  height:auto;
	  padding:0 1%;
	  margin:50px 1%;
	  color:#fff;
	  text-align: center;
	  font-size: 0.9em;
	  font-weight: bold;
	  font-feature-settings: "palt";

  }  
  .img-box img {
	  width:90%;
  }
  .dl-wrap .img-box span {
	display: inline-block;
	font-size: 0.7em;
	line-height: 1.3em;
  }


  .longname {
	  font-size:0.75em;
  }
  
  footer.dl-footer {
	  width:100%;
	  height:auto;
	  margin:0;
	  padding:50px 0 0;
	  background:#000;
  }
  
  footer.dl-footer .footimg {
	  width:100%;
	  height:auto;
	  margin:0;
	  padding:0;
  }
  
  footer.dl-footer .footimg img {
	  width:100%;
	  height:auto;
	  vertical-align:bottom;
  }
