html{
  height:100%; 
}
body { 
	width:100%; 
	height:100%;
	margin: 0; 
	padding:0;
	font-family: "m-plus-rounded-2c", sans-serif;
	font-weight: 400;
	font-style: normal;
	overflow-x:hidden;
	background-color: #0d233b;
}
body > footer {
	position: sticky;
	top: 100vh;
}	
img {
    image-rendering: -webkit-optimize-contrast;
}
h1, h2, h3, h4, h5, h6 {
	margin: 0;
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
}
br.sponly {display:none;}
br.sponly2 {display:none;}
br.pconly {display:inline;}
.img {
	width: 100%;
	height: auto;
	vertical-align: bottom;
}

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

	}
	to {
		transform: translate3d(0, 0, 0);
		-webkit-transform: translate3d(0, 0, 0);
		background-color: transparent;
	}
}
@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;
}
@keyframes fadeOut {
	from {
	opacity: 1;
	}

	to {
	opacity: 0;
	}
}
.fadeOutFast {
	animation: fadeOut 0.1s forwards;
}



@media (max-width: 1024px) {
	body { 
		margin: 0; 
		padding:0;
		width:100%; 
		height:100vh;
		overflow-x:hidden;
		background-color: #0a1b30;
	}
	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: 3.0s;
    opacity: 0;
    pointer-events: none;
}
/* ローダーをフェードアウト */
.fadeout-loader {
    transition-property: opacity;
    transition-delay: 0s;
    transition-duration: 3.0s;
    opacity: 0;
    pointer-events: none;
}
/* ローディング画面 */
#loader-bg {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000000;
	display: grid;
	place-items: center;
}
#loader {
	width:100%;
	height:100%;
	position: relative;
}
#loader #load1 {
	width:100%;
	height:100%;
	background: url(../img/MSS-loading-1-pc.jpg) no-repeat;
	background-size: cover;
	background-position: center center;
}
#loader #load2 {
	width:100%;
	height:100%;
	background: url(../img/MSS-loading-3-pc.jpg) no-repeat;
	background-size: cover;
	background-position: center center;
	position: absolute;
	top: 0;
	left: 0;
	animation: fadeIn 2.0s cubic-bezier(0.32, 0, 0.67, 0) 0s forwards;
}

@keyframes load2 {
	0% {opacity: 0;}
	13% {opacity: 0;}
	43% {opacity: 1;}
	100% {opacity: 1;}
}
@keyframes load3 {
	0% {opacity: 0;}
	50% {opacity: 0;}
	80% {opacity: 1;}
	100% {opacity: 1;}
}



/* 以下スマホ */
@media (max-width: 1024px) {
	#loader #load1 {
		width:100%;
		height:100%;
		min-height: 100%;
		background: url(../img/MSS-loading-1-sp.jpg) no-repeat;
		background-size: cover;
		background-position: center center;
	}
	#loader #load2 {
		width:100%;
		height:100%;
		min-height: 100%;
		background: url(../img/MSS-loading-3-sp.jpg) no-repeat;
		background-size: cover;
		background-position: center center;
		position: absolute;
		top: 0;
		left: 0;
		animation: fadeIn 2.0s cubic-bezier(0.32, 0, 0.67, 0) 0s forwards;
	}

}


/* ========================================
ヘッダー
========================================== */
#pcheader {
	display: block;
	width:100%;
	height:auto;
	padding:15px 0 20px;
	position:fixed;
	top:0;
	background: -moz-linear-gradient(top, #fff 20%, transparent);
	background: -webkit-linear-gradient(top, #fff 20%, transparent);
	background: linear-gradient(to bottom, #fff 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;
	padding:0 1.5%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	position: relative;
}
#pcheader ul#pcmenu li.menusns {
	width:3%;
	height:auto;
	margin:0;
	padding:0;
	text-align:center;
	align-items: flex-start;
}
#pcheader ul#pcmenu li.menusns img {
	width: 100%;
}
#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%;
	height: auto;
	margin: 0;
	padding: 0;
	font-size:1.5vw;
	line-height:1.4vw;
	text-align: center;
	color: #4f80e3;
	font-weight: bold;
	font-family: "m-plus-rounded-2c", sans-serif;
	font-weight: 800;
	font-style: normal;
}
#pcheader ul#pcmenu li a span.jpn {
	display: block;
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	font-size:0.8vw;
	line-height:0.7vw;
	text-align: center;
	color: #000;
	font-family: "m-plus-rounded-2c", sans-serif;
	font-weight: 400;
	font-style: normal;
	letter-spacing: 1px;
}
#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: #fff;
	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: #000;
	transition: all .6s;
	letter-spacing: 1px;
}  
.global-nav__item a .en {
	width: 100%;
	font-size:2vw;
}
.global-nav__item a .jp {
	width: 100%;
	font-size:1vw;
}
.hamburger__line {
	position: absolute;
	left: 8px;
	width: 50px;
	height: 4px;
	background-color: #4f80e3 !important;
	transition: all .6s;
}  
.hamburger #menu {
	position: absolute;
	top: 44px;
	left: 9px;
	font-weight:bold;
	color:#4f80e3;
	font-size:1.0em;
	font-style: normal;
	font-weight: 400;
} 
.global-nav ul.nav-sns {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	list-style-type: none;
	display: flex;
	justify-content: center;
}
.global-nav ul.nav-sns li {
	width: 4%;
	margin: 0 2%;
}
.global-nav ul.nav-sns li a {
	color:#000;
}

.global-nav ul.nav-sns li img {
	width: 100%;
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}
.global-nav ul.nav-sns li img:hover {
  opacity: 1;
  -webkit-animation: flash 1.5s;
  animation: flash 1.5s;
}
#menu-inu {
	width: 50%;
	margin-left: 49%;
	transform: translateY(-50%);
}

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


/* 以下タブレット・スマホ */
@media (max-width: 1024px) {
	#pcheader {
		display: none;
	}
.global-nav #menu-logo {
	width:90%;
	height:auto;
	margin:1vw 5% 3vw;
	padding:0;
	text-align:center;
	position: relative;
}  
.global-nav #menu-logo img {
	width: 50%;
}
.navigation {
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	min-height: 100%;
	background:none;
	opacity: 1;
  }  
  .hamburger {
	width: 52px; /* クリックしやすいようにちゃんと幅を指定する */
	height: 54px; /* クリックしやすいようにちゃんと高さを指定する */
	  display:block !important;
  }  
  .hamburger__line {
	  position: absolute;
	  left: -2px;
	  width: 40px;
	  height: 4px;
	  transition: all .6s;
	}	
	.hamburger #menu {
	  position: absolute;
	  top: 38px;
	  left: -3px;
	  font-weight:bold;
	  font-size:0.9em;
	}
  
  .hamburger__line--1 {
	top: 8px;
  }
  .hamburger__line--2 {
	top: 21px;
  }
  .hamburger__line--3 {
	top: 34px;
  }
  
  .global-nav {
	position: fixed;
	top: -1600px; /* これで隠れる */
	left: 0;
	width: 100%; /* スマホに収まるくらい */
	height: 100%;
	min-height: 100%;
	padding: 100px 0 10px;
	transition: all .6s;
	z-index: 200;
	overflow-y: scroll; /* メニューが多くなったらスクロールできるように */
  }
  .global-nav__list {
	margin: 10px 0 10px;
  }
  .global-nav__item a {
	display: block;
	padding: 0;
	text-decoration: none;
	transition: all .6s;
  }
  .global-nav__item a .en {
	width: 100%;
	font-size:2em;
	line-height: 2em;
	letter-spacing: 1px;
	color: #4f80e3;
	font-weight: bold;
	font-family: "m-plus-rounded-2c", sans-serif;
	font-weight: 800;
	font-style: normal;
}
.global-nav__item a .jp {
	width: 100%;
	font-size:0.8em;
	color: #000;
	font-family: "m-plus-rounded-2c", sans-serif;
	font-weight: 400;
	font-style: normal;
	transform: translateY(-15px);
}
.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: 600px) {
	.global-nav {
		padding: 90px 0 10px;
	}
	.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: 70%;
	}
	.global-nav__item {
		margin: 5px 0 5px !important;
	}
	.global-nav__list .sub {
		margin: 5px 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: 1.8rem;
		letter-spacing: 2px;
	}
	.global-nav__item a .jp {
		width: 100%;
		font-size:0.8rem;
		transform: translateY(-3px);
	}
	.global-nav ul.nav-sns li {
		width: 13%;
		margin: 2vw 2% 0;
		text-align: center;
	}
	
}






/* ========================================
トップ
========================================== */
#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 h1 {
	width: 28%;
	height: auto;
	position: absolute;
	top: 12%;
	left: 59%;
}
#top #top__link {
	display: block;
	width: 40%;
	height: auto;
	position: absolute;
	top: 77%;
	left: 50%;
}
#top #top__link #top__link-bg {
	width: 100%;
	height: auto;
}
#top #top__link #top__link-arrow {
	width: 100%;
	height: auto;
	position: absolute;
	top: 0;
	left: 0;
	animation: arrow 1.0s infinite;
}
#top #top__link #top__link-bg img ,
#top #top__link #top__link-arrow img {
	width: 100%;
	height: auto;
	aspect-ratio: 988 / 131;
}

@keyframes arrow {
	0% {opacity: 0;}
	50% {opacity: 1;}
	100% {opacity: 0;}
}
#top #top__link:hover {
	animation: flash 1.5s forwards;
}
.top-last-anime {
	animation: fadeIn 0.4s ease 0s forwards;
}

/* 以下タブレット・スマホ */
@media (max-width: 1024px) {
	#top #top__bg img {
		width: 100%;
		height: auto;
		aspect-ratio: 1170 / 2300;
	}
	#top h1 {
		width: 70%;
		height: auto;
		position: absolute;
		top: 10%;
		left: 15%;
	}
	#top #top__link {
		display: block;
		width: 80%;
		height: auto;
		position: absolute;
		top: 80%;
		left: 10%;
	}
	#top #top__link #top__link-bg img ,
	#top #top__link #top__link-arrow img {
		width: 100%;
		height: auto;
		aspect-ratio: 1177 / 437;
	}

}

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

}

/* ========================================
ストーリー
========================================== */
#story-bg1 {
	width: 100%;
	height: 100%;
	min-height: 100%;
	background-size: cover;
	background-position: center center;
	position: fixed;
	top: 0;
	left: 0;
	z-index: -30;
}
#story-bg2 {
	width: 100%;
	height: 100%;
	min-height: 100%;
	background-size: cover;
	background-position: center center;
	position: fixed;
	top: 0;
	left: 0;
	z-index: -28;
	pointer-events: none;
}
#story {
	width: 100%;
	height: auto;
	padding: 20vw 0 50vw;
	position: relative;
	z-index: -29;
}
#story h2 {
	width: 100%;
	height: auto;
	margin: 0 0 10vw;
	text-align: center;
}
#story h2 img {
	width: 12%;
}
#story #story__lead {
	width: 100%;
	height: auto;
	margin: 0 0 10vw;
	text-align: center;
}
#story #story__lead img {
	width: 40%;
	height: auto;
	aspect-ratio: 1289 / 222;
}
#story #story__lead2 {
	width: 46%;
	height: auto;
	margin: 0 27% 3vw;
}
#story #story__lead2 #story__check {
	display: inline-block;
	width: 4%;
	height: auto;
	margin: 0 0.5vw 0 0;
	position: relative;
}
#story #story__lead2 #story__check #checkbox {
	width: 100%;
	height: auto;
}
#story #story__lead2 #story__check #check {
	width: 100%;
	height: auto;
	position: absolute;
	top: 0;
	left: 0;
	clip-path: inset(0 100% 0 0);
}
@keyframes check {
	0% {clip-path: inset(0 100% 0 0);}
	100% {clip-path: inset(0 0 0 0);}
}
.check {
	animation: check 0.6s ease forwards;
}
#story #story__lead2 span {
	font-size: 1.2vw;
	color: #fff;
	font-family: "m-plus-rounded-2c", sans-serif;
	font-weight: 500;
	font-style: normal;
	line-height: 2.5vw;
	letter-spacing: 1.5px;
	font-feature-settings: "palt";
}
#story p {
	width: 46%;
	height: auto;
	margin: 0 27%;
	font-size: 1.1vw;
	color: #000;
	font-weight: bold;
	line-height: 1.8vw;
	letter-spacing: 1.0px;
	font-feature-settings: "palt";
}

/* 以下タブレット・スマホ */
@media (max-width: 1024px) {
	#story {
		width: 100%;
		height: auto;
		padding: 100vw 0 150vw;
		position: relative;
		z-index: -29;
	}
	#story h2 {
		width: 100%;
		height: auto;
		margin: 0 0 80vw;
		text-align: center;
	}
	#story h2 img {
		width: 40%;
	}
	#story #story__lead {
		width: 100%;
		height: auto;
		margin: 0 0 10vw;
		text-align: center;
	}
	#story #story__lead img {
		width: 60%;
		height: auto;
		aspect-ratio: 1143 / 692;
	}
	#story #story__lead2 {
		width: 70%;
		height: auto;
		margin: 0 15% 3vw;
		display: flex;
		justify-content: flex-start;
	}
	#story #story__lead2 #story__check {
		display: inline-block;
		width: 5%;
		height: auto;
		margin: 0 1vw 0 0;
		position: relative;
	}
	#story #story__lead2 span {
		display: block;
		font-size: 1.3rem;
		color: #fff;
		font-family: "m-plus-rounded-2c", sans-serif;
		font-weight: 500;
		font-style: normal;
		line-height: 2rem;
		letter-spacing: 1.5px;
		font-feature-settings: "palt";
	}
	#story p {
		width: 70%;
		height: auto;
		margin: 0 15%;
		font-size: 1.0rem;
		color: #fff;
		line-height: 1.8rem;
		letter-spacing: 1.0px;
		font-feature-settings: "palt";
	}
}

/* 以下タブレット・スマホ */
@media (max-width: 600px) {
	#story {
		width: 100%;
		height: auto;
		padding: 100vw 0 200vw;
		position: relative;
		z-index: -29;
	}
	#story #story__lead {
		width: 100%;
		height: auto;
		margin: 0 0 40vw;
		text-align: center;
	}
	#story #story__lead img {
		width: 90%;
		height: auto;
		aspect-ratio: 1089 / 648;
	}
	#story #story__lead2 {
		width: 94%;
		height: auto;
		margin: 0 3% 10vw;
		display: flex;
		justify-content: flex-start;
	}
	#story #story__lead2 #story__check {
		display: inline-block;
		width: 10%;
		height: auto;
		margin: 0 3vw 0 0;
		position: relative;
	}
	#story #story__lead2 span {
		display: block;
		font-size: 1.3rem;
		color: #fff;
		font-family: "m-plus-rounded-2c", sans-serif;
		font-weight: 500;
		font-style: normal;
		line-height: 2rem;
		letter-spacing: 1.5px;
		font-feature-settings: "palt";
	}
	#story p {
		width: 94%;
		height: auto;
		margin: 0 3%;
		font-size: 1.0rem;
		color: #fff;
		line-height: 1.8rem;
		letter-spacing: 1.0px;
		font-feature-settings: "palt";
	}


}


/* ========================================
相関図
========================================== */
#chart {
	width: 100%;
	height: auto;
	position: relative;
	overflow: hidden;
}
#chart #chart__bg {
	width: 100%;
	height: auto;
}
#chart #chart__bg img {
	width: 100%;
	height: auto;
	aspect-ratio: 1920 / 1080;
}
#chart #chart-sp-wrap {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}
#chart #chart-sp-wrap #chart__inner {
	width: 100%;
	height: 100%;
	position: relative;
}
#chart #chart__pic {
	width: 80%;
	height: auto;
	position: absolute;
	top: 7%;
	left: 10%;
}
#chart #scroll {
	display: none;
}
#chart #chart__title {
	width: 20%;
	height: auto;
	position: absolute;
	top: 13%;
	left: 40%;
}
#chart #chart__item1 {
	width: 3%;
	height: auto;
	position: absolute;
	top: 48%;
	left: 20%;
	animation: chart__item2 1.0s ease infinite;
}
@keyframes chart__item1 {
	0% {opacity: 0;transform: scale(0.7) translate3d(0, 100%, 0);}
	100% {opacity: 1;transform: scale(1.05) translate3d(0, 0, 0);}
}
#chart #chart__item2 {
	width: 3.2%;
	height: auto;
	position: absolute;
	top: 44%;
	left: 48.5%;
	animation: chart__item1 1.0s ease infinite;
}
@keyframes chart__item2 {
	0% {transform: rotate(5deg);transform-origin: center bottom;}
	50% {transform: rotate(-5deg);transform-origin: center bottom;}
	100% {transform: rotate(5deg);transform-origin: center bottom;}
}
#chart #chart__item3 {
	width: 3%;
	height: auto;
	position: absolute;
	top: 48%;
	left: 77%;
	animation: chart__item2 1.0s ease infinite;
}
#chart #chart__item4 {
	width: 1.7%;
	height: auto;
	position: absolute;
	top: 63%;
	left: 60%;
	animation: chart__item4 1.1s ease infinite;
}
@keyframes chart__item4 {
	0% {opacity: 0;transform: scale(0.5);}
	60% {opacity: 1;transform: scale(1);}
	80% {opacity: 1;transform: scale(1) rotate(-9deg);}
	100% {opacity: 1;transform: scale(1) rotate(5deg);}
}

/* 以下タブレット・スマホ */
@media (max-width: 1024px) {
	#chart #chart__bg {
		width: 130%;
		height: auto;
	}
	#chart #chart__bg img {
		width: 100%;
		height: auto;
		aspect-ratio: 1170 / 2300;
	}
	#chart #chart-sp-wrap {
		width: 100%;
		height: 100%;
		position: absolute;
		top: 0;
		left: 0;
		overflow-x: scroll;
	}
	#chart #chart-sp-wrap #chart__inner {
		width: 380%;
		height: 100%;
		position: relative;
	}
	#chart #chart__pic {
		width: 80%;
		height: auto;
		position: absolute;
		top: 12%;
		left: 10%;
	}
	#chart #chart__title {
		width: 14%;
		height: auto;
		position: absolute;
		top: 6%;
		left: 43%;
	}
	#chart #scroll {
		display: block;
		width: 100%;
		height: auto;
		padding: 5vw 0;
		text-align: center;
		position: absolute;
		top: 14%;
	}
	#chart #scroll img {
		width: 15%;
	}
	#chart #chart__item4 {
		width: 1.7%;
		height: auto;
		position: absolute;
		top: 60%;
		left: 60%;
		animation: chart__item4 1.1s ease infinite;
	}


}


/* ========================================
エピソード
========================================== */
#episode {
	width: 100%;
	height: auto;
	padding: 10vw 0;
	position: relative;
	animation: ep-bg 14s ease infinite;
}
@keyframes ep-bg {
	0% {background-color: #1650c5;}
	45% {background-color: #62b5ef;}
	55% {background-color: #62b5ef;}
	100% {background-color: #1650c5;}
}
#episode h2 {
	width: 100%;
	height: auto;
	margin: 0 0 5vw;
	text-align: center;
}
#episode h2 img {
	width: 23%;
}
#episode h3 {
	width: 100%;
	height: auto;
	text-align: center;
	color: #fff;
	font-family: "m-plus-rounded-2c", sans-serif;
	font-weight: 500;
	font-style: normal;
	font-size: 1.2vw;
	letter-spacing: 2px;
}
#episode h3 img {
	width: 13%;
	height: auto;
	margin: 0 0 1vw;
}
#episode .ep-unit {
	width: 34%;
	height: auto;
	margin: 3vw 33% 1.5vw;
	position: relative;
	z-index: 2;
}
#episode .ep-unit .photo {
	width: 100%;
	height: auto;
	position: relative;
	z-index: 2;
}
#episode .ep-unit .photo img {
	width: 100%;
	height: auto;
	aspect-ratio: 966 / 412;
}
#episode .ep-unit .txt {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background-color: #fff;
	box-sizing: border-box;
	padding: 2vw;
	font-size: 1.05vw;
	letter-spacing: 1.2px;
	font-feature-settings: "palt";
}
.ep1-photo , .ep2-photo {
	animation: ep-photo 0.7s ease forwards;
}
@keyframes ep-photo {
	0% {transform: translate3d(0, 0, 0);}
	100% {transform: translate3d(-49%, -2vw, 0);}
}
.ep1-txt , .ep2-txt {
	animation: ep-txt 0.7s ease forwards;
}
@keyframes ep-txt {
	0% {transform: translate3d(0, 0, 0);}
	100% {transform: translate3d(49%, 2vw, 0);}
}
#episode .slide-wrap {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0 0 5vw;
	display: flex;
	align-items: center;
	flex-wrap: nowrap;
	overflow: hidden;
	position: relative;
}
.slide-wrap .top-slide {
	list-style-type: none;
	margin: 0;
	padding: 0;
	display: flex;	
	perspective: 1000;
	backface-visibility:hidden;
	-webkit-backface-visibility:hidden;
}
#slider1 .top-slide {
	animation: loop-slide 150s infinite linear 0s both;
}
#slider2 .top-slide {
	animation: loop-slide-rev 150s infinite linear 0s both;
}
.slide-wrap .top-slide .content {
	width: 25vw;
	height: auto;
	margin: 0;
}
.slide-wrap .top-slide .content img {
	width: 100%;
	height: auto;
	vertical-align: bottom;
	backface-visibility:hidden;
	-webkit-backface-visibility:hidden;
}


/* 以下タブレット・スマホ */
@media (max-width: 1024px) {
	#episode {
		width: 100%;
		height: auto;
		padding: 30vw 0;
		position: relative;
		animation: ep-bg 14s ease infinite;
	}
	#episode h2 {
		width: 100%;
		height: auto;
		margin: 0 0 15vw;
		text-align: center;
	}
	#episode h2 img {
		width: 82%;
	}
	#episode h3 {
		width: 100%;
		height: auto;
		text-align: center;
		color: #fff;
		font-family: "m-plus-rounded-2c", sans-serif;
		font-weight: 500;
		font-style: normal;
		font-size: 1.2rem;
		letter-spacing: 2px;
	}
	#episode h3 img {
		width: 50%;
		height: auto;
		margin: 0 0 3vw;
	}
	#episode .ep-unit {
		width: 100%;
		height: auto;
		margin: 5vw 0 40vw;
		position: relative;
		z-index: 2;
	}
	#episode .ep-unit .photo {
		width: 100%;
		height: auto;
		position: relative;
		z-index: 2;
	}
	#episode .ep-unit .photo img {
		width: 100%;
		height: auto;
		aspect-ratio: 1170 / 680;
	}
	#episode .ep-unit .txt {
		width: 90%;
		height: 50%;
		position: absolute;
		top: 0;
		left: 5%;
		background-color: #fff;
		box-sizing: border-box;
		padding: 5vw 3vw;
		font-size: 1.15rem;
		letter-spacing: 1.2px;
		font-feature-settings: "palt";
	}
	.ep1-photo , .ep2-photo {
		animation: none;
	}
	.ep1-txt , .ep2-txt {
		animation: ep-txt 0.7s ease forwards;
	}
	@keyframes ep-txt {
		0% {transform: translate3d(0, 0, 0);}
		100% {transform: translate3d(0, 200%, 0);}
	}
	#episode .slide-wrap {
		width: 100%;
		height: auto;
		margin: 0;
		padding: 0 0 20vw;
		display: flex;
		align-items: center;
		flex-wrap: nowrap;
		overflow: hidden;
		position: relative;
	}
	#slider1 .top-slide {
		animation: loop-slide 100s infinite linear 0s both;
	}
	#slider2 .top-slide {
		animation: loop-slide-rev 100s infinite linear 0s both;
	}
	.slide-wrap .top-slide .content {
		width: 60vw;
		height: auto;
		margin: 0;
	}
}

/* 以下タブレット・スマホ */
@media (max-width: 600px) {
	#episode .ep-unit {
		width: 100%;
		height: auto;
		margin: 5vw 0 0;
		position: relative;
		z-index: 2;
	}
	#episode .ep-unit .txt {
		width: 90%;
		height: auto;
		margin-bottom: 5vw;
		position: relative;
		top: 0;
		left: 5%;
		background-color: #fff;
		box-sizing: border-box;
		padding: 5vw 3vw;
		font-size: 1.05rem;
		letter-spacing: 1.2px;
		font-feature-settings: "palt";
		opacity: 0;
	}
	@keyframes ep-txt {
		0% {transform: translate3d(0, -100%, 0);opacity: 0;}
		100% {transform: translate3d(0, 0, 0);opacity: 1;}
	}
	.ep1-txt , .ep2-txt {
		animation: ep-txt 0.7s ease forwards;
	}

	.slide-wrap .top-slide .content {
		width: 100vw;
		height: auto;
		margin: 0;
	}


}


/* ========================================
エピソード下
========================================== */
#ep-gazou {
	width: 100%;
	height: auto;
	position: relative;
}
#ep-gazou #ep-gazou1 {
	width: 100%;
	height: auto;
}
#ep-gazou #ep-gazou2 {
	width: 100%;
	height: auto;
	position: absolute;
	top: 0;
	left: 0;
	animation: ep-gazou2 8.0s ease infinite;
}
@keyframes ep-gazou2 {
	0% {opacity: 0;}
	30% {opacity: 0;}
	50% {opacity: 1;}
	80% {opacity: 1;}
	100% {opacity: 0;}
}
#ep-gazou #ep-gazou1 img ,
#ep-gazou #ep-gazou2 img {
	width: 100%;
	height: auto;
	aspect-ratio: 1920 / 1080;
}

/* 以下タブレット・スマホ */
@media (max-width: 1024px) {
	#ep-gazou #ep-gazou1 img ,
	#ep-gazou #ep-gazou2 img {
		width: 100%;
		height: auto;
		aspect-ratio: 1170 / 2300;
	}
}


/* ========================================
キャスト・スタッフ
========================================== */
.cast-bg {
	width: 100%;
	height: 100%;
	min-height: 100%;
	background-size: cover;
	background-position: center center;
	position: fixed;
	top: 0;
	left: 0;
	pointer-events: none;
	opacity: 0;
	z-index: -19;
}
#cast-bg1 {
	z-index: -20;
}
@keyframes cast-bg2 {
	0% {opacity: 0;}
	5% {opacity: 0;}
	20% {opacity: 1;}
	85% {opacity: 1;}
	100% {opacity: 0;}
}
@keyframes cast-bg3 {
	0% {opacity: 0;}
	12% {opacity: 0;}
	40% {opacity: 1;}
	85% {opacity: 1;}
	100% {opacity: 0;}
}
@keyframes cast-bg4 {
	0% {opacity: 0;}
	30% {opacity: 0;}
	60% {opacity: 1;}
	85% {opacity: 1;}
	100% {opacity: 0;}
}
@keyframes cast-bg5 {
	0% {opacity: 0;}
	40% {opacity: 0;}
	80% {opacity: 1;}
	85% {opacity: 1;}
	100% {opacity: 0;}
}
.cast-bg2 {
	animation: cast-bg2 12s ease infinite;
}
.cast-bg3 {
	animation: cast-bg3 12s ease infinite;
}
.cast-bg4 {
	animation: cast-bg4 12s ease infinite;
}
.cast-bg5 {
	animation: cast-bg5 12s ease infinite;
}
#cast {
	width: 100%;
	height: auto;
	padding: 30vw 0 40vw;
}
#cast h2 {
	width: 100%;
	height: auto;
	margin: 0 0 7vw;
	text-align: center;
}
#cast h2 img {
	width: 20%;
	height: auto;
}
#cast #cast-head ,
#cast #staff-head {
	width: 100%;
	height: auto;
	margin: 0 0 2vw;
	text-align: center;
}
#cast #cast-head img {
	width: 7%;
	height: auto;
}
#cast #staff-head img {
	width: 8.5%;
	height: auto;
}
#cast .cast-area {
	width: 46%;
	height: auto;
	margin: 0 27% 10vw;
}
#cast .cast-area .name {
	width: 100%;
	height: auto;
	margin: 0.5vw 0;
	color: #fff;
	font-size: 1.1vw;
	letter-spacing: 1.2px;
	font-feature-settings: "palt";
}
#cast .cast-area .name-space {
	margin: 0.5vw 0 2vw;
}

/* 以下タブレット・スマホ */
@media (max-width: 1024px) {
	.cast-bg2 {
		animation: cast-bg2 12s ease infinite;
	}
	.cast-bg3 {
		animation: cast-bg3 12s ease infinite;
	}
	.cast-bg4 {
		animation: cast-bg4 12s ease infinite;
	}
	.cast-bg5 {
		animation: cast-bg5 12s ease infinite;
	}
	#cast {
		width: 100%;
		height: auto;
		padding: 50vw 0 50vw;
	}
	#cast h2 {
		width: 100%;
		height: auto;
		margin: 0 0 30vw;
		text-align: center;
	}
	#cast h2 img {
		width: 80%;
		height: auto;
	}
	#cast #cast-head ,
	#cast #staff-head {
		width: 100%;
		height: auto;
		margin: 0 0 15vw;
		text-align: center;
	}
	#cast #cast-head img {
		width: 30%;
		height: auto;
	}
	#cast #staff-head img {
		width: 40%;
		height: auto;
	}
	#cast .cast-area {
		width: 86%;
		height: auto;
		margin: 0 7% 30vw;
	}
	#cast .cast-area .name {
		width: 100%;
		height: auto;
		margin: 0.5vw 0;
		color: #fff;
		font-size: 1.0rem;
		letter-spacing: 1.2px;
		font-feature-settings: "palt";
	}
	#cast .cast-area .name-space {
		margin: 2vw 0 10vw;
	}
}

/* ========================================
フッター
========================================== */
#foot-bg {
	width: 100%;
	height: 100%;
	min-height: 100%;
	background-size: cover;
	background-position: center center;
	position: fixed;
	top: 0;
	left: 0;
	pointer-events: none;
	opacity: 0;
	z-index: -15;
}
.foot-fadein {
	animation: fadeIn 4.0s ease forwards;
}
footer {
	width:100%;
	height:44vw;
	padding:0;
	margin:0;
	position: relative;
	overflow: hidden;
}
footer #foot-logo {
	width: 21%;
	height: auto;
	margin: 0;
	position: absolute;
	bottom: 5%;
	left: 6%;
	opacity: 0;
}
footer #foot-logo img {
	width: 100%;
}
footer #foot__link {
	display: block;
	width: 35%;
	height: auto;
	position: absolute;
	bottom: 15%;
	right: 3%;
	opacity: 0;
}
footer #foot__link #foot__link-bg {
	width: 100%;
	height: auto;
}
footer #foot__link #foot__link-arrow {
	width: 100%;
	height: auto;
	position: absolute;
	top: 0;
	left: 0;
	animation: arrow 1.0s infinite;
}
footer #foot__link #foot__link-bg img ,
footer #foot__link #foot__link-arrow img {
	width: 100%;
	height: auto;
	aspect-ratio: 988 / 131;
}
footer #to-home {
	display: block;
	width: 16%;
	height: auto;
	position: absolute;
	bottom: 5%;
	right: 12.5%;
	opacity: 0;
}
footer #foot__link:hover ,
footer #to-home:hover {
	animation: flash 1.5s forwards;
}
.foot-logo ,
.foot__link ,
.to-home {
	animation: fadeIn 1.5s ease forwards;
}


@media (max-width: 1024px) {
	footer {
		width:100%;
		height:110vw;
		padding:0;
		margin:0;
		position: relative;
		overflow: hidden;
	}
	footer #foot-logo {
		width: 100%;
		height: auto;
		margin: 0;
		text-align: center;
		position: absolute;
		top: 40%;
		bottom: auto;
		left: 0;
		opacity: 0;
	}
	footer #foot-logo img {
		width: 50%;
	}
	footer #foot__link {
		display: block;
		width: 50%;
		height: auto;
		position: absolute;
		top: 70%;
		bottom: auto;
		right: 25%;
		opacity: 0;
	}
	footer #foot__link #foot__link-bg img ,
	footer #foot__link #foot__link-arrow img {
		width: 100%;
		height: auto;
		aspect-ratio: 1177 / 437;
	}
	footer #foot__link #foot__link-arrow {
		width: 100%;
		height: auto;
		position: absolute;
		top: 0;
		left: 0;
		animation: arrow 1.0s infinite;
	}
	footer #to-home {
		display: block;
		width: 40%;
		height: auto;
		position: absolute;
		top: 90%;
		bottom: auto;
		right: 30%;
		opacity: 0;
	}

	
}
@media (max-width: 600px) {
	footer {
		width:100%;
		height:196.58vw;
		padding:0;
		margin:0;
		position: relative;
		overflow: hidden;
	}
	footer #foot-logo {
		width: 100%;
		height: auto;
		margin: 0;
		text-align: center;
		position: absolute;
		top: 55%;
		bottom: auto;
		left: 0;
		opacity: 0;
	}
	footer #foot-logo img {
		width: 55%;
	}
	footer #foot__link {
		display: block;
		width: 70%;
		height: auto;
		position: absolute;
		top: 75%;
		bottom: auto;
		right: 15%;
		opacity: 0;
	}
	footer #to-home {
		display: block;
		width: 60%;
		height: auto;
		position: absolute;
		top: 90%;
		bottom: auto;
		right: 20%;
		opacity: 0;
	}

}

