@charset "UTF-8";

.hamburger.active {
  background: linear-gradient(0deg, #50146d, #b4192f);
}

.move-t {
  background: linear-gradient(0deg, #50146d, #b4192f);
}
.move-t>div:nth-child(1) {
  animation: MoveLeft1 32s infinite linear;
}
.move-t>div:nth-child(2) {
  animation: MoveLeft2 32s infinite linear;
}
.move-t>div:nth-child(3) {
  animation: MoveLeft3 32s infinite linear;
}
.move-t>div:nth-child(4) {
  animation: MoveLeft4 32s infinite linear;
}
@keyframes MoveLeft1 {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-200%);
  }
}
@keyframes MoveLeft2 {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(-100%);
  }
}
@keyframes MoveLeft3 {
  from {
    transform: translateY(200%);
  }
  to {
    transform: translateY(0%);
  }
}
@keyframes MoveLeft4 {
  from {
    transform: translateY(300%);
  }
  to {
    transform: translateY(100%);
  }
}

#top-wrap {
  position: relative;
  width: 100%;
  height: 100vh;
}
#top-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
#top-bg div {
  position: relative;
  background-position: center;
  background-size: 100%;
  overflow: hidden;
}
#top-bg div::after {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: 330%;
  background-repeat: no-repeat;
}
#top-bg div:nth-child(1) {
  background-image: linear-gradient(315deg, #283d67, #c3a2e8);
}
#top-bg div:nth-child(1)::after {
  background-image: url(../img/04-dm.webp);
  background-position: 47% -10vw;
}
#top-bg div:nth-child(2) {
  background-image: linear-gradient(315deg, #071945, #fda3e1);
}
#top-bg div:nth-child(2)::after {
  background-image: url(../img/02-dm.webp);
  background-position: 48% -24vw;
}
#top-bg div:nth-child(3) {
  background-image: linear-gradient(315deg, #270c4f, #f285a5);
}
#top-bg div:nth-child(3)::after {
  background-image: url(../img/01-dm.webp);
  background-position: 54% -24vw;
}
#top-bg div:nth-child(4) {
  background-image: linear-gradient(315deg, #2a3b66, #8ed7db);
}
#top-bg div:nth-child(4)::after {
  background-image: url(../img/03-dm0904.webp);
  background-position: 43% -4vw;
}

@media (orientation: portrait){
  #top-bg {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
  }
  #top-bg div:nth-child(1) { grid-area: 2 / 1 / 3 / 2; }
  #top-bg div:nth-child(2) { grid-area: 1 / 1 / 2 / 2; }
  #top-bg div:nth-child(3) { grid-area: 1 / 2 / 2 / 3; }
  #top-bg div:nth-child(4) { grid-area: 2 / 2 / 3 / 3; }

  #top-bg div:nth-child(1)::after {
    background-position: 47% -6vw;
  }
  #top-bg div:nth-child(2)::after {
    background-position: 48% -50vw;
  }
  #top-bg div:nth-child(3)::after {
    background-position: 54% -58vw;
  }
  #top-bg div:nth-child(4)::after {
    background-position: 43% 6vw;
  }
}

h1 {
  position: absolute;
  margin: 0 auto;
  bottom: 2vw;
  left: 0;
  right: 0;
  max-width: 1500px;
  width: 96%;
  text-align: center;
}
h1 picture {
  position: relative;
  display: block;
  margin: 0 auto;
  z-index: 1;
}
h1::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  background: rgba(0, 0, 0, .6);
  width: 96%;
  height: 80%;
  border: 2px solid #000;
}
@media (orientation: portrait){
  h1 {
    bottom: 41%;
    width: 100%;
  }
  h1 picture {
    display: block;
    max-width: 600px;
    width: 96%;
  }
  h1::before {
    top: unset;
    background: rgba(0, 0, 0, .8);
    width: 100%;
    height: 60%;
    border-right: none;
    border-left: none;
  }
}

h2 {
  position: relative;
  margin: 1rem 0;
  font-size: 2em;
  text-align: center;
  font-weight: 900;
  font-style: italic;
  background: url(../img/h2-b.png), rgba(0, 0, 0, .5);
  background-size: 160px, 100%;
  background-position: center;
  color: #fff;
  padding: .5rem 0;
  text-shadow: 2px 2px 0 #50146d;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  box-shadow: 0 0 0 3px #000;
  border-image: linear-gradient(135deg, #000, #b4192f, #a17bb3, #50146d, #000) 1;
}

#thumbnail .slick-current.thumbnail-item:nth-child(1) {
  background: #f285a5;
  box-shadow: 0 0 0 1px #f285a5;
}
#thumbnail .slick-current.thumbnail-item:nth-child(2) {
  background: #b078b0;
  box-shadow: 0 0 0 1px #b078b0;
}
#thumbnail .slick-current.thumbnail-item:nth-child(3) {
  background: #8ed7db;
  box-shadow: 0 0 0 1px #8ed7db;
}
#thumbnail .slick-current.thumbnail-item:nth-child(4) {
  background: #c3a2e8;
  box-shadow: 0 0 0 1px #c3a2e8;
}

#character01.slide-item::before {
  background: linear-gradient(315deg, #270c4f, #f285a5);
}
#character02.slide-item::before {
  background: linear-gradient(315deg, #071945, #fda3e1);
}
#character03.slide-item::before {
  background: linear-gradient(315deg, #2a3b66, #8ed7db);
}
#character04.slide-item::before {
  background: linear-gradient(315deg, #283d67, #c3a2e8);
}

a.all {
  position: relative;
  display: block;
  text-align: center;
  text-decoration: none;
  font-size: 150%;
  font-weight: 700;
  border: 3px solid #000;
  padding: .8em;
  background: linear-gradient(0deg, #50146d, #b4192f);
  color: #fff;
  box-shadow: 0 0 0 1px #931743;
  line-height: 1.2;
  text-shadow: 1px 1px 0 #000;
  margin: 1em 0 0;
}
