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: translate3d(0, 0, 0);
	}
	to {
		transform: translate3d(-100%, 0 , 0);
	}
}
@keyframes loop-slide-rev {
	from {
		transform: translate3d(-100%, 0, 0);
	}
	to {
		transform: translate3d(0, 0, 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;
}
.fadeInTeaser {
	animation-name:fadeIn;
	animation-duration:1.5s;
	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;
}

@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;
    height: 100%;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000000;
    display: grid;
    place-items: center;
}
#loader {
	width:25%;
	height:auto;
	margin:0;
	padding:0;
	position:relative;
}
#loader #load1 {
	width:100%;
	height:auto;
	margin:0;
	padding:0;
}
#loader #load1 img {
	width:100%;
	height:auto;
}
#loader #load2 {
	width:100%;
	height:auto;
	margin:0;
	padding:0;
	position: absolute;
	top: 0;
	left: 0;
	animation: anime2 1.5s ease 0s forwards;
}
#loader #load3 {
	width:100%;
	height:auto;
	margin:0;
	padding:0;
	position: absolute;
	top: 0;
	left: 0;
	animation: anime3 1.5s ease 0s forwards;
}
#loader #load4 {
	width:100%;
	height:auto;
	margin:0;
	padding:0;
	position: absolute;
	top: 0;
	left: 0;
	animation: anime4 1.5s ease 0s forwards;
}
@keyframes anime2 {
	0% {	opacity:0;	}
	15% {	opacity:1;	}
	100% {	opacity:1;	}
}
@keyframes anime3 {
	0% {	opacity:0;	}
	40% {	opacity:1;	}
	100% {	opacity:1;	}
}
@keyframes anime4 {
	0% {	opacity:0;	}
	60% {	opacity:1;	}
	100% {	opacity:1;	}
}


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

#loader {
	width:70%;
	height:auto;
	margin:0;
	padding:0;
	position:relative;
	text-align:center;
}

#loader #load1 img {
	width:100%;
	height:auto;
}


}

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

#pcheader {
	display: block;
	width:100%;
	height:auto;
	padding:12px 0 15px;
	position:fixed;
	top:0;
	background: -moz-linear-gradient(top, #06090E 20%, transparent);
	background: -webkit-linear-gradient(top, #06090E 20%, transparent);
	background: linear-gradient(to bottom, #06090E 20%, 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.0%;
	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.7vw;
	line-height:1.7vw;
	text-align: center;
	color: #fff;
	font-family: "Permanent Marker", cursive;
	font-weight: 400;
	font-style: normal;
	letter-spacing: 1px;
	font-weight: normal;
}
#pcheader ul#pcmenu li.menusns a span.eng {
	transform: translateY(-2px);
}
#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: 60px;
	background: #06090E;
	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: 75%;
}
.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: #fff;
	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;
}
#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: 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: 60px 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.5em;
	line-height: 1.5em;
	font-family: "Permanent Marker", cursive;
	font-weight: 400;
	font-style: normal;
	letter-spacing: 1px;	
}
.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:1.8rem;
		line-height: 2.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;
	}
	
}





/* ========================================
トップメイン画像まわり
========================================== */
#topmain {
	width:100%;
	height:auto;
	padding:0;
	margin:0;
	position:relative;
	overflow: hidden;
}
#topmain #top-bg1 {
	width:100%;
	height:auto;
}
#topmain #top-bg2 {
	width:100%;
	height:auto;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
}
#topmain #top-bg3 {
	width:100%;
	height:auto;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
}
#topmain #mist {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	position: absolute;
	top: 65%;
	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: 0%;
	animation: an-smoke-1 3.0s ease-in-out infinite;
	height: 20vw;
	width: 50vw;
}
.ag-smoke-2 {
	z-index: -1;
	position: absolute;
	top: 0;
	right: 25%;
	animation: an-smoke-1 4.2s ease-in-out infinite;
	height: 20vw;
	width: 50vw;
}
.ag-smoke-3 {
	z-index: -1;
	position: absolute;
	top: 0;
	right: -40%;
	animation: an-smoke-1 1.5s ease-in-out infinite;
	height: 20vw;
	width: 50vw;
}
.ag-smoke__delay-1 {
	animation-delay: 2.0s;
}  
.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: 1.5s;
}
.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(-20%) rotate(.02deg);
	transform: translateX(-20%) rotate(.02deg);
	}
	20% {
	opacity: .08;
	}
	50% {
	opacity: .15;
	}
	80% {
		opacity: .08;
		}
	to {
	opacity: 0;

	-webkit-transform: translateX(0) rotate(.02deg);
	transform: translateX(0) rotate(.02deg);
	}
}
#topmain #top-bg4 {
	width:100%;
	height:auto;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	mix-blend-mode: screen;
}
#topmain #top-catch1 {
	width:35%;
	height:auto;
	position: absolute;
	top: 11%;
	left: 12.5%;
	z-index: 1;
	opacity: 0;
}
#topmain #top-catch2 {
	width:52%;
	height:auto;
	position: absolute;
	top: 17%;
	left: 3%;
	z-index: 1;
	opacity: 0;
}
#topmain #top-title {
	width:40%;
	height:auto;
	position: absolute;
	top: 30%;
	left: 8%;
	z-index: 1;
	opacity: 0;
}
#topmain #top-billing {
	width:40%;
	height:auto;
	position: absolute;
	top: 53%;
	left: 8%;
	z-index: 1;
	opacity: 0;
}
#topmain #top-sns {
	width: 20%;
	height: auto;
	margin: 0;
	padding: 0;
	list-style-type: none;
	display: flex;
	justify-content: center;
	position: absolute;
	top: 75%;
	left: 18%;
	z-index: 1;
	opacity: 0;
}
#topmain #top-sns li {
	width: 20%;
	height: auto;
	margin: 0 5%;
}
#topmain #top-sns li a:hover {
	animation: flash 1.2s;
}
#topmain #top-date {
	width:100%;
	height:auto;
	position: absolute;
	bottom: 4%;
	left: 0;
	z-index: 1;
	text-align: center;
	opacity: 0;
}
#topmain #top-date img {
	width: 50%;
}
#topmain #top-present {
	width:13%;
	height:auto;
	position: absolute;
	bottom: 30%;
	right: 3%;
	z-index: 1;
	text-align: center;
	opacity: 0;
}
#topmain #top-goods {
	width:13%;
	height:auto;
	position: absolute;
	bottom: 3%;
	right: 3%;
	z-index: 1;
	text-align: center;
	opacity: 0;
}
#topmain #top-present a img:hover , 
#topmain #top-goods a img:hover {
	transform: rotate(10deg);
	transition: 1.0s all;
}



.mist {
	animation: fadeIn 1.2s ease 1.5s forwards;
}
.top-bg2 {
	animation: fadeIn 0.5s ease 1.3s forwards;
}
.top-bg3 {
	animation: fadeIn 0.5s ease 1.7s forwards;
}
.top-catch1 {
	animation: zoomIn 1.0s ease 1.5s forwards;
}
.top-catch2 {
	animation: zoomIn 1.0s ease 2.1s forwards;
}
.top-others-anime {
	animation: fadeIn 1.3s ease 2.9s forwards;
}




/* 以下タブレット・スマホ */
@media (max-width: 1024px) {
	#topmain #mist {
		width: 100%;
		height: auto;
		margin: 0;
		padding: 0;
		position: absolute;
		top: 65%;
		left: -20%;
		pointer-events: none;
		opacity: 1;
	}
	.ag-smoke-block {
		width: 100%;
		height: auto;
		z-index: 1;
		position: relative;
	}
	.ag-smoke-1 {
		z-index: -1;
		position: absolute;
		top: 0;
		right: 0%;
		animation: an-smoke-1 3.0s ease-in-out infinite;
		height: 100vw;
		width: 50vw;
	}
	.ag-smoke-2 {
		z-index: -1;
		position: absolute;
		top: 0;
		right: 25%;
		animation: an-smoke-1 4.2s ease-in-out infinite;
		height: 100vw;
		width: 50vw;
	}
	.ag-smoke-3 {
		z-index: -1;
		position: absolute;
		top: 0;
		right: -40%;
		animation: an-smoke-1 1.5s ease-in-out infinite;
		height: 100vw;
		width: 50vw;
	}
	#topmain #top-catch1 {
		width:84%;
		height:auto;
		position: absolute;
		top: 5%;
		left: 8%;
		z-index: 1;
		opacity: 0;
	}
	#topmain #top-catch2 {
		width:96%;
		height:auto;
		position: absolute;
		top: 10%;
		left: 2%;
		z-index: 1;
		opacity: 0;
	}
	#topmain #top-title {
		width:96%;
		height:auto;
		position: absolute;
		top: 70%;
		left: 2%;
		z-index: 1;
		opacity: 0;
	}
	#topmain #top-billing {
		width:96%;
		height:auto;
		position: absolute;
		top: 83%;
		left: 2%;
		z-index: 1;
		opacity: 0;
	}
	#topmain #top-sns {
		width: 100%;
		height: auto;
		margin: 0;
		padding: 0;
		list-style-type: none;
		display: flex;
		justify-content: center;
		position: absolute;
		top: auto;
		bottom: 1%;
		left: 0%;
		z-index: 1;
		opacity: 0;
	}
	#topmain #top-sns li {
		width: 13%;
		height: auto;
		margin: 0 1%;
	}
	#topmain #top-date ,
	#topmain #top-present ,
	#topmain #top-goods {
		display: none;
	}
	
}


/* ========================================
モーダル
========================================== */
.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;
}
.modal__content {
    width: 60%;
	height: auto; /* スクロール時は80% */
    padding: 0;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
	background-size: cover;
	background-position: center center;
	overflow-y: scroll;
	background-color: #fff;
	-ms-overflow-style: none;
	text-align: center;
	scrollbar-width: none;
	scrollbar-color: #363636 #ccc;
	box-sizing: border-box;
}
.modal__content::-webkit-scrollbar {
    width: 0px;
}
.modal__content::-webkit-scrollbar-track{
	background-color: #ccc;
}
.modal__content::-webkit-scrollbar-thumb{
	background-color: #363636;
}
.modal__content h3 {
	width: 80%;
	height: auto;
	margin: 0 10% 1vw;
	color: #c00;
	font-size: 2rem;
	text-align: center;
	opacity: 1;
}
.modal__content h4 {
	width: 80%;
	height: auto;
	margin: 4vw 10% 1vw;
	color: #000;
	font-size: 1.5vw;
	text-align: center;
	opacity: 1;
}
.modal__content .goods-img {
	width: 100%;
	height: auto;
	margin: 0;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
.modal__content .goods-img img {
	width: 100%;
	height: auto;
	vertical-align: bottom;
}
.modal__content p {
	width: 86%;
	height: auto;
	margin: 0 7%;
	color: #000;
	font-size: 1rem;
	text-align: left;
	overflow-wrap: break-word;
}
.batsu {
	width: 3%;
	height: auto;
	position: fixed;
	top: 2%;
	right: 2%;
}
.batsu img {
	width: 100%;
}

/* 以下タブレット・スマホ */
@media (max-width: 1024px) {
	.modal__content {
		width: 94%;
		height: auto; /* スクロール時は80% */
		padding: 0;
		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: none;
		scrollbar-color: #363636 #ccc;
		box-sizing: border-box;
	}
	
	.modal__content h3 {
		width: 80%;
		height: auto;
		margin: 5vw 10% 10vw;
		color: #c00;
		font-size: 1.8rem;
		text-align: center;
		opacity: 1;
	}
	.modal__content h4 {
		width: 100%;
		height: auto;
		margin: 8vw 0 1vw;
		color: #000;
		font-size: 5vw;
		text-align: center;
		opacity: 1;
	}
	.modal__content .goods-img {
		width: 100%;
		min-height: auto;
		margin: 1vw 0 20vw;
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
	}
	.modal__content .goods-img div {
		width: 90%;
		height: auto;
		margin: 5vw 1%;
	}
	.modal__content .goods-img #bsbook {
		width: 90%;
		height: auto;
		margin: 5vw 1%;
	}
	.modal__content .goods-img p {
		width: 100%;
		height: auto;
		margin: 1vw 0;
		text-align: center;
		font-size: 1.1rem;
	}
	.batsu {
		width: 15%;
		height: auto;
		position: fixed;
		top: 2%;
		right: 2%;
	}
	
}




/* ========================================
ブリッジ
========================================== */
#bridge {
	width: 100%;
	height: auto;
	padding: 4vw 0;
	background-color: #06090E;
}
#bridge #top-date-sp ,
#bridge #top-present-sp ,
#bridge #top-goods-sp {
	display: none;
}
#bridge #theater-banners {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 2vw 0;
	list-style-type: none;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
#bridge #theater-banners li {
	width: 100%;
	height: auto;
	text-align: center;
	margin: 1vw 0;
	opacity: 0;
}
#bridge #theater-banners img {
	width: 18%;
	height: auto;
	vertical-align: bottom;
}
#bridge #mubi-wrap {
	width: 100%;
	height: auto;
	margin: 2vw 0;
	text-align: center;
	opacity: 0;
}
#bridge #mubi-wrap #mvtk-widgets-container {
	display: inline-block;
}
#bridge #sns-link {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 2vw 0;
	list-style-type: none;
	display: flex;
	justify-content: center;
	opacity: 0;
}
#bridge #sns-link li {
	width: 4%;
	height: auto;
	margin: 0 1.5%;
}
#bridge #theater-banners li a:hover , 
#bridge #sougo a:hover ,
#bridge #sns-link li a:hover {
	animation: flash 1.5s;
}



/* 以下タブレット・スマホ */
@media (max-width: 1024px) {
	#bridge {
		width: 100%;
		height: auto;
		padding: 45vw 0 8vw;
		background-color: #06090E;
		position: relative;
	}
	#bridge #top-present-sp {
		display: block;
		width: 40%;
		height: auto;
		position: absolute;
		top: -2%;
		left: 5%;
		z-index: 2;
		opacity: 0;
	}
	#bridge #top-goods-sp {
		display: block;
		width: 40%;
		height: auto;
		position: absolute;
		top: -2%;
		right: 5%;
		z-index: 2;
		opacity: 0;
	}
	#bridge #top-date-sp {
		display: block;
		width: 100%;
		height: auto;
		margin: 0;
		text-align: center;
		opacity: 0;
	}
	#bridge #top-date-sp img {
		width: 90%;
	}
	#bridge #theater-banners {
		margin: 5vw 0;
	}
	#bridge #theater-banners img {
		width: 60%;
		height: auto;
		vertical-align: bottom;
	}
	
}


/* ========================================
トレーラー
========================================== */
.trailer {
	width:100%;
	height:auto;
	margin:0;
	padding:3vw 0 10vw;
	overflow: hidden;
	position: relative;
	background-color: #06090E;
}
.trailer h2 {
	width:20%;
	height:auto;
	padding:0;
	margin:0 40% 3vw;
	position: relative;
	opacity: 0;
}
#video-wrap {
	width: 60%;
	height: auto;
	margin: 0 20%;
	padding: 0;
	opacity: 0;
	position: relative;
	z-index: 1;
	border: #E84C95 2px solid;
	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;
}
.movie-btn {
	width: 30%;
	height: auto;
	margin: 0 1%;
	padding: 3px 0;
	text-align: center;
	background-color: #06090E;
	border: 1px solid #E84C95;
	color: #E84C95;
	font-size: 1.1vw;
	font-weight: bold;
}
.activee {
	background: #E84C95;
	border: 1px solid #E84C95;
	color: #06090E;
}
.movie-btn:hover {
	background: #E84C95;
	border: 1px solid #E84C95;
	color: #06090E;
	cursor: pointer;
	transition-duration: 0.6s;
}
.trailer .top-slide-wrap {
	width: 100%;
	height: auto;
	margin: 0;
	display: flex;
	align-items: center;
	flex-wrap: nowrap;
	overflow: hidden;
	position: absolute;
	z-index: 0;
	pointer-events: none;
}
.trailer #logo-slide1 {
	bottom: 28%;
}
.trailer #logo-slide2 {
	bottom: 19%;
}
.trailer #logo-slide1 .top-slide {
	list-style-type: none;
	margin: 0;
	padding: 0;
	display: flex;
	animation: loop-slide 80s infinite linear 0s both;
}
.trailer #logo-slide2 .top-slide {
	list-style-type: none;
	margin: 0;
	padding: 0;
	display: flex;
	animation: loop-slide-rev 80s infinite linear 0s both;
}

.trailer .top-slide-wrap .top-slide .content {
	width: 30vw;
	height: auto;
	margin: 0 10vw;
}
.trailer .top-slide-wrap .top-slide .content img {
	width: 100%;
	height: auto;
	vertical-align: bottom;
}



/* 以下スマホ */
@media (max-width: 1024px) {
	.trailer {
		width:100%;
		padding:10vw 0 10vw;
	}
	.trailer h2 {
		width:34%;
		height:auto;
		padding:0;
		margin:0 33% 5vw;
		position: relative;
	}	
	#video-wrap {
		width: 100%;
		height: auto;
		margin: 0;
		padding: 0;
	}
	.video {
		width:90%;
		position: relative;
		padding-bottom: 56.25%;
		height: 0;
		overflow: hidden;
		margin:0 5% 10px;
		display:block;
	}
	.trailer ul#movie-changer {
		width: 100%;
		height: auto;
		margin: 10px 0;
		padding: 0%;
		list-style-type: none;
		display: flex;
		justify-content: center;
	}
	.movie-btn {
		width: 30%;
		font-size: 2vw;
	}
	.trailer .top-slide-wrap .top-slide {
		list-style-type: none;
		margin: 0;
		padding: 0;
		display: flex;
		animation: loop-slide 30s infinite linear 0s both;
	}	
	.trailer .top-slide-wrap .top-slide .content {
		width: 80vw;
		height: auto;
	}
	.trailer #logo-slide1 {
		bottom: 29%;
	}
	.trailer #logo-slide2 {
		bottom: 14%;
	}
	
}

@media (max-width: 610px) {
	.trailer {
		width:100%;
		height:auto;
		margin:0;
		padding:20vw 0 20vw;
	}
	.trailer h2 {
		width:50%;
		height:auto;
		padding:0;
		margin:0 25% 5vw;
		position: relative;
	}

	.trailer .top-slide-wrap {
		bottom: 36%;
	}
	#video-wrap {
		width: 100%;
		height: auto;
		margin: 0;
		padding: 0;
		position: static;
	}
	.video {
		width:100%;
		position: relative;
		padding-bottom: 56.25%;
		height: 0;
		overflow: hidden;
		margin:0 0 10px;
		display:block;
	}
	.movie-btn {
		width: 45%;
		font-size: 3vw;
	}
	.trailer #logo-slide1 {
		bottom: 24%;
	}
	.trailer #logo-slide2 {
		bottom: 11%;
	}
	
}


/* ========================================
イントロダクション
========================================== */
#intro-bg {
	width: 100%;
	height: auto;
	position: fixed;
	bottom: 0;
	left: 0;
	z-index: -15;
}
#intro-header {
	width: 100%;
	height: auto;
	position: relative;
	color: #06090E;
}
#intro-header #intro-head-bg {
	width: 100%;
	height: auto;
}
#intro-header #intro-head1 {
	width: 36%;
	height: auto;
	position: absolute;
	top: 12%;
	left: 6%;
	opacity: 0;
}
#intro-header #intro-head2 {
	width: 20%;
	height: auto;
	position: absolute;
	bottom: 18%;
	right: 14%;
	opacity: 0;
}
#intro-header #intro-head3 {
	width: 9.5%;
	height: auto;
	position: absolute;
	bottom: 21%;
	right: 5%;
	opacity: 0;
}
.intro-head1 {
	animation: zoomIn 0.8s ease 0s forwards;
}
.intro-head2 {
	animation: zoomInRound 0.8s ease 0.7s forwards;
}
@keyframes zoomInRound {
	from {
	transform: scale(0) rotate(-180deg);
	opacity: 0;
	}

	to {
		transform: scale(1) rotate(0deg);
		opacity: 1;
	}
}
.intro-head3 {
	animation: fadeIn 0.8s ease 1.5s forwards , da 1.0s ease 1.5s infinite;
}
@keyframes da {
	0% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.1);
	}
	100% {
		transform: scale(1);
	}
}
#intro-story-bg {
	width: 100%;
	height: auto;
	background-image: linear-gradient(
	180deg,
	hsl(218deg 40% 4%) 0%,
	hsl(221deg 31% 11%) 11%,
	hsl(229deg 30% 17%) 22%,
	hsl(242deg 26% 24%) 33%,
	hsl(259deg 28% 30%) 44%,
	hsl(276deg 29% 35%) 56%,
	hsl(293deg 30% 39%) 67%,
	hsl(309deg 35% 45%) 78%,
	hsl(321deg 44% 52%) 89%,
	hsl(329deg 65% 59%) 100%
	);
	position: relative;
	z-index: -16;
}
#intro {
	width: 100%;
	height: auto;
	padding: 15vw 0 8vw;
}
#intro h2 {
	width: 100%;
	height: auto;
	margin: 0 0 8vw;
	padding: 0;
	text-align: center;
	opacity: 0;
}
#intro h2 img {
	width: 40%;
}
#intro #intro-lead {
	width: 100%;
	height: auto;
	margin: 0 0 5vw;
	text-align: center;
	opacity: 0;
}
#intro #intro-lead img {
	width: 50%;
}
#intro p {
	width: 50%;
	height: auto;
	margin: 0 25%;
	padding: 0;
	color: #fff;
	font-size: 1.1vw;
	line-height: 2vw;
	letter-spacing: 2px;
	opacity: 0;
}
#intro #intro-image-area {
	width: 60%;
	height: 20vw;
	margin: 5vw 20%;
	position: relative;
}
#intro #intro-image-area #intro-item1 {
	width: 38%;
	height: auto;
	position: absolute;
	top: 3%;
	right: 2%;
	opacity: 0;
}
#intro #intro-image-area #intro-item2 {
	width: 8%;
	height: auto;
	position: absolute;
	top: 5%;
	right: -3%;
	z-index: 2;
	opacity: 0;
}
#intro #intro-image-area #intro-item3 {
	width: 29%;
	height: auto;
	position: absolute;
	top: 50%;
	left: 38%;
	z-index: 2;
	opacity: 0;
}
#intro #intro-image-area #intro-item4 {
	width: 38%;
	height: auto;
	position: absolute;
	top: 15%;
	left: 2%;
	opacity: 0;
}
#intro #intro-image-area #intro-item5 {
	width: 8%;
	height: auto;
	position: absolute;
	bottom: 0%;
	left: 0%;
	z-index: 2;
	opacity: 0;
}
@keyframes intro-item1 {
	0% {
		opacity: 0;
		top: 50%;
		transform: translate3d(0, 0, 0);
	}
	40% {
		transform: translate3d(10%, 0, 0);
	}
	100% {
		opacity: 1;
		top: 3%;
		transform: translate3d(0, 0, 0);
	}
}
.intro-item1 {
	animation: intro-item1 1.5s ease-out 0s forwards;
}
@keyframes intro-item2 {
	0% {
		opacity: 0;
		top: 60%;
		transform: translate3d(0, 0, 0);
	}
	40% {
		transform: translate3d(-10%, 0, 0);
	}
	100% {
		opacity: 1;
		top: 5%;
		transform: translate3d(0, 0, 0);
	}
}
.intro-item2 {
	animation: intro-item2 2.8s ease-out 0s forwards;
}
@keyframes intro-item3 {
	0% {
		opacity: 0;
		top: 100%;
		transform: translate3d(0, 0, 0);
	}
	50% {
		transform: translate3d(20%, 0, 0);
	}
	100% {
		opacity: 1;
		top: 50%;
		transform: translate3d(0, 0, 0);
	}
}
.intro-item3 {
	animation: intro-item3 2.0s ease-out 0s forwards;
}
@keyframes intro-item4 {
	0% {
		opacity: 0;
		top: 60%;
		transform: translate3d(0, 0, 0);
	}
	50% {
		transform: translate3d(-8%, 0, 0);
	}
	100% {
		opacity: 1;
		top: 15%;
		transform: translate3d(0, 0, 0);
	}
}
.intro-item4 {
	animation: intro-item4 3.2s ease-out 0s forwards;
}
@keyframes intro-item5 {
	0% {
		opacity: 0;
		bottom: -30%;
		transform: translate3d(0, 0, 0);
	}
	50% {
		transform: translate3d(-15%, 0, 0);
	}
	100% {
		opacity: 1;
		bottom: 0%;
		transform: translate3d(0, 0, 0);
	}
}
.intro-item5 {
	animation: intro-item5 1.6s ease-out 0s forwards;
}
#story {
	width: 100%;
	height: auto;
	padding: 5vw 0 10vw;
}
#story h2 {
	width: 100%;
	height: auto;
	margin: 0 0 8vw;
	padding: 0;
	text-align: center;
	opacity: 0;
}
#story h2 img {
	width: 18%;
}
#story #story-lead {
	width: 40%;
	height: auto;
	margin: 0 30% 5vw;
	position: relative;
}
#story #story-lead #story-lead1 {
	width: 100%;
	height: auto;
	opacity: 0;
}
#story #story-lead #story-lead2 {
	width: 100%;
	height: auto;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
}
#story p {
	width: 50%;
	height: auto;
	margin: 0 25%;
	padding: 0;
	color: #fff;
	font-size: 1.1vw;
	line-height: 2vw;
	letter-spacing: 2px;
	opacity: 0;
}
.story-lead1 {
	animation: fadeIn 1.0s ease 0s forwards;
}
@keyframes fadeInDown {
	from {
	opacity: 0;
	transform: translate3d(50px, -50px, 0);
	}
	to {
	opacity: 1;
	transform: translate3d(0, 0, 0);
	}
}
.story-lead2 {
	animation: fadeInDown 0.1s ease 1.0s forwards;
}
#director {	
	width: 100%;
	height: auto;
	padding: 5vw 0 30vw;
}
#director h2 {
	width: 100%;
	height: auto;
	margin: 0 0 4vw;
	padding: 0;
	text-align: center;
	opacity: 0;
}
#director h2 img {
	width: 25%;
}
#director h3 {
	width: 100%;
	height: auto;
	margin: 0 0 6vw;
	padding: 0;
	text-align: center;
	opacity: 0;
}
#director h3 img {
	width: 25%;
}
#director p {
	width: 50%;
	height: auto;
	margin: 0 25%;
	padding: 0;
	color: #fff;
	font-size: 1.1vw;
	line-height: 2vw;
	letter-spacing: 2px;
	opacity: 0;
}


/* 以下スマホ */
@media (max-width: 1024px) {
	#intro-header #intro-head1 {
		width: 86%;
		height: auto;
		position: absolute;
		top: 5%;
		left: 7%;
		opacity: 0;
	}
	#intro-header #intro-head2 {
		width: 45%;
		height: auto;
		position: absolute;
		bottom: 5%;
		right: auto;
		left: 15%;
		opacity: 0;
	}
	#intro-header #intro-head3 {
		width: 25%;
		height: auto;
		position: absolute;
		bottom: 7%;
		right: 15%;
		opacity: 0;
	}
	#intro {
		width: 100%;
		height: auto;
		padding: 30vw 0;
	}
	#intro h2 {
		width: 100%;
		height: auto;
		margin: 0 0 20vw;
		padding: 0;
		text-align: center;
		opacity: 0;
	}
	#intro h2 img {
		width: 90%;
	}
	#intro #intro-lead {
		width: 100%;
		height: auto;
		margin: 0 0 20vw;
		text-align: center;
		opacity: 0;
	}
	#intro #intro-lead img {
		width: 90%;
	}
	#intro p {
		width: 90%;
		height: auto;
		margin: 0 5%;
		padding: 0;
		color: #fff;
		font-size: 1rem;
		line-height: 2rem;
		letter-spacing: 2px;
		opacity: 0;
	}
	#intro #intro-image-area {
		width: 100%;
		height: 120vw;
		margin: 10vw 0 5vw;
		position: relative;
	}
	#intro #intro-image-area #intro-item1 {
		width: 60%;
		height: auto;
		position: absolute;
		top: 0%;
		right: 20%;
		opacity: 0;
	}
	#intro #intro-image-area #intro-item2 {
		width: 20%;
		height: auto;
		position: absolute;
		top: 5%;
		right: 5%;
		z-index: 2;
		opacity: 0;
	}
	#intro #intro-image-area #intro-item3 {
		width: 50%;
		height: auto;
		position: absolute;
		top: 30%;
		left: 2%;
		z-index: 2;
		opacity: 0;
	}
	#intro #intro-image-area #intro-item4 {
		width: 50%;
		height: auto;
		position: absolute;
		top: 50%;
		left: auto;
		right: 2%;
		opacity: 0;
	}
	#intro #intro-image-area #intro-item5 {
		width: 20%;
		height: auto;
		position: absolute;
		bottom: 10%;
		left: 35%;
		z-index: 2;
		opacity: 0;
	}
	@keyframes intro-item1 {
		0% {
			opacity: 0;
			top: 50%;
			transform: translate3d(0, 0, 0);
		}
		40% {
			transform: translate3d(10%, 0, 0);
		}
		100% {
			opacity: 1;
			top: 0%;
			transform: translate3d(0, 0, 0);
		}
	}
	.intro-item1 {
		animation: intro-item1 1.5s ease-out 0s forwards;
	}
	@keyframes intro-item2 {
		0% {
			opacity: 0;
			top: 60%;
			transform: translate3d(0, 0, 0);
		}
		40% {
			transform: translate3d(-10%, 0, 0);
		}
		100% {
			opacity: 1;
			top: 5%;
			transform: translate3d(0, 0, 0);
		}
	}
	.intro-item2 {
		animation: intro-item2 2.8s ease-out 0s forwards;
	}
	@keyframes intro-item3 {
		0% {
			opacity: 0;
			top: 100%;
			transform: translate3d(0, 0, 0);
		}
		50% {
			transform: translate3d(20%, 0, 0);
		}
		100% {
			opacity: 1;
			top: 30%;
			transform: translate3d(0, 0, 0);
		}
	}
	.intro-item3 {
		animation: intro-item3 2.0s ease-out 0s forwards;
	}
	@keyframes intro-item4 {
		0% {
			opacity: 0;
			top: 100%;
			transform: translate3d(0, 0, 0);
		}
		50% {
			transform: translate3d(-8%, 0, 0);
		}
		100% {
			opacity: 1;
			top: 50%;
			transform: translate3d(0, 0, 0);
		}
	}
	.intro-item4 {
		animation: intro-item4 3.2s ease-out 0s forwards;
	}
	@keyframes intro-item5 {
		0% {
			opacity: 0;
			bottom: -30%;
			transform: translate3d(0, 0, 0);
		}
		50% {
			transform: translate3d(-15%, 0, 0);
		}
		100% {
			opacity: 1;
			bottom: 10%;
			transform: translate3d(0, 0, 0);
		}
	}
	.intro-item5 {
		animation: intro-item5 1.6s ease-out 0s forwards;
	}
	#story {
		width: 100%;
		height: auto;
		padding: 5vw 0 10vw;
	}
	#story h2 {
		width: 100%;
		height: auto;
		margin: 0 0 8vw;
		padding: 0;
		text-align: center;
		opacity: 0;
	}
	#story h2 img {
		width: 45%;
	}
	#story #story-lead {
		width: 70%;
		height: auto;
		margin: 0 15% 20vw;
		position: relative;
	}
	#story #story-lead #story-lead1 {
		width: 100%;
		height: auto;
		opacity: 0;
	}
	#story #story-lead #story-lead2 {
		width: 100%;
		height: auto;
		position: absolute;
		top: 0;
		left: 0;
		opacity: 0;
	}
	#story p {
		width: 90%;
		height: auto;
		margin: 0 5%;
		padding: 0;
		color: #fff;
		font-size: 1rem;
		line-height: 2rem;
		letter-spacing: 2px;
		opacity: 0;
	}
	#director {	
		width: 100%;
		height: auto;
		padding: 20vw 0 100vw;
	}
	#director h2 {
		width: 100%;
		height: auto;
		margin: 0 0 10vw;
		padding: 0;
		text-align: center;
		opacity: 0;
	}
	#director h2 img {
		width: 65%;
	}
	#director h3 {
		width: 100%;
		height: auto;
		margin: 0 0 10vw;
		padding: 0;
		text-align: center;
		opacity: 0;
	}
	#director h3 img {
		width: 60%;
	}
	#director p {
		width: 90%;
		height: auto;
		margin: 0 5%;
		padding: 0;
		color: #fff;
		font-size: 1rem;
		line-height: 2rem;
		letter-spacing: 2px;
		opacity: 0;
	}
	
}





/* ========================================
レビュー
========================================== */
#review {
	width: 100%;
	height: auto;
	padding: 5vw 0;
	background-image: linear-gradient(
	45deg,
	hsl(264deg 30% 75%) 0%,
	hsl(272deg 33% 74%) 11%,
	hsl(280deg 35% 73%) 22%,
	hsl(289deg 36% 71%) 33%,
	hsl(298deg 36% 69%) 44%,
	hsl(307deg 42% 69%) 56%,
	hsl(315deg 50% 68%) 67%,
	hsl(320deg 57% 68%) 78%,
	hsl(325deg 65% 67%) 89%,
	hsl(329deg 72% 66%) 100%
	);
	background-size: 300% 300%;
	animation: grdBG 8s ease infinite;
}
@keyframes grdBG {
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}
}
#review .top-slide-wrap {
	width: 100%;
	height: auto;
	margin: 0;
	display: flex;
	align-items: center;
	flex-wrap: nowrap;
	overflow: hidden;
}
#review .top-slide-wrap .top-slide {
	list-style-type: none;
	margin: 0;
	padding: 0;
	display: flex;
	-webkit-font-smoothing: antialiased;
	-webkit-transform-style: preserve-3d;
	will-change: transform;
	perspective: 1000;
	backface-visibility:hidden;
	-webkit-backface-visibility:hidden;
}
#review #slider-1 .top-slide {
	animation: loop-slide 60s infinite linear 0s both;
}
#review #slider-2 .top-slide {
	animation: loop-slide-rev 60s infinite linear 0s both;
}
#review .top-slide-wrap .top-slide .content {
	width: 22vw;
	height: auto;
	margin: 0 2vw;
}
#review .top-slide-wrap .top-slide .content:nth-child(even) {
	margin-top: 3vw;
}
#review .top-slide-wrap .top-slide .content img {
	width: 100%;
	height: auto;
	vertical-align: bottom;
	backface-visibility:hidden;
	-webkit-backface-visibility:hidden;
}
#review #review-content {
	width: 100%;
	height: auto;
	margin: 10vw 0;
	position: relative;
}
#review #review-content h2 {
	width: 100%;
	height: auto;
	margin: 0 0 5vw;
	padding: 0;
	text-align: center;
	opacity: 0;
}
#review #review-content h2 img {
	width: 20%;
}
#review .rev-unit {
	width: 100%;
	height: auto;
	margin: 3vw 0;
	text-align: center;
	opacity: 0;
}
#review .rev-unit .rev-txt {
	display: inline-block;
	width: auto;
	height: auto;
	margin: 0;
	color: #231815;
	font-size: 1.5vw;
	font-weight: bold;
	letter-spacing: 2s;
}
#review .rev-unit .rev-name {
	display: inline-block;
	width: auto;
	height: auto;
	margin: 0 1%;
	color: #231815;
	font-size: 1.1vw;
	letter-spacing: 1.5s;
}
@keyframes rev-item1 {
	0% {
		transform: rotate(0deg);
	}
	50% {
		transform: rotate(5deg);
	}
	100% {
		transform: rotate(0deg);
	}
}
@keyframes fadeInOut {
	0% {
		opacity: 0;
	}
	50% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}
@keyframes rev-item2 {
	0% {
		transform: translate3d(0, 0, 0);
	}
	50% {
		transform: translate3d(0, 15px, 0);
	}
	100% {
		transform: translate3d(0, 0, 0);
	}
}
@keyframes zoomInOut {
	0% {
		transform: scale(0.9);
	}
	50% {
		transform: scale(1.1);
	}
	100% {
		transform: scale(0.9);
	}
}
#review #rev-item1 {
	width: 7%;
	height: auto;
	position: absolute;
	top: 2%;
	left: 20%;
	animation: rev-item1 1.5s step-end 0s infinite;
}
#review #rev-item2 {
	width: 4%;
	height: auto;
	position: absolute;
	top: 12%;
	right: 20%;
	animation: rev-item2 1.8s ease 0s infinite;
}
#review #rev-item3 {
	width: 5%;
	height: auto;
	position: absolute;
	top: 80%;
	left: 15%;
	animation: zoomInOut 3.0s ease 0s infinite;
}
#review #rev-item4 {
	width: 12%;
	height: auto;
	position: absolute;
	bottom: -10%;
	right: 10%;
	animation: fadeInOut 3.0s ease 0s infinite;
}


/* 以下スマホ */
@media (max-width: 1024px) {
	#review {
		margin-top: -1px;
		padding: 20vw 0;
	}
	#review #slider-1 .top-slide {
		animation: loop-slide 60s infinite linear 0s both;
	}
	#review #slider-2 .top-slide {
		animation: loop-slide-rev 60s infinite linear 0s both;
	}
	#review .top-slide-wrap .top-slide .content {
		width: 90vw;
		height: auto;
		margin: 0 5vw;
	}
	#review .top-slide-wrap .top-slide .content:nth-child(even) {
		margin-top: 0;
	}
	#review #review-content {
		width: 100%;
		height: auto;
		margin: 30vw 0;
		position: relative;
	}
	#review #review-content h2 {
		width: 100%;
		height: auto;
		margin: 0 0 10vw;
		padding: 0;
		text-align: center;
		opacity: 0;
	}
	#review #review-content h2 img {
		width: 50%;
	}
	#review .rev-unit {
		width: 100%;
		height: auto;
		margin: 10vw 0;
		text-align: center;
		opacity: 0;
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
	}
	#review .rev-unit .rev-txt {
		display: inline-block;
		width: 100%;
		height: auto;
		text-align: center;
		margin: 0 0 1vw;
		color: #231815;
		font-size: 1.4rem;
		font-weight: bold;
		letter-spacing: 1px;
	}
	#review .rev-unit .rev-name {
		display: inline-block;
		width: 100%;
		height: auto;
		margin: 0;
		color: #231815;
		font-size: 1.1rem;
		letter-spacing: 1px;
	}
	#review #rev-item1 {
		width: 22%;
		height: auto;
		position: absolute;
		top: 20%;
		left: 2%;
		animation: rev-item1 1.5s step-end 0s infinite;
	}
	#review #rev-item2 {
		width: 12%;
		height: auto;
		position: absolute;
		top: 5%;
		right: 5%;
		animation: rev-item2 1.8s ease 0s infinite;
	}
	#review #rev-item3 {
		width: 12%;
		height: auto;
		position: absolute;
		top: 80%;
		left: 3%;
		animation: zoomInOut 2.0s ease 0s infinite;
	}
	#review #rev-item4 {
		width: 30%;
		height: auto;
		position: absolute;
		bottom: -20%;
		right: 2%;
		animation: fadeInOut 3.0s ease 0s infinite;
	}
	
	

}


/* ========================================
キャスト・スタッフ
========================================== */
#cast-bgpc {
	width: 100%;
	height: 100%;
	background: url(../img/KN-caststaff-bg-pc.jpg) no-repeat;
	background-size: cover;
	background-position: center center;
	position: fixed;
	top: 0;
	left: 0;
	z-index: -10;
	opacity: 0;
}
#cast-staff {
	width: 100%;
	height: auto;
	padding: 20vw 0 10vw;
	background: linear-gradient(to bottom, transparent, transparent, #000, #000, #000);
}
#cast-bgsp {
	display: none;
}
#cast-staff h2 {
	width: 100%;
	height: auto;
	margin: 0 0 20vw;
	padding: 0;
	text-align: center;
	position: relative;
	opacity: 0;
}
#cast-staff h2 img {
	width: 30%;
}
#cast-staff #cast {
	width: 100%;
	height: auto;
	margin: 0 0 8vw;
}
#cast-staff #cast h3 {
	width: 100%;
	height: auto;
	margin: 0 0 1.5vw;
	padding: 0;
	text-align: center;
	color: #fff;
	font-size: 1.5vw;
	opacity: 0;
}
#cast-staff #cast p {
	width: 100%;
	height: auto;
	margin: 0 0 1.5vw;
	padding: 0;
	text-align: center;
	color: #e76cab;
	font-size: 1.5vw;
	font-weight: bold;
	line-height: 3vw;
	opacity: 0;
}
#cast-staff #cast p span {
	color: #fff;
	font-size: 1.2vw;
	font-weight: normal;
}
#cast-staff #staff {
	width: 100%;
	height: auto;
	margin: 0;
}
#cast-staff #staff h3 {
	width: 100%;
	height: auto;
	margin: 0 0 1.5vw;
	padding: 0;
	text-align: center;
	color: #fff;
	font-size: 1.5vw;
	opacity: 0;
}
#cast-staff #staff p {
	width: 100%;
	height: auto;
	margin: 0 0 1.5vw;
	padding: 0;
	text-align: center;
	color: #ffe76b;
	font-size: 1.5vw;
	font-weight: bold;
	line-height: 3vw;
	opacity: 0;
}
#cast-staff #staff p span {
	color: #fff;
	font-size: 1.2vw;
	font-weight: normal;
}

/* 以下スマホ */
@media (max-width: 1024px) {
	#cast-staff {
		width: 100%;
		height: auto;
		padding: 0 0 20vw;
		background: #000;
	}
	#cast-staff #cast-staff-sphead {
		width: 100%;
		height: auto;
		position: relative;
	}
	#cast-staff #cast-staff-sphead #cast-bgsp {
		display: block;
		width: 100%;
		height: auto;
	}
	#cast-staff #cast-staff-sphead h2 {
		width: 100%;
		height: auto;
		margin: 0;
		padding: 0;
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		text-align: center;
	}
	#cast-staff #cast-staff-sphead h2 img {
		width: 70%;
	}
	#cast-staff #cast {
		width: 100%;
		height: auto;
		margin: 0 0 20vw;
	}
	#cast-staff #cast h3 {
		width: 100%;
		height: auto;
		margin: 0 0 5vw;
		padding: 0;
		text-align: center;
		color: #fff;
		font-size: 1.2rem;
		opacity: 0;
	}
	#cast-staff #cast p {
		width: 100%;
		height: auto;
		margin: 0 0 10vw;
		padding: 0;
		text-align: center;
		color: #e76cab;
		font-size: 3.8vw;
		font-weight: bold;
		line-height: 7.6vw;
		opacity: 0;
	}
	#cast-staff #cast p span {
		color: #fff;
		font-size: 3.4vw;
		font-weight: normal;
	}
	#cast-staff #staff {
		width: 100%;
		height: auto;
		margin: 0;
	}
	#cast-staff #staff h3 {
		width: 100%;
		height: auto;
		margin: 0 0 5vw;
		padding: 0;
		text-align: center;
		color: #fff;
		font-size: 1.2rem;
		opacity: 0;
	}
	#cast-staff #staff p {
		width: 100%;
		height: auto;
		margin: 0 0 1.5vw;
		padding: 0;
		text-align: center;
		color: #ffe76b;
		font-size: 3.8vw;
		font-weight: bold;
		line-height: 7.6vw;
		opacity: 0;
	}
	#cast-staff #staff p span {
		color: #fff;
		font-size: 3.4vw;
		font-weight: normal;
	}
	
}

/* ========================================
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:2vw 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;
}


}



/* ========================================
フッター
========================================== */
#foot-fixed-bg {
	width: 100%;
	height: 100%;
	background: url(../img/KN-foot-bg-2-pc.jpg) no-repeat;
	background-size: cover;
	background-position: center center;
	position: fixed;
	top: 0;
	left: 0;
	z-index: -9;
	opacity: 0;
}
footer {
	width:100%;
	height:auto;
	padding:0;
	margin:0;
	position: relative;
}
footer #foot-bg {
	width:100%;
	height:auto;
}
footer #foot-bg2 {
	width:40%;
	height:auto;
	position: absolute;
	top: 10%;
	left: 25%;
}
.foot-fixed-bg {
	animation: fadeIn 1.6s ease 0.5s forwards;
}
.foot-bg {
	animation: fadeOut 1.6s ease 0.5s forwards;
}
footer #foot-kiken {
	width: 27%;
	height: auto;
	position: absolute;
	top: 15%;
	left: 5%;
	opacity: 0;
}
footer #foot-koroshi {
	width: auto;
	height: 2.5vw;
	position: absolute;
	top: 45%;
	left: 22%;
	opacity: 0;
}
footer #foot-namakenai {
	width: auto;
	height: 2.5vw;
	position: absolute;
	top: 45%;
	left: 62%;
	opacity: 0;
}
footer #foot-koroshi img ,
footer #foot-namakenai img {
	width: auto;
	height: 100%;
	vertical-align: bottom;
}
footer #foot-date {
	width: 100%;
	height: auto;
	text-align: center;
	position: absolute;
	bottom: 13%;
	left: 0;
	opacity: 0;
}
footer #foot-date img {
	width: 15%;
}
footer #button-area {
	position: absolute;
	bottom: 3%;
	opacity: 0;
}
footer #copyright {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 5px 0;
	text-align: center;
	color: #fff;
	font-size: 1em;
	position: absolute;
	bottom: 0;
	opacity: 0;
}
.foot-koroshi {
	animation: fadeIn 1.0s ease 1.5s forwards;
}
.foot-namakenai {
	animation: fadeIn 1.0s ease 2.3s forwards;
}
.foot-last-anime {
	animation: fadeIn 1.2s ease 3.1s forwards;
}
.foot-kiken {
	animation: fadeIn 1.2s ease 3.1s forwards , fadeInOut 1.2s ease 3.1s infinite;
}

@media (max-width: 1024px) {
	footer {
		width:100%;
		height:auto;
		padding:0;
		margin:0;
		position: relative;
	}
	footer #foot-bg2 {
		width:100%;
		height:auto;
		position: absolute;
		top: 15%;
		left: 0%;
	}
	
	footer #foot-kiken {
		width: 60%;
		height: auto;
		position: absolute;
		top: 65%;
		left: 5%;
		opacity: 0;
	}
	footer #foot-koroshi {
		width: 100%;
		height: 8vw;
		position: absolute;
		top: 38%;
		left: 0;
		text-align: center;
		opacity: 0;
	}
	footer #foot-namakenai {
		width: 100%;
		height: 8vw;
		position: absolute;
		top: 44%;
		left: auto;
		right: 0;
		text-align: center;
		opacity: 0;
	}
	footer #foot-koroshi img ,
	footer #foot-namakenai img {
		width: auto;
		height: 100%;
		vertical-align: bottom;
	}
	footer #foot-date {
		width: 50%;
		height: auto;
		text-align: center;
		position: absolute;
		bottom: auto;
		top: 74%;
		left: 45%;
		opacity: 0;
	}
	footer #foot-date img {
		width: 100%;
	}
	
	footer #copyright {
		width: 100%;
		height: auto;
		margin: 0;
		padding: 5px 0;
		text-align: center;
		color: #fff;
		font-size: 0.8em;
	}
}
@media (max-width: 610px) {
	footer #foot-koroshi {
		width: 100%;
		height: 8vw;
		position: absolute;
		top: 13%;
		left: 0;
		text-align: center;
		opacity: 0;
	}
	footer #foot-namakenai {
		width: 100%;
		height: 8vw;
		position: absolute;
		top: 18%;
		left: auto;
		right: 0;
		text-align: center;
		opacity: 0;
	}

}



/* ========================================
ダウンロード
========================================== */
#dl-body:before {
	content:"";
	display:block;
	position:fixed;
	top:0;
	left:0;
	z-index:-5;
	width:100%;
	height:100vh;
	background:url(https://namakemono-film.com/download/images/KN-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 #E84C95;
	  display:inline-block;
	  cursor:pointer;
	  color:#E84C95;
	  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:#E84C95;
	  border:1px solid #E84C95;
	  color:#000;
	  transition-duration: 0.6s
  }
  .dlButton:active {
	  position:relative;
	  top:1px;
  }  
  .issiki {
	  margin:20px 0 80px;
	  color:#E84C95 !important;
	  width: 25vw;
  }  
  .issiki:hover {
	  background-color:#E84C95;
	  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:40%;
  }  
  #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: 35%;
  }
  #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;
  }