@charset "UTF-8";
/*--------------------------------------------------------------
slide
--------------------------------------------------------------*/
.mv-slide__img {
  width: 100%;
  height: 800px;
  vertical-align: bottom;
  object-fit: cover;
}

.slide-animation {
  animation: fadezoom 8s 0s forwards;
}

@keyframes fadezoom {
  0% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

/*--------------------------------------------------------------
prologue
--------------------------------------------------------------*/
.prologue{
  margin: 0 0 8rem 0;
  padding: 0;
}

.prologue .contents__inner{
  position: relative;
  padding: 0;
  margin: -8rem auto 0;
}

.prologue__title{
  font-family: "Noto Serif JP", "ヒラギノ明朝 ProN W3", "HiraMinProN-W3", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
  font-size: 2.8rem;
  font-weight: bold;
  text-align: center;
  margin: 0 0 4rem 0;
}


.prologue__text{
  font-family: "Noto Serif JP", "ヒラギノ明朝 ProN W3", "HiraMinProN-W3", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
  font-size: 1.8rem;
  line-height: 2.556;
  text-align: center;
}


/*--------------------------------------------------------------
loop
--------------------------------------------------------------*/
.loop{
  overflow: hidden;  
  top: 0;
}
.loop__inner {
  display: flex;
  width: 100%;
  /*overflow: hidden;
  height: 180px;*/
}

.loop__inner .loop__txt {
  flex: 0 0 auto;
  white-space: nowrap;
  font-size: 23rem;
  font-weight: bold;
  font-style: italic;
  color: #f6f6f6;
  line-height: 1;
  /*overflow: hidden;*/
}

/*-2.5秒後に5秒かけて一定速度で無限に行う*/
.loop__inner .loop__txt:nth-child(odd) {
  /*animation: loop 50s -25s linear infinite;*/
  animation: loop 100s -50s linear infinite;
}

/*5秒かけて一定速度で無限に行う。*/
.loop__inner .loop__txt:nth-child(even) {
  /*animation: loop2 50s linear infinite;*/
  animation: loop2 100s linear infinite;
}

@keyframes loop {
    0% {
      transform: translateX(100%);
    }
    to {
      transform: translateX(-100%);
    }
  }
  
  @keyframes loop2 {
    0% {
      transform: translateX(0);
    }
    to {
      transform: translateX(-200%);
    }
  }


/*--------------------------------------------------------------
movie
--------------------------------------------------------------*/
.movie{
  position: relative;
  z-index: 100;
}

.movie__inner{
  position: relative;
  max-width: 80rem;
  /*width: 80rem;*/
  aspect-ratio: 16 / 9;
  margin: 0 auto;
}

.movie__inner::before{
  content: "";
  display: block;
  position: absolute;
  width: 80rem;
  aspect-ratio: 16 / 9;
  background-color: #000;
  /*top: 2rem;
  left: 2rem;*/
  transform: translate(2rem,2rem);
}

.movie .movie__inner iframe{
  position: relative;
  width: 100%;
  height: 100%;
}


/*--------------------------------------------------------------
story
--------------------------------------------------------------*/
.story{
  position: relative;
  z-index: 10;
  padding: 40rem 6rem 0;
  margin: -28.125rem auto 0;
  background-color: #000;
  background-image: url(/rebirth_project/images/ae86/bg-content-top.png);
  background-repeat: repeat-x;
  background-position: top;

}

.story__title{
  font-family: "Noto Serif JP", "ヒラギノ明朝 ProN W3", "HiraMinProN-W3", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
  font-size: 2.8rem;
  color: #fff;
  text-align: center;
  margin: 0 0 6rem 0;
}

.story .list{
  display: flex;
  gap: 12rem 5.5rem;
  flex-wrap: wrap;
}

.story .list__item{
  width: calc((100% - 11rem) / 3);
}

.story .list__item figure{
  position: relative;
  background-color: #fff;
  margin: 0 0 5rem 0;
}

.story .list__item figure img{
  width: 100%;
  height: auto;
}

.story .list__item .icon-new{
  position: absolute;
  top:0;
  left:0;
  font-size: 1.4rem;
  font-weight: bold;
  color: #fff;
  background-color: #e60012;
  width: 6rem;
  height: 5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.story .item__vol{
  display: inline-block;
  font-family: "Times New Roman", serif;
  font-size: 3rem;
  font-weight: bold;
  color: #e60012;
  margin: 0 0 1.5rem 0;
}

.story .item__title{
  font-size: 1.6rem;
  line-height: 1.5;
  color: #fff;
  margin: 0 0 1.5rem 0;
}

.story .item__date{
  font-size: 1.4rem;
  font-weight: bold;
  color: #999999;
}

.story .list__item a{
  transition: all 0.12s;
}
  .story .list__item a.hover figure img{
    opacity: 0.8;
  }

  .story .list__item a.hover .item__vol{
    color: #e33c47;
  }

  .story .list__item a.hover .item__title{
    opacity: 0.8;
  }

.story .btn__inner{
  margin: 12rem 0 0 0;
}

.story a.btn-more{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30rem;
  min-height: 6.4rem;
  text-align: center;
  padding: 1rem 2rem 1rem 2rem;
  color: #fff;
  font-size: 1.6rem;
  transition: all 0.12s;
  background-color: #e60012;
  margin: 0 auto;
}

.story a.btn-more.hover{
  background-color: #e33c47;
}


/*--------------------------------------------------------------
f__mv
--------------------------------------------------------------*/
.f__mv {
  position: relative;
  height: 684px;
  background: url(/rebirth_project/images/ae86/f-mv.jpg) no-repeat;
  background-position: center center;
  background-size: cover;
}










