html{
  height:100vh; 
}

body { margin: 0; padding:0;font-family: 'メイリオ', Meiryo,'ヒラギノ角ゴシック','Hiragino Sans','Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3',sans-serif; width:100%; height:100vh;overflow-x:hidden;
}
body > footer {
	position: sticky;
	top: 100vh;
}	

img {
    image-rendering: -webkit-optimize-contrast;
}
.clearfix{
  zoom:1;
}
.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
  overflow: hidden;/* 隙間対応 */
  font-size: 0.1em;/* 隙間対応 */
  line-height: 0;/* 隙間対応 */
}
br.clear {
	clear:both;
}
br.sponly {display:none;}
.pcimg {display: inline;}
.spimg {display: none;}

@-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;
	}
}
@keyframes fadeInUp {
	0% {
		opacity: 0;
		transform: translateY(70px);
		}
	80% {
		transform: translateY(-20px);
		}
	100% {
	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 {
	0% {
		transform: scale(0);
	}
	80% {
		transform: scale(1.05);
	}
	100% {
		transform: scale(1);
	}
}
.fadeInFast {
	animation-name:fadeIn;
	animation-duration:0.2s;
	animation-fill-mode:forwards;
	animation-timing-function: ease-out;
}



@media (max-width: 1024px) {
	.pcimg {display: none !important;}
	.spimg {display: inline;}
	body:before{
		content:"";
		display:block;
		position:fixed;
		top:0;
		left:0;
		z-index:-10;
		width:100%;
		height:100vh;
		background:url(https://www.holy-toilet.com/img/story_bg_sp.jpg) no-repeat;
		background-size: cover;
		background-position: center center;
	}

br.sponly {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:20%;
	height:auto;
	margin:0;
	padding:0;
	position:relative;
}
#loader #load1 {
	width:100%;
	height:100%;
	margin:0;
	padding:0;
    display: grid;
    place-items: center;
	animation: anime1 3s ease-in-out 0s infinite;
}
#loader #load2 {
	width:100%;
	height:100%;
	margin:0;
	padding:0;
	animation-name: anime1;
	animation-duration: 4s;
	animation-timing-function: ease;
	animation-delay:0;
	animation-iteration-count: infinite;
	animation-fill-mode:forwards;
    display: grid;
    place-items: center;
	position: absolute;
	top: 0;
	left: 0;
}

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

@keyframes anime1 {
	0% {	opacity:0;	}
	20% {	opacity:1;	}
	80% {	opacity:1;	}
	100% {	opacity:0;	}
}

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

#loader {
	width:60%;
	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:8px 0 10px;
	position:fixed;
	top:0;
	background: -moz-linear-gradient(top, #0A0405, transparent);
	background: linear-gradient(to bottom, #0A0405, 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 0.8%;
	padding:0;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	font-family: 'News Cycle', sans-serif;
}
#pcheader ul#pcmenu li.menusns {
	width:auto;
	height:auto;
	margin:0 0.5%;
	padding:0;
	text-align:center;
	display:flex;
	justify-content: center;
	align-items: flex-start;
}
#pcheader ul#pcmenu li a {
	transition-duration: 0.4s;
	text-decoration:none !important;
}
#pcheader ul#pcmenu li a:hover {
	cursor:pointer;
}
#pcheader ul#pcmenu li a span.eng {
	display: block;
	width: 100%;
	font-size:1.5vw;
	line-height:1.8vw;
	text-align: center;
	color: #fff;
	font-family: 'News Cycle', sans-serif;
}
#pcheader ul#pcmenu li.menusns a span.eng {
	color: #FDD11D;
}

#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: 60px;
}  
  .global-nav {
	position: fixed;
	right: 0; /* これで隠れる */
	top: -2000px;
	width: 100%; /* スマホに収まるくらい */
	height: 100vh;
	min-height: 100%;
	padding-top: 10px;
	background-color: #0A0405;
	color:#d6d7d7;
	transition: all .6s;
	z-index: 200000;
	overflow-y: auto;
  }
  .hamburger {
	position: fixed;
	left: 5px;
	top: 1px;
	width: 65px;
	height: 65px;
	cursor: pointer;
	z-index: 300000;
	opacity:0;
  }
  
  .global-nav #menu-logo {
	width:40%;
	height:auto;
	margin:30px 30% 40px;
	padding:0;
	text-align:center;
	position: relative;
}  
.global-nav #menu-logo img {
	width: 100%;
}
  .global-nav__list {
	margin: 0;
	padding: 0;
	list-style: none;
  }
  .global-nav__item {
	text-align: center;
	padding: 0.1vw 14px;
	font-family: 'News Cycle', sans-serif;
  }
  .global-nav__item a {
	display: block;
	padding: 5px 0;
	text-decoration: none;	
	color: #fff;
	font-weight: bold;
	font-family: 'News Cycle', sans-serif;
	transition: all .6s;
  }  
  .global-nav__item a .en {
	width: 100%;
	font-size:2vw;
	font-family: 'News Cycle', sans-serif;

}
	.global-nav__item a .jp {
		width: 100%;
		font-size:1vw;
}

  .hamburger__line {
	position: absolute;
	left: 8px;
	width: 50px;
	height: 4px;
	background-color: #fff !important;
	transition: all .6s;
  }  
  .hamburger #menu {
	position: absolute;
	top: 44px;
	left: 7px;
	font-weight:bold;
	color:#fff;
	font-size:1.0em;
	font-family: 'News Cycle', sans-serif;
	font-style: normal;
	font-weight: 400;
  } 
  .global-nav ul.nav-sns {
	width: 100%;
	height: auto;
	margin: 20px 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:#FDD11D;
}

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

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


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

.navigation {
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 60px;
	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: -5px;
	  font-weight:bold;
	  font-size:0.9em;
	  font-family: 'Libre Baskerville', serif;
	}
  
  .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: 100vh;
	min-height: 100%;
	padding-top: 40px;
	transition: all .6s;
	z-index: 200;
	overflow-y: auto; /* メニューが多くなったらスクロールできるように */
  }
  .global-nav__item a {
	display: block;
	padding: 10px 0;
	text-decoration: none;
	transition: all .6s;
  }
  .global-nav__item a .en {
	width: 100%;
	font-size:4vw;
	line-height: 6vw;
}
	.global-nav__item a .jp {
		width: 100%;
		font-size:3vw;
	}
.global-nav ul.nav-sns li {
	width: 10%;
	margin: 0 2%;
	text-align: center;
}
.global-nav ul.nav-sns li a {
	font-size: 10vw;
}

  
	/* 表示された時用の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__list {
		margin: 0 0 40px;
		padding: 0;
		list-style: none;
	  }
	
	.global-nav__item a {
		display: block;
		padding: 10px 0;
		text-decoration: none;
		transition: all .6s;
	  }
	  .global-nav__item a .en {
		width: 100%;
		font-size:6vw;
		line-height: 8vw;
		letter-spacing: 1px;
	}
	.global-nav__item a .jp {
		width: 100%;
		font-size:3.6vw;
	}
}




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

#topmain-pc {
	width:100%;
	height:auto;
	padding:0;
	margin:0;
	position:relative;
	overflow: hidden;
}
#topmain-pc picture {
	display: block;
}
#topmain-pc #up0 {
	width:100%;
	height:auto;
	margin: 0;
	padding: 0;
}
#topmain-pc #up1 {
	width:78.5%;
	height:auto;
	margin: 0;
	padding: 0;
	position: absolute;
	bottom: 0;
	left: 10%;
	opacity: 0;
}
#topmain-pc #up2 {
	width:71.5%;
	height:auto;
	margin: 0;
	padding: 0;
	position: absolute;
	top: 0;
	left: 0;
	transform: scale(0);
}
#topmain-pc #up3 {
	width:100%;
	height:auto;
	margin: 0;
	padding: 0;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
}
#topmain-pc #up0 img ,
#topmain-pc #up1 img ,
#topmain-pc #up2 img ,
#topmain-pc #up3 img {
	width:100%;
	height:auto;
	vertical-align:bottom;
}
.blurIn {
	animation-name:blurIn;
	animation-duration:1.1s;
	animation-fill-mode:forwards;
	animation-timing-function: cubic-bezier(0.5, 0, 0.75, 0);
}
.zoomIn {
	animation-name:zoomIn;
	animation-duration:0.4s;
	animation-fill-mode:forwards;
	animation-timing-function: ease-out;
	animation-delay: 1.1s;
}
.fadeIn2 {
	animation-name:fadeIn;
	animation-duration:1.1s;
	animation-fill-mode:forwards;
	animation-timing-function: ease-out;
	animation-delay: 1.8s;
}
.fadeIn {
	animation-name:fadeIn;
	animation-duration:1.1s;
	animation-fill-mode:forwards;
	animation-timing-function: ease-out;
	animation-delay: 0.3s;
}

.fadeIn3 {
	animation-name:fadeIn;
	animation-duration:1.1s;
	animation-fill-mode:forwards;
	animation-delay: 1.4s;
}
.fadeIn4 {
	animation-name:fadeIn;
	animation-duration:1.1s;
	animation-fill-mode:forwards;
	animation-delay: 2.1s;
}
.fadeInDate {
	animation-name:fadeIn;
	animation-duration:1.8s;
	animation-fill-mode:forwards;
	animation-delay: 2.2s;
}
.fadeInUp {
	animation-name:fadeInUp;
	animation-duration:0.5s;
	animation-timing-function: cubic-bezier(0.64, 0, 0.78, 0);
	animation-fill-mode:forwards;
	animation-delay: 0s;
}
.fadeInUp2 {
	animation-name:fadeInUp;
	animation-duration:0.5s;
	animation-timing-function: cubic-bezier(0.64, 0, 0.78, 0);
	animation-fill-mode:forwards;
	animation-delay: 0.4s;
}

/* 以下タブレット・スマホ */
@media (max-width: 1024px) {
	#topmain-pc #up0 {
		width:100%;
		height:auto;
		margin: 0;
		padding: 0;
	}
	#topmain-pc #up1 {
		width:100%;
		height:auto;
		margin: 0;
		padding: 0;
		position: absolute;
		bottom: auto;
		top: 2.5%;
		left: 0;
		opacity: 0;
	}
	#topmain-pc #up2 {
		width:100%;
		height:auto;
		margin: 0;
		padding: 0;
		position: absolute;
		top: 0;
		left: 0;
		transform: scale(0);
	}
	#topmain-pc #up3 {
		width:100%;
		height:auto;
		margin: 0;
		padding: 0;
		position: absolute;
		top: 0;
		left: 0;
		opacity: 0;
	}
	

	
}


/* ========================================
ブリッジ
========================================== */
#bridge {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 3vw 0;
	background-color: #CA0012;
}
#bridge #awards-sp ,
#bridge #billing-sp {
	display: none;
}
#bridge #date-pc {
	display: block;
	width: 60%;
	height: auto;
	margin: 3vw 20%;
	padding: 0;
	position: relative;
}
#bridge #date-pc #date-pc1 {
	width: 100%;
	height: auto;
	opacity: 0;
}
#bridge #date-pc #date-pc2 {
	width: 100%;
	height: auto;
	position: absolute;
	top: 0;
	opacity: 0;
}
#bridge #date-pc #date-pc1 img ,
#bridge #date-pc #date-pc2 img {
	width: 100%;
}
#bridge #theater {
	width: 100%;
	height: auto;
	margin: 2vw 0;
	text-align: center;
	opacity: 0;
}
#bridge #theater img {
	width: 20%;
}
#bridge #theater img:hover {
	opacity: 1;
	-webkit-animation: flash 1.5s;
	animation: flash 1.5s;
}
#bridge #mubi-wrap {
	width: 100%;
	height: auto;
	margin: 1vw 0;
	text-align: center;
	opacity: 0;
}
#bridge #mubi-wrap #mvtk-widgets-container {
	display: inline-block;
}



#bridge #sns-link {
	display: block;
	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 #sns-link li img {
	width: 100%;
	height: auto;
}
#bridge #sns-link li img:hover {
	opacity: 1;
	-webkit-animation: flash 1.5s;
	animation: flash 1.5s;
}




/* 以下タブレット・スマホ */
@media (max-width: 1024px) {
	#bridge {
		width: 100%;
		height: auto;
		margin: 0;
		padding: 0 0 5vw;
	}
	#bridge #date-pc {
		display: none;
	}
	#bridge #awards-sp {
		display: block;
		width: 100%;
		height: auto;
		margin: 0;
		text-align: center;
		opacity: 0;
	}
	#bridge #awards-sp img {
		width: 95%;
	}
	#bridge #billing-sp {
		display: block;
		width: 100%;
		height: auto;
		margin: 5vw 0;
		text-align: center;
		opacity: 0;
	}
	#bridge #billing-sp img {
		width: 98%;
	}
	#bridge #theater {
		width: 100%;
		height: auto;
		margin: 2vw 0 5vw;
		text-align: center;
		opacity: 0;
	}
	#bridge #theater img {
		width: 60%;
	}
	#bridge #sns-link {
		display: block;
		width: 100%;
		height: auto;
		margin: 0;
		padding: 0;
		list-style-type: none;
		display: flex;
		justify-content: center;
		opacity: 0;
	}
	#bridge #sns-link li {
		width: 12%;
		height: auto;
		margin: 0 2%;
	}
}

/* ========================================
トレーラー
========================================== */
.trailer {
	width:100%;
	height:auto;
	margin:0;
	padding:3vw 0 15vw;
	overflow: hidden;
	position: relative;
	z-index: 2;
	background-color: #CA0012;
}
.trailer .top-slide-wrap {
	display: block;
	width: 100%;
	height: auto;
	padding: 15vw 0 10vw;
	display: flex;
	align-items: center;
	overflow: hidden;
	position: relative;
}
.trailer .top-slide-wrap .top-slide {
	list-style-type: none;
	margin: 0;
	padding: 0;
	display: flex;
}
.trailer .top-slide-wrap .top-slide {
	animation: loop-slide 20s infinite linear 1s both;
}
.trailer .top-slide-wrap .top-slide .content {
	width: 20vw;
	height: auto;
}
.trailer .top-slide-wrap .top-slide .content img {
	width: 100%;
	height: auto;
	vertical-align: bottom;
}
.trailer h2 {
	width:100%;
	height:auto;
	padding:0;
	margin:0 0 1vw;
	text-align:center;
	position: relative;
	opacity: 0;
}
.trailer h2 img {
	width:16%;
	height:auto;
	vertical-align: bottom;
}
#video-wrap {
	width: 60%;
	height: auto;
	margin: 0;
	padding: 0 20%;
	opacity: 0;
	position: absolute;
	top: 17%;
}
.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: 100%;
	height: auto;
	margin: 10px 0;
	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: #C8010C;
	border: 1px solid #fff;
	color: #fff;
	font-size: 1.1vw;
}
.activee {
	background: #fff;
	border: 1px solid #fff;
	color: #C8010C;
}
.movie-btn:hover {
	background: #c8353c;
	border: 1px solid #c8353c;
	color: #fff;
	cursor: pointer;
	transition-duration: 0.6s;
}

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


/* 以下スマホ */
@media (max-width: 1024px) {
.trailer {
	width:100%;
	padding:30px 0 50vw;
}
.trailer h2 img {
	width:20%;
	height:auto;
}
.trailer .logo-slider-up ,
.trailer .logo-slider-down {
	width: 100%;
	height: auto;
	margin: 20vw 0;
	padding: 0 0 10vw;
	display: none;
}
#video-wrap {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	position: absolute;
	top: 15%;
}
.video {
	width:90%;
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
	margin:0 5% 10px;
	display:block;
  }
  .movie-btn {
	width: 30%;
	font-size: 2vw;

}
}

@media (max-width: 525px) {


.trailer {
	width:100%;
	height:auto;
	margin:0;
	padding:10vw 0 60vw;
}
.trailer h2 {
	width:100%;
	height:auto;
	text-align:center;
	padding:0;
	margin:30px 0 5px;
	position:relative;
	font-size: 6vw;
}
.trailer h2 img {
	width:40%;
	height:auto;
}
.trailer .trailer-slider {
	display: none;
}
#video-wrap {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	position: absolute;
	top: 26%;
}
.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;
}

}

/* ========================================
イントロダクション
========================================== */
#intro-bg {
	display:block;
	position:fixed;
	top:0;
	left:0;
	z-index:-18;
	width:100%;
	height:100vh;
	min-height: 100%;
	background:url(https://www.holy-toilet.com/img/HS-intro-bg-pc.jpg) no-repeat;
	background-size: cover;
	background-position: center center;
	opacity: 1;
}
#intro-bg2 {
	display:block;
	position:fixed;
	top:0;
	left:0;
	z-index:-17;
	width:100%;
	height:100vh;
	min-height: 100%;
	opacity: 1;
}
#intro {
	width: 100%;
	height: auto;
	padding: 25vw 0 20vw;
	overflow-x: hidden;
}
#intro h2 {
	width: 100%;
	height: auto;
	margin: 0 0 10vw;
	padding: 0;
	text-align: center;
	opacity: 0;
}
#intro h2 img {
	width: 30%;
}
#intro #intro-catch {
	width: 100%;
	margin: 0 0 20vw;
}
#intro #intro-catch .intro-catch {
	width: 100%;
	height: auto;
	margin: 2vw 0;
	text-align: center;
	transform: scale(0);
}
#intro #intro-catch .intro-catch img {
	width: auto;
	height: 5vw;
}
.zoomIntro {
	animation-name:zoomIn;
	animation-duration:0.8s;
	animation-fill-mode:forwards;
	animation-timing-function: ease-out;
}
#intro p {
	width: 60%;
	height: auto;
	margin: 2vw 20%;
	padding: 0;
	color: #fff;
	font-size: 1.2vw;
	line-height: 2.4vw;
	font-feature-settings: "palt";
	letter-spacing: 1.5px;
	opacity: 0;
}

@media (max-width: 1025px) {
	#intro-bg {
		display:block;
		position:fixed;
		top:0;
		left:0;
		z-index:-18;
		width:100%;
		height:100vh;
		min-height: 100%;
		background:url(https://www.holy-toilet.com/img/HS-intro-bg-sp.jpg) no-repeat;
		background-size: cover;
		background-position: center center;
		opacity: 1;
	}
	#intro {
		width: 100%;
		height: auto;
		padding: 70vw 0 40vw;
		overflow-x: hidden;
	}
	#intro h2 {
		width: 100%;
		height: auto;
		margin: 0 0 20vw;
		padding: 0;
		text-align: center;
		opacity: 0;
	}
	#intro h2 img {
		width: 85%;
	}
	#intro #intro-catch {
		width: 100%;
		margin: 0 0 20vw;
	}
	#intro #intro-catch .intro-catch {
		width: 100%;
		height: auto;
		margin: 7vw 0;
		text-align: center;
		transform: scale(0);
	}
	#intro #intro-catch .intro-catch:nth-child(1) img {
		width: 95%;
		height: auto;
	}
	#intro #intro-catch .intro-catch:nth-child(2) img {
		width: 75%;
		height: auto;
	}
	#intro #intro-catch .intro-catch:nth-child(3) img {
		width: 80%;
		height: auto;
	}
	.zoomIntro {
		animation-name:zoomIn;
		animation-duration:0.8s;
		animation-fill-mode:forwards;
		animation-timing-function: ease-out;
	}
	#intro p {
		width: 90%;
		height: auto;
		margin: 10vw 5%;
		padding: 0;
		color: #fff;
		font-size: 1em;
		line-height: 2em;
		font-feature-settings: "palt";
		letter-spacing: 1.5px;
		opacity: 0;
	}
	
}


/* ========================================
ストーリー
========================================== */

#story-bg {
	display:block;
	position:fixed;
	top:0;
	left:0;
	z-index:-16;
	width:100%;
	height:100vh;
	min-height: 100%;
	background:url(https://www.holy-toilet.com/img/HS-story-bg-1-pc.jpg) no-repeat;
	background-size: cover;
	background-position: center center;
	opacity: 0;
}
#story-bg2 {
	display:block;
	position:fixed;
	top:0;
	left:0;
	z-index:-16;
	width:100%;
	height:100vh;
	min-height: 100%;
	background:url(https://www.holy-toilet.com/img/HS-story-bg-2-pc.jpg) no-repeat;
	background-size: cover;
	background-position: center center;
	opacity: 0;
}
@keyframes story-bg2 {
	0% {opacity: 0;}
	40% {opacity: 0;}
	50% {opacity: 1;}
	90% {opacity: 1;}
	100% {opacity: 0;}
}
.fadeInFast2 {
	animation: fadeIn 0.2s ease-out forwards , story-bg2 7s ease-in-out infinite;
}
#story {
	width: 100%;
	height: auto;
	padding: 10vw 0 20vw;
	overflow-x: hidden;
}
#story h2 {
	width: 100%;
	height: auto;
	margin: 0 0 10vw;
	padding: 0;
	text-align: center;
	opacity: 0;
}
#story h2 img {
	width: 15%;
}
#story #story-c1 {
	width: 75%;
	height: auto;
	margin: 2vw 0 2vw 25%;
	text-align: left;
	opacity: 0;
}
#story #story-c1 img {
	width: 50%;
}
#story #story-c2 {
	width: 75%;
	height: auto;
	margin: 2vw 25% 2vw 0;
	text-align: right;
	opacity: 0;
}
#story #story-c2 img {
	width: 45%;
}
@keyframes slideInLeft {
	0% {
		transform: translateX(-100%);
		opacity: 0;
	}
	100% {
		transform: translateX(0%);
		opacity: 1;
	}
}
.slideInLeft {
	animation: slideInLeft 1s ease-out 0s forwards;
}
@keyframes slideInRight {
	0% {
		transform: translateX(100%);
		opacity: 0;
	}
	100% {
		transform: translateX(0%);
		opacity: 1;
	}
}
.slideInRight {
	animation: slideInRight 1s ease-out 0.15s forwards;
}
#story #story-c3 {
	width: 100%;
	height: auto;
	margin: 5vw 0;
	text-align: center;
	transform: scale(0);
}
#story #story-c3 img {
	width: 50%;
}
#story p {
	width: 60%;
	height: auto;
	margin: 2vw 20%;
	padding: 0;
	color: #fff;
	font-size: 1.2vw;
	line-height: 2.4vw;
	font-feature-settings: "palt";
	letter-spacing: 1.5px;
	opacity: 0;
}
#story h3 {
	width: 100%;
	height: auto;
	margin: 10vw 0 2vw;
	padding: 0;
	text-align: center;
	opacity: 0;
}
#story h3 img {
	width: 12%;
}
#story #filmfes {
	width: 50%;
	height: auto;
	margin: 0 25%;
	padding: 0;
	list-style-type: none;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
#story #filmfes li {
	width: 40%;
	height: auto;
	margin: 1vw 2%;
	opacity: 0;
}
#story #filmfes li img {
	width: 100%;
}




@media (max-width: 1025px) {
	#story-bg {
		display:block;
		position:fixed;
		top:0;
		left:0;
		z-index:-16;
		width:100%;
		height:100vh;
		min-height: 100%;
		background:url(https://www.holy-toilet.com/img/HS-story-bg-1-sp.jpg) no-repeat;
		background-size: cover;
		background-position: center center;
		opacity: 0;
	}
	#story-bg2 {
		display:block;
		position:fixed;
		top:0;
		left:0;
		z-index:-16;
		width:100%;
		height:100vh;
		min-height: 100%;
		background:url(https://www.holy-toilet.com/img/HS-story-bg-2-sp.jpg) no-repeat;
		background-size: cover;
		background-position: center center;
		opacity: 0;
	}
	#story {
		width: 100%;
		height: auto;
		padding: 20vw 0 40vw;
		overflow-x: hidden;
	}
	#story h2 {
		width: 100%;
		height: auto;
		margin: 0 0 20vw;
		padding: 0;
		text-align: center;
		opacity: 0;
	}
	#story h2 img {
		width: 45%;
	}
	#story #story-c1 {
		width: 100%;
		height: auto;
		margin: 10vw 0;
		text-align: center;
		opacity: 0;
	}
	#story #story-c1 img {
		width: 70%;
	}
	#story #story-c2 {
		width: 100%;
		height: auto;
		margin: 10vw 0;
		text-align: center;
		opacity: 0;
	}
	#story #story-c2 img {
		width: 85%;
	}
	#story #story-c3 {
		width: 100%;
		height: auto;
		margin: 10vw 0;
		text-align: center;
		transform: scale(0);
	}
	#story #story-c3 img {
		width: 85%;
	}
	#story p {
		width: 90%;
		height: auto;
		margin: 20vw 5%;
		padding: 0;
		color: #fff;
		font-size: 1em;
		line-height: 2em;
		font-feature-settings: "palt";
		letter-spacing: 1.5px;
		opacity: 0;
	}
	#story h3 {
		width: 100%;
		height: auto;
		margin: 20vw 0 6vw;
		padding: 0;
		text-align: center;
		opacity: 0;
	}
	#story h3 img {
		width: 30%;
	}
	#story #filmfes {
		width: 100%;
		height: auto;
		margin: 0;
		padding: 0;
		list-style-type: none;
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
	}
	#story #filmfes li {
		width: 45%;
		height: auto;
		margin: 5vw 2%;
		opacity: 0;
	}
	#story #filmfes li img {
		width: 100%;
	}
	
}




/* ========================================
レビュー
========================================== */
#review {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 30vw 0;
	background-color:  #F9D611;
	position: relative;
	z-index: -13;
}
#review .top-slide-wrap {
	display: block;
	width: 100%;
	height: auto;
	padding: 0;
	display: flex;
	align-items: center;
	overflow: hidden;
	position: relative;
}
#review #review-slide1 {
	position: fixed;
	top: 0;
	z-index: -12;
	opacity: 0;
}
#review #review-slide2 {
	position: fixed;
	bottom: 0;
	z-index: -12;
	opacity: 0;
}
#review .top-slide-wrap .top-slide {
	list-style-type: none;
	margin: 0;
	padding: 0;
	display: flex;
}
#review #review-slide1 .top-slide {
	animation: loop-slide 20s infinite linear 1s both;
}
#review #review-slide2 .top-slide {
	animation: loop-slide-rev 20s infinite linear 1s both;
}
#review .top-slide-wrap .top-slide .content {
	width: 20vw;
	height: auto;
}
#review .top-slide-wrap .top-slide .content img {
	width: 100%;
	height: auto;
	vertical-align: bottom;
}
#review h2 {
	width: 100%;
	height: auto;
	margin: 0 0 3vw;
	padding: 0;
	text-align: center;
	position: relative;
	z-index: -13;
}
#review h2 img {
	width: 18%;
}
#review .review-unit {
	width: 70%;
	height: auto;
	margin: 10vw 15%;
	padding: 0;
	position: relative;
	z-index: -13;
	opacity: 0;
}
#review .review-unit .rev-txt {
	width: 100%;
	height: auto;
	margin: 0;
	font-size: 1.4vw;
	line-height: 2.4vw;
	font-feature-settings: "palt";
	letter-spacing: 1.5px;
	color: #C8010C;
	text-align: center;
	font-weight: bold;
}
#review .review-unit .rev-name {
	width: 100%;
	height: auto;
	margin: 0 0 1vw;
	font-size: 1.1vw;
	line-height: 2.2vw;
	font-feature-settings: "palt";
	letter-spacing: 1px;
	color: #000;
	font-weight: bold;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
}
#review .review-unit .rev-name::before {
	border-top: 2px solid #000;
	content: "";
	width: 20px; 
	margin-right: 10px; 
}


@media (max-width: 1025px) {
	#review {
		width: 100%;
		height: auto;
		margin: 0;
		padding: 90vw 0 80vw;
		background-color:  #F9D611;
		position: relative;
		z-index: -13;
	}
	#review .top-slide-wrap .top-slide .content {
		width: 120vw;
		height: auto;
	}
	#review h2 {
		width: 100%;
		height: auto;
		margin: 0 0 3vw;
		padding: 0;
		text-align: center;
		position: relative;
		z-index: -13;
	}
	#review h2 img {
		width: 40%;
	}
	#review .review-unit {
		width: 100%;
		height: auto;
		margin: 50vw 0;
		padding: 0;
		position: relative;
		z-index: -13;
		opacity: 0;
	}
	#review .review-unit .rev-txt {
		width: 100%;
		height: auto;
		margin: 0;
		font-size: 1.16em;
		line-height: 2em;
		font-feature-settings: "palt";
		letter-spacing: 1.5px;
		color: #C8010C;
		text-align: center;
		font-weight: bold;
	}
	#review .review-unit .rev-name {
		width: 100%;
		height: auto;
		margin: 0 0 1vw;
		font-size: 1em;
		line-height: 2em;
		font-feature-settings: "palt";
		letter-spacing: 1px;
		color: #000;
		font-weight: bold;
		text-align: center;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	#review .review-unit .rev-name::before {
		border-top: 2px solid #000;
		content: "";
		width: 20px; 
		margin-right: 10px; 
	}
}

/* ========================================
スタッフキャスト
========================================== */
#cast {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 10vw 0;
	background-color: #CF0012;
	position: relative;
}
#cast h2 {
	width: 100%;
	height: auto;
	margin: 0 0 1vw;
	padding: 0;
	text-align: center;
	opacity: 0;
}
#cast h2 img {
	width: 24%;
}
#cast .cast-unit {
	width: 60%;
	height: auto;
	margin: 8vw 20%;
	position: relative;
	z-index: 1;
}
#cast .cast-unit h3 {
	width: 100%;
	height: auto;
	margin: 0 0 1vw;
	padding: 0;
	text-align: center;
	opacity: 0;
}
#cast .cast-unit h3 img {
	width: 50%;
}
#cast .cast-unit p {
	width: 100%;
	height: auto;
	margin: 0 0 1vw;
	font-size: 1.2vw;
	line-height: 2.4vw;
	font-feature-settings: "palt";
	letter-spacing: 1px;
	color: #fff;
	opacity: 0;
}
#cast .cast-unit h4 {
	width: 100%;
	height: auto;
	margin: 0 0 1vw;
	padding: 0;
	text-align: center;
	opacity: 0;
}
#cast .cast-unit h4 img {
	width: auto;
	height: 5vw;
}
#cast .cast-unit .cast-img ,
#cast .cast-unit .cast-img2 {
	width: 30%;
	height: auto;
	margin: 0 35% 1vw;
	padding: 0;
	text-align: center;
	opacity: 0;
}
#cast .cast-unit .cast-img img ,
#cast .cast-unit .cast-img2 img {
	width: 100%;
	height: auto;
}
@keyframes koro1 {
	0% {
		transform: translateX(100%) rotate(270deg);
		opacity: 0;
	}
	100% {
		transform: translateX(0%) rotate(0deg);
		opacity: 1;
	}
}
.koro1 {
	animation: koro1 1.0s ease-out 0s forwards;
}
@keyframes koro2 {
	0% {
		transform: translateX(-100%) rotate(270deg);
		opacity: 0;
	}
	100% {
		transform: translateX(0%) rotate(0deg);
		opacity: 1;
	}
}
.koro2 {
	animation: koro2 1.0s ease-out 0s forwards;
}
#cast .cast-items {
	width: 60%;
	height: 0;
}
#cast .cast-items .ci1 {
	width: 10%;
	position: absolute;
	top: 10%;
	right: 10%;
	opacity: 0;
}
#cast .cast-items .ci2 {
	width: 20%;
	position: absolute;
	top: 20%;
	left: 5%;
	opacity: 0;
}
#cast .cast-items .ci3 {
	width: 10%;
	position: absolute;
	top: 30%;
	right: 10%;
	opacity: 0;
}
#cast .cast-items .ci4 {
	width: 20%;
	position: absolute;
	top: 40%;
	left: 5%;
	opacity: 0;
}
#cast .cast-items .ci5 {
	width: 20%;
	position: absolute;
	top: 50%;
	right: 10%;
	opacity: 0;
}
#cast .cast-items .ci6 {
	width: 30%;
	position: absolute;
	top: 70%;
	left: 0%;
	transform: scale(0);
}
#cast .cast-items .ci1 img ,
#cast .cast-items .ci2 img ,
#cast .cast-items .ci3 img ,
#cast .cast-items .ci4 img ,
#cast .cast-items .ci5 img ,
#cast .cast-items .ci6 img {
	width: 100%;
}
@keyframes zoomInRight {
from {
	opacity: 0;
	-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
	transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
	-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
	animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
60% {
	opacity: 1;
	-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
	transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
	-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
	animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
}
100% {opacity: 1;}
}
.zoomInRight {
	animation: zoomInRight 1.7s linear forwards;
}
@keyframes zoomInLeft {
from {
	opacity: 0;
	-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
	transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
	-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
	animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
60% {
	opacity: 1;
	-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
	transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
	-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
	animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
}
100% {opacity: 1;}
}
.zoomInLeft {
	animation: zoomInLeft 2s linear forwards;
}

@keyframes zoomInDown {
from {
	opacity: 0;
	-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
	transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
	-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
	animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
60% {
	opacity: 1;
	-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
	transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
	-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
	animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
}
100% {opacity: 1;}
}
.zoomInDown {
animation: zoomInDown 1.1s linear forwards;
}
@keyframes bounceInLeft {
	from,
	60%,
	75%,
	90%,
	to {
	-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
0% {
	opacity: 0;
	-webkit-transform: translate3d(-3000px, 0, 0);
	transform: translate3d(-3000px, 0, 0);
}
60% {
	opacity: 1;
	-webkit-transform: translate3d(25px, 0, 0);
	transform: translate3d(25px, 0, 0);
}
75% {
	-webkit-transform: translate3d(-10px, 0, 0);
	transform: translate3d(-10px, 0, 0);
}
90% {
	-webkit-transform: translate3d(5px, 0, 0);
	transform: translate3d(5px, 0, 0);
}
to {
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	opacity: 1;
}
}
.bounceInLeft {
	animation: bounceInLeft 1.5s linear forwards;
}
@keyframes bounceInDown {
	from,
	60%,
	75%,
	90%,
	to {
	-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
0% {
	opacity: 0;
	-webkit-transform: translate3d(0, -3000px, 0);
	transform: translate3d(0, -3000px, 0);
}
60% {
	opacity: 1;
	-webkit-transform: translate3d(0, 25px, 0);
	transform: translate3d(0, 25px, 0);
}
75% {
	-webkit-transform: translate3d(0, -10px, 0);
	transform: translate3d(0, -10px, 0);
}
90% {
	-webkit-transform: translate3d(0, 5px, 0);
	transform: translate3d(0, 5px, 0);
}
to {
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	opacity: 1;
}
}
.bounceInDown {
	animation: bounceInDown 1.5s linear forwards;
}


@media (max-width: 1025px) {
	#cast {
		width: 100%;
		height: auto;
		margin: 0;
		padding: 20vw 0;
		background-color: #CF0012;
		position: relative;
	}
	#cast h2 {
		width: 100%;
		height: auto;
		margin: 0 0 1vw;
		padding: 0;
		text-align: center;
		opacity: 0;
	}
	#cast h2 img {
		width: 50%;
	}
	#cast .cast-unit {
		width: 100%;
		height: auto;
		margin: 15vw 0;
		position: relative;
		z-index: 1;
	}
	#cast .cast-unit h3 {
		width: 100%;
		height: auto;
		margin: 0 0 1vw;
		padding: 0;
		text-align: center;
		opacity: 0;
	}
	#cast .cast-unit h3 img {
		width: 80%;
	}
	#cast .cast-unit p {
		width: 90%;
		height: auto;
		margin: 0 5% 3vw;
		font-size: 1em;
		line-height: 2em;
		font-feature-settings: "palt";
		letter-spacing: 1px;
		color: #fff;
		opacity: 0;
	}
	#cast .cast-unit h4 {
		width: 100%;
		height: auto;
		margin: 0 0 1vw;
		padding: 0;
		text-align: center;
		opacity: 0;
	}
	#cast .cast-unit h4 img {
		width: auto;
		height: 13vw;
	}
	#cast .cast-unit .cast-img ,
	#cast .cast-unit .cast-img2 {
		width: 80%;
		height: auto;
		margin: 0 10% 2vw;
		padding: 0;
		text-align: center;
		opacity: 0;
	}
	#cast .cast-items {
		width: 100%;
		height: auto;
		margin: 0;
		padding: 10vw 0;
		display: flex;
		justify-content: center;
	}
	#cast .cast-items .ci1 {
		width: 30%;
		height: auto;
		margin: 0 2%;
		position: static;
		opacity: 0;
		order: 1;
	}
	#cast .cast-items .ci2 {
		width: 50%;
		height: auto;
		margin: 0 2%;
		position: static;
		opacity: 0;
	}
	#cast .cast-items .ci3 {
		width: 30%;
		height: auto;
		margin: 0 2%;
		position: static;
		opacity: 0;
		order: 1;
	}
	#cast .cast-items .ci4 {
		width: 50%;
		height: auto;
		margin: 0 2%;
		position: static;
		opacity: 0;
	}
	#cast .cast-items .ci5 {
		width: 44%;
		height: auto;
		margin: 0 2%;
		position: static;
		opacity: 0;
		order: 1;
	}
	#cast .cast-items .ci6 {
		width: 50%;
		height: auto;
		margin: 0 2% 0 0;
		position: static;
	}


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

#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:#1B95E0;
}
#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;
	position: relative;
	background-color: #000;
	overflow: hidden;
}
footer picture {
	display: block;
}
footer #foot-bg1 {
	width:100%;
	height:auto;
	padding:0;
	margin:0;
}
footer #foot-bg2 {
	width:100%;
	height:auto;
	padding:0;
	margin:0;
	position: absolute;
	top: 0;
	left: 0;
	animation: foot-anime 4s ease-in-out 0s infinite;
}
footer #foot-bg3 {
	width:100%;
	height:auto;
	padding:0;
	margin:0;
	position: absolute;
	top: 0;
	left: 0;
}
@keyframes foot-anime {
	0% {transform: translateX(0);}
	20% {transform: translateX(0);}
	50% {transform: translateX(-100%);}
	80% {transform: translateX(0);}
	100% {transform: translateX(0);}
}
footer #foot-bg1 img ,
footer #foot-bg2 img ,
footer #foot-bg3 img {
	width: 100%;
	height: auto;
	vertical-align: bottom;
}
footer #foot-logo {
	width: 28%;
	height: auto;
	position: absolute;
	top: 30%;
	left: 15%;
	opacity: 0;
}
footer #foot-logo img {
	width: 100%;
}
footer #sns-link-foot {
	display: block;
	width: 30%;
	height: auto;
	margin: 0;
	padding: 0;
	list-style-type: none;
	display: flex;
	justify-content: center;
	opacity: 0;
	position: absolute;
	top: 50%;
	left: 14%;
}
footer #sns-link-foot li {
	width: 15%;
	height: auto;
	margin: 0 3%;
}
footer #sns-link-foot li img {
	width: 100%;
	height: auto;
}
footer #sns-link-foot li img:hover {
	opacity: 1;
	-webkit-animation: flash 1.5s;
	animation: flash 1.5s;
}
footer #button-area {
	position: absolute;
	bottom: 5%;
}
footer #copy {
	width: 100%;
	height: auto;
	margin: 5px 0;
	text-align: center;
	color: #fff;
	font-size: 0.9vw;
	position: absolute;
	bottom: 0;
}


@media (max-width: 1024px) {
	footer {
		width:100%;
		height:auto;
		padding:0;
		margin:0;
		position: relative;
	}
	footer #foot-logo {
		width: 100%;
		height: auto;
		text-align: center;
		position: absolute;
		top: 10%;
		left: 0%;
		opacity: 0;
	}
	footer #foot-logo img {
		width: 80%;
	}
	footer #sns-link-foot {
		display: block;
		width: 100%;
		height: auto;
		margin: 0;
		padding: 0;
		list-style-type: none;
		display: flex;
		justify-content: center;
		opacity: 0;
		position: absolute;
		top: 23%;
		left: 0%;
	}
	footer #sns-link-foot li {
		width: 15%;
		height: auto;
		margin: 0 3%;
	}
	
	footer #copy {
		width: 100%;
		height: auto;
		margin: 5px 0;
		text-align: center;
		color: #fff;
		font-size: 0.8em;
	}
	
}
@media (max-width: 510px) {




}

/* ========================================
ダウンロード
========================================== */

body#dl-body:before{
	content:"";
	display:block;
	position:fixed;
	top:0;
	left:0;
	z-index:-10;
	width:100%;
	height:100vh;
	background:url(https://www.holy-toilet.com/download/images/HS-dl-bg.jpg) no-repeat;
	  background-size: cover;
	  background-position: bottom center;
	  animation: none;
  }
  body#dl-body::after{
	content:"";
	display:block;
	position:fixed;
	top:0;
	left:0;
	z-index:-11;
	width:100%;
	height:100vh;
	animation: none;
  }  
  .dlButton {
	  background-color:transparent;
	  border:1px solid #FDD11D;
	  display:inline-block;
	  cursor:pointer;
	  color:#FDD11D;
	  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:#FDD11D;
	  color:#CA0012;
	  transition-duration: 0.6s
  }
  .dlButton:active {
	  position:relative;
	  top:1px;
  }  
  .issiki {
	  margin:20px 0 80px;
	  color:#FDD11D !important;
	  width: 25vw;
  }  
  .issiki:hover {
	  background-color:#FDD11D;
	  color:#CA0012 !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:#031018;
	  font-size:2em;
	  margin-bottom:30px;
  }  
  .dl-contents h2 span.small {
	  font-size:0.5em;
	  line-height:0.7em;
  }
  
  .dl-contents h2 img {
	  width:25%;
  }  
  #dl-wrapper {
	  width:100%;
	  height:auto;
	  text-align:center;
	  margin-bottom:20px;
  }
  
  #dl-wrapper .dl-txt1 {
	  width:100%;
	  height:auto;
	  text-align:center;
	  color:#fff;
	  margin:20px 0 5px;
	  font-size: 0.9em;
	  font-weight: bold;
	  font-feature-settings:"palt";
	  font-family: 'メイリオ', Meiryo,'ヒラギノ角ゴシック','Hiragino Sans','Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3',sans-serif;
  }
  #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;
	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";
	  font-family: 'メイリオ', Meiryo,'ヒラギノ角ゴシック','Hiragino Sans','Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3',sans-serif;
  }  
  .img-box img {
	  width:90%;
  }

  .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;
  }