@charset "euc-jp";

body {
  font-family: 'Hiragino Kaku Gothic ProN', 'Lucida Grande', Meiryo, sans-serif;
  background-color: #fff;
}

.globalFooter .outer {
    padding-top: 20px;
}

/*** 共通 ***/
.event-detail {
  max-width: 1920px;
  margin: 97px auto 0;
}

.event-detail span,
.event-detail p,
.event-detail a {
  font-weight: bold;
}

.event-detail img {
  display: block;
  max-width: 100%;
}

.event-detail a:hover {
  text-decoration: none;
}

.text.is_emphasis {
  font-size: inherit;
  color: #f6ff00;
}

/* セクション間装飾 */
.section {
  position: relative;
  overflow: hidden;
}
.section::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -3px;
  height: 4px;
  width: 100%;
  left: 0;
  bottom: -2px;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  background: linear-gradient(to right, rgba(255,153,255,0.5), rgba(170,128,255,0.5));
  box-shadow: 0 0 4px 4px rgba(255,49,250,0.2), 0 2px 8px 0 rgba(223,9,255,0.5);
  z-index: 1;
}

/* セクションタイトル */
.section-title {
  width: fit-content;
  margin: 0 auto;
  text-align: center;
  filter: drop-shadow(0 2px 8px rgba(223,9,255,0.5));
}



/*** メインビジュアル ***/
.hero {
  position: relative;
  width: 100%;
  height: calc(990px + (112px / 2));
  margin-top: 97px;
  background: url(https://assets-legacy.livede55.com/event/img/22nd/hero_bg.png) center top no-repeat;
}

.hero-logo-wrap {
  transition: all 0.1s ease; /* メディアクエリ用 */
}

.hero-logo {
  position: absolute;
  top: 33px;
  right: calc(50% - 218px);
  aspect-ratio: 904 / 714;
  z-index: 202;
  transition: all 0.1s ease; /* メディアクエリ用 */
}
.hero-logo__image {
  opacity: 0;
}
.hero-logo__image.is_active {
  animation: fadein-logo .7s forwards;
}
@keyframes fadein-logo {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__character {
  position: absolute;
  top: -44px;
  left: calc(50% - 94px); 
  pointer-events: none;
  z-index: 201;
  transition: all 0.1s ease; /* メディアクエリ用 */
}
.hero__character.is_active {
  animation: fadein-character .7s forwards;
}
@keyframes fadein-character {
  from {
    opacity: 0;
    transform: translateX(-15px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}


.hero-frame {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 112px;
  overflow: hidden;
  z-index: 203;
  filter: drop-shadow(0 30px 30px rgba(198,167,255,0.2));
}
.hero-frame__image {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: 1920px;
  max-width: initial !important;
  height: 112px;
}

/* スクロールしたときヘッダーに被らない処理 */
.top-sentinel {
  position: absolute;
  top: -96px;
  left: 50%;
  width: 1px;
  height: 1px;
}
.globalHeader.is-scrolled {
  z-index: 210;
}


.section-inner {
  opacity: 0;
  transform: translateY(10px);
  backface-visibility: hidden;
}

.section.is_active .section-inner {
  animation: slideup .7s forwards;
}

@keyframes slideup {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/*** 挨拶文 ***/
.section.is_introduction {
  margin-top: calc(-112px / 2);
  padding: 120px 0 118px;
  background: 
    url(https://assets-legacy.livede55.com/event/img/22nd/pattern_image_introduction.png) center top repeat-y,
    url(https://assets-legacy.livede55.com/event/img/22nd/pattern_introduction.png) 0 0 repeat,
    linear-gradient(#b670fb, #6047d9);
  background-size:
    1920px,
    25px,
    cover;
  background-attachment: fixed;
}

.section.is_introduction .section-title {
  position: relative;
  z-index: 1;
}

/* 枠 */
.section-data {
  position: relative;
  margin: -40px auto 0;
  padding: 90px 0 60px;
  width: 1006px;
  border-radius: 24px;
  background: 
    linear-gradient(rgba(7, 6, 91, 0.44), rgba(7, 6, 91, 0.44)),
    url(https://assets-legacy.livede55.com/event/img/22nd/pattern_introduction_frame.png) 0 top repeat-x;
  box-shadow:
    0 0 0 6px #a266f3 inset, 0 0 0 7px #ff13ff inset,
    0 0 4px 4px rgba(255,49,250,0.2), 0 2px 8px 0 rgba(223,9,255,0.5);
}

/* 虹ボーダー */
.section-data::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 3px;
  border-radius: inherit;
  background: linear-gradient(to left, rgb(255,136,9), rgb(224,217,104) 13%, rgb(80,201,160) 32%, rgb(48,195,255) 40%, rgb(30,154,241) 63%, rgb(167,54,255) 84%, rgb(253,17,237) 96%);
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.section-data__inner::before,
.section-data__inner::after {
  content: "";
  display: block;
  position: absolute;
  left: -30px;
  width: 1068px;
}
.section-data__inner::before {
  top: -30px;
  height: 198px;
  background: url(https://assets-legacy.livede55.com/event/img/22nd/introduction_frame_top.png) 0 0 no-repeat;
}
.section-data__inner::after {
  bottom: -118px;
  height: 296px;
  background: url(https://assets-legacy.livede55.com/event/img/22nd/introduction_frame_bottom.png) 0 0 no-repeat;
}
.section-data__text {
  font-size: 20px;
  line-height: 38px;
  text-align: center;
  color: #fff;
  white-space: nowrap;
}

.section-data__text:not(:nth-last-child(1)) {
  margin-bottom: 45px;
}



/*** パフォーマー一覧 ***/
.section.is_performer {
  padding: 50px 0 75px;
  background:
    url(https://assets-legacy.livede55.com/event/img/22nd/pattern_performer.png) 0 0 repeat,
    linear-gradient(#02e9f5, #16f59f);
  background-attachment: fixed;
}

.performer-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 45px 0;
  width: 1200px;
  margin: 62px auto 0;
}

.performer-list-item {
  position: relative;
  box-sizing: border-box;
  width: 179px;
  padding: 17px;
  background-color: rgba(158,90,194,0.9);
  box-shadow:
    0 0 0 4px #0adfc9 inset, 0 0 10px 0 rgba(255,255,255,0.25) inset,
    10px 10px 10px 0 rgba(165,89,185,0.12);
  border-radius: 16px;
  transition: all 300ms 0s ease;
}

.performer-list-item:hover {
  filter: brightness(110%);
  cursor: pointer;
}

/* 虹ボーダー */
.performer-list-item::after {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgb(255,136,9), rgb(224,217,104) 13%, rgb(80,201,160) 32%, rgb(48,195,255) 40%, rgb(30,154,241) 63%, rgb(167,54,255) 84%, rgb(253,17,237) 96%);
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.performer-list-item__image {
  width: 145px;
  border-radius: 6px;
}


/* 名前 */
.performer-list-item__name {
  position: absolute;
  top: -19px;
  left: 50%;
  transform: translateX(-50%);
  box-sizing: border-box;
  width: 145px;
  height: 30px;
  border-radius: 6px;
  border: 1px solid #fff;
  background: linear-gradient(to right, rgba(199,94,240,0.95), rgba(118,71,205,0.85));
  box-shadow:
    0 0 8px 4px rgba(255,90,222,0.15) inset,
    0 0 0 4px rgba(255,49,250,0.2), 0 0 4px 1px rgba(223,9,255,0.5);
  font-weight: bold;
  font-size: 16px;
  line-height: 28px;
  text-align: center;
  color: #fff;
  text-shadow:
    -1px -1px 0 #b766c5,
    -1px 0 0 #b766c5,
    -1px 1px 0 #b766c5,
    0 -1px 0 #b766c5,
    0 1px 0 #b766c5,
    1px -1px 0 #b766c5,
    1px 0 0 #b766c5,
    1px 1px 0 #b766c5,
    0 0 3px #b766c5,
    0 2px 6px #ebff09,
    0 2px 11px #ebff09;
  z-index: 1;
}


/*** イベント一覧 ***/
.section.is_event {
  padding: 50px 0 60px;
  background:
    url(https://assets-legacy.livede55.com/event/img/22nd/pattern_performer.png) 0 0 repeat,
    linear-gradient(#f8ff2d, #ffe347);
  background-attachment: fixed;
}

.event-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px 30px;
  max-width: 1100px;
  margin: 65px auto 0;
}

.event-list-item {
  position: relative;
  background-color: rgba(158,90,194,0.9);
  box-shadow:
    0 0 0 4px #fff152 inset, 0 0 10px 0 rgba(255,255,255,0.25) inset,
    10px 10px 10px 0 rgba(165,89,185,0.12);
  border-radius: 16px;
  transition: .1s ease;
}

.event-list-item.is_soon {
  pointer-events: none;
}

/* 虹ボーダー */
.event-list-item::after {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgb(255,136,9), rgb(224,217,104) 13%, rgb(80,201,160) 32%, rgb(48,195,255) 40%, rgb(30,154,241) 63%, rgb(167,54,255) 84%, rgb(253,17,237) 96%);
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.event-list-item-inner {
  display: block;
  width: 524px;
  height: calc(319px - 37px);
}

.event-list-item-inner p:nth-of-type(1) {
  font-size: 18px;
}


/* 日時 */
.event-list-item-inner__time {
  position: absolute;
  top: -19px;
  left: 50%;
  transform: translateX(-50%);
  width: 480px;
  height: 36px;
  border-radius: 6px;
  border: 1px solid #fff;
  background: linear-gradient(to right, rgba(199,94,240,0.95), rgba(118,71,205,0.85));
  box-shadow:
    0 0 8px 4px rgba(255,90,222,0.15) inset,
    0 0 0 4px rgba(255,49,250,0.2), 0 0 4px 1px rgba(223,9,255,0.5);
  font-weight: bold;
  font-size: 16px;
  line-height: 34px;
  text-align: center;
  color: #fff;
  text-shadow:
    -1px -1px 0 #b766c5,
    -1px 0 0 #b766c5,
    -1px 1px 0 #b766c5,
    0 -1px 0 #b766c5,
    0 1px 0 #b766c5,
    1px -1px 0 #b766c5,
    1px 0 0 #b766c5,
    1px 1px 0 #b766c5,
    0 0 3px #b766c5,
    0 2px 6px #ebff09,
    0 2px 11px #ebff09;
  z-index: 1;
}

.event-list-item-inner__image {
  width: 480px;
  height: 120px;
  margin: 37px 22px 10px;
  background-color: #fff;
}

.event-list-item-inner__text {
  text-align: center;
  font-size: 18px;
  line-height: 1.4;
  color: #fff;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.event-list-item-inner-link {
  display: block;
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 322px;
  height: 51px;
  transition: all 300ms 0s ease;
}

.event-list-item.is_soon .event-list-item-inner-link {
  background-color: #dedede;
}

.event-list-item-inner-link:hover {
  filter: brightness(110%);
}



/*** ダイアログ ***/
.dialog-wrap {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 210;
  display: none;
  width: 100%;
  height: 100%;
}

.dialog-wrap-background {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 202;
  width: 100%;
  height: 100%;
  background-color: rgba(16,14,31,0.75);
}

.dialog {
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 203;
  box-sizing: border-box;
  width: 840px;
  height: 620px;
  border-radius: 24px;
  background: 
    url(https://assets-legacy.livede55.com/event/img/22nd/pattern_introduction_frame.png) 0 top repeat-x,
    rgba(7,6,91,0.44);
  box-shadow:
    0 0 0 3px #a266f3 inset, 0 0 0 4px #ff13ff inset,
    0 0 4px 4px rgba(255,49,250,0.2), 0 2px 8px 0 rgba(223,9,255,0.5);
}

/* 虹ボーダー */
.dialog::after {
  content: "";
  position: absolute;
  inset: 0;
  padding: 3px;
  border-radius: inherit;
  background: linear-gradient(180deg, rgb(255,136,9), rgb(224,217,104) 13%, rgb(80,201,160) 32%, rgb(48,195,255) 40%, rgb(30,154,241) 63%, rgb(167,54,255) 84%, rgb(253,17,237) 96%);
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}


.dialog-item-summary {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  width: 100%;
  height: 130px;
  padding: 30px 40px;
  border-radius: 10px 10px 0 0;
}

.dialog-item-summary:link,
.dialog-item-summary:hover,
.dialog-item-summary:visited {
  text-decoration: none;
  color: inherit;
}

.dialog-item-summary__image {
  display: block;
  width: 80px;
  border-radius: 4px;
}

.dialog-item-summary__name {
  margin-left: 40px;
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  text-shadow: 0 0 6px rgba(248,25,253,0.6);
}

.dialog-item-data {
  padding: 30px 20px 0 30px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.15) inset;
}

.dialog-item-data__text {
  box-sizing: border-box;
  height: 440px;
  padding-right: 15px;
  padding-bottom: 20px;
  font-size: 18px;
  line-height: 1.5em;
  text-align: initial;
  overflow-y: auto;
  color: #fff;
  text-shadow: 0 0 6px rgba(248,25,253,0.6);
}

.dialog-item-data__text::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

.dialog-item-data__text::-webkit-scrollbar-track {
  background: #060940;
  border-radius: 4px;
}

.dialog-item-data__text::-webkit-scrollbar-thumb {
  background: #6010a3;
  border-radius: 4px;
}


/* 戻る進む */
.dialog-performer-message-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 110px;
  height: 110px;
  cursor: pointer;
}

.dialog-performer-message-arrow.is_prev {
  left: -120px;
}
.dialog-performer-message-arrow.is_next {
  right: -120px;
}

.dialog-performer-message-arrow.is_prev::before {
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  display: inline-block;
  content: '';
  width: 0;
  height: 60px;
  border-left: 8px solid #ffffff;
  border-radius: 10px;
}

.dialog-performer-message-arrow.is_prev::after {
  position: absolute;
  bottom: 7px;
  left: 50%;
  transform: translateX(-50%) rotate(-45deg);
  display: inline-block;
  content: '';
  width: 0;
  height: 60px;
  border-left: 8px solid #ffffff;
  border-radius: 10px;
}

.dialog-performer-message-arrow.is_next::before {
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%) rotate(-45deg);
  display: inline-block;
  content: '';
  width: 0;
  height: 60px;
  border-left: 8px solid #ffffff;
  border-radius: 10px;
}

.dialog-performer-message-arrow.is_next::after {
  position: absolute;
  bottom: 7px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  display: inline-block;
  content: '';
  width: 0;
  height: 60px;
  border-left: 8px solid #ffffff;
  border-radius: 10px;
}

/* メインビジュアル1600+スクロールバー */
/* 縮小比率は適当に */
@media screen and (max-width: 1620px) {
  .hero {
    height: calc((990px + (112px / 2)) * 0.9);
    background-size: calc(1920px * 0.9);
  }
  .hero-frame {
    height: calc(112px * 0.9);
  }
  .hero-frame__image {
    height: calc(112px * 0.9);
    width: calc(1920px * 0.9);
  }
  .hero-logo-wrap {
    position: relative;
    width: calc(1600px * 0.9);
    margin: 0 auto;
    left: -20px;
  }
  .hero-logo {
    width: calc(904px * 0.9);
  }
  .hero__character {
    width: calc(881px * 0.9);
  }
}
/* 1366+スクロールバー */
@media screen and (max-width: 1386px) {
  .event-detail {
    max-width: 1280px;
  }
  .hero {
    height: calc((990px + (112px / 2)) * 0.8);
    background-size: calc(1920px * 0.8);
  }
  .hero-logo-wrap {
    width: calc(1600px * 0.8);
    left: -30px;
  }
  .hero-logo {
    width: calc(904px * 0.8);
  }
  .hero__character {
    width: calc(881px * 0.8);
  }
  .hero-frame {
    height: calc(112px * 0.8);
  }
  .hero-frame__image {
    height: calc(112px * 0.8);
    width: calc(1920px * 0.8);
  }
  .performer-list {
    gap: 35px 0;
    width: 1130px;
  }
}
/* 1280+スクロールバー */
@media screen and (max-width: 1300px) {
  .hero-logo-wrap {
    left: -60px;
  }
}