@layer reset, base, components, utilities;
:root {
  --color-blue-01: #02013D;
  --color-blue-02: #0C81E0;
  --color-blue-03: #71BFFF;
  --color-pink-01: #FF49A3;
  --color-gray-01: #424242;
  --color-gray-02: #ABABAB;
  --stage-accent: #005AFF;
  --stage-base: #71BFFF;
  --performers-accent: #FFAE00;
  --performers-accent-02: #FF3600;
  --performers-base: #FFDB4A;
  --access-accent: #651ED0;
  --access-base: #B27FFF;
  --apply-accent: #E934CE;
  --apply-base: #FFB4F4;
  --font-gothic: "Hiragino Kaku Gothic ProN", "Zen Kaku Gothic New", sans-serif;
  --font-serif: "Zen Kaku Gothic New", sans-serif;
  --header-h: 50px;
}

@layer reset {
  *, *::before, *::after {
    box-sizing: border-box;
  }
  body, h1, h2, h3, h4, p, dl, dd, figure {
    margin: 0;
  }
  ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  img {
    max-width: 100%;
    height: auto;
    display: block;
  }
  button {
    all: unset;
    cursor: pointer;
  }
  a {
    color: inherit;
    text-decoration: none;
  }
  hr {
    border: none;
  }
  small {
    font-size: inherit;
  }
}
@layer base {
  body {
    min-height: 100vh;
    color: var(--color-blue-01);
    font-family: var(--font-gothic);
    font-weight: 600;
    background: #fff url("../img/bg.webp") repeat;
    background-size: 65.1041666667vw;
    line-height: 1.6;
    overflow-x: clip;
    -webkit-font-smoothing: antialiased;
  }
  @media (min-width: 1024px) {
    body {
      background-size: 500px;
    }
  }
}
@layer components {
  .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    height: var(--header-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2.0833333333vw;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
  }
  @media (min-width: 1024px) {
    .header {
      --header-h: 70px;
      height: 70px;
      padding: 0 24px;
      justify-content: center;
      overflow: visible;
    }
  }
  .header__logo {
    display: block;
    padding-right: 55px;
  }
  @media (min-width: 1024px) {
    .header__logo img {
      width: 70px;
      height: auto;
    }
  }
  .header__nav {
    display: none;
  }
  @media (min-width: 769px) {
    .header__nav {
      display: flex;
      align-items: center;
      margin-left: 0;
    }
  }
  .header__nav a {
    font-family: var(--font-serif);
    font-weight: 900;
    font-size: 2vw;
    color: var(--color-blue-01);
    white-space: nowrap;
    padding: 0 55px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    transition: opacity 300ms;
    position: relative;
  }
  .header__nav a:hover {
    color: #0C81E0;
  }
  .header__nav a .badge-new {
    position: absolute;
    bottom: -26px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 15px;
    padding: 2px 8px;
  }
  .header__nav a.header__nav-link--new::before {
    content: "NEW!";
    position: absolute;
    bottom: -26px;
    left: 50%;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 2px 8px;
    border-radius: 30px;
    border: 2px solid #fff;
    background: linear-gradient(260deg, #06f 6%, #f600ff 45%, #ff5151 96%);
    color: #fff;
    font-weight: 700;
    font-style: italic;
    font-size: 15px;
    line-height: 1.2;
    white-space: nowrap;
  }
  .header__nav-sep {
    display: none;
  }
  @media (min-width: 1024px) {
    .header__nav-sep {
      display: block;
      width: 3px;
      height: 45px;
      background: var(--color-blue-03);
      flex-shrink: 0;
    }
  }
  .header__menu-btn {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 6vw;
    height: 4vw;
    padding: 0;
  }
  @media (min-width: 769px) {
    .header__menu-btn {
      display: none;
    }
  }
  .header__menu-line {
    display: block;
    width: 100%;
    height: 0.5208333333vw;
    background: var(--color-blue-03);
    border-radius: 10px;
    transition: transform 300ms, opacity 300ms;
  }
  @media (min-width: 1024px) {
    .header__menu-line {
      height: 4px;
    }
  }
  .nav-overlay {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: flex;
    min-height: 100dvh;
    min-height: -webkit-fill-available;
    opacity: 0;
    visibility: hidden;
    transition: opacity 400ms, visibility 400ms;
  }
  @media (min-width: 769px) {
    .nav-overlay {
      display: none !important;
    }
  }
  .nav-overlay.is-open {
    opacity: 1;
    visibility: visible;
  }
  .nav-overlay__bg {
    position: absolute;
    inset: 0;
    min-height: 100dvh;
    min-height: -webkit-fill-available;
    background: #fff url("../img/bg.webp") repeat;
    background-size: 65.1041666667vw;
  }
  @media (min-width: 1024px) {
    .nav-overlay__bg {
      background-size: 500px;
    }
  }
  .nav-overlay__bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.2) 100%), rgba(255, 255, 255, 0.6);
  }
  .nav-overlay__panel {
    position: relative;
    width: 100%;
    padding: 5.2083333333vw 5.9895833333vw;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  @media (min-width: 1024px) {
    .nav-overlay__panel {
      max-width: 520px;
      margin-left: auto;
      padding: 40px 60px;
    }
  }
  .nav-overlay__close {
    position: absolute;
    top: 3.125vw;
    right: 3.125vw;
    width: 6vw;
    height: 6vw;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  @media (min-width: 1024px) {
    .nav-overlay__close {
      top: 24px;
      right: 24px;
      width: 28px;
      height: 28px;
    }
  }
  .nav-overlay__close::before, .nav-overlay__close::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0.5208333333vw;
    background: var(--color-blue-03);
    border-radius: 10px;
  }
  @media (min-width: 1024px) {
    .nav-overlay__close::before, .nav-overlay__close::after {
      height: 4px;
    }
  }
  .nav-overlay__close::before {
    transform: rotate(45deg);
  }
  .nav-overlay__close::after {
    transform: rotate(-45deg);
  }
  .nav-overlay__logo {
    margin-top: 1.3020833333vw;
    height: auto;
  }
  @media (min-width: 1024px) {
    .nav-overlay__logo {
      margin-top: 10px;
      width: 145px;
    }
  }
  .nav-overlay__list {
    width: 100%;
    margin-top: 5.2083333333vw;
  }
  @media (min-width: 1024px) {
    .nav-overlay__list {
      margin-top: 40px;
    }
  }
  .nav-overlay__item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.3020833333vw;
    padding: 20px 0 20px;
    border-top: 3px solid var(--color-blue-03);
    font-family: var(--font-serif);
    font-weight: 900;
    font-size: 3cap;
    color: var(--color-blue-01);
    position: relative;
  }
  .nav-overlay__item:last-child {
    border-bottom: 3px solid var(--color-blue-03);
  }
  @media (min-width: 1024px) {
    .nav-overlay__item {
      gap: 10px;
      padding: 40px 0;
      font-size: 28px;
      justify-content: flex-start;
      flex-direction: row;
    }
  }
  .nav-overlay__item a {
    display: block;
  }
  .nav-overlay__link--new {
    position: relative;
  }
  .nav-overlay__link--new::before {
    content: "NEW!";
    position: absolute;
    right: calc(100% + 1.0416666667vw);
    top: 50%;
    transform: translateY(-50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 8px;
    border-radius: 30px;
    border: 2px solid #fff;
    background: linear-gradient(260deg, #06f 6%, #f600ff 45%, #ff5151 96%);
    color: #fff;
    font-weight: 700;
    font-style: italic;
    font-size: 3.5vw;
    line-height: 1.2;
    white-space: nowrap;
  }
  @media (min-width: 1024px) {
    .nav-overlay__link--new::before {
      font-size: 14px;
      right: calc(100% + 8px);
    }
  }
  .badge-new {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 8px;
    border-radius: 30px;
    border: 2px solid #fff;
    background: linear-gradient(260deg, #06f 6%, #f600ff 45%, #ff5151 96%);
    color: #fff;
    font-weight: 700;
    font-style: italic;
    font-size: 3.5vw;
    line-height: 1.2;
  }
  @media (min-width: 1024px) {
    .badge-new {
      font-size: 14px;
    }
  }
  .kv {
    position: relative;
    margin-top: var(--header-h);
    overflow: hidden;
  }
  @media (min-width: 1024px) {
    .kv {
      margin-top: 70px;
    }
  }
  .kv__visual {
    width: 100%;
    aspect-ratio: 4/5;
    overflow: hidden;
  }
  @media (min-width: 1024px) {
    .kv__visual {
      aspect-ratio: auto;
    }
  }
  .kv__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
  }
  @media (min-width: 1024px) {
    .kv__visual img {
      height: auto;
      object-fit: unset;
    }
  }
  .kv__thank {
    position: absolute;
    bottom: 0vw;
    left: 50%;
    transform: translateX(-50%);
    width: 91%;
  }
  @media (min-width: 1024px) {
    .kv__thank {
      width: 95%;
    }
  }
  .kv__thank img {
    width: 100%;
    height: auto;
  }
  .rainbow-bar {
    height: 1.8229166667vw;
    background: linear-gradient(90deg, #00b4e1 0%, #ae3aff 25%, #ff49a3 50%, #ffba27 75%, #00ff06 100%);
  }
  @media (min-width: 1024px) {
    .rainbow-bar {
      height: 14px;
    }
  }
  .concept {
    position: relative;
    padding: 23vw 0 13vw;
    overflow: visible;
  }
  @media (min-width: 1024px) {
    .concept {
      padding: 16vw 0 0;
      max-width: 1200px;
      margin: 0 auto;
    }
  }
  .concept__fukidashi {
    position: absolute;
    width: 21vw;
  }
  @media (min-width: 1024px) {
    .concept__fukidashi {
      width: 220px;
    }
  }
  .concept__fukidashi img {
    width: 100%;
  }
  .concept__fukidashi--right {
    top: 14vw;
    right: 1vw;
    transform: rotate(0.72deg);
  }
  @media (min-width: 1024px) {
    .concept__fukidashi--right {
      top: 130px;
      right: 10px;
    }
  }
  .concept__fukidashi--left {
    top: 14vw;
    left: 1vw;
    transform: rotate(-0.72deg);
  }
  @media (min-width: 1024px) {
    .concept__fukidashi--left {
      top: 130px;
      left: 10px;
    }
  }
  .osenyan {
    position: relative;
    background: linear-gradient(#fff, #fff) padding-box, linear-gradient(90deg, #00b4e1 0%, #ae3aff 25%, #ff49a3 50%, #ffba27 75%, #00ff06 100%) border-box;
    border: 15px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15.625vw 4.6875vw 5.2083333333vw;
  }
  @media (min-width: 1024px) {
    .osenyan {
      margin: 0 auto;
      width: 100%;
      border-width: 30px;
      padding: 200px 60px 60px;
      width: min(1200px, 90%);
    }
  }
  .osenyan__logo {
    position: absolute;
    top: -26vw;
    left: 50%;
    transform: translateX(-50%);
    width: 62vw;
  }
  @media (min-width: 1024px) {
    .osenyan__logo {
      top: 0;
      left: 50%;
      transform: translateX(-50%) translateY(calc(-50% - 15px));
      width: 63%;
    }
  }
  .osenyan__logo img {
    width: 100%;
    height: auto;
  }
  .osenyan__box {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.6041666667vw;
  }
  @media (min-width: 1024px) {
    .osenyan__box {
      gap: 24px;
    }
  }
  .osenyan__titles {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1.3020833333vw;
  }
  @media (min-width: 1024px) {
    .osenyan__titles {
      gap: 12px;
    }
  }
  .osenyan__event-title {
    width: 80vw;
    height: auto;
  }
  @media (min-width: 1024px) {
    .osenyan__event-title {
      width: 100%;
    }
  }
  .osenyan__event-date {
    width: 80vw;
    height: auto;
  }
  @media (min-width: 1024px) {
    .osenyan__event-date {
      width: 100%;
    }
  }
  .osenyan__venue {
    text-align: center;
    font-size: 16px;
    line-height: 1.4;
    margin-top: 1.3020833333vw;
  }
  @media (min-width: 1024px) {
    .osenyan__venue {
      font-size: 26px;
      margin-top: 16px;
      line-height: 1.8;
    }
  }
  .osenyan__venue p {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  @media (min-width: 1024px) {
    .osenyan__venue p {
      flex-direction: row;
    }
  }
  .osenyan__venue p + p {
    margin-top: 0.78125vw;
  }
  @media (min-width: 1024px) {
    .osenyan__venue p + p {
      margin-top: 0;
    }
  }
  .osenyan__venue-label {
    flex: 0 0 auto;
  }
  .osenyan__venue-value {
    text-align: center;
  }
  @media (min-width: 1024px) {
    .osenyan__venue-value {
      width: 650px;
      text-align: left;
    }
  }
  .osenyan__info {
    width: 100%;
    border: 3px solid var(--color-blue-02);
    border-radius: 22px;
    padding: 6vw 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.3020833333vw;
    margin-top: 2.6041666667vw;
  }
  @media (min-width: 1024px) {
    .osenyan__info {
      flex-wrap: nowrap;
      flex-direction: row;
      border-radius: 60px;
      padding: 20px 40px;
      gap: 20px;
      align-items: flex-start;
      margin-top: 24px;
    }
  }
  .osenyan__info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6510416667vw;
    width: 100%;
  }
  @media (min-width: 1024px) {
    .osenyan__info-item {
      gap: 8px;
      flex: 1;
      width: auto;
    }
  }
  .osenyan__info-item--half {
    width: calc(50% - 0.6510416667vw);
  }
  @media (min-width: 1024px) {
    .osenyan__info-item--half {
      flex: 1;
      width: auto;
    }
  }
  .osenyan__info-value {
    font-size: 22px;
    font-weight: 600;
    text-align: center;
    color: var(--color-blue-01);
    margin: 10px 0;
  }
  @media (min-width: 1024px) {
    .osenyan__info-value {
      font-size: 36px;
    }
  }
  .osenyan__info-value small {
    font-size: 3vw;
  }
  @media (min-width: 1024px) {
    .osenyan__info-value small {
      font-size: 20px;
    }
  }
  .osenyan__info-value--large {
    font-size: 22px;
    margin: 10px 0;
  }
  @media (min-width: 1024px) {
    .osenyan__info-value--large {
      font-size: 36px;
    }
  }
  .osenyan__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 3.90625vw;
    width: 62vw;
    height: 13vw;
    border-radius: 70px;
    background: var(--color-pink-01);
    color: #fff;
    font-family: var(--font-serif);
    font-weight: 900;
    font-size: 5vw;
    transition: opacity 300ms;
  }
  @media (min-width: 1024px) {
    .osenyan__cta {
      margin-top: 40px;
      width: 32%;
      min-width: 280px;
      height: 80px;
      border-radius: 50px;
      font-size: 30px;
    }
  }
  .osenyan__cta:hover {
    opacity: 0.8;
  }
  .osenyan__apply-period {
    text-align: center;
    font-size: 13px;
    margin-top: 1.3020833333vw;
  }
  @media (min-width: 1024px) {
    .osenyan__apply-period {
      margin-top: 20px;
      font-size: 20px;
    }
  }
  .cat-message {
    position: relative;
    margin: 17vw auto 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  @media (min-width: 1024px) {
    .cat-message {
      margin-top: 100px;
    }
  }
  .cat-message__character {
    position: absolute;
    top: -5vw;
    left: 50%;
    transform: translateX(-50%);
    width: 42vw;
    z-index: -1;
  }
  @media (min-width: 1024px) {
    .cat-message__character {
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 100%;
      max-width: 900px;
      z-index: 0;
      pointer-events: none;
    }
  }
  .cat-message__character img {
    width: 100%;
    height: auto;
  }
  .cat-message__title {
    width: 100vw;
    height: auto;
  }
  @media (min-width: 1024px) {
    .cat-message__title {
      position: relative;
      z-index: 1;
      width: 560px;
    }
  }
  .cat-message__text {
    margin-top: 11vw;
    font-family: var(--font-serif);
    font-weight: 900;
    font-size: 5vw;
    line-height: 1.8;
    color: var(--color-blue-02);
  }
  @media (min-width: 1024px) {
    .cat-message__text {
      position: relative;
      z-index: 1;
      margin-top: 30px;
      font-size: 25px;
      line-height: 1.8;
    }
  }
  .news-guest__hl {
    position: absolute;
    top: -9vw;
    left: -6vw;
    width: 25vw;
    height: auto;
    z-index: 3;
  }
  @media (min-width: 1024px) {
    .news-guest__hl {
      top: -50px;
      left: -50px;
      width: 190px;
    }
  }
  .news {
    margin: 3.90625vw auto 0;
    width: 85.6770833333vw;
    background: linear-gradient(#fff, #fff) padding-box, linear-gradient(260deg, #06f 6%, #f600ff 45%, #ff5151 96%) border-box;
    border: 0.7vw solid transparent;
    padding: 1.953125vw 3.2552083333vw;
    position: relative;
  }
  @media (min-width: 1024px) {
    .news {
      margin-top: 70px;
      width: min(1200px, 90%);
      border-width: 8px;
      padding: 24px 50px;
    }
  }
  .news__inner {
    overflow: hidden;
  }
  .news__list {
    display: flex;
    flex-direction: column;
  }
  .news__row {
    display: flex;
    gap: 2.6041666667vw;
    padding: 1.5625vw 0;
    border-bottom: 2px dashed #ababab;
  }
  @media (min-width: 1024px) {
    .news__row {
      gap: 30px;
      padding: 16px 0;
    }
  }
  .news__row:last-child {
    border-bottom: none;
  }
  .news__row--with-border {
    border-bottom: 2px dashed #ababab;
  }
  .news__date {
    flex-shrink: 0;
    font-size: 2.5vw;
    color: var(--color-blue-01);
  }
  @media (min-width: 1024px) {
    .news__date {
      font-size: 20px;
      min-width: 140px;
    }
  }
  .news__title {
    font-size: 2.8vw;
    line-height: 1.4;
  }
  @media (min-width: 1024px) {
    .news__title {
      font-size: 20px;
    }
  }
  .news__title-link {
    color: var(--color-blue-02);
    text-decoration: underline;
  }
  .news__title-link:hover {
    opacity: 0.7;
  }
  .contents {
    margin-top: 10vw;
  }
  @media (min-width: 1024px) {
    .contents {
      margin-top: 80px;
    }
  }
  .content-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0vw 0 10vw;
    overflow: hidden;
  }
  @media (min-width: 1024px) {
    .content-section {
      padding: 200px 0 100px;
    }
  }
  .content-section + .content-section {
    margin-top: 10vw;
  }
  @media (min-width: 1024px) {
    .content-section + .content-section {
      margin-top: 100px;
    }
  }
  .content-section--stage {
    background: var(--stage-base);
  }
  .content-section--performers {
    background: var(--performers-base);
  }
  .content-section--access {
    background: var(--access-base);
  }
  .content-section--apply {
    background: var(--apply-base);
  }
  .content-section__wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 110px;
    clip-path: polygon(0 0, 0 100%, 99% 0);
    pointer-events: none;
    z-index: 1;
  }
  @media (min-width: 1024px) {
    .content-section__wave {
      height: 200px;
    }
  }
  .content-section--stage .content-section__wave {
    background: var(--stage-accent);
  }
  .content-section--performers .content-section__wave {
    background: var(--performers-accent);
  }
  .content-section--access .content-section__wave {
    background: var(--access-accent);
  }
  .content-section--apply .content-section__wave {
    background: var(--apply-accent);
  }
  .content-section__bg-wrap {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
  }
  .content-section__bg-l {
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: auto;
    opacity: 0.5;
    transform-origin: top left;
  }
  .content-section__bg-r {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50%;
    height: auto;
    opacity: 0.5;
  }
  .content-section__header {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6510416667vw;
    margin-bottom: 4.5572916667vw;
  }
  @media (min-width: 1024px) {
    .content-section__header {
      position: absolute;
      top: 15px;
      left: 45%;
      transform: translateX(-50%);
      z-index: 2;
      gap: 0;
      margin-bottom: 0;
    }
  }
  @media (min-width: 1024px) {
    .content-section__header--aligned {
      width: min(1400px, 90%);
      justify-content: flex-start;
    }
  }
  .content-section__deco-l {
    width: 4.5572916667vw;
    height: auto;
  }
  @media (min-width: 1024px) {
    .content-section__deco-l {
      width: 80px;
    }
  }
  .content-section__hl {
    width: auto;
    max-width: 100%;
    height: auto;
  }
  @media (min-width: 1024px) {
    .content-section__hl {
      width: 100%;
      max-width: none;
    }
  }
  .content-section__deco-r {
    width: 7.421875vw;
    height: auto;
  }
  @media (min-width: 1024px) {
    .content-section__deco-r {
      width: 120px;
      margin-left: -50px;
    }
  }
  .content-section__body {
    position: relative;
    z-index: 1;
    width: 93.2291666667vw;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
  }
  @media (min-width: 1024px) {
    .content-section__body {
      width: min(1200px, 90%);
    }
  }
  .content-section__body--stage {
    border: 0.8vw solid var(--stage-accent);
    padding: 5.2083333333vw 2.6041666667vw;
    min-height: 18.8802083333vw;
    justify-content: center;
  }
  @media (min-width: 1024px) {
    .content-section__body--stage {
      border-width: 20px;
      padding: 120px 80px;
      min-height: 200px;
    }
  }
  .content-section__body--performers {
    border: 0.8vw solid var(--performers-accent-02);
    padding: 5vw 3vw;
    gap: 5vw;
  }
  @media (min-width: 1024px) {
    .content-section__body--performers {
      border-width: 20px;
      padding: 50px 80px 8%;
      gap: 50px;
    }
  }
  .content-section__body--access {
    border: 0.8vw solid var(--access-accent);
    padding: 2.6041666667vw 3.90625vw;
    gap: 1.953125vw;
  }
  @media (min-width: 1024px) {
    .content-section__body--access {
      border-width: 20px;
      padding: 60px 80px 60px;
      gap: 30px;
    }
  }
  .content-section__body--apply {
    border: 0.8vw solid var(--apply-accent);
    padding: 2.6041666667vw 3.90625vw;
    gap: 3.125vw;
  }
  @media (min-width: 1024px) {
    .content-section__body--apply {
      border-width: 20px;
      padding: 70px 80px 70px;
      gap: 30px;
    }
  }
  .subtitle-bar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1vw 7vw;
    border-radius: 25px;
    font-family: var(--font-serif);
    font-weight: 900;
    font-size: 14px;
    color: #fff;
  }
  @media (min-width: 1024px) {
    .subtitle-bar {
      padding: 0 4vw;
      font-size: 24px;
    }
  }
  .subtitle-bar--blue {
    background: var(--color-blue-02);
  }
  .subtitle-bar--purple {
    background: var(--access-accent);
  }
  .subtitle-bar--pink {
    background: var(--apply-accent);
  }
  .subtitle-bar--gradient {
    background: linear-gradient(90deg, #ff5151 0%, #f600ff 50%, #06f 100%);
  }
  .news-guest__subtitle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1vw 2.6041666667vw;
    border-radius: 25px;
    font-family: var(--font-serif);
    font-weight: 900;
    font-size: 3vw;
    color: #fff;
  }
  @media (min-width: 1024px) {
    .news-guest__subtitle {
      padding: 0 25px;
      font-size: 24px;
    }
  }
  .news-guest__subtitle--gradient {
    background: linear-gradient(90deg, #ff5151 0%, #f600ff 50%, #06f 100%);
  }
  .coming-soon {
    text-align: center;
  }
  .coming-soon img {
    width: 65vw;
    height: auto;
  }
  @media (min-width: 1024px) {
    .coming-soon img {
      width: 531px;
    }
  }
  .performers-ribbon {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  @media (min-width: 1024px) {
    .performers-ribbon {
      max-width: 600px;
    }
  }
  .performers-ribbon__bg {
    width: 100%;
    height: auto;
  }
  .performers-ribbon__text {
    position: absolute;
    font-family: var(--font-serif);
    font-weight: 900;
    font-size: 4vw;
    color: #fff;
  }
  @media (min-width: 1024px) {
    .performers-ribbon__text {
      font-size: 36px;
    }
  }
  .performers-all {
    display: flex;
    flex-direction: column;
    gap: 5vw;
    width: 100%;
  }
  @media (min-width: 1024px) {
    .performers-all {
      gap: 50px;
    }
  }
  .performers-row {
    display: grid;
    gap: 3vw;
    width: 100%;
  }
  @media (min-width: 1024px) {
    .performers-row {
      gap: 20px;
    }
  }
  .performers-row--first {
    grid-template-columns: repeat(2, 1fr);
  }
  @media (min-width: 1024px) {
    .performers-row--first {
      grid-template-columns: repeat(2, 252px);
      justify-content: center;
      gap: 60px;
    }
  }
  .performers-row--rest {
    grid-template-columns: repeat(2, 1fr);
  }
  @media (min-width: 1024px) {
    .performers-row--rest {
      grid-template-columns: repeat(3, 252px);
      justify-content: center;
      gap: 60px;
    }
  }
  .performer-card {
    position: relative;
    width: 90%;
    text-align: center;
  }
  @media (min-width: 1024px) {
    .performer-card {
      width: auto;
    }
  }
  .performer-card__photo {
    border: 3px solid var(--performers-accent-02);
    overflow: hidden;
    aspect-ratio: 250/290;
  }
  .performer-card__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
  }
  .performer-card__photo--kaji img {
    transform: scale(1.5);
    transform-origin: center top;
    object-position: center top;
  }
  .performer-card__badge {
    font-size: 14px;
    margin-top: 0;
    position: absolute;
    top: 40vw;
    bottom: auto;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
  }
  @media (min-width: 1024px) {
    .performer-card__badge {
      font-size: 20px;
      position: relative;
      top: auto;
      left: auto;
      transform: none;
      bottom: 20px;
    }
  }
  .performer-card__name {
    margin-top: 3vw;
    font-size: 5vw;
    font-weight: 600;
  }
  @media (min-width: 1024px) {
    .performer-card__name {
      margin-top: -15px;
      font-size: 36px;
    }
  }
  .performer-card__name--unknown {
    color: var(--color-gray-02);
    font-size: 7vw;
  }
  @media (min-width: 1024px) {
    .performer-card__name--unknown {
      margin-top: 0;
      font-size: 70px;
    }
  }
  .performer-card__role {
    font-size: 2.5vw;
  }
  @media (min-width: 1024px) {
    .performer-card__role {
      font-size: 22px;
      margin-top: -8px;
    }
  }
  .access-media {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.6510416667vw;
  }
  @media (min-width: 1024px) {
    .access-media {
      flex-direction: row;
      gap: 0;
      align-items: stretch;
    }
  }
  .access-media__map {
    width: 100%;
    aspect-ratio: 4/3;
  }
  @media (min-width: 1024px) {
    .access-media__map {
      flex: 1.8;
      padding-right: 50px;
      aspect-ratio: auto;
    }
  }
  .access-media__map iframe {
    width: 100%;
    height: 100%;
    display: block;
  }
  .access-media__photos {
    display: flex;
    gap: 0.6510416667vw;
  }
  @media (min-width: 1024px) {
    .access-media__photos {
      flex: 1;
      flex-direction: column;
      gap: 20px;
    }
  }
  .access-media__placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    background: #d9d9d9;
  }
  @media (min-width: 1024px) {
    .access-media__placeholder {
      aspect-ratio: auto;
      height: 230px;
    }
  }
  .access-media__photo {
    overflow: hidden;
  }
  .access-media__photo img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
  }
  @media (min-width: 1024px) {
    .access-media__map .access-media__placeholder {
      height: 100%;
    }
  }
  .access-media__photos .access-media__placeholder {
    flex: 1;
    aspect-ratio: 1;
  }
  @media (min-width: 1024px) {
    .access-media__photos .access-media__placeholder {
      flex: none;
      aspect-ratio: auto;
      height: 230px;
    }
  }
  .access-info {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  @media (min-width: 1024px) {
    .access-info {
      gap: 15px;
    }
  }
  @media (min-width: 1024px) {
    .access-info + .access-info {
      margin-top: 10px;
    }
  }
  .access-info__text {
    font-size: 2.5vw;
    line-height: 1.5;
  }
  @media (min-width: 1024px) {
    .access-info__text {
      font-size: 22px;
      padding-left: 25px;
    }
  }
  .access-info__text--link {
    color: var(--color-blue-02);
    display: flex;
    align-items: center;
    gap: 0.6510416667vw;
    text-decoration: underline;
    transition: color 300ms;
  }
  @media (min-width: 1024px) {
    .access-info__text--link {
      gap: 8px;
    }
  }
  .access-info__text--link:hover {
    color: #B27FFF;
  }
  .access-info__text--link:hover .access-info__link-icon path {
    fill: #B27FFF;
  }
  .access-info__link-icon {
    width: 2.2135416667vw;
    height: 2.2135416667vw;
    flex-shrink: 0;
  }
  @media (min-width: 1024px) {
    .access-info__link-icon {
      width: 28px;
      height: 28px;
    }
  }
  .access-info__link-icon path {
    transition: fill 300ms;
  }
  .apply-block {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  @media (min-width: 1024px) {
    .apply-block {
      gap: 15px;
    }
  }
  .apply-block__text {
    font-size: 2.5vw;
    line-height: 1.6;
  }
  @media (min-width: 1024px) {
    .apply-block__text {
      font-size: 22px;
      padding-left: 25px;
    }
  }
  .apply-block__table {
    width: 100%;
    font-size: 2.5vw;
    line-height: 1.6;
    border-collapse: collapse;
  }
  .apply-block__table th {
    text-align: left;
    font-weight: 700;
    white-space: nowrap;
    vertical-align: top;
    padding: 0.390625vw 1.953125vw 0.390625vw 0;
  }
  .apply-block__table td {
    vertical-align: top;
    padding: 0.390625vw 0;
  }
  @media (min-width: 1024px) {
    .apply-block__table {
      font-size: 22px;
    }
    .apply-block__table th {
      padding: 4px 24px 4px 25px;
    }
    .apply-block__table td {
      padding: 4px 0;
    }
  }
  .apply-acc {
    width: 100%;
    border-bottom: 3px dashed var(--color-gray-02);
    margin: 0.6510416667vw 0;
  }
  @media (min-width: 1024px) {
    .apply-acc {
      margin: 12px 0;
    }
  }
  .apply-terms__heading {
    text-align: center;
    color: var(--color-pink-01);
    font-size: 2.6041666667vw;
    line-height: 1.5;
  }
  @media (min-width: 1024px) {
    .apply-terms__heading {
      font-size: 26px;
    }
  }
  .apply-terms {
    width: 100%;
    border: 2px solid var(--apply-accent);
    background: #fffdf9;
    padding: 1.3020833333vw 1.953125vw;
    max-height: 75.6510416667vw;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #d9d9d9 transparent;
  }
  .apply-terms::-webkit-scrollbar {
    width: 11px;
  }
  .apply-terms::-webkit-scrollbar-track {
    background: transparent;
  }
  .apply-terms::-webkit-scrollbar-thumb {
    background: #d9d9d9;
    border-radius: 20px;
  }
  @media (min-width: 1024px) {
    .apply-terms {
      padding: 20px 30px;
      max-height: 400px;
    }
  }
  .apply-terms__scroll {
    display: flex;
    flex-direction: column;
    gap: 1.3020833333vw;
  }
  @media (min-width: 1024px) {
    .apply-terms__scroll {
      gap: 12px;
    }
  }
  .apply-terms__label {
    font-size: 2.5vw;
    font-weight: 600;
  }
  @media (min-width: 1024px) {
    .apply-terms__label {
      font-size: 20px;
    }
  }
  .apply-terms__body {
    font-size: 2.5vw;
    font-weight: 400;
    line-height: 1.5;
    color: var(--color-gray-01);
  }
  .apply-terms__body a {
    color: var(--color-blue-02);
  }
  .apply-terms__body a:hover {
    color: #B27FFF;
  }
  @media (min-width: 1024px) {
    .apply-terms__body {
      font-size: 20px;
    }
  }
  .apply-submit {
    width: 93.2291666667vw;
    display: flex;
    justify-content: center;
    margin-top: 8vw;
  }
  @media (min-width: 1024px) {
    .apply-submit {
      width: min(1200px, 90%);
      margin-top: 30px;
    }
  }
  .apply-submit__btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 17vw;
    border-radius: 20px;
    border: none;
    box-shadow: inset 0 0 0 2px #fff, 0 0 0 2px var(--color-blue-01), 0 2px 0 2px var(--color-blue-01);
    background: linear-gradient(90deg, #00ff06 0%, #ffba27 25%, #ff49a3 50%, #ae3aff 75%, #00b4e1 100%);
    overflow: hidden;
    transition: transform 200ms, box-shadow 200ms;
  }
  @media (min-width: 1024px) {
    .apply-submit__btn {
      width: 100%;
      height: 120px;
      border-radius: 40px;
      box-shadow: inset 0 0 0 5px #fff, 0 0 0 5px var(--color-blue-01), 0 2px 0 5px var(--color-blue-01);
    }
  }
  .apply-submit__btn::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: inset 10px 14px 54px 20px rgba(255, 255, 255, 0.85);
  }
  .apply-submit__btn:hover {
    transform: translateY(-2px);
    box-shadow: inset 0 0 0 2px #fff, 0 0 0 4px var(--color-blue-01), 0 6px 0 7px var(--color-blue-01);
  }
  .apply-submit__btn-text {
    position: relative;
    z-index: 1;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 900;
    font-size: 10vw;
    background: linear-gradient(180deg, #fff 26%, rgba(255, 255, 255, 0) 74%), linear-gradient(90deg, #fffc00, #fffc00);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 0.6510416667vw #5d00b4;
    paint-order: stroke fill;
  }
  @media (min-width: 1024px) {
    .apply-submit__btn-text {
      font-size: 56px;
      -webkit-text-stroke-width: 6px;
    }
  }
  .apply-submit__btn-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
  }
  .apply-submit__btn-notice {
    position: absolute;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 2.6041666667vw;
    height: 7vw;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    font-family: var(--font-serif);
    font-weight: 600;
    font-size: 4.5vw;
    white-space: nowrap;
  }
  @media (min-width: 1024px) {
    .apply-submit__btn-notice {
      padding: 0 40px;
      height: 54px;
      font-size: 36px;
    }
  }
  .apply-submit__btn--disabled {
    pointer-events: none;
  }
  .pagetop {
    text-align: center;
    padding: 5vw 0 0;
    position: relative;
    z-index: 1;
    margin-bottom: -2vw;
  }
  @media (min-width: 1024px) {
    .pagetop {
      padding: 30px 0 0;
      margin-bottom: -10px;
    }
  }
  .pagetop img {
    width: 23vw;
    height: auto;
    margin: 0 auto;
  }
  @media (min-width: 1024px) {
    .pagetop img {
      width: 160px;
    }
  }
  .footer {
    background: var(--color-blue-03);
    padding: 7vw 0 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
  }
  @media (min-width: 1024px) {
    .footer {
      padding: 50px 0 0;
    }
  }
  .footer__ribbon {
    position: relative;
    width: 99vw;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  @media (min-width: 1024px) {
    .footer__ribbon {
      width: 600px;
    }
  }
  .footer__ribbon img {
    width: 100%;
    height: auto;
  }
  .footer__ribbon-text {
    position: absolute;
    font-family: var(--font-serif);
    font-weight: 900;
    font-size: 4vw;
    color: #fff;
    white-space: nowrap;
  }
  @media (min-width: 1024px) {
    .footer__ribbon-text {
      font-size: 24px;
    }
  }
  .footer__office {
    margin: 3vw 0;
    font-size: 3vw;
    text-align: center;
  }
  @media (min-width: 1024px) {
    .footer__office {
      margin: 0;
      margin-top: 20px;
      font-size: 24px;
    }
  }
  .footer__mail {
    margin-top: 0;
    width: 72vw;
    background: #fff;
    border-radius: 60px;
    padding: 1.0416666667vw 1.953125vw;
    text-align: center;
  }
  @media (min-width: 1024px) {
    .footer__mail {
      margin-top: 20px;
      width: 600px;
      padding: 14px 25px;
    }
  }
  .footer__mail a {
    font-size: 3.5vw;
    color: var(--color-blue-02);
    letter-spacing: 0.05em;
    transition: color 0.2s;
    text-decoration: underline;
  }
  @media (min-width: 1024px) {
    .footer__mail a {
      font-size: 26px;
    }
  }
  .footer__mail a:hover {
    color: #B27FFF;
  }
  .footer__note {
    margin: 3vw 0;
    font-size: 2.5vw;
    font-weight: 600;
    text-align: center;
    line-height: 1.5;
  }
  @media (min-width: 1024px) {
    .footer__note {
      margin: 0;
      margin-top: 20px;
      font-size: 16px;
    }
  }
  .footer__share {
    display: flex;
    align-items: center;
    gap: 2vw;
    width: 72vw;
    height: 15vw;
    background: var(--color-blue-02);
    border-radius: 7.8125vw;
    padding: 0 2.6041666667vw;
  }
  @media (min-width: 1024px) {
    .footer__share {
      width: 600px;
      height: 90px;
      border-radius: 60px;
      padding: 0 80px;
      gap: 16px;
    }
  }
  .footer__share-label {
    color: #fff;
    font-size: 4vw;
    font-weight: 600;
    letter-spacing: 0.05em;
    flex: 1;
    text-align: center;
  }
  @media (min-width: 1024px) {
    .footer__share-label {
      font-size: 28px;
    }
  }
  .footer__share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 11vw;
    height: 11vw;
    border-radius: 50%;
    background: #000;
    transition: opacity 300ms;
  }
  @media (min-width: 1024px) {
    .footer__share-btn {
      width: 64px;
      height: 64px;
    }
  }
  .footer__share-btn:hover {
    opacity: 0.5;
  }
  .footer__share-btn img {
    width: 3.2552083333vw;
    height: auto;
  }
  @media (min-width: 1024px) {
    .footer__share-btn img {
      width: 28px;
    }
  }
  .footer__game-logo {
    display: flex;
    justify-content: center;
    margin-top: 2.6041666667vw;
  }
  @media (min-width: 1024px) {
    .footer__game-logo {
      margin-top: 40px;
    }
  }
  .footer__game-logo a {
    display: block;
    transition: opacity 300ms;
  }
  .footer__game-logo a:hover {
    opacity: 0.7;
  }
  .footer__game-logo img {
    width: 26.0416666667vw;
    height: auto;
  }
  @media (min-width: 1024px) {
    .footer__game-logo img {
      width: 260px;
    }
  }
  .footer__lower {
    position: relative;
    width: 100%;
    margin-top: 0.78125vw;
  }
  @media (min-width: 1024px) {
    .footer__lower {
      margin-top: 8px;
    }
  }
  .footer__dotted {
    width: 100%;
    max-height: 7.8125vw;
    overflow: hidden;
    pointer-events: none;
  }
  @media (min-width: 1024px) {
    .footer__dotted {
      max-height: 60px;
    }
  }
  .footer__dotted img {
    width: 100%;
    height: auto;
  }
  .footer__links {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0.5208333333vw 0 1.0416666667vw;
    display: flex;
    justify-content: center;
    gap: 4vw;
    font-size: 2vw;
    background: transparent;
    z-index: 1;
    margin-bottom: 6px;
  }
  .footer__links a {
    transition: opacity 300ms;
  }
  .footer__links a:hover {
    opacity: 0.5;
  }
  @media (min-width: 1024px) {
    .footer__links {
      padding: 6px 0 10px;
      gap: 45px;
      font-size: 14px;
    }
  }
  .footer__copyright {
    width: 100%;
    background: var(--color-blue-02);
    padding: 3vw 0;
    text-align: center;
    color: #fff;
    font-size: 2vw;
  }
  @media (min-width: 1024px) {
    .footer__copyright {
      padding: 15px 0;
      font-size: 12px;
    }
  }
  .footer__share-wrap {
    position: relative;
    margin-top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.0416666667vw;
  }
  @media (min-width: 1024px) {
    .footer__share-wrap {
      margin-top: 20px;
      gap: 10px;
    }
  }
  .copy-toast {
    background: rgba(0, 0, 0, 0.75);
    color: #fff;
    font-size: 1.8229166667vw;
    padding: 1.3020833333vw 2.6041666667vw;
    border-radius: 3.90625vw;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.25s, transform 0.25s;
  }
  @media (min-width: 1024px) {
    .copy-toast {
      font-size: 14px;
      padding: 10px 24px;
      border-radius: 30px;
    }
  }
  .copy-toast.is-show {
    opacity: 1;
    transform: translateY(0);
  }
  .copy-toast {
    position: fixed;
    bottom: 3.90625vw;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: rgba(0, 0, 0, 0.75);
    color: #fff;
    font-size: 1.8229166667vw;
    padding: 1.3020833333vw 2.6041666667vw;
    border-radius: 3.90625vw;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.25s, transform 0.25s;
    z-index: 9999;
  }
  @media (min-width: 1024px) {
    .copy-toast {
      bottom: 30px;
      font-size: 14px;
      padding: 10px 24px;
      border-radius: 30px;
    }
  }
  .copy-toast.is-show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  .reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 520ms ease, transform 520ms ease;
  }
  .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
}
@layer utilities {
  .is-nav-open {
    overflow: hidden;
  }
  .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
  @media (min-width: 1024px) {
    .br-sp {
      display: none;
    }
  }
  .br-pc {
    display: none;
  }
  @media (min-width: 1024px) {
    .br-pc {
      display: inline;
    }
  }
}

/*# sourceMappingURL=main.css.map */
