@charset "euc-jp";

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

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

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

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

/* セクションタイトルリボン */
.section-inner-title {
  margin-bottom: 40px;
  text-align: center;
}

/* ピンクver. */
span.section-inner-title__inner,
.section.is_event span.section-inner-title__inner {
  position: relative;
  display: inline-block;
  height: 60px;
  background-color: #ff64b4;
  padding: 0 50px;
  font-size: 36px;
  line-height: 60px;
  color: #ffffff;
}

.section-inner-title__inner::before,
.section.is_event .section-inner-title__inner::before {
  position: absolute;
  top: 0px;
  left: -60px;
  content: '';
  width: 60px;
  height: 70px;
  background: url(https://assets-legacy.livede55.com/event/img/21st/title_ribbon_pink.png);
}

.section-inner-title__inner::after,
.section.is_event .section-inner-title__inner::after {
  position: absolute;
  top: 0px;
  right: -60px;
  transform: scale(-1, 1);
  content: '';
  width: 60px;
  height: 70px;
  background: url(https://assets-legacy.livede55.com/event/img/21st/title_ribbon_pink.png);
}

/* 黄色ver. */
.section.is_performer span.section-inner-title__inner {
  background-color: #fdf16b;
  color: #222222;
}

.section.is_performer .section-inner-title__inner::before {
  background: url(https://assets-legacy.livede55.com/event/img/21st/title_ribbon_yellow.png);
}

.section.is_performer .section-inner-title__inner::after {
  background: url(https://assets-legacy.livede55.com/event/img/21st/title_ribbon_yellow.png);
}



/*** メインビジュアル ***/
.hero {
  
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
  margin-top: 97px;
}

.hero-logo {
  position: absolute;
  top: 0;
  right: 0;
  box-sizing: border-box;
  width: 100%;
  aspect-ratio: 16 /9;
  padding-right: 45%;
}

.hero-logo__image {
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0;
}

.hero-logo__image.is_active {
  animation: fadein .7s forwards;
}

@keyframes fadein {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__movie {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
  pointer-events: none;
}

.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 {
  position: relative;
  padding: 100px 0;
  background: repeating-linear-gradient(-45deg,#fff152,#fff152 15px,#fff773 0,#fff773 30px);
  background-attachment: fixed;
}

.section-inner-data__text {
  line-height: 50px;
  text-align: center;
}

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

.section-inner-data span {
  font-size: 20px;
}

.text.is_emphasis {
  color: #ff399e;
}

.text.is_marker {
  padding: 10px 15px;
  background-color: #ffffff;
  border-radius: 6px;
  line-height: 40px;
}



/*** パフォーマー一覧 ***/
.section.is_performer {
  padding: 90px 0;
  background: repeating-linear-gradient(-45deg,#ff64b4,#ff64b4 15px,#ff8cd2 0,#ff8cd2 30px);
  background-attachment: fixed;
}

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

.performer-list-item {
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  width: 175px;
  padding: 22px 15px 15px;
  background-color: #ffffff;
  border-radius: 9px;
  transition: all 300ms 0s ease;
}

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

.performer-list-item::after {
  position: absolute;
  top: 5px;
  left: 5px;
  z-index: -1;
  content: '';
  width: 100%;
  height: 100%;
  background-image: linear-gradient(45deg, #ffffff 25%, transparent 25%, transparent 50%, #ffffff 50%, #ffffff 75%, transparent 75%, transparent);
  background-size: 6px 6px;
  border-radius: 9px;
}

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


/* 名前リボン */
.performer-list-item__name {
  position: absolute;
  top: -15px;
  left: 0;
  right: 0;
  width: 134px;
  height: 30px;
  margin: auto;
  background-color: #fdf16b;
  font-weight: bold;
  line-height: 30px;
  text-align: center;
  color: #222222;
}

.performer-list-item__name::before {
  position: absolute;
  left: -10px;
  content: '';
  width: 10px;
  height: 30px;
  background: url(https://assets-legacy.livede55.com/event/img/21st/name_ribbon.svg) 0 0 no-repeat;
}

.performer-list-item__name::after {
  position: absolute;
  right: -10px;
  transform: scale(-1, 1);
  content: '';
  width: 10px;
  height: 30px;
  background: url(https://assets-legacy.livede55.com/event/img/21st/name_ribbon.svg) 0 0 no-repeat;
}

/*** イベント一覧 ***/
.section.is_event {
  padding: 90px 0 120px;
  background: repeating-linear-gradient(-45deg,#27c5ff,#27c5ff 15px,#3fd0ff 0,#3fd0ff 30px);
  background-attachment: fixed;
}

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

.event-list-item {
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  transition: .1s ease;
}

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

.event-list-item::after {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: -1;
  content: '';
  width: 100%;
  height: 100%;
  background-image: linear-gradient(45deg, #ffffff 25%, transparent 25%, transparent 50%, #ffffff 50%, #ffffff 75%, transparent 75%, transparent);
  background-size: 6px 6px;
  border-radius: 12px;
}

.event-list-item-inner {
  position: relative;
  box-sizing: border-box;
  display: block;
  width: 520px;
  min-height: 315px;
  padding: 30px 20px 0px;
  background-color: #ffffff;
  border-radius: 12px;
}

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


/* 日時リボン */
.event-list-item-inner__time {
  position: absolute;
  top: -19px;
  left: 0;
  right: 0;
  width: 430px;
  height: 38px;
  margin: auto;
  background-color: #fdf16b;
  font-weight: bold;
  line-height: 38px;
  text-align: center;
  color: #222222;
}

.event-list-item-inner__time::before {
  position: absolute;
  left: -10px;
  content: '';
  width: 11px;
  height: 38px;
  background: url(https://assets-legacy.livede55.com/event/img/20th/date_ribbon.svg) 0 0 no-repeat;
}

.event-list-item-inner__time::after {
  position: absolute;
  right: -10px;
  transform: scale(-1, 1);
  content: '';
  width: 11px;
  height: 38px;
  background: url(https://assets-legacy.livede55.com/event/img/20th/date_ribbon.svg) 0 0 no-repeat;
}

.event-list-item-inner__image {
  width: 480px;
  height: 120px;
  margin-bottom: 12px;
}

.event-list-item-inner__text {
  line-height: 1.5;
}

.event-list-item-inner__link {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 23px;
  display: inline-block;
  width: 160px;
  height: 40px;
  margin: auto;
  background-color: #1ac56f;
  border-radius: 6px;
  font-weight: bold;
  line-height: 40px;
  text-align: center;
  color: #ffffff;
  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%);
}

.link.is_arrow {
  position: relative;
  top: 1px;
  vertical-align: text-bottom;
  display: inline-block;
  content: '';
  width: 20px;
  height: 20px;
  margin-left: 6px;
  background-color: #008d46;
  border-radius: 100%;
}

.event-list-item.is_soon .link.is_arrow {
  background-color: #aaaaaa;
}

.link.is_arrow::after {
  position: absolute;
  top: 5px;
  left: 4px;
  transform: rotate(45deg);
  content: '';
  width: 7px;
  height: 7px;
  border-top: solid 3px #ffffff;
  border-right: solid 3px #ffffff;
  border-radius: 25%;
}



/*** ダイアログ ***/
.dialog-wrap {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 201;
  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(30,14,22,0.6);
}

.dialog {
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 203;
  box-sizing: border-box;
  width: 840px;
  height: 620px;
  background-color: #ffffff;
  border-radius: 10px;
}

.dialog-item-summary {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  width: 100%;
  height: 130px;
  padding: 30px 40px;
  background-color: #ff399e;
  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: #ffffff;
}

.dialog-item-data {
  padding: 30px 20px 0 30px;
}

.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;
}

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

.dialog-item-data__text::-webkit-scrollbar-track {
  background: #ffffff;
}

.dialog-item-data__text::-webkit-scrollbar-thumb {
  background: #ffb2d9;
  border-radius: 5px;
}


/* 戻る進む */
.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;
}