@font-face {
  font-family: Lato;
  src: url(../font/Lato-Bold.woff) format("woff");
  font-weight: bold;
}
article {
  min-height: 90vh;
}

.bgList {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100vh;
}
@media screen and (max-width: 900px) {
  .bgList {
    top: 17vw;
    height: 100vh;
  }
}
.bgList li {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: opacity 2s;
  opacity: 0;
}
.bgList li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bgList li.active {
  opacity: 1;
}
.bgList li.active img {
  width: 100%;
}

.page {
  height: 100%;
}
@media screen and (max-width: 900px) {
  .page {
    width: 100%;
    height: calc(100vw - 70px );
  }
}
.page ul.panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 700px;
  height: fit-content;
  margin: auto;
  width: 75%;
}
@media screen and (min-width: 901px) and (max-width: 1365px) {
  .page ul.panel {
    width: 90%;
  }
}
@media screen and (max-width: 900px) {
  .page ul.panel {
    width: 90%;
    height: 65vw;
    margin-top: 16vw;
  }
}
.page ul.panel li {
  width: 100%;
  transition: opacity 2s;
  pointer-events: none;
  opacity: 0;
}
.page ul.panel li.active {
  pointer-events: all;
  opacity: 1;
}
.page ul.panel li.active a img {
  width: 400px;
  margin-top: 40px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 900px) {
  .page ul.panel li.active a img {
    width: 80%;
  }
}

.topBnrs {
  position: relative;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.5);
}
.topBnrs ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 1200px;
  margin: auto;
  padding: 30px 0;
}
@media screen and (max-width: 900px) {
  .topBnrs ul {
    display: block;
    width: 90%;
    margin: auto;
    padding: 6vw 0;
  }
}
.topBnrs ul li {
  width: 49.3%;
  margin-bottom: 20px;
}
@media screen and (max-width: 900px) {
  .topBnrs ul li {
    width: 100%;
    margin-bottom: 4vw;
  }
  .topBnrs ul li:last-of-type {
    margin-bottom: 0;
  }
}
.topBnrs ul li:nth-last-child(1), .topBnrs ul li:nth-last-child(2) {
  margin-bottom: 0;
}
@media screen and (max-width: 900px) {
  .topBnrs ul li:nth-last-child(1), .topBnrs ul li:nth-last-child(2) {
    margin-bottom: 4vw;
  }
}

.button {
  margin-top: 60px;
}
@media screen and (max-width: 900px) {
  .button {
    margin-top: 40px;
  }
}
.button > a {
  font-family: "Lato", sans-serif;
  display: block;
  width: 100%;
  max-width: 450px;
  margin: auto;
  padding: 20px;
  color: #FFF;
  background-color: #AF220999;
  font-size: 30px;
  font-weight: bold;
  text-align: center;
  border: solid 3px #FFF;
  border-radius: 10px;
}
@media screen and (max-width: 900px) {
  .button > a {
    font-size: 20px;
    border: solid 2px #FFF;
  }
}

.link {
  display: block;
  width: fit-content;
  margin: 30px auto 0;
  color: #FFF;
  text-decoration: underline;
}

.is-sp {
  display: none;
}
@media screen and (max-width: 900px) {
  .is-sp {
    display: block;
  }
}

.is-pc {
  display: block;
}
@media screen and (max-width: 900px) {
  .is-pc {
    display: none;
  }
}
