@charset "UTF-8";
/* CSS INFORMATION -====================================================
File name : top.css
Description : トップ
===================================================================== */
@-webkit-keyframes gradeAnimation {
  0% {
    -webkit-filter: hue-rotate(0deg);
            filter: hue-rotate(0deg);
  }
  100% {
    -webkit-filter: hue-rotate(360deg);
            filter: hue-rotate(360deg);
  }
}
@keyframes gradeAnimation {
  0% {
    -webkit-filter: hue-rotate(0deg);
            filter: hue-rotate(0deg);
  }
  100% {
    -webkit-filter: hue-rotate(360deg);
            filter: hue-rotate(360deg);
  }
}
/* =====================================================================
    ファーストビュー非表示
======================================================================*/
.header_sns,
.pagetop,
.bg_animate {
  display: none;
}

/* =====================================================================
    mv
======================================================================*/
.mv {
  position: relative;
}
.mv_video {
  position: relative;
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  overflow: hidden;
}
.mv_video video {
  width: 100%;
  height: 100%;
}
.mv_video_front {
  position: relative;
  z-index: 1;
}
.mv_video_back {
  position: absolute;
  top: -5%;
  left: -5%;
  width: 110%;
  height: 110%;
  -webkit-filter: blur(8px);
          filter: blur(8px);
}
.mv_video_back video {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -o-object-fit: cover;
     object-fit: cover;
}
.mv_video_pr {
  display: none;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100%;
  padding-top: 56.25%;
  z-index: 3;
}
.mv_video_pr iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.mv_scroll {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: calc(100vh - 16rem) auto 0;
  text-align: center;
  width: 13.5rem;
  height: 13.7rem;
  pointer-events: none;
  z-index: 5;
}
.mv_scroll::before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/common/img_scroll_circle.png) no-repeat center/contain;
  -webkit-animation: rotate 6s linear infinite;
          animation: rotate 6s linear infinite;
}
.mv_scroll span {
  display: block;
  padding-top: 31.8518518519%;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 2.2rem;
  text-shadow: 0 0 0.3em #fff, 0 0 0.3em #fff, 0 0 0.3em #fff, 0 0 0.3em #fff, 0 0 0.2em #fff, 0 0 0.2em #fff, 0 0 0.2em #fff, 0 0 0.2em #fff;
}
.mv_scroll .scrolldown {
  position: absolute;
  bottom: 0;
  left: 50%;
  margin-bottom: 22.2222222222%;
  padding-top: 22.2222222222%;
  -webkit-filter: drop-shadow(0 0 0.1em #fff) drop-shadow(0 0 0.1em #fff) drop-shadow(0 0 0.1em #fff) drop-shadow(0 0 0.1em #fff);
          filter: drop-shadow(0 0 0.1em #fff) drop-shadow(0 0 0.1em #fff) drop-shadow(0 0 0.1em #fff) drop-shadow(0 0 0.1em #fff);
}
.mv_scroll .scrolldown::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -0.3rem;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background: #000000;
  -webkit-animation: circlemove 1.6s ease-in-out infinite, cirlemove_hide 1.6s ease-out infinite;
          animation: circlemove 1.6s ease-in-out infinite, cirlemove_hide 1.6s ease-out infinite;
}
.mv_scroll .scrolldown:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  border-left: 0.2rem solid;
  height: 100%;
}

@-webkit-keyframes rotate {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes rotate {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@-webkit-keyframes circlemove {
  0% {
    bottom: 100%;
  }
  100% {
    bottom: -5px;
  }
}
@keyframes circlemove {
  0% {
    bottom: 100%;
  }
  100% {
    bottom: -5px;
  }
}
@-webkit-keyframes cirlemove_hide {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}
@keyframes cirlemove_hide {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}
@media screen and (min-width: 768px) {
  .mv_scroll {
    right: auto;
    margin: calc(100vh - 14rem) 0 0 calc(220 / 1920 * 100%);
    width: 11.5rem;
    height: 11.6rem;
  }
  .mv_scroll span {
    font-size: 1.8rem;
  }
}
/* =====================================================================
    pickup
======================================================================*/
.pickup {
  padding: 20rem 0 15rem;
}
.pickup_content {
  position: relative;
}
.pickup_tab {
  position: absolute;
  top: 0;
  left: -4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}
.pickup_tab li {
  position: relative;
  margin-bottom: 4px;
  padding-right: 2rem;
  width: 6rem;
  font-family: "Staatliches", sans-serif;
  font-size: 2.6rem;
}
.pickup_tab li::after {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  right: 1.6rem;
  width: 0.4rem;
  height: 100%;
  background: #000000;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.pickup_tab li.active::after {
  right: 0;
  width: 2rem;
  background: #fabe00;
}
.pickup_list {
  margin-left: auto;
  width: calc(600 / 650 * 100%);
}
.pickup_list li {
  display: none;
}
.pickup_list li.active {
  display: block !important;
}
.pickup_list li figure {
  margin-bottom: 7rem;
  width: 108.3333333333%;
  min-height: 36.4rem;
}
.pickup_list li p {
  margin-bottom: 1em;
  line-height: 1.8;
  -webkit-filter: hue-rotate(360deg);
          filter: hue-rotate(360deg);
  -webkit-animation: gradeAnimation 10s linear infinite;
          animation: gradeAnimation 10s linear infinite;
  background-size: 200% 200%;
  background-image: -webkit-gradient(linear, left top, right top, from(#65007b), color-stop(#7b0040), color-stop(#5d3200), color-stop(#005913), color-stop(#004f4a), color-stop(#003e62), to(#080059));
  background-image: linear-gradient(to right, #65007b, #7b0040, #5d3200, #005913, #004f4a, #003e62, #080059);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}
.pickup_list li p.ja {
  font-weight: 700;
}

@media screen and (min-width: 768px) {
  .pickup {
    padding: 19rem 0 10rem;
  }
  .pickup .sec_ttl {
    position: absolute;
    top: -8.5rem;
    left: 0;
    z-index: 1;
    pointer-events: none;
    -webkit-filter: drop-shadow(0 0 0.2em #fff) drop-shadow(0 0 0.2em #fff) drop-shadow(0 0 0.2em #fff);
            filter: drop-shadow(0 0 0.2em #fff) drop-shadow(0 0 0.2em #fff) drop-shadow(0 0 0.2em #fff);
  }
  .pickup .sec_ttl .en {
    font-size: 16rem;
  }
  .pickup .sec_ttl .ja {
    font-size: 3.8rem;
  }
  .pickup_tab {
    top: 30rem;
    left: 0;
  }
  .pickup_tab li {
    cursor: pointer;
  }
  .pickup_tab li:hover::after {
    background: #fabe00;
  }
  .pickup_list {
    margin: 0 auto;
    width: calc(1000 / 1200 * 100%);
  }
  .pickup_list li figure {
    width: 120%;
    min-height: 81rem;
    overflow: hidden;
  }
  .pickup_list li figure img {
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  }
  .pickup_list li figure a:not(.yt_popup):hover img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  .pickup_list li p.ja {
    font-size: 110%;
  }
  .pickup_list li p.en {
    font-size: 120%;
  }
}
@media screen and (min-width: 1920px) {
  .pickup_list li figure {
    width: 144%;
  }
}
/* =====================================================================
    lineup
======================================================================*/
.lineup .inner {
  margin-left: 0;
  width: calc(730 / 750 * 100%);
  background-color: rgba(255, 255, 255, 0.6);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  border-radius: 0 6rem 6rem 0;
  -webkit-box-shadow: 0px 0px 30px 0px rgba(190, 190, 255, 0.3);
          box-shadow: 0px 0px 30px 0px rgba(190, 190, 255, 0.3);
}
.lineup_content {
  position: relative;
  padding: 8rem 4.1095890411% 16rem 6.8493150685%;
}
.lineup_content::before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 1.9178082192%;
  height: 100%;
  -webkit-filter: hue-rotate(360deg);
          filter: hue-rotate(360deg);
  -webkit-animation: gradeAnimation 10s linear infinite;
          animation: gradeAnimation 10s linear infinite;
  background-size: 200% 200%;
  background-image: -webkit-gradient(linear, left bottom, left top, from(#65007b), color-stop(#7b0040), color-stop(#5d3200), color-stop(#005913), color-stop(#004f4a), color-stop(#003e62), to(#080059));
  background-image: linear-gradient(to top, #65007b, #7b0040, #5d3200, #005913, #004f4a, #003e62, #080059);
}
.lineup_content_head {
  padding-top: 10rem;
}
.lineup_content_head .sec_ttl {
  margin-bottom: 6rem;
}
.lineup_content_head p {
  font-weight: 700;
  letter-spacing: 0;
}
.lineup_content_head p a {
  position: relative;
  display: inline;
  margin: 0 0.2em;
  padding-left: 1em;
  text-decoration: underline;
}
.lineup_content_head p a::after {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  left: 0;
  width: 0.8em;
  height: 0.8em;
  -webkit-mask-image: url('data:image/svg+xml;utf-8,<svg xmlns="http://www.w3.org/2000/svg" fill="%2332CD32" viewBox="0 0 21 21"><path d="M10.5,0C4.7,0,0,4.7,0,10.5s4.7,10.5,10.5,10.5,10.5-4.7,10.5-10.5S16.3,0,10.5,0ZM16.4,16.4h-2v-8.3l-8.4,8.4-1.4-1.4L12.9,6.6H4.6v-2h11.8v11.8Z"/></svg>');
          mask-image: url('data:image/svg+xml;utf-8,<svg xmlns="http://www.w3.org/2000/svg" fill="%2332CD32" viewBox="0 0 21 21"><path d="M10.5,0C4.7,0,0,4.7,0,10.5s4.7,10.5,10.5,10.5,10.5-4.7,10.5-10.5S16.3,0,10.5,0ZM16.4,16.4h-2v-8.3l-8.4,8.4-1.4-1.4L12.9,6.6H4.6v-2h11.8v11.8Z"/></svg>');
  -webkit-mask-size: contain;
          mask-size: contain;
  background-color: #000000;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.lineup .btn_manpa {
  position: relative;
  display: inline-block;
  width: calc(460 / 650 * 100%);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.8rem;
  font-weight: 900;
  padding: 1em 2em;
  border: 2px solid #000000;
  border-radius: 3em;
}
.lineup .btn_manpa::after {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  right: 1.5em;
  width: 0.5em;
  height: 0.5em;
  border-top: 2px solid #000000;
  border-right: 2px solid #000000;
  -webkit-transform: rotate(135deg) translateY(-40%);
          transform: rotate(135deg) translateY(-40%);
  -webkit-transform-origin: top center;
          transform-origin: top center;
  -webkit-transition: border-color 0.3s ease;
  transition: border-color 0.3s ease;
}
.lineup_link {
  position: sticky;
  top: 25vh;
  right: 0;
  float: right;
  margin: 3rem calc(-70 / 650 * 100%) 0 auto;
  width: 21rem;
  z-index: 3;
}
.lineup_link li {
  margin-bottom: 1.5vh;
  -webkit-transform: rotate(340deg);
          transform: rotate(340deg);
  -webkit-transform-origin: top right;
          transform-origin: top right;
}
.lineup_link li a {
  position: relative;
  padding: 7.5% 12.5%;
  padding-left: 20%;
  font-family: "Staatliches", sans-serif;
  font-size: 1.6rem;
  color: #fff;
  background-color: #000000;
}
.lineup_link li a::before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 5%;
  height: 100%;
  -webkit-filter: hue-rotate(360deg);
          filter: hue-rotate(360deg);
  -webkit-animation: gradeAnimation 10s linear infinite;
          animation: gradeAnimation 10s linear infinite;
  background-size: 200% 200%;
  background-image: -webkit-gradient(linear, left bottom, left top, from(#65007b), color-stop(#7b0040), color-stop(#5d3200), color-stop(#005913), color-stop(#004f4a), color-stop(#003e62), to(#080059));
  background-image: linear-gradient(to top, #65007b, #7b0040, #5d3200, #005913, #004f4a, #003e62, #080059);
}
.lineup_link li a::after {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  left: 0;
  width: 0.6em;
  height: 0.6em;
  margin-left: 5%;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: rotate(45deg) translateY(-50%);
          transform: rotate(45deg) translateY(-50%);
  -webkit-transform-origin: bottom right;
          transform-origin: bottom right;
}
.lineup_link li a span {
  margin-left: 0.2em;
  font-size: 212%;
  vertical-align: middle;
}
.lineup_link li a span small {
  font-size: 70%;
}
.lineup_year {
  padding-top: 4rem;
}
.lineup_year > li {
  margin-bottom: 4rem;
  padding-top: 10rem;
}
.lineup_year_ttl {
  margin-bottom: 8rem;
}
.lineup_year_ttl::before {
  content: "";
  position: absolute;
  display: block;
  width: 2.5rem;
  height: 5rem;
  margin: 0.85% 0 0 calc(-33 / 650 * 100%);
  -webkit-filter: hue-rotate(360deg);
          filter: hue-rotate(360deg);
  -webkit-animation: gradeAnimation 10s linear infinite;
          animation: gradeAnimation 10s linear infinite;
  background-size: 200% 200%;
  background-image: -webkit-gradient(linear, left bottom, left top, from(#65007b), color-stop(#7b0040), color-stop(#5d3200), color-stop(#005913), color-stop(#004f4a), color-stop(#003e62), to(#080059));
  background-image: linear-gradient(to top, #65007b, #7b0040, #5d3200, #005913, #004f4a, #003e62, #080059);
  background-size: 300% 300%;
  -webkit-mask-image: url(../images/top/ttl_triangle.svg);
          mask-image: url(../images/top/ttl_triangle.svg);
  mask-mode: alpha;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
}
.lineup_year_ttl h3 {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 11rem;
  font-family: "Staatliches", sans-serif;
  font-size: 3.4rem;
  -webkit-filter: hue-rotate(360deg);
          filter: hue-rotate(360deg);
  -webkit-animation: gradeAnimation 10s linear infinite;
          animation: gradeAnimation 10s linear infinite;
  background-size: 200% 200%;
  background-image: -webkit-gradient(linear, left top, right top, from(#65007b), color-stop(#7b0040), color-stop(#5d3200), color-stop(#005913), color-stop(#004f4a), color-stop(#003e62), to(#080059));
  background-image: linear-gradient(to right, #65007b, #7b0040, #5d3200, #005913, #004f4a, #003e62, #080059);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}
.lineup_year_ttl h3::before {
  content: "";
  position: absolute;
  display: block;
  left: 0;
  top: 47%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 9.8rem;
  height: 1.6rem;
  -webkit-filter: hue-rotate(360deg);
          filter: hue-rotate(360deg);
  -webkit-animation: gradeAnimation 10s linear infinite;
          animation: gradeAnimation 10s linear infinite;
  background-size: 200% 200%;
  background-image: -webkit-gradient(linear, left top, right top, from(#65007b), color-stop(#7b0040), color-stop(#5d3200), color-stop(#005913), color-stop(#004f4a), color-stop(#003e62), to(#080059));
  background-image: linear-gradient(to right, #65007b, #7b0040, #5d3200, #005913, #004f4a, #003e62, #080059);
  -webkit-mask-image: url(../images/top/ttl_dots-sp.svg);
          mask-image: url(../images/top/ttl_dots-sp.svg);
  mask-mode: alpha;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
          mask-size: 100% 100%;
}
.lineup_year_ttl h3 span {
  margin-left: 0.2em;
  font-size: 194%;
}
.lineup_year_ttl h3 span small {
  font-size: 70%;
}
.lineup_year_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 7rem calc(20 / 650 * 100%);
  width: 100%;
}
.lineup_year_list > li {
  position: relative;
  width: calc(265 / 650 * 100%);
}
.lineup_year_list > li figure {
  background: #000000;
  overflow: hidden;
}
.lineup_year_list > li figure img {
  aspect-ratio: 1/1.413;
  -o-object-fit: contain;
     object-fit: contain;
}
.lineup_year_list > li h4 {
  margin-top: 0.8em;
  line-height: 1.3;
}
.lineup_year_list > li h4 .ja {
  display: block;
  margin-bottom: 0.3em;
  font-weight: 700;
}
.lineup_year_list > li h4 .en {
  display: block;
}
@media screen and (max-width: 767px) {
  .lineup_year_list > li h4 .en {
    font-size: 93%;
  }
}
.lineup_year_onair {
  position: absolute;
  top: -0.2em;
  right: -0.2em;
  padding: 0.2em 0.5em;
  font-family: "Staatliches", sans-serif;
  font-size: 2.2rem;
  background-color: #fabe00;
  z-index: 1;
}
.lineup_manpa {
  position: relative;
  margin-top: 10rem;
}
.lineup_manpa::before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 0.5rem;
  -webkit-filter: hue-rotate(360deg);
          filter: hue-rotate(360deg);
  -webkit-animation: gradeAnimation 10s linear infinite;
          animation: gradeAnimation 10s linear infinite;
  background-size: 200% 200%;
  background-image: -webkit-gradient(linear, left top, right top, from(#65007b), color-stop(#7b0040), color-stop(#5d3200), color-stop(#005913), color-stop(#004f4a), color-stop(#003e62), to(#080059));
  background-image: linear-gradient(to right, #65007b, #7b0040, #5d3200, #005913, #004f4a, #003e62, #080059);
  -webkit-mask-image: url(../images/top/img_line_dots.svg);
          mask-image: url(../images/top/img_line_dots.svg);
  mask-mode: alpha;
  -webkit-mask-repeat: repeat-x;
          mask-repeat: repeat-x;
  -webkit-mask-size: auto 100%;
          mask-size: auto 100%;
}

.bubblyButton {
  position: relative;
  -webkit-transition: -webkit-transform ease-in 0.1s, -webkit-box-shadow ease-in 0.25s;
  transition: -webkit-transform ease-in 0.1s, -webkit-box-shadow ease-in 0.25s;
  transition: transform ease-in 0.1s, box-shadow ease-in 0.25s;
  transition: transform ease-in 0.1s, box-shadow ease-in 0.25s, -webkit-transform ease-in 0.1s, -webkit-box-shadow ease-in 0.25s;
}
.bubblyButton figure {
  position: relative;
  z-index: 1;
}
.bubblyButton::before, .bubblyButton::after {
  content: "";
  position: absolute;
  display: block;
  width: 150%;
  height: 70%;
  left: -20%;
  z-index: -1000;
  -webkit-transition: all ease-in-out 0.5s;
  transition: all ease-in-out 0.5s;
  background-repeat: no-repeat;
}
.bubblyButton::before {
  display: none;
  top: -35%;
  background-image: radial-gradient(circle, #d53fff 10%, transparent 20%), radial-gradient(circle, transparent 10%, #d53fff 20%, transparent 30%), radial-gradient(circle, #d53fff 10%, transparent 20%), radial-gradient(circle, #d53fff 10%, transparent 20%), radial-gradient(circle, transparent 5%, #d53fff 15%, transparent 20%), radial-gradient(circle, #ffd635 10%, transparent 20%), radial-gradient(circle, #ffd635 10%, transparent 20%), radial-gradient(circle, #ffd635 10%, transparent 20%), radial-gradient(circle, #ffd635 10%, transparent 20%);
  background-size: 10% 10%, 20% 20%, 15% 15%, 20% 20%, 18% 18%, 10% 10%, 15% 15%, 10% 10%, 18% 18%;
}
.bubblyButton::after {
  display: none;
  bottom: -35%;
  background-image: radial-gradient(circle, #56adff 10%, transparent 20%), radial-gradient(circle, #56adff 10%, transparent 20%), radial-gradient(circle, transparent 5%, #56adff 15%, transparent 20%), radial-gradient(circle, #56adff 10%, transparent 20%), radial-gradient(circle, #79ff4c 10%, transparent 20%), radial-gradient(circle, #79ff4c 10%, transparent 20%), radial-gradient(circle, #79ff4c 10%, transparent 20%);
  background-size: 15% 15%, 20% 20%, 18% 18%, 20% 20%, 15% 15%, 10% 10%, 20% 20%;
}
.bubblyButton:active {
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
}
.bubblyButton.animate::before {
  display: block;
  -webkit-animation: topBubbles ease-in-out 0.75s forwards;
          animation: topBubbles ease-in-out 0.75s forwards;
}
.bubblyButton.animate::after {
  display: block;
  -webkit-animation: bottomBubbles ease-in-out 0.75s forwards;
          animation: bottomBubbles ease-in-out 0.75s forwards;
}

@-webkit-keyframes topBubbles {
  0% {
    background-position: 5% 90%, 10% 90%, 10% 90%, 15% 90%, 25% 90%, 25% 90%, 40% 90%, 55% 90%, 70% 90%;
  }
  50% {
    background-position: 0% 80%, 0% 20%, 10% 40%, 20% 0%, 30% 30%, 22% 50%, 50% 50%, 65% 20%, 90% 30%;
  }
  100% {
    background-position: 0% 70%, 0% 10%, 10% 30%, 20% -10%, 30% 20%, 22% 40%, 50% 40%, 65% 10%, 90% 20%;
    background-size: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
  }
}

@keyframes topBubbles {
  0% {
    background-position: 5% 90%, 10% 90%, 10% 90%, 15% 90%, 25% 90%, 25% 90%, 40% 90%, 55% 90%, 70% 90%;
  }
  50% {
    background-position: 0% 80%, 0% 20%, 10% 40%, 20% 0%, 30% 30%, 22% 50%, 50% 50%, 65% 20%, 90% 30%;
  }
  100% {
    background-position: 0% 70%, 0% 10%, 10% 30%, 20% -10%, 30% 20%, 22% 40%, 50% 40%, 65% 10%, 90% 20%;
    background-size: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
  }
}
@-webkit-keyframes bottomBubbles {
  0% {
    background-position: 10% -10%, 30% 10%, 55% -10%, 70% -10%, 85% -10%, 70% -10%, 70% 0%;
  }
  50% {
    background-position: 0% 80%, 20% 80%, 45% 60%, 60% 100%, 75% 70%, 95% 60%, 105% 0%;
  }
  100% {
    background-position: 0% 90%, 20% 90%, 45% 70%, 60% 110%, 75% 80%, 95% 70%, 110% 10%;
    background-size: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
  }
}
@keyframes bottomBubbles {
  0% {
    background-position: 10% -10%, 30% 10%, 55% -10%, 70% -10%, 85% -10%, 70% -10%, 70% 0%;
  }
  50% {
    background-position: 0% 80%, 20% 80%, 45% 60%, 60% 100%, 75% 70%, 95% 60%, 105% 0%;
  }
  100% {
    background-position: 0% 90%, 20% 90%, 45% 70%, 60% 110%, 75% 80%, 95% 70%, 110% 10%;
    background-size: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
  }
}
@keyframes topBubbles {
  0% {
    background-position: 5% 90%, 10% 90%, 10% 90%, 15% 90%, 25% 90%, 25% 90%, 40% 90%, 55% 90%, 70% 90%;
  }
  50% {
    background-position: 0% 80%, 0% 20%, 10% 40%, 20% 0%, 30% 30%, 22% 50%, 50% 50%, 65% 20%, 90% 30%;
  }
  100% {
    background-position: 0% 70%, 0% 10%, 10% 30%, 20% -10%, 30% 20%, 22% 40%, 50% 40%, 65% 10%, 90% 20%;
    background-size: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
  }
}
@keyframes bottomBubbles {
  0% {
    background-position: 10% -10%, 30% 10%, 55% -10%, 70% -10%, 85% -10%, 70% -10%, 70% 0%;
  }
  50% {
    background-position: 0% 80%, 20% 80%, 45% 60%, 60% 100%, 75% 70%, 95% 60%, 105% 0%;
  }
  100% {
    background-position: 0% 90%, 20% 90%, 45% 70%, 60% 110%, 75% 80%, 95% 70%, 110% 10%;
    background-size: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
  }
}
@media screen and (min-width: 768px) {
  .lineup .inner {
    width: calc(1900 / 1920 * 100%);
    max-width: initial;
  }
  .lineup_content {
    padding: 0 2.1052631579% 20rem 3.1578947368%;
  }
  .lineup_content::before {
    width: 0.7035175879%;
  }
  .lineup_content_head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .lineup_content_head .sec_ttl {
    margin: 0 0 0 31rem;
  }
  .lineup_content_head p a:hover {
    color: #65007b;
  }
  .lineup_content_head p a:hover::after {
    background-color: #65007b;
  }
  .lineup .btn_manpa {
    margin-right: 16.6666666667%;
    width: 40rem;
    font-size: 2.4rem;
  }
  .lineup .btn_manpa:hover {
    color: #fff;
    background-color: #000000;
  }
  .lineup .btn_manpa:hover::after {
    border-color: #fff;
  }
  .lineup_year {
    width: 94.4444444444%;
  }
  .lineup_year_ttl {
    margin-bottom: 6rem;
  }
  .lineup_year_ttl::before {
    margin: 0.3% 0 0 -2.6470588235%;
  }
  .lineup_year_ttl h3 {
    padding-left: 31rem;
  }
  .lineup_year_ttl h3::before {
    width: 29.1rem;
    height: 2rem;
    -webkit-mask-image: url(../images/top/ttl_dots-pc.svg);
            mask-image: url(../images/top/ttl_dots-pc.svg);
  }
  .lineup_year_list {
    gap: 7rem 2.1764705882%;
  }
  .lineup_year_list > li {
    width: 18.2352941176%;
  }
  .lineup_year_list > li a:hover img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  .lineup_year_list > li figure img {
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  }
  .lineup_manpa .lineup_content_head {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .lineup_manpa .lineup_content_head p {
    margin-left: 1em;
  }
}
@media screen and (min-width: 768px) and (orientation: landscape) {
  .lineup_link {
    margin: 3rem -80px 0 auto;
    width: 25vh;
    max-width: 250px;
    max-height: 20vw;
  }
  .lineup_link li a {
    right: 0;
    font-size: 2rem;
    padding-top: 2vh;
    padding-bottom: 2vh;
    font-size: 1.5vh;
    font-size: min(1.5vh, 20px);
  }
  .lineup_link li a:hover {
    right: -2rem;
  }
}/*# sourceMappingURL=top.css.map */