html{
  height:100%; 
}

body { 
	margin: 0; 
	padding:0;
	font-family: 'Yu Gothic UI','TsukuBRdGothic-Regular','Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3',sans-serif;
	width:100%; 
	height:100%;
	overflow-x:hidden;
	background-color: #000;
}
body > footer {
	position: sticky;
	top: 100vh;
}	
img {
    image-rendering: -webkit-optimize-contrast;
}
br.clear {
	clear:both;
}
br.sponly {display:none;}
br.sponly2 {display:none;}
br.pconly {display:inline;}
.img {
	width: 100%;
	height: auto;
	vertical-align: bottom;
}

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

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

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

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

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



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




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

/* 非表示 */
.is-hidee {
    display: none;
}
/* ローディング画面をフェードアウト */
.fadeout-bg {
    transition-property: opacity;
    transition-delay: 0s;
    transition-duration: 1s;
    opacity: 0;
    pointer-events: none;
}
/* ローダーをフェードアウト */
.fadeout-loader {
    transition-property: opacity;
    transition-delay: 0.2s;
    transition-duration: 1.0s;
    opacity: 0;
    pointer-events: none;
}
/* ローディング画面 */
#loader-bg {
    background: #FCF9F6;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000000;
	display: grid;
    place-items: center;
}
#loader {
	width:20%;
	height:auto;
	margin:0;
	padding:0;
	position:relative;
}
#loader #load1 {
	width:100%;
	height:auto;
}



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

}


/* ========================================
ヘッダー
========================================== */
.navigation {
	display: block;
	position: absolute;
	left: 5px;
	top: 0px ;
	width: 100%;
	height: 100%;
}  
.global-nav {
	position: fixed;
	left: -30%;
	width: 30%;
	height: 100%;
	min-height: 100%;
	padding-top: 0px;
	background-color: #fefefe;
	background-image: url(../img/BD-menu-logo.png);
	background-repeat: no-repeat;
	background-size: 40%;
	background-position: left center;
	z-index: 200000;
	display: flex;
	align-items: center;
	transition: all .6s;
}
.global-nav .global-nav-inner {
	width: 100%;
	height: auto;
	position: relative;
}
.hamburger {
	position: fixed;
	left: 5px;
	top: 1px;
	width: 65px;
	height: 65px;
	cursor: pointer;
	z-index: 300000;
	opacity:0;
}  

.global-nav__list {
	margin: 0;
	padding: 0;
	list-style: none;
}
.global-nav__item {
	text-align: center;
	padding: 0.5vw 0px;
}
.global-nav__item a {
	display: block;
	padding: 0;
	text-decoration: none;	
	color: #fff;
	transition: all .6s;
	letter-spacing: 1px;
}  
.global-nav__item a .en {
	width: 100%;
	font-size:1.8vw;
	color: #000;
	font-family: "permanent-marker", sans-serif;
	font-weight: 400;
	font-style: normal;
}
.hamburger__line {
	position: absolute;
	left: 8px;
	width: 60px;
	height: 4px;
	background-color: #F3A9C9 !important;
	transition: all .6s;
}  
.hamburger #menu {
	position: absolute;
	top: 60px;
	left: 10px;
	font-weight:bold;
	color:#F3A9C9;
	font-size:1.1em;
	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: 10%;
	margin: 0 2%;
	text-align: center;
	font-size: 3rem;
}
.global-nav ul.nav-sns li a {
	color:#e25289;
}
.global-nav ul.nav-sns li img {
	width: 100%;
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}
.global-nav ul.nav-sns li img:hover {
  opacity: 1;
  -webkit-animation: flash 1.5s;
  animation: flash 1.5s;
}

  .hamburger__line--1 {
	top: 12px;
  }
  .hamburger__line--2 {
	top: 32px;
  }
  .hamburger__line--3 {
	top: 52px;
  }
  .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 {
	left: 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) {
.navigation {
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	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: 0 0 10px;
	background-color: #fff;
	transition: all .6s;
	z-index: 200;
	overflow-y: scroll; /* メニューが多くなったらスクロールできるように */
  }
  .global-nav__list {
	margin: 10px 0 10px;
  }
  .global-nav__item {
	margin: 20px 0;
  }
  .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.0rem;
	line-height: 2.0rem;
	letter-spacing: 1.5px;
	color: #000;
	font-family: "permanent-marker", sans-serif;
	font-weight: 400;
	font-style: normal;
}
.global-nav ul.nav-sns li {
	width: 6%;
	margin: 0 2%;
	text-align: center;
	font-size: 3rem;
}

  
	/* 表示された時用の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:40%;
		height:auto;
		margin:0px 30% 1vw;
		padding:0 0 5vw;
		text-align:center;
		position: relative;
	}  
	.global-nav__item {
		margin: 10px 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.0rem;
		line-height: 3rem;
		letter-spacing: 1.2px;
	}
	.global-nav ul.nav-sns li {
		width: 12%;
		margin: 0 2%;
		text-align: center;
		font-size: 2.5rem;
	}

	
	
}




/* ========================================
トップ
========================================== */
#top {
	width:100%;
	height:auto;
	padding:0;
	margin:0;
	position:relative;
	overflow: hidden;
	background-color: #fcf9f6;
}
#top #top__bg {
	width: 100%;
	height: auto;
}
#top #top__bg img {
	width: 100%;
	height: auto;
	aspect-ratio: 1920 / 1080;
    mask-image: linear-gradient(to right, #fff 30%, transparent, transparent);
	-webkit-mask-image: linear-gradient(to right, #fff 30%, transparent, transparent);
	mask-size: 500% 500%;
	-webkit-mask-size: 500% 500%;
	mask-position: 100% 50%;
	-webkit-mask-position: 100% 50%;
}
@keyframes mask-animation {
	0% {
		mask-position: 100% 50%; 
		-webkit-mask-position: 100% 50%;
	}
	100% {
		mask-position: 0% 50%; 
		-webkit-mask-position: 0% 50%; 
	}
}
.mask-animation {
	animation: mask-animation 3.0s ease-in 1.2s forwards;
}
#top #top__award {
	width: 40%;
	height: auto;
	position: absolute;
	top: 2%;
	left: 1%;
	z-index: 2;
	opacity: 0;
}
#top #top__enlogo {
	width: auto;
	height: 100%;
	position: absolute;
	top: 0;
	left: 50%;
	z-index: 2;
	transform: translate3d(-44%, 0, 0);
}
#top #top__enlogo img {
	width: auto;
	height: 100%;
}
#top #top__bird {
	width: 80%;
	height: auto;
	position: absolute;
	top: -100%;
	left: -80%;
}
@keyframes top__bird {
	0% {top: -100%;left: -80%;}
	100% {top: 60%;left: 110%;}
}
.top__bird {
	animation: top__bird 2.9s ease-in 1.0s forwards;
}
#top #top__tate {
	width: 5.6%;
	height: auto;
	position: absolute;
	top: 12%;
	left: 33%;
}
#top #top__jpbb {
	width: 33%;
	height: auto;
	position: absolute;
	bottom: 6%;
	left: 4.5%;
}
#top #top__enbb {
	width: 25%;
	height: auto;
	position: absolute;
	top: 33%;
	left: 39%;
	z-index: 3;
}
#top h1 {
	width: 15%;
	height: auto;
	position: absolute;
	top: 47%;
	right: 15%;
	z-index: 3;
}
#top #top__yoko {
	width: 38%;
	height: auto;
	position: absolute;
	top: 74%;
	right: 4%;
	z-index: 3;
}
#top #top__sns {
	width: 40%;
	height: auto;
	position: absolute;
	bottom: 6%;
	right: 2.1%;
	z-index: 3;
	display: flex;
	justify-content: center;
}
#top #top__sns a {
	display: block;
	width: 12%;
	height: auto;
	margin: 0 2%;
}
#top #top__sns a:hover {
	animation: flash 1.5s;
}
#top .top-last {
	opacity: 0;
}
.top-last-anime {
	animation: fadeIn 1.2s ease 4.0s forwards;
}



/* 以下タブレット・スマホ */
@media (max-width: 1024px) {
	#top #top__bg img {
		width: 100%;
		height: auto;
		aspect-ratio: 1170 / 2300;
		mask-image: linear-gradient(to bottom, #fff 40%, transparent, transparent);
		-webkit-mask-image: linear-gradient(to bottom, #fff 40%, transparent, transparent);
		mask-size: 100% 400%;
		-webkit-mask-size: 100% 400%;
		mask-position: 0% -50%;
		-webkit-mask-position: 0% -50%;
	}
	@keyframes mask-animation {
		0% {
			mask-position: 0% -50%; 
			-webkit-mask-position: 0% -50%;
		}
		100% {
			mask-position: 0% -100%; 
			-webkit-mask-position: 0% -100%; 
		}
	}
	.mask-animation {
		animation: mask-animation 2.6s ease-in 1.5s forwards;
	}
	#top #top__bird {
		width: 200%;
		height: auto;
		position: absolute;
		top: -80%;
		left: -140%;
	}
	@keyframes top__bird {
		0% {top: -80%;left: -140%;}
		100% {top: 110%;left: 110%;}
	}
	.top__bird {
		animation: top__bird 2.8s ease-in 0.5s forwards;
	}
	#top #top__award {
		width: 94%;
		height: auto;
		position: absolute;
		top: 2%;
		left: 3%;
		z-index: 2;
		opacity: 0;
	}

	#top #top__enlogo {
		width: 42%;
		height: auto;
		position: absolute;
		top: 10.5%;
		left: 0;
		z-index: 2;
		transform: translate3d(0, 0, 0);
	}
	#top #top__enlogo img {
		width: 100%;
		height: auto;
	}
	#top #top__tate {
		width: 14%;
		height: auto;
		position: absolute;
		top: 43%;
		left: auto;
		right: 0%;
	}
	#top #top__jpbb {
		width: 90%;
		height: auto;
		position: absolute;
		bottom: 11%;
		left: 5%;
	}
	#top #top__enbb {
		width: 58%;
		height: auto;
		position: absolute;
		top: 32%;
		left: 2%;
		z-index: 3;
	}
	#top h1 {
		width: 34%;
		height: auto;
		margin: 0;
		padding: 0;
		position: absolute;
		top: 32%;
		right: 1%;
		z-index: 3;
	}
	#top #top__yoko {
		width: 94%;
		height: auto;
		position: absolute;
		top: auto;
		bottom: 2%;
		right: 3%;
		z-index: 3;
	}
	#top #top__sns {
		display: none;
	}




}


/* ========================================
ブリッジ
========================================== */
#bridge {
	width: 100%;
	height: auto;
	padding: 4vw 0 2vw;
	background-color: #fcf9f6;
	overflow-x: hidden;
}
#bridge #date {
	width: 100%;
	height: auto;
	margin: 0 0 3vw;
	text-align: center;
	opacity: 0;
}
#bridge #date img {
	width: 20%;
	height: auto;
}
#bridge #theater {
	display: block;
	width: 15%;
	height: auto;
	margin: 0 42.5% 2vw;
	opacity: 0;
}
#bridge #banners {
	width: 100%;
	height: auto;
	margin: 0 0 2vw;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
#bridge #banners .abanner {
	display: block;
	width: 25%;
	height: auto;
	margin: 0 1%;
	opacity: 0;
}
#bridge .abanner:hover ,
#bridge #theater:hover {
	animation: flash 1.5s;
}
#bridge #mubi {
	width: 100%;
	height: auto;
	margin: 0 0 2vw;
	text-align: center;
	opacity: 0;
}
#bridge #mubi #mvtk-widgets-container {
	display: inline-block;
}
#bridge #sp__sns ,
#bridge #button-area-sp {
	display: none;
}
#bridge #arnold-banner {
	width: 36%;
	height: auto;
	margin: 2vw 33%;
	opacity: 0;
}
#bridge #arnold-banner a:hover {
	animation: flash 1.5s;
}

/* 以下タブレット・スマホ */
@media (max-width: 1024px) {
	#bridge {
		width: 100%;
		height: auto;
		padding: 5vw 0 5vw;
		background-color: #fcf9f6;
		position: relative;
		z-index: 0;
	}
	#bridge #date {
		width: 60%;
		height: auto;
		margin: 0 20% 3vw;
		text-align: center;
		opacity: 0;
	}
	#bridge #date img {
		width: 100%;
		height: auto;
	}
	#bridge #theater {
		width: 60%;
		height: auto;
		margin: 0 20% 5vw;
		padding: 2vw 0;
		text-align: center;
		font-size: 1.3rem;
		opacity: 0;
	}	
	#bridge #banners {
		width: 100%;
		height: auto;
		margin: 0 0 5vw;
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
	}
	#bridge #banners .abanner {
		display: block;
		width: 90%;
		height: auto;
		margin: 2vw 0;
		opacity: 0;
	}
	#bridge #sp__sns {
		width: 100%;
		height: auto;
		margin: 5vw 0 5vw;
		opacity: 0;
		display: flex;
		justify-content: center;
		opacity: 0;
	}
	#bridge #sp__sns a {
		display: block;
		width: 12%;
		height: auto;
		margin: 0 2.5%;
		font-size: 3.5rem;
	}
	#bridge #button-area-sp {
		display: block;
		opacity: 0;
	}
	#bridge #arnold-banner {
		width: 80%;
		height: auto;
		margin: 2vw 10%;
		opacity: 0;
	}

}

/* 以下タブレット・スマホ */
@media (max-width: 600px) {
	#bridge #arnold-banner {
		width: 96%;
		height: auto;
		margin: 2vw 2%;
		opacity: 0;
	}


}


/* ========================================
モーダル
========================================== */
.modal{
    display: none;
    height: 100%;
    position: fixed;
    top: 0;
    width: 100%;
	z-index: 11000;
}
.modal__bg {
	background:#FCF9F6;
	background-size: cover;
	background-position: center center;
    height: 100%;
    position: absolute;
    width: 100%;
	opacity: 0.97;
}
.modal__bg2 {
	background:#000;
	background-size: cover;
	background-position: center center;
    height: 100%;
    position: absolute;
    width: 100%;
	opacity: 0.95;
}

.news-bg {
	background:#000;
	background-size: cover;
	background-position: center center;
    height: 100%;
    position: absolute;
    width: 100%;
	opacity: 0.5;
}
.movie__content {
    width: 65%;
	height: auto;
    padding: 40px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
}
.prof__content {
    width: 100%;
	height: 90%;
    padding: 40px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
	overflow-y: scroll;
	scrollbar-width: none;
}
.prof__content::-webkit-scrollbar {
    width: 0px;
}
.prof__content h2 {
	width: 60%;
	height: auto;
	margin: 0 20% 1vw;
	padding: 2vw 0 1vw;
	color: #000;
	font-size: 1.8vw;
	text-align: center;
}
.prof__content h2 span {
	font-size: 1.4rem;
}
.prof__content h2 img {
	width: 60%;
}

.prof__content p {
	width: 60%;
	height: auto;
	margin: 2vw 20%;
	padding: 0;
	color: #000;
	font-size: 1.0rem;
	line-height: 1.8rem;
}
.prof__content ul {
	width: 60%;
	height: auto;
	margin: 2vw 20% 2vw;
}
.prof__content ul li {
	width: 100%;
	height: auto;
	color: #fff;
	font-size: 1rem;
}
.prof__content ul li .strong {
	font-size: 1.5rem;
	font-weight: bold;
	margin: 0 0.5rem;
}
.prof__content .eve-unit {
	width: 50%;
	height: auto;
	margin: 2vw 25%;
}
.prof__content .eve-unit .eve-photo {
	width: 100%;
	height: auto;
	text-align: center;
}
.prof__content .eve-unit .eve-photo img {
	width: 40%;
}
.prof__content .eve-unit h3 {
	width: 100%;
	height: auto;
	margin: 3vw 0 0.5vw;
	padding: 0;
	text-align: left;
	font-size: 1.2rem;
	color: #000;
}
.prof__content .eve-unit p {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	color: #000;
	font-size: 1.0rem;
}
.prof__content .eve-unit ul {
	width: 100%;
	height: auto;
	margin: 0;
}
.prof__content .eve-unit ul li {
	width: 100%;
	height: auto;
	margin: 0.3vw 0 0.3vw;
	color: #fff;
	font-size: 1rem;
	word-break: break-all;
}
.prof__content .eve-unit p a ,
.prof__content .eve-unit ul li a {
	color: #fff;
}
.prof__content h3 {
	width: 100%;
	height: auto;
	margin: 5vw 0 1vw;
	padding: 2vw 0 0;
	color: #fff;
	font-size: 2rem;
	text-align: center;
}
.prof__content .eve-movie {
	width: 60%;
	height: auto;
	box-sizing: border-box;
	margin: 0 20% 3vw;
	padding: 2vw 3vw;
	border: 2px solid #fff;
}
.prof__content .eve-movie h4 {
	width: 100%;
	height: auto;
	margin: 0 0 1vw;
	padding: 0;
	font-size: 1.4rem;
	color: #fff;
}
.prof__content .eve-movie p {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	font-size: 1.0rem;
	color: #fff;
}
.prof__content .eve-movie p span {
	font-size: 0.9rem;
}
.batsu {
	width: 5%;
	height: auto;
	position: fixed;
	top: 2%;
	right: 2%;
}
.batsu img {
	width: 100%;
}
.batsu img:hover {
	transform: rotate(360deg);
	transition: all 1.0s ease;
}


/* 以下タブレット・スマホ */
@media (max-width: 1024px) {
	.prof__content {
		width: 90%;
		height: 80%;
		box-sizing: border-box;
		padding: 40px 0;
		position: absolute;
		left: 50%;
		top: 50%;
		transform: translate(-50%,-50%);
	}
	.prof__content h2 {
		width: 100%;
		height: auto;
		margin: 0 0 1vw;
		padding: 2vw 0 0;
		color: #000;
		font-size: 1.5rem;
		text-align: center;
	}
	.prof__content h2 span {
		font-size: 1.2rem;
	}
	.prof__content h2 img {
		width: 90%;
	}
	.prof__content .news-img1 {
		width: 100%;
		height: auto;
		margin: 0 0 1vw;
		text-align: center;
	}
	.prof__content .news-img1 img {
		width: 100%;
	}
	.prof__content .news-img2 {
		width: 100%;
		height: auto;
		margin: 0 0 1vw;
		text-align: center;
	}
	.prof__content .news-img2 img {
		width: 100%;
	}
	.prof__content .news-img3 {
		width: 100%;
		height: auto;
		margin: 0 0 1vw;
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
	}
	.prof__content .news-img3 .img-part {
		width: 90%;
		height: auto;
		margin: 3vw 0;
		text-align: center;
		color: #fff;
		font-size: 1.1rem;
	}
	.prof__content p {
		width: 100%;
		height: auto;
		margin: 0;
		padding: 0;
		color: #fff;
		font-size: 1.0rem;
		line-height: 2.0rem;
	}
	.prof__content ul {
		width: 90%;
		height: auto;
		margin: 5vw 0;
		padding-left: 5vw;
	}
	.prof__content ul li {
		width: 100%;
		height: auto;
		color: #fff;
		font-size: 1rem;
	}
	.prof__content .eve-unit {
		width: 100%;
		height: auto;
		margin: 5vw 0;
	}
	.prof__content .eve-unit .eve-photo {
		width: 100%;
		height: auto;
		text-align: center;
	}
	.prof__content .eve-unit .eve-photo img {
		width: 70%;
	}
	.prof__content .eve-unit h3 {
		width: 100%;
		height: auto;
		margin: 12vw 0 1vw;
		padding: 0;
		text-align: left;
		font-size: 1.4rem;
		color: #000;
	}
	.prof__content .eve-unit p {
		width: 100%;
		height: auto;
		margin: 0;
		padding: 0;
		color: #000;
		font-size: 1.1rem;
	}
	.prof__content .eve-unit ul {
		width: 90%;
		height: auto;
		margin: 0;
	}
	.prof__content .eve-unit ul li {
		width: 100%;
		height: auto;
		margin: 0.3vw 0 0.3vw;
		color: #fff;
		font-size: 1rem;
		word-break: break-all;
	}
	.prof__content .eve-unit ul li a {
		color: #fff;
	}

	.prof__content .eve-movie {
		width: 100%;
		height: auto;
		box-sizing: border-box;
		margin: 0 0 3vw;
		padding: 5vw 3vw;
		border: 2px solid #fff;
	}
	.prof__content .eve-movie h4 {
		width: 100%;
		height: auto;
		margin: 0 0 1vw;
		padding: 0;
		font-size: 1.4rem;
		color: #fff;
	}
	.prof__content .eve-movie p {
		width: 100%;
		height: auto;
		margin: 0;
		padding: 0;
		font-size: 1.0rem;
		color: #fff;
	}
	.prof__content .eve-movie p span {
		font-size: 0.9rem;
	}

	.batsu {
		width: 15%;
		height: auto;
		position: fixed;
		top: 2%;
		right: 2%;
	}
	

}

/* 以下タブレット・スマホ */
@media (max-width: 600px) {
	ul#movie-changer {
		margin: 30px 0 0;
	}
	.movie__content .movie-btn {
		width: 82%;
		font-size: 3.2vw;
		margin: 5px 0;
	}
	.modal__content p {
		width: 90%;
		height: auto;
		margin: 0;
		padding: 5vw 5%;
		color: #000;
		font-size: 1rem;
		line-height: 2rem;
		font-feature-settings: "palt";
		letter-spacing: 1.0px;
	}


}


/* ========================================
トレーラー
========================================== */
.trailer {
	width:100%;
	height:auto;
	margin:0;
	padding:0;
	overflow: hidden;
	position: relative;
	z-index: 5;
	background-color: #fcf9f6;
}
.trailer #trailer-bg {
	width: 100%;
	height: auto;
}
.trailer #trailer-bg img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 1561 / 1045;
}
.trailer #trailer-content {
	width: 100%;
	height: auto;
	position: absolute;
	top: 10vw;
}
.trailer h2 {
	width:100%;
	height:auto;
	padding:0;
	margin:0 0 1vw;
	text-align: center;
	position: relative;
	opacity: 0;
}
.trailer h2 img {
	width: 17%;
}
#video-wrap {
	width: 60%;
	height: auto;
	margin: 0 20%;
	padding: 0;
	opacity: 0;
	position: relative;
	z-index: 1;
	box-sizing: border-box;
}
.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: 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 #EE87B4;
	color: #EE87B4;
	font-size: 1.1vw;
	font-weight: bold;
}
.movie-btn i {
	opacity: 0;
}
.activee {
	background: #EE87B4;
	border: 1px solid #EE87B4;
	color: #fff;
}
.activee i {
	opacity: 1;
}
.movie-btn:hover {
	background: #EE87B4;
	border: 1px solid #EE87B4;
	color: #fff;
	cursor: pointer;
	transition-duration: 0.6s;
}


/* 以下スマホ */
@media (max-width: 1024px) {
	.trailer {
		width:100%;
		padding:10vw 0 10vw;
	}
	.trailer #trailer-bg img {
		display: block;
		width: 100%;
		height: auto;
		aspect-ratio: 890 / 1328;
	}
	.trailer #trailer-content {
		width: 100%;
		height: auto;
		position: absolute;
		top: 50vw;
	}
	.trailer h2 {
		width:90%;
		height:auto;
		padding:0;
		margin:0 5% 5vw;
		position: relative;
		text-align: center;
	}
	.trailer h2 img {
		width: 40%;
	}
	#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;
	}
	.movie-btn {
		width: 30%;
		font-size: 2vw;
	}
}

@media (max-width: 610px) {
	.trailer {
		width:100%;
		height:auto;
		margin:0;
		padding:15vw 0 10vw;
	}
	.trailer h2 {
		width:99%;
		height:auto;
		padding:0;
		margin:0 0 3vw 1%;
		position: relative;
	}
	.trailer h2 img {
		width: 40%;
	}
	#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%;
	background: url(../img/BD-intro-bg-pc.jpg) no-repeat;
	background-size: cover;
	background-position: center center;
	position: fixed;
	top: 0;
	left: 0;
	z-index: -30;
}
#intro {
	width: 100%;
	height: auto;
	padding: 30vw 0 10vw;
	pointer-events: none;
	overflow-x: hidden;
}
#intro h2 {
	width: 100%;
	height: auto;
	margin: 0 0 5vw;
	padding: 0;
	text-align: center;
	opacity: 0;
}
#intro h2 img {
	width: 30%;
}
#intro #intro__lead1 {
	width: 100%;
	height: auto;
	margin: 0 0 5vw;
	text-align: center;
	opacity: 0;
}
#intro #intro__lead1 img {
	width: 50%;
	height: auto;
	aspect-ratio: 1076 / 120;
}
#intro p {
	width: 40%;
	height: auto;
	margin: 0 30% 10vw;
	padding: 0;
	color: #fff;
	font-size: 1.1vw;
	line-height: 2.2vw;
	letter-spacing: 1.2px;
	opacity: 0;
}
#intro #intro__lead2 {
	width: 100%;
	height: auto;
	margin: 0 0 5vw;
	text-align: center;
	opacity: 0;
}
#intro #intro__lead2 img {
	width: 60%;
	height: auto;
	aspect-ratio: 1228 / 65;
}
#intro #intro__lead3 {
	width: 100%;
	height: auto;
	margin: 0 0 5vw;
	text-align: center;
	opacity: 0;
}
#intro #intro__lead3 img {
	width: 38%;
	height: auto;
	aspect-ratio: 760 / 259;
}
#intro #intro__lead4 {
	width: 100%;
	height: auto;
	margin: 0 0 5vw;
	text-align: center;
	opacity: 0;
}
#intro #intro__lead4 img {
	width: 48%;
	height: auto;
	aspect-ratio: 1211 / 39;
}


/* 以下スマホ */
@media (max-width: 1024px) {
	#intro-bg {
		width: 100%;
		height: 110%;
		min-height: 110%;
		background: url(../img/BD-intro-bg-sp.jpg) no-repeat;
		background-size: cover;
		background-position: center center;
		position: fixed;
		top: 0;
		left: 0;
		z-index: -30;
	}
	#intro {
		width: 100%;
		height: auto;
		padding: 80vw 0 60vw;
		pointer-events: none;
	}
	#intro h2 {
		width: 100%;
		height: auto;
		margin: 0 0 20vw;
		padding: 0;
		text-align: center;
		opacity: 0;
	}
	#intro h2 img {
		width: 90%;
	}
	#intro #intro__lead1 {
		width: 100%;
		height: auto;
		margin: 0 0 20vw;
		text-align: center;
		opacity: 0;
	}
	#intro #intro__lead1 img {
		width: 80%;
		height: auto;
		aspect-ratio: 986 / 639;
	}
	#intro p {
		width: 90%;
		height: auto;
		margin: 0 5% 50vw;
		padding: 0;
		color: #fff;
		font-size: 1.1rem;
		line-height: 2.2rem;
		letter-spacing: 1.2px;
		opacity: 0;
	}
	#intro #intro__lead2 {
		width: 100%;
		height: auto;
		margin: 0 0 20vw;
		text-align: center;
		opacity: 0;
	}
	#intro #intro__lead2 img {
		width: 80%;
		height: auto;
		aspect-ratio: 989 / 302;
	}
	#intro #intro__lead3 {
		width: 100%;
		height: auto;
		margin: 0 0 20vw;
		text-align: center;
		opacity: 0;
	}
	#intro #intro__lead3 img {
		width: 90%;
		height: auto;
		aspect-ratio: 1050 / 594;
	}
	#intro #intro__lead4 {
		width: 100%;
		height: auto;
		margin: 0 0 20vw;
		text-align: center;
		opacity: 0;
	}
	#intro #intro__lead4 img {
		width: 85%;
		height: auto;
		aspect-ratio: 1005 / 159;
	}
}


/* ========================================
ストーリー
========================================== */
#story {
	width: 100%;
	height: auto;
	padding: 5vw 0;
	background-color: #fefefe;
	overflow-x: hidden;
}
#story .top-slide-wrap {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
	flex-wrap: nowrap;
	overflow: hidden;
}
#story .top-slide-wrap .top-slide {
	list-style-type: none;
	margin: 0;
	padding: 0;
	display: flex;	
	perspective: 1000;
	backface-visibility:hidden;
	-webkit-backface-visibility:hidden;
}
#story #slider1 .top-slide {
	animation: loop-slide-rev 90s infinite linear 0s both;
}
#story #slider2 .top-slide {
	animation: loop-slide 90s infinite linear 0s both;
}
#story .top-slide-wrap .top-slide .content {
	width: 22vw;
	height: auto;
	margin: 0;
}
#story .top-slide-wrap .top-slide .content img {
	width: 100%;
	height: auto;
	vertical-align: bottom;
	backface-visibility:hidden;
	-webkit-backface-visibility:hidden;
}
#story #story__contents {
	width: 100%;
	height: auto;
	padding: 4vw 0;
	display: flex;
	justify-content: center;
	align-items: center;
}
#story #story__contents #story-image {
	width: 35%;
	height: auto;
	margin: 0 2%;
	position: relative;
}
#story #story__contents #story-image #story-image1 {
	width: 100%;
	height: auto;
	animation: story-image1 20s ease infinite;
}
#story #story__contents #story-image #story-image2 {
	width: 100%;
	height: auto;
	position: absolute;
	top: 0;
	left: 0;
	animation: story-image2 20s ease infinite;
}
#story #story__contents #story-image #story-image3 {
	width: 100%;
	height: auto;
	position: absolute;
	top: 0;
	left: 0;
	animation: story-image3 20s ease infinite;
}
#story #story__contents #story-image #story-image4 {
	width: 100%;
	height: auto;
	position: absolute;
	top: 0;
	left: 0;
	animation: story-image4 20s ease infinite;
}
@keyframes story-image1 {
	0% {opacity: 0;}
	5% {opacity: 1;}
	20% {opacity: 1;}
	25% {opacity: 0;}
	100% {opacity: 0;}
}
@keyframes story-image2 {
	0% {opacity: 0;}
	25% {opacity: 0;}
	30% {opacity: 1;}
	45% {opacity: 1;}
	50% {opacity: 0;}
	100% {opacity: 0;}
}
@keyframes story-image3 {
	0% {opacity: 0;}
	50% {opacity: 0;}
	55% {opacity: 1;}
	70% {opacity: 1;}
	75% {opacity: 0;}
	100% {opacity: 0;}
}
@keyframes story-image4 {
	0% {opacity: 0;}
	75% {opacity: 0;}
	80% {opacity: 1;}
	95% {opacity: 1;}
	100% {opacity: 0;}
}
#story #story__contents #story-txt {
	width: 35%;
	height: auto;
	margin: 0 2%;
}
#story #story__contents #story-txt h2 {
	width: 100%;
	height: auto;
	margin: 0 0 2vw;
	padding: 0;
	text-align: center;
}
#story #story__contents #story-txt h2 img {
	width: 40%;
}
#story #story__contents #story-txt p {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	color: #000;
	font-size: 1.1vw;
	line-height: 2.2vw;
	letter-spacing: 1.3px;
}

/* 以下スマホ */
@media (max-width: 1024px) {
	#story #slider1 .top-slide {
		animation: loop-slide-rev 80s infinite linear 0s both;
	}
	#story #slider2 .top-slide {
		animation: loop-slide 80s infinite linear 0s both;
	}
	#story .top-slide-wrap .top-slide .content {
		width: 50vw;
		height: auto;
		margin: 0;
	}
	#story #story__contents {
		width: 100%;
		height: auto;
		padding: 10vw 0;
		display: flex;
		justify-content: center;
		align-items: center;
		flex-wrap: wrap;
	}
	#story #story__contents #story-image {
		width: 60%;
		height: auto;
		margin: 0 20% 5vw;
		position: relative;
		order: 2;
	}
	#story #story__contents #story-txt {
		width: 80%;
		height: auto;
		margin: 0 10%;
		display: contents;
	}
	#story #story__contents #story-txt h2 {
		width: 100%;
		height: auto;
		margin: 0 0 2vw;
		padding: 0;
		text-align: center;
		order: 1;
	}
	#story #story__contents #story-txt h2 img {
		width: 40%;
	}
	#story #story__contents #story-txt p {
		width: 80%;
		height: auto;
		margin: 0 10%;
		padding: 0;
		color: #000;
		font-size: 1.1rem;
		line-height: 2.2rem;
		letter-spacing: 1.3px;
		order: 3;
	}

}


/* 以下スマホ */
@media (max-width: 600px) {
	#story #slider1 .top-slide {
		animation: loop-slide-rev 50s infinite linear 0s both;
	}
	#story #slider2 .top-slide {
		animation: loop-slide 50s infinite linear 0s both;
	}
	#story .top-slide-wrap .top-slide .content {
		width: 90vw;
		height: auto;
		margin: 0;
	}
	#story #story__contents {
		width: 100%;
		height: auto;
		padding: 20vw 0;
		display: flex;
		justify-content: center;
		align-items: center;
		flex-wrap: wrap;
	}
	#story #story__contents #story-image {
		width: 90%;
		height: auto;
		margin: 0 5% 5vw;
		position: relative;
		order: 2;
	}
	#story #story__contents #story-txt {
		width: 80%;
		height: auto;
		margin: 0 10%;
		display: contents;
	}
	#story #story__contents #story-txt h2 {
		width: 100%;
		height: auto;
		margin: 0 0 2vw;
		padding: 0;
		text-align: center;
		order: 1;
	}
	#story #story__contents #story-txt h2 img {
		width: 60%;
	}
	#story #story__contents #story-txt p {
		width: 90%;
		height: auto;
		margin: 0 5%;
		padding: 0;
		color: #000;
		font-size: 1.1rem;
		line-height: 2.2rem;
		letter-spacing: 1.3px;
		order: 3;
	}

}



/* ========================================
キャスト
========================================== */
#cast-bg1 {
	width: 100%;
	height: 100%;
	min-height: 100%;
	background-size: cover;
	background-position: left center;
	position: fixed;
	top: 0;
	left: 0;
	z-index: -29;
	pointer-events: none;
	opacity: 0;
}
#cast-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;
	clip-path: inset(100% 0 0 0);
}
#cast-bg3 {
	width: 100%;
	height: 100%;
	min-height: 100%;
	background-size: cover;
	background-position: right center;
	position: fixed;
	top: 0;
	left: 0;
	z-index: -27;
	pointer-events: none;
	clip-path: inset(100% 0 0 0);
}
.cast-unit {
	width: 40%;
	height: auto;
	padding: 20vw 0;
}
.cast-unit h2 {
	width: 30%;
	height: auto;
	margin: 0 35% 5vw;
	padding: 0;
}
.cast-unit h3 {
	width: 70%;
	height: auto;
	margin: 0 15% 2vw;
	padding: 0;
	position: relative;
}
.cast-unit h3 .cast-name-bg {
	width: 100%;
	height: auto;
	clip-path: inset(0 100% 0 0);
}
.cast-unit h3 .cast-name {
	width: 100%;
	height: auto;
	position: absolute;
	top: 0;
	left: 0;
}
.cast-unit p {
	width: 100%;
	height: auto;
	box-sizing: border-box;
	padding: 3vw;
	color: #000;
	font-size: 1.1vw;
	line-height: 2.2vw;
	letter-spacing: 1.2px;
	opacity: 0;
}
#cast1 {
	margin: 0 0 0 50%;
}
#cast1 p {
	padding: 0vw 3vw;
}
#cast2 {
	margin: 0 0 0 50%;
}
#cast3 {
	margin: 0 0 0 15%;
	padding: 20vw 0 10vw;
}
#cast2 p ,
#cast3 p {
	background-color: rgba(252, 249, 246, 0.8);
}
@keyframes hake {
	0% {clip-path: inset(0 100% 0 0);}
	100% {clip-path: inset(0 0 0 0);}
}
.hake {
	animation: hake 0.2s ease-in 0s forwards;
}
.cast-txt {
	animation: fadeIn 0.3s ease-in 0s forwards;
}

/* 以下スマホ */
@media (max-width: 1024px) {
	#cast-bg1 {
		width: 100%;
		height: 110%;
		min-height: 110%;
		background-size: cover;
		background-position: left center;
		position: fixed;
		top: 0;
		left: 0;
		z-index: -29;
		pointer-events: none;
		opacity: 0;
	}
	#cast-bg2 {
		width: 100%;
		height: 110%;
		min-height: 110%;
		background-size: cover;
		background-position: left center;
		position: fixed;
		top: 0;
		left: 0;
		z-index: -28;
		pointer-events: none;
		clip-path: inset(100% 0 0 0);
	}
	#cast-bg3 {
		width: 100%;
		height: 110%;
		min-height: 110%;
		background-size: cover;
		background-position: right center;
		position: fixed;
		top: 0;
		left: 0;
		z-index: -27;
		pointer-events: none;
		clip-path: inset(100% 0 0 0);
	}

	.cast-unit {
		width: 100%;
		height: auto;
		padding: 120vw 0;
	}
	.cast-unit h2 {
		width: 50%;
		height: auto;
		margin: 0 25% 120vw;
		padding: 0;
	}
	.cast-unit h3 {
		width: 60%;
		height: auto;
		margin: 0 20% 20vw;
		padding: 0;
		position: relative;
	}
	.cast-unit p {
		width: 100%;
		height: auto;
		box-sizing: border-box;
		padding: 10vw 5vw;
		color: #000;
		font-size: 1.1rem;
		line-height: 2.2rem;
		letter-spacing: 1.2px;
		background-color: rgba(252, 249, 246, 0.8);
		opacity: 0;
	}
	#cast1 {
		margin: 0;
	}
	#cast1 p {
		padding: 10vw 5vw;
	}
	#cast2 {
		margin: 0;
	}
	#cast3 {
		margin: 0;
		padding: 120vw 0 0;
	}
}

/* 以下スマホ */
@media (max-width: 600px) {
	.cast-unit h3 {
		width: 90%;
		height: auto;
		margin: 0 5% 20vw;
		padding: 0;
		position: relative;
	}
}

/* ========================================
スタッフ
========================================== */
#staff-bg {
	width: 100%;
	height: 100%;
	min-height: 100%;
	background-size: cover;
	background-position: center center;
	position: fixed;
	top: 0;
	left: 0;
	z-index: -26;
	pointer-events: none;
	opacity: 0;
	transition: 1.0s all;
}
#staff-head {
	width: 22%;
	height: auto;
	margin: 0;
	padding: 0;
	position: fixed;
	top: 46%;
	left: 39%;
	z-index: -25;
	opacity: 0;
	transition: 0.3s all;
}
#staff {
	width: 100%;
	height: auto;
	padding: 30vw 0 20vw;
	position: relative;
	overflow-x: hidden;
}
#staff #staff-link {
	width: 100%;
	position: absolute;
	top: 25vw;
}
#staff .staff-unit {
	width: 40%;
	height: auto;
	padding: 10vw 30% 10vw;
}
#staff #staff1 {
	padding: 50vw 30% 10vw;
}
#staff .staff-unit .staff-name {
	width: 70%;
	height: auto;
	margin: 0 15% 2vw;
	position: relative;
}
#staff .staff-unit .staff-name .staff-name-bg {
	width: 100%;
	height: auto;
	clip-path: inset(0 100% 0 0);
}
#staff .staff-unit .staff-name .staff-name-txt {
	width: 100%;
	height: auto;
	position: absolute;
	top: 0;
	left: 0;
}
#staff .staff-unit .staff-photo {
	width: 40%;
	height: auto;
	margin: 0 30% 2vw;
}
#staff .staff-unit p {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	color: #fff;
	font-size: 1.1vw;
	line-height: 2.2vw;
	letter-spacing: 1.2px;
	opacity: 0;
}

/* 以下スマホ */
@media (max-width: 1024px) {
	#staff-bg {
		width: 100%;
		height: 110%;
		min-height: 110%;
		background-size: cover;
		background-position: center center;
		position: fixed;
		top: 0;
		left: 0;
		z-index: -26;
		pointer-events: none;
		opacity: 0;
		transition: 1.0s all;
	}
	#staff-head {
		width: 50%;
		height: auto;
		margin: 0;
		padding: 0;
		position: fixed;
		top: 46%;
		left: 25%;
		z-index: -25;
		opacity: 0;
		transition: 0.3s all;
	}
	#staff {
		width: 100%;
		height: auto;
		padding: 120vw 0 120vw;
	}
	#staff #staff-link {
		width: 100%;
		position: absolute;
		top: 80vw;
	}
	#staff .staff-unit {
		width: 100%;
		height: auto;
		padding: 30vw 0 20vw;
	}
	#staff #staff1 {
		padding: 200vw 0 20vw;
	}
	#staff .staff-unit .staff-name {
		width: 60%;
		height: auto;
		margin: 0 20% 5vw;
		position: relative;
	}
	#staff .staff-unit .staff-photo {
		width: 50%;
		height: auto;
		margin: 0 25% 5vw;
	}
	#staff .staff-unit p {
		width: 90%;
		height: auto;
		margin: 0 5%;
		padding: 0;
		color: #fff;
		font-size: 1.1rem;
		line-height: 2.2rem;
		letter-spacing: 1.2px;
		opacity: 0;
	}

}

/* 以下スマホ */
@media (max-width: 600px) {
	#staff-head {
		width: 50%;
		height: auto;
		margin: 0;
		padding: 0;
		position: fixed;
		top: 48.5%;
		left: 25%;
		z-index: -25;
		opacity: 0;
		transition: 0.3s all;
	}
	#staff .staff-unit .staff-name {
		width: 94%;
		height: auto;
		margin: 0 3% 5vw;
		position: relative;
	}
	#staff .staff-unit .staff-photo {
		width: 60%;
		height: auto;
		margin: 0 20% 5vw;
	}
}



/* ========================================
サウンドトラック
========================================== */
#ost {
	width: 100%;
	height: auto;
	position: relative;
}
#ost #ost__bg {
	width: 100%;
	height: auto;
}
#ost #ost__bg img {
	width: 100%;
	height: auto;
	aspect-ratio: 1920 / 1248;
}
#ost #ost__list {
	width: 80%;
	height: auto;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	position: absolute;
	top: 50%;
	left: 5%;
	transform: translate3d(0, -50%, 0);
}
#ost #ost__list .song {
	width: 35%;
	height: auto;
	margin: 0.8vw 3%;
}
#ost h2 {
	width: 5%;
	height: auto;
	margin: 0;
	padding: 0;
	position: absolute;
	top: 12vw;
	right: 7%;
}
#ost h2 img {
	width: 100%;
	height: auto;
	aspect-ratio: 112 / 966;
}


/* 以下スマホ */
@media (max-width: 1024px) {
	#ost {
		width: 100%;
		height: auto;
		background-color: #0ABBD0;
		position: relative;
	}
	#ost #ost__bg {
		width: 100%;
		height: auto;
	}
	#ost #ost__bg img {
		width: 100%;
		height: auto;
		aspect-ratio: 1170 / 2909;
	}
	#ost h2 {
		width: 50%;
		height: auto;
		margin: 0;
		padding: 0;
		position: absolute;
		top: 25vw;
		right: 25%;
	}
	#ost h2 img {
		width: 100%;
		height: auto;
		aspect-ratio: 905 / 392;
	}
	#ost #ost__list {
		width: 90%;
		height: auto;
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
		position: absolute;
		top: 70vw;
		left: 5%;
		transform: translate3d(0, 0, 0);
	}
	#ost #ost__list .song {
		width: 45%;
		height: auto;
		margin: 3vw 1%;
	}

}

/* 以下スマホ */
@media (max-width: 600px) {
	#ost {
		width: 100%;
		height: auto;
		padding: 100vw 0;
		background-color: #0ABBD0;
		position: relative;
	}
	#ost h2 {
		width: 50%;
		height: auto;
		margin: 0;
		padding: 0;
		position: absolute;
		top: 30vw;
		right: 25%;
	}
	#ost h2 img {
		width: 100%;
		height: auto;
		aspect-ratio: 905 / 392;
	}
	#ost #ost__list {
		width: 90%;
		height: auto;
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
		position: absolute;
		top: 70vw;
		left: 5%;
	}
	#ost #ost__list .song {
		width: 100%;
		height: auto;
		margin: 3vw 0;
	}
}


/* ========================================
映画祭
========================================== */
#fes-bg {
	width: 100%;
	height: 100%;
	min-height: 100%;
	background-size: cover;
	background-position: center center;
	position: fixed;
	top: 0;
	left: 0;
	z-index: -22;
	pointer-events: none;
	opacity: 0;
}
#fes-bg2 {
	width: 100%;
	height: 100%;
	min-height: 100%;
	background-size: cover;
	background-position: center center;
	position: fixed;
	top: 0;
	left: 0;
	z-index: -20;
	pointer-events: none;
	opacity: 0;
}
#fes {
	width: 100%;
	height: auto;
	padding: 30vw 0 40vw;
	position: relative;
	z-index: -21;
}
#fes h2 {
	width: 100%;
	height: auto;
	margin: 0 0 10vw;
	padding: 0;
	text-align: center;
}
#fes h2 img {
	width: 25%;
}
#fes ul {
	width: 50%;
	height: auto;
	margin: 0 20% 0 30%;
	padding: 0;
	list-style-type: none;
}
#fes ul li {
	width: 100%;
	height: auto;
	margin: 0.5vw 0;
	color: #000;
	font-size: 1.1vw;
	line-height: 2.2vw;
	letter-spacing: 1.2px;
	font-weight: bold;
}

/* 以下スマホ */
@media (max-width: 1024px) {
	#fes-bg {
		width: 100%;
		height: 110%;
		min-height: 110%;
		background-size: cover;
		background-position: bottom center;
		position: fixed;
		top: 0;
		left: 0;
		z-index: -22;
		pointer-events: none;
		opacity: 0;
	}
	#fes-bg2 {
		width: 100%;
		height: 110%;
		min-height: 110%;
		background-size: cover;
		background-position: bottom center;
		position: fixed;
		top: 0;
		left: 0;
		z-index: -20;
		pointer-events: none;
		opacity: 0;
	}
	#fes {
		width: 100%;
		height: auto;
		padding: 50vw 0 120vw;
		position: relative;
		z-index: -21;
	}
	#fes h2 {
		width: 100%;
		height: auto;
		margin: 0 0 30vw;
		padding: 0;
		text-align: center;
	}
	#fes h2 img {
		width: 50%;
	}
	#fes ul {
		width: 70%;
		height: auto;
		margin: 0 15%;
		padding: 0;
		list-style-type: none;
	}
	#fes ul li {
		width: 100%;
		height: auto;
		margin: 2vw 0;
		color: #000;
		font-size: 1.1rem;
		line-height: 2.2rem;
		letter-spacing: 1.2px;
	}
}


/* 以下スマホ */
@media (max-width: 600px) {
	#fes {
		width: 100%;
		height: auto;
		padding: 100vw 0 200vw;
		position: relative;
		z-index: -21;
	}
	#fes h2 {
		width: 100%;
		height: auto;
		margin: 0 0 30vw;
		padding: 0;
		text-align: center;
	}
	#fes h2 img {
		width: 80%;
	}
	#fes ul {
		width: 94%;
		height: auto;
		margin: 0 3%;
		padding: 0;
		list-style-type: none;
	}
	#fes ul li {
		width: 100%;
		height: auto;
		margin: 7vw 0;
		color: #000;
		font-size: 1.0rem;
		line-height: 2.0rem;
		letter-spacing: 1.2px;
	}

}

/* ========================================
画像
========================================== */
#image-area {
	width: 100%;
	height: auto;
	position: relative;
}
#image-area #image__bg {
	width: 100%;
	height: auto;
}
#image-area #image__bg img {
	width: 100%;
	height: auto;
	aspect-ratio: 1920 / 1080;
}
#image-area #image__tate {
	width: 1.2%;
	height: auto;
	position: absolute;
	top: 23%;
	left: 58%;
}

/* 以下スマホ */
@media (max-width: 1024px) {
	#image-area #image__bg img {
		width: 100%;
		height: auto;
		aspect-ratio: 1170 / 2300;
	}
	#image-area #image__tate {
		width: 4.5%;
		height: auto;
		position: absolute;
		top: 35%;
		left: 67%;
	}


}

/* ========================================
レビュー・コメント
========================================== */
#rev-bg {
	width: 100%;
	height: 100%;
	min-height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: -15;
	pointer-events: none;
	opacity: 0;
	transition: 1.0s filter;
}
#rev-bg #rev-bg1 {
	width: 100%;
	height: 100%;
	min-height: 100%;
	background-size: cover;
	background-position: center center;
	position: absolute;
	top: 0;
	left: 0;
}
#rev-bg #rev-bg2 {
	width: 100%;
	height: 100%;
	min-height: 100%;
	background-size: cover;
	background-position: center center;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
}
@keyframes rev-bg2 {
	0% {opacity: 0;}
	40% {opacity: 0;}
	50% {opacity: 1;}
	90% {opacity: 1;}
	100% {opacity: 0;}
}
.rev-bg2 {
	animation: rev-bg2 8s ease infinite;
}
#comment {
	width: 100%;
	height: auto;
	padding: 6vw 0 0;
}
#comment h2 {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 21vw 0 10vw;
	text-align: center;
}
#comment h2 img {
	width: 18%;
}
#comment .com-unit {
	width: 46%;
	height: auto;
	margin: 7vw 27% 5vw;
	opacity: 0;
}
#comment .com-unit p {
	width: 100%;
	height: auto;
	font-size: 1.1vw;
	line-height: 1.8vw;
	letter-spacing: 1.5px;
	color: #fff;
}
#comment .com-unit p span {
	color: #f0eb45;
	font-size: 1.3vw;
	font-weight: bold;
}
#comment .com-unit .name {
	width: 100%;
	height: auto;
	font-size: 1.3vw;
	line-height: 1.8vw;
	letter-spacing: 1px;
	color: #f0eb45;
	text-align: right;
	font-weight: bold;
}
#comment .com-unit .name span {
	font-size: 1.1vw;
	margin-left: 5px;
}
#comment .junf {
	width: 100%;
	height: auto;
	margin: 2vw 0 5vw;
	text-align: center;
	color: #fff;
	font-size: 1.0rem;
}
#review {
	width: 100%;
	height: auto;
	padding: 6vw 0 20vw;
}
#review h2 {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 21vw 0 15vw;
	text-align: center;
}
#review h2 img {
	width: 15%;
}
#review .rev-unit {
	width: 30%;
	height: auto;
	margin: 0 35% 6vw;
	opacity: 0;
}
#review .rev-unit p {
	width: 100%;
	height: auto;
	font-size: 1.1vw;
	line-height: 1.8vw;
	letter-spacing: 1px;
	color: #fff;
}
#review .rev-unit .name {
	width: 100%;
	height: auto;
	font-size: 1.1vw;
	line-height: 1.8vw;
	letter-spacing: 1px;
	color: #fff;
	text-align: right;
}
#review .rev-unit .name span {
	color: #f0eb45;
}

/* 以下スマホ */
@media (max-width: 1024px) {
	#rev-bg {
		width: 100%;
		height: 110%;
		min-height: 110%;
		position: fixed;
		top: 0;
		left: 0;
		z-index: -15;
		pointer-events: none;
		opacity: 0;
		transition: 1.0s filter;
	}
	#rev-bg #rev-bg1 {
		width: 100%;
		height: 110%;
		min-height: 110%;
		background-size: cover;
		background-position: center center;
		position: absolute;
		top: 0;
		left: 0;
	}
	#rev-bg #rev-bg2 {
		width: 100%;
		height: 110%;
		min-height: 110%;
		background-size: cover;
		background-position: center center;
		position: absolute;
		top: 0;
		left: 0;
		opacity: 0;
	}
	#comment {
		width: 100%;
		height: auto;
		padding: 50vw 0 0vw;
	}
	#comment h2 {
		width: 100%;
		height: auto;
		margin: 0;
		padding: 50vw 0 60vw;
		text-align: center;
	}
	#comment h2 img {
		width: 50%;
	}
	#comment .com-unit {
		width: 70%;
		height: auto;
		margin: 0 15% 15vw;
		opacity: 0;
	}
	#comment .com-unit p {
		width: 100%;
		height: auto;
		font-size: 1.1rem;
		line-height: 1.8rem;
		letter-spacing: 1.5px;
		color: #fff;
	}
	#comment .com-unit p span {
		color: #f0eb45;
		font-size: 1.3rem;
		font-weight: bold;
	}
	#comment .com-unit .name {
		width: 100%;
		height: auto;
		font-size: 1.3rem;
		line-height: 1.8rem;
		letter-spacing: 1px;
		color: #f0eb45;
		text-align: right;
		font-weight: bold;
	}
	#comment .com-unit .name span {
		font-size: 1.1rem;
		margin-left: 5px;
	}
	#comment .junf {
		width: 100%;
		height: auto;
		margin: 10vw 0 10vw;
		text-align: center;
		color: #fff;
		font-size: 1.0rem;
	}
	#review {
		width: 100%;
		height: auto;
		padding: 30vw 0 60vw;
	}
	#review h2 {
		width: 100%;
		height: auto;
		margin: 0;
		padding: 50vw 0 60vw;
		text-align: center;
	}
	#review h2 img {
		width: 40%;
	}
	#review .rev-unit {
		width: 70%;
		height: auto;
		margin: 0 15% 15vw;
		opacity: 0;
	}
	#review .rev-unit p {
		width: 100%;
		height: auto;
		font-size: 1.1rem;
		line-height: 1.8rem;
		letter-spacing: 1px;
		color: #fff;
	}
	#review .rev-unit .name {
		width: 100%;
		height: auto;
		font-size: 1.1rem;
		line-height: 1.8rem;
		letter-spacing: 1px;
		color: #fff;
		text-align: right;
	}

}

/* 以下スマホ */
@media (max-width: 600px) {
	#comment {
		width: 100%;
		height: auto;
		padding: 60vw 0 0vw;
	}
	#comment h2 {
		width: 100%;
		height: auto;
		margin: 0;
		padding: 70vw 0 60vw;
		text-align: center;
	}
	#comment h2 img {
		width: 65%;
	}
	#comment .com-unit {
		width: 90%;
		height: auto;
		margin: 0 5% 30vw;
		opacity: 0;
	}
	#comment .com-unit p {
		width: 100%;
		height: auto;
		font-size: 1.1rem;
		line-height: 1.8rem;
		letter-spacing: 1.5px;
		color: #fff;
	}
	#comment .com-unit p span {
		color: #f0eb45;
		font-size: 1.3rem;
		font-weight: bold;
	}
	#comment .com-unit .name {
		width: 100%;
		height: auto;
		font-size: 1.3rem;
		line-height: 1.8rem;
		letter-spacing: 1px;
		color: #f0eb45;
		text-align: right;
		font-weight: bold;
	}
	#comment .com-unit .name span {
		font-size: 1.1rem;
		margin-left: 5px;
	}

	#review {
		width: 100%;
		height: auto;
		padding: 80vw 0 100vw;
	}
	#review h2 {
		width: 100%;
		height: auto;
		margin: 0;
		padding: 50vw 0 60vw;
		text-align: center;
	}
	#review h2 img {
		width: 55%;
	}
	#review .rev-unit {
		width: 90%;
		height: auto;
		margin: 0 5% 25vw;
		opacity: 0;
	}

}

/* ========================================
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:2vw 0;
	opacity: 1;
}
.button-area ul.social_sq_buttons {
	width:100%;
	height:auto;
	padding:0;
	margin:0;
	list-style-type: none;
	display:flex;
	justify-content: center;
	flex-wrap:wrap;
}
.button-area ul.social_sq_buttons li {
	width:140px;
	height: 20px;
	margin:0 3px;
	padding:0;
	display: flex;
	justify-content: center;
}
.button-area ul.social_sq_buttons li.fb {
	background:#1877F2;
}
.button-area ul.social_sq_buttons li.tw {
	background:#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:0;
	margin:0;
	background-color: #000;
	position: relative;
}
footer #foot-bg1 {
	width: 100%;
	height: auto;
	animation: foot-bg1 10s ease infinite;
}
footer #foot-bg2 {
	width: 100%;
	height: auto;
	position: absolute;
	top: 0;
	left: 0;
	animation: foot-bg2 10s ease infinite;
}
footer #foot-bg3 {
	width: 100%;
	height: auto;
	position: absolute;
	top: 0;
	left: 0;
	animation: foot-bg3 10s ease infinite;
}
footer #foot-bg1 img ,
footer #foot-bg2 img ,
footer #foot-bg3 img {
	width: 100%;
	height: auto;
	aspect-ratio: 1920 / 1080;
}
@keyframes foot-bg1 {
	0% {opacity: 1;}
	23% {opacity: 1;}
	33% {opacity: 0;}
	90% {opacity: 0;}
	100% {opacity: 1;}
}
@keyframes foot-bg2 {
	0% {opacity: 0;}
	23% {opacity: 0;}
	33% {opacity: 1;}
	56% {opacity: 1;}
	66% {opacity: 0;}
	100% {opacity: 0;}
}
@keyframes foot-bg3 {
	0% {opacity: 0;}
	56% {opacity: 0;}
	66% {opacity: 1;}
	90% {opacity: 1;}
	100% {opacity: 0;}
}
footer #button-area {
	position: absolute;
	bottom: 0;
}

@media (max-width: 1024px) {
	footer #foot-bg1 img ,
	footer #foot-bg2 img ,
	footer #foot-bg3 img {
		width: 100%;
		height: auto;
		aspect-ratio: 1170 / 2300;
	}
	footer #button-area {
		display: none;
	}

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

}



/* ========================================
ダウンロード
========================================== */
#dl-body:before {
	content:"";
	display:block;
	position:fixed;
	top:0;
	left:0;
	z-index:-5;
	width:100%;
	height:100vh;
	background:url(../download/images/BIRD-dl-bg.jpg) no-repeat;
	background-size: cover;
	background-position: center center;
	opacity: 1;
}
#dl-bg-item {
	width: 30%;
	height: auto;
	position: fixed;
	bottom: 0;
	left: 35%;
}

  .dlButton {
	  background-color:transparent;
	  border:1px solid #fff;
	  display:inline-block;
	  cursor:pointer;
	  color:#fff;
	  font-family:Arial;
	  width: 16vw;
	  font-size:1.1vw;
	  padding:10px 0;
	  text-align: center;
	  text-decoration:none;
	  font-weight: bold;
	  font-feature-settings:"palt";
  }
  .dlButton:hover {
	  background-color:#fff;
	  border:1px solid #fff;
	  color:#000;
	  transition-duration: 0.6s
  }
  .dlButton:active {
	  position:relative;
	  top:1px;
  }  
  .issiki {
	  margin:20px 0 80px;
	  color:#fff !important;
	  width: 25vw;
  }  
  .issiki:hover {
	  background-color:#fff;
	  color:#000 !important;
  }
  .dl-contents {
	  width:80%;
	  height:auto;
	  padding:20px 10% 80px;
	  font-size:1.3em;
  }  
  .dl-contents h2 {
	  width:100%;
	  text-align:center;
	  padding:0;
	  color:#fff;
	  font-size:2em;
	  margin-bottom:30px;
  }  
  .dl-contents h2 span.small {
	  font-size:0.5em;
	  line-height:0.7em;
  }
  
  .dl-contents h2 img {
	  width:30%;
  }  
  #dl-wrapper {
	  width:100%;
	  height:auto;
	  text-align:center;
	  margin-bottom:20px;
  }
  #dl-wrapper .dl-txt2 {
	width:100%;
	height:auto;
	text-align:center;
  }
  #dl-wrapper .dl-txt2 img {
	width: 35%;
  }
  #dl-wrapper .dl-txt1 {
	  width:100%;
	  height:auto;
	  text-align:center;
	  color:#fff;
	  margin:20px 0 5px;
	  font-size: 1.1em;
	  font-weight: bold;
	letter-spacing: 1.5px;
  }
  #dl-wrapper .dl-txt1 span {
	display: inline-block;
	position: relative;
	z-index: 2;
  }
  
  #dl-wrapper .dl-txt1 a {
	  color:#000;
  }
  
  #dl-wrapper .dl-txt1 img {
	  width:30%;
  }
  
  #dl-wrapper .sikiri {
	  width:100%;
	  height:auto;
	  padding:40px 0 20px;
	  text-align:center;
  }
  
  #dl-wrapper .sikiri img {
	  width:10%;
  }
  
  
  #dl-wrapper .dl-uline {
	  display:inline-block;
	  width:70%;
	  margin:20px 0 30px;
  }
  
  #dl-wrapper .dl-uline img {
	  width:100%;
	  height:60px;
  }
  .dl-wrap {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0 0 10vw;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
  }  
  .dl-wrap .img-box {
	  width:22%;
	  height:auto;
	  padding:0 1%;
	  margin:50px 1%;
	  color:#fff;
	  text-align: center;
	  font-size: 1.0em;
	  font-weight: bold;
	  letter-spacing: 1.4px;
  }  
  .img-box img {
	  width:90%;
  }
  .dl-wrap .img-box span {
	display: inline-block;
	font-size: 0.7em;
	line-height: 1.3em;
  }


  .longname {
	  font-size:0.75em;
  }
  
  footer.dl-footer {
	  width:100%;
	  height:auto;
	  margin:0;
	  padding:50px 0 0;
	  background:#000;
  }
  
  footer.dl-footer .footimg {
	  width:100%;
	  height:auto;
	  margin:0;
	  padding:0;
  }
  
  footer.dl-footer .footimg img {
	  width:100%;
	  height:auto;
	  vertical-align:bottom;
  }
