html{
  height:100vh; 
}

body { margin: 0; padding:0;font-family: '游ゴシック体',YakuHanJP,'Noto Sans JP', YuGothic, '游ゴシック Medium', 'Yu Gothic Medium', '游ゴシック', 'Yu Gothic', 'メイリオ', sans-serif; width:100%; height:100vh;overflow-x:hidden;}
body > footer {
	position: sticky;
	top: 100vh;
}	
body:before{
  content:"";
  display:block;
  position:fixed;
  top:0;
  left:0;
  z-index:-10;
  width:100%;
  height:100vh;
  background:url(../img/story_bg_pc.jpg) no-repeat;
	background-size: cover;
	background-position: center center;
}
img {
    image-rendering: -webkit-optimize-contrast;
}
.clearfix{
  zoom:1;
}
.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
  overflow: hidden;/* 隙間対応 */
  font-size: 0.1em;/* 隙間対応 */
  line-height: 0;/* 隙間対応 */
}
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;
}
.fadeInTeaser {
	animation-name:fadeIn;
	animation-duration:1.5s;
	animation-fill-mode:forwards;
	animation-timing-function: ease-out;
}
.fadeInFast {
	animation-name:fadeIn;
	animation-duration:0.2s;
	animation-fill-mode:forwards;
	animation-timing-function: ease-out;
}


@keyframes 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) {
	.pcimg {display: none !important;}
	.spimg {display: inline;}
	body:before{
		content:"";
		display:block;
		position:fixed;
		top:0;
		left:0;
		z-index:-10;
		width:100%;
		height:100vh;
		background:url(../img/story_bg_sp.jpg) no-repeat;
		background-size: cover;
		background-position: center center;
	}
	br.sponly {display:inline;}
	br.sponly2 {display:none;}
	br.pconly {display:inline;}
}
@media (max-width: 610px) {
	br.sponly2 {display:inline;}
	br.pconly {display:none;}

}




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

/* 非表示 */
.is-hidee {
    display: none;
}
/* ローディング画面をフェードアウト */
.fadeout-bg {
    transition-property: opacity;
    transition-delay: 0s;
    transition-duration: 1s;
    opacity: 0;
    pointer-events: none;
}
/* ローダーをフェードアウト */
.fadeout-loader {
    transition-property: opacity;
    transition-delay: 0.5s;
    transition-duration: 2.0s;
    opacity: 0;
    pointer-events: none;
}
/* ローディング画面 */
#loader-bg {
    background: #fff;
    height: 100%;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000000;
    display: grid;
    place-items: center;
}
#loader {
	width:25%;
	height:auto;
	margin:0;
	padding:0;
	position:relative;
}
#loader #load1 {
	width:100%;
	height:100%;
	margin:0;
	padding:0;
    display: grid;
    place-items: center;
	animation-name: anime1;
	animation-duration: 3s;
	animation-timing-function: ease;
	animation-delay:0;
	animation-iteration-count: infinite;
	animation-fill-mode:forwards;
}
#loader #load1 img {
	width:100%;
	height:auto;
}
@keyframes anime1 {
	0% {	opacity:0;	}
	15% {	opacity:1;	}
	85% {	opacity:1;	}
	100% {	opacity:0;	}
}


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

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

#loader #load1 img {
	width:100%;
	height:auto;
}


}


/* ========================================
ヘッダー
========================================== */

#pcheader {
	display: block;
	width:100%;
	height:auto;
	padding:15px 0 20px;
	position:fixed;
	top:0;
	background: -moz-linear-gradient(top, #5A090F, transparent);
	background: -webkit-linear-gradient(top, #5A090F, transparent);
	background: linear-gradient(to bottom, #5A090F, 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;
	flex-wrap: wrap;
}
#pcheader ul#pcmenu li.menusns {
	width:auto;
	height:auto;
	margin:0 0.5%;
	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.4vw;
	line-height:1.4vw;
	text-align: center;
	color: #F2B9AD;
	font-family: 'Edu TAS Beginner', cursive;
	letter-spacing: 1px;
}
#pcheader ul#pcmenu li.menusns a span.eng {
	transform: translateY(-2px);
}
#pcheader ul#pcmenu li.menusns a span.eng img {
	width: 1.5vw;
}
#pcheader ul#pcmenu li a span.jpn {
	display: block;
	width: 100%;
	font-size:0.7vw;
	line-height:0.7vw;
	text-align: center;
	color: #F2B9AD;
	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: 10px;
	background-color: #5A090F;
	transition: all .6s;
	z-index: 200000;
	overflow-y: scroll;
}
.hamburger {
	position: fixed;
	left: 5px;
	top: 1px;
	width: 65px;
	height: 65px;
	cursor: pointer;
	z-index: 300000;
	opacity:0;
}  
.global-nav #menu-logo {
	width:90%;
	height:auto;
	margin:5vw 5% 8vw;
	padding:0;
	text-align:center;
	position: relative;
}  
.global-nav #menu-logo img {
	width: 55%;
}
.global-nav__list {
	margin: 0;
	padding: 0;
	list-style: none;
}
.global-nav__item {
	text-align: center;
	padding: 0.1vw 0px;
}
.global-nav__item a {
	display: block;
	padding: 5px 0;
	text-decoration: none;	
	color: #F2B9AD;
	transition: all .6s;
	font-family: 'Edu TAS Beginner', cursive;
	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: #F2B9AD !important;
	transition: all .6s;
}  
.hamburger #menu {
	position: absolute;
	top: 44px;
	left: 9px;
	font-weight:bold;
	color:#F2B9AD;
	font-size:1.0em;
	font-style: normal;
	font-weight: 400;
} 
.global-nav ul.nav-sns {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	list-style-type: none;
	display: flex;
	justify-content: center;
}
.global-nav ul.nav-sns li {
	width: 4%;
	margin: 0 2%;
}
.global-nav ul.nav-sns li a {
	color:#000;
}

.global-nav ul.nav-sns li img {
	width: 100%;
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}
.global-nav ul.nav-sns li img:hover {
  opacity: 1;
  -webkit-animation: flash 1.5s;
  animation: flash 1.5s;
}

  .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: 800px) {
	#pcheader {
		display: none;
	}

.navigation {
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 80%;
	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: 95%;
	min-height: 95%;
	padding: 40px 0 100px;
	transition: all .6s;
	z-index: 200;
	overflow-y: scroll; /* メニューが多くなったらスクロールできるように */
  }
  .global-nav__item a {
	display: block;
	padding: 5px 0;
	text-decoration: none;
	transition: all .6s;
  }
  .global-nav__item a .en {
	width: 100%;
	font-size:3em;
	line-height: 1em;
	font-family: 'Edu TAS Beginner', cursive;
	letter-spacing: 1px;	
}

	.global-nav__item a .jp {
		width: 100%;
		font-size:3vw;
	}
.global-nav ul.nav-sns li {
	width: 10%;
	margin: 2vw 2% 0;
	text-align: center;
}
.global-nav ul.nav-sns li a {
	font-size: 10vw;
}
.global-nav #tw-menu {
	width:100%;
	height:auto;
	padding:20px 0;
	margin:0;
	text-align: center;
	opacity: 1;
	position: relative;
	color: #fff;
	font-size: 10vw;
}
.global-nav #tw-menu a {
	color: #fff;
}
  
	/* 表示された時用のCSS */
	.nav-open .global-nav {
	  top: 0;
	}
	.nav-open .black-bg {
	  opacity: .8;
	  visibility: visible;
	}
	.nav-open .hamburger__line--1 {
	  transform: rotate(45deg);
	  top: 20px;
	
	}
	.nav-open .hamburger__line--2 {
	  width: 0;
	  left: 50%;
	
	}
	.nav-open .hamburger__line--3 {
	  transform: rotate(-45deg);
	  top: 20px;
	
	}
  
  
  ul#nav-button {
	  display:none !important;
  }
  
}  


/* 以下タブレット・スマホ */
@media (max-width: 550px) {
	.global-nav__item {
		margin: 2px 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:1.6em;
		line-height: 1em;
		font-family: 'Edu TAS Beginner', cursive;
		letter-spacing: 1px;
		transform: translateY(-18px);	
	}
	.global-nav__item a .jp {
		width: 100%;
		font-size:3.2vw;
		transform: translateY(-36px);
	}
	.nav-sns {
		transform: translateY(-40px);
	}
}





/* ========================================
トップメイン画像まわり
========================================== */
#topmain {
	width:100%;
	height:auto;
	padding:0;
	margin:0;
	position:relative;
	overflow: hidden;
	background-color: #5A090F;
}
#topmain #top-bg {
	width:100%;
	height:auto;
	padding:0;
	margin:0;
}
#topmain #main-title {
	width: 26%;
	height: auto;
	margin: 0;
	padding: 0;
	position: absolute;
	top: 8%;
	left: 32.5%;
	opacity: 1
}
#topmain #main-title #main-title-inner {
	width: 100%;
	height: auto;
	position: relative;
}
#topmain #main-title #main-title-inner #main-title1 {
	width: 100%;
	height: auto;
	opacity: 0;
}
#topmain #main-title #main-title-inner #main-title2 ,
#topmain #main-title #main-title-inner #main-title3 ,
#topmain #main-title #main-title-inner #main-title4 {
	width: 100%;
	height: auto;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
}
#topmain #top-catch {
	width: 1.3%;
	height: auto;
	position: absolute;
	top: 34%;
	left: 50%;
	transform: translateX(-50%);
	opacity: 0;
}
#topmain #newselect {
	width: 12%;
	height: auto;
	position: absolute;
	top: 6.5%;
	right: 3%;
	opacity: 0;
}
.main-title1 {
	animation-name:fadeIn;
	animation-duration:1.5s;
	animation-delay: 1.2s;
	animation-fill-mode:forwards;
	animation-timing-function: ease-out;
}
.main-title2 {
	animation-name:fadeIn;
	animation-duration:1.5s;
	animation-delay: 1.5s;
	animation-fill-mode:forwards;
	animation-timing-function: ease-out;
}
.main-title3 {
	animation-name:fadeIn;
	animation-duration:1.5s;
	animation-delay: 1.8s;
	animation-fill-mode:forwards;
	animation-timing-function: ease-out;
}
.main-title4 {
	animation-name:fadeIn;
	animation-duration:1.5s;
	animation-delay: 2.1s;
	animation-fill-mode:forwards;
	animation-timing-function: ease-out;
}
.top-catch {
	animation-name:fadeIn;
	animation-duration:1.5s;
	animation-delay: 2.4s;
	animation-fill-mode:forwards;
	animation-timing-function: ease-out;
}
.newselect {
	animation-name:fadeIn;
	animation-duration:1.5s;
	animation-delay: 2.7s;
	animation-fill-mode:forwards;
	animation-timing-function: ease-out;
}
#topmain #billing-sp {
	display: none;
}
#topmain #base {
	width: 50%;
	height: auto;
	position: absolute;
	top: 30%;
	left: 25%;
}






/* 以下タブレット・スマホ */
@media (max-width: 1024px) {
	#topmain {
		width:100%;
		height:auto;
		padding:0;
		margin:0;
		position:relative;
		overflow: hidden;
		background: #43010B;
	}
	#topmain #main-title {
		width: 78%;
		height: auto;
		margin: 0;
		padding: 0;
		position: absolute;
		top: 8%;
		left: 0%;
		opacity: 1
	}
	#topmain #top-catch {
		width: 4%;
		height: auto;
		position: absolute;
		top: 30%;
		left: 50%;
		transform: translateX(-50%);
		opacity: 0;
	}
	#topmain #newselect {
		width: 26%;
		height: auto;
		position: absolute;
		top: 2%;
		right: 3%;
		opacity: 0;
	}
	#topmain #billing-sp {
		display: block;
		width: 90%;
		height: auto;
		position: absolute;
		bottom: 1.8%;
		left: 5%;
		opacity: 0;
	}
	
}

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


}


/* ========================================
ブリッジ
========================================== */
#bridge {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 2vw 0;
	background-color: #5A090F;
}
#bridge #billing {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 1vw 0;
	text-align: center;
	opacity: 0;
}
#bridge #billing img {
	width: 50%;
	height: auto;
	vertical-align: bottom;
}
#bridge #date {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 2vw 0;
	text-align: center;
	opacity: 0;
}
#bridge #date img {
	width: 55%;
	height: auto;
	vertical-align: bottom;
}
#bridge #theater-banner {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 2vw 0;
	list-style-type: none;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	opacity: 0;
}
#bridge #theater-banner li {
	width: 20%;
	height: auto;
	margin: 0 2%;
}
#bridge #present-banner {
	width: 100%;
	height: auto;
	margin: 1vw 0 2vw;
	text-align: center;
	opacity: 0;
}
#bridge #present-banner img {
	width: 20%;
}
#bridge #present-banner img:hover {
	animation: flash 1.5s;
}
#bridge #tieup-banner {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0 0 2vw;
	list-style-type: none;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	opacity: 0;
}
#bridge #tieup-banner li {
	width: 15%;
	height: auto;
	margin: 0 2%;
}
#bridge #mubi-wrap {
	width: 100%;
	height: auto;
	margin: 1vw 0;
	text-align: center;
	opacity: 0;
}
#bridge #mubi-wrap #mvtk-widgets-container {
	display: inline-block;
}
#bridge #com-banner {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 2vw 0;
	text-align: center;
	opacity: 0;
}
#bridge #com-banner img {
	width: 20%;
	height: auto;
	vertical-align: bottom;
}
#bridge #sns-link {
	width: 100%;
	height: auto;
	margin: 1vw 0 1vw;
	padding: 0;
	list-style-type: none;
	display: flex;
	justify-content: center;
	opacity: 0;
}
#bridge #sns-link li {
	width: 3%;
	height: auto;
	margin: 0 1%;
}
#bridge #sns-link li img {
	width: 100%;
	height: auto;
}
#bridge #theater-banner img:hover ,
#bridge #tieup-banner img:hover ,
#bridge #com-banner img:hover ,
#bridge #sns-link li img:hover {
	opacity: 1;
	-webkit-animation: flash 1.5s;
	animation: flash 1.5s;
}


/* 以下タブレット・スマホ */
@media (max-width: 1024px) {
	#bridge {
		width: 100%;
		height: auto;
		margin: 0;
		padding: 3vw 0 5vw;
		background: #43010B;
	}
	#bridge #billing {
		display: none;
	}
	#bridge #date {
		width: 100%;
		height: auto;
		margin: 0;
		padding: 8vw 0 2vw;
		text-align: center;
		opacity: 0;
	}
	#bridge #date img {
		width: 80%;
		height: auto;
		vertical-align: bottom;
	}
	#bridge #theater-banner {
		width: 100%;
		height: auto;
		margin: 0;
		padding: 6vw 0 2vw;
		text-align: center;
		opacity: 0;
	}
	#bridge #theater-banner li {
		width: 70%;
		height: auto;
		margin: 2vw 0;
	}
	#bridge #present-banner {
		width: 100%;
		height: auto;
		margin: 0vw 0 2vw;
		text-align: center;
		opacity: 0;
	}
	#bridge #present-banner img {
		width: 70%;
	}
	#bridge #tieup-banner {
		width: 100%;
		height: auto;
		margin: 0;
		padding: 2vw 0 8vw;
		list-style-type: none;
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
		opacity: 0;
	}
	#bridge #tieup-banner li {
		width: 60%;
		height: auto;
		margin: 0 2%;
	}
	#bridge #mubi-wrap {
		width: 100%;
		height: auto;
		margin: 2vw 0 8vw;
		text-align: center;
		opacity: 0;
	}
	#bridge #com-banner {
		width: 100%;
		height: auto;
		margin: 0;
		padding: 3vw 0 8vw;
		text-align: center;
		opacity: 0;
	}
	#bridge #com-banner img {
		width: 70%;
		height: auto;
		vertical-align: bottom;
	}
	#bridge #sns-link {
		width: 100%;
		height: auto;
		margin: 3vw 0 10vw;
		padding: 0;
		list-style-type: none;
		display: flex;
		justify-content: center;
		opacity: 0;
	}	
	#bridge #sns-link li {
		width: 12%;
		height: auto;
		margin: 0 3%;
	}

}

/* 以下タブレット・スマホ */
@media (max-width: 610px) {
	#bridge {
		width: 100%;
		height: auto;
		margin: 0;
		padding: 1vw 0;
		background: #43010B;
	}
	#bridge #sns-link {
		width: 100%;
		height: auto;
		margin: 3vw 0 6vw;
		padding: 0;
		list-style-type: none;
		display: flex;
		justify-content: center;
		opacity: 0;
	}	
	#bridge #sns-link li {
		width: 10%;
		height: auto;
		margin: 0 3%;
	}

}


/* ========================================
モーダル
========================================== */
.modal{
    display: none;
    height: 100%;
    position: fixed;
    top: 0;
    width: 100%;
	z-index: 999999;
	overflow-x: hidden;
	box-sizing: border-box;
}
.modal__bg{
	background:url(../img/AML-present-bg-pc.jpg) no-repeat;
	background-size: cover;
	background-position: center center;
    height: 100%;
    position: absolute;
    width: 100%;
	overflow-x: hidden;
	box-sizing: border-box;
}
.movie-bg {
	background:#000;
	background-size: cover;
	background-position: center center;
    height: 100%;
    position: absolute;
    width: 100%;
	opacity: 0.8;
}
.modal__content {
    width: 60%;
	height: 80%; /* スクロール時は80% */
    padding: 3vw 2% 6vw;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-55%);
	background-size: cover;
	background-position: center center;
	overflow-y: scroll;
	background-color: #DFC493;
	border-radius: 15px;
	-ms-overflow-style: none;
	text-align: center;
	scrollbar-width: thin;
	scrollbar-color: #6b5e49 #ccc;
	box-sizing: border-box;
}
.modal__content::-webkit-scrollbar {
    width: 5px;
}
.modal__content::-webkit-scrollbar-track{
	background-color: #ccc;
}
.modal__content::-webkit-scrollbar-thumb{
	background-color: #6b5e49;
}
.modal__content h2 {
	width: 60%;
	height: auto;
	margin: 0 20% 3vw;
	text-align: center;
}
.modal__content #present-pc {
	width: 56%;
	height: auto;
	margin: 3vw 22%;
}
.modal__content .pre-unit {
	display: none;
}
.modal__content p {
	width: 70%;
	height: auto;
	margin: 0 15%;
	color: #000;
	font-size: 1rem;
	text-align: left;
}
.modal__content h3 {
	width: 100%;
	height: auto;
	margin: 6vw 0 2vw;
	text-align: center;
	font-size: 1.2vw;
	color: #43010B;
}
.modal__content .sponlyh3 {
	display: none;
}

.modal__content .modal-image {
	width: 100%;
	height: auto;
	margin: 1vw 0;
	text-align: center;
}
.modal__content .modal-image img {
	width: 25%;
}
.modal__content .modal-list {
	width: 70%;
	height: auto;
	margin: 2vw 15% 0;
	padding: 0;
	color: #000;
	font-size: 1rem;
	text-align: left;
}
.batsu {
	width: 3%;
	height: auto;
	position: fixed;
	top: 2%;
	right: 2%;
}
.batsu img {
	width: 100%;
}



/* 以下タブレット・スマホ */
@media (max-width: 1024px) {
	.modal__bg{
		background:url(../img/AML-present-bg-sp.jpg) no-repeat;
		background-size: cover;
		background-position: center bottom;
		height: 100%;
		min-height: 100%;
		position: absolute;
		width: 100%;
		overflow-x: hidden;
		box-sizing: border-box;
	}	
	.batsu {
		width: 10%;
		height: auto;
		position: fixed;
		top: 3%;
		right: 3%;
	}
	.modal__content {
		width: calc(90% - 5px);
		height: 70%;
		padding: 70px 0 150px;
		background-color: #DFC493;
		position: absolute;
		left: 50%;
		top: 50%;
		transform: translate(-50%,-50%);
		overflow-y: scroll;
		box-sizing: border-box;
	}
	.modal__content h2 {
		width: 74%;
		height: auto;
		margin: 0 13% 10vw;
	}
	.modal__content #present-pc {
		display: none;
	}
	.modal__content h3 {
		width: 100%;
		height: auto;
		margin: 20vw 0 5vw;
		padding: 0;
		font-size: 1.2rem;
	}
	.modal__content .sponlyh3 {
		display: block;
	}
	.modal__content .pre-unit {
		display: block;
		width: 90%;
		height: auto;
		margin: 5vw 5% 5vw;
	}
	.modal__content .second-preuni {
		margin-top: 15vw;
	}
	.modal__content .pre-unit .pre-img {
		width: 56%;
		height: auto;
		margin: 5vw 22% 2vw;
	}
	.modal__content .pre-unit .poster-img {
		width: 70%;
		height: auto;
		margin: 5vw 15% 2vw;
	}
	.modal__content .pre-unit .pre-txt {
		width: 100%;
		height: auto;
		font-size: 1rem;
		color: #000;
		text-align: left;
	}
	.modal__content p {
		width: 90%;
		height: auto;
		margin: 0 5%;
		color: #000;
		font-size: 1rem;
		text-align: left;
	}
	.modal__content .modal-image img {
		width: 50%;
	}
	.modal__content .modal-list {
		width: 85%;
		height: auto;
		margin: 2vw 5% 0 10%;
		padding: 0;
		color: #000;
		font-size: 1rem;
		text-align: left;
	}
	.close-btn {
		width: 40%;
		height: auto;
		padding: 2px 0;
		border: none;
		text-align: center;
		color: #fff;
		font-size: 1rem;
		border-radius: 10px;
		background-color: #009C91;
		box-shadow:2px 2px 2px #004641,
				 -2px -2px 2px #02e6d6;
		transition: all 0.6s;
		text-decoration: none;
		position: fixed;
		bottom: 5%;
		left: 30%;
		transform: translateX(0%);
	}
	
}




/* ========================================
サントラ
========================================== */
#ost {
	width:100%;
	height:auto;
	margin:0;
	padding:5vw 0 0;
	position: relative;
	background: #5A090F;
}
#ost h2 {
	width: 100%;
	height: auto;
	margin: 0 0 3vw;
	padding: 0;
	position: relative;
	opacity: 0;
}
#ost h2 #ost-title {
	width: 100%;
	height: auto;
	text-align: center;
}
#ost h2 #ost-title img {
	width: 20%;
}
#ost h2 #ost-note {
	width: 2%;
	height: auto;
	position: absolute;
	top: -20%;
	left: 61%;
	animation: note 0.8s step-start 0s infinite;
}
@keyframes note {
	0% {
		transform: rotate(0deg);
	}
	50% {
		transform: rotate(15deg);
	}
	100% {
		transform: rotate(0deg);
	}
}
#ost #ost-wrapper {
	width: 50%;
	height: auto;
	margin: 0 25%;
}


/* 以下タブレット・スマホ */
@media (max-width: 1024px) {
	#ost {
		width:100%;
		height:auto;
		margin:0;
		padding:10vw 0 10vw;
		position: relative;
		background: #43010B;
	}
	#ost h2 {
		width: 100%;
		height: auto;
		margin: 0 0 3vw;
		padding: 0;
		position: relative;
		opacity: 0;
	}
	#ost h2 #ost-title {
		width: 100%;
		height: auto;
		text-align: center;
	}
	#ost h2 #ost-title img {
		width: 30%;
	}
	#ost h2 #ost-note {
		width: 5%;
		height: auto;
		position: absolute;
		top: -20%;
		left: 66%;
		animation: note 0.8s step-start 0s infinite;
	}
	#ost #ost-wrapper {
		width: 80%;
		height: auto;
		margin: 0 10%;
	}
}

/* 以下タブレット・スマホ */
@media (max-width: 610px) {
	#ost h2 #ost-title img {
		width: 45%;
	}
	#ost h2 #ost-note {
		width: 5%;
		height: auto;
		position: absolute;
		top: -35%;
		left: 76%;
		animation: note 0.8s step-start 0s infinite;
	}
	#ost #ost-wrapper {
		width: 90%;
		height: auto;
		margin: 0 5%;
	}
}


/* ========================================
トレーラー
========================================== */
.trailer {
	width:100%;
	height:auto;
	margin:0;
	padding:10vw 0 8vw;
	overflow: hidden;
	position: relative;
	background: #5A090F;
}
.trailer h2 {
	width:100%;
	height:auto;
	padding:0;
	margin:0 0 1vw;
	text-align:center;
	position: relative;
	opacity: 0;
}
.trailer h2 img {
	width:12%;
	height:auto;
	vertical-align: bottom;
}
.trailer #pig-stand {
	display: none;
}
.trailer .top-slide-wrap {
	width: 100%;
	height: auto;
	padding: 5vw 0 3vw;
	margin: 0;
	display: flex;
	align-items: center;
	flex-wrap: nowrap;
	overflow: hidden;
	position: relative;
}
.trailer .top-slide-wrap .top-slide {
	width: 100%;
	animation: loop-slide-rev 30s infinite linear 1s both;
	display: flex;
	flex-wrap: nowrap;
	list-style-type: none;
	margin: 0;
	padding: 0;
}
.trailer .top-slide-wrap .top-slide .content {
	width: 40vw;
	height: auto;
	margin: 0;
	text-align: center;
}
.trailer .top-slide-wrap .top-slide .content img {
	width: 100%;
	height: auto;
	vertical-align: bottom;
}
.trailer #video-wrap {
	width: 50%;
	height: auto;
	margin: 0;
	padding: 0 25%;
	position: absolute;
	top: 27%;
	left: 0;
}
.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: 100%;
	height: auto;
	margin: 10px 0;
	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 #F2B9AD;
	color: #F2B9AD;
	font-size: 1.1vw;
}
.movie-btn i {
	display: none;
}
.activee {
	background: #F2B9AD;
	border: 1px solid #F2B9AD;
	color: #5A090F;
}
.activee i {
	display: inline;
}
.movie-btn:hover {
	background: #F2B9AD;
	border: 1px solid #F2B9AD;
	color: #5A090F;
	cursor: pointer;
	transition-duration: 0.6s;
}
.trailer #sp-trailer-slide {display:none;}

/* 以下スマホ */
@media (max-width: 1024px) {
	.trailer {
		width:100%;
		padding:30px 0 10vw;
		background: #43010B;
	}
	.trailer h2 {
		margin:0 0 4vw;
	}
	.trailer h2 img {
		width:20%;
		height:auto;
		vertical-align: bottom;
	}
	.trailer #video-wrap {
		width: 70%;
		height: auto;
		margin: 0;
		padding: 0 15%;
		position: absolute;
		top: 18%;
		left: 0;
	}
	.video {
		width:90%;
		position: relative;
		padding-bottom: 56.25%;
		height: 0;
		overflow: hidden;
		margin:0 5% 10px;
		display:block;
	}
	.movie-btn {
		width: 30%;
		font-size: 2vw;
	}
}

@media (max-width: 610px) {
	.trailer {
		width:100%;
		height:auto;
		margin:0;
		padding:10vw 0 15vw;
		background: #43010B;
		position: relative;
		overflow-x: hidden;
	}
	.trailer h2 img {
		width:30%;
		height:auto;
		vertical-align: bottom;
	}
	@keyframes pig {
		0% {
			transform: rotate(0deg);
		}
		30% {
			transform: rotate(0deg);
		}		
		40% {
			transform: rotate(11deg);
		}
		50% {
			transform: rotate(-11deg);
		}
		60% {
			transform: rotate(11deg);
		}		
		70% {
			transform: rotate(0deg);
		}		
		100% {
			transform: rotate(0deg);
		}
	}
	
	.trailer #pig-stand {
		display: block;
		width: 10%;
		height: auto;
		position: absolute;
		top: 4%;
		left: 20%;
		animation: pig 3s linear 0s infinite;
		transform-origin: center bottom;
	}
	.trailer .top-slide-wrap {
		display: none;
	}
	.trailer #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%;
		height: auto;
		margin: 0 1%;
		padding: 3px 0;
		text-align: center;
		font-size: 3vw;
	}
	.movie-btn i {
		display: none;
	}
	.activee {

	}
	.activee i {
		display: inline;
	}
	.movie-btn:hover {
		cursor: pointer;
		transition-duration: 0.6s;
	}
	.trailer #sp-trailer-slide {
		display: block;
		width: 50%;
		height: auto;
		padding: 5vw 0;
		position: relative;
		animation: toRightTrailer 6s linear 0s infinite;
	}
	@keyframes toRightTrailer {
		0% {
			opacity: 0;
			left: -90%;
		}
		2% {
			opacity: 1;
		}
		98% {
			opacity: 1;
			left: 100%;
		}
		99% {
			opacity: 0;
			left: 100%;
		}
		100% {
			opacity: 0;
			left: -100%;
		}
	}
	
}


/* ========================================
イントロ＆ストーリー
========================================== */
#intro {
	width: 100%;
	height: auto;
	position: relative;
	z-index: -20;
	overflow-x: hidden;
}
#intro #intro-head-pc {
	display: block;
	width: 100%;
	height: auto;
	position: relative;
}
#intro #intro-head-pc #intro-head-pc-bg {
	width: 100%;
	height: auto;
}
#intro #intro-head-pc #intro-head1 {
	width: 25%;
	height: auto;
	position: absolute;
	top: 35%;
	left: 55%;
	opacity: 0;
}
#intro #intro-head-pc #intro-head2 {
	width: 2%;
	height: auto;
	position: absolute;
	top: 51%;
	left: 60%;
	opacity: 0;
}
#intro #intro-head-pc #intro-head3 {
	width: 10%;
	height: auto;
	position: absolute;
	top: 57%;
	left: 55%;
	opacity: 0;
}
@keyframes intro-head1 {
	0% {
		opacity: 0;
		transform: translate(-100% , 50%) skew(0deg, 0deg);
	}
	50% {opacity: 0;}
	92% {
		opacity: 1;
		transform: translate(5% , 0%) skew(-10deg, 0deg);
	}
	100% {
		opacity: 1;
		transform: translate(0% , 0%) skew(0deg, 0deg);
	}
}
@keyframes intro-head2 {
	0% {
		opacity: 0;
		transform: translate(-100% , 0%) skew(0deg, 0deg);
	}
	50% {opacity: 0;}
	92% {
		opacity: 1;
		transform: translate(5% , 0%) skew(-10deg, 0deg);
	}
	100% {
		opacity: 1;
		transform: translate(0% , 0%) skew(0deg, 0deg);
	}
}
@keyframes intro-head3 {
	0% {
		opacity: 0;
		transform: translate(-100% , -50%) skew(0deg, 0deg);
	}
	50% {opacity: 0;}
	92% {
		opacity: 1;
		transform: translate(5% , 0%) skew(-10deg, 0deg);
	}
	100% {
		opacity: 1;
		transform: translate(0% , 0%) skew(0deg, 0deg);
	}
}
.intro-head1 {
	animation: intro-head1 0.6s cubic-bezier(0.5, 0, 0.75, 0) 0s forwards;
}
.intro-head2 {
	animation: intro-head2 0.6s cubic-bezier(0.5, 0, 0.75, 0) 0.4s forwards;
}
.intro-head3 {
	animation: intro-head3 0.6s cubic-bezier(0.5, 0, 0.75, 0) 0.8s forwards;
}
#intro #intro-txt {
	width: 60%;
	height: auto;
	padding: 10vw 20% 20vw;
	text-align: center;
	animation: intro-txt 10s ease 0s infinite;
}
@keyframes intro-txt {
	0% {background-color: #7b1016;}
	5% {background-color: #7b1016;}
	40% {background-color: #0f331c;}
	60% {background-color: #0f331c;}
	95% {background-color: #7b1016;}
	100% {background-color: #7b1016;}
}
#intro #intro-txt #intro-catch {
	width: 100%;
	height: auto;
	margin: 0 0 2vw;
	text-align: center;
}
#intro #intro-txt #intro-catch img {
	width: 90%;
}
#intro #intro-txt p {
	display: inline-block;
	width: 100%;
	max-width: 1024px;
	height: auto;
	margin: 0;
	padding: 1.5vw 0;
	color: #fff;
	font-size: 1.1vw;
	line-height: 2vw;
	font-feature-settings: "palt";
	letter-spacing: 2px;
	text-align: left;
	opacity: 0;
}
#intro-item1 {
	width: 18%;
	height: auto;
	position: fixed;
	bottom: 0;
	left: 5%;
	z-index: -19;	
	opacity: 0;
}
#intro-item2 {
	width: 15%;
	height: auto;
	position: fixed;
	bottom: 0;
	left: 70%;
	z-index: -18;
	opacity: 0;
}
#intro-item3 {
	width: 10%;
	height: auto;
	position: fixed;
	bottom: 0;
	left: 81%;
	z-index: -19;
	opacity: 0;
}
@keyframes intro-item1 {
	0% {
		opacity: 0;
	}
	20% {
		opacity: 0;
	}
	30% {
		opacity: 1;
	}
	80% {
		opacity: 1;
	}
	90% {
		opacity: 0;
	}
	100% {
		opacity: 0;	
	}	
}
@keyframes intro-item2 {
	0% {
		opacity: 0;
	}
	30% {
		opacity: 0;
	}
	40% {
		opacity: 1;
	}
	80% {
		opacity: 1;
	}
	90% {
		opacity: 0;
	}
	100% {
		opacity: 0;	
	}	
}
@keyframes intro-item3 {
	0% {
		opacity: 0;
	}
	40% {
		opacity: 0;
	}
	50% {
		opacity: 1;
	}
	80% {
		opacity: 1;
	}
	90% {
		opacity: 0;
	}
	100% {
		opacity: 0;	
	}	
}
.intro-item1 {
	animation: intro-item1 5s ease 0s infinite;
}
.intro-item2 {
	animation: intro-item2 5s ease 0s infinite;
}
.intro-item3 {
	animation: intro-item3 5s ease 0s infinite;
}
#intro-sp-head {
	display: none;
}

/* 以下スマホ */
@media (max-width: 1024px) {
	#intro #intro-txt {
		width: 80%;
		height: auto;
		padding: 10vw 10% 20vw;
		text-align: center;
		animation: intro-txt 10s ease 0s infinite;
	}
	#intro #intro-txt p {
		display: inline-block;
		width: 100%;
		max-width: 1024px;
		height: auto;
		margin: 0;
		padding: 1em 0;
		color: #fff;
		font-size: 1em;
		line-height: 2em;
		font-feature-settings: "palt";
		letter-spacing: 2px;
		text-align: left;
		opacity: 0;
	}
	#intro-item1 {
		width: 30%;
		height: auto;
		position: fixed;
		bottom: 0;
		left: 5%;
		z-index: -19;	
		opacity: 0;
	}
	#intro-item2 {
		width: 25%;
		height: auto;
		position: fixed;
		bottom: 0;
		left: 60%;
		z-index: -18;
		opacity: 0;
	}
	#intro-item3 {
		width: 20%;
		height: auto;
		position: fixed;
		bottom: 0;
		left: 81%;
		z-index: -19;
		opacity: 0;
	}
}

@media (max-width: 610px) {
	#intro-sp-head {
		display: block;
		width: 100%;
		height: auto;
		position: fixed;
		top: 0;
		left: 0;
		z-index: -19;
	}
	#intro-sp-head #intro-sp-head-inner {
		width: 100%;
		height: auto;
		position: relative;
	}
	#intro-sp-head #intro-sp-head-inner #intro-sp-head-bg {
		width: 100%;
		height: auto;
	}
	#intro-sp-head #intro-sp-head-inner #intro-head1sp {
		width: 45%;
		height: auto;
		position: absolute;
		top: 22%;
		left: 50%;
		opacity: 0;
	}
	#intro-sp-head #intro-sp-head-inner #intro-head2sp {
		width: 4%;
		height: auto;
		position: absolute;
		top: 48%;
		left: 57%;
		opacity: 0;
	}
	#intro-sp-head #intro-sp-head-inner #intro-head3sp {
		width: 20%;
		height: auto;
		position: absolute;
		top: 62%;
		left: 50%;
		opacity: 0;
	}
	#intro #intro-head-pc {
		display: none;
	}
	#intro #intro-txt {
		width: 90%;
		height: auto;
		padding: 200vw 5% 20vw;
		text-align: center;
		animation: intro-txt 10s ease 0s infinite;
	}
	#intro #intro-txt p {
		display: inline-block;
		width: 100%;
		max-width: 1024px;
		height: auto;
		margin: 0;
		padding: 1em 0;
		color: #fff;
		font-size: 1em;
		line-height: 2em;
		font-feature-settings: "palt";
		letter-spacing: 2px;
		text-align: left;
		opacity: 0;
	}
	@keyframes intro-item1 {
		0% {
			opacity: 1;
		}
		40% {
			opacity: 1;
		}
		50% {
			opacity: 0;
		}
		90% {
			opacity: 0;
		}
		100% {
			opacity: 1;	
		}	
	}
	@keyframes intro-item2 {
		0% {
			opacity: 0;
		}
		40% {
			opacity: 0;
		}
		50% {
			opacity: 1;
		}
		90% {
			opacity: 1;
		}
		100% {
			opacity: 0;	
		}	
	}	
	#intro-item1 {
		width: 55%;
		height: auto;
		position: fixed;
		bottom: 0;
		left: 5%;
		z-index: -19;	
		opacity: 0;
	}
	#intro-item2 {
		width: 50%;
		height: auto;
		position: fixed;
		bottom: 0;
		left: 50%;
		z-index: -18;
		opacity: 0;
	}
	#intro-item3 {
		display: none;
	}
	.intro-item1 {
		animation: intro-item1 8s ease 0s infinite;
	}
	.intro-item2 {
		animation: intro-item2 8s ease 0s infinite;
	}
	
}





/* ========================================
バブル
========================================== */
#bubble {
	width: 100%;
	height: auto;
	position: relative;
	overflow: hidden;
}
#bubble #bubble-bg {
	width: 100%;
	height: auto;
}
@keyframes toLeft {
	0% {
		opacity: 0;
		left: 100%;
	}
	1% {
		opacity: 1;
	}
	60% {
		opacity: 1;
	}
	75% {
		opacity: 0;
	}
	85% {
		opacity: 0;
		left: -5%;
	}
	99% {
		opacity: 0;
		left: 100%;
	}
	100% {
		opacity: 0;
		left: 100%;
	}
}
@keyframes toRight {
	0% {
		opacity: 0;
		left: -5%;
	}
	20% {
		opacity: 0;
	}
	40% {
		opacity: 1;
	}
	85% {
		opacity: 1;
		left: 100%;
	}
	99% {
		opacity: 0;
		left: 100%;
	}
	100% {
		opacity: 0;
		left: -5%;
	}
}

@keyframes sway1 {
	0% {
		transform: translateY(0px);
	}
	50% {
		transform: translateY(50px);
	}
	100% {
		transform: translateY(0px);
	}
}
@keyframes sway2 {
	0% {
		transform: translateY(-50px);
	}
	50% {
		transform: translateY(20px);
	}
	100% {
		transform: translateY(-50px);
	}
}
#bubble #bubble-up1 {
	width: 15%;
	height: auto;
	position: absolute;
	top: 12%;
	left: 100%;
	animation: toLeft 31s linear 0s infinite , sway1 3s ease 0s infinite;
}
#bubble #bubble-up2 {
	width: 11%;
	height: auto;
	position: absolute;
	top: 17%;
	left: 100%;
	animation: toLeft 31s linear 4.5s infinite , sway1 3.7s ease 0s infinite;
}
#bubble #bubble-up3 {
	width: 18%;
	height: auto;
	position: absolute;
	top: 25%;
	left: 100%;
	animation: toLeft 31s linear 9s infinite , sway2 3.2s ease 0s infinite;
}
#bubble #bubble-up4 {
	width: 8%;
	height: auto;
	position: absolute;
	top: 6%;
	left: 100%;
	animation: toLeft 31s linear 13.5s infinite , sway2 4s ease 0s infinite;
}
#bubble #bubble-up5 {
	width: 12%;
	height: auto;
	position: absolute;
	top: 12%;
	left: 100%;
	animation: toLeft 31s linear 18s infinite , sway1 3.4s ease 0s infinite;
}
#bubble #bubble-up6 {
	width: 9%;
	height: auto;
	position: absolute;
	top: 21%;
	left: 100%;
	animation: toLeft 31s linear 22.5s infinite , sway2 3.6s ease 0s infinite;
}
#bubble #bubble-up7 {
	width: 22%;
	height: auto;
	position: absolute;
	top: 15%;
	left: 100%;
	animation: toLeft 31s linear 26s infinite , sway1 5.5s ease 0s infinite;
}
#bubble #bubble-down1 {
	width: 15%;
	height: auto;
	position: absolute;
	top: 50%;
	left: -40%;
	animation: toRight 31s linear 0s infinite , sway1 3s ease 0s infinite;
}
#bubble #bubble-down2 {
	width: 11%;
	height: auto;
	position: absolute;
	top: 70%;
	left: -40%;
	animation: toRight 31s linear 4.5s infinite , sway1 3.5s ease 0s infinite;
}
#bubble #bubble-down3 {
	width: 25%;
	height: auto;
	position: absolute;
	top: 57%;
	left: -40%;
	animation: toRight 31s linear 11s infinite , sway2 3.3s ease 0s infinite;
}
#bubble #bubble-down4 {
	width: 8%;
	height: auto;
	position: absolute;
	top: 50%;
	left: -40%;
	animation: toRight 31s linear 13.5s infinite , sway2 4s ease 0s infinite;
}
#bubble #bubble-down5 {
	width: 12%;
	height: auto;
	position: absolute;
	top: 60%;
	left: -40%;
	animation: toRight 31s linear 18s infinite , sway1 3.7s ease 0s infinite;
}
#bubble #bubble-down6 {
	width: 18%;
	height: auto;
	position: absolute;
	top: 55%;
	left: -40%;
	animation: toRight 31s linear 22.5s infinite , sway2 3.1s ease 0s infinite;
}
#bubble #bubble-down7 {
	width: 12%;
	height: auto;
	position: absolute;
	top: 70%;
	left: -40%;
	animation: toRight 31s linear 26.5s infinite , sway1 5.5s ease 0s infinite;
}


/* 以下スマホ */
@media (max-width: 1024px) {
	@keyframes toLeft {
		0% {
			opacity: 0;
			left: 100%;
		}
		2% {
			opacity: 1;
		}	
		85% {
			opacity: 1;
			left: -100%;
		}
		99% {
			opacity: 0;
			left: -100%;
		}
		100% {
			opacity: 0;
			left: 100%;
		}
	}
	@keyframes toRight {
		0% {
			opacity: 0;
			left: -100%;
		}
		2% {
			opacity: 1;
		}
		85% {
			opacity: 1;
			left: 100%;
		}
		99% {
			opacity: 0;
			left: 100%;
		}
		100% {
			opacity: 0;
			left: -100%;
		}
	}
	
	
	#bubble #bubble-up1 {
		width: 60%;
		height: auto;
		position: absolute;
		top: 5%;
		animation: toLeft 10s linear 0s infinite , sway1 3s ease 0s infinite;
	}
	#bubble #bubble-up2 {
		display: none;
	}
	#bubble #bubble-up3 {
		width: 50%;
		height: auto;
		position: absolute;
		top: 5%;
		animation: toLeft 10s linear 6s infinite , sway2 3.2s ease 0s infinite;
	}
	#bubble #bubble-up4 {
		display: none;
	}
	#bubble #bubble-up5 {
		width: 60%;
		height: auto;
		position: absolute;
		top: 13%;
		animation: toLeft 10s linear 14s infinite , sway1 3.4s ease 0s infinite;
	}
	#bubble #bubble-up6 {
		width: 50%;
		height: auto;
		position: absolute;
		top: 3%;
		animation: toLeft 10s linear 22.5s infinite , sway2 3.6s ease 0s infinite;
	}
	#bubble #bubble-up7 {
		width: 30%;
		height: auto;
		position: absolute;
		top: 20%;
		animation: toLeft 10s linear 8s infinite , sway1 5.5s ease 0s infinite;
	}
	#bubble #bubble-down1 {
		width: 65%;
		height: auto;
		position: absolute;
		top: 35%;
		animation: toRight 10s linear 0s infinite , sway1 3s ease 0s infinite;
	}
	#bubble #bubble-down2 {
		display: none;
	}
	#bubble #bubble-down3 {
		width: 70%;
		height: auto;
		position: absolute;
		top: 40%;
		animation: toRight 10s linear 6s infinite , sway2 3.3s ease 0s infinite;
	}
	#bubble #bubble-down4 {
		display: none;
	}
	#bubble #bubble-down5 {
		display: none;
	}
	#bubble #bubble-down6 {
		width: 45%;
		height: auto;
		position: absolute;
		top: 50%;
		animation: toRight 10s linear 2.6s infinite , sway2 2.8s ease 0s infinite;
	}
	#bubble #bubble-down7 {
		display: none;
	}


}

/* ========================================
受賞歴
========================================== */
#prize {
	width: 100%;
	height: auto;
	position: relative;
}
#prize #prize-bg1 {
	width: 100%;
	height: auto;
}
#prize #prize-bg2 {
	width: 100%;
	height: auto;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
}
#prize #prize-head {
	width: 10%;
	height: auto;
	margin: 0;
	padding: 0;
	position: absolute;
	top: 21%;
	right: 17%;
	opacity: 0;
}
#prize #crown {
	width: 3%;
	height: auto;
	position: absolute;
	top: 15.5%;
	right: 20.7%;
	opacity: 0;
}
#prize #prize-list {
	width: 32%;
	height: auto;
	margin: 0;
	padding: 0;
	list-style-type: none;
	position: absolute;
	top: 28%;
	left: 19%;
	opacity: 0;
}
#prize #prize-list li {
	width: 100%;
	height: auto;
	margin: 3px 0;
	font-size: 0.95vw;
	color: #fff;
	display: flex;
}
#prize #prize-list li .year {
	width: 13%;
}
#prize #prize-list li .prize {
	width: 87%;
}
.fiSlow {
	animation: fadeIn 1.5s ease 0.2s forwards;
}
.fiLater {
	animation: fadeIn 1.0s ease 1.0s forwards;
}
@keyframes blink {
	0% {opacity: 0;}
	50% {opacity: 1;}
	100% {opacity: 1;}
}
.blink {
	animation: blink 0.6s step-end 0s infinite alternate;
}
#prize #prize-btm {
	display: none;
}

/* 以下スマホ */
@media (max-width: 1024px) {
	#prize #prize-head {
		width: 30%;
		height: auto;
		margin: 0;
		padding: 0;
		position: absolute;
		top: 8%;
		right: 35%;
		opacity: 0;
	}
	#prize #crown {
		width: 10%;
		height: auto;
		position: absolute;
		top: 4%;
		right: 45%;
		opacity: 0;
	}
	#prize #prize-list {
		width: 80%;
		height: auto;
		margin: 0;
		padding: 0;
		list-style-type: none;
		position: absolute;
		top: 28%;
		left: 10%;
		opacity: 0;
	}
	#prize #prize-list li {
		width: 100%;
		height: auto;
		margin: 3px 0;
		font-size: 1em;
		color: #fff;
		display: flex;
	}
}

@media (max-width: 610px) {
	#prize {
		width: 100%;
		height: auto;
		position: relative;
		background-color: #000;
	}
	#prize #prize-bg1 ,
	#prize #prize-bg2 {
		display: none;
	}
	#prize #prize-head {
		width: 30%;
		height: auto;
		padding: 20vw 35% 10vw;
		position: static;
		opacity: 0;
	}
	#prize #crown {
		width: 10%;
		height: auto;
		position: absolute;
		top: 4%;
		right: 45%;
		opacity: 0;
	}
	#prize #prize-list {
		width: 90%;
		height: auto;
		margin: 0 5%;
		padding: 0;
		list-style-type: none;
		position: static;
		opacity: 0;
	}
	#prize #prize-list li {
		width: 100%;
		height: auto;
		margin: 3px 0;
		font-size: 1em;
		color: #fff;
		display: flex;
	}
	#prize #prize-list li .year {
		width: 17%;
		margin-right: 2%;
	}
	#prize #prize-list li .prize {
		width: 81%;
	}
	#prize #prize-btm {
		display: block;
		width: 100%;
		height: auto;
		padding: 10vw 0;
		opacity: 0;
	}
	.fiLater {
		animation: fadeIn 1.0s ease 0s forwards;
	}
}


/* ========================================
3枚スライド
========================================== */
#three-slides {
	width: 100%;
	height: auto;
	background-color: #000;
	position: relative;
}
#three-slides #three-slides1 {
	width: 100%;
	height: auto;
	animation: three-slides1 10s ease 0s infinite;
}
#three-slides #three-slides2 {
	width: 100%;
	height: auto;
	position: absolute;
	top: 0;
	left: 0;
	animation: three-slides2 10s ease 0s infinite;
}
#three-slides #three-slides3 {
	width: 100%;
	height: auto;
	position: absolute;
	top: 0;
	left: 0;
	animation: three-slides3 10s ease 0s infinite;
}
@keyframes three-slides1 {
	0% {opacity: 1;}
	28% {opacity: 1;}
	33% {opacity: 0;}
	95% {opacity: 0;}
	100% {opacity: 1;}
}
@keyframes three-slides2 {
	0% {opacity: 0;}
	28% {opacity: 0;}
	33% {opacity: 1;}
	61% {opacity: 1;}
	66% {opacity: 0;}
	100% {opacity: 0;}
}
@keyframes three-slides3 {
	0% {opacity: 0;}
	61% {opacity: 0;}
	66% {opacity: 1;}
	95% {opacity: 1;}
	100% {opacity: 0;}
}
#shiawase {
	width: 3.3%;
	height: auto;
	position: absolute;
	top: 36%;
	left: 61%;
}


/* 以下スマホ */
@media (max-width: 1024px) {
	#shiawase {
		width: 10%;
		height: auto;
		position: absolute;
		top: 26%;
		left: 78%;
	}

}

/* ========================================
スタッフ・キャスト
========================================== */
#staff-bg1 {
	width: 100%;
	height: 100%;
	min-height: 100%;
	background: url(../img/AML-staffcast-bg-base-pc.jpg) no-repeat;
	background-size: 100% auto;
	background-position: center bottom;
	position: fixed;
	top: 0;
	left: 0;
	z-index: -17;
	opacity: 0;
}
#staff-bg2 {
	width: 100%;
	height: 100%;
	min-height: 100%;
	background: url(../img/AML-staffcast-bg-futa-pc.png) no-repeat;
	background-size: 100% auto;
	background-position: center bottom;
	position: fixed;
	top: 0;
	left: 0;
	z-index: -15;
	opacity: 0;
}
#staff-staff-bg-sp {
	display: none;
}
#staff {
	width: 100%;
	height: auto;
	padding: 10vw 0 20vw;
	position: relative;
	z-index: -16;
}
#staff h2 {
	width: 100%;
	height: auto;
	margin: 0 0 5vw;
	padding: 0;
	text-align: center;
	opacity: 0;
}
#staff h2 img {
	width: 20%;
}
#staff #staff-list {
	width: 90%;
	height: auto;
	margin: 0 5% 0 5%;
	padding: 0;
	list-style-type: none;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}
#staff #staff-list .staff-photo {
	width: 35%;
	height: auto;
	margin: 8vw 0;
	text-align: center;
	opacity: 0;
}
#staff #staff-list .staff-photo img {
	display: inline-block;
	width: 70%;
}
#staff #staff-list .staff-photo .staff-name-sp {
	display: none;
}
#staff #staff-list .staff-photo:last-child img {
	width: 85%;
}
#staff #staff-list .staff-txt {
	width: 35%;
	height: auto;
	margin: 8vw 0;
	text-align: center;
	opacity: 0;
}
#staff #staff-list .staff-txt h3 {
	display: inline-block;
	width: 90%;
	height: auto;
	margin: 0;
	padding: 0;
	font-size: 1.2vw;
	letter-spacing: 1.5px;
	color: #fff;
	text-align: left;
}
#staff #staff-list .staff-txt p {
	display: inline-block;
	width: 90%;
	height: auto;
	font-size: 1vw;
	line-height: 1.8vw;
	font-feature-settings: "palt";
	letter-spacing: 1.5px;
	color: #fff;
	text-align: left;
	font-family: 'Yu Mincho Light','YuMincho','Yu Mincho','游明朝体','ヒラギノ明朝 ProN','Hiragino Mincho ProN',sans-serif;
}
#staff #staff-list .staff-txt p.credit {
	font-size: 1vw;
	line-height: 1.5vw;
	text-align: center;
}
#staff #staff-list .staff-txt p.credit span {
	font-size: 0.8vw !important;
	text-align: center;
}


/* 以下スマホ */
@media (max-width: 1024px) {
	#staff-bg1 , #staff-bg2 {
		display: none;
	}
	#staff-bg-sp {
		display: block;
		width: 100%;
		height: 100%;
		min-height: 100%;
		background: url(../img/AML-staffcast-kotei-sp.png) no-repeat;
		background-size: 100% auto;
		background-position: center bottom;
		position: fixed;
		top: 0;
		left: 0;
		z-index: -15;
		opacity: 0;
	}
	#staff {
		width: 100%;
		height: auto;
		padding: 20vw 0 120vw;
		position: relative;
		z-index: -16;
		background-color: #73732b;
	}
	#staff h2 {
		width: 100%;
		height: auto;
		margin: 0 0 5vw;
		padding: 0;
		text-align: center;
		opacity: 0;
	}
	#staff h2 img {
		width: 50%;
	}
	#staff #staff-list .staff-photo .staff-name-sp {
		display: inline-block;
		width: 100%;
		height: auto;
		margin-bottom: 10px;	
		text-align: center;
		color: #fff;
		font-size: 1.2em;
		font-weight: bold;
	}
	#staff #staff-list .staff-txt h3 {
		display: none;
	}
	#staff #staff-list .staff-photo {
		width: 100%;
		height: auto;
		margin: 8vw 0 0;
		text-align: center;
		opacity: 0;
	}
	#staff #staff-list .staff-photo img {
		display: inline-block;
		width: 90%;
	}
	#staff #staff-list .staff-photo:last-child img {
		width: 90%;
	}
	#staff #staff-list .staff-txt {
		width: 100%;
		height: auto;
		margin: 4vw 0 8vw;
		text-align: center;
		opacity: 0;
	}
	#staff #staff-list .staff-txt p {
		display: inline-block;
		width: 100%;
		height: auto;
		font-size: 1em;
		line-height: 1.8em;
		font-feature-settings: "palt";
		letter-spacing: 1.5px;
		color: #fff;
		text-align: left;
		font-family: 'Yu Mincho Light','YuMincho','Yu Mincho','游明朝体','ヒラギノ明朝 ProN','Hiragino Mincho ProN',sans-serif;
	}
	#staff #staff-list .staff-txt p.credit {
		font-size: 0.8em;
		line-height: 1.5em;
	}
	#staff #staff-list .staff-txt p.credit span {
		font-size: 0.6em !important;
	}
	#staff #staff-list #staff-photo1 {
		order: 1;
	}
	#staff #staff-list #staff-txt1 {
		order: 2;
	}
	#staff #staff-list #staff-photo2 {
		order: 3;
	}
	#staff #staff-list #staff-txt2 {
		order: 4;
	}
	#staff #staff-list #staff-photo3 {
		order: 5;
	}
	#staff #staff-list #staff-txt3 {
		order: 6;
	}
	#staff #staff-list #staff-photo4 {
		order: 7;
	}
	#staff #staff-list #staff-txt4 {
		order: 8;
	}

}



/* ========================================
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;
}
#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:#1B95E0;
}
#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: #7B1016;
	position: relative;
	overflow: hidden;
}
footer #foot-bg {
	width: 100%;
	height: auto;	
}
footer #foot-bg2 {
	width: 100%;
	height: auto;
	position: absolute;
	top: 0;
	left: 0;	
}
@keyframes pig-clip {
	0% {
		clip-path: circle(200% at 27% 33%);
	}
	100% {
		clip-path: circle(0% at 27% 33%);
	}
}
@keyframes ame-clip {
	0% {
		clip-path: circle(200% at 67% 62%);
	}
	100% {
		clip-path: circle(0% at 67% 62%);
	}
}
.pig-clip {
	animation: pig-clip 3.0s cubic-bezier(0, 0.55, 0.45, 1) 0s forwards;
}
.ame-clip {
	animation: ame-clip 3.0s cubic-bezier(0, 0.55, 0.45, 1) 0s forwards;
}
footer #foot-title {
	width: 100%;
	height: auto;
	text-align: center;
	position: absolute;
	top: 30%;
	left: 0;
	z-index: 3;
	opacity: 1;
}
footer #foot-title #foot-title-inner {
	width: 26%;
	height: auto;
	margin: 0 37%;
	position: relative;
}
footer #foot-title #foot-title-inner #foot-title1 {
	width: 100%;
	height: auto;
	opacity: 0;
}
footer #foot-title #foot-title-inner #foot-title2 {
	width: 100%;
	height: auto;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
}
footer #foot-title #foot-title-inner #foot-title3 {
	width: 100%;
	height: auto;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
}
footer #foot-title #foot-title-inner #foot-title4 {
	width: 100%;
	height: auto;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
}
footer #foot-date {
	width: 100%;
	height: auto;
	text-align: center;
	position: absolute;
	top: 55%;
	left: 0;
	z-index: 3;
	opacity: 0;
}
footer #foot-date img {
	width: 400px;
}
footer #sns-link-foot {
	width: 100%;
	height: auto;
	margin: 1vw 0 1vw;
	padding: 0;
	list-style-type: none;
	display: flex;
	justify-content: center;
	position: absolute;
	top: 65%;
	left: 0;
	z-index: 3;
	opacity: 0;
}
footer #sns-link-foot li {
	width: 3%;
	height: auto;
	margin: 0 1%;
}
footer #sns-link-foot li img {
	width: 100%;
	height: auto;
}
footer #sns-link-foot li img:hover {
	opacity: 1;
	-webkit-animation: flash 1.5s;
	animation: flash 1.5s;
}
footer #button-area {
	position: absolute;
	bottom: 0%;
	z-index: 5;
	opacity: 0;
}
.foot-title1-fadein {
	animation: fadeIn 1.0s ease 2.3s forwards;
}
.foot-title2-fadein {
	animation: fadeIn 1.0s ease 2.5s forwards;
}
.foot-title3-fadein {
	animation: fadeIn 1.0s ease 2.7s forwards;
}
.foot-title4-fadein {
	animation: fadeIn 1.0s ease 2.9s forwards;
}
.foot-fadein {
	animation: fadeIn 1.5s ease 3.0s forwards;
}

@media (max-width: 1024px) {
	footer {
		width:100%;
		height:auto;
		padding:0;
		margin:0;
		position: relative;
		background-color: #43010B;
	}
	@keyframes pig-clip {
		0% {
			clip-path: circle(200% at 26% 28%);
		}
		100% {
			clip-path: circle(0% at 26% 28%);
		}
	}
	@keyframes ame-clip {
		0% {
			clip-path: circle(200% at 71% 58%);
		}
		100% {
			clip-path: circle(0% at 71% 58%);
		}
	}
	footer #foot-title {
		width: 100%;
		height: auto;
		text-align: center;
		position: absolute;
		top: 50%;
		left: 0;
		z-index: 3;
		opacity: 1;
	}
	footer #foot-title #foot-title-inner {
		width: 70%;
		height: auto;
		margin: 0 15%;
		position: relative;
	}
	footer #foot-date {
		width: 100%;
		height: auto;
		text-align: center;
		position: absolute;
		top: 70%;
		left: 0;
		z-index: 3;
		opacity: 0;
	}
	footer #foot-date img {
		width: 80%;
	}
	footer #sns-link-foot {
		width: 100%;
		height: auto;
		margin: 1vw 0 1vw;
		padding: 0;
		list-style-type: none;
		display: flex;
		justify-content: center;
		position: absolute;
		top: 82%;
		left: 0;
		z-index: 3;
		opacity: 0;
	}
	footer #sns-link-foot li {
		width: 10%;
		height: auto;
		margin: 0 1%;
	}
	

}
@media (max-width: 610px) {
	footer #foot-title {
		width: 100%;
		height: auto;
		text-align: center;
		position: absolute;
		top: 33%;
		left: 0;
		z-index: 3;
		opacity: 1;
	}
	footer #foot-title #foot-title-inner {
		width: 70%;
		height: auto;
		margin: 0 16% 0 14%;
		position: relative;
	}
	footer #foot-date {
		width: 100%;
		height: auto;
		text-align: center;
		position: absolute;
		top: 53%;
		left: 0;
		z-index: 3;
		opacity: 0;
	}
	footer #foot-date img {
		width: 90%;
	}
	footer #sns-link-foot {
		width: 100%;
		height: auto;
		margin: 1vw 0 1vw;
		padding: 0;
		list-style-type: none;
		display: flex;
		justify-content: center;
		position: absolute;
		top: 64%;
		left: 0;
		z-index: 3;
		opacity: 0;
	}
	footer #sns-link-foot li {
		width: 10%;
		height: auto;
		margin: 0 1%;
	}


}


/* ========================================
コメント
========================================== */
#combody {
	font-family: 'Yu Mincho Light','YuMincho','Yu Mincho','游明朝体','ヒラギノ明朝 ProN','Hiragino Mincho ProN',sans-serif;
	background-color: #420009;
}
#combody .hamburger ,
#combody #pcheader {
	opacity: 1;
}
#com-btm {
	width: 100%;
	height: auto;
	position: fixed;
	bottom: 0;
	left: 0;
	z-index: 2;
}
#comment {
	width: 100%;
	height: auto;
	padding: 6vw 0 15vw;
}
#comment #com-header {
	width: 100%;
	height: auto;
	margin: 0 0 2vw;
	position: relative;
}
#comment #com-header h1 {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	text-align: center;
}
#comment #com-header h1 img {
	width: 30%;
	height: auto;
	vertical-align: bottom;
}
#comment #com-header #horn {
	width: 3%;
	height: auto;
	position: absolute;
	top: 0%;
	left: 66%;
	animation: horn 1s step-end 0s infinite;
	transform-origin: right bottom;
}
@keyframes horn {
	0% {
		transform: rotate(-5deg);
	}
	50% {
		transform: rotate(5deg);
	}
	100% {
		transform: rotate(-5deg);
	}
}
#comment #keisho {
	width: 100%;
	height: auto;
	margin: 0 0 5vw;
	text-align: center;
	font-size: 1vw;
	color: #fff;
}
#comment #com-list {
	width: 70%;
	height: auto;
	margin: 0 15%;
	padding: 0;
	list-style-type: none;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
#comment #com-list .com-box {
	width: 50%;
	height: auto;
	margin: 0 5% 9vw;
	position: relative;
	opacity: 0;
}
#comment #com-list .com-box .frame {
	width: 100%;
	height: auto;
}
#comment #com-list .com-box .com-txt {
	width: 75%;
	height: 80%;
	position: absolute;
	top: 10%;
	left: 15%;
	display: flex;
	align-items: center;
	align-content: center;
	flex-wrap: wrap;
}
#comment #com-list .com-box .com-txt p {
	width: 100%;
	height: auto;
	margin: 0 0 2vw;
	padding: 0;
	color: #fff;
	font-size: 1.1vw;
	line-height: 2vw;
	font-feature-settings: "palt";
	letter-spacing: 1.5px;
}
#comment #com-list .com-box .com-txt p.be {
	color: #3A0713;
}
#comment #com-list .com-box .com-txt p span {
	font-size: 1.3vw;
	color: #facbc1;
}
#comment #com-list .com-box .com-txt p.be span {
	color: #B70A0A;
}
#comment #com-list .com-box .com-txt .name {
	font-size: 1.3vw;
	color: #fff;
}
#comment #com-list .com-box .com-txt .bea {
	color: #B70A0A;
}
#comment #com-list .com-box .com-txt .name span {
	font-size: 0.9vw;
	color: #fff;
	margin-left: 0.5vw;
}
#comment #com-list .com-box .com-txt .bea span {
	color: #3A0713;
}
#comment #com-list .com-box .com-img-r {
	width: 50%;
	position: absolute;
	top: 50%;
	left: 90%;
}
#comment #com-list .com-box .com-img-l {
	width: 50%;
	position: absolute;
	top: 50%;
	right: 90%;
}
#comment #com-list .com-box .com-img-l2 {
	width: 50%;
	position: absolute;
	top: 50%;
	left: 90%;
}
#comment #com-list .il-box {
	width: 30%;
	height: auto;
	margin: 0 5% 9vw;
	position: relative;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	opacity: 0;
}
.img2 {
	width: 70%;
}
.img3 {
	width: 60%;
}
#comment #com-list li:first-child ,
#comment #com-list li:nth-child(2) {
	opacity: 1;
} 

@media (max-width: 1024px) {
	#combody {
		background-color: #740f14;
	}
	#comment {
		width: 100%;
		height: auto;
		padding: 10vw 0 80vw;
	}
	#comment #com-header {
		width: 100%;
		height: auto;
		margin: 0 0 5vw;
		position: relative;
	}
	#comment #com-header h1 {
		width: 100%;
		height: auto;
		margin: 0;
		padding: 0;
		text-align: center;
	}
	#comment #com-header h1 img {
		width: 85%;
		height: auto;
		vertical-align: bottom;
	}
	#comment #com-header #horn {
		width: 10%;
		height: auto;
		position: absolute;
		top: -100%;
		left: 86%;
		animation: horn 1s step-end 0s infinite;
		transform-origin: right bottom;
	}
	#comment #keisho {
		width: 100%;
		height: auto;
		margin: 0 0 5vw;
		text-align: center;
		font-size: 1em;
		color: #fff;
	}
	#comment #com-list {
		width: 100%;
		height: auto;
		margin: 0;
		padding: 0;
		list-style-type: none;
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
	}
	#comment #com-list .com-box {
		width: 60%;
		height: auto;
		margin: 0 20% 5vw;
		position: relative;
	}
	#comment #com-list .com-box .com-txt {
		width: 76%;
		height: 90%;
		position: absolute;
		top: 5%;
		left: 12%;
		display: flex;
		align-items: center;
		align-content: center;
		flex-wrap: wrap;
	}
	#comment #com-list .com-box .com-txt p {
		width: 100%;
		height: auto;
		margin: 0 0 2vw;
		padding: 0;
		color: #fff;
		font-size: 1.1em;
		line-height: 2em;
		font-feature-settings: "palt";
		letter-spacing: 1.5px;
	}
	#comment #com-list .com-box .com-txt p span {
		font-size: 1.25em;
		color: #facbc1;
	}
	#comment #com-list .com-box .com-txt .name {
		font-size: 1.3em;
		color: #fff;
	}
	#comment #com-list .com-box .com-txt .bea {
		color: #B70A0A;
	}
	#comment #com-list .com-box .com-txt .name span {
		font-size: 0.7em;
		color: #fff;
		margin-left: 0.3em;
	}
	#comment #com-list .com-box .com-txt .bea span {
		color: #3A0713;
	}
	#comment #com-list .com-box .com-img-r {
		width: 60%;
		position: absolute;
		top: 90%;
		left: 20%;
	}
	#comment #com-list .com-box .com-img-l {
		width: 60%;
		position: absolute;
		top: 90%;
		right: 20%;
	}
	#comment #com-list .com-box .com-img-l2 {
		width: 60%;
		position: absolute;
		top: 90%;
		left: auto;
		right: 20%;
	}
	
	#comment #com-list .il-box {
		width: 50%;
		height: auto;
		margin: 0 25% 60vw;
		position: relative;
		text-align: center;
		display: flex;
		align-items: center;
	}
	.img2 {
		width: 100%;
	}
	#com1 {order: 1;}
	#il1 {order: 2;}
	#com2 {order: 3;}
	#il2 {order: 4;}
	#com3 {order: 5;}
	#il3 {order: 6;}
	#com4 {order: 7;}
	#il4 {order: 8;}
	#com5 {order: 9;}
	#il5 {order: 10;}
	#com6 {order: 11;}
	#il6 {order: 12;}
	#com7 {order: 13;}
	#il7 {order: 14;}
	#com8 {order: 15;}
	#il8 {order: 16;}
	#com9 {order: 17;}
	#il9 {order: 18;}
	#com10 {order: 19;}
	#il10 {order: 20;}
	#com11 {order: 21;}
	#il11 {order: 22;}
	#com12 {order: 23;}
	#il12 {order: 24;}

}

@media (max-width: 610px) {
	#comment #com-header h1 img {
		width: 85%;
		height: auto;
		vertical-align: bottom;
	}
	#comment #com-header #horn {
		width: 10%;
		height: auto;
		position: absolute;
		top: -15%;
		left: 86%;
		animation: horn 1s step-end 0s infinite;
		transform-origin: right bottom;
	}

	#comment #com-list .com-box {
		width: 90%;
		height: auto;
		margin: 0 5% 15vw;
		position: relative;
	}
	#comment #com-list .ari {
		margin: 0 5% 60vw;
	}
	#comment #com-list .il-box {
		width: 70%;
		height: auto;
		margin: 0 15% 20vw;
		position: relative;
		text-align: center;
		display: flex;
		align-items: center;
	}
	#comment #com-list .il-box img {
		margin-bottom: 30vw;
	}
	.img2 {
		width: 100%;
	}
	.img3 {
		width: 80%;
	}
}





/* ========================================
ダウンロード
========================================== */

body#dl-body:before{
	content:"";
	display:block;
	position:fixed;
	top:0;
	left:0;
	z-index:-10;
	width:100%;
	height:100vh;
	background:url(../download/images/KS-dl-bg.jpg) no-repeat;
	background-size: cover;
	background-position: bottom center;
	animation: none;
  }
 
  .dlButton {
	  background-color:#000;
	  border:1px solid #c40404;
	  display:inline-block;
	  cursor:pointer;
	  color:#c40404;
	  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 #c40404;
	  color:#c40404;
	  transition-duration: 0.6s
  }
  .dlButton:active {
	  position:relative;
	  top:1px;
  }  
  .issiki {
	  margin:20px 0 80px;
	  color:#c40404 !important;
	  width: 25vw;
  }  
  .issiki:hover {
	  background-color:#f6ecec;
	  color:#c40404 !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:#031018;
	  font-size:2em;
	  margin-bottom:30px;
  }  
  .dl-contents h2 span.small {
	  font-size:0.5em;
	  line-height:0.7em;
  }
  
  .dl-contents h2 img {
	  width:35%;
  }  
  #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: 40%;
  }
  #dl-wrapper .dl-txt1 {
	  width:100%;
	  height:auto;
	  text-align:center;
	  color:#fff;
	  margin:20px 0 5px;
	  font-size: 0.9em;
	  font-weight: bold;
	  font-feature-settings:"palt";

  }
  #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;
	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: 0.9em;
	  font-weight: bold;
	  font-feature-settings: "palt";

  }  
  .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;
  }
