html{
  height:100%; 
}
body { 
	margin: 0; 
	padding:0;
	font-family: YuGothic,'Yu Gothic','ヒラギノ角ゴシック','Hiragino Sans',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 fadeIn {
	from {
	opacity: 0;
	}

	to {
	opacity: 1;
	}
}
.fadeIn {
	animation-name:fadeIn;
	animation-duration:1.1s;
	animation-fill-mode:forwards;
	animation-timing-function: ease-out;
}
.fadeIn2 {
	animation-name:fadeIn;
	animation-duration:1.2s;
	animation-delay: 0.8s;
	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;
} 
.fadeInZero {
	animation-name:fadeIn;
	animation-duration:0s;
	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;
		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: 1.0s;
    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 {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000000;
	background-image: linear-gradient(
	180deg,
	hsl(188deg 84% 35%) 0%,
	hsl(189deg 46% 47%) 11%,
	hsl(190deg 39% 55%) 22%,
	hsl(190deg 38% 62%) 33%,
	hsl(190deg 38% 68%) 44%,
	hsl(191deg 37% 75%) 56%,
	hsl(191deg 37% 81%) 67%,
	hsl(191deg 37% 87%) 78%,
	hsl(191deg 37% 94%) 89%,
	hsl(0deg 0% 100%) 100%
	);
	display: flex;
	justify-content: center;
	align-items: center;
}
#loader {
	width:22%;
	height:auto;
	margin:0;
	padding:0;
	position:relative;
}
#loader #load1 {
	width: 100%;
	height: auto;
	animation: load1 2.5s ease 0s infinite;
}
#loader #load2 ,
#loader #load3 ,
#loader #load4 {
	width: 100%;
	height: auto;
	position: absolute;
	top: 0;
	left: 0;
}
#loader #load2 {
	animation: load2 2.5s ease 0s infinite;
}
#loader #load3 {
	animation: load3 2.5s ease 0s infinite;
}
#loader #load4 {
	animation: load4 2.5s ease 0s infinite;
}
@keyframes load1 {
	0% {opacity: 0;}
	20% {opacity: 1;}
	80% {opacity: 1;}
	100% {opacity: 1;}
}
@keyframes load2 {
	0% {opacity: 0;}
	10% {opacity: 0;}
	40% {opacity: 1;}
	80% {opacity: 1;}
	100% {opacity: 1;}
}
@keyframes load3 {
	0% {opacity: 0;}
	30% {opacity: 0;}
	50% {opacity: 1;}
	80% {opacity: 1;}
	100% {opacity: 1;}
}
@keyframes load4 {
	0% {opacity: 0;}
	40% {opacity: 0;}
	60% {opacity: 1;}
	80% {opacity: 1;}
	100% {opacity: 1;}
}

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

	#loader {
		width:60%;
		height:auto;
		margin:0;
		padding:0;
		position:relative;
	}
	
}


/* ========================================
ヘッダー
========================================== */
#pcheader {
	display: block;
	width:100%;
	height:auto;
	padding:15px 0 20px;
	position:fixed;
	top:0;
	background: -moz-linear-gradient(top, #57ACB3, transparent);
	background: -webkit-linear-gradient(top, #57ACB3, transparent);
	background: linear-gradient(to bottom, #57ACB3, 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.6vw;
	line-height:1.6vw;
	text-align: center;
	color: #fff;
	font-family: "Noto Sans", sans-serif;
	font-optical-sizing: auto;
	font-weight: 500;
	font-style: normal;
	font-variation-settings: "wdth" 100;
}

#pcheader ul#pcmenu li.menusns a span.eng {
	transform: translateY(0px);
}
#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: 100px;
	background: #57ACB3;
	z-index: 200000;
	overflow-y: scroll;
}
.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% 8vw;
	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;
	font-family: 'Timmana', sans-serif;
	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: #F6F299 !important;
	transition: all .6s;
}  
.hamburger #menu {
	position: absolute;
	top: 44px;
	left: 9px;
	font-weight:bold;
	color:#F6F299;
	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;
}
#menu-inu {
	width: 50%;
	margin-left: 49%;
	transform: translateY(-50%);
}

  .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) {
	#com-banner {
		width: 25%;
		height: auto;
		position: fixed;
		bottom: 20%;
		right: 1%;
		z-index: 5;
	}
}

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

.navigation {
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 80%;
	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: 95%;
	min-height: 95%;
	padding: 100px 0 10px;
	transition: all .6s;
	z-index: 200;
	overflow-y: scroll; /* メニューが多くなったらスクロールできるように */
  }
  .global-nav__list {
	margin: 50px 0 30px;
  }
  .global-nav__item a {
	display: block;
	padding: 5px 0;
	text-decoration: none;
	transition: all .6s;
  }
  .global-nav__item a .en {
	width: 100%;
	font-size:3.0em;
	line-height: 1.5em;
	font-family: "Noto Sans", sans-serif;
	font-optical-sizing: auto;
	font-weight: 500;
	font-style: normal;
	font-variation-settings:
	  "wdth" 100;
}
.global-nav__item a .jp {
	width: 100%;
	font-size:3vw;
}
.global-nav ul.nav-sns li {
	width: 10%;
	margin: 2vw 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: 10px 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.0rem;
		line-height: 3rem;
		letter-spacing: 1px;
	}
	.global-nav__item a .jp {
		width: 100%;
		font-size:3.2vw;
		transform: translateY(-36px);
	}
	.global-nav ul.nav-sns li {
		width: 13%;
		margin: 2vw 2% 0;
		text-align: center;
	}
	
}



/* ========================================
モーダル
========================================== */
.modal{
    display: none;
    height: 100%;
    position: fixed;
    top: 0;
    width: 100%;
	z-index: 999999;
}
.modal__bg{
    width: 100%;
    height: 100%;
    position: relative;
	top: 0;
	left: 0;
	opacity: 1;
}
.modal-eve__bg {
    width: 100%;
    height: 100%;
    position: relative;
	top: 0;
	left: 0;
	background-color: #298793;
	opacity: 0.9;
}
.movie-bg {
	background:#000;
	opacity: 0.85;
	background-size: cover;
	background-position: center center;
    height: 100%;
    position: absolute;
    width: 100%;
}
.modal-bg1 {
	width: 100%;
	height: 100%;
	background:url(../img/WL-comment-bg-1-pc.jpg) no-repeat;
	background-size: cover;
	background-position: center center;
	position: fixed;
	top: 0;
	left: 0;
}
.modal-bg2 {
	width: 100%;
	height: 100%;
	background:url(../img/WL-comment-bg-2-pc.jpg) no-repeat;
	background-size: cover;
	background-position: center center;
	position: fixed;
	top: 0;
	left: 0;
	animation: modal-bg2 12s ease 0s infinite;
}
.modal-bg3 {
	width: 100%;
	height: 100%;
	background:url(../img/WL-comment-bg-3-pc.jpg) no-repeat;
	background-size: cover;
	background-position: center center;
	position: fixed;
	top: 0;
	left: 0;
	animation: modal-bg3 12s ease 0s infinite;
}
@keyframes modal-bg2 {
	0% {opacity: 0;}
	28% {opacity: 0;}
	33% {opacity: 1;}
	61% {opacity: 1;}
	66% {opacity: 0;}
	100% {opacity: 0;}
}
@keyframes modal-bg3 {
	0% {opacity: 0;}
	61% {opacity: 0;}
	66% {opacity: 1;}
	95% {opacity: 1;}
	100% {opacity: 0;}
}
.movie__content {
    width: 70%;
	height: auto;
    padding: 40px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
}
.modal__content {
    width: 100%;
	height: 90%;
    padding: 20px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
	box-sizing: border-box;
	z-index: 3;
	overflow-y: scroll;
	overflow-x: hidden;
	scrollbar-width: none;
	scrollbar-color: #fff #57ACB3;
}
.modal__content::-webkit-scrollbar {
    width: 0px;
}
.modal__content::-webkit-scrollbar-track{
	background-color: #57ACB3;
}
.modal__content::-webkit-scrollbar-thumb{
	background-color: #fff;
}
.modal__content h2 {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	text-align: center;
}
.modal__content h2 img {
	width: 20%;
}
.modal__content h2#eve-title {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	text-align: center;
}
.modal__content h2#eve-title img {
	width: 50%;
}
.modal__content .eve-unit {
	width: 60%;
	height: auto;
	margin: 5vw 20%;
	padding: 5vw 0;
	background-color: #F8F49B;
	border-radius: 30px;
}
.modal__content .eve-unit h3 {
	width: 100%;
	height: auto;
	margin: 0 0 3vw;
	padding: 0;
	text-align: center;
	font-size: 1.3vw;
}
.modal__content .eve-unit .eve-director {
	width: 100%;
	height: auto;
	margin: 0 0 5vw;
	padding: 0;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
.modal__content .eve-unit .eve-director .photo {
	width: 30%;
	height: auto;
	margin: 0 2%;
}
.modal__content .eve-unit #eve-txt-box {
	width: 80%;
	height: auto;
	padding: 5vw 0;
	margin: 3vw 10% 0;
	font-size: 1.0vw;
	line-height: 2vw;
	color: #000;
	text-align: center;
	background-color: #fff;
}
.modal__content .eve-unit #eve-txt-box .big {
	font-size: 1.2vw;
	display: inline;
}
.modal__content .eve-unit #eve-txt-box .big span {
	color: #298793;
}
.modal__content .eve-unit p {
	width: 100%;
	text-align: center;
	font-size: 1.1vw;
}

.modal__content #junfu {
	width: 100%;
	height: auto;
	margin: 1vw 0 5vw;
	text-align: center;
	font-size: 1.1vw;
	color: #231815;
}
.modal__content .com-unit {
	width: 50%;
	height: auto;
	margin: 5vw 19%;
	padding: 5vw 4% 5vw 8%;
	background-color: rgba(241, 234, 196, 0.85);
}
.modal__content .com-unit2 {
	padding: 5vw 6%;
}
.modal__content .com-unit p {
	width: 100%;
	height: auto;
	margin: 0 0 2vw;
	padding: 0;
	font-size: 1.2vw;
	color: #2F1A14;
	letter-spacing: 0.6px;
	font-family: "Noto Serif JP", serif;
	font-optical-sizing: auto;
	font-weight: 500;
	font-style: normal;
}
.modal__content .com-unit p span {
	font-size: 1.6vw;
	color: #2F1A14;
	font-family: "Noto Serif JP", serif;
	font-optical-sizing: auto;
	font-weight: 700;
	font-style: normal;
}
.modal__content .com-unit .auther {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	font-family: "Noto Serif JP", serif;
	font-optical-sizing: auto;
	font-weight: 500;
	font-style: normal;
}
.modal__content .com-unit .auther .name {
	width: auto;
	height: auto;
	font-size: 1.6vw;
	line-height: 3.2vw;
	color: #2F1A14;
	font-weight: 700;
}
.modal__content .com-unit .auther .title {
	width: auto;
	height: auto;
	font-size: 1.1vw;
	line-height: 3.2vw;
	color: #2F1A14;
	font-weight: 500;
}
.modal__content #com-logo {
	width: 100%;
	height: auto;
	margin: 10vw 0 0;
	text-align: center;
}
.modal__content #com-logo img {
	width: 20%;
}
.modal__content #com-date {
	width: 100%;
	height: auto;
	margin: 1vw 0 0;
	text-align: center;
}
.modal__content #com-date img {
	width: 15%;
}


.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%;
  }
.batsu {
	width: 3%;
	height: auto;
	position: fixed;
	top: 2%;
	right: 2%;
}
.batsu2 {
	width: 6%;
	height: auto;
	position: fixed;
	top: 5%;
	right: 9%;
	z-index: 5;
}
.batsu img {
	width: 100%;
	vertical-align: bottom;
}
.batsu2:hover {
	transform: rotate(360deg);
	transition: 1.0s ease all;
}


/* 以下タブレット・スマホ */
@media (max-width: 1024px) {
	.modal-bg1 {
		width: 100%;
		height: 100%;
		min-height: 100%;
		background:url(../img/WL-comment-bg-1-sp.jpg) no-repeat;
		background-size: cover;
		background-position: center center;
		position: fixed;
		top: 0;
		left: 0;
	}
	.modal-bg2 {
		width: 100%;
		height: 100%;
		min-height: 100%;
		background:url(../img/WL-comment-bg-2-sp.jpg) no-repeat;
		background-size: cover;
		background-position: center center;
		position: fixed;
		top: 0;
		left: 0;
		animation: modal-bg2 12s ease 0s infinite;
	}
	.modal-bg3 {
		width: 100%;
		height: 100%;
		min-height: 100%;
		background:url(../img/WL-comment-bg-3-sp.jpg) no-repeat;
		background-size: cover;
		background-position: center center;
		position: fixed;
		top: 0;
		left: 0;
		animation: modal-bg3 12s ease 0s infinite;
	}	
	.movie__content {
		width: 98%;
		height: auto;
		padding: 1%;
		position: absolute;
		left: 50%;
		top: 50%;
		transform: translate(-50%,-50%);
	}
	.batsu {
		width: 10%;
		height: auto;
		position: fixed;
		top: 3%;
		right: 3%;
	}
	.modal__content {
		width: 100%;
		height: 90%;
		padding: 20px;
		position: absolute;
		left: 50%;
		top: 50%;
		transform: translate(-50%,-50%);
		box-sizing: border-box;
		z-index: 3;
		overflow-y: scroll;
		overflow-x: hidden;
		scrollbar-width: none;
		scrollbar-color: #fff #57ACB3;
	}
	.modal-eve__content {
		padding: 50px 0;
	}
	.modal__content::-webkit-scrollbar {
		width: 0px;
	}
	.modal__content::-webkit-scrollbar-track{
		background-color: #57ACB3;
	}
	.modal__content::-webkit-scrollbar-thumb{
		background-color: #fff;
	}
	.modal__content h2 {
		width: 100%;
		height: auto;
		margin: 0;
		padding: 0;
		text-align: center;
	}
	.modal__content h2 img {
		width: 70%;
	}
	.modal__content h2#eve-title {
		width: 100%;
		height: auto;
		margin: 0;
		padding: 0;
		text-align: center;
	}
	.modal__content h2#eve-title img {
		width: 80%;
	}
	.modal__content .eve-unit {
		width: 98%;
		height: auto;
		margin: 10vw 0;
		padding: 10vw 1%;
		background-color: #F8F49B;
		border-radius: 30px;
	}
	.modal__content .eve-unit h3 {
		width: 100%;
		height: auto;
		margin: 0 0 3vw;
		padding: 0;
		text-align: center;
		font-size: 1.0rem;
	}
	.modal__content .eve-unit .eve-director {
		width: 100%;
		height: auto;
		margin: 0 0 5vw;
		padding: 0;
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
	}
	.modal__content .eve-unit .eve-director .photo {
		width: 70%;
		height: auto;
		margin: 2vw 2%;
	}
	.modal__content .eve-unit #eve-txt-box {
		width: 90%;
		height: auto;
		padding: 5vw 2%;
		margin: 3vw 3% 0;
		font-size: 0.9rem;
		line-height: 1.6rem;
		color: #000;
		text-align: center;
		background-color: #fff;
	}
	.modal__content .eve-unit #eve-txt-box .big {
		font-size: 1rem;
		display: inline;
	}
	.modal__content .eve-unit #eve-txt-box .big span {
		color: #298793;
	}
	.modal__content .eve-unit p {
		width: 100%;
		text-align: center;
		font-size: 0.9rem;
	}
	
	.modal__content #junfu {
		width: 100%;
		height: auto;
		margin: 1vw 0 5vw;
		text-align: center;
		font-size: 3.5vw;
		color: #231815;
	}
	.modal__content .com-unit {
		width: 90%;
		height: auto;
		margin: 30vw 0;
		padding: 15vw 5%;
	}
	.modal__content .com-unit2 {
		padding: 15vw 5%;
	}
	.modal__content .com-unit p {
		width: 100%;
		height: auto;
		margin: 0 0 2vw;
		padding: 0;
		font-size: 4vw;
		letter-spacing: 0.8px;
	}
	.modal__content .com-unit p span {
		font-size: 4.5vw;
		font-weight: bold;
	}
	.modal__content .com-unit .auther {
		width: 100%;
		height: auto;
		margin: 8vw 0 0;
		padding: 0;
		display: flex;
		justify-content: flex-start;
		align-items: center;
	}
	.modal__content .com-unit .auther .name {
		width: auto;
		height: auto;
		font-size: 4.5vw;
		line-height: 7vw;
		font-weight: bold;
	}
	.modal__content .com-unit .auther .title {
		width: auto;
		height: auto;
		font-size: 3.5vw;
		line-height: 7vw;
	}
	.modal__content #com-logo {
		width: 100%;
		height: auto;
		margin: 30vw 0 0;
		text-align: center;
	}
	.modal__content #com-logo img {
		width: 60%;
	}
	.modal__content #com-date {
		width: 100%;
		height: auto;
		margin: 5vw 0 50vw;
		text-align: center;
	}
	.modal__content #com-date img {
		width: 50%;
	}
	
}

/* 以下タブレット・スマホ */
@media (max-width: 610px) {
	.modal__content .eve-unit h3 {
		width: 100%;
		height: auto;
		margin: 0 0 3vw;
		padding: 0;
		text-align: center;
		font-size: 4.1vw;
	}
	.modal__content .eve-unit #eve-txt-box {
		width: 94%;
		height: auto;
		padding: 5vw 1%;
		margin: 3vw 2% 0;
		font-size: 3.8vw;
		line-height: 6.8vw;
		color: #000;
		text-align: center;
		background-color: #fff;
	}
	.modal__content .eve-unit #eve-txt-box .big {
		font-size: 4.1vw;
		display: inline;
	}
	.modal__content .eve-unit p {
		width: 100%;
		text-align: center;
		font-size: 3.8vw;
	}

}


/* ========================================
トップメイン画像まわり
========================================== */
#topmain {
	width:100%;
	height:auto;
	padding:0;
	margin:0;
	position:relative;
	overflow: hidden;
}
#topmain #top-bg {
	width: 100%;
	height: auto;
}
#topmain #top-bg2 {
	width: 100%;
	height: auto;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}
#topmain #mist {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	position: absolute;
	top: 40%;
	left: -20%;
	pointer-events: none;
	opacity: 0;
}
.ag-smoke-block {
	width: 100%;
	height: auto;
	z-index: 1;
	position: relative;
}
.ag-smoke-1 {
	z-index: -1;
	position: absolute;
	top: 0;
	right: -10%;
	animation: an-smoke-1 2.0s ease-in-out infinite;
	height: 16vw;
	width: 50vw;
}
.ag-smoke-2 {
	z-index: -1;
	position: absolute;
	top: 0;
	right: 25%;
	animation: an-smoke-1 2.8s ease-in-out infinite;
	height: 16vw;
	width: 50vw;
}
.ag-smoke-3 {
	z-index: -1;
	position: absolute;
	top: 0;
	right: -40%;
	animation: an-smoke-1 3.6s ease-in-out infinite;
	height: 16vw;
	width: 50vw;
}
.ag-smoke__delay-1 {
	animation-delay: 0.4s;
}  
.ag-smoke__delay-2 {
	animation-delay: 0.8s;
}
.ag-smoke__delay-3 {
	animation-delay: 1.2s;
}
.ag-smoke__delay-4 {
	animation-delay: 0.1s;
}  
.ag-smoke__delay-5 {
	animation-delay: 0.5s;
}
.ag-smoke__delay-6 {
	animation-delay: 0.9s;
}
.ag-smoke-1 img ,
.ag-smoke-2 img ,
.ag-smoke-3 img {
	width: auto;
	height: 100%;
}
@keyframes an-smoke-1 {
0% {
	opacity: 0;

	-webkit-transform: translateX(-15%) rotate(.01deg);
	transform: translateX(-15%) rotate(.01deg);
	}
	50% {
	opacity: .4;
	}
	to {
	opacity: 0;

	-webkit-transform: translateX(0) rotate(.01deg);
	transform: translateX(0) rotate(.01deg);
	}
}
#topmain #top-tate {
	width: 9.5%;
	height: auto;
	position: absolute;
	top: 38%;
	right: 15.5%;
	z-index: 1;
	opacity: 0;
}
#topmain #top-title {
	width: 32%;
	height: auto;
	position: absolute;
	top: 8%;
	left: 34%;
	z-index: 1;
	opacity: 0;
}
#topmain #top-award {
	width: 50%;
	height: auto;
	position: absolute;
	bottom: 12%;
	left: 25%;
	z-index: 1;
	opacity: 0;
}
#topmain #top-catch {
	width: 68%;
	height: auto;
	position: absolute;
	bottom: 3%;
	left: 16%;
	z-index: 1;
	opacity: 0;
}
#topmain #eve-banner {
	width: 10%;
	height: auto;
	position: absolute;
	bottom: 30%;
	right: 3%;
	opacity: 0;
	z-index: 2;
}
#topmain #com-banner {
	width: 10%;
	height: auto;
	position: absolute;
	bottom: 10%;
	right: 3%;
	opacity: 0;
	z-index: 2;
}
#topmain #eve-banner a:hover img ,
#topmain #com-banner a:hover img {
	transform: rotate(10deg);
	transition: 0.5s ease all;
}
.mist {
	animation: fadeIn 1.5s ease-in 0s forwards;
}
.top-tate {
	animation: fadeIn 1.5s ease-in 1.1s forwards;
}
.top-others-anime {
	animation: fadeIn 1.5s ease-in 2.4s forwards;
}



/* 以下タブレット・スマホ */
@media (max-width: 1024px) {
	#topmain #top-tate {
		width: 30%;
		height: auto;
		position: absolute;
		top: 21%;
		right: 35%;
		z-index: 1;
		opacity: 0;
	}
	#topmain #top-title {
		width: 90%;
		height: auto;
		position: absolute;
		top: 3%;
		left: 5%;
		z-index: 1;
		opacity: 0;
	}
	#topmain #top-catch {
		width: 96%;
		height: auto;
		position: absolute;
		bottom: 3%;
		left: 2%;
		z-index: 1;
		opacity: 0;
	}
	#topmain #eve-banner {
		width: 30%;
		height: auto;
		position: absolute;
		bottom: 35%;
		right: 2%;
		opacity: 0;
		z-index: 2;
	}
	
	#topmain #com-banner {
		width: 30%;
		height: auto;
		position: absolute;
		bottom: 20%;
		right: 2%;
		opacity: 0;
		z-index: 2;
	}
	
	
	@keyframes an-smoke-1 {
		0% {
			opacity: 0;
		
			-webkit-transform: translateX(-15%) rotate(.01deg);
			transform: translateX(-15%) rotate(.01deg);
			}
			50% {
			opacity: .5;
			}
			to {
			opacity: 0;
		
			-webkit-transform: translateX(0) rotate(.01deg);
			transform: translateX(0) rotate(.01deg);
			}
	}
	@keyframes an-smoke-2 {
		0% {
			opacity: 0;
		
			-webkit-transform: translateX(-15%) rotate(.01deg);
			transform: translateX(-15%) rotate(.01deg);
			}
			50% {
			opacity: .2;
			}
			to {
			opacity: 0;
		
			-webkit-transform: translateX(0) rotate(.01deg);
			transform: translateX(0) rotate(.01deg);
			}
	}

	#topmain #mist {
		width: 200%;
		height: auto;
		margin: 0;
		padding: 0;
		position: absolute;
		top: 55%;
		left: -80%;
		pointer-events: none;
	}
	.ag-smoke-1 {
		z-index: -1;
		position: absolute;
		top: 0;
		right: 0;
		animation: an-smoke-2 2.0s ease-in-out infinite;
		height: 50vw;
		width: 100vw;
	}
	.ag-smoke-2 {
		z-index: -1;
		position: absolute;
		top: 0;
		right: 20%;
		animation: an-smoke-1 3.5s ease-in-out infinite;
		height: 50vw;
		width: 100vw;
	}
	.ag-smoke-3 {
		z-index: -1;
		position: absolute;
		top: 0;
		right: -20%;
		animation: an-smoke-1 4.6s ease-in-out infinite;
		height: 50vw;
		width: 100vw;
	}	
	#topmain #top-award {
		width: 94%;
		height: auto;
		position: absolute;
		bottom: 15%;
		left: 3%;
		z-index: 1;
		opacity: 0;
	}
	
}

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




/* ========================================
ブリッジ
========================================== */
#bridge {
	width: 100%;
	height: auto;
	padding: 3vw 0 5vw;
	background-color: #57ACB3;
	position: relative;
}
#bridge #video-loop {
	width: 28%;
	height: auto;
	margin: 0;
	position: absolute;
	top: -60%;
	left: 5%;
	z-index: 3;
	opacity: 0;
}
#bridge #video-loop video {
	width: 100%;
	height: auto;
	vertical-align: bottom;
}
#bridge #billing-pc {
	display: block;
	width: 100%;
	height: auto;
	margin: 0 0 2vw;
	text-align: center;
	opacity: 0;
}
#bridge #billing-pc img {
	width: 60%;
}
#bridge #date {
	width: 100%;
	height: auto;
	margin: 0 0 2vw;
	text-align: center;
	opacity: 0;
}
#bridge #date img {
	width: 50%;
}
#bridge #theater {
	width: 100%;
	height: auto;
	margin: 2vw 0;
	text-align: center;
	opacity: 0;
}
#bridge #theater img {
	width: 17%;
	vertical-align: bottom;
}
#bridge #book {
	width: 100%;
	height: auto;
	margin: 2vw 0;
	text-align: center;
	opacity: 0;
}
#bridge #book img {
	width: 17%;
	vertical-align: bottom;
}
#bridge #mubi-banners {
	width: 100%;
	height: auto;
	margin: 2vw 0;
	padding: 0;
	list-style-type: none;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	opacity: 1;
}
#bridge #mubi-banners li {
	width: 17%;
	height: auto;
	margin: 0 1%;
	opacity: 0;
}
#bridge #sns-link {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	list-style-type: none;
	display: flex;
	justify-content: center;
	opacity: 0;
}
#bridge #sns-link li {
	width: 4%;
	height: auto;
	margin: 0 1%;
}
#bridge #theater a:hover ,
#bridge #book a:hover ,
#bridge #mubi-banners li a:hover ,
#bridge #sns-link a:hover {
	animation: flash 1.2s;
}

/* 以下タブレット・スマホ */
@media (max-width: 1024px) {
	#bridge {
		width: 100%;
		height: auto;
		padding: 6vw 0 10vw;
		position: relative;
	}
	#bridge #billing-pc {
		display: none;
	}
	#bridge #video-loop {
		width: 90%;
		height: auto;
		margin: 0 5% 10vw;
		position: static;
	}
	#bridge #video-loop video {
		width: 100%;
		height: auto;
		vertical-align: bottom;
	}
	#bridge #date {
		width: 100%;
		height: auto;
		margin: 0 0 8vw;
		text-align: center;
	}
	#bridge #date img {
		width: 90%;
	}
	#bridge #theater {
		width: 100%;
		height: auto;
		margin: 5vw 0 2vw;
		text-align: center;
	}
	#bridge #theater img {
		width: 70%;
	}
	#bridge #book {
		width: 100%;
		height: auto;
		margin: 2vw 0 5vw;
		text-align: center;
		opacity: 0;
	}
	#bridge #book img {
		width: 70%;
		vertical-align: bottom;
	}
	
	#bridge #mubi-banners {
		width: 100%;
		height: auto;
		margin: 2vw 0;
		padding: 0;
		list-style-type: none;
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
		opacity: 1;
	}
	#bridge #mubi-banners li {
		width: 70%;
		height: auto;
		margin: 2vw 0;
	}	
	#bridge #sns-link {
		margin-top: 1vw;
	}
	#bridge #sns-link li {
		width: 15%;
		margin: 0 2%;
	}
	#bridge #lead ,
	#bridge #billing {
		display: none;
	}
}


/* ========================================
ストーリー
========================================== */
#story-bg {
	width: 100%;
	height: 100%;
	min-height: 100%;
	background: url(../img/WL-story-bg-pc.jpg) no-repeat;
	background-position: 0% 0%;
	background-size: 110%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: -20;
	transition: 2.0s ease all;
}
#story-bg2 {
	display: none;
}
#story {
	width: 90%;
	height: auto;
	padding: 10vw 0;
	text-align: right;
}
#story h2 {
	width: 100%;
	height: auto;
	margin: 0 0 10vw;
	text-align: right;
	opacity: 0;
}
#story h2 img {
	width: 12%;
	height: auto;
	vertical-align: bottom;
}
#story #story-lead {
	width: 100%;
	height: auto;
	margin: 0 0 10vw;
	text-align: right;
	opacity: 0;
}
#story #story-lead img {
	width: 30%;
	height: auto;
	vertical-align: bottom;
}
#story p {
	display: inline-block;
	width: 40%;
	height: auto;
	margin: 0;
	padding: 0;
	font-size: 1.2vw;
	line-height: 2.1vw;
	color: #F6F299;
	letter-spacing: 1.5px;
	font-weight: 600;
	text-align: left;
	opacity: 0;
}


/* 以下タブレット・スマホ */
@media (max-width: 1024px) {
	#story-bg {
		width: 100%;
		height: 100%;
		min-height: 100%;
		background: url(../img/WL-story-bg-sp.jpg) no-repeat;
		background-position: center center;
		background-size: 200%;
		position: fixed;
		top: 0;
		left: 0;
		z-index: -20;
		transition: 2.0s ease all;
	}
	#story-bg2 {
		display: block;
		width: 100%;
		height: 100%;
		min-height: 100%;
		background: rgba(0, 0, 0, 0.5);
		position: fixed;
		top: 0;
		left: 0;
		z-index: -19;
		transition: 1.5s ease all;
	}
	
	#story {
		width: 90%;
		height: auto;
		padding: 30vw 4% 30vw 6%;
		text-align: right;
	}
	#story h2 {
		width: 100%;
		height: auto;
		margin: 0 0 30vw;
		text-align: right;
		opacity: 0;
	}
	#story h2 img {
		width: 30%;
		height: auto;
		vertical-align: bottom;
	}
	#story #story-lead {
		width: 100%;
		height: auto;
		margin: 0 0 30vw;
		text-align: right;
		opacity: 0;
	}
	#story #story-lead img {
		width: 90%;
		height: auto;
		vertical-align: bottom;
	}
	#story p {
		display: inline-block;
		width: 100%;
		height: auto;
		margin: 0;
		padding: 0;
		font-size: 1.0rem;
		line-height: 2rem;
		color: #fff;
		letter-spacing: 1.5px;
		font-weight: 400;
		text-align: left;
		opacity: 0;
	}
	
}


/* ========================================
イントロダクション
========================================== */
#intro-bg {
	width: 100%;
	height: 100%;
	min-height: 100%;
	background: url(../img/WL-intro-bg-pcsp.jpg) no-repeat;
	background-position: 0% 0%;
	background-size: 150%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: -18;
	opacity: 0;
	transition: 4.0s ease all;
}
#intro-bg2 {
	width: 100%;
	height: 100%;
	min-height: 100%;
	background-color: rgba(0, 0, 0, 0.65);
	position: fixed;
	top: 0;
	left: 0;
	z-index: -17;
	opacity: 0;
	transition: 0.7s ease all;
}
#intro {
	width: 100%;
	height: auto;
	padding: 25vw 0 20vw;
	background: linear-gradient(to bottom, transparent, #0d2b26, #0d2b26, #0d2b26, #0d2b26, transparent);
}
#intro h2 {
	width: 100%;
	height: auto;
	margin: 5vw 0 8vw;
	padding: 0;
	text-align: center;
	opacity: 0;
}
#intro h2 img {
	width: 25%;
	height: auto;
	vertical-align: bottom;
}
#intro #intro-lead1 {
	width: 100%;
	height: auto;
	margin: 0 0 4vw;
	padding: 0;
	text-align: center;
	opacity: 0;
}
#intro #intro-lead1 img {
	width: 60%;
	height: auto;
	vertical-align: bottom;
}
#intro2 {
	width: 100%;
	height: auto;
	padding: 0vw 0 15vw;
}
#intro2 #intro-lead2 {
	width: 100%;
	height: auto;
	margin: 5vw 0 4vw;
	padding: 0;
	text-align: center;
	opacity: 0;
}
#intro2 #intro-lead2 img {
	width: 60%;
	height: auto;
	vertical-align: bottom;
}
#intro p ,
#intro2 p {
	width: 54%;
	height: auto;
	margin: 0 23%;
	padding: 0;
	color: #fff;
	font-size: 1.1vw;
	line-height: 2vw;
	letter-spacing: 1.5px;
	opacity: 0;
}


#intro-bottom {
	width: 100%;
	height: auto;
	padding: 8vw 0;
}

/* 以下タブレット・スマホ */
@media (max-width: 1024px) {
	#intro-bg {
		width: 100%;
		height: 100%;
		min-height: 100%;
		background: url(../img/WL-intro-bg-pcsp.jpg) no-repeat;
		background-position: 0% 0%;
		background-size: 400%;
		position: fixed;
		top: 0;
		left: 0;
		z-index: -18;
		opacity: 0;
		transition: 5.0s ease all;
	}
	#intro {
		width: 100%;
		height: auto;
		padding: 30vw 0 50vw;
		background: linear-gradient(to bottom, transparent, #0d2b26, #0d2b26, #0d2b26, #0d2b26, transparent, transparent);
	}
	#intro h2 {
		width: 100%;
		height: auto;
		margin: 5vw 0 20vw;
		padding: 0;
		text-align: center;
		opacity: 0;
	}
	#intro h2 img {
		width: 60%;
		height: auto;
		vertical-align: bottom;
	}
	#intro #intro-lead1 {
		width: 100%;
		height: auto;
		margin: 0 0 4vw;
		padding: 0;
		text-align: center;
		opacity: 0;
	}
	#intro #intro-lead1 img {
		width: 90%;
		height: auto;
		vertical-align: bottom;
	}
	#intro2 {
		width: 100%;
		height: auto;
		padding: 0vw 0 40vw;
	}
	#intro2 #intro-lead2 {
		width: 100%;
		height: auto;
		margin: 5vw 0 4vw;
		padding: 0;
		text-align: center;
		opacity: 0;
	}
	#intro2 #intro-lead2 img {
		width: 60%;
		height: auto;
		vertical-align: bottom;
	}
	#intro p ,
	#intro2 p {
		width: 90%;
		height: auto;
		margin: 0 5%;
		padding: 0;
		color: #fff;
		font-size: 1rem;
		line-height: 2rem;
		letter-spacing: 1.5px;
		opacity: 0;
	}

	
}

/* 以下タブレット・スマホ */
@media (max-width: 610px) {
	#intro-bg {
		width: 100%;
		height: 100%;
		min-height: 100%;
		background: url(../img/WL-intro-bg-pcsp.jpg) no-repeat;
		background-position: 0% 0%;
		background-size: 500%;
		position: fixed;
		top: 0;
		left: 0;
		z-index: -18;
		opacity: 0;
		transition: 5.0s ease all;
	}

}


/* ========================================
レビュー
========================================== */
#review-area {
	width: 100%;
	height: auto;
	position: relative;
}
#review-area #review {
	width: 100%;
	height: auto;
	padding: 8vw 0;
	background-color: #57acb3;
}
#review-area #review h2 {
	width: 100%;
	height: auto;
	margin: 0 0 5vw;
	padding: 0;
	text-align: center;
	opacity: 0;
}
#review-area #review h2 img {
	width: 12%;
	height: auto;
	vertical-align: bottom;
}
#review-area #review .rev-unit {
	width: 100%;
	height: auto;
	margin: 2vw 0 5vw;
	opacity: 0;
}
#review-area #review .rev-unit .rev-txt {
	width: 100%;
	height: auto;
	margin: 0 0 0.6vw;
	text-align: center;
	color: #fff;
	font-size: 1.4vw;
	letter-spacing: 1.5px;
	font-weight: bold;
}
#review-area #review .rev-unit .rev-name {
	width: 100%;
	height: auto;
	margin: 0;
	text-align: center;
	color: #f8f29a;
	font-size: 1.4vw;
	letter-spacing: 1.5px;
	font-weight: bold;
}
#review-area #director {
	width: 100%;
	height: auto;
	padding: 10vw 0;
	background-color: #fff;
}
#review-area #director #dire-words {
	width: 100%;
	height: auto;
	margin-bottom: 3vw;
	text-align: center;
	opacity: 0;
}
#review-area #director #dire-words img {
	width: 60%;
}
#review-area #director #dire-name {
	width: 100%;
	height: auto;
	text-align: center;
	opacity: 0;
}
#review-area #director #dire-name img {
	width: 30%;
}
.dire-words {
	animation: fadeInUp 1.0s ease 0s forwards;
}
.dire-name {
	animation: fadeInUp 1.0s ease 0.3s forwards;
}


/* 以下タブレット・スマホ */
@media (max-width: 1024px) {
	#review-area #review {
		width: 100%;
		height: auto;
		padding: 20vw 0;
		background-color: #57acb3;
	}
	#review-area #review h2 {
		width: 100%;
		height: auto;
		margin: 0 0 25vw;
		padding: 0;
		text-align: center;
		opacity: 0;
	}
	#review-area #review h2 img {
		width: 40%;
		height: auto;
		vertical-align: bottom;
	}
	#review-area #review .rev-unit {
		width: 100%;
		height: auto;
		margin: 10vw 0 20vw;
		opacity: 0;
	}
	#review-area #review .rev-unit .rev-txt {
		width: 100%;
		height: auto;
		margin: 0 0 0.6vw;
		text-align: center;
		color: #fff;
		font-size: 3.9vw;
		letter-spacing: 1.5px;
		font-weight: bold;
	}
	#review-area #review .rev-unit .rev-name {
		width: 100%;
		height: auto;
		margin: 0;
		text-align: center;
		color: #f8f29a;
		font-size: 3.9vw;
		letter-spacing: 1.5px;
		font-weight: bold;
	}
	#review-area #director {
		width: 100%;
		height: auto;
		padding: 30vw 0;
		background-color: #fff;
	}
	#review-area #director #dire-words {
		width: 100%;
		height: auto;
		margin-bottom: 3vw;
		text-align: center;
		opacity: 0;
	}
	#review-area #director #dire-words img {
		width: 90%;
	}
	#review-area #director #dire-name {
		width: 100%;
		height: auto;
		text-align: center;
		opacity: 0;
	}
	#review-area #director #dire-name img {
		width: 70%;
	}
	
}




/* ========================================
スライダーエリア
========================================== */
#slider {
	width: 100%;
	height: auto;
	padding: 0;
	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;
	display: flex;
	animation: loop-slide 110s 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: 0;
	display: flex;
	animation: loop-slide-rev 110s infinite linear 0s both;
	perspective: 1000;
	backface-visibility:hidden;
	-webkit-backface-visibility:hidden;
}
#slider .top-slide-wrap .top-slide .content {
	width: 35vw;
	height: auto;
	margin: 0;
}
#slider .top-slide-wrap .top-slide .content img {
	width: 100%;
	height: auto;
	vertical-align: bottom;
	backface-visibility:hidden;
	-webkit-backface-visibility:hidden;
}
#review-area #slider-logo1 {
	width: 20%;
	height: auto;
	position: absolute;
	top: 55%;
	left: 0%;
}
#review-area #slider-logo2 {
	width: 20%;
	height: auto;
	position: absolute;
	top: 71%;
	right: 0%;
}


/* 以下スマホ */
@media (max-width: 1024px) {
	#slider {
		width: 100%;
		height: auto;
		padding: 0;
		position: relative;
		overflow-x: hidden;
	}
	
	#slider #slider-1 .top-slide {
		list-style-type: none;
		margin: 0;
		padding: 0;
		display: flex;
		animation: loop-slide 60s 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: 0;
		display: flex;
		animation: loop-slide-rev 60s infinite linear 0s both;
		perspective: 1000;
		backface-visibility:hidden;
		-webkit-backface-visibility:hidden;
	}
	#slider .top-slide-wrap .top-slide .content {
		width: 100vw;
		height: auto;
		margin: 0;
	}
	#review-area #slider-logo1 {
		width: 40%;
		height: auto;
		position: absolute;
		top: 56%;
		left: 30%;
	}
	#review-area #slider-logo2 {
		display: none;
	}
	
}

/* ========================================
画像エリア
========================================== */
#gazou {
	width: 100%;
	height: auto;
	position: relative;
}
#gazou #gazou1 {
	width: 100%;
	height: auto;
}
#gazou #gazou2 {
	width: 100%;
	height: auto;
	position: absolute;
	top: 0;
	left: 0;
	animation: gazou2 6s ease 0s infinite;
}
@keyframes gazou2 {
	0% {opacity: 0;}
	50% {opacity: 1;}
	100% {opacity: 0;}
}

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

}



/* ========================================
キャスト
========================================== */
#cast-bg {
	width: 100%;
	height: 100%;
	min-height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: -16;
	pointer-events: none;
	opacity: 0;
}
.castbg .castbg-inner {
	width: 100%;
	height: 100%;
	min-height: 100%;
	background: url(../img/WL-DC-bg-pc.jpg) no-repeat;
	background-size: cover;
	background-position: center center;
	position: relative;
}
.castbg .castbg-inner .castbg-red {
	width: 30%;
	height: 100%;
	min-height: 100%;
	padding: 5vw 5%;
	margin: 0 0 0 55%;
}
.cast-photo ,
.cast-photo2 {
	display: block;
	width: 50%;
	height: auto;
	position: fixed;
	top: 20%;
	left: 0%;
	z-index: -14;
	pointer-events: none;
	opacity: 0;
	transition: all 1.0s;
}
.cast-photo .cast-image {
	width: 100%;
	height: auto;
	text-align: center;
	position: relative;
}
.cast-photo2 .cast-image {
	width: 100%;
	height: auto;
	text-align: center;
	position: relative;
}
.cast-photo .cast-image img {
	width: 35%;
	box-shadow: 6px 6px 10px 0px rgba(0, 0, 0, 0.4);
}
.cast-photo2 .cast-image img {
	width: 50%;
	box-shadow: 6px 6px 10px 0px rgba(0, 0, 0, 0.4);
}
.cast-photo .cast-blue-name {
	width: 50%;
	height: auto;
	position: relative;
	transform: translate3d(80%, -200%, 0);
}
.cast-photo2 .cast-blue-name {
	width: 100%;
	height: auto;
	margin: 1vw 0 0;
	text-align: center;
	position: relative;
}
.cast-photo2 .cast-blue-name img {
	width: 50%;
}
.cast-photo2 #no3name img {
	width: 40%;
}


.vanish {
	animation: fadeOut 0s linear 0s forwards;
}
.appear {
	animation: fadeIn 0s linear 0s forwards;
}

#cast {
	width: 37%;
	height: auto;
	padding: 5vw 5%;
	margin: 0 0 0 50%;
	position: relative;
	background-image: linear-gradient(
		180deg,
		hsl(170deg 54% 11%) 0%,
		hsl(174deg 41% 21%) 9%,
		hsl(178deg 37% 32%) 18%,
		hsl(182deg 35% 43%) 27%,
		hsl(183deg 35% 48%) 36%,
		hsl(180deg 36% 35%) 45%,
		hsl(176deg 39% 24%) 55%,
		hsl(171deg 47% 14%) 64%,
		hsl(173deg 44% 18%) 73%,
		hsl(177deg 38% 28%) 82%,
		hsl(181deg 35% 39%) 91%,
		hsl(185deg 38% 52%) 100%
		);
}
#cast h2 {
	width: 100%;
	height: auto;
	margin: 5vw 0 5vw;
	padding: 0;
	text-align: center;
	transform: translateX(-61%);
}
#cast h2 img {
	width: 100%;
}
#cast .cast-unit {
	width: 100%;
	height: auto;
	margin: 18vw 0 0vw;
}
#cast #cast4 {
	padding-bottom: 15vw;
}
#cast .cast-unit .cast-name {
	width: 100%;
	height: auto;
	margin: 0 0 2vw;
	text-align: center;
	opacity: 0;
}
#cast .cast-unit .cast-name img {
	width: auto;
	height: 3vw;
	vertical-align: bottom;
}
#cast .cast-unit p {
	width: 100%;
	height: auto;
	margin: 0;
	color: #fff;
	font-size: 1.1vw;
	line-height: 2.0vw;
	font-feature-settings: "palt";
	letter-spacing: 1.5px;
	opacity: 0;
}
.fadeInUp {
	animation: none;
}
#cast .cast-photo-sp {
	display: none;
}

/* 以下タブレット・スマホ */
@media (max-width: 1024px) {
	#cast-bg {
	width: 100%;
	height: 100%;
	min-height: 100%;
	background: url(../img/WL-DC-bg-sp.jpg) no-repeat;
	background-size: cover;
	background-position: center center;
	position: fixed;
	top: 0;
	left: 0;
	z-index: -14;
	pointer-events: none;
	opacity: 0;
	}
	.castbg-red {
		display: none;
	}
	.cast-photo ,
	.cast-photo2 {
		display: none;
	}
	#cast {
		width: 100%;
		height: auto;
		padding: 10vw 0 30vw;
		margin: 0 0 30vw;
		background: none;
		position: relative;
	}
	#cast h2 {
		width: 100%;
		height: auto;
		margin: 0 0 5vw;
		padding: 20vw 0 10vw;
		text-align: center;
		transform: translateX(0%);
	}
	#cast h2 img {
		width: 80%;
	}
	#cast .cast-photo-sp {
		display: block;
		width: 80%;
		height: auto;
		margin: 30vw 10% -20vw;
		text-align: center;
		position: relative;
		z-index: 2;
		opacity: 0;
	}	
	#cast .kantopku-sp {
		width: 70% !important;
		height: auto;
		margin: 30vw 15% -20vw !important;
	}
	.fadeInUp {
		animation: fadeInUp 1.0s ease-out 0s forwards;
	}
	#cast .cast-unit {
		width: 80%;
		height: auto;
		background-image: linear-gradient(
		0deg,
		hsl(170deg 54% 11%) 0%,
		hsl(172deg 46% 15%) 11%,
		hsl(173deg 42% 19%) 22%,
		hsl(175deg 40% 23%) 33%,
		hsl(177deg 38% 28%) 44%,
		hsl(179deg 36% 32%) 56%,
		hsl(180deg 35% 37%) 67%,
		hsl(182deg 35% 42%) 78%,
		hsl(183deg 35% 47%) 89%,
		hsl(185deg 38% 52%) 100%
		);
		padding: 30vw 5%;
		margin: 0 5% 10vw;
		opacity: 0;
	}
	#cast #cast4 {
		padding-bottom: 11vw;
	}
	#cast .cast-unit .cast-name {
		width: 100%;
		height: auto;
		margin: 0 0 5vw;
		text-align: center;
		opacity: 0;
	}
	#cast .cast-unit .cast-name img {
		width: auto;
		height: 13vw;
		vertical-align: bottom;
	}	
	#cast .cast-unit p {
		width: 100%;
		height: auto;
		margin: 0;
		color: #fff;
		font-size: 1rem;
		line-height: 1.8rem;
		font-feature-settings: "palt";
		letter-spacing: 1.5px;
	}
	
}


/* 以下タブレット・スマホ */
@media (max-width: 610px) {
	#cast {
		width: 100%;
		height: auto;
		padding: 10vw 0;
		margin: 0;
		background-color: transparent;
		position: relative;
	}


}




/* ========================================
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 0.5vw;
}
#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;
	overflow: hidden;
	position: relative;
}
footer #foot-bg {
	width: 100%;
	height: auto;
}
footer .top-slide-wrap {
	width: 100%;
	height: auto;
	margin: 0;
	display: flex;
	align-items: center;
	flex-wrap: nowrap;
	overflow: hidden;
	opacity: 1;
	position: absolute;
	bottom: 0;
}
footer .top-slide-wrap .top-slide {
	list-style-type: none;
	margin: 0;
	padding: 0;
	display: flex;
	animation: loop-slide 110s infinite linear 0s both;
	perspective: 1000;
	backface-visibility:hidden;
	-webkit-backface-visibility:hidden;
}
footer .top-slide-wrap .top-slide .content {
	width: 35vw;
	height: auto;
	margin: 0;
}
footer .top-slide-wrap .top-slide .content img {
	width: 100%;
	height: auto;
	vertical-align: bottom;
	backface-visibility:hidden;
	-webkit-backface-visibility:hidden;
}
footer #foot-bg2 {
	width: 100%;
	height: auto;
	position: absolute;
	top: 0;
	left: 0;
}
footer #foot-title {
	width: 100%;
	height: auto;
	text-align: center;
	position: absolute;
	top: 25%;
	left: 0;
	opacity: 0;
}
footer #foot-title img {
	width: 20%;
}
footer #foot-date {
	width: 100%;
	height: auto;
	text-align: center;
	position: absolute;
	top: 38%;
	left: 0;
	opacity: 0;
}
footer #foot-date img {
	width: 15%;
}
footer #button-area {
	width: 100%;
	height: auto;
	position: absolute;
	top: 55%;
	opacity: 0;
}


@media (max-width: 1024px) {
	footer {
		width:100%;
		height:auto;
		padding:0;
		margin:0;
		overflow: hidden;
		position: relative;
	}
	footer .top-slide-wrap {
		position: absolute;
		bottom: auto;
		top: 0;
	}
	footer .top-slide-wrap .top-slide {
		list-style-type: none;
		margin: 0;
		padding: 0;
		display: flex;
		animation: loop-slide 60s infinite linear 0s both;
		perspective: 1000;
		backface-visibility:hidden;
		-webkit-backface-visibility:hidden;
	}
	footer .top-slide-wrap .top-slide .content {
		width: 80vw;
		height: auto;
		margin: 0;
	}
	footer #foot-bg2 {
		display: none;
	}
	footer #foot-title {
		width: 60%;
		height: auto;
		text-align: center;
		position: absolute;
		top: 45%;
		left: auto;
		right: 5%;
		opacity: 0;
	}
	footer #foot-title img {
		width: 100%;
	}
	footer #foot-date {
		width: 40%;
		height: auto;
		text-align: center;
		position: absolute;
		top: 55%;
		left: auto;
		right: 15%;
		opacity: 0;
	}
	footer #foot-date img {
		width: 100%;
	}
	
	footer #button-area {
		width: 100%;
		height: auto;
		position: absolute;
		top: auto;
		bottom: 5%;
		opacity: 0;
	}
	
}
@media (max-width: 610px) {

}
