html{
  height:100%; 
}

body { 
	margin: 0; 
	padding:0;
	width:100%; 
	height:100%;
	overflow-x:hidden;
	background-color: #fff;
	font-family: 'Yu Gothic UI','Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3',sans-serif;
}
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;
}
.fadeIn2 {
	animation-name:fadeIn;
	animation-duration:1.5s;
	animation-delay: 1.2s;
	animation-fill-mode:forwards;
	animation-timing-function: ease-out;
}
.fadeInFast {
	animation-name:fadeIn;
	animation-duration:0.2s;
	animation-fill-mode:forwards;
	animation-timing-function: ease-out;
} 
.fadeInZero {
	animation-name:fadeIn;
	animation-duration:0s;
	animation-fill-mode:forwards;
	animation-timing-function: ease-out;
} 
.fadeOutZero {
	animation-name:fadeOut;
	animation-duration:0s;
	animation-fill-mode:forwards;
	animation-timing-function: ease-out;
} 

.fadeInTeaser {
	animation-name:fadeIn;
	animation-duration:1.5s;
	animation-fill-mode:forwards;
	animation-timing-function: ease-out;
}

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

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

	to {
		transform: scale(1);
		opacity: 1;
	}
}
.fadeInZero {
	animation: fadeIn 0s forwards;
}
.fadeOutZero {
	animation: fadeOut 0s forwards;
}


@media (max-width: 1024px) {
	body { 
		margin: 0; 
		padding:0;
		width:100%; 
		height:100vh;
		overflow-x:hidden;
	}
	.pcimg {display: none !important;}
	.spimg {display: inline;}
	br.sponly {display:inline;}
	br.sponly2 {display:none;}
	br.pconly {display:none;}
}
@media (max-width: 610px) {
	br.sponly2 {display:inline;}
}




/* ========================================
ローディング
========================================== */

/* 非表示 */
.is-hidee {
    display: none;
}
/* ローディング画面をフェードアウト */
.fadeout-bg {
    transition-property: opacity;
    transition-delay: 0s;
    transition-duration: 1.0s;
    opacity: 0;
    pointer-events: none;
}
/* ローダーをフェードアウト */
.fadeout-loader {
    transition-property: opacity;
    transition-delay: 0.5s;
    transition-duration: 2.0s;
    opacity: 0;
    pointer-events: none;
}
/* ローディング画面 */
#loader-bg {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000000;
	background-color: #a3aebb;
	display: flex;
	justify-content: center;
	align-items: center;
}
#loader {
	width:20%;
	height:auto;
	margin:0;
	padding:0;
	position:relative;
}
#loader #load1 {
	width: 100%;
	height: auto;
	animation: load1 2.5s ease 0s infinite;
}
@keyframes load1 {
	0% {opacity: 0;}
	20% {opacity: 1;}
	80% {opacity: 1;}
	100% {opacity: 1;}
}

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

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



/* ========================================
ヘッダー
========================================== */
#pcheader {
	display: block;
	width:100%;
	height:auto;
	padding:15px 0 20px;
	position:fixed;
	top:0;
	background: -moz-linear-gradient(top, #41423F 20%, transparent);
	background: -webkit-linear-gradient(top, #41423F 20%, transparent);
	background: linear-gradient(to bottom, #41423F 20%, transparent);
	z-index:1001;
	opacity: 0;
	transform: translate3d(0, -100%, 0);
}
@keyframes pcheader {
	0% {opacity: 0;transform: translate3d(0, -100%, 0);}
	100% {opacity: 1;transform: translate3d(0, 0, 0);}
}
.pcheader {
	animation: pcheader 0.7s ease forwards;
}
#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.8vw;
	line-height:1.8vw;
	text-align: center;
	color: #fff;
	font-weight: bold;
	font-family: "alternate-gothic-atf", sans-serif;
	font-weight: 600;
	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: 0;
	background: url(../img/RM-menu-bg-sp.jpg) no-repeat;
	background-position: center center;
	background-size: cover;
	z-index: 200000;
	overflow-y: scroll;
	display: grid;
	place-content: center;
}
.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: #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: 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%;
	height: auto;
	aspect-ratio: 1068 / 272;
}
.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: 30px 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: #fff;
	font-weight: bold;
	font-family: "alternate-gothic-atf", sans-serif;
	font-weight: 600;
	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 #menu-logo {
		width:60%;
		height:auto;
		margin:0 20% 8vw;
		padding:0;
		text-align:center;
		position: relative;
	}  
	.global-nav #menu-logo img {
		width: 100%;
		height: auto;
		aspect-ratio: 1068 / 272;
	}
	.global-nav__item {
		margin: 15px 0 !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:2.4rem;
		line-height: 2.4rem;
		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-bg0 {
	width: 100%;
	height: 100%;
	min-height: 100%;
	background-size: cover;
	background-position: center center;
	position: fixed;
	top: 0;
	left: 0;
	z-index: -31;
	opacity: 0;
	transition: 1.0s filter;
}
#top-bg-left1 {
	width: 50%;
	height: 100%;
	min-height: 100%;
	background-size: cover;
	background-position: right center;
	position: fixed;
	top: 0;
	right: 50%;
	z-index: -30;
}
#top-bg-right1 {
	width: 50%;
	height: 100%;
	min-height: 100%;
	background-size: cover;
	background-position: left center;
	position: fixed;
	top: 0;
	left: 50%;
	z-index: -30;
}
#top-bg-left2 {
	width: 50%;
	height: 100%;
	min-height: 100%;
	background-size: cover;
	background-position: right center;
	position: fixed;
	top: 0;
	right: 100%;
	z-index: -30;
}
#top-bg-right2 {
	width: 50%;
	height: 100%;
	min-height: 100%;
	background-size: cover;
	background-position: left center;
	position: fixed;
	top: 0;
	left: 100%;
	z-index: -30;
}
@keyframes top-bg-left1 {
	0% {right: 50%;}
	100% {right: 100%;}
}
@keyframes top-bg-left2 {
	0% {right: 100%;}
	100% {right: 50.01%;}
}
@keyframes top-bg-right1 {
	0% {left: 50%;}
	100% {left: 100%;}
}
@keyframes top-bg-right2 {
	0% {left: 100%;}
	100% {left: 50.01%;}
}
.top-bg-left1 {
	animation: top-bg-left1 1.0s linear 1.4s forwards;
}
.top-bg-left2 {
	animation: top-bg-left2 0.8s cubic-bezier(0.5, 0, 0.75, 0) 2.9s forwards , fadeOut 0.1s linear 4.0s forwards;
}
.top-bg-right1 {
	animation: top-bg-right1 1.0s linear 1.4s forwards;
}
.top-bg-right2 {
	animation: top-bg-right2 0.8s cubic-bezier(0.5, 0, 0.75, 0) 2.9s forwards , fadeOut 0.1s linear 4.0s forwards;
}
.top-bg0 {
	animation: fadeIn 0.1s linear 3.9s forwards;
}
#fixed-x {
	width: 4%;
	height: auto;
	position: fixed;
	bottom: 1%;
	right: 1%;
	z-index: 5;
	opacity: 0;
}
#fixed-x a:hover {
	animation: flash 1.5s;
}
#top {
	width:100%;
	height:56.25vw;
	padding:0;
	margin:0;
	position:relative;
	overflow: hidden;
}
#top #top__title {
	width: 38%;
	height: auto;
	position: absolute;
	top: 54%;
	left: 31%;
	opacity: 0;
}
@keyframes top__title {
	0% {opacity: 0;transform: scale(5);}
	20% {opacity: 1;}
	100% {opacity: 1;transform: scale(1);}
}
.top__title {
	animation: fadeIn 1.2s ease 4.2s forwards;
}
#top #top__tate {
	width: 1.0%;
	height: auto;
	position: absolute;
	top: 8%;
	left: 49.5%;
	opacity: 0;
}
.fixed-x ,
.top__tate ,
.top__date {
	animation: fadeIn 1.0s ease 4.7s forwards;
}
#top #top__date {
	width: 40%;
	height: auto;
	position: absolute;
	top: 78%;
	left: 30%;
	opacity: 0;
}
#top__spbg-right ,
#top__spbg-left {
	display: none;
}


/* 以下タブレット・スマホ */
@media (max-width: 1024px) {
	#fixed-x {
		display: none;
	}
	#top-bg0 {
		width: 100%;
		height: 100dvh;
		min-height: 100dvh;
		background-size: cover;
		background-position: center center;
		position: fixed;
		top: 0;
		left: 0;
		z-index: -31;
		opacity: 1 !important;
	}
	#top-bg-left1 ,
	#top-bg-right1 ,
	#top-bg-left2 ,
	#top-bg-right2 {
		display: none;
	}
	#top {
		width:100%;
		height:auto;
		padding:0;
		margin:0;
		position:relative;
		overflow: hidden;
	}
	#top #top__spbg-right {
		display: block;
		width:100%;
		height:auto;
		transform: translate3d(0, 100%, 0);
	}
	#top #top__spbg-left {
		display: block;
		width:100%;
		height:auto;
		position: absolute;
		top: 0;
		left: 0;
		transform: translate3d(0, -100%, 0);
	}
	@keyframes top__spbg-right {
		0% {transform: translate3d(0, 100%, 0);}
		100% {transform: translate3d(0, 0, 0);}
	}
	@keyframes top__spbg-left {
		0% {transform: translate3d(0, -100%, 0);}
		100% {transform: translate3d(0, 0, 0);}
	}
	.top__spbg-right {
		animation: top__spbg-right 0.7s ease-out 1.2s forwards;
	}
	.top__spbg-left {
		animation: top__spbg-left 0.7s ease-out 1.2s forwards;
	}
	#top #top__title {
		width: 70%;
		height: auto;
		position: absolute;
		top: 42%;
		left: 15%;
		opacity: 0;
		z-index: 2;
	}
	.top__title {
		animation: fadeIn 1.2s ease 1.9s forwards;
	}
	#top #top__tate {
		width: 3.0%;
		height: auto;
		position: absolute;
		top: 4%;
		left: 48.5%;
		opacity: 0;
	}
	.fixed-x ,
	.top__tate ,
	.top__date {
		animation: fadeIn 1.0s ease 2.5s forwards;
	}
	#top #top__date {
		width: 80%;
		height: auto;
		position: absolute;
		top: 85%;
		left: 10%;
		opacity: 0;
	}

}

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




/* ========================================
ブリッジ
========================================== */
#bridge {
	width: 100%;
	height: auto;
	padding: 3vw 0;
	overflow: hidden;
}
#bridge #sp-x {
	display: none;
}
#bridge #bridge__mate {
	width: 40%;
	height: auto;
	margin: 0 30% 3vw;
	position: relative;
}
#bridge #bridge__mate #bridge__mate-bg {
	width: 100%;
	height: auto;
}
#bridge #bridge__mate #bridge__mate-bg img {
	width: 100%;
	height: auto;
	aspect-ratio: 1184 / 644;
}
#bridge #bridge__mate #bridge__mate-contents {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}
#bridge #bridge__mate #bridge__mate-contents .head {
	width: 100%;
	height: auto;
	padding: 3vw 0;
	text-align: center;
}
#bridge #bridge__mate #bridge__mate-contents .head img {
	width: 70%;
	height: auto;
	aspect-ratio: 825 / 150;
}
#bridge #bridge__mate #bridge__mate-contents p {
	width: 90%;
	height: auto;
	margin: 0 5%;
	font-size: 1.1vw;
	line-height: 1.8vw;
	letter-spacing: 1.2px;
	text-align: center;
}
#bridge #bridge__mate #bridge__mate-contents #hanko {
	width: 10%;
	height: auto;
	position: absolute;
	bottom: 8%;
	right: 7%;
	opacity: 0;
}
@keyframes hanko {
	0% {opacity: 0;transform: rotate(-60deg) scale(10);}
	100% {opacity: 1;transform: rotate(0deg) scale(1);}
}
.hanko {
	animation: hanko 0.7s cubic-bezier(0.32, 0, 0.67, 0) forwards;
}
#bridge #bridge__star {
	width: 42%;
	height: auto;
	margin: 5vw 29% 3vw;
}
#bridge #bridge__star #star {
	width: 100%;
	height: auto;
	margin: 0 0 2vw;
	text-align: center;
}
#bridge #bridge__star #star img {
	width: 20%;
}
#bridge #bridge__star p {
	width: 100%;
	height: auto;
	color: #fff;
	font-size: 1.1vw;
	line-height: 1.8vw;
	letter-spacing: 1.5px;
}
#bridge #bridge__star .name {
	width: 100%;
	height: auto;
	color: #fff;
	font-size: 1.1vw;
	line-height: 1.8vw;
	letter-spacing: 1.5px;
	text-align: right;
}
#bridge #bridge__star .poster {
	width: 100%;
	height: auto;
	margin: 2vw 0 0;
	text-align: center;
}
#bridge #bridge__star .poster img {
	width: 40%;
	height: auto;
}


/* 以下タブレット・スマホ */
@media (max-width: 1024px) {
	#bridge {
		width: 100%;
		height: auto;
		padding: 10vw 0;
	}
	#bridge #sp-x {
		display: block;
		width: 100%;
		height: auto;
		margin: 0 0 5vw;
		text-align: center;
	}
	#bridge #sp-x img {
		width: 12%;
	}
	#bridge #bridge__mate {
		width: 90%;
		height: auto;
		margin: 0 5% 10vw;
		position: relative;
	}
	#bridge #bridge__mate #bridge__mate-bg {
		width: 100%;
		height: auto;
	}
	#bridge #bridge__mate #bridge__mate-bg img {
		width: 100%;
		height: auto;
		aspect-ratio: 1409 / 2110;
	}
	#bridge #bridge__mate #bridge__mate-contents {
		width: 100%;
		height: 100%;
		position: absolute;
		top: 0;
		left: 0;
	}
	#bridge #bridge__mate #bridge__mate-contents .head {
		width: 100%;
		height: auto;
		padding: 15vw 0;
		text-align: center;
	}
	#bridge #bridge__mate #bridge__mate-contents .head img {
		width: 70%;
		height: auto;
		aspect-ratio: 991 / 467;
	}
	#bridge #bridge__mate #bridge__mate-contents p {
		width: 90%;
		height: auto;
		margin: 0 5%;
		font-size: 1.1rem;
		line-height: 2.0rem;
		letter-spacing: 1.2px;
		text-align: left;
	}
	#bridge #bridge__mate #bridge__mate-contents #hanko {
		width: 20%;
		height: auto;
		position: absolute;
		bottom: 8%;
		right: 7%;
		opacity: 0;
	}
	@keyframes hanko {
		0% {opacity: 0;transform: rotate(-60deg) scale(10);}
		100% {opacity: 1;transform: rotate(0deg) scale(1);}
	}
	.hanko {
		animation: hanko 0.7s cubic-bezier(0.32, 0, 0.67, 0) forwards;
	}
	#bridge #bridge__star {
		width: 90%;
		height: auto;
		margin: 15vw 5% 5vw;
	}
	#bridge #bridge__star #star {
		width: 100%;
		height: auto;
		margin: 0 0 7vw;
		text-align: center;
	}
	#bridge #bridge__star #star img {
		width: 60%;
	}
	#bridge #bridge__star p {
		width: 100%;
		height: auto;
		margin-bottom: 3vw;
		color: #fff;
		font-size: 1.1rem;
		line-height: 1.9rem;
		letter-spacing: 1.5px;
	}
	#bridge #bridge__star .name {
		width: 100%;
		height: auto;
		color: #fff;
		font-size: 1.1rem;
		line-height: 1.9rem;
		letter-spacing: 1.5px;
		text-align: right;
	}
	#bridge #bridge__star .poster {
		width: 100%;
		height: auto;
		margin: 8vw 0 0;
		text-align: center;
	}
	#bridge #bridge__star .poster img {
		width: 70%;
		height: auto;
	}

}


/* ========================================
トレーラー
========================================== */
.trailer {
	width:100%;
	height:auto;
	margin:0;
	padding:6vw 0 10vw;
	overflow: hidden;
	position: relative;
	perspective: 2000px;
}
.trailer h2 {
	width:100%;
	height:auto;
	padding:0;
	margin:0 0 2vw;
	position: relative;
	opacity: 0;
	text-align: center;
}
.trailer h2 img {
	width: 11%;
}
#video-wrap {
	width: 60%;
	height: auto;
	margin: 0 20%;
	padding: 0;
	opacity: 0;
	position: relative;
	z-index: 1;
}
.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: 2vw 20% 0;
	padding: 0%;
	list-style-type: none;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
.movie-btn {
	width: 30%;
	height: auto;
	box-sizing: border-box;
	margin: 0.3vw 1%;
	padding: 3px 0;
	text-align: center;
	background-color: transparent;
	border: 1px solid #fff;
	color: #fff;
	font-size: 1.1vw;
	font-weight: bold;
}
.activee {
	background: #fff;
	border: 1px solid #fff;
	color: #4477ea;
}
.activee i {
	opacity: 1;
}
.movie-btn:hover {
	background: #fff;
	border: 1px solid #fff;
	color: #4477ea;
	cursor: pointer;
	transition-duration: 0.6s;
}


/* 以下スマホ */
@media (max-width: 1024px) {
	.trailer {
		width:100%;
		padding:10vw 0 40vw;
	}
	.trailer h2 {
		width:100%;
		height:auto;
		padding:0;
		margin:0 0 5vw;
		position: relative;
	}	
	.trailer h2 img {
		width: 30%;
	}
	#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;
		flex-wrap: wrap;
	}
	.movie-btn {
		width: 42%;
		margin: 1vw 1%;
		padding: 3px 0;
		font-size: 2vw;
	}

}

@media (max-width: 610px) {
	.trailer {
		width:100%;
		height:auto;
		margin:0;
		padding:10vw 0 20vw;
	}
	.trailer h2 img {
		width: 33%;
	}
	#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;
	}
}



/* ========================================
イントロダクション
========================================== */
#intro-bg {
	width: 100%;
	height: 100%;
	min-height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: -29;
	clip-path: inset(100% 0 0 0);
	pointer-events: none;
	text-align: center;
}
#intro-bg video {
	width: 100%;
	height: auto;
	vertical-align: bottom;
}
#intro {
	width: 100%;
	height: auto;
	padding: 25vw 0 0;
}
#intro h2 {
	width: 100%;
	height: auto;
	margin: 0 0 25vw;
	text-align: center;
}
#intro h2 img {
	width: 20%;
}
#intro #intro1 {
	width: 100%;
	height: auto;
	padding: 10vw 0;
	background-color: rgba(231, 43, 61, 0.4);
	background-image: radial-gradient(rgba(231, 43, 61,0.8) 30%, transparent 31%), radial-gradient(rgba(231, 43, 61,0.8) 30%, transparent 31%);
	background-size: 4px 4px;
	background-position: 0 0, 2px 2px;
}
#intro #intro2 {
	width: 100%;
	height: auto;
	padding: 10vw 0;
	background-color: rgba(0, 85, 178, 0.4);
	background-image: radial-gradient(rgba(0, 85, 178,0.8) 30%, transparent 31%), radial-gradient(rgba(0, 85, 178,0.8) 30%, transparent 31%);
	background-size: 4px 4px;
	background-position: 0 0, 2px 2px;
}
#intro #intro3 {
	width: 100%;
	height: auto;
	padding: 10vw 0;
	background-color: rgba(0, 0, 0, 0.4);
	background-image: radial-gradient(rgba(0, 0, 0,0.8) 30%, transparent 31%), radial-gradient(rgba(0, 0, 0,0.8) 30%, transparent 31%);
	background-size: 4px 4px;
	background-position: 0 0, 2px 2px;
	position: relative;
}
#intro .intro-parts .intro-head {
	width: 40%;
	height: auto;
	margin: 0 30% 5vw;
}
#intro #intro1 .intro-head img {
	width: 100%;
	height: auto;
	aspect-ratio: 1309 / 477;
}
#intro #intro2 .intro-head img {
	width: 100%;
	height: auto;
	aspect-ratio: 1042 / 339;
}
#intro #intro3 .intro-head img {
	width: 100%;
	height: auto;
	aspect-ratio: 1307 / 425;
}
#intro .intro-parts p {
	width: 46%;
	height: auto;
	margin: 0 27%;
	color: #fff;
	font-size: 1.1vw;
	line-height: 1.9vw;
	letter-spacing: 1.5px;
}
#intro #intro3 #intro3-stamp {
	width: 7%;
	height: auto;
	position: absolute;
	bottom: 8%;
	right: 30%;
	opacity: 0;
}


/* 以下タブレット・スマホ */
@media (max-width: 1024px) {
	#intro {
		width: 100%;
		height: auto;
		padding: 100vw 0 0;
	}
	#intro h2 {
		width: 100%;
		height: auto;
		margin: 0 0 100vw;
		text-align: center;
	}
	#intro h2 img {
		width: 60%;
	}
	#intro #intro1 {
		width: 100%;
		height: auto;
		padding: 20vw 0;
		background-color: rgba(231, 43, 61, 0.4);
		background-image: radial-gradient(rgba(231, 43, 61,0.8) 30%, transparent 31%), radial-gradient(rgba(231, 43, 61,0.8) 30%, transparent 31%);
		background-size: 4px 4px;
		background-position: 0 0, 2px 2px;
	}
	#intro #intro2 {
		width: 100%;
		height: auto;
		padding: 20vw 0;
		background-color: rgba(0, 85, 178, 0.4);
		background-image: radial-gradient(rgba(0, 85, 178,0.8) 30%, transparent 31%), radial-gradient(rgba(0, 85, 178,0.8) 30%, transparent 31%);
		background-size: 4px 4px;
		background-position: 0 0, 2px 2px;
	}
	#intro #intro3 {
		width: 100%;
		height: auto;
		padding: 20vw 0 80vw;
		background-color: rgba(0, 0, 0, 0.4);
		background-image: radial-gradient(rgba(0, 0, 0,0.8) 30%, transparent 31%), radial-gradient(rgba(0, 0, 0,0.8) 30%, transparent 31%);
		background-size: 4px 4px;
		background-position: 0 0, 2px 2px;
		position: relative;
	}
	#intro .intro-parts .intro-head {
		width: 90%;
		height: auto;
		margin: 0 5% 15vw;
	}
	#intro #intro1 .intro-head img {
		width: 100%;
		height: auto;
		aspect-ratio: 1128 / 834;
	}
	#intro #intro2 .intro-head img {
		width: 100%;
		height: auto;
		aspect-ratio: 1085 / 802;
	}
	#intro #intro3 .intro-head img {
		width: 100%;
		height: auto;
		aspect-ratio: 1123 / 759;
	}
	#intro .intro-parts p {
		width: 86%;
		height: auto;
		margin: 0 7%;
		color: #fff;
		font-size: 1.1rem;
		line-height: 1.9rem;
		letter-spacing: 1.5px;
	}
	#intro #intro3 #intro3-stamp {
		width: 35%;
		height: auto;
		position: absolute;
		bottom: 8%;
		right: 5%;
		opacity: 0;
	}
}

/* 以下タブレット・スマホ */
@media (max-width: 600px) {
	#intro-bg {
		width: 100%;
		height: 100%;
		min-height: 100%;
		position: fixed;
		top: 0;
		left: 0;
		z-index: -29;
		clip-path: inset(100% 0 0 0);
		pointer-events: none;
		text-align: center;
		overflow: hidden;
	}
	#intro-bg video {
		width: 120%;
		height: auto;
		vertical-align: bottom;
	}
}

/* ========================================
ストーリー
========================================== */
#story-bg0 {
	width: 100%;
	height: 100%;
	min-height: 100%;
	background-size: cover;
	background-position: center center;
	position: fixed;
	top: 0;
	left: 0;
	z-index: -25;
	clip-path: inset(100% 0 0 0);
	pointer-events: none;
}
#story-bg-left {
	width: 50%;
	height: 100%;
	min-height: 100%;
	background-size: cover;
	background-position: right 13%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: -23;
	clip-path: inset(100% 0 0 0);
	pointer-events: none;
	transition: 1.0s transform;
}
#story-bg-right {
	width: 50%;
	height: 100%;
	min-height: 100%;
	background-size: cover;
	background-position: left 13%;
	position: fixed;
	top: 0;
	right: 0;
	z-index: -23;
	clip-path: inset(100% 0 0 0);
	pointer-events: none;
	transition: 1.0s transform;
}
#story-bg-sp {
	display: none;
}
#story-fixed-head {
	width: 100%;
	height: auto;
	text-align: center;
	position: fixed;
	top: 44%;
	left: 0;
	z-index: -22;
	opacity: 0;
	pointer-events: none;
}
#story-fixed-head img {
	width: 10%;
	height: auto;
}
#story {
	width: 100%;
	height: auto;
	padding: 30vw 0 30vw;
	position: relative;
	z-index: -24;
}
#story #story-head {
	width: 100%;
	height: auto;
	margin: 0 0 10vw;
	padding: 0;
	text-align: center;
	opacity: 0;
}
#story #story-head img {
	width: 10%;
	height: auto;
	aspect-ratio: 781 / 348;
}
#story #story-lead {
	width: 100%;
	height: auto;
	margin: 0 0 5vw;
	padding: 0;
	text-align: center;
}
#story #story-lead img {
	width: 30%;
	height: auto;
	aspect-ratio: 1187 / 133;
}
#story p {
	width: 40%;
	height: auto;
	margin: 0 30%;
	padding: 0;
	color: #000;
	font-size: 1.1vw;
	line-height: 1.9vw;
	letter-spacing: 1.5px;
	font-weight: bold;
}

/* 以下タブレット・スマホ */
@media (max-width: 1024px) {
	#story-bg0 {
		background-color: #dde9f0;
	}
	#story-bg-left ,
	#story-bg-right {
		display: none;
	}
	#story-bg-sp {
		display: block;
		width: 100%;
		height: 40%;
		background-size: 100% auto;
		background-position: center top;
		position: fixed;
		bottom: 0%;
		left: 0;
		z-index: -23;
		clip-path: inset(100% 0 0 0);
		pointer-events: none;
	}
	#story-fixed-head {
		width: 100%;
		height: auto;
		text-align: center;
		position: fixed;
		top: 40%;
		left: 0;
		z-index: -22;
		opacity: 0;
		pointer-events: none;
	}
	#story-fixed-head img {
		width: 30%;
		height: auto;
	}
	#story {
		width: 100%;
		height: auto;
		padding: 150vw 0 180vw;
		position: relative;
		z-index: -24;
	}
	#story #story-head {
		width: 100%;
		height: auto;
		margin: 0 0 70vw;
		padding: 0;
		text-align: center;
		opacity: 0;
	}
	#story #story-head img {
		width: 30%;
		height: auto;
		aspect-ratio: 781 / 348;
	}
	#story #story-lead {
		width: 100%;
		height: auto;
		margin: 0 0 20vw;
		padding: 0;
		text-align: center;
	}
	#story #story-lead img {
		width: 80%;
		height: auto;
		aspect-ratio: 1121 / 335;
	}
	#story p {
		width: 90%;
		height: auto;
		margin: 0 5%;
		padding: 0;
		color: #000;
		font-size: 1.1rem;
		line-height: 1.9rem;
		letter-spacing: 1.5px;
	}
}

/* 以下タブレット・スマホ */
@media (max-width: 600px) {
	#story-bg-sp {
		display: block;
		width: 100%;
		height: 40%;
		background-size: 100% auto;
		background-position: center top;
		position: fixed;
		bottom: -5%;
		left: 0;
		z-index: -23;
		clip-path: inset(100% 0 0 0);
		pointer-events: none;
	}


}

/* ========================================
キャラクター
========================================== */
#character {
	width: 100%;
	height: auto;
	padding: 10vw 0;
	background-color: #efeae0;
	overflow: hidden;
}
#character h2 {
	width: 100%;
	height: auto;
	margin: 0 0 3vw;
	padding: 0;
	text-align: center;
}
#character h2 img {
	width: 17%;
}
#character #chara__wrap {
	width: 120%;
	height: auto;
	position: relative;
	left: -10%;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
#character #chara__wrap .chara-block {
	width: 16.66%;
	height: auto;
	margin: 1vw 0;
	position: relative;
}
#character #chara__wrap .chara-block p {
	width: 90%;
	height: auto;
	position: absolute;
	top: 64%;
	left: 5%;
	color: #000;
	font-size: 1vw;
	line-height: 1.5vw;
	letter-spacing: 1.2px;
}


/* 以下タブレット・スマホ */
@media (max-width: 1024px) {
	#character {
		width: 100%;
		height: auto;
		padding: 20vw 0;
		background-color: #efeae0;
		overflow: hidden;
	}
	#character h2 {
		width: 100%;
		height: auto;
		margin: 0 0 10vw;
		padding: 0;
		text-align: center;
	}
	#character h2 img {
		width: 40%;
	}
	#character #chara__wrap {
		width: 100%;
		height: auto;
		position: relative;
		left: 0%;
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
	}
	#character #chara__wrap .blank {
		display: none;
	}
	#character #chara__wrap .chara-block {
		width: 45%;
		height: auto;
		margin: 5vw 1%;
		position: relative;
	}
	#character #chara__wrap .chara-block a {
		display: block;
		pointer-events: none;
	}
	#character #chara__wrap .chara-block p {
		display: block;
		width: 90%;
		height: auto;
		position: absolute;
		top: 65%;
		left: 5%;
		color: #000;
		font-size: 2vw;
		line-height: 3.6vw;
		letter-spacing: 1.5px;
	}

}

/* 以下タブレット・スマホ */
@media (max-width: 600px) {
	#character h2 img {
		width: 50%;
	}
	#character #chara__wrap .chara-block {
		width: 90%;
		height: auto;
		margin: 5vw 1%;
	}
	#character #chara__wrap .chara-block p {
		display: block;
		width: 90%;
		height: auto;
		position: absolute;
		top: 67%;
		left: 5%;
		color: #000;
		font-size: 3.8vw;
		line-height: 6vw;
		letter-spacing: 1.5px;
	}

}

/* ========================================
モーダル
========================================== */
.modal{
    display: none;
    height: 100%;
    position: fixed;
    top: 0;
    width: 100%;
	z-index: 11000;
}
.modal__bg {
	background:#efeae0;
	background-size: cover;
	background-position: center center;
    height: 100%;
    position: absolute;
    width: 100%;
	opacity: 0.8;
}
.prof__content {
    width: 22%;
	height: auto;
    padding: 0;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
	overflow-y: scroll;
	scrollbar-width: none;
}
.prof__content::-webkit-scrollbar {
    width: 0px;
}
.prof__content .prof-bg {
	width: 100%;
	height: auto;
}
.prof__content p {
	width: 90%;
	height: auto;
	margin: 0;
	padding: 0;
	color: #000;
	font-size: 1.0vw;
	line-height: 1.8vw;
	position: absolute;
	top: 68%;
	left: 5%;
}
.batsu {
	width: 5%;
	height: auto;
	position: fixed;
	top: 5%;
	right: 28%;
}
.batsu img {
	width: 100%;
}
.batsu img:hover {
	transform: rotate(360deg);
	transition: all 1.0s ease;
}



/* ========================================
相関図
========================================== */
#chart {
	width: 100%;
	height: auto;
	position: relative;
}
#chart #chart__bg {
	width: 100%;
	height: auto;
}
#chart #chart__bg img {
	width: 100%;
	height: auto;
	aspect-ratio: 1920 / 1080;
}
#chart h2 {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	text-align: center;
	position: absolute;
	top: 8%;
}
#chart h2 img {
	width: 10%;
}
#chart #chart__wrap {
	width: 80%;
	height: auto;
	position: absolute;
	top: 16%;
	left: 10%;
}
#chart #chart__wrap #chart__image {
	width: 100%;
	height: auto;
}
#chart #scroll ,
#chart #finger {
	display: none;
}



/* 以下タブレット・スマホ */
@media (max-width: 1024px) {
	#chart #chart__bg img {
		width: 100%;
		height: auto;
		aspect-ratio: 1170 / 2300;
	}
	#chart h2 {
		width: 100%;
		height: auto;
		margin: 0;
		padding: 0;
		text-align: center;
		position: absolute;
		top: 7%;
	}
	#chart h2 img {
		width: 30%;
	}
	#chart #scroll {
		display: block;
		width: 100%;
		height: auto;
		text-align: center;
		position: absolute;
		top: 15%;
	}
	#chart #scroll img {
		width: 40%;
	}
	#chart #finger {
		display: block;
		width: 10%;
		height: auto;
		text-align: center;
		position: absolute;
		top: 17%;
		left: 70%;
		pointer-events: none;
		z-index: 2;
		transform-origin: center bottom;
		animation: finger 2s infinite;
	}
	#chart #finger img {
		width: 100%;
	}
	@keyframes finger {
		0% {transform: rotate(-15deg);}
		50% {transform: rotate(25deg);}
		100% {transform: rotate(25deg);}
	}

	#chart #chart__wrap {
		width: 100%;
		height: auto;
		position: absolute;
		top: 18%;
		left: 0;
		overflow-x: scroll;
	}
	#chart #chart__wrap #chart__image {
		width: 270%;
		height: auto;
	}

}


/* ========================================
エピソード
========================================== */
#episode {
	width: 100%;
	height: auto;
	position: relative;
	overflow: hidden;
}
#episode h2 {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 10vw 0 5vw;
	text-align: center;
	position: relative;
	background-color: #41423f;
}
#episode h2 img {
	width: 12%;
	height: auto;
}
#episode .ep-unit {
	width: 100%;
	height: auto;
	box-sizing: border-box;
	margin: 0;
	padding: 5vw 15% 5vw;
	position: relative;
	overflow: hidden;
}
#episode .ep-unit .txt {
	width: 90%;
	height: auto;
	box-sizing: border-box;
	padding: 3vw 3vw 3vw 10vw;
	margin-left: 10%;
	color: #fff;
	font-size: 1.1vw;
	line-height: 1.9vw;
	letter-spacing: 1.5px;
	position: relative;
	background-color: rgba(0, 0, 0, 0.7);
	box-shadow: 0 0 0 100vmax #41423f;
}
#episode .ep-unit .head {
	width: 15%;
	height: auto;
	position: absolute;
	top: 50%;
	left: 10%;
	transform: translate3d(0, -50%, 0);
	z-index: 2;
}
#episode #ep-spacer {
	width: 100%;
	height: 10vw;
	background-color: #41423f;
}
#episode .slide-wrap {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
	flex-wrap: nowrap;
	overflow: hidden;
}
.slide-wrap .top-slide {
	list-style-type: none;
	margin: 0;
	padding: 0;
	display: flex;	
	perspective: 1000;
	backface-visibility:hidden;
	-webkit-backface-visibility:hidden;
	position: relative;
	z-index: 2;
}
#slider1 .top-slide {
	animation: loop-slide 100s 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 h2 {
		width: 100%;
		height: auto;
		margin: 0;
		padding: 20vw 0 10vw;
		text-align: center;
		position: relative;
		background-color: #41423f;
	}
	#episode h2 img {
		width: 30%;
		height: auto;
	}
	#episode .ep-unit {
		width: 100%;
		height: auto;
		box-sizing: border-box;
		margin: 0;
		padding: 5vw 5% 5vw;
		position: relative;
		overflow: hidden;
	}
	#episode .ep-unit .txt {
		width: 90%;
		height: auto;
		box-sizing: border-box;
		padding: 3vw 3vw 3vw 10vw;
		margin-left: 10%;
		color: #fff;
		font-size: 1.1rem;
		line-height: 1.9rem;
		letter-spacing: 1.5px;
		position: relative;
		background-color: rgba(0, 0, 0, 0.7);
		box-shadow: 0 0 0 100vmax #41423f;
	}
	#episode .ep-unit .head {
		width: 20%;
		height: auto;
		position: absolute;
		top: 50%;
		left: 2%;
		transform: translate3d(0, -50%, 0);
		z-index: 2;
	}
	.slide-wrap .top-slide .content {
		width: 40vw;
		height: auto;
		margin: 0;
	}
}

/* 以下タブレット・スマホ */
@media (max-width: 600px) {
	#episode h2 {
		width: 100%;
		height: auto;
		margin: 0;
		padding: 20vw 0 10vw;
		text-align: center;
		position: relative;
		background-color: #41423f;
	}
	#episode h2 img {
		width: 40%;
		height: auto;
	}
	#episode .ep-unit {
		width: 100%;
		height: auto;
		box-sizing: border-box;
		margin: 0;
		padding: 40vw 0 10vw;
		position: relative;
		overflow: hidden;
	}
	#episode .ep-unit .txt {
		width: 100%;
		height: auto;
		box-sizing: border-box;
		padding: 30vw 5vw 10vw;
		margin-left: 0;
		color: #fff;
		font-size: 1.1rem;
		line-height: 1.9rem;
		letter-spacing: 1.5px;
		position: relative;
		background-color: rgba(0, 0, 0, 0.7);
		box-shadow: 0 0 0 100vmax #41423f;
	}
	#episode .ep-unit .head {
		width: 60%;
		height: auto;
		position: absolute;
		top: 10%;
		left: 20%;
		transform: translate3d(0, 0, 0);
		z-index: 2;
	}
	#episode #ep-spacer {
		width: 100%;
		height: 50vw;
		background-color: #41423f;
	}

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




}

/* ========================================
コメント
========================================== */
#comment {
	width: 100%;
	height: auto;
	padding: 10vw 0;
	animation: com-bg 8s ease infinite;
}
@keyframes com-bg {
	0% {background-color: rgba(231, 43, 61, 0.8);}
	45% {background-color: rgba(0, 85, 178, 0.8);}
	55% {background-color: rgba(0, 85, 178, 0.8);}
	100% {background-color: rgba(231, 43, 61, 0.8);}
}
#comment h2 {
	width: 100%;
	height: auto;
	margin: 0 0 5vw;
	text-align: center;
}
#comment h2 img {
	width: 13%;
}
#comment .com-unit {
	width: 50%;
	height: auto;
	box-sizing: border-box;
	margin: 0 25% 7vw;
	padding: 3vw 7%;
	background-color: #fff;
	position: relative;
}
#comment .com-unit p {
	width: 100%;
	height: auto;
	margin: 0 0 1vw;
	color: #000;
	font-size: 1.1vw;
	line-height: 1.9vw;
	letter-spacing: 1.5px;
}
#comment .com-unit .name {
	width: 100%;
	height: auto;
	text-align: right;
	font-size: 1.3vw;
	font-weight: bold;
	letter-spacing: 1.5px;
}
#comment .com-unit:nth-child(even) .name {
	color: #e72b3d;
}
#comment .com-unit:nth-child(odd) .name {
	color: #0055b2;
}
#comment .com-unit .stamp {
	width: 8%;
	height: auto;
	position: absolute;
	bottom: 2vw;
	right: 6%;
}

/* 以下タブレット・スマホ */
@media (max-width: 1024px) {
	#comment {
		width: 100%;
		height: auto;
		padding: 20vw 0;
		animation: com-bg 8s ease infinite;
	}
	#comment h2 {
		width: 100%;
		height: auto;
		margin: 0 0 5vw;
		text-align: center;
	}
	#comment h2 img {
		width: 40%;
	}
	#comment .com-unit {
		width: 90%;
		height: auto;
		box-sizing: border-box;
		margin: 0 5% 15vw;
		padding: 10vw 5%;
		background-color: #fff;
		position: relative;
	}
	#comment .com-unit p {
		width: 100%;
		height: auto;
		margin: 0 0 3vw;
		color: #000;
		font-size: 1.1rem;
		line-height: 1.9rem;
		letter-spacing: 1.5px;
	}
	#comment .com-unit .name {
		width: 85%;
		height: auto;
		text-align: right;
		font-size: 1.3rem;
		font-weight: bold;
		letter-spacing: 1.5px;
	}
	#comment .com-unit .stamp {
		width: 12%;
		height: auto;
		position: absolute;
		bottom: 5vw;
		right: 1%;
	}

}

/* 以下タブレット・スマホ */
@media (max-width: 600px) {
	#comment .com-unit .stamp {
		width: 15%;
		height: auto;
		position: absolute;
		bottom: 10vw;
		right: 1%;
	}


}

/* ========================================
スタッフ
========================================== */
#staff {
	width: 100%;
	height: auto;
	padding: 30vw 0;
	background: linear-gradient(
	to bottom,
	transparent 0%,
	transparent 10%,
	#030f1d 30%,
	#030f1d 70%,
	transparent 90%,
	transparent 100%
	);
}
#staff h2 {
	width: 100%;
	height: auto;
	margin: 0 0 5vw;
	padding: 0;
	text-align: center;
}
#staff h2 img {
	width: 17%;
	height: auto;
}
#staff p {
	width: 100%;
	height: auto;
	color: #fff;
	font-size: 1.1vw;
	line-height: 4vw;
	letter-spacing: 1.5px;
	text-align: center;
}

/* 以下タブレット・スマホ */
@media (max-width: 1024px) {
	#staff {
		width: 100%;
		height: auto;
		padding: 80vw 0;
		background: linear-gradient(
		to bottom,
		transparent 0%,
		transparent 10%,
		#030f1d 30%,
		#030f1d 70%,
		transparent 90%,
		transparent 100%
		);
	}
	#staff h2 {
		width: 100%;
		height: auto;
		margin: 0 0 5vw;
		padding: 0;
		text-align: center;
	}
	#staff h2 img {
		width: 40%;
		height: auto;
	}
	#staff p {
		width: 100%;
		height: auto;
		color: #fff;
		font-size: 1.1rem;
		line-height: 4rem;
		letter-spacing: 1.5px;
		text-align: center;
	}
}

/* 以下タブレット・スマホ */
@media (max-width: 1024px) {
	#staff h2 img {
		width: 50%;
		height: auto;
	}
	#staff p {
		width: 100%;
		height: auto;
		color: #fff;
		font-size: 1.1rem;
		line-height: 2.5rem;
		letter-spacing: 1.5px;
		text-align: center;
	}
	#staff p span {
		font-size: 0.8rem;
	}

}

/* ========================================
SNSボタンアリア
========================================== */
.fadeInButton {
	animation-name:fadeIn;
	animation-duration:1.8s;
	animation-fill-mode:forwards;
	animation-delay: 2.7s;
}
#button-area {
	width:100%;
	height:auto;
	margin:0;
	padding:1vw 0 2vw;
}
#button-area ul.social_sq_buttons {
	width:100%;
	height:auto;
	padding:0;
	margin:0;
	list-style-type: none;
	display:flex;
	justify-content: center;
	flex-wrap:wrap;
}
#button-area ul.social_sq_buttons li {
	width:140px;
	height: 20px;
	margin:0 3px;
	padding:0;
	display: flex;
	justify-content: center;
}
#button-area ul.social_sq_buttons li.fb {
	background:#1877F2;
}
#button-area ul.social_sq_buttons li.tw {
	background:#000;
}
#button-area ul.social_sq_buttons li.line {
	background:#06C755;
}
#button-area ul.social_sq_buttons li.checkin {
	background:#10519D;
}
#button-area ul.social_sq_buttons li.filmarks {
	background:#FFE100;
	text-align: center;
}
#button-area ul.social_sq_buttons li.filmarks img {
	width: 60%;
}
#button-area ul.social_sq_buttons li.fb .fb_iframe_widget > span {
  vertical-align: baseline !important;
}




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

	#button-area {
		width:100%;
		height:auto;
		margin:0;
		padding:10px 0 10px;
	}

	#button-area ul.social_sq_buttons {
		width:100%;
		height:auto;
		padding:0;
		margin:0;
		list-style-type: none;
		display:flex;
		justify-content: center;
		flex-wrap:wrap;
	}

	#button-area ul.social_sq_buttons li {
		width:160px;
		height: 20px;
		margin:5px;
		padding:3px 0;
		display: flex;
		justify-content: center;
	}


}



/* ========================================
フッター
========================================== */
footer {
	width:100%;
	height:56.25vw;
	padding:0;
	margin:0;
	overflow: hidden;
	position: relative;
}
footer #foot-logo {
	width: 100%;
	height: auto;
	text-align: center;
	position: absolute;
	top: 48%;
	opacity: 0;
}
footer #foot-logo img {
	width: 30%;
	height: auto;
}
footer #foot-date {
	width: 40%;
	height: auto;
	text-align: center;
	position: absolute;
	top: 83%;
	left: 30%;
	opacity: 0;
}
footer #foot-date img {
	width: 100%;
	height: auto;
	aspect-ratio: 1450 / 169;
}
footer #foot-date a:hover {
	animation: flash 1.5s;
}
footer #button-area {
	position: absolute;
	bottom: 0;
	opacity: 0;
}
.foot-fadein {
	animation: fadeIn 1.5s ease-in forwards;
}


@media (max-width: 1024px) {
	footer {
		width:100%;
		height:100vh;
		padding:0;
		margin:0;
		overflow: hidden;
		position: relative;
	}
	footer #foot-logo {
		width: 100%;
		height: auto;
		text-align: center;
		position: absolute;
		top: 40%;
		opacity: 0;
	}
	footer #foot-logo img {
		width: 60%;
		height: auto;
	}
	footer #foot-date {
		width: 60%;
		height: auto;
		text-align: center;
		position: absolute;
		top: auto;
		bottom: 15%;
		left: 20%;
		opacity: 0;
	}
	footer #foot-date img {
		width: 100%;
		height: auto;
		aspect-ratio: 1108 / 340;
	}

}

@media (max-width: 610px) {
	footer #foot-logo {
		width: 100%;
		height: auto;
		text-align: center;
		position: absolute;
		top: 40%;
		opacity: 0;
	}
	footer #foot-logo img {
		width: 90%;
		height: auto;
	}
	footer #foot-date {
		width: 90%;
		height: auto;
		text-align: center;
		position: absolute;
		top: auto;
		bottom: 15%;
		left: 5%;
		opacity: 0;
	}
	footer #foot-date img {
		width: 100%;
		height: auto;
		aspect-ratio: 1108 / 340;
	}

}
