html{
  height:100%; 
}
body { 
	width:100%; 
	height:100%;
	margin: 0; 
	padding:0;
	overflow-x:hidden;
	background-color: #13240f;
	font-family: 'Yu Gothic UI','Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3',sans-serif;
}
.wf-loading * {
  font-family: sans-serif !important;
}
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;
	}
	br.sponly {display:inline;}
	br.sponly2 {display:none;}
	br.pconly {display:inline;}
}
@media (max-width: 610px) {
	br.sponly2 {display:inline;}
	br.pconly {display:none;}
}




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

/* 非表示 */
.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: 0s;
    transition-duration: 1.0s;
    opacity: 0;
    pointer-events: none;
}
/* ローディング画面 */
#loader-bg {
    background: #13240f;
    width: 100%;
    height: 100%;
    position: fixed;
    inset: 0;
    z-index: 1000000;
	perspective: 500;
}
#loader {
	width: 20%;
	height: auto;
	position: absolute;
	opacity: 0;
	animation: fly 1.5s ease-out both , rotate 1.5s ease-out both;
}
@keyframes fly {
	0% {top:-30%; left: 80%; opacity: 0;}
	20% {opacity: 1;}
	100% {top:40%;left: 40%;opacity: 1;}
}
@keyframes rotate {
	from {
		transform: rotateY(60deg) rotateX(170deg) rotateZ(30deg);
	}
	to {
		transform: rotateY(0deg) rotateX(0deg) rotateZ(0deg);
	}
}
#loader #load1 {
	width:100%;
	height:auto;
}
#loader #load2 {
	width:96%;
	height:auto;
	position: absolute;
	top: 0.6%;
	left: 2%;
	z-index: 2;
	animation: load2 0.8s ease-out 2.4s both ;
}
@keyframes load2 {
	0% {transform: translateY(0);}
	100% {transform: translateY(-35%);}
}
#loader #load3 {
	width:100%;
	height:auto;
	position: absolute;
	inset: 0;
	z-index: 3;
}
#loader #load4 {
	width:100%;
	height:auto;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 4;
	animation: load4 0.8s ease-out 1.7s both;
}
@keyframes load4 {
	0% {transform: rotateX(0deg);transform-origin: center top;opacity: 1;}
	100% {transform: rotateX(-180deg);transform-origin: center top;opacity: 0;}
}
#loader #load5 {
	width:100%;
	height:auto;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	transform: translateY(-100%) rotateX(180deg);
	transform-origin: center bottom;
	z-index: 4;
	animation: load5 0.8s ease-out 1.7s both ;
}
@keyframes load5 {
	0% {transform: translateY(-100%) rotateX(180deg); opacity: 0;}
	100% {transform: translateY(-100%) rotateX(0deg); opacity: 1;}
}



/* 以下スマホ */
@media (max-width: 1024px) {
	#loader {
		width:50%;
		height:auto;
		margin:0;
		padding:0;
	}
	@keyframes fly {
		0% {top:-30%; left: 80%; opacity: 0;}
		20% {opacity: 1;}
		100% {top:40%;left: 25%;opacity: 1;}
	}
}

@media (max-width: 600px) {
	#loader {
		width:60%;
		height:auto;
		margin:0;
		padding:0;
	}
	@keyframes fly {
		0% {top:-30%; left: 80%; opacity: 0;}
		20% {opacity: 1;}
		100% {top:40%;left: 20%;opacity: 1;}
	}

}

/* ========================================
leaf
========================================== */
#leaf {
	width: 100%;
	height: auto;
	position: relative;
	perspective: 800px;
	overflow: hidden;
}
#leaf #leaf-L1 {
	width: 2%;
	height: auto;
	position: absolute;
	top: -10%;
	left: 5%;
	animation: fall-leaf 20s linear 6s infinite, leaf-rotate1 2s ease-in-out infinite alternate;
	z-index: 1;
	pointer-events: none;
}
#leaf #leaf-L2 {
	width: 2%;
	height: auto;
	position: absolute;
	top: -10%;
	left: 0%;
	animation: fall-leaf 22s linear 7s infinite, leaf-rotate2 3s ease-in-out infinite alternate;
	z-index: 1;
	pointer-events: none;
}
#leaf #leaf-L3 {
	width: 1.5%;
	height: auto;
	position: absolute;
	top: -10%;
	left: 5%;
	animation: fall-leaf 18s linear 9s infinite, leaf-rotate1 1.5s ease-in-out infinite alternate;
	z-index: 1;
	pointer-events: none;
}
#leaf #leaf-L4 {
	width: 2.5%;
	height: auto;
	position: absolute;
	top: -10%;
	left: 0%;
	animation: fall-leaf 24s linear 12s infinite, leaf-rotate2 2.2s ease-in-out infinite alternate;
	z-index: 1;
	pointer-events: none;
}
#leaf #leaf-L5 {
	width: 3.2%;
	height: auto;
	position: absolute;
	top: -10%;
	left: 0%;
	animation: fall-leaf 20s linear 14s infinite, leaf-rotate1 2.2s ease-in-out infinite alternate;
	z-index: 1;
	pointer-events: none;
}
#leaf #leaf-L6 {
	width: 2.3%;
	height: auto;
	position: absolute;
	top: -10%;
	left: 0%;
	animation: fall-leaf 24s linear 16s infinite, leaf-rotate2 2.5s ease-in-out infinite alternate;
	z-index: 1;
	pointer-events: none;
}
#leaf #leaf-L7 {
	width: 2.9%;
	height: auto;
	position: absolute;
	top: -10%;
	left: 0%;
	animation: fall-leaf 22s linear 19s infinite, leaf-rotate1 2.8s ease-in-out infinite alternate;
	z-index: 1;
	pointer-events: none;
}
#leaf #leaf-R1 {
	width: 0.8%;
	height: auto;
	position: absolute;
	top: -10%;
	left: 0%;
	animation: fall-leaf 19s linear 9s infinite, leaf-rotate3 2.8s ease-in-out infinite alternate;
	z-index: 1;
	pointer-events: none;
}
#leaf #leaf-R2 {
	width: 1.2%;
	height: auto;
	position: absolute;
	top: -10%;
	left: 0%;
	animation: fall-leaf 20s linear 14s infinite, leaf-rotate4 2.0s ease-in-out infinite alternate;
	z-index: 1;
	pointer-events: none;
}
#leaf #leaf-R3 {
	width: 1%;
	height: auto;
	position: absolute;
	top: -10%;
	left: 0%;
	animation: fall-leaf 22s linear 18s infinite, leaf-rotate4 3.0s ease-in-out infinite alternate;
	z-index: 1;
	pointer-events: none;
}
@keyframes fall-leaf {
	0% {top: -10%;opacity: 1;}
	100% {top: 110%;opacity: 1;}
}

@keyframes leaf-rotate1 {
	from {
		left: 5%;
		transform: rotate(0deg);
	}
	to {
		left: 30%;
		transform: rotate(-80deg) rotateX(180deg);
	}
}
@keyframes leaf-rotate2 {
	from {
		left: 15%;
		transform: rotate(0deg);
	}
	to {
		left: 40%;
		transform: rotate(80deg) rotateX(-160deg);
	}
}
@keyframes leaf-rotate3 {
	from {
		left: 80%;
		transform: rotate(0deg);
	}
	to {
		left: 55%;
		transform: rotate(-80deg) rotateX(180deg);
	}
}
@keyframes leaf-rotate4 {
	from {
		left: 90%;
		transform: rotate(0deg);
	}
	to {
		left: 60%;
		transform: rotate(80deg) rotateX(-160deg);
	}
}


/* 以下スマホ */
@media (max-width: 1024px) {
	@keyframes fall-leaf {
		0% {top: -25%;opacity: 1;}
		100% {top: 125%;opacity: 1;}
	}
	#leaf #leaf-L1 {
		width: 10%;
	}
	#leaf #leaf-L2 {
		width: 9%;
	}
	#leaf #leaf-L3 {
		width: 7%;
	}
	#leaf #leaf-L4 {
		width: 8%;
	}
	#leaf #leaf-L5 {
		width: 11%;
	}
	#leaf #leaf-L6 {
		width: 7.5%;
	}
	#leaf #leaf-L7 {
		width: 9%;
	}
	#leaf #leaf-R1 {
		width: 3%;
	}
	#leaf #leaf-R2 {
		width: 6%;
	}
	#leaf #leaf-R3 {
		width: 5%;
	}

}

/* ========================================
トップ
========================================== */
#top {
	width:100%;
	height:auto;
	position:relative;
	overflow: hidden;
	background-color: #13240f;
}
#top #top__bg {
	width: 100%;
	height: auto;
	opacity: 0;
}
#top #top__bg img {
	width: 100%;
	height: auto;
	aspect-ratio: 1920 / 1080;
}
#top #top__award {
	width: 17%;
	height: auto;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
}
#top #top__award img {
	aspect-ratio: 554 / 971;
}
#top #top__title {
	width: 70%;
	height: auto;
	position: absolute;
	top: 31%;
	left: 15%;
	opacity: 0;
}
#top #top__title img {
	aspect-ratio: 1917 / 475;
}
#top #top__copy {
	width: 11%;
	height: auto;
	position: absolute;
	top: 33%;
	right: 7%;
}
#top #top__copy #top__copy-base {
	width: 100%;
	height: auto;
	opacity: 0;
}
#top #top__copy #top__copy-txt {
	width: 100%;
	height: auto;
	position: absolute;
	inset: 0;
}
#top #top__bb {
	width: 60%;
	height: auto;
	position: absolute;
	bottom: 8%;
	left: 20%;
	opacity: 0;
}
#top #top__bb img {
	aspect-ratio: 1778 / 92;
}
#top #top__date {
	width: 34%;
	height: auto;
	position: absolute;
	bottom: 1%;
	left: 33%;
	opacity: 0;
}
#top #top__logo {
	width: 3.5%;
	height: auto;
	position: absolute;
	bottom: 1%;
	right: 4.2%;
	opacity: 0;
}
#top .sns-x {
	display: none;
}
.top-first-anime {
	animation: fadeIn 1.7s ease-out 0.5s forwards;
}
.top-last-anime {
	animation: fadeIn 1.0s ease 2.5s forwards;
}


/* 以下タブレット・スマホ */
@media (max-width: 1024px) {
	#top #top__bg img {
		width: 100%;
		height: auto;
		aspect-ratio: 1170 / 2300;
	}
	#top #top__award {
		width: 30%;
		height: auto;
		position: absolute;
		top: 0;
		left: 0;
		opacity: 0;
	}
	#top #top__award img {
		aspect-ratio: 872 / 1611;
	}
	#top #top__title {
		width: 94%;
		height: auto;
		position: absolute;
		top: 62%;
		left: 3%;
		opacity: 0;
	}
	#top #top__title img {
		aspect-ratio: 1148 / 282;
	}
	#top #top__copy {
		width: 21%;
		height: auto;
		position: absolute;
		top: 21%;
		right: 13%;
	}
	#top #top__bb {
		width: 90%;
		height: auto;
		position: absolute;
		bottom: auto;
		top: 72.5%;
		left: 5%;
		opacity: 0;
	}
	#top #top__bb img {
		aspect-ratio: 1148 / 148;
	}
	#top #top__date {
		width: 90%;
		height: auto;
		position: absolute;
		bottom: auto;
		top: 84%;
		left: 5%;
		opacity: 0;
	}
	#top #top__logo {
		width: 7%;
		height: auto;
		position: absolute;
		bottom: auto;
		top: 77%;
		right: 2%;
		opacity: 0;
	}
	#top .sns-x {
		display: block;
		width: 18%;
		height: auto;
		position: absolute;
		bottom: 0;
		left: 41%;
		opacity: 0;
	}

}

/* 以下タブレット・スマホ */
@media (max-width: 600px) {
	#top #top__logo {
		width: 7%;
		height: auto;
		position: absolute;
		bottom: auto;
		top: 76%;
		right: 2%;
		opacity: 0;
	}

}


/* ========================================
ブリッジ
========================================== */
#bridge {
	width: 100%;
	height: auto;
	padding: 2vw 0 3vw;
	position: relative;
	background-color: #13240f;
}
#bridge .sns-x {
	display: block;
	width: 5%;
	height: auto;
	margin: 0 47.5% 3vw;
	position: relative;
}
.sns-x .x-base {
	width: 100%;
	height: auto;
}
.sns-x .x-nakami ,
.sns-x .x-futa {
	width: 100%;
	height: auto;
	position: absolute;
	top: 0;
	left: 0;
}
.sns-x:hover .x-nakami {
	transform: translateY(-25%);
	transition: 0.5s;
} 


/* 以下タブレット・スマホ */
@media (max-width: 1024px) {
	#bridge {
		width: 100%;
		height: auto;
		padding: 5vw 0;
		position: relative;
	}
	#bridge .sns-x {
		display: none;
	}
}

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


}


/* ========================================
ニュース
========================================== */
#news {
	width: 100%;
	height: auto;
	padding: 2vw 0 3vw;
	background-color: #13240f;
	position: relative;
}
#news h2 {
	width: 100%;
	height: auto;
	margin: 0 0 2vw;
	text-align: center;
}
#news h2 img {
	width: 15%;
}
#news #news-box {
	width: 60%;
	height: 20vw;
	box-sizing: border-box;
	margin: 0 20%;
	padding: 2vw 10vw;
	border: 2px solid #fff;
	overflow-y: scroll;
	position: relative;
	background-color: #13240f;
	background-image: url(../img/ET-news-bg-pc.jpg);
	background-repeat: no-repeat;
	background-size: 100% auto;
	background-position: bottom center;
}
#news #news-box::-webkit-scrollbar {
	background: #fff;
	width: 1px;
	height: 1px;
	border-radius: 20px;
}
#news #news-box::-webkit-scrollbar-thumb {
	background-color: #000;
	border-radius: 20px;
}
#news #news-box .news-line {
	width: 100%;
	height: auto;
	margin: 1vw 0;
	display: flex;
	justify-content: flex-start;
}
#news #news-box .news-line .date {
	width: 20%;
	height: auto;
	color: #ebd152;
	font-size: 1.2vw;
	line-height: 2vw;
	letter-spacing: 1.2px;
	font-feature-settings: "palt";
}
#news #news-box .news-line .headline {
	width: 80%;
	height: auto;
	color: #fff;
	font-size: 1.2vw;
	line-height: 2vw;
	letter-spacing: 1.2px;
	font-feature-settings: "palt";
}
#news #news-box .news-line .headline a {
	color: #fff;
}

/* 以下タブレット・スマホ */
@media (max-width: 1024px) {
	#news {
		width: 100%;
		height: auto;
		padding: 10vw 0;
		background-color: #13240f;
		position: relative;
	}
	#news h2 {
		width: 100%;
		height: auto;
		margin: 0 0 2vw;
		text-align: center;
	}
	#news h2 img {
		width: 30%;
	}
	#news #news-box {
		width: 80%;
		height: 60vw;
		box-sizing: border-box;
		margin: 0 10%;
		padding: 5vw 5vw;
		border: 2px solid #fff;
		overflow-y: scroll;
		position: relative;
		background-color: #13240f;
		background-image: url(../img/ET-news-bg-sp.jpg);
		background-repeat: no-repeat;
		background-size: 100% auto;
		background-position: bottom center;
	}
	#news #news-box::-webkit-scrollbar {
		background: #fff;
		width: 5px;
		height: 1px;
		border-radius: 20px;
	}
	#news #news-box::-webkit-scrollbar-thumb {
		background-color: #000;
		border-radius: 20px;
	}
	#news #news-box .news-line {
		width: 100%;
		height: auto;
		margin: 5vw 0;
		display: flex;
		justify-content: flex-start;
		flex-wrap: wrap;
	}
	#news #news-box .news-line .date {
		width: 100%;
		height: auto;
		margin-bottom: 1vw;
		color: #ebd152;
		font-size: 1.1rem;
		line-height: 2rem;
		letter-spacing: 1.2px;
		font-feature-settings: "palt";
	}
	#news #news-box .news-line .headline {
		width: 100%;
		height: auto;
		box-sizing: border-box;
		padding-left: 2rem;
		color: #fff;
		font-size: 1.1rem;
		line-height: 2rem;
		letter-spacing: 1.2px;
		font-feature-settings: "palt";
	}
}


@media (max-width: 600px) {
	#news {
		width: 100%;
		height: auto;
		padding: 10vw 0 0;
		background-color: #13240f;
		position: relative;
	}
	#news h2 img {
		width: 50%;
	}
	#news #news-box {
		width: 94%;
		height: 100vw;
		box-sizing: border-box;
		margin: 0 3%;
	}
}
@media (max-width: 375px) {
	#news #news-box {
		width: 94%;
		height: 120vw;
		box-sizing: border-box;
		margin: 0 3%;
	}
}





/* ========================================
モーダル
========================================== */
.movie-modal {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease;
  display: none;
}

.movie-modal.is-active {
  opacity: 1;
  pointer-events: auto;
  display: block;
}
.modal{
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
	z-index: 11000;
	display: none;
	opacity: 0;
}
.modal.is-active {
  display: block;
}
.movie-bg {
	background:#000;
	background-size: cover;
	background-position: center center;
    height: 100%;
    position: absolute;
    width: 100%;
	opacity: 1;
}
.modal__bg {
	background-image: url(../img/ET-news-box-bg-pc.jpg);
	background-size: cover;
	background-position: center center;
    height: 100%;
    position: absolute;
    width: 100%;
}
.modal__content {
    width: 60%;
	height: auto;
	max-height: 90%;
	box-sizing: border-box;
	background-color: #fff;
	border: 2px solid #13240f;
	color: #000;
    padding: 40px 5vw;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
	overflow-y: scroll;
}
.modal__content::-webkit-scrollbar {
	background: #000;
	width: 1px;
	height: 1px;
	border-radius: 20px;
}
.modal__content::-webkit-scrollbar-thumb {
	background-color: #ff9600;
	border-radius: 20px;
}
.modal__content h3 {
	width: 100%;
	height: auto;
	margin: 0 0 20px;
	padding: 0 0 20px;
	border-bottom: 1px solid #13240f;
	text-align: center;
	font-size: 1.7rem;
	color: #ff9600;
	font-weight: bold;
}
.modal__content h4 {
	width: 100%;
	height: auto;
	margin: 40px 0 7px;
	text-align: left;
	font-size: 1.5rem;
	color: #f3981c;
	font-weight: bold;
}
.modal__content .date {
	width: 100%;
	height: auto;
	margin: 20px 0 10px;
	text-align: right;
	font-size: 1rem;
	color: #ff9600;
	font-weight: bold;
}
.modal__content p {
	width: 100%;
	height: auto;
	margin: 0;
	text-align: left;
	font-size: 1.1rem;
	line-height: 2rem;
	color: #000;
	word-break: break-all;
}
.modal__content p a {
	color: #000;
}
.modal__content .news-image1 {
	width: 100%;
	height: auto;
	margin: 1vw 0;
	text-align: center;
}
.modal__content .news-image1 img {
	width: 60%;
}
.modal__content .video-wrap {
	width: 80%;
	height: auto;
	margin: 2vw 10%;
}
.movie__content {
    width: 65%;
	height: auto;
    padding: 40px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
}
.movie__content .video {
	width:100%;
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
	margin:0 0 10px;
	display:block;
} 
.movie__content .video iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.movie__content ul#movie-changer {
	width: 100%;
	height: auto;
	margin: 10px 0;
	padding: 0%;
	list-style-type: none;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
.batsu {
	width: 5%;
	height: auto;
	position: fixed;
	top: 2%;
	right: 2%;
}
.batsu img {
	width: 100%;
	height: auto;
}
.batsu img:hover {
	transform: rotate(360deg);
	transition: all 1.0s ease;
}


/* 以下タブレット・スマホ */
@media (max-width: 1024px) {
	.movie__content {
		width: 100%;
		height: auto;
		padding: 1% 0;
		position: absolute;
		left: 50%;
		top: 50%;
		transform: translate(-50%,-50%);
	}
	.modal__content {
		width: 98%;
		height: 80%;
		box-sizing: border-box;
		color: #fff;
		padding: 40px 5vw;
		position: absolute;
		left: 50%;
		top: 50%;
		transform: translate(-50%,-50%);
		overflow-y: scroll;
		-ms-overflow-style: none;
		scrollbar-width: none;
	}
	.modal__content h3 {
		width: 100%;
		height: auto;
		margin: 0 0 20px;
		text-align: center;
		font-size: 1.4rem;
		color: #f3981c;
	}
	.modal__content h4 {
		width: 100%;
		height: auto;
		margin: 60px 0 15px;
		text-align: left;
		font-size: 1.4rem;
		color: #f3981c;
	}
	.batsu {
		width: 10%;
		height: auto;
		position: fixed;
		top: 3%;
		right: 3%;
	}
}

/* 以下タブレット・スマホ */
@media (max-width: 600px) {
	.modal__content h3 {
		width: 100%;
		height: auto;
		margin: 0 0 20px;
		text-align: center;
		font-size: 1.3rem;
		color: #f3981c;
	}
	.modal__content h4 {
		width: 100%;
		height: auto;
		margin: 60px 0 15px;
		text-align: left;
		font-size: 1.2rem;
		color: #f3981c;
	}
	.modal__content .news-image1 {
		width: 100%;
		height: auto;
		margin: 5vw 0;
		text-align: center;
	}
	.modal__content .news-image1 img {
		width: 80%;
	}
	.modal__content .video-wrap {
		width: 100%;
		height: auto;
		margin: 5vw 0;
	}


}





/* ========================================
トレーラー
========================================== */
.trailer {
	width:100%;
	height:auto;
	margin:0;
	padding:8vw 0 7vw;
	overflow: hidden;
	position: relative;
	z-index: 3;
}
.trailer h2 {
	width:100%;
	height:auto;
	padding:0;
	margin:0 0 1vw;
	text-align: center;
	position: relative;
	z-index: 2;
	pointer-events: none;
}
.trailer h2 img {
	width: 9%;
}
#video-wrap {
	width: 60%;
	height: auto;
	box-sizing: border-box;
	margin: 0 20%;
	padding: 0;
	position: relative;
	z-index: 2;
}
.video {
	width:100%;
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
	margin:0;
	display:block;
} 
.video iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.trailer #trailer__bg1 {
	width: 35%;
	height: auto;
	position: absolute;
	top: 10%;
	left: 0;
	z-index: 3;
}
.trailer #trailer__bg1 img {
	aspect-ratio: 613 / 708;
}
.trailer #trailer__bg2 {
	width: 15%;
	height: auto;
	position: absolute;
	bottom: 0%;
	right: 0;
	z-index: 3;
}
.trailer #trailer__bg2 img {
	aspect-ratio: 351 / 558;
}
.trailer ul#movie-changer {
	width: 60%;
	height: auto;
	margin: 10px 20%;
	padding: 0%;
	list-style-type: none;
	display: flex;
	justify-content: center;
}
.movie-btn {
	width: 30%;
	height: auto;
	margin: 0 1%;
	padding: 3px 0;
	text-align: center;
	background-color: transparent;
	border: 1px solid #fe0505;
	color: #fe0505;
	font-size: 1.1vw;
	font-weight: bold;
}
.movie-btn i {
	opacity: 0;
}
.activee {
	background: #fe0505;
	border: 1px solid #fe0505;
	color: #fff;
}
.activee i {
	opacity: 1;
}
.movie-btn:hover {
	background: #fe0505;
	border: 1px solid #fe0505;
	color: #fff;
	cursor: pointer;
	transition-duration: 0.6s;
}
.trailer #trailer__logo {
	width: 35%;
	height: auto;
	position: absolute;
	bottom: 2vw;
	right: 10%;
	pointer-events: none;
}



/* 以下スマホ */
@media (max-width: 1024px) {
	.trailer {
		width:100%;
		padding:60vw 0 50vw;
	}
	.trailer h2 {
		width:90%;
		height:auto;
		padding:0;
		margin:0 5%;
		position: relative;
		text-align: center;
	}
	.trailer h2 img {
		width: 20%;
	}
	.trailer #trailer__bg1 {
		width: 55%;
		height: auto;
		position: absolute;
		top: 10%;
		left: 0;
	}
	.trailer #trailer__bg1 img {
		aspect-ratio: 613 / 708;
	}
	.trailer #trailer__bg2 {
		width: 30%;
		height: auto;
		position: absolute;
		bottom: 0%;
		right: 0;
	}
	.trailer #trailer__bg2 img {
		aspect-ratio: 351 / 558;
	}
	#video-wrap {
		width: 90%;
		height: auto;
		margin: 0 5%;
		padding: 0;
	}
	.video {
		width:100%;
		position: relative;
		padding-bottom: 56.25%;
		height: 0;
		overflow: hidden;
		margin:0;
		display:block;
	}
	.trailer ul#movie-changer {
		width: 100%;
		height: auto;
		margin: 10px 0;
		padding: 0%;
		list-style-type: none;
		display: flex;
		justify-content: center;
	}
	.movie-btn {
		width: 30%;
		font-size: 2vw;
	}
	.trailer #trailer__logo {
		width: 40%;
		height: auto;
		position: absolute;
		bottom: 4vw;
		right: 10%;
		pointer-events: none;
	}

}

@media (max-width: 600px) {
	.trailer {
		width:100%;
		height:auto;
		margin:0;
		padding:40vw 0 50vw;
	}
	.trailer h2 {
		width:100%;
		height:auto;
		padding:0;
		margin:0;
		position: relative;
	}
	.trailer h2 img {
		width: 30%;
	}
	.trailer #trailer__bg1 {
		width: 50%;
		height: auto;
		position: absolute;
		top: 3%;
		left: 0;
	}
	.trailer #trailer__bg1 img {
		aspect-ratio: 613 / 708;
	}
	.trailer #trailer__bg2 {
		width: 30%;
		height: auto;
		position: absolute;
		bottom: 0%;
		right: 0;
	}
	.trailer #trailer__bg2 img {
		aspect-ratio: 351 / 558;
	}

	#video-wrap {
		width: 100%;
		height: auto;
		margin: 0;
		padding: 0;
	}
	.video {
		width:100%;
		position: relative;
		padding-bottom: 56.25%;
		height: 0;
		overflow: hidden;
		margin:0;
		display:block;
	}
	.movie-btn {
		width: 45%;
		font-size: 3vw;
	}
	.trailer #trailer__logo {
		width: 50%;
		height: auto;
		position: absolute;
		bottom: 12vw;
		right: 3%;
		pointer-events: none;
	}

}


/* ========================================
あらすじ
========================================== */
#story {
	width: 100%;
	height: auto;
	padding: 5vw 0;
	position: relative;
}
#story #letter {
	width: 50%;
	height: auto;
	margin: 0 25%;
	position: relative;
	perspective: 1200px;
	transform: translateY(-50%);
}
#story #letter #letter__all {
	width: 100%;
	height: auto;
	opacity: 0;
}
#story #letter #letter__all img {
	aspect-ratio: 899 / 1048;
}
#story #letter #letter__no1 {
	width: 100%;
	height: auto;
	position: absolute;
	bottom: 0;
	left: 0;
}
#story #letter #letter__no1 img {
	aspect-ratio: 899 / 524;
}
#story #letter #letter__no3 {
	width: 100%;
	height: auto;
	position: absolute;
	top: 0;
	left: 0;
	transform: rotateX(-180deg);
	transform-origin: center bottom;
	opacity: 0;
}
#story #letter #letter__no3 img {
	aspect-ratio: 899 / 524;
}
@keyframes letter {
	0% {transform: translateY(-50%);}
	100% {transform: translateY(0%);}
}
.letter {
	animation: letter 1.0s ease-out 0.8s forwards;
}
@keyframes letter__no2 {
	0% {transform: rotateY(-180deg);transform-origin: left center;opacity: 0;}
	20% {opacity: 1;}
	100% {transform: rotateY(0deg);transform-origin: left center;opacity: 1;}
}
.letter__no2 {
	animation: letter__no2 1.0s ease-out forwards;
}
@keyframes letter__no3 {
	0% {transform: rotateX(-180deg);transform-origin: center bottom;opacity: 0;}
	20% {opacity: 1;}
	100% {transform: rotateX(0deg);transform-origin: center bottom;opacity: 1;}
}
.letter__no3 {
	animation: letter__no3 1.0s ease-out 0.8s forwards;
}
.letter__all {
	animation: fadeIn 0.1s ease 1.8s forwards;
}
#story #story__head-sp {
	display: none;
}
#story #letter #letter__txt-img {
	width: 100%;
	height: auto;
	text-align: center;
	position: absolute;
	top: 14.0%;
	opacity: 0;
}
#story #letter #letter__txt-img img {
	width: 88%;
	height: auto;
	aspect-ratio: 845 / 750;
}
.letter__txt-img {
	animation: fadeIn 1.2s ease 1.8s forwards;
}
#story #letter #letter-txt {
	width: 100%;
	height: auto;
	box-sizing: border-box;
	padding: 13vw 3vw;
	position: absolute;
	inset: 0;
	opacity: 0;
}
.letter-txt {
	animation: fadeIn 1.2s ease 1.8s forwards;
}
#story #letter #letter-txt h2 {
	width: 100%;
	height: auto;
	margin: 0 0 5vw;
	text-align: center;
}
#story #letter #letter-txt h2 img {
	width: 35%;
	height: auto;
}
#story #letter #letter-txt p {
	width: 100%;
	height: auto;
	margin: 0;
	color: #000;
	font-size: 1.1vw;
	font-family: "kinuta-shin-enpitsu-stdn", sans-serif;
	font-weight: 700;
	font-style: normal;
	line-height: 2.2vw;
	letter-spacing: 2px;
	font-feature-settings: "palt";
}

/* 以下タブレット・スマホ */
@media (max-width: 1024px) {
	#story {
		width: 100%;
		height: auto;
		padding: 20vw 0;
		position: relative;
	}
	#story #letter {
		width: 80%;
		height: auto;
		margin: 0 10%;
		position: relative;
		perspective: 1200px;
		transform: translateY(-50%);
	}
	#story #letter #letter__all {
		width: 100%;
		height: auto;
		margin: 0;
		opacity: 0;
	}
	#story #letter #letter-txt {
		width: 100%;
		height: auto;
		box-sizing: border-box;
		padding: 30vw 5vw;
		position: absolute;
		inset: 0;
		opacity: 0;
	}
	.letter-txt {
		animation: fadeIn 1.2s ease 1.8s forwards;
	}
	#story #letter #letter-txt h2 {
		width: 100%;
		height: auto;
		margin: 0 0 5vw;
		text-align: center;
	}
	#story #letter #letter-txt h2 img {
		width: 50%;
		height: auto;
	}
	#story #letter #letter__txt-img {
		width: 100%;
		height: auto;
		text-align: center;
		position: absolute;
		top: 12%;
		opacity: 0;
	}
	#story #letter #letter__txt-img img {
		width: 90%;
		height: auto;
	}
	#story #letter #letter-txt p {
		width: 100%;
		height: auto;
		margin: 0;
		color: #000;
		font-size: 1.2rem;
		line-height: 2.4rem;
		letter-spacing: 2px;
		font-feature-settings: "palt";
	}
}

/* 以下タブレット・スマホ */
@media (max-width: 600px) {
	#story #story__head-sp {
		display: block;
		width: 100%;
		height: auto;
		margin: 0 0 10vw;
		text-align: center;
	}
	#story #story__head-sp img {
		width: 50%;
	}
	#story #letter #letter-txt h2 {
		display: none;
	}
	#story #letter {
		width: 100%;
		height: auto;
		margin: 0;
		position: relative;
		perspective: 1200px;
		transform: translateY(-50%);
	}
	#story #letter #letter__all {
		width: 100%;
		height: auto;
		opacity: 0;
	}
	#story #letter #letter__all img {
		aspect-ratio: 1117 / 1812;
	}
	#story #letter #letter__no1 img {
		aspect-ratio: 1117 / 906;
	}
	#story #letter #letter__no3 img {
		aspect-ratio: 1117 / 906;
	}

	#story #letter #letter__txt-img {
		width: 100%;
		height: auto;
		text-align: center;
		position: absolute;
		top: 5%;
		opacity: 0;
	}
	#story #letter #letter__txt-img img {
		width: 90%;
		height: auto;
		aspect-ratio: 1037 / 1615;
	}
	#story #letter #letter-txt {
		width: 100%;
		height: auto;
		box-sizing: border-box;
		padding: 10vw 5vw;
		position: absolute;
		inset: 0;
		opacity: 0;
	}
	#story #letter #letter-txt p {
		width: 100%;
		height: auto;
		margin: 0;
		color: #000;
		font-size: 1.1rem;
		font-weight: 700;
		line-height: 1.7rem;
		letter-spacing: 1px;
		font-feature-settings: "palt";
	}
}

/* 以下タブレット・スマホ */
@media (max-width: 375px) {
	#story #letter #letter-txt p {
		width: 100%;
		height: auto;
		margin: 0;
		color: #000;
		font-size: 1rem;
		line-height: 1.6rem;
		letter-spacing: 1px;
		font-feature-settings: "palt";
	}
}

/* ========================================
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;
}
#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.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:auto;
	padding:5vw 0 0;
	margin:0;
	position: relative;
	overflow: hidden;
}
footer #footer__logo {
	width: 100%;
	height: auto;
	margin: 0 0 2vw;
	text-align: center;
}
footer #footer__logo img {
	width: 30%;
	height: auto;
}
footer #footer__bb {
	width: 100%;
	height: auto;
	margin: 0 0 3vw;
	text-align: center;
}
footer #footer__bb img {
	width: 45%;
	height: auto;
}

@media (max-width: 1024px) {
	footer {
		width:100%;
		height:auto;
		padding:20vw 0 0;
		margin:0;
		position: relative;
		overflow: hidden;
	}
	footer #footer__logo {
		width: 100%;
		height: auto;
		margin: 0 0 5vw;
		text-align: center;
	}
	footer #footer__logo img {
		width: 70%;
		height: auto;
	}
	footer #footer__bb {
		width: 100%;
		height: auto;
		margin: 0 0 5vw;
		text-align: center;
	}
	footer #footer__bb img {
		width: 98%;
		height: auto;
	}

}

@media (max-width: 600px) {
}

@media (max-width: 375px) {

}
