@charset "UTF-8";
#vsl {
  padding-top: 0;
}
#vsl .kv {
  position: relative;
  overflow: hidden;
  top: 0;
  left: 0;
}
#vsl .kv .kv_img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  max-width: 600px;
  width: 90vw;
}
#vsl .kv .sold_out {
  position: absolute;
  bottom: -40px;
  left: 50%;
  -webkit-transform: translate(-50%, 0%);
          transform: translate(-50%, 0%);
  width: 70%;
  z-index: 1;
}
#vsl .kv .bg_cont {
  position: relative;
  top: 0;
  left: 0;
  height: 750px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 430px) {
  #vsl .kv .bg_cont {
    height: 550px;
  }
}
#vsl .kv .bg_cont .bg_img {
  position: absolute;
  background-position: center;
  background-size: cover;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-animation: bg_img 20s infinite;
          animation: bg_img 20s infinite;
  opacity: 0;
}
@-webkit-keyframes bg_img {
  0% {
    opacity: 0;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  5% {
    opacity: 1;
  }
  25% {
    opacity: 1;
  }
  30% {
    opacity: 0;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}
@keyframes bg_img {
  0% {
    opacity: 0;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  5% {
    opacity: 1;
  }
  25% {
    opacity: 1;
  }
  30% {
    opacity: 0;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}
#vsl .kv .scroll_down a {
  display: inline-block;
  position: absolute;
  left: 50%;
  bottom: -30px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 2;
  padding: 10px 10px 110px;
  font-size: 14px;
  letter-spacing: 0.2em;
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  overflow: hidden;
  margin: auto;
  opacity: 0.7;
}
@media (max-width: 430px) {
  #vsl .kv .scroll_down a {
    bottom: -40px;
  }
}
#vsl .kv .scroll_down a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 2px;
  height: 100px;
  background: #fff;
}
#vsl .kv .scroll_down a:hover {
  opacity: 0.5;
}
#vsl .kv #type01 a::before {
  -webkit-animation: sdl01 2s cubic-bezier(1, 0, 0, 1) infinite;
          animation: sdl01 2s cubic-bezier(1, 0, 0, 1) infinite;
}
@-webkit-keyframes sdl01 {
  0% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  50% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  50.1% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
  100% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
}
@keyframes sdl01 {
  0% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  50% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  50.1% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
  100% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
}
#vsl .pack {
  padding-top: 20px;
}
#vsl .pack h1 {
  font-size: 28px;
  font-style: italic;
  text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 1;
  margin: 50px 0;
}
@media (max-width: 730px) {
  #vsl .pack h1 {
    font-size: 22px;
  }
}
#vsl .pack h1::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-image: url(../images/top/runway.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  aspect-ratio: 1600/104;
  width: 1600px;
  opacity: 0.5;
  z-index: -1;
}
@media (max-width: 730px) {
  #vsl .pack h1::before {
    width: 1000px;
  }
}
#vsl .pack p,
#vsl .pack .hashtag {
  margin: 0 auto;
  width: 95%;
  color: #fff;
  text-align: center;
  margin-bottom: 40px;
}
#vsl .pack .btn_cont {
  margin: 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 600px;
  width: 90%;
  gap: 20px;
}
@media (max-width: 730px) {
  #vsl .pack .btn_cont {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

#news .news_list {
  border: 1.5px solid #0070a1;
  height: 400px;
  margin: 0 auto;
  padding-block: 10px;
  padding-inline: 10px;
  overflow-y: scroll;
}
#news .news_list .news_item {
  margin-bottom: 40px;
}
#news .news_list .news_item a {
  color: #0070a1;
  font-weight: 500;
  font-size: 14px;
  position: relative;
}
#news .news_list .news_item a:hover {
  -webkit-text-decoration: underline 1.5px;
          text-decoration: underline 1.5px;
}
#news .news_list .news_item p {
  font-size: 14px;
  font-weight: 400;
}
#news .news_list .news_item .news_date {
  color: #2b2b34;
  font-weight: 500;
  margin-bottom: 10px;
}
#news .news_list .news_item .news_ttl {
  font-size: 14px;
  font-weight: 500;
  position: relative;
  left: -7px;
}
#news .news_list .news_item .news_ttl::before {
  content: "【";
  position: relative;
  left: -2px;
}
#news .news_list .news_item .news_ttl::after {
  content: "】";
  position: relative;
  right: -2px;
}

#about h3 {
  font-size: 1.125rem;
  font-weight: 500;
  background-color: #e8edf1;
  color: #2b2b34;
  text-align: center;
  padding-block: 1rem;
}
#about a {
  margin: 0 auto;
}
#about a:hover {
  color: #0070a1;
  -webkit-text-decoration: 1.5px underline #0070a1;
          text-decoration: 1.5px underline #0070a1;
}
#about ul {
  margin-left: 0.5rem;
}
#about ul li {
  margin-block: 0.5rem;
  position: relative;
}
#about ul li::before {
  position: absolute;
  content: "";
  background-color: #2b2b34;
  border-radius: 10px;
  width: 4px;
  height: 4px;
  top: 12px;
  left: -0.5rem;
}
#about .list {
  margin-bottom: 3rem;
  overflow: hidden;
  background-color: #fff;
  padding-bottom: 20px;
}
#about .list h4 {
  background-color: #e8edf1;
  color: #2b2b34;
  font-weight: 500;
  padding: 4px 8px;
  border-radius: 0.15rem;
  margin-bottom: 1rem;
  width: 6rem;
  text-align: center;
}
#about .list .list_h4 {
  width: 8rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#about a,
#about p,
#about li {
  color: #2b2b34;
  width: 99.5%;
  margin: 0 auto;
}
#about .space {
  margin-right: 0.5rem;
}
#about ol {
  list-style-type: decimal;
  margin-left: 1rem;
}
#about .anno {
  font-size: 14px;
  margin-bottom: 10px;
}
#about .block {
  width: 95%;
  margin: 0 auto;
  border-bottom: 1.5px solid #e8edf1;
  padding-block: 1rem;
}
#about .block:last-child {
  border: transparent;
}
#about .krng_lft {
  margin-left: 0.25rem;
}
#about .krng_rght {
  margin-right: 0.25rem;
}
#about .krng_inln {
  margin-inline: 0.25rem;
}

#venue .map_cont {
  position: relative;
  margin-bottom: 3rem;
}
#venue .map_cont::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 2px;
  top: 36px;
  right: 0;
  background-color: #0070a1;
  z-index: 1;
}
#venue .map_cont h3 {
  position: relative;
  background-color: #0070a1;
  color: #fff;
  font-weight: 500;
  left: -0.2px;
  width: 12rem;
  padding-block: 6px;
  padding-left: 8px;
  -webkit-clip-path: polygon(0 0, 86% 0%, 100% 100%, 0% 100%);
          clip-path: polygon(0 0, 86% 0%, 100% 100%, 0% 100%);
  margin-bottom: 1rem;
  display: inline-block;
}
#venue .map_cont p {
  margin-bottom: 1rem;
}
#venue .map_cont .map_img {
  width: 100%;
  margin: 0 auto;
}
#venue .map_cont .map_frst {
  position: relative;
  width: 104.7%;
}
#venue .btn {
  margin-top: 1rem;
  margin-bottom: 0;
}
#venue .btn a {
  font-style: normal;
}
#venue .btn a i {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
}/*# sourceMappingURL=style.css.map */