@charset "utf-8";

.special {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}

.special-item {
  width: 47%;
  margin: 0 0 .8rem;
  box-shadow: 4px 4px 8px rgba(15, 41, 109, 0.6);
  transition: all 0.3s;
}

.special-item img {
  width: 100%;
  line-height: 0;
  padding: 0;
  margin: 0;
  vertical-align: bottom;
}

.btn-bg {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  border: none;
  cursor: pointer;
  user-select: none;
  pointer-events: auto;
}

.btn-1 {
  background-image: url("../img/special/thumb_001.jpg");
}

.btn-2 {
  background-image: url("../img/special/thumb_002.jpg");
}

.btn-3 {
  background-image: url("../img/special/thumb_003.jpg");
}

.btn-4 {
  background-image: url("../img/special/thumb_004.jpg");
}

.btn-5 {
  background-image: url("../img/special/thumb_005.jpg");
}

.btn-6 {
  background-image: url("../img/special/thumb_006.jpg");
}

.btn-7 {
  background-image: url("../img/special/thumb_007.jpg");
}

.btn-8 {
  background-image: url("../img/special/thumb_008.jpg");
}

.btn-9 {
  background-image: url("../img/special/thumb_009.jpg");
}

.btn-10 {
  background-image: url("../img/special/thumb_010.jpg");
}

.sp-modal {
  display: none;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 999;
}

.sp-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  background-position: top left;
  background-size: 100% auto;
  background-repeat: repeat-y;
  overflow: hidden;
  overflow-y: scroll;
  overscroll-behavior-y: none;
  /*background-color: rgba(63, 104, 234, 0.9);*/
}

.webp .sp-wrap {
  background-image: url(../img/special/bg.webp);
}

.no-webp .sp-wrap {
  background-image: url(../img/special/bg.jpg);
}

.sp-container {
  width: 100%;
  text-align: center;
}

.name {
  color: #fff;
  font-size: 6.2vw;
  font-weight: 500;
}

.movie {
  position: relative;
  margin: 1.2rem 0;
}

video {
  width: 100%;
}

.visual {
  display: inline-block;
  color: #fff;
  text-align: center;
  font-size: 3.8vw;
  font-weight: 400;
}

.visual span {
  border-bottom: #fff solid 1px;
}

.visual p {
  margin: .6em 0 0;
}

.sp-button a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80%;
  height: 3.6rem;
  margin: 2rem auto 0;
  color: #fff;
  font-size: 4vw;
  font-weight: 400;
  text-decoration: none;
  border-radius: 300px;
  border: #fff solid 1px;
  transition: all 0.3s;
}

@keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.sp-wrap.zoom-in {
  animation: zoomIn 0.3s ease forwards;
  transform-origin: center center;
}

body.modal-open #toggle {
  display: none !important;
}

@media screen and (min-width: 751px) and (max-width: 1024px) {
  .name {
    font-size: 5vw;
  }

  .visual {
    font-size: 3vw;
  }

  .sp-button a {
    width: 60%;
    height: 4rem;
    margin: 2rem auto 0;
    font-size: 2.8vw;
  }
}

@media screen and (min-width: 1025px) {
  .sp-container {
    width: 640px;
    margin: 0 auto;
  }

  .special-item:hover {
    transform: translate(4px, 4px);
    box-shadow: 4px 4px 8px rgba(15, 41, 109, 0);
  }

  .sp-wrap {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
  }

  .webp .sp-wrap {
    background-image: url(../img/special/pc-bg.webp);
  }

  .no-webp .sp-wrap {
    background-image: url(../img/special/pc-bg.jpg);
  }

  .name {
    font-size: min(2.4vw, 30px);
  }

  .movie {
    margin: 1.6rem 0;
  }

  .visual {
    font-size: min(1.4vw, 16px);
  }

  .visual span {
    border-bottom: #fff solid 1px;
  }

  .visual p {
    margin: .6em 0 0;
  }

  .sp-button a {
    width: 60%;
    font-size: 1.2vw;
  }

  .sp-button a:hover {
    color: #2453b2;
    border: #fff solid 1px;
    background-color: #fff;
  }

}