@charset "UTF-8";
/* CSS Document */
/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc {
  display: block !important;
}
.sp {
  display: none !important;
}
/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 960px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
}
body {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  overflow-y: scroll;
}
img {
  max-width: 100%;
  height: auto;
	vertical-align: bottom;
}
.mainSite {
  width: 100%;
  padding: 0;
  margin: 0;
	
}
.wrapper {
  position: relative;
  text-align: center;
}
.inner{
    width: 70%;
    margin: 0 auto;
    padding: 5% 0;

}

/*--------------------
LOADING
---------------------*/

.loading_wrap {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  background-color: #000;
}
.logo {
width: 25%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 15px 30px;
  text-align: center;
  z-index: 1000;
  opacity: 0;

}

/*--------------------
ANIMATION
---------------------*/

.js-animation {
  opacity: 0;
  visibility: hidden;
  transition: all 2s;
}
.js-animation.is-show {
  opacity: 1;
  visibility: visible;
  transition: all 2s;
}
.fadeIn {
  animation-name: fadeInAnime;
  animation-duration: 3.5s;
  animation-iteration-count: none;
  animation-timing-function: ease;
  animation-direction: normal;
  animation-fill-mode: forwards;
}
@keyframes fadeInAnime {
  0% {
    opacity: 0;
	  filter: blur(10px);
  }
  100% {
    opacity: 1;
	  filter: blur(0);
  }
}
.fadeOut {
  animation-name: fadeOutAnime;
  animation-duration: 2s;
 
  animation-iteration-count: none;
  animation-timing-function: ease;
  animation-direction: normal;
  animation-fill-mode: forwards;
}
@keyframes fadeOutAnime {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
	display: none;
  }
}

.scaleIn {
  animation-name: scaleInAnime;
  animation-duration: 2s;
  animation-iteration-count: none;
  animation-timing-function: ease;
  animation-direction: normal;
  animation-fill-mode: forwards;
}
@keyframes scaleInAnime {
  0% {
	  transform: scale(1.2);
	  filter: blur(10px);
  }
  100% {
	   transform: scale(1);
	  filter: blur(0);
  }
}


.blurS {
	animation-name: blurS;
  animation-duration: 3s;
	  animation-iteration-count: none;
  animation-timing-function: ease;
  animation-direction: normal;
  animation-fill-mode: forwards;
}
@keyframes blurS {
  0%   {
  	filter: blur(10px);
	  opacity: 0;
	
  }
  100% { 
    filter: blur(0);
	  opacity: 1;
  }
}



/*--------------------
TOP
---------------------*/

section.top{
	width: 100%;
	position: relative;	
	overflow: hidden;
	    background-color: #000;
}
.top .inner{
    width: 100%;
    height: 100%;
    margin: 0 auto;
    box-sizing: border-box;
    padding: 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-direction: column;
}
.top_main_text{
	top: 0;
    position: absolute;
    left: 0;
    width: 100%;
	opacity: 0;
	z-index: 3;
}

ul.sns_list {
display: flex;
    align-items: baseline;
    line-height: 1.3;
    justify-content: center;
    margin: 0 auto;
    position: fixed;
    top: 5%;
    left: 4%;
    opacity: 0;
    z-index: 60;
}
li.sns_item{
	
	margin: 0 20px 0 0;
}
li.sns_item:last-child{
	margin: 0;
}
li.sns_item a{
display: flex;
    justify-content: center;
    align-items: center;
    transition: .7s;
    width: 3vw;
    min-width: 40px;
    max-width: 50px;
}
li.sns_item a:hover{
	transition: .7s;
}
li.sns_item a img{
	width: 70%;
	margin: 0 auto;
}


/*--------------------
NEWS
---------------------*/

.bg{
	background-image: linear-gradient(0deg, #003533, #003533 40%, #000102);
}


h1.midashi_title{
color: #e60011;
    text-align: center;
    font-size: 2rem;
    margin: 0 auto 3%;
    line-height: 2vw;
    letter-spacing: 0.5rem;
}
h1.midashi_title img{
	height: 2vw;
    max-width: inherit;
}
.news .inner{
width: 50%;
	padding: 5% 0 0 0;
}
.news_wrap{
width: 100%;
display: flex;

}
.news_date{
 color: #fff;
	background-color: #e60011;
    display: block;
    text-align: left;
    width: auto;
    margin: 0 15px 0 0;
	    padding: 5px 10px;
}
.news_title {
     width: 90%;
    margin: 0 auto;
    line-height: 1.3;
	text-align: left;
	color: #F7FBFC;
}
.title_wrap {
    margin: 0 5% 0 0;
	width: 15%;
}
.viewall{
text-align: right;
font-size: 14px;
	    line-height: 1;
}
a.nor{
    color: #fff;
    font-size: 18px;
    transition: .7s;
    position: relative;
    display: block;
    text-align: center;
	letter-spacing: 0.05rem;
}
a.nor:hover{
  transition: .7s;
  opacity: .6;
}

ul.ulblogtitle{
width: 80%;
    margin: 0 auto 3%;

}

ul.ulblogtitle li{
    width: 100%;
    padding: 15px 20px;
    box-sizing: border-box;
    border: 1px solid #e60011;
    background: rgba(0, 0, 0, 0.8);
	transition: .7s;
	    margin: 0 auto 2%;
}
ul.ulblogtitle li:last-child{
	    margin: 0 auto;
}
ul.ulblogtitle li:hover{
	opacity: 0.7;
    transition: .7s;
}
ul.ulblogtitle li a{
	transition: .7s;
	display: flex;
    justify-content: flex-start;
    align-items: center;
	font-size: clamp(14px, 1vw, 16px);
}

/*--------------------
TRAILER
--------------------*/
.trailer{
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 998;
    opacity: 0;
    display:none;
}

.trailer.on{
	animation-name: TfadeInAnime;
  animation-duration: 0.5s;
  animation-iteration-count: none;
  animation-timing-function: ease;
  animation-direction: normal;
  animation-fill-mode: forwards;
}
@keyframes TfadeInAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.trailer.off{
	animation-name: TfadeOutAnime;
  animation-duration: 0.5s;
  animation-iteration-count: none;
  animation-timing-function: ease;
  animation-direction: normal;
  animation-fill-mode: forwards;
}
@keyframes TfadeOutAnime {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.trailer_overlay{
    position: fixed;
    top: 0;
    width: 100%;
   height: 100%;
    background: #000;
    opacity: 1;
    z-index: 999999997;
    
}

.close_btn{
      position: fixed;
    top: 0;
    right: 0;
    width: 50px;
    height: 50px;
  z-index: 999999999;
  cursor: pointer;
  transition: .7s;
}
.close_btn:hover{
transition: .7s;
opacity: .7;
}
.close_btn_inner{
position: relative;
width: 100%;
height: 100%;
}

.close_btn_inner::before,
.close_btn_inner::after {
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  display: block;
  width: 30px;
  border-top: 3px solid #ffffff;
}
 
.close_btn_inner::before {
      transform: translate(-50%, -50%) skewY(-45deg);
}
 
.close_btn_inner::after {
     transform: translate(-50%, -50%) skewY(45deg);
}

.trailer.on .trailer_overlay{
    opacity: 1;
}

.trailer .trailer_inner{
    position: absolute;
    top: calc(50% - 40px);
    left: 50%;
    transform: translate(-50%, -50%) scale(1, 1);
    width: 60%;
    aspect-ratio: 16 / 9;
    z-index: 999999998;
    height: auto;
    box-sizing: content-box;
}

.trailer .trailer_tab{
    position: absolute;
    color: #fff;
    top: 100%;
    display:flex;
    width: 100%;
    justify-content: space-between;
	flex-wrap: wrap;
	margin-top: 10px;
	z-index: 999999998;
	font-family: "Noto Serif JP", serif;
    font-optical-sizing: auto;
    font-weight: 400;
}

.trailer .trailer_tab li{
    display: flex;
    justify-content: center;
    width: calc(50% - 2.5px);
    padding: 10px;
    font-weight: bold;
    background: #fff;
    color: #000;
    margin: 0 5px 0 0;
    font-size: 14px;
    line-height: 1;
    flex-wrap: wrap;
    box-sizing: border-box;
    letter-spacing: 0.1rem;
    text-align: center;
}
.trailer_tab li:nth-child(2n){
	margin: 0 0 5px;
}
.trailer .trailer_tab li:last-child{
    margin: 0;
}
.trailer_tab li.f_act{
	cursor: pointer;
	background: rgba(0, 0, 0, 0.8);
    color: #fff;
	border: 1px solid #fff;
    box-sizing: border-box;
}

.trailer_tab li.f_act:hover{
   
}
#youtube1, #youtube2{
    position:absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: scale(1,1);
    opacity: 1;
	z-index: 2;
}

.trailer.on #youtube1, .trailer.on #youtube2{
    transform: scale(1,1);
    opacity: 1;
}


.youtube_wrapper{
		width: 48%;
	
	}
.youtube_wrapper:first-child{
		margin-right: 4%;
	}
.youtube_inner{
position: relative;
 padding-bottom: 56.25%;
  overflow: hidden;
	
}
.youtube_inner iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.ytp-cued-thumbnail-overlay-image {
    filter: none;
    -webkit-filter: none;
}

/*--------------------
MOVIE
---------------------*/

section.movie{
	position: relative;
	overflow: hidden;
}
.mvtk_wrap::before{
	    mix-blend-mode: lighten;
}
.movie .inner{
	position: relative;
	z-index: 2;

	    padding: 5% 0;
}
.movie_wrap{
display: flex;
overflow: hidden;
}
ul.trailer_list{
      width: 80%;
    margin: 0 auto;
    display: flex;
        justify-content: flex-start;
    align-items: center;
  }
li.trailer_item {
width: calc(50% - 5px);
    margin: 0 10px 0 0;
}
li.trailer_item:last-child {
    margin: 0 auto;
}
.trailer_midashi{
	color: #fff;
	font-family: "Noto Serif JP", serif;
}
.trailer_pop_btn{
	    margin: 0 auto 10px;
    width: 100%;
	box-sizing: border-box;
	    background: #000;
}
.trailer_pop_btn a{
    display: flex;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    position: relative;
    z-index: 5;
    text-align: center;
    justify-content: center;
    align-items: center;
	    overflow: hidden;
}
.trailer_pop_btn a::before {
    content: "";
    width: 100%;
    height: 100%;
    background-image: url(../img/yt_logo.png);
    background-repeat: no-repeat;
    background-size: 50px;
    background-position: center;
    position: absolute;
    z-index: 4;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.trailer_pop_btn iframe{
    width: 100%;
    height: 100%;
    aspect-ratio: 16 / 9;
    line-height: 1;
}

.movie_midashi{
    color: #fff;
    margin: 10px 0 0 0;
	    letter-spacing: 0.5rem;
		text-align: center;
}




@media screen and (max-width: 1200px) {
	.news .inner {
    width: 70%;
}
}

@media screen and (max-width: 960px) {

.inner {
    width: 80%;
    margin: 0 auto;
    padding: 10% 0;
}

/*--------------------
LOADING
---------------------*/

.logo {
width: 50%;
	top: 45%;
}


/*--------------------
TOP
---------------------*/

	ul.sns_list {
    position: inherit;
	margin: 0 auto 15%;
}

/*--------------------
NEWS
---------------------*/
	
    .news .inner {
        width: 80%;
        padding: 10% 0 0;
    }
    .news_wrap {
        flex-direction: column;
    margin: 20% auto 0;
	}
h1.midashi_title {
  margin: 0 auto 10%;
        line-height: 1;
	}
h1.midashi_title img {
        height: 6vw;
        min-height: 20px;
	        max-height: 40px;
    }
	
ul.ulblogtitle {
        width: 100%;
        margin: 0 auto 7%;
    }
	ul.ulblogtitle li{
		margin: 0 auto 5%;
	}
	ul.ulblogtitle li a {
    flex-direction: column;
		font-size: clamp(14px, 4vw, 16px);
	}
	.news_date {
   display: inline-block;
        margin: 0 auto 10px 0;
	}
	.news_title {
    width: 100%;
    margin: 0 0 3%;
}
	
/*--------------------
TRAILER
---------------------*/	
	ul.trailer_list {
    width: 100%;
		flex-direction: column;
	}
	li.trailer_item {
    width: 100%;
    margin: 0 auto 7%;
}
	.movie .inner{
		    padding: 15% 0;
	}
	.trailer .trailer_inner {
    width: 90%;
	}
	
}

@media screen and (max-width: 500px) {
	
	
}

@media screen and (max-width: 300px) {

/*--------------------
TOP
---------------------*/
	
	
}




@media (orientation: landscape) and (max-width: 960px){
/*デバイスが横向き、画面の横幅が 767px 以下の場合の記述*/

}
	
	
	
	