html{
  height:100%; 
}

body { 
	margin: 0; 
	padding:0;
	font-family: "hiragino-kaku-gothic-pron", sans-serif;
	font-weight: 600;
	font-style: normal;
	width:100%; 
	height:100%;
	overflow-x:hidden;
	background-color: #000;
}
body > footer {
	position: sticky;
	top: 100vh;
}	
img {
    image-rendering: -webkit-optimize-contrast;
}
br.clear {
	clear:both;
}
br.sponly {display:none;}
br.sponly2 {display:none;}
br.pconly {display:inline;}
.img {
	width: 100%;
	height: auto;
	vertical-align: bottom;
}

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

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

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

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

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



@media (max-width: 1024px) {
	body { 
		margin: 0; 
		padding:0;
		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.2s;
    transition-duration: 1.0s;
    opacity: 0;
    pointer-events: none;
}
/* ローディング画面 */
#loader-bg {
    background: #000;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    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;
}



/* 以下スマホ */
@media (max-width: 1024px) {
	#loader-bg {
		background: #000;
	}
	#loader {
		width:100%;
		height:auto;
		margin:0;
		padding:0;
		position:relative;
		text-align:center;
	}
	#loader {
		width:60%;
		height:auto;
		margin:0;
		padding:0;
		position:relative;
	}
	

}



/* ========================================
トップ
========================================== */
#top {
	width:100%;
	height:auto;
	padding:0;
	margin:0;
	position:relative;
	overflow: hidden;
}
#top #top__bg {
	width:100%;
	height:auto;
}
#top #top__bg img {
	width: 100%;
	height: auto;
	aspect-ratio: 1920 / 1080;
}
#top #cloud1 {
	width: 35%;
	height: auto;
	position: absolute;
	top: 0;
	left: 70%;
	animation: cloud-to-right 600s linear 0s infinite;
}
#top #cloud2 {
	width: 45%;
	height: auto;
	position: absolute;
	top: 35%;
	left: 45%;
	animation: cloud-to-right 800s linear 0s infinite;
}
#top #cloud3 {
	width: 55%;
	height: auto;
	position: absolute;
	top: 3%;
	left: -10%;
	animation: cloud-to-right 700s linear 0s infinite;
}
#top #cloud4 {
	width: 45%;
	height: auto;
	position: absolute;
	top: 50%;
	left: -50%;
	animation: cloud-to-right 680s linear 0s infinite;
	opacity: 0.6;
}
#top #cloud5 {
	width: 50%;
	height: auto;
	position: absolute;
	top: 0%;
	left: -80%;
	animation: cloud-to-right 720s linear 0s infinite;
}
#top #cloud6 {
	width: 35%;
	height: auto;
	position: absolute;
	top: 35%;
	left: -120%;
	animation: cloud-to-right 750s linear 0s infinite;
}
@keyframes cloud-to-right {
	0% {transform: translate3d(0, 0, 0);}
	100% {transform: translate3d(700%, 0, 0);}
}
#top #top__poster {
	width: auto;
	height: 100%;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate3d(-50%, 0, 0);
}
#top #top__poster img {
	width: auto;
	height: 100%;
}
#top #top__catch {
	width: 32%;
	height: auto;
	position: absolute;
	top: 25%;
	right: 2%;
	opacity: 0;
}
#top #top__date {
	width: 35%;
	height: auto;
	position: absolute;
	bottom: 19%;
	left: 3%;
	opacity: 0;
}
.top-last-anime {
	animation: fadeIn 1.5s ease 1.4s forwards;
}



/* 以下タブレット・スマホ */
@media (max-width: 1024px) {
	#top {
		width:100%;
		height:auto;
		padding:0 0 10vw;
		margin:0;
		position:relative;
		overflow: hidden;
		background-color: #7ea9a3;
	}
	#top #top__bg img {
		width: 100%;
		height: auto;
		aspect-ratio: 1070 / 1654;
	}
	#top #cloud1 ,
	#top #cloud2 ,
	#top #cloud3 ,
	#top #cloud4 ,
	#top #cloud5 ,
	#top #cloud6 ,
	#top #top__poster {
		display: none;
	}
	#top #top__date {
		width: 80%;
		height: auto;
		margin: 10vw 10%;
		position: static;
		opacity: 0;
	}
	#top #top__catch {
		width: 90%;
		height: auto;
		margin: 0 5%;
		position: static;
		opacity: 0;
	}

}



/* ========================================
ブリッジ
========================================== */
#bridge {
	width: 100%;
	height: auto;
	box-sizing: border-box;
	padding: 5vw 20% 10vw;
	background-color: #7ea9a3;
}
#bridge p {
	width: 100%;
	height: auto;
	color: #fff;
	font-size: 1.2vw;
	line-height: 2.4vw;
	letter-spacing: 1.5px;
	opacity: 0;
}


/* 以下タブレット・スマホ */
@media (max-width: 1024px) {
	#bridge {
		width: 100%;
		height: auto;
		box-sizing: border-box;
		padding: 5vw 5% 10vw;
		background-color: #7ea9a3;
	}
	#bridge p {
		width: 100%;
		height: auto;
		color: #fff;
		font-size: 1.15rem;
		line-height: 2.3rem;
		letter-spacing: 1.5px;
		opacity: 0;
	}
}

/* ========================================
ストーリー
========================================== */
#story {
	width: 100%;
	height: auto;
	position: relative;
}
#story #story__bgs {
	display:contents;
}
#story #story__bg1 {
	width: 100%;
	height: auto;
}
#story #story__bg2 {
	width: 100%;
	height: auto;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 3;
	pointer-events: none;
}
#story #story__bg3 {
	display: none;
}
#story #story__contents {
	width: 100%;
	height: auto;
	padding: 8vw 0;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translate3d(0, -50%, 0);
}
#story #story__contents #story__txt {
	width: 100%;
	height: auto;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	z-index: 2;
}
#story #story__contents #story__txt h2 {
	width: 10%;
	height: auto;
	margin: 0 25% 0 0;
}
#story #story__contents #story__txt #txt {
	width: 35%;
	height: auto;
	margin: 0;
	color: #fff;
	font-size: 1.1vw;
	line-height: 2.1vw;
	letter-spacing: 1.2px;
}
#story #story__contents #tohome {
	width: 12%;
	height: auto;
	position: absolute;
	bottom: 5%;
	right: 5%;
	z-index: 5;
}
#story #story__contents #tohome a:hover {
	animation: flash 1.5s;
}

#story #story__contents #black-bg {
	width: 100%;
	height: 100%;
	background-color: rgba(45, 51, 41, 0.77);
	position: absolute;
	top: 0;
	left: 0;
	clip-path: inset(0 100% 0 0);
}
@keyframes black-bg {
	0% {clip-path: inset(0 100% 0 0);}
	100% {clip-path: inset(0 0 0 0);}
}
.black-bg {
	animation: black-bg 1.2s ease-in forwards;
}
#story #story__bb {
	width: 48%;
	height: auto;
	position: absolute;
	bottom: 2%;
	right: 5%;
}


/* 以下タブレット・スマホ */
@media (max-width: 1024px) {
	#story #story__bgs {
		display:block;
		width: 100%;
		height: auto;
		position: relative;
	}
	#story #story__bg1 {
		width: 100%;
		height: auto;
	}
	#story #story__bg2 {
		width: 100%;
		height: auto;
		position: absolute;
		top: 0;
		left: 0;
		z-index: 3;
		pointer-events: none;
		animation: story__bg2 8s ease infinite;
	}
	#story #story__bg3 {
		display: block;
		width: 100%;
		height: auto;
		position: absolute;
		top: 0;
		left: 0;
		z-index: 3;
		pointer-events: none;
		animation: story__bg3 8s ease infinite;
	}
	@keyframes story__bg2 {
		0% {opacity: 0;}
		23% {opacity: 0;}
		33% {opacity: 1;}
		56% {opacity: 1;}
		66% {opacity: 0;}
		100% {opacity: 0;}
	}
	@keyframes story__bg3 {
		0% {opacity: 0;}
		56% {opacity: 0;}
		66% {opacity: 1;}
		90% {opacity: 1;}
		100% {opacity: 0;}
	}
	#story #story__contents {
		width: 100%;
		height: auto;
		padding: 20vw 0 10vw;
		position: static;
		transform: translate3d(0, 0, 0);
		background-color: #2d3329;
	}
	#story #story__contents #story__txt {
		width: 100%;
		height: auto;
		display: block;
		position: relative;
		z-index: 2;
	}
	#story #story__contents #story__txt h2 {
		width: 30%;
		height: auto;
		margin: 0 35% 8vw;
	}
	#story #story__contents #story__txt #txt {
		width: 90%;
		height: auto;
		margin: 0 5%;
		color: #fff;
		font-size: 1.1rem;
		line-height: 2.1rem;
		letter-spacing: 1.2px;
	}
	#story #story__contents #black-bg {
		display: none;
	}
	#story #story__contents #tohome {
		width: 50%;
		height: auto;
		margin: 10vw 25%;
		position: static;
	}
	#story #story__bb {
		width: 100%;
		height: auto;
		padding: 3vw 0;
		text-align: center;
		position: static;
		background-color: #2d3329;
	}
	#story #story__bb img {
		width: 96%;
	}
}
