@charset "utf-8";

/* 共通パーツ */
html, body{
	width:100%;
	height:100%;
	font-family: "NotoSansJP";
	font-weight: 400;
}
html{overflow-y: scroll;font-size: 625%;}

body{
	position: relative;
	width: 100%;
	color: #ffffff;
	background-color: #1c0e0e;
	font-size: .14em;
	font-weight: 400;
	line-height: 1.6em;
	word-wrap: break-word;
	z-index: -10;
}

img{
	max-width: 100%;
	height: auto;
    display: block;
	margin: 0;
	padding: 0;
	vertical-align: bottom;
	image-rendering: auto;
}
/* chrome opera */
@media screen and (-webkit-min-device-pixel-ratio: 0) and (min-resolution: .001dpcm) {
	body {
		image-rendering: -webkit-optimize-contrast;
	}
}
svg {vertical-align:bottom;max-width: 100%;}
img[src$=".svg"] {width: 100%;transform:translate(0,0);}

iframe[name="google_conversion_frame"] { position: absolute; top: 0; }

section{
	position: relative;
	margin: 0 auto;
	opacity: 0;
}
section.display{animation: dispWrap 0.8s  ease-in 2s 1 normal forwards;}

a:link {color: #fbf9e5;text-decoration: none;}
a:visited {color: #fbf9e5;text-decoration: none;}
a:hover{cursor: pointer;text-decoration: none; color: #EEEFC8; transition: all .6s ease-out;}

.flexbox{
	position: relative;
	margin: 0 auto;
	display:-webkit-box;
	display:-webkit-flex;
	display:-ms-flexbox;
	display:flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.flexbetween{justify-content: space-between;}
.flexaround{justify-content: space-around;}
.flexcenter{justify-content:center;}
.flexend{justify-content:flex-end;}
.flexstart{justify-content:flex-start;}
.flexaligncenter{align-items: center;}
.flexalignstart{align-items: flex-start;}
.flexalignend{align-items: flex-end;}
.flexstretch{align-content: stretch;}

.sp{ display: block; }
.pc{ display: none; }

/* loadong */
#loading {
	position: fixed;
	width: 100%;
	height: 100%;
	text-align: center;
	overflow: hidden;
	background: #281413;
	background: linear-gradient(150deg,#281413 0%, #000000 100%);
	opacity: 1;
	transition: opacity .3s ease-out;
	z-index: 20000;
}
#loading.LoadOut{opacity: 0;}
#loading .loader {
	position: absolute;
	top: calc(50% - 50px);
	left: calc(50% - 50px);
	width: 100px;
	height: 100px;
}

#loading .loader div {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	box-sizing: border-box;
	opacity: .8;
}

#loading .loader .one {
	border-top: 1px solid #d6b67c;
	animation: rotate-left 1s linear infinite;
}

#loading .loader .two {
	border-right: 1px solid #cd9d35;
	animation: rotate-right 1s linear infinite;
}

#loading .loader .three {
	border-bottom: 1px solid #f7edd5;
	animation: rotate-right 1s linear infinite;
}

#loading .loader .four {
	border-left: 1px solid #965f29;
	animation: rotate-right 1s linear infinite;
}

@keyframes rotate-left {
  0% {
    transform: rotate(360deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

@keyframes rotate-right {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}


#wrap{position: relative;margin: 0 auto;width: 100%; height:auto;opacity: 0;overflow-x: hidden;}
#wrap.display{animation: dispWrap 0.9s  ease-in 0s 1 normal forwards;}
@keyframes dispWrap {
	0% {opacity: 0;}
	100% {opacity: 1;}
}

.both{clear:both;}
.nodisp{
	overflow: hidden;
	text-indent: 100%;
	white-space: nowrap;
	height: 0;
}
.center{text-align: center;}
.right{text-align: right;}
.strong{font-weight: 700;}
.underline{text-decoration: underline !important;}

#header{
	position: relative;
	margin: 0 auto;
	background-color: #1b0b0d;
}
/* keyvisual */
#keyvisual{
	position: relative;
	margin: 0 auto;
	width: 100%;
	height: 0;
	padding-top:161.875%;
	background-image:url("../t_img/main_v2.jpg");
	background-position: 50% 0;
	background-size: cover;
	background-repeat: no-repeat;
}
#header #catch{
	position: absolute;
	top:45%;
	left: 10%;
	width: 38%;
	opacity: 0;
}
#catch.display{animation: dispWrap 0.6s  ease-in 1s 1 normal forwards;}
#header #logo{
	position: absolute;
	top:52%;
	left: 3%;
	width: 50%;
	opacity: 0;
	transform: translateY(20px);
}
@keyframes slideUp {
	0% {opacity: 0;transform: translateY(20px);}
	100% {opacity: 1;transform: translateY(0);}
}
#logo.display{animation: slideUp 0.5s  ease-out 0.6s 1 normal forwards;}
#header #roadshow{
	position: absolute;
	top:66%;
	left: 11.5%;
	width: 35%;
	opacity: 0;
}
#roadshow.display{animation: dispWrap 0.6s  ease-in 1.2s 1 normal forwards;}

#menu{
	position: relative;
	margin: -50px auto 0 auto;
	opacity:0;
	z-index: 10;
}
#menu.display{animation: dispWrap 0.8s  ease-in 2s 1 normal forwards;}
#menu ul{
	position: relative;
	margin: 0 auto;
	width: calc(100% - 20px);
	gap:12px 11px;
}
#menu ul.btnSNS{margin: 12px auto 0 auto;gap:5px 10px;}
#menu ul li{
	position:relative;
	margin: 0;
}
#menu ul li img{
	position: relative;
	display: block;
	margin: 0 auto;
	height: 15px;
	width: auto;
}
#menu ul li.btn img{margin: 0 5px 0 0; border: solid 1px #fbf9e5;border-radius: 50%; display: inline-block;vertical-align: middle; padding: 5px;overflow: visible;}
#menu ul li.theater img{border: solid 1px #fbf9e5;border-radius: 100px;padding: 5px 15px;}
#menu ul li a{
	position: relative;
	transition: all .4s ease-out;
}
#menu ul li a:hover{opacity: 0.6;}

h2{
	position: relative;
	margin: 0 auto 20px auto;
	width: 100%;
	max-width: 640px;
}

/* movie */
#movie{
	position: relative;
	margin: 20px auto 0 auto;
	padding: 30px 0 60px 0;
	background-color: #40241b;
	background-image: url("../t_img/movie/bg_movie.jpg");
	background-repeat: no-repeat;
	background-position: 50% 100%;
	background-size: 100% auto;
}
#movie .movWrap{
	position: relative;
	margin: 0 auto;
	width: calc(100% - 80px);
}
#movie .movWrap .splide__arrows .splide__arrow--prev {left: -30px;transform: rotate(180deg);}
#movie .movWrap .splide__arrows .splide__arrow--next {right: -30px;}
#movie .movWrap .splide__arrow {
	background: transparent;
	border-radius: 0;
	height: 10px;
	width: 22px;
	padding: 10px 0;
	opacity: 1;
	transform: translateY(0);
}
#movie .movWrap .splide__arrow:disabled {opacity: 0;}
#movie .movWrap ul{position: relative;margin: 0 auto;}
#movie .movWrap ul li{position: relative;}
#movie .movWrap ul li .Img{
	position: relative;
	margin: 0 auto;
	cursor: pointer;
}
#movie .movWrap ul li .Img img{
	position: relative;
	margin: 0 auto;
	border: solid 1px;
	border-image: linear-gradient(15deg,rgba(248, 250, 187, 1) 9%, rgba(84, 57, 21, 1) 100%) 1;
}
#movie .movWrap ul li .Img::after{
	position: absolute;
	top:0;
	left: 50%;
	width: 26%;
	height: 100%;
	transform: translateX(-50%);
	content: '';
	background-image: url("../t_img/movie/btn_movie_v2.png");
	background-repeat: no-repeat;
	background-position: 50% 50%;
	background-size: contain;
}
#movie .movWrap ul li .Img .ttl{
	position: relative;
	margin: 0 auto;
	padding-top: 10px;
	text-align: center;
	font-size: 90%;
}

/* intro */
#intro{
	position: relative;
	margin: 0 auto;
	padding:10px 0 30px 0;
	background-color: #a3682e;
	background-image: url("../t_img/intro/bg_intro.png"), url("../t_img/intro/bg_intro01.jpg");
	background-repeat: no-repeat, no-repeat;
	background-position: 50% 0, 50% 100%;
	background-size: 100% auto, 100% auto;
}
#intro .ttl{
	position: relative;
	margin: 0 auto;
	width: 95%;
}
#intro .text{
	position: relative;
	margin: 0 auto;
	width: calc(100% - 50px);
	font-size: 90%;
	padding-top: 55%;
}
#intro .text01{
	position: relative;
	margin: 0 auto;
	padding-top: 20px;
}

/* story */
#story{
	position: relative;
	margin: 0 auto;
	padding: 30px 0 0 0;
	background-color: #241111;
	background-image: url("../t_img/story/bg_story.jpg");
	background-repeat: repeat;
	background-position: 50% 0;
	background-size: 100% auto;
}
#story .text{
	position: relative;
	margin: 0 auto;
	width: calc(100% - 50px);
	line-height: 2em;
	font-size: 90%;
}
#story .bg{
	position: relative;
	margin: 0 auto;
	width: 100%;
	padding-top: 76%;
	background-image: url("../t_img/story/bg_story01.png");
	background-repeat: no-repeat;
	background-position: 50% 100%;
	background-size: 110% auto;
}

/* gallery */
#gallery{
	position: relative;
	margin: 0 auto;
	padding: 30px 0 60px 0;
	background-color: #1c0e0e;
	background-image: url("../t_img/gallery/bg_gallery.jpg");
	background-repeat: no-repeat;
	background-position: 50% 50px;
	background-size: 100% auto;
}
#gallery .galleryWrap{
	position: relative;
	margin: 0 auto;
	width: calc(100% - 80px);
}
#gallery .galleryWrap .splide__arrows .splide__arrow--prev {left: -30px;transform: rotate(180deg);}
#gallery .galleryWrap .splide__arrows .splide__arrow--next {right: -30px;}
#gallery .galleryWrap .splide__arrow {
	background: transparent;
	border-radius: 0;
	height: 10px;
	width: 22px;
	padding: 10px 0;
	opacity: 1;
	transform: translateY(0);
}
#gallery .galleryWrap .splide__arrow:disabled {opacity: 0;}
#gallery .splide__pagination{bottom: -1em;}
#gallery .galleryWrap ul{position: relative;margin: 0 auto;}
#gallery .galleryWrap ul li{position: relative;}
#gallery .galleryWrap ul li .Img{
	position: relative;
	margin: 0 auto;
	cursor: pointer;
}

/* poster */
#poster{
	position: relative;
	margin: 0 auto;
	padding: 20px 0 80px 0;
	background-color: #1c0e0e;
}
#poster .posterWrap{
	position: relative;
	margin: 0 auto;
	width: calc(100% - 120px);
}
#poster .posterWrap .splide__arrows .splide__arrow--prev {left: -30px;transform: rotate(180deg);}
#poster .posterWrap .splide__arrows .splide__arrow--next {right: -30px;}
#poster .posterWrap .splide__arrow {
	background: transparent;
	border-radius: 0;
	height: 10px;
	width: 22px;
	padding: 10px 0;
	opacity: 1;
	transform: translateY(0);
}
#poster .posterWrap .splide__arrow:disabled {opacity: 0;}
#poster .splide__pagination{bottom: -1em;}
#poster .posterWrap ul{position: relative;margin: 0 auto;}
#poster .posterWrap ul li{position: relative;}
#poster .posterWrap ul li .Img{
	position: relative;
	margin: 0 auto;
	border: solid 1px #402C2C;
	cursor: pointer;
}

footer{
	position: relative;
	margin: 0 auto;
	padding-bottom: 30px;
	background-color: #1c0e0e;
}
footer ul{
	position: relative;
	margin: 0 auto;
	width: 60%;
	max-width:180px;
	gap:0 30px;
}
footer ul li{
	position: relative;
	margin: 0;
	width: calc(50% - 15px);
	cursor: pointer;
	 transition: all .4s ease-out;
}
footer ul li:hover{opacity: 0.6;}

/* youtube */
.movieWrap{
    position: relative;
    margin: 0 auto;
	background-color: #000000;
	width: 100%;
	max-width: 960px;
	overflow: hidden;
}
.movie{
	position: relative;
	margin:0 auto;
	width: 100%;
	height: 0;
	padding-top: 56.25%;
}
.movie iframe, .movie img{
	position: absolute;
	top:0;
	left: 0;
	width: 100%;
	height: 100%;
}

#popup, #popup01{
	position: fixed;
	top:0;
	left: 0;
	width: 100%;
	height: 100vh;
	height: 100lvh;
	display: none;
	background-color: rgba(0,0,0,0.9);
	overflow: scroll;
	z-index: 100;
	-ms-overflow-style: none;
    scrollbar-width: none;
}
#popup .closeWin, #popup01 .closeWin{
	position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
	overflow: visible;
	z-index: 101;
}
#popup .modalCont, #popup01 .modalCont{
	position:absolute;
	top:50%;
	left:50%;
	transform:translate(-50%, -50%);
	width: calc(100% - 20px);
	max-width: 960px;
	border: solid 2px;
	border-image: linear-gradient(135deg,rgba(248, 250, 187, 1) 9%, rgba(84, 57, 21, 1) 100%) 1;
	z-index: 103;
}
#popup01 .modalCont{
	border: solid 1px;
	border-image: linear-gradient(135deg,rgba(248, 250, 187, 1) 9%, rgba(84, 57, 21, 1) 100%) 1;
}
#popup .close, #popup01 .close{
	position: absolute;
	top:-40px;
	right: -10px;
	width: 30px;
	height: 30px;
	cursor: pointer;
	z-index: 104;
}
#popup .close span, #popup01 .close span{
	position:absolute;
	top:16px;
	left:0;
	width:100%;
	height:1px;
	background-color:#fbf9e5;
}
#popup .close span:nth-child(1), #popup01 .close span:nth-child(1){transform: rotate(45deg);}
#popup .close span:nth-child(2), #popup01 .close span:nth-child(2){transform: rotate(-45deg);}

.splide__slide {
	display: flex;
	justify-content: center; /* 左右の中央揃え */
	align-items: center;
}



/* ----- pc ----- */
@media screen and (min-width: 799px) and (orientation: landscape) {

	.sp{ display: none; }
	.pc{ display: block; }
    
    body{font-size: .16em;}
	
	/* keyvisual */
	#keyvisual{
		padding-top:70.833%;
		background-image:url("../t_img/main_v2_pc.jpg");
		background-position: 100% 0;
		background-size: 100% auto;
	}
	#header #catch{
		top:34.5%;
		left: 30%;
		width: 16%;
	}
	#header #logo{
		top:38%;
		left: 20%;
		width: 35%;
	}
	#header #roadshow{
		top:60%;
		left: 30%;
		width: 16%;
	}

	#menu{
		position: absolute;
		top: 82%;
		left: 4%;
		width: 70%;
	}
	#menu ul{gap:0 20px;}
	#menu ul.btnSNS{margin: 18px auto 0 auto;gap:5px 15px;}
	#menu ul li img{height: 18px;}
	#menu ul li.btn img{margin: 0 8px 0 0; padding: 7px;}
	#menu ul li.theater img{padding: 7px 25px;}
	
	h2{margin: 0 auto 40px auto;}

	/* movie */
	#movie{
		margin: 0 auto;
		padding: 60px 0 100px 0;
		background-image: url("../t_img/movie/bg_movie_pc.jpg");
		background-position: 0 100%;
		background-size: 1200px auto;
	}
	#movie .movWrap{width: 100%;}
	#movie .movWrap .splide__arrows .splide__arrow--prev {left: 8%;}
	#movie .movWrap .splide__arrows .splide__arrow--next {right: 8%;}
	#movie .movWrap .splide__arrow {
		height: 18px;
		width: 42px;
		padding: 0;
	}
	#movie .splide__slide .Img {
		opacity: .3;
		transform: scale(.8, .8);
		transition: all .4s ease 0s;
	}
	#movie .splide__slide.is-active .Img {
		opacity: 1;
		transform: scale(1);
		z-index: 100;
	}
	#movie .movWrap ul li .Img::after{max-width: 114px;}
	
	/* intro */
	#intro{
		padding:30px 0 0 0;
		background: linear-gradient(90deg,#723e11 50%, #cda57b 50%);
	}
	#intro .bg{
		position: absolute;
		top:0;
		left: 0;
		width: 100%;
		height: 100%;
		background-image: url("../t_img/intro/bg_intro_pc.jpg");
		background-size: min(100%, 1600px) auto;
		background-repeat: no-repeat;
		background-position: 50% 0;
	}
	#intro .ttl{max-width: 1000px;}
	#intro .introWrap{
		position: relative;
		margin: 0 auto;
		width: calc(100% - 70px);
		max-width: 1600px;
	}
	#intro .text{
		margin: 0;
		width: 35%;
		font-size: 90%;
		padding-top: 7em;
		padding-bottom: 5em;
		padding-right: 15%;
		transform: translateX(23%);
	}
	#intro .text01{
		margin: 0;
		width: 25%;
		min-width: 350px;
		padding-top: 0;
		transform: translateX(-28%);
	}

	/* story */
	#story{
		padding: 60px 0 0 0;
		background-size: auto auto;
	}
	#story .flexbox{
		position: relative;
		width: calc(100% - 70px);
		max-width: 1600px;
	}
	#story .text{
		width: 50%;
		transform: translateX(23%);
		padding: 1em 0 5em 0;
		z-index: 10;
	}
	#story .bg{
		width: 50%;
		padding-top: 40%;
		background-position: calc(100% + 50px) 100%;
		background-size: contain;
	}
	#story .ttl{
		position: absolute;
		top: 4em;
		left: 0;
		width: 100%;
	}
	#story .ttl img{
		position: relative;
		margin: 0 auto;
		transform: translateX(10%);
	}
	
	/* gallery */
	#gallery{
		padding: 60px 0 100px 0;
		background-image: url("../t_img/gallery/bg_gallery_pc.jpg");
		background-position: 100% 0;
		background-size: 100% auto;
	}
	#gallery .galleryWrap{width: 100%;}
	#gallery .galleryWrap .splide__arrows .splide__arrow--prev {left: 8%;}
	#gallery .galleryWrap .splide__arrows .splide__arrow--next {right:8%;}
	#gallery .galleryWrap .splide__arrow {
		height: 18px;
		width: 42px;
		padding: 0;
	}
	#gallery .galleryWrap ul li .Img{max-width: 960px;}
	#gallery .splide__slide .Img {
		opacity: .3;
		transform: scale(.8, .8);
		transition: all .4s ease 0s;
	}
	#gallery .splide__slide.is-active .Img {
		opacity: 1;
		transform: scale(1);
		z-index: 100;
	}
	#gallery .splide__pagination{bottom: -1.5em;}
	#gallery .dot-class-page{
		height: 12px;
		width: 12px;
		margin-left: 5px;
		margin-right: 5px;
	}
	#gallery .dot-class-page.is-active {background-color: #FDCD5E;}

	/* poster */
	#poster{padding: 60px 0 100px 0;}
	#poster .posterWrap{width: calc(100% - 200px);}
	#poster .posterWrap .splide__arrows .splide__arrow--prev {left: 18%;}
	#poster .posterWrap .splide__arrows .splide__arrow--next {right: 18%;}
	#poster .posterWrap .splide__arrow {
		height: 18px;
		width: 42px;
		padding: 0;
	}
	#poster .posterWrap ul li .Img{max-width: 480px;}
	#poster .splide__slide .Img {
		opacity: .3;
		transform: scale(.8, .8);
		transition: all .4s ease 0s;
	}
	#poster .splide__slide.is-active .Img {
		opacity: 1;
		transform: scale(1);
		z-index: 200;
	}
	#poster .splide__pagination{bottom: -1.5em;}
	#poster .dot-class-page{
		height: 12px;
		width: 12px;
		margin-left: 5px;
		margin-right: 5px;
	}
	#poster .dot-class-page.is-active {background-color: #FDCD5E;}

	footer{
		margin: 70px auto 0 auto;
		padding-bottom: 20px;
	}
	footer ul{
		max-width:290px;
		gap:0 60px;
	}
	footer ul li{width: calc(50% - 30px);}

	#popUp .close, #popUp01 .close{
		width: 80px;
		height: 80px;
	}
	#popup01 .modalCont{width: auto;}
	#popup01 .modalCont img{max-height: 80vh;}

}

/* ----- menu ----- */
@media screen and (min-width: 969px) and (max-width: 1138px) {
	#menu ul li img{height: 16px;}
}
@media screen and (min-width: 799px) and (max-width: 968px) {
	#menu ul {gap: 0 15px;}
	#menu ul li img{height: 14px;}
}
@media screen and (min-width: 500px) and (max-width: 798px) {
	#menu ul li img{height: 16px;}
}

/* ----- movie ----- */
@media screen and (min-width: 799px) and (max-height: 650px) {
	#popup .modalCont{
		position:absolute;
		top:40px;
		transform: translate(-50%, 0);
	}
}

/* ----- intro ----- */
@media screen and (min-width: 799px) and (max-width:1291px) {
	#intro .bg{background-size: cover;}
}
@media screen and (min-width: 799px) and (max-width:1310px) {
	#intro .text01{transform: translateX(0);}
}