@charset "UTF-8";

#heading>h1 {
  color: #fff;
}

.nav-toggle>span {
  display: inline-block;
  width: 100%;
  height: 4px;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  background: #fff;
  border-radius: 2px;
  transition: all .4s;
  box-sizing: border-box;
}

.scroll .nav-toggle>span {
  background: #1a1a1a;
}

.scroll .nav-toggle>span,
.active .nav-toggle>span {
  background: #1a1a1a;
}

.nav__sns i {
  font-size: 2.2rem;
  color: #fff;
}

.scroll .nav__sns i,
.active .nav__sns i {
  color: #1a1a1a;
}

/*------------------------------------
 .fv
------------------------------------*/
#fv {
  width: 100%;
  height: auto;
  position: relative;
  overflow: hidden;
}

#fv::before {
  display: block;
  content: '';
  width: 100%;
  height: 0;
  padding-top: 28.125%;
}

.mask {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.isPlay {
  background: #fff;
  animation: play .5s cubic-bezier(.8, 0, .5, 1) 1 forwards;
  opacity: 1 !important;
}

.isPlay::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100vw;
  height: 100%;
  background: linear-gradient(45deg, #CD0000 25%, #ff0000 100%);
  background-size: cover;
  background-position: center right;
  animation: maskOut .5s cubic-bezier(.8, 0, .5, 1) .5s 1 forwards;
}

@keyframes play {
  from {
    transform: translateX(-100%);
  }

  to {
    transform: translateX(0);
  }
}

@keyframes maskOut {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(101%);
  }
}

.mask {
  opacity: 0;
}

.fv-inner {
  width: 90%;
  max-width: 1100px;
  height: auto;
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  z-index: 1;
}

.fv-ttl {
  width: 100%;
  line-height: 1.4;
  display: flex;
  flex-direction: column;
  mix-blend-mode: overlay;
}

.fv-ttl>h2 {
  font-size: 3.6rem;
  order: 2;
}

.fv-ttl>span {
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  padding-left: 5px;
  order: 1;
}

.fv-ttl>p {
  width: 30%;
  display: flex;
  align-items: center;
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  padding-left: 5px;
  order: 3;
}

.fv-ttl>p::after {
  display: block;
  content: '';
  flex: 1;
  border-top: 1px solid #fff;
  margin-left: 5px;
  margin-top: 2.5px;
}

.fv-ttl>p>img {
  width: 12px;
  margin-right: 5px;
}

.fv-img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.fv-img picture,
.fv-img img {
  height: 100%;
  object-fit: cover;
}

.fv-img::after {
  display: block;
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(45deg, #DA1E1E, #1a1a1a);
  opacity: .4;
}

/*------------------------------------
  breadcrumbs
------------------------------------*/
.breadcrumbs {
  width: 100%;
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 1;
  color: #fff;
}

.breadcrumbs a {
  color: #fff;
}

.breadcrumbs-body {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

.breadcrumb__list {
  width: 100%;
  display: flex;
  align-items: center;
  list-style: none;
  font-size: 1.2rem;
}

.breadcrumb__item {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: auto;
  position: relative;
  z-index: 1;
}

.breadcrumb__item>a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
}

.breadcrumb__current {
  padding: 8px 20px;
}

.breadcrumb__current a {
  color: #DA1E1E;
}

.breadcrumb__item:not(:last-child)::after {
  display: inline-block;
  content: '';
  width: 14px;
  height: auto;
  border-top: 1px solid #ccc;
  margin: 0 10px;
}

.breadcrumb__current {
  background: #fff;
  font-weight: bold;
  border-radius: 50vh;
}

/*------------------------------------
 .loop
------------------------------------*/
.loop {
  width: 100%;
  height: auto;
  overflow: hidden;
  position: relative;
}

.loop__col {
  width: 340vw;
  height: auto;
  display: flex;
}

.loop__list {
  width: 100%;
  display: flex;
  justify-content: space-around;
  list-style: none;
  animation: infinity-scroll-left 26s infinite linear 0.5s both;
}

.loop__item__1st {
  width: 17.5%;
  margin-top: auto;
  filter: drop-shadow(8px 8px 0 rgba(255, 0, 0, .2));
}

.loop__item__2nd {
  width: 17.5%;
  filter: drop-shadow(8px 8px 0 #eee);
  border-radius: 20px;
}

.loop__item__3rd {
  width: 10%;
  filter: drop-shadow(8px 8px 0 #eee);
}

@keyframes infinity-scroll-left {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

.loop-catch {
  width: 30%;
  position: absolute;
  bottom: -50%;
  left: 0;
  z-index: 1;
  mix-blend-mode: multiply;
}

/*------------------------------------
  parallax
------------------------------------*/
.parallax {
  width: 100%;
  height: auto;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.parallax::before {
  display: block;
  content: '';
  width: 100%;
  height: 0;
  padding-top: 39.375%;
}

.parallax::after {
  display: block;
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(45deg, #DA1E1E, #1a1a1a);
  opacity: .4;
}

.parallax-img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.parallax-img>img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  object-fit: cover;
  object-position: top center;
}

.parallax-sp {
  display: none;
}

.parallax-ttl {
  width: 90%;
  max-width: 1024px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  font-family: "Playfair Display", serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1.6;
  color: #fff;
  mix-blend-mode: overlay;
  z-index: 1;
}

.mv-ttl--bold {
  font-size: 7rem;
}

.mv-ttl--reg {
  font-size: 4rem;
}

@media screen and (max-width:1280px) {
  .link-btn {
    width: 70%;
  }
}

@media screen and (max-width:1024px) {
  #fv::before {
    padding-top: 40%;
  }

  /*--parallax---*/
  .parallax::before {
    padding-top: 65%;
  }

  .parallax-sp {
    display: block;
  }

  .parallax-pc {
    display: none;
  }
}

@media screen and (max-width:896px) {
  #fv::before {
    padding-top: 45%;
  }

  /*--parallax---*/
  .parallax::before {
    padding-top: 85%;
  }
}

@media screen and (max-width:787px) {}

@media screen and (max-width:680px) {
  #fv::before {
    padding-top: 75%;
  }

  .fv-inner {
    width: 85%;
  }

  .fv-ttl>p {
    width: 45%;
  }

  /*--parallax---*/
  .parallax::before {
    padding-top: 100%;
  }
}

@media screen and (max-width:480px) {
  #fv::before {
    padding-top: 85%;
  }

  .fv-inner {
    width: 85%;
    top: 55%;
  }

  .fv-ttl>h2 {
    padding: 5px 0;
    font-size: 3rem;
  }

  .fv-ttl>p {
    width: 70%;
  }

  .fv-ttl>p>img {
    width: 10px;
  }

  .breadcrumbs-body {
    width: 85%;
  }

  .breadcrumb__current {
    background: rgba(255, 255, 255, .6);
  }

  .loop__col {
    width: 650vw;
  }

  .loop__item__1st {
    width: 17.5%;
    margin-top: auto;
    filter: drop-shadow(4px 4px rgba(255, 0, 0, .2));
  }

  .loop__item__2nd {
    width: 17.5%;
    filter: drop-shadow(4px 4px 0 #eee);
    border-radius: 8px;
  }

  .loop__item__2nd>img {
    border-radius: 8px;
  }

  .loop__item__3rd {
    width: 10%;
    filter: drop-shadow(4px 4px 0 #eee);
  }

  /*---parallax---*/
  .mv-ttl--bold {
    font-size: 4.6rem;
  }

  .mv-ttl--reg {
    font-size: 2.6rem;
  }
}