@charset "utf-8";

:root {
  --full-width: 750;
  --wide-full-width: 1440;

  --font-color: #0f203d;
  --accent-red-color: #e60110;
  --accent-blue-color: #007bb9;
  --white-color: #fff;
}

* {
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  line-height: 1.6;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: calc(28 / var(--full-width) * 100vw);
  font-weight: 400;
  color: var(--font-color);
}

a {
  -webkit-text-decoration: none;
  text-decoration: none;
  color: inherit;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

@media screen and (min-width: 751px) {
  body {
    font-size: calc(28 / var(--full-width) * 100vw / var(--wide-full-width) * 480);
  }
}

/* 
.fontKo {
  font-family: 'Noto Sans KR', sans-serif;
} */

/* ========== parts ========== */
/* modal */
.modal {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  display: none;
  background-color: rgb(0 0 0 / 50%);
  height: 100vh;
  height: 100dvh;
  overflow: auto;
}
.modal-container {
  width: 100%;
  min-height: 100%;
  padding: calc((40 + 100) / var(--full-width) * 100vw) calc(20 / var(--full-width) * 100vw)
    calc(40 / var(--full-width) * 100vw);
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-content {
  position: relative;
}
.modal-close {
  position: absolute;
  top: calc(-80 / var(--full-width) * 100vw);
  right: 0;
  width: calc(80 / var(--full-width) * 100vw);
  height: calc(80 / var(--full-width) * 100vw);
  padding: calc(5 / var(--full-width) * 100vw);
}
.modal-close span {
  position: absolute;
  top: 50%;
  left: calc(10 / var(--full-width) * 100vw);
  width: calc(60 / var(--full-width) * 100vw);
  height: calc(8 / var(--full-width) * 100vw);
  background-color: var(--white-color);
  transform-origin: 50% 50%;
}
.modal-close span:first-child {
  rotate: 45deg;
}
.modal-close span:last-child {
  rotate: -45deg;
}

/* is-open */
.modal.is-open {
  display: block;
}
@media screen and (min-width: 751px) {
  .modal-container {
    padding: calc((40 + 100) / var(--full-width) * 100vw / var(--wide-full-width) * 480)
      calc(20 / var(--full-width) * 100vw / var(--wide-full-width) * 480)
      calc(40 / var(--full-width) * 100vw / var(--wide-full-width) * 480);
  }
  .modal-close {
    top: calc(-80 / var(--full-width) * 100vw / var(--wide-full-width) * 480);
    width: calc(80 / var(--full-width) * 100vw / var(--wide-full-width) * 480);
    height: calc(80 / var(--full-width) * 100vw / var(--wide-full-width) * 480);
    padding: calc(5 / var(--full-width) * 100vw / var(--wide-full-width) * 480);
  }
  .modal-close span {
    left: calc(10 / var(--full-width) * 100vw / var(--wide-full-width) * 480);
    width: calc(60 / var(--full-width) * 100vw / var(--wide-full-width) * 480);
    height: calc(8 / var(--full-width) * 100vw / var(--wide-full-width) * 480);
  }
}

/* ========== common ========== */
.c-shadow {
  box-shadow: calc(4 / var(--full-width) * 100vw) calc(10 / var(--full-width) * 100vw)
    calc(14 / var(--full-width) * 100vw) 0 rgb(0 0 0 / 32%);
}
@media screen and (min-width: 751px) {
  .c-shadow {
    box-shadow: calc(4 / var(--full-width) * 100vw / var(--wide-full-width) * 480)
      calc(10 / var(--full-width) * 100vw / var(--wide-full-width) * 480)
      calc(14 / var(--full-width) * 100vw / var(--wide-full-width) * 480) 0 rgb(0 0 0 / 32%);
  }
}

.sec-border {
  position: relative;
}
.sec-border::before,
.sec-border::after {
  content: '';
  position: absolute;
  z-index: 1;
  top: calc(-30 / var(--full-width) * 100vw);
  display: block;
  width: 0;
  height: 0;
  border-top: calc(30 / var(--full-width) * 100vw) solid transparent;
  border-bottom: calc(30 / var(--full-width) * 100vw) solid transparent;
}
.sec-border::before {
  left: 0;
  border-left: calc(80 / var(--full-width) * 100vw) solid #be212d;
}
.sec-border::after {
  right: 0;
  border-right: calc(80 / var(--full-width) * 100vw) solid #007bb9;
}
@media screen and (min-width: 751px) {
  .sec-border::before,
  .sec-border::after {
    top: calc(-30 / var(--full-width) * 100vw / var(--wide-full-width) * 480);
    border-top-width: calc(30 / var(--full-width) * 100vw / var(--wide-full-width) * 480);
    border-bottom-width: calc(30 / var(--full-width) * 100vw / var(--wide-full-width) * 480);
  }
  .sec-border::before {
    border-left-width: calc(80 / var(--full-width) * 100vw / var(--wide-full-width) * 480);
  }
  .sec-border::after {
    border-right-width: calc(80 / var(--full-width) * 100vw / var(--wide-full-width) * 480);
  }
}

.sec-ttl {
  position: relative;
}
.sec-ttl::before {
  content: '';
  position: absolute;
  z-index: 1;
  top: calc(-79 / var(--full-width) * 100vw);
  left: 0;
  display: block;
  width: calc(323 / var(--full-width) * 100vw);
  height: auto;
  aspect-ratio: 323 / 314;
  background: center/contain no-repeat;
  pointer-events: none;
}
.sec-ttl img {
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 751px) {
  .sec-ttl::before {
    top: calc(-79 / var(--full-width) * 100vw / var(--wide-full-width) * 480);
    width: calc(323 / var(--full-width) * 100vw / var(--wide-full-width) * 480);
  }
}

/* ========== wrapper ========== */
@media screen and (min-width: 751px) {
  .wrapper {
    position: relative;
    z-index: 1;
  }
  .wrapper::before {
    content: '';
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    display: block;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background: top/cover url(../img/contents/bg__l.webp);
    filter: brightness(0.5);
  }
  .container {
    position: relative;
    z-index: 2;
    margin: -100vh auto 0;
    margin-top: -100dvh;
    width: calc(480 / var(--wide-full-width) * 100vw);
    background-color: #f5f5f5;
  }
}

/* ========== mv ========== */
/* #mv {
}

@media screen and (min-width: 751px) {
} */

/* ========== lead ========== */
#lead {
  position: relative;
  padding: calc(130 / var(--full-width) * 100vw) 0 calc(120 / var(--full-width) * 100vw);
  background: top/cover url(../img/contents/lead-bg.webp);
}

#lead::before,
#lead::after {
  content: '';
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  display: block;
  width: 100%;
  height: auto;
  background: center/contain no-repeat;
}
#lead::before {
  top: 0;
  aspect-ratio: 750 / 80;
  background-image: url(../img/contents/lead-top.webp);
}
#lead::after {
  bottom: calc(-55 / var(--full-width) * 100vw);
  aspect-ratio: 750 / 110;
  background-image: url(../img/contents/lead-bottom.webp);
}

.lead-koreaBtn {
  margin: 0 auto;
  display: block;
  width: calc(406 / var(--full-width) * 100vw);
}
@media (hover: hover) {
  .lead-koreaBtn:hover {
    filter: brightness(1.1);
  }
}

.lead-ttl {
  margin-top: calc(80 / var(--full-width) * 100vw);
}
.lead-ttl::before {
  background-image: url(../img/contents/lead-ttl-deco.webp);
}

.lead-txt {
  margin-top: calc(40 / var(--full-width) * 100vw);
  line-height: 1.8;
  text-align: center;
  text-shadow: 1px 1px 2px rgb(0 0 0 / 30%);
  color: var(--white-color);
}

@media screen and (min-width: 751px) {
  #lead {
    padding: calc(130 / var(--full-width) * 100vw / var(--wide-full-width) * 480) 0
      calc(120 / var(--full-width) * 100vw / var(--wide-full-width) * 480);
  }

  #lead::after {
    bottom: calc(-55 / var(--full-width) * 100vw / var(--wide-full-width) * 480);
  }

  .lead-koreaBtn {
    width: calc(406 / var(--full-width) * 100vw / var(--wide-full-width) * 480);
  }

  .lead-ttl {
    margin-top: calc(80 / var(--full-width) * 100vw / var(--wide-full-width) * 480);
  }

  .lead-txt {
    margin-top: calc(40 / var(--full-width) * 100vw / var(--wide-full-width) * 480);
  }
}

/* ========== lastyear ========== */
#lastyear {
  padding: calc(135 / var(--full-width) * 100vw) 0 calc(100 / var(--full-width) * 100vw);
  background: top/cover url(../img/contents/lastyear-bg.webp);
}

.lastyear-ttl::before {
  background-image: url(../img/contents/lastyear-ttl-deco.webp);
}

.lastyear-inner {
  position: relative;
  z-index: 1;
  margin-top: calc(50 / var(--full-width) * 100vw);
  padding: 0 calc(40 / var(--full-width) * 100vw);
}

.lastyear-yt iframe {
  aspect-ratio: 16 / 9;
  width: 100%;
  height: auto;
}

.lastyear-result {
  margin-top: calc(40 / var(--full-width) * 100vw);
}

.lastyearResult-ttl {
  text-align: center;
  font-size: calc(34 / var(--full-width) * 100vw);
  font-weight: 700;
}

.lastyearResult-table {
  position: relative;
  margin-top: calc(10 / var(--full-width) * 100vw);
  width: 100%;
  border-collapse: collapse;
}
.lastyearResult-table::after {
  content: '';
  position: absolute;
  top: calc(100% + (10 / var(--full-width) * 100vw));
  right: calc(18 / var(--full-width) * 100vw);
  display: block;
  width: calc(67 / var(--full-width) * 100vw);
  height: auto;
  aspect-ratio: 67 / 18;
  background: center/contain no-repeat url(../img/contents/lastyear-win.webp);
}
.lastyearResult-table thead {
  background-color: var(--font-color);
  color: var(--white-color);
}
.lastyearResult-table tbody {
  background-color: var(--white-color);
}
.lastyearResult-table td {
  border: calc(2 / var(--full-width) * 100vw) solid #5c5c5c;
  text-align: center;
  line-height: 2;
  font-size: calc(32 / var(--full-width) * 100vw);
  font-weight: 700;
}
.lastyearResult-table td:first-child {
  width: 15%;
}
.lastyearResult-table td:nth-child(n + 2) {
  width: 10%;
}
.lastyearResult-table td:last-child {
  width: 15%;
}
.lastyearResult-table td._colorBlue {
  color: var(--accent-blue-color);
}
.lastyearResult-table td._colorRed {
  color: var(--accent-red-color);
}
.lastyearResult-table td._fsL {
  line-height: 1;
  font-size: 1.5em;
}

@media screen and (min-width: 751px) {
  #lastyear {
    padding: calc(135 / var(--full-width) * 100vw / var(--wide-full-width) * 480) 0
      calc(100 / var(--full-width) * 100vw / var(--wide-full-width) * 480);
  }

  .lastyear-inner {
    margin-top: calc(50 / var(--full-width) * 100vw / var(--wide-full-width) * 480);
    padding: 0 calc(40 / var(--full-width) * 100vw / var(--wide-full-width) * 480);
  }

  .lastyear-result {
    margin-top: calc(40 / var(--full-width) * 100vw / var(--wide-full-width) * 480);
  }

  .lastyearResult-ttl {
    font-size: calc(34 / var(--full-width) * 100vw / var(--wide-full-width) * 480);
  }

  .lastyearResult-table {
    margin-top: calc(10 / var(--full-width) * 100vw / var(--wide-full-width) * 480);
  }
  .lastyearResult-table::after {
    top: calc(100% + (10 / var(--full-width) * 100vw / var(--wide-full-width) * 480));
    right: calc(18 / var(--full-width) * 100vw / var(--wide-full-width) * 480);
    width: calc(67 / var(--full-width) * 100vw / var(--wide-full-width) * 480);
  }
  .lastyearResult-table td {
    border-width: calc(2 / var(--full-width) * 100vw / var(--wide-full-width) * 480);
    font-size: calc(32 / var(--full-width) * 100vw / var(--wide-full-width) * 480);
  }
}

/* ========== detail ========== */
#detail {
  padding: calc(100 / var(--full-width) * 100vw) 0 calc(120 / var(--full-width) * 100vw);
  background: top/cover url(../img/contents/detail-bg.webp);
}

.detail-ttl::before {
  background-image: url(../img/contents/detail-ttl-deco.webp);
}

.detail-inner {
  margin-top: calc((50 + 28) / var(--full-width) * 100vw);
  padding: 0 calc(40 / var(--full-width) * 100vw);
}

.detailCard {
  position: relative;
  padding: calc(48 / var(--full-width) * 100vw) calc(30 / var(--full-width) * 100vw)
    calc(30 / var(--full-width) * 100vw);
  background-color: var(--white-color);
}
.detailCard + .detailCard {
  margin-top: calc((30 + 28) / var(--full-width) * 100vw);
}

.detailCard-ttl {
  position: absolute;
  top: calc(-28 / var(--full-width) * 100vw);
  left: 50%;
  translate: -50% 0;
  width: calc(171 / var(--full-width) * 100vw);
  background-color: var(--font-color);
  clip-path: polygon(15% 0%, 100% 0, 85% 100%, 0% 100%);
  line-height: 2;
  text-align: center;
  color: var(--white-color);
}

.detailCard-txt {
  text-align: center;
  font-size: calc(25 / var(--full-width) * 100vw);
}

@media screen and (min-width: 751px) {
  #detail {
    padding: calc(100 / var(--full-width) * 100vw / var(--wide-full-width) * 480) 0
      calc(120 / var(--full-width) * 100vw / var(--wide-full-width) * 480);
  }

  .detail-inner {
    margin-top: calc((50 + 28) / var(--full-width) * 100vw / var(--wide-full-width) * 480);
    padding: 0 calc(40 / var(--full-width) * 100vw / var(--wide-full-width) * 480);
  }

  .detailCard {
    padding: calc(48 / var(--full-width) * 100vw / var(--wide-full-width) * 480)
      calc(30 / var(--full-width) * 100vw / var(--wide-full-width) * 480)
      calc(30 / var(--full-width) * 100vw / var(--wide-full-width) * 480);
  }
  .detailCard + .detailCard {
    margin-top: calc((30 + 28) / var(--full-width) * 100vw / var(--wide-full-width) * 480);
  }

  .detailCard-ttl {
    top: calc(-28 / var(--full-width) * 100vw / var(--wide-full-width) * 480);
    width: calc(171 / var(--full-width) * 100vw / var(--wide-full-width) * 480);
  }

  .detailCard-txt {
    font-size: calc(25 / var(--full-width) * 100vw / var(--wide-full-width) * 480);
  }
}

/* ========== present ========== */
#present {
  padding: calc(100 / var(--full-width) * 100vw) 0;
  background: top/cover url(../img/contents/present-bg.webp);
}

.present-ttl::before {
  background-image: url(../img/contents/present-ttl-deco.webp);
}

.present-bubble {
  margin: calc(50 / var(--full-width) * 100vw) auto 0;
  width: calc(470 / var(--full-width) * 100vw);
}

.present-img {
  margin-top: calc(60 / var(--full-width) * 100vw);
}

.present-notes {
  margin-top: calc(100 / var(--full-width) * 100vw);
  padding: 0 calc(40 / var(--full-width) * 100vw);
}
.present-notes > li {
  padding-left: 1em;
  text-indent: -1em;
}
.present-notes > li::before {
  content: '※';
  color: #cf001d;
}

@media screen and (min-width: 751px) {
  #present {
    padding: calc(100 / var(--full-width) * 100vw / var(--wide-full-width) * 480) 0;
  }

  .present-bubble {
    margin-top: calc(50 / var(--full-width) * 100vw / var(--wide-full-width) * 480);
    width: calc(470 / var(--full-width) * 100vw / var(--wide-full-width) * 480);
  }

  .present-img {
    margin-top: calc(60 / var(--full-width) * 100vw / var(--wide-full-width) * 480);
  }

  .present-notes {
    margin-top: calc(100 / var(--full-width) * 100vw / var(--wide-full-width) * 480);
    padding: 0 calc(40 / var(--full-width) * 100vw / var(--wide-full-width) * 480);
  }
}

/* ========== player ========== */
#player {
  padding: calc(100 / var(--full-width) * 100vw) 0 calc(120 / var(--full-width) * 100vw);
  background-color: #f5f5f5;
}

.player-ttl::before {
  background-image: url(../img/contents/player-ttl-deco.webp);
}

.player-tabBtns {
  position: relative;
  z-index: 1;
  margin-top: calc(50 / var(--full-width) * 100vw);
  display: flex;
  gap: 0 calc(4 / var(--full-width) * 100vw);
}
.player-tabBtns > li {
  position: relative;
  width: 50%;
  cursor: pointer;
}
.player-tabBtns > li div {
  padding: calc(3 / var(--full-width) * 100vw);
  background-color: var(--font-color);
}
.player-tabBtns > li p {
  background-color: #fff;
  line-height: 2;
  text-align: center;
  font-size: calc(40 / var(--full-width) * 100vw);
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
}

@media (hover: hover) {
  .player-tabBtns > li:not(.is-choiced):hover p {
    background-color: rgb(15 32 61 / 10%);
    color: var(--white-color);
  }
}

.player-tabBtns > li.is-choiced {
  width: 55%;
}
.player-tabBtns > li.is-choiced::before {
  content: '';
  position: absolute;
  bottom: calc(-6 / var(--full-width) * 100vw);
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #c4333f;
  clip-path: polygon(0 0, 100% 0, 96% 100%, 0% 100%);
}
.player-tabBtns > li.is-choiced::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  translate: -50% 0;
  display: block;
  width: 0;
  height: 0;
  border-top: calc(12 / var(--full-width) * 100vw) solid var(--font-color);
  border-left: calc(9 / var(--full-width) * 100vw) solid transparent;
  border-right: calc(9 / var(--full-width) * 100vw) solid transparent;
}
.player-tabBtns > li.is-choiced p {
  background-color: var(--font-color);
  color: #fff;
}

.player-tabBtns > li._japan div,
.player-tabBtns > li._japan p,
.player-tabBtns > li._japan.is-choiced::before {
  clip-path: polygon(0 0, 100% 0, 96% 100%, 0% 100%);
}
.player-tabBtns > li._japan.is-choiced::before {
  background-color: #c4333f;
}

.player-tabBtns > li._korea div,
.player-tabBtns > li._korea p,
.player-tabBtns > li._korea.is-choiced::before {
  clip-path: polygon(4% 0, 100% 0, 100% 100%, 0% 100%);
}
.player-tabBtns > li._korea.is-choiced::before {
  background-color: #0274c0;
}

.player-tabContents {
  margin-top: calc(20 / var(--full-width) * 100vw);
}
.player-tabContents > li {
  display: none;
}
.player-tabContents > li.is-choiced {
  display: block;
}

.player-position {
  text-align: center;
  font-size: calc(36 / var(--full-width) * 100vw);
}
.player-list + .player-position {
  margin-top: calc(80 / var(--full-width) * 100vw);
}
.player-position span {
  position: relative;
}
.player-position span::before,
.player-position span::after {
  content: '';
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  display: block;
  width: calc(42 / var(--full-width) * 100vw);
  height: calc(4 / var(--full-width) * 100vw);
  background-color: var(--font-color);
}
.player-position span::before {
  right: calc(100% + 0.5em);
}
.player-position span::after {
  left: calc(100% + 0.5em);
}

.player-list {
  margin-top: calc(20 / var(--full-width) * 100vw);
  display: flex;
  flex-wrap: wrap;
  gap: calc(50 / var(--full-width) * 100vw) calc(10 / var(--full-width) * 100vw);
}

.playerCard {
  position: relative;
  width: calc((100% - (10 / var(--full-width) * 100vw)) / 2);
  background: bottom/contain no-repeat;
}

.playerCard-name {
  position: absolute;
  z-index: 1;
  bottom: calc(74 / var(--full-width) * 100vw);
  padding: 0.1em 1em 0.1em 0.8em;
  clip-path: polygon(0% 0%, 100% 0, 96% 100%, 0% 100%);
  font-size: calc(32 / var(--full-width) * 100vw);
  font-weight: 600;
  color: var(--white-color);
}
.playerCard-name._phS {
  padding: 0.1em 0.6em 0.1em 0.3em;
}

.playerCard-more {
  position: absolute;
  z-index: 2;
  bottom: calc(-19 / var(--full-width) * 100vw);
  right: calc(8 / var(--full-width) * 100vw);
  display: block;
  width: calc(100 / var(--full-width) * 100vw);
  border-radius: calc(1px / 0);
  cursor: pointer;
}
@media (hover: hover) {
  .playerCard-more:hover {
    filter: brightness(1.3);
  }
}

.-japan .playerCard {
  background-image: url(../img/contents/player-img-japan-bg.webp);
}
.-japan .playerCard-name {
  background-color: rgb(191 30 43 / 80%);
}

.-korea .playerCard {
  background-image: url(../img/contents/player-img-korea-bg.webp);
}
.-korea .playerCard-name {
  background-color: rgb(0 123 185 / 80%);
}

.player-credit {
  margin-top: calc(30 / var(--full-width) * 100vw);
  padding: 0 calc(40 / var(--full-width) * 100vw);
  padding-left: calc(5em + (40 / var(--full-width) * 100vw));
  text-indent: -5em;
  font-size: calc(24 / var(--full-width) * 100vw);
}

@media screen and (min-width: 751px) {
  #player {
    padding: calc(100 / var(--full-width) * 100vw / var(--wide-full-width) * 480) 0
      calc(120 / var(--full-width) * 100vw / var(--wide-full-width) * 480);
  }

  .player-tabBtns {
    margin-top: calc(50 / var(--full-width) * 100vw / var(--wide-full-width) * 480);
    gap: 0 calc(4 / var(--full-width) * 100vw / var(--wide-full-width) * 480);
  }
  .player-tabBtns > li div {
    padding: calc(3 / var(--full-width) * 100vw / var(--wide-full-width) * 480);
  }
  .player-tabBtns > li p {
    font-size: calc(40 / var(--full-width) * 100vw / var(--wide-full-width) * 480);
  }

  .player-tabBtns > li.is-choiced::before {
    bottom: calc(-6 / var(--full-width) * 100vw / var(--wide-full-width) * 480);
  }
  .player-tabBtns > li.is-choiced::after {
    border-top: calc(12 / var(--full-width) * 100vw / var(--wide-full-width) * 480);
    border-left: calc(9 / var(--full-width) * 100vw / var(--wide-full-width) * 480);
    border-right: calc(9 / var(--full-width) * 100vw / var(--wide-full-width) * 480);
  }

  .player-tabContents {
    margin-top: calc(20 / var(--full-width) * 100vw / var(--wide-full-width) * 480);
  }

  .player-position {
    font-size: calc(36 / var(--full-width) * 100vw / var(--wide-full-width) * 480);
  }
  .player-list + .player-position {
    margin-top: calc(80 / var(--full-width) * 100vw / var(--wide-full-width) * 480);
  }
  .player-position span::before,
  .player-position span::after {
    width: calc(42 / var(--full-width) * 100vw / var(--wide-full-width) * 480);
    height: calc(4 / var(--full-width) * 100vw / var(--wide-full-width) * 480);
  }

  .player-list {
    margin-top: calc(20 / var(--full-width) * 100vw / var(--wide-full-width) * 480);
    gap: calc(50 / var(--full-width) * 100vw / var(--wide-full-width) * 480)
      calc(10 / var(--full-width) * 100vw / var(--wide-full-width) * 480);
  }

  .playerCard {
    width: calc((100% - (10 / var(--full-width) * 100vw / var(--wide-full-width) * 480)) / 2);
  }

  .playerCard-name {
    bottom: calc(74 / var(--full-width) * 100vw / var(--wide-full-width) * 480);
    font-size: calc(32 / var(--full-width) * 100vw / var(--wide-full-width) * 480);
  }

  .playerCard-more {
    bottom: calc(-19 / var(--full-width) * 100vw / var(--wide-full-width) * 480);
    right: calc(8 / var(--full-width) * 100vw / var(--wide-full-width) * 480);
    width: calc(100 / var(--full-width) * 100vw / var(--wide-full-width) * 480);
  }

  .player-credit {
    margin-top: calc(30 / var(--full-width) * 100vw / var(--wide-full-width) * 480);
    padding: 0 calc(40 / var(--full-width) * 100vw / var(--wide-full-width) * 480);
    padding-left: calc(5em + (40 / var(--full-width) * 100vw / var(--wide-full-width) * 480));
    font-size: calc(24 / var(--full-width) * 100vw / var(--wide-full-width) * 480);
  }
}

/* ----- player modal ----- */
/* .playerCard[data-player-index] {
  cursor: pointer;
  transition: scale 0.3s;
}
@media (hover: hover) {
  .playerCard[data-player-index]:hover {
    scale: 0.9;
  }
} */

#playerModal .modal-container {
  padding-top: calc((20 + 100) / var(--full-width) * 100vw);
}

.playerModal-content {
  width: calc(600 / var(--full-width) * 100vw);
}

.playerModal-head {
  padding-top: calc(30 / var(--full-width) * 100vw);
  background: center/cover;
}

.playerModal-head img {
  margin: 0 auto;
  width: calc(370 / var(--full-width) * 100vw);
}

.playerModal-body {
  padding: calc(20 / var(--full-width) * 100vw) calc(30 / var(--full-width) * 100vw);
  color: var(--white-color);
}

.playerModal-name {
  position: relative;
  text-align: center;
  font-size: calc(44 / var(--full-width) * 100vw);
  font-weight: 600;
}
.playerModal-name::after {
  content: '';
  position: absolute;
  top: 115%;
  left: 50%;
  translate: -50% 0;
  display: block;
  width: calc(29 / var(--full-width) * 100vw);
  height: auto;
  aspect-ratio: 29 / 20;
  background: center/contain no-repeat url(../img/contents/player-modal-arrow.webp);
}

.playerModal-txt {
  margin-top: calc(40 / var(--full-width) * 100vw);
}

.-japan .playerModal-head {
  background-image: url(../img/contents/player-modal-japan-bg.webp);
}
.-japan .playerModal-body {
  background-color: #bf1e2b;
}

.-korea .playerModal-head {
  background-image: url(../img/contents/player-modal-korea-bg.webp);
}
.-korea .playerModal-body {
  background-color: #007bb9;
}

@media screen and (min-width: 751px) {
  #playerModal .modal-container {
    padding-top: calc((20 + 100) / var(--full-width) * 100vw / var(--wide-full-width) * 480);
  }

  .playerModal-content {
    width: calc(600 / var(--full-width) * 100vw / var(--wide-full-width) * 480);
  }

  .playerModal-head {
    padding-top: calc(30 / var(--full-width) * 100vw / var(--wide-full-width) * 480);
  }

  .playerModal-head img {
    width: calc(370 / var(--full-width) * 100vw / var(--wide-full-width) * 480);
  }

  .playerModal-body {
    padding: calc(20 / var(--full-width) * 100vw / var(--wide-full-width) * 480)
      calc(30 / var(--full-width) * 100vw / var(--wide-full-width) * 480);
  }

  .playerModal-name {
    font-size: calc(44 / var(--full-width) * 100vw / var(--wide-full-width) * 480);
  }
  .playerModal-name::after {
    width: calc(29 / var(--full-width) * 100vw / var(--wide-full-width) * 480);
  }

  .playerModal-txt {
    margin-top: calc(40 / var(--full-width) * 100vw / var(--wide-full-width) * 480);
  }
}

/* ========== seat ========== */
#seat {
  padding: calc(100 / var(--full-width) * 100vw) 0 calc(120 / var(--full-width) * 100vw);
  background: top/cover url(../img/contents/seat-bg.webp);
}

.seat-ttl::before {
  aspect-ratio: 323 / 288;
  background-image: url(../img/contents/seat-ttl-deco.webp);
}

.seat-inner {
  margin-top: calc(50 / var(--full-width) * 100vw);
  padding: 0 calc(40 / var(--full-width) * 100vw);
}

.seat-map {
  position: relative;
  padding-bottom: calc(47 / var(--full-width) * 100vw);
}

.seat-btn {
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 50%;
  translate: -50% 0;
  display: block;
  width: calc(462 / var(--full-width) * 100vw);
  cursor: pointer;
}
@media (hover: hover) {
  .seat-btn:hover {
    opacity: 0.8;
  }
}

.seat-notes {
  margin-top: calc(70 / var(--full-width) * 100vw);
}
.seat-notes > li {
  padding-inline-start: 1em;
  text-indent: -1em;
  color: #606060;
}
.seat-notes > li + li {
  margin-top: 0.5em;
}
.seat-notes > li::before {
  content: '※';
  color: #cf001d;
}

.seat-link {
  text-decoration: underline;
  color: var(--accent-blue-color);
}

.seat-admission {
  margin-top: calc(40 / var(--full-width) * 100vw);
  padding: calc(30 / var(--full-width) * 100vw);
  background-color: #fff;
}

.seatAdmission-note {
  padding-inline-start: 1em;
  text-indent: -1em;
  color: #606060;
}
.seatAdmission-note::before {
  content: '※';
  color: #cf001d;
}

@media screen and (min-width: 751px) {
  #seat {
    padding: calc(100 / var(--full-width) * 100vw / var(--wide-full-width) * 480) 0
      calc(120 / var(--full-width) * 100vw / var(--wide-full-width) * 480);
  }

  .seat-inner {
    margin-top: calc(50 / var(--full-width) * 100vw / var(--wide-full-width) * 480);
    padding: 0 calc(40 / var(--full-width) * 100vw / var(--wide-full-width) * 480);
  }

  .seat-map {
    padding-bottom: calc(47 / var(--full-width) * 100vw / var(--wide-full-width) * 480);
  }

  .seat-btn {
    width: calc(462 / var(--full-width) * 100vw / var(--wide-full-width) * 480);
  }

  .seat-notes {
    margin-top: calc(70 / var(--full-width) * 100vw / var(--wide-full-width) * 480);
  }

  .seat-admission {
    margin-top: calc(40 / var(--full-width) * 100vw / var(--wide-full-width) * 480);
    padding: calc(30 / var(--full-width) * 100vw / var(--wide-full-width) * 480);
  }
}

/* ========== message ========== */
#message {
  padding: calc(100 / var(--full-width) * 100vw) 0 calc(120 / var(--full-width) * 100vw);
  background-color: var(--font-color);
}

.message-ttl::before {
  background-image: url(../img/contents/message-ttl-deco.webp);
}

.message-list {
  margin-top: calc(30 / var(--full-width) * 100vw);
}
.message-list > li + li {
  margin-top: calc(40 / var(--full-width) * 100vw);
}

.messageCard {
  position: relative;
}

.messageCard-inner {
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  right: 0;
  display: block;
  width: 100%;
  padding: calc(40 / var(--full-width) * 100vw) calc(40 / var(--full-width) * 100vw)
    calc(50 / var(--full-width) * 100vw);
}

.messageCard-txt {
  font-size: calc(31 / var(--full-width) * 100vw);
  color: var(--white-color);
}

@media screen and (min-width: 751px) {
  #message {
    padding: calc(100 / var(--full-width) * 100vw / var(--wide-full-width) * 480) 0
      calc(120 / var(--full-width) * 100vw / var(--wide-full-width) * 480);
  }

  .message-list {
    margin-top: calc(30 / var(--full-width) * 100vw / var(--wide-full-width) * 480);
  }
  .message-list > li + li {
    margin-top: calc(40 / var(--full-width) * 100vw / var(--wide-full-width) * 480);
  }

  .messageCard-inner {
    padding: calc(40 / var(--full-width) * 100vw / var(--wide-full-width) * 480)
      calc(40 / var(--full-width) * 100vw / var(--wide-full-width) * 480)
      calc(50 / var(--full-width) * 100vw / var(--wide-full-width) * 480);
  }

  .messageCard-txt {
    font-size: calc(31 / var(--full-width) * 100vw / var(--wide-full-width) * 480);
  }
}

/* ========== float ========== */
.float-ticket {
  position: fixed;
  bottom: calc(10 / var(--full-width) * 100vw);
  right: calc(10 / var(--full-width) * 100vw);
  z-index: 10;
  display: block;
  width: calc(200 / var(--full-width) * 100vw);
  translate: 0 120%;
  transition: translate 0.3s;
}
.float-ticket.is-scrolled {
  translate: 0 0;
}
@media (hover: hover) {
  .float-ticket:hover {
    filter: brightness(1.1);
  }
}
@media screen and (min-width: 751px) {
  .float-ticket {
    bottom: calc(10 / var(--full-width) * 100vw / var(--wide-full-width) * 480);
    right: calc(50% - (600 / var(--full-width) * 100vw / var(--wide-full-width) * 480));
    width: calc(200 / var(--full-width) * 100vw / var(--wide-full-width) * 480);
  }
}

/* ========== footer ========== */
#footer {
  padding-bottom: calc(180 / var(--full-width) * 100vw);
  background-color: var(--font-color);
}

.footer-copy {
  display: block;
  text-align: center;
  font-size: calc(24 / var(--full-width) * 100vw);
  font-weight: 400;
  color: var(--white-color);
}

@media screen and (min-width: 751px) {
  #footer {
    padding-bottom: calc(150 / var(--full-width) * 100vw / var(--wide-full-width) * 480);
  }

  .footer-copy {
    font-size: calc(24 / var(--full-width) * 100vw / var(--wide-full-width) * 480);
  }
}
