html{
  height:100%; 
}

body { 
	margin: 0; 
	padding:0;
	font-family: "Zen Old Mincho", serif;
	font-weight: 600;
	font-style: normal;
	width:100%; 
	height:100%;
	overflow-x:hidden;
	background: #fff7ec;
}
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: #fff7ec;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000000;
	display: grid;
	place-items: center;
}
#loader {
	width:1%;
	height:auto;
	margin:0;
	padding:0;
}
#loader #load1 {
	width:100%;
	height:auto;
}

/* 以下スマホ */
@media (max-width: 1024px) {
	#loader-bg {
		background: #fff7ec;
	}
	#loader {
		width:3%;
		height:auto;
		margin:0;
		padding:0;
	}
}

@media (max-width: 600px) {
	#loader-bg {
		background: #fff7ec;
	}
	#loader {
		width:4%;
		height:auto;
		margin:0;
		padding:0;
	}
}


/* ========================================
ヘッダー
========================================== */
#pcheader {
	display: block;
	width:100%;
	height:auto;
	padding:5px 0 15px;
	position:fixed;
	top:0;
	background: linear-gradient(to bottom, #fff7ec 10%, transparent);
	z-index:1001;
	opacity: 0;
}
#pcheader ul#pcmenu {
	width:100%;
	height:auto;
	padding:0;
	margin:0;
	list-style-type:none;
	display:flex;
	justify-content: center;
}
#pcheader ul#pcmenu li {
	width:auto;
	height:auto;
	margin:0 1%;
	padding:0;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}
#pcheader ul#pcmenu li.menusns {
	width:auto;
	height:auto;
	margin:0 0.3%;
	padding:0;
	text-align:center;
	display:flex;
	justify-content: center;
	align-items: flex-start;
}
#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%;
	font-size:1.5vw;
	line-height:1.5vw;
	letter-spacing: 0px;
	text-align: center;
	color: #000;
	font-weight: 900;
}
#pcheader ul#pcmenu li.menusns a span.eng {
	transform: translateY(0px);
	font-size: 1.6vw;
}
#pcheader ul#pcmenu li.menusns a span.eng img {
	width: 2.5vw;
}
#pcheader ul#pcmenu li a span.jpn {
	display: block;
	width: 100%;
	font-size:0.7vw;
	line-height:0.7vw;
	text-align: center;
	color: #fff;
	font-family: 'Edu TAS Beginner', cursive;
	letter-spacing: 1px;
	transform: translateY(-1.5vw);
}
#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: 0px;
	background-color: #fff7ec;
	background-image: url(../img/TT-menu-bg.jpg);
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: top center;
	z-index: 2000001;
	display: flex;
	align-items: flex-start;
}
.global-nav .global-nav-inner {
	width: 100%;
	height: auto;
	padding: 5vw 0;
	position: relative;
}
.hamburger {
	position: fixed;
	left: 5px;
	top: 1px;
	width: 65px;
	height: 65px;
	cursor: pointer;
	z-index: 3000000;
	opacity:0;
}  
.global-nav #menu-logo {
	width:60%;
	height:auto;
	margin:0px 20% 5vw;
	padding:0;
	text-align:center;
	position: relative;
}  
.global-nav #menu-logo #menu-logo1 {
	width: 100%;
	height: auto;
}
.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: 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;
	transform: translateY(-10px);
}
.hamburger__line {
	position: absolute;
	left: 8px;
	width: 50px;
	height: 4px;
	background-color: #000 !important;
	transition: all .6s;
}  
.hamburger #menu {
	position: absolute;
	top: 44px;
	left: 9px;
	font-weight:bold;
	color:#000;
	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: 12%;
	margin: 0 2%;
}
.global-nav ul.nav-sns li a {
	color:#130801;
}
.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: 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: 767px) {
	#pcheader {
		display: none;
	}

.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;
	transition: all .6s;
	z-index: 2000000;
	overflow-y: scroll; /* メニューが多くなったらスクロールできるように */
  }
  .global-nav__list {
	margin: 10px 0 10px;
  }
  .global-nav__item {
	margin: 15px 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.5rem;
	line-height: 3.0rem;
	letter-spacing: 1.5px;
	color: #000;
	font-weight: 900;
}
.global-nav__item a .jp {
	width: 100%;
	font-size:3vw;
}
.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;
	
	}
	.global-nav ul.nav-sns li {
		width: 8%;
		margin: 0 1.5%;
	}
  
  ul#nav-button {
	  display:none !important;
  }
  
}  


/* 以下タブレット・スマホ */
@media (max-width: 600px) {
	.global-nav #menu-logo {
		width:54%;
		height:auto;
		margin:10vw 23% 0;
		padding:0;
		text-align:center;
		position: relative;
	}  
	.global-nav #menu-item {
		width:16%;
		height:auto;
		position: absolute;
		bottom: 12%;
		right: 5%;
		pointer-events: none;
	}  
	.global-nav__item {
		margin: 20px 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: 2.2rem;
		letter-spacing: 1.0px;
	}
	.global-nav__item a .jp {
		width: 100%;
		font-size:3.2vw;
		transform: translateY(-36px);
	}
	.global-nav .nav-sns {
		margin: 8vw 0 0 !important;
	}
	.global-nav ul.nav-sns li {
		width: 13%;
		margin: 0 1.5%;
	}

	
}




/* ========================================
トップwrapper 
========================================== */
#wrapper {
	width: 100%;
	height: auto;
	position: relative;
	overflow-x: hidden;
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
	-webkit-perspective: 1000;  
	perspective: 1000;
}


/* ========================================
トップ
========================================== */
#top {
	width:100%;
	height:auto;
	padding:0;
	margin:0;
	position:relative;
	overflow-x: hidden;
}
#top #top__bg {
	width: 100%;
	height: auto;
}
#top #top__bg img {
	width: 100%;
	height: auto;
	aspect-ratio: 1920 / 1080;
}
#top #top__taiwan {
	width: 26%;
	height: auto;
	position: absolute;
	top: 1.5%;
	left: 37%;
	opacity: 0;
}
#top #top__waku {
	width: 94.479%;
	height: auto;
	position: absolute;
	top: 6%;
	left: 2.7605%;
	opacity: 0;
}
#top #top__waku img {
	width: 100%;
	height: auto;
	aspect-ratio: 1814 / 832;
}
#top #top__logo {
	width: 24%;
	height: auto;
	margin: 0;
	padding: 0;
	position: absolute;
	bottom: 7%;
	left: 38%;
	opacity: 0;
}
#top #top__date {
	width: 28%;
	height: auto;
	position: absolute;
	bottom: 12.5%;
	left: 6%;
	opacity: 0;
}
#top #top__bb {
	width: 27.5%;
	height: auto;
	position: absolute;
	bottom: 10.5%;
	right: 7.5%;
	opacity: 0;
}
#top #top__enlogo {
	width: 0.60%;
	height: auto;
	position: absolute;
	top: 8%;
	left: 49.7%;
	opacity: 0;
}
#top #top__tate1 {
	width: 1.02%;
	height: auto;
	position: absolute;
	top: 33.1%;
	left: 63.2%;
	opacity: 0;
}
#top #top__tate2 {
	width: 1.02%;
	height: auto;
	position: absolute;
	top: 37%;
	left: 59%;
	opacity: 0;
}
#top #top__tate3 {
	width: 1.02%;
	height: auto;
	position: absolute;
	top: 42.7%;
	left: 40%;
	opacity: 0;
}
#top #top__tate4 {
	width: 1.02%;
	height: auto;
	position: absolute;
	top: 34.5%;
	left: 35.6%;
	opacity: 0;
}
#top #top__item1 {
	width: 2.15%;
	height: auto;
	position: absolute;
	top: 36.7%;
	right: 9.8%;
	opacity: 0;
}
#top #top__item2 {
	width: 2.092667%;
	height: auto;
	position: absolute;
	top: 11.9%;
	right: 12.5%;
	opacity: 0;
}
#top #top__item3 {
	width: 2.19%;
	height: auto;
	position: absolute;
	top: 24%;
	right: 18.9%;
	opacity: 0;
}
#top #top__item4 {
	width: 2.19%;
	height: auto;
	position: absolute;
	top: 45.6%;
	right: 24.2%;
	opacity: 0;
}
#top #top__item5 {
	width: 2.19%;
	height: auto;
	position: absolute;
	top: 15.5%;
	right: 26.7%;
	opacity: 0;
}
#top #top__item6 {
	width: 2.10%;
	height: auto;
	position: absolute;
	top: 9%;
	left: 26.7%;
	opacity: 0;
}
#top #top__item7 {
	width: 2.31%;
	height: auto;
	position: absolute;
	top: 40%;
	left: 25.3%;
	opacity: 0;
}
#top #top__item8 {
	width: 2.0%;
	height: auto;
	position: absolute;
	top: 29%;
	left: 18.8%;
	opacity: 0;
}
#top #top__item9 {
	width: 2.22%;
	height: auto;
	position: absolute;
	top: 12.5%;
	left: 13.6%;
	opacity: 0;
}
#top #top__item10 {
	width: 2.10%;
	height: auto;
	position: absolute;
	top: 36.3%;
	left: 10.5%;
	opacity: 0;
}
#top #top__eirin {
	width: 2.5%;
	height: auto;
	position: absolute;
	bottom: 12%;
	right: 2.7605%;
	opacity: 0;
}

@keyframes fadeInDown {
	0% {opacity: 0;transform: translateY(-20%);}
	100% {opacity: 1;transform: translateY(0%);}
}

.top__taiwan {
	animation: fadeIn 1.0s ease 1.2s forwards;
}
.top-rain1 {
	animation: fadeInDown 0.6s ease-out 2.1s forwards;
}
.top-rain2 {
	animation: fadeInDown 0.6s ease-out 2.4s forwards;
}
.top-rain3 {
	animation: fadeInDown 0.6s ease-out 2.7s forwards;
}
.top-rain4 {
	animation: fadeInDown 0.6s ease-out 3.0s forwards;
}
.top__last {
	animation: fadeIn 1.5s ease 3.4s forwards;
}





/* 以下タブレット・スマホ */
@media (max-width: 1024px) {
	#top #top__bg img {
		width: 100%;
		height: auto;
		aspect-ratio: 1170 / 2300;
	}
	#top #top__taiwan {
		width: 80%;
		height: auto;
		position: absolute;
		top: 3%;
		left: 10%;
		opacity: 0;
	}
	#top #top__waku {
		width: 100%;
		height: auto;
		position: absolute;
		top: 8%;
		left: 0%;
		text-align: center;
		opacity: 0;
	}
	#top #top__waku img {
		width: 97.4359%;
		height: auto;
		aspect-ratio: 1140 / 1551;
	}
	#top #top__logo {
		width: 56%;
		height: auto;
		margin: 0;
		padding: 0;
		position: absolute;
		bottom: 28%;
		left: 22%;
		opacity: 0;
	}
	#top #top__date {
		width: 84%;
		height: auto;
		position: absolute;
		bottom: 4%;
		left: 8%;
		opacity: 0;
	}
	#top #top__bb {
		width: 76%;
		height: auto;
		position: absolute;
		bottom: 15%;
		right: 12%;
		opacity: 0;
	}
	#top #top__enlogo {
		width: 1.8%;
		height: auto;
		position: absolute;
		top: 10%;
		left: 49.1%;
		opacity: 0;
	}
	#top #top__tate1 {
		width: 2.45%;
		height: auto;
		position: absolute;
		top: 35%;
		left: 82%;
		opacity: 0;
	}
	#top #top__tate2 {
		width: 2.45%;
		height: auto;
		position: absolute;
		top: 38%;
		left: 73%;
		opacity: 0;
	}
	#top #top__tate3 {
		width: 2.45%;
		height: auto;
		position: absolute;
		top: 41%;
		left: 26%;
		opacity: 0;
	}
	#top #top__tate4 {
		width: 2.45%;
		height: auto;
		position: absolute;
		top: 36%;
		left: 16%;
		opacity: 0;
	}
	#top #top__item1 {
		width: 3.5%;
		height: auto;
		position: absolute;
		top: 21%;
		right: 9%;
		opacity: 0;
	}
	#top #top__item2 {
		width: 3.5%;
		height: auto;
		position: absolute;
		top: 10%;
		right: 13%;
		opacity: 0;
	}
	#top #top__item3 {
		width: 3.5%;
		height: auto;
		position: absolute;
		top: 16%;
		right: 22%;
		opacity: 0;
	}
	#top #top__item4 {
		width: 3.5%;
		height: auto;
		position: absolute;
		top: 26%;
		right: 30%;
		opacity: 0;
	}
	#top #top__item5 {
		width: 3.5%;
		height: auto;
		position: absolute;
		top: 12%;
		right: 33%;
		opacity: 0;
	}
	#top #top__item6 {
		width: 3.5%;
		height: auto;
		position: absolute;
		top: 9%;
		left: 37%;
		opacity: 0;
	}
	#top #top__item7 {
		width: 3.5%;
		height: auto;
		position: absolute;
		top: 25%;
		left: 35%;
		opacity: 0;
	}
	#top #top__item8 {
		width: 3.5%;
		height: auto;
		position: absolute;
		top: 19%;
		left: 24%;
		opacity: 0;
	}
	#top #top__item9 {
		width: 3.7%;
		height: auto;
		position: absolute;
		top: 11%;
		left: 14%;
		opacity: 0;
	}
	#top #top__item10 {
		width: 3.5%;
		height: auto;
		position: absolute;
		top: 24%;
		left: 9%;
		opacity: 0;
	}
	#top #top__eirin {
		width: 5%;
		height: auto;
		position: absolute;
		bottom: 22%;
		right: 1.8%;
		opacity: 0;
	}



}

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



}


/* ========================================
ブリッジ
========================================== */
#bridge {
	width: 100%;
	height: auto;
	padding: 3vw 0 3vw;
	background-color: #fff7ec;
	position: relative;
}
#bridge #theater {
	width: 100%;
	height: auto;
	margin: 0 0 2vw;
	text-align: center;
}
#bridge #theater img {
	width: 15%;
}
#bridge #sns-link {
	width: 100%;
	height: auto;
	margin: 0 0 2vw;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
#bridge #sns-link a {
	display: block;
	width: 15%;
	height: auto;
	margin: 0 1%;
}
#bridge #sns-link a:hover ,
#bridge #theater a: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;
}


/* 以下タブレット・スマホ */
@media (max-width: 1024px) {
	#bridge {
		width: 100%;
		height: auto;
		padding: 5vw 0 5vw;
		position: relative;
	}
	#bridge #theater {
		width: 100%;
		height: auto;
		margin: 0 0 5vw;
		text-align: center;
	}
	#bridge #theater img {
		width: 60%;
	}
	#bridge #sns-link {
		width: 100%;
		height: auto;
		margin: 0 0 5vw;
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
	}
	#bridge #sns-link a {
		display: block;
		width: 60%;
		height: auto;
		margin: 1vw 0;
	}


}

/* ========================================
トレーラー
========================================== */
.trailer {
	width:100%;
	height:auto;
	margin:0;
	padding:3vw 0 7vw;
	overflow: hidden;
	position: relative;
	background-color: #fff7ec;
}
.trailer h2 {
	width:100%;
	height:auto;
	padding:0;
	margin:0 0 1.5vw;
	text-align: center;
	position: relative;
	opacity: 0;
}
.trailer h2 img {
	width: 10%;
}
#video-wrap {
	width: 60%;
	height: auto;
	margin: 0 20%;
	padding: 0;
	opacity: 0;
	position: relative;
	z-index: 1;
	box-sizing: border-box;
	border: 3px solid #d35d27;
}
.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 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;
}


/* 以下スマホ */
@media (max-width: 1024px) {
	.trailer {
		width:100%;
		padding:10vw 0 10vw;
	}
	.trailer h2 {
		width:90%;
		height:auto;
		padding:0;
		margin:0 5% 5vw;
		position: relative;
		text-align: center;
	}
	.trailer h2 img {
		width: 30%;
	}
	#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;
	}
}

@media (max-width: 610px) {
	.trailer {
		width:100%;
		height:auto;
		margin:0;
		padding:13vw 0 20vw;
	}
	.trailer h2 {
		width:99%;
		height:auto;
		padding:0;
		margin:0 0 5vw 1%;
		position: relative;
	}
	.trailer h2 img {
		width: 35%;
	}
	#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;
		display:block;
	}
	.movie-btn {
		width: 45%;
		font-size: 3vw;
	}
}


/* ========================================
湯徳章（トゥン・テッチョン）
========================================== */
#about {
	width: 100%;
	height: auto;
	position: relative;
}
#about .slide-wrap {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
	flex-wrap: nowrap;
	overflow: hidden;
	filter: brightness(70%);
}
#about #slider2 {
	display: none;
}
#about .slide-wrap .top-slide {
	list-style-type: none;
	margin: 0;
	padding: 0;
	display: flex;	
	perspective: 1000;
	backface-visibility:hidden;
	-webkit-backface-visibility:hidden;
}
#slider1 .top-slide {
	animation: loop-slide 400s infinite linear 0s both;
}
#about .slide-wrap .top-slide .content {
	width: auto;
	height: 100vh;
	margin: 0;
}
#about .slide-wrap .top-slide .content img {
	width: auto;
	height: 100vh;
	vertical-align: bottom;
	backface-visibility:hidden;
	-webkit-backface-visibility:hidden;
}
#about #about__photo {
	width: 30%;
	height: auto;
	position: absolute;
	bottom: 0;
	right: 0;
}
#about #about__txt {
	width: 44%;
	height: auto;
	position: absolute;
	top: 30%;
	left: 28%;
}
#about #about__txt h2 {
	width: 100%;
	height: auto;
	margin: 0 0 2vw;
	text-align: center;
}
#about #about__txt h2 img {
	width: 40%;
}
#about #about__txt p {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	color: #fff;
	font-size: 1.1vw;
	line-height: 2vw;
	letter-spacing: 1.5px;
	font-weight: 500;
}

/* 以下タブレット・スマホ */
@media (max-width: 1024px) {
	#about .slide-wrap {
		width: 100%;
		height: auto;
		margin: 0;
		padding: 0;
		display: flex;
		align-items: center;
		flex-wrap: nowrap;
		overflow: hidden;
		filter: brightness(100%);
	}
	#about #slider2 {
		display: flex;
	}
	#about .slide-wrap .top-slide {
		list-style-type: none;
		margin: 0;
		padding: 0;
		display: flex;	
		perspective: 1000;
		backface-visibility:hidden;
		-webkit-backface-visibility:hidden;
	}
	#slider1 .top-slide {
		animation: loop-slide 100s infinite linear 0s both;
	}
	#slider2 .top-slide {
		animation: loop-slide-rev 200s infinite linear 0s both;
	}
	#about .slide-wrap .top-slide .content {
		width: 100vw;
		height: auto;
		margin: 0;
	}
	#about .slide-wrap .top-slide .nopc {
		display: none;
	}
	#about .slide-wrap .top-slide .content img {
		width: 100%;
		height: auto;
		vertical-align: bottom;
		backface-visibility:hidden;
		-webkit-backface-visibility:hidden;
	}
	#about #about__photo {
		width: 50%;
		height: auto;
		position: absolute;
		bottom: 0;
		right: 0;
	}
	#about #about__txt {
		width: 90%;
		height: auto;
		position: absolute;
		top: 10%;
		left: 5%;
	}
	#about #about__txt h2 {
		width: 100%;
		height: auto;
		margin: 0 0 10vw;
		text-align: center;
	}
	#about #about__txt h2 img {
		width: 50%;
	}
	#about #about__txt p {
		width: 100%;
		height: auto;
		margin: 0;
		padding: 0;
		color: #fff;
		font-size: 1.1rem;
		line-height: 2rem;
		letter-spacing: 1.5px;
		font-weight: 500;
	}
}

/* 以下タブレット・スマホ */
@media (max-width: 600px) {
	#about .slide-wrap .top-slide .content {
		width: 200vw;
		height: auto;
		margin: 0;
	}
	#about #about__photo {
		width: 70%;
		height: auto;
		position: absolute;
		bottom: 0;
		right: 0;
	}
	#about #about__txt {
		width: 90%;
		height: auto;
		position: absolute;
		top: 10%;
		left: 5%;
	}
	#about #about__txt h2 img {
		width: 60%;
	}
}





/* ========================================
物語
========================================== */
.story-bg {
	width: 100%;
	height: 100%;
	min-height: 100%;
	background-size: cover;
	background-position: center center;
	position: fixed;
	top: 0;
	left: 0;
	z-index: -30;
}
@keyframes story-bg1 {
	0% {opacity: 1;}
	40% {opacity: 1;}
	50% {opacity: 0;}
	90% {opacity: 0;}
	100% {opacity: 1;}
}
@keyframes story-bg2 {
	0% {opacity: 0;}
	40% {opacity: 0;}
	50% {opacity: 1;}
	90% {opacity: 1;}
	100% {opacity: 0;}
}
#story-bg1 {
	animation: story-bg1 8s ease infinite;
}
#story-bg2 {
	animation: story-bg2 8s ease infinite;
}
#story {
	width: 100%;
	height: auto;
	padding: 20vw 0;
}
#story h2 {
	width: 100%;
	height: auto;
	margin: 0 0 20vw;
	padding: 0;
	text-align: center;
}
#story h2 img {
	width: 7%;
}
#story p {
	width: 50%;
	height: auto;
	box-sizing: border-box;
	padding: 3vw 5%;
	margin: 0 25%;
	background-color: rgba(0, 0, 0, 0.5);
	backdrop-filter: blur(8px);
	color: #fff;
	font-weight: 500;
	font-size: 1.1vw;
	line-height: 2vw;
	letter-spacing: 1.5px;
}

/* 以下タブレット・スマホ */
@media (max-width: 1024px) {
	.story-bg {
		width: 100%;
		height: 107%;
		min-height: 107%;
		background-size: cover;
		background-position: center center;
		position: fixed;
		top: 0;
		left: 0;
		z-index: -30;
	}
	#story {
		width: 100%;
		height: auto;
		padding: 50vw 0;
	}
	#story h2 {
		width: 100%;
		height: auto;
		margin: 0 0 50vw;
		padding: 0;
		text-align: center;
	}
	#story h2 img {
		width: 20%;
	}
	#story p {
		width: 80%;
		height: auto;
		box-sizing: border-box;
		padding: 10vw 8%;
		margin: 0 10%;
		background-color: rgba(0, 0, 0, 0.5);
		backdrop-filter: blur(8px);
		color: #fff;
		font-weight: 500;
		font-size: 1.1rem;
		line-height: 2rem;
		letter-spacing: 1.5px;
	}
}

@media (max-width: 600px) {
	#story {
		width: 100%;
		height: auto;
		padding: 100vw 0;
	}
	#story h2 {
		width: 100%;
		height: auto;
		margin: 0 0 100vw;
		padding: 0;
		text-align: center;
	}
	#story h2 img {
		width: 25%;
	}
	#story p {
		width: 100%;
		height: auto;
		box-sizing: border-box;
		padding: 10vw 5%;
		margin: 0;
		background-color: rgba(0, 0, 0, 0.5);
		backdrop-filter: blur(8px);
		color: #fff;
		font-weight: 500;
		font-size: 1.1rem;
		line-height: 2.4rem;
		letter-spacing: 1.5px;
	}


}

/* ========================================
解説
========================================== */
#explanation {
	width: 100%;
	height: auto;
	padding: 10vw 0;
	background-image: url(../img/TT-ex-bgtanzaku-pc.jpg);
	background-repeat: repeat-y;
}
#explanation h2 {
	width: 100%;
	height: auto;
	margin: 0 0 5vw;
	padding: 0;
	text-align: center;
}
#explanation h2 img {
	width: 7%;
}
#explanation p {
	width: 50%;
	height: auto;
	margin: 0 25% 3vw;
	font-weight: 600;
	font-size: 1.1vw;
	line-height: 2vw;
	letter-spacing: 1.5px;
}
#explanation .slide-wrap {
	width: 100%;
	height: auto;
	margin: 0 0 3vw;
	padding: 0;
	display: flex;
	align-items: center;
	flex-wrap: nowrap;
	overflow: hidden;
}
#explanation #ex-slider1 {
	margin: 0 0 5vw;
}
#explanation #ex-slider3 {
	margin: 5vw 0 0;
}
#explanation .slide-wrap .top-slide {
	list-style-type: none;
	margin: 0;
	padding: 0;
	display: flex;	
	perspective: 1000;
	backface-visibility:hidden;
	-webkit-backface-visibility:hidden;
}
#ex-slider1 .top-slide {
	animation: loop-slide 150s infinite linear 0s both;
}
#ex-slider3 .top-slide {
	animation: loop-slide-rev 150s infinite linear 0s both;
}
#explanation .slide-wrap .top-slide .content {
	width: 25vw;
	height: auto;
	margin: 0;
}
#explanation .slide-wrap .top-slide .content img {
	width: 100%;
	height: auto;
	vertical-align: bottom;
	backface-visibility:hidden;
	-webkit-backface-visibility:hidden;
}
#explanation #ex-logo {
	width: 100%;
	height: auto;
	text-align: center;
}
#explanation #ex-logo img {
	width: 20%;
}

/* 以下タブレット・スマホ */
@media (max-width: 1024px) {
	#explanation {
		width: 100%;
		height: auto;
		padding: 30vw 0;
		background-image: none;
		background-color: #fff7ec;
	}
	#explanation h2 {
		width: 100%;
		height: auto;
		margin: 0 0 10vw;
		padding: 0;
		text-align: center;
	}
	#explanation h2 img {
		width: 20%;
	}
	#explanation p {
		width: 90%;
		height: auto;
		margin: 0 5% 10vw;
		font-weight: 900;
		font-size: 1.15rem;
		line-height: 2.2rem;
		letter-spacing: 1.5px;
	}
	#explanation .slide-wrap {
		margin: 0 0 10vw;
	}
	#explanation #ex-slider1 {
		margin: 0 0 10vw;
	}
	#explanation #ex-slider3 {
		margin: 10vw 0 0;
	}

	#explanation .slide-wrap .top-slide .content {
		width: 60vw;
		height: auto;
		margin: 0;
	}
	#explanation #ex-logo img {
		width: 40%;
	}
}

@media (max-width: 600px) {
	#explanation .slide-wrap .top-slide .content {
		width: 80vw;
		height: auto;
		margin: 0;
	}
	#explanation #ex-logo img {
		width: 50%;
	}
}



/* ========================================
スタッフ
========================================== */
#staff-bg {
	width: 100%;
	height: 100%;
	min-height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	pointer-events: none;
	z-index: -25;
	opacity: 0;
}
#staff-bg .staff-bg {
	width: 100%;
	height: 100%;
	min-height: 100%;
	background-size: cover;
	background-position: center center;
	position: fixed;
	top: 0;
	left: 0;
}
@keyframes staff-bg2 {
	0% {opacity: 0;}
	15% {opacity: 0;}
	25% {opacity: 1;}
	90% {opacity: 1;}
	100% {opacity: 0;}
}
@keyframes staff-bg3 {
	0% {opacity: 0;}
	40% {opacity: 0;}
	50% {opacity: 1;}
	90% {opacity: 1;}
	100% {opacity: 0;}
}
@keyframes staff-bg4 {
	0% {opacity: 0;}
	65% {opacity: 0;}
	75% {opacity: 1;}
	90% {opacity: 1;}
	100% {opacity: 0;}
}
#staff-bg #staff-bg2 {
	animation: staff-bg2 8s ease infinite;
}
#staff-bg #staff-bg3 {
	animation: staff-bg3 8s ease infinite;
}
#staff-bg #staff-bg4 {
	animation: staff-bg4 8s ease infinite;
}
#staff {
	width: 100%;
	height: auto;
	padding: 20vw 0 30vw;
}
#staff h2 {
	width: 100%;
	height: auto;
	margin: 0 0 20vw;
	text-align: center;
}
#staff h2 img {
	width: 12%;
}
#staff .staff-unit {
	width: 60%;
	height: auto;
	margin: 0 20% 10vw;
}
#staff .staff-unit .prof {
	width: 100%;
	height: auto;
	box-sizing: border-box;
	background-color: rgba(255, 247, 236, 0.8);
	padding: 3vw 8vw;
}
#staff .staff-unit .prof .role {
	width: 60%;
	height: auto;
	padding: 0 0 0.5vw;
	margin: 0 20%;
	text-align: center;
	font-size: 1.6vw;
	font-weight: 900;
	letter-spacing: 2px;
	border-bottom: 3px solid #000;
}
#staff .staff-unit .prof .name {
	width: 100%;
	height: auto;
	margin: 2vw 0;
	text-align: center;
}
#staff .staff-unit .prof .name img {
	width: 30%;
}
#staff .staff-unit .prof p {
	width: 100%;
	height: auto;
	color: #000;
	font-size: 1.1vw;
	line-height: 2vw;
	letter-spacing: 1.5px;
	font-weight: 600;
}
#staff .staff-unit .comment {
	width: 100%;
	height: auto;
	box-sizing: border-box;
	background-color: rgba(211, 93, 39, 0.8);
	padding: 5vw 8vw 3vw;
}
#staff .staff-unit .comment .com-title {
	width: 50%;
	height: auto;
	padding: 0 0 0.5vw;
	margin: 0 25% 3vw;
	text-align: center;
	border-bottom: 3px solid #fff7ec;
}
#staff .staff-unit .comment .com-title img {
	width: 50%;
}
#staff .staff-unit .comment p {
	width: 100%;
	height: auto;
	color: #fff7ec;
	font-size: 1.1vw;
	line-height: 2vw;
	letter-spacing: 1.5px;
	font-weight: 500;
}

/* 以下タブレット・スマホ */
@media (max-width: 1024px) {
	#staff-bg .staff-bg {
		width: 100%;
		height: 105%;
		min-height: 105%;
		background-size: cover;
		background-position: center bottom;
		position: fixed;
		top: 0;
		left: 0;
	}
	#staff {
		width: 100%;
		height: auto;
		padding: 50vw 0 50vw;
	}
	#staff h2 {
		width: 100%;
		height: auto;
		margin: 0 0 50vw;
		text-align: center;
	}
	#staff h2 img {
		width: 30%;
	}
	#staff .staff-unit {
		width: 80%;
		height: auto;
		margin: 0 10% 20vw;
	}
	#staff .staff-unit .prof {
		width: 100%;
		height: auto;
		box-sizing: border-box;
		background-color: rgba(255, 247, 236, 0.8);
		padding: 15vw 10vw;
	}
	#staff .staff-unit .prof .role {
		width: 80%;
		height: auto;
		padding: 0 0 5vw;
		margin: 0 10%;
		text-align: center;
		font-size: 1.4rem;
		font-weight: 900;
		letter-spacing: 2px;
		border-bottom: 3px solid #000;
	}
	#staff .staff-unit .prof .name {
		width: 100%;
		height: auto;
		margin: 5vw 0;
		text-align: center;
	}
	#staff .staff-unit .prof .name img {
		width: 50%;
	}
	#staff .staff-unit .prof p {
		width: 100%;
		height: auto;
		color: #000;
		font-size: 1.1rem;
		line-height: 2rem;
		letter-spacing: 1.5px;
		font-weight: 600;
	}
	#staff .staff-unit .comment {
		width: 100%;
		height: auto;
		box-sizing: border-box;
		background-color: rgba(211, 93, 39, 0.8);
		padding: 15vw 10vw;
	}
	#staff .staff-unit .comment .com-title {
		width: 80%;
		height: auto;
		padding: 0 0 5vw;
		margin: 0 10% 5vw;
		text-align: center;
		border-bottom: 3px solid #fff7ec;
	}
	#staff .staff-unit .comment .com-title img {
		width: 50%;
	}
	#staff .staff-unit .comment p {
		width: 100%;
		height: auto;
		color: #fff7ec;
		font-size: 1.1rem;
		line-height: 2rem;
		letter-spacing: 1.5px;
		font-weight: 500;
	}
}

@media (max-width: 600px) {
	#staff {
		width: 100%;
		height: auto;
		padding: 100vw 0 100vh;
	}
	#staff h2 {
		width: 100%;
		height: auto;
		margin: 0 0 100vw;
		text-align: center;
	}
	#staff h2 img {
		width: 35%;
	}
	#staff .staff-unit {
		width: 94%;
		height: auto;
		margin: 0 3% 30vw;
	}
	#staff .staff-unit .prof {
		width: 100%;
		height: auto;
		box-sizing: border-box;
		background-color: rgba(255, 247, 236, 0.8);
		padding: 15vw 5vw;
	}
	#staff .staff-unit .prof .role {
		width: 100%;
		height: auto;
		padding: 0 0 5vw;
		margin: 0;
		text-align: center;
		font-size: 1.5rem;
		font-weight: 900;
		letter-spacing: 2px;
		border-bottom: 3px solid #000;
	}
	#staff .staff-unit .prof .name {
		width: 100%;
		height: auto;
		margin: 10vw 0;
		text-align: center;
	}
	#staff .staff-unit .prof .name img {
		width: 60%;
	}
	#staff .staff-unit .prof p {
		width: 100%;
		height: auto;
		color: #000;
		font-size: 1.1rem;
		line-height: 2rem;
		letter-spacing: 1.5px;
		font-weight: 600;
	}
	#staff .staff-unit .comment {
		width: 100%;
		height: auto;
		box-sizing: border-box;
		background-color: rgba(211, 93, 39, 0.8);
		padding: 15vw 5vw;
	}
	#staff .staff-unit .comment .com-title {
		width: 100%;
		height: auto;
		padding: 0 0 5vw;
		margin: 0 0 5vw;
		text-align: center;
		border-bottom: 3px solid #fff7ec;
	}
	#staff .staff-unit .comment .com-title img {
		width: 40%;
	}
	#staff .staff-unit .comment p {
		width: 100%;
		height: auto;
		color: #fff7ec;
		font-size: 1.1rem;
		line-height: 2rem;
		letter-spacing: 1.5px;
		font-weight: 500;
	}
}

/* ========================================
キャスト
========================================== */
#cast {
	width: 100%;
	height: auto;
	padding: 0;
	background-color: #000;
	position: relative;
}
#cast #cast-bg {
	width: 100%;
	height: auto;
	opacity: 0;
}
#cast #cast-bg img {
	width: 100%;
	height: auto;
	aspect-ratio: 1920 / 1080;
}
.cast-bg {
	animation: fadeIn 2.0s ease forwards;
}
#cast #cast-contents {
	width: 48%;
	height: auto;
	position: absolute;
	top: 10vw;
	left: 26%;
	z-index: 2;
}
#cast #cast-contents h2 {
	width: 100%;
	height: auto;
	margin: 0 0 3vw;
	padding: 0;
	text-align: center;
}
#cast #cast-contents h2 img {
	width: 20%;
}
#cast #cast-contents #cast-name {
	width: 100%;
	height: auto;
	margin: 0 0 3vw;
	padding: 0;
	text-align: center;
}
#cast #cast-contents #cast-name img {
	width: 30%;
}
#cast #cast-contents p {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	color: #fff;
	font-size: 1.1vw;
	line-height: 2vw;
	letter-spacing: 1.5px;
	font-weight: 500;
}

/* 以下タブレット・スマホ */
@media (max-width: 1024px) {
	#cast {
		width: 100%;
		height: auto;
		padding: 20vw 0 0;
		background-color: #000;
		position: relative;
	}
	#cast #cast-contents {
		width: 100%;
		height: auto;
		position: static;
	}
	#cast #cast-contents h2 {
		width: 100%;
		height: auto;
		margin: 0 0 15vw;
		padding: 0;
		text-align: center;
	}
	#cast #cast-contents h2 img {
		width: 30%;
	}
	#cast #cast-contents #cast-name {
		width: 100%;
		height: auto;
		margin: 0 0 10vw;
		padding: 0;
		text-align: center;
	}
	#cast #cast-contents #cast-name img {
		width: 50%;
	}
	#cast #cast-contents p {
		width: 90%;
		height: auto;
		margin: 0 5% 10vw;
		padding: 0;
		color: #fff;
		font-size: 1.1rem;
		line-height: 2.2rem;
		letter-spacing: 1.5px;
		font-weight: 500;
	}
	#cast #cast-bg {
		width: 100%;
		height: auto;
		opacity: 0;
	}
	#cast #cast-bg img {
		width: 100%;
		height: auto;
		aspect-ratio: 1163 / 1232;
	}
	.cast-bg {
		animation: fadeIn 2.0s ease forwards;
	}
}

@media (max-width: 1024px) {

}


/* ========================================
コメント
========================================== */
#comment {
	width: 100%;
	height: auto;
	padding: 10vw 0 10vw;
	background-color: #fff7ec;
}
#comment h2 {
	width: 100%;
	height: auto;
	margin: 0 0 5vw;
	padding: 0;
	text-align: center;
}
#comment h2 img {
	width: 16%;
}
#comment .com-unit {
	width: 50%;
	height: auto;
	box-sizing: border-box;
	margin: 0 25% 7vw;
	padding: 5vw;
	border: 3px solid #d35d27;
}
#comment .com-unit p {
	width: 90%;
	height: auto;
	margin: 0 5%;
	font-size: 1.1vw;
	line-height: 2vw;
	letter-spacing: 1.5px;
	color: #000;
	font-weight: 500;
}
#comment .com-unit .title {
	width: 100%;
	height: auto;
	margin: 1vw 0 1vw;
	padding: 1vw 0 0;
	border-top: 3px solid #d35d27;
	color: #d35d27;
	font-size: 1.2vw;
	letter-spacing: 1.5px;
	font-weight: 600;
	text-align: center;
}
#comment .com-unit .name {
	width: 100%;
	height: auto;
	color: #d35d27;
	font-size: 1.5vw;
	letter-spacing: 1.5px;
	font-weight: 600;
	text-align: center;
}

/* 以下タブレット・スマホ */
@media (max-width: 1024px) {
	#comment {
		width: 100%;
		height: auto;
		padding: 20vw 0 20vw;
		background-color: #fff7ec;
	}
	#comment h2 {
		width: 100%;
		height: auto;
		margin: 0 0 10vw;
		padding: 0;
		text-align: center;
	}
	#comment h2 img {
		width: 40%;
	}
	#comment .com-unit {
		width: 90%;
		height: auto;
		box-sizing: border-box;
		margin: 0 5% 20vw;
		padding: 10vw 5vw;
		border: 3px solid #d35d27;
	}
	#comment .com-unit p {
		width: 100%;
		height: auto;
		margin: 0;
		font-size: 1.1rem;
		line-height: 2rem;
		letter-spacing: 1.5px;
		color: #000;
		font-weight: 500;
	}
	#comment .com-unit .title {
		width: 100%;
		height: auto;
		margin: 5vw 0 3vw;
		padding: 5vw 0 0;
		border-top: 3px solid #d35d27;
		color: #d35d27;
		font-size: 1.2rem;
		letter-spacing: 1.5px;
		font-weight: 600;
		text-align: center;
	}
	#comment .com-unit .name {
		width: 100%;
		height: auto;
		color: #d35d27;
		font-size: 1.5rem;
		letter-spacing: 1.5px;
		font-weight: 600;
		text-align: center;
	}

}



/* ========================================
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 0.2vw;
	opacity: 1;
	overflow: hidden;
}
#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: #fff7ec;
	position: relative;
}
footer #foot-bg1 {
	width: 100%;
	height: auto;
}
footer #foot-bg2 {
	width: 100%;
	height: auto;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
}
footer #foot-image1 {
	width: 18%;
	height: auto;
	position: absolute;
	top: 16%;
	left: 18%;
	opacity: 0;
}
footer #foot-image2 {
	width: 22.5%;
	height: auto;
	position: absolute;
	top: 52%;
	left: 8%;
	opacity: 0;
}
footer #foot-image3 {
	width: 13.5%;
	height: auto;
	position: absolute;
	top: 13%;
	right: 6%;
	opacity: 0;
}
footer #foot-image4 {
	width: 16%;
	height: auto;
	position: absolute;
	top: 57%;
	right: 3%;
	opacity: 0;
}
footer #foot-image5 {
	width: 15%;
	height: auto;
	position: absolute;
	top: 35%;
	right: 16%;
	opacity: 0;
}
footer #foot-logo {
	width: 25%;
	height: auto;
	position: absolute;
	bottom: 9%;
	left: 37.5%;
	opacity: 0;
}
footer #button-area {
	position: absolute;
	bottom: 0;
	opacity: 0;
}
.foot-bg2 {
	animation: fadeIn 1.0s ease 0.2s forwards;
}
.foot-down1-anime {
	animation: fadeInDown 0.6s ease-out 1.2s forwards
}
.foot-down2-anime {
	animation: fadeInDown 0.6s ease-out 1.6s forwards
}
.foot-down3-anime {
	animation: fadeInDown 0.6s ease-out 2.0s forwards
}
.foot-last-anime {
	animation: fadeIn 1.0s ease 2.5s forwards;
}



@media (max-width: 1024px) {
	footer {
		width:100%;
		height:auto;
		padding:0;
		margin:0;
		position: relative;
		background-color: #fff7ec;
	}
	footer #foot-image1 ,
	footer #foot-image2 ,
	footer #foot-image3 ,
	footer #foot-image4 ,
	footer #foot-image5 {
		display: none;
	}
	footer #foot-logo {
		width: 50%;
		height: auto;
		position: absolute;
		bottom: 10%;
		left: 25%;
		opacity: 0;
	}
	.foot-last-anime {
		animation: fadeIn 1.0s ease 1.2s forwards;
	}

}
@media (max-width: 510px) {
	footer #foot-logo {
		width: 60%;
		height: auto;
		position: absolute;
		bottom: auto;
		top: 8%;
		left: 20%;
		opacity: 0;
	}

}

