@layer component {
  .c-stroke-button {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: var(--w, 100%);
    height: var(--h, 72px);
    max-width: var(--maw, 100%);
    font-size: 0.8125rem;
    font-weight: bold;
    border: 1px solid var(--clr, #000);
    border-radius: var(--bdr, 0);
    color: var(--clr, #000);
    -webkit-transition-property: color, background-color;
    transition-property: color, background-color;
    -webkit-transition-duration: 0.4s;
            transition-duration: 0.4s;
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transition-delay: 0s;
            transition-delay: 0s;
  }
  @media (max-width: 48em) {
    .c-stroke-button + .c-stroke-button {
      margin-top: 20px;
    }
  }
  @media (min-width: 48.0625em) {
    .c-stroke-button {
      max-width: var(--maw, 100%);
      height: var(--h, 80px);
      font-size: 0.9375rem;
    }
    .c-stroke-button:hover:not(.is-coming-soon) {
      background-color: var(--clr, #000);
      color: #fff;
    }
    .c-stroke-button:hover:not(.is-coming-soon) .c-stroke-arrow {
      border-color: #fff;
    }
  }
  .c-stroke-button a::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
  }
  .c-stroke-button.is-coming-soon {
    opacity: 0.5;
  }
  .c-stroke-button.is-coming-soon::before {
    content: attr(data-label);
  }
  .c-stroke-button.is-coming-soon a {
    pointer-events: none;
    font-size: 0;
  }
}
@layer component {
  .c-fill-button {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: var(--w, -webkit-fit-content);
    width: var(--w, -moz-fit-content);
    width: var(--w, fit-content);
    height: var(--sp-h, var(--h, 60px));
    font-size: var(--sp-fz, var(--fz));
    font-weight: bold;
    border-radius: var(--bdr, 0);
    background-color: var(--bgc, #000);
    border: 1px solid var(--bdc, var(--bgc, #000));
    color: var(--color, #fff);
    -webkit-transition-property: color, background-color;
    transition-property: color, background-color;
    -webkit-transition-duration: 0.4s;
            transition-duration: 0.4s;
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transition-delay: 0s;
            transition-delay: 0s;
    max-width: var(--maw, 100%);
    padding: 0 32px;
  }
  @media (min-width: 48.0625em) {
    .c-fill-button {
      height: var(--h, 60px);
      font-size: var(--fz, 0.8125rem);
    }
    .c-fill-button:hover {
      border-color: var(--bdc-h, var(--bdc, var(--bgc-h, var(--bgc, #fff))));
      background-color: var(--bgc-h, var(--bgc, #fff));
      color: var(--color-h, var(--color, #000));
    }
  }
  .c-fill-button a::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
  }
}
@layer component {
  .c-buy-button {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: var(--h, 32px);
    font-size: 0.8125rem;
    font-weight: bold;
    border-radius: var(--bdr, 0);
    background-color: var(--bgc, #000);
    border: 1px solid var(--bdc, var(--bgc));
    color: var(--color, #fff);
    -webkit-transition-property: color, background-color;
    transition-property: color, background-color;
    -webkit-transition-duration: 0.4s;
            transition-duration: 0.4s;
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transition-delay: 0s;
            transition-delay: 0s;
    max-width: var(--maw, 56px);
    width: 100%;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    overflow: hidden;
  }
  @media (min-width: 48.0625em) {
    .c-buy-button {
      height: var(--h, 32px);
      font-size: 0.875rem;
      max-width: var(--maw, 80px);
    }
    .c-buy-button::before {
      content: "";
      display: block;
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: var(--bgc-h, #fff);
      opacity: 0;
      -webkit-transition-property: opacity;
      transition-property: opacity;
      -webkit-transition-duration: 0.4s;
              transition-duration: 0.4s;
      -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
              transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
      -webkit-transition-delay: 0s;
              transition-delay: 0s;
    }
    .c-buy-button:hover {
      color: var(--color-h, var(--color));
    }
    .c-buy-button:hover::before {
      opacity: 1;
      background-color: var(--bgc-h, #fff);
      border-color: var(--bdc-h, var(--bdc));
    }
  }
  .c-buy-button a {
    z-index: 2;
  }
  .c-buy-button a::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
  }
}
@layer component {
  .c-color-chip__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .c-color-chip__item {
    position: relative;
    width: 26px;
    height: 26px;
    border: 1px solid #fff;
    border-radius: 50%;
    background-color: var(--color1, #ccc);
  }
  .c-color-chip__item + .c-color-chip__item {
    margin-left: 8px;
  }
  .c-color-chip__item::after {
    content: "";
    display: block;
    position: absolute;
    inset: 0;
    margin: auto;
    border-radius: 50%;
    width: 10px;
    height: 10px;
    z-index: 2;
    background-color: var(--color2, transparent);
  }
  @media (min-width: 48.0625em) {
    .c-color-chip__item {
      width: 32px;
      height: 32px;
    }
    .c-color-chip__item::after {
      width: 14px;
      height: 14px;
    }
  }
}
@layer component {
  .c-stroke-arrow {
    display: block;
    width: var(--size, 8px);
    height: var(--size, 8px);
    border-top: var(--bdw, 1px) solid var(--clr, #000);
    border-right: var(--bdw, 1px) solid var(--clr, #000);
    -webkit-transition-property: border-color;
    transition-property: border-color;
    -webkit-transition-duration: var(--general--duration);
            transition-duration: var(--general--duration);
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transition-delay: 0s;
            transition-delay: 0s;
  }
  .c-stroke-arrow--prev {
    -webkit-transform: translateX(25%) rotate(-135deg);
            transform: translateX(25%) rotate(-135deg);
  }
  .c-stroke-arrow--next {
    -webkit-transform: translateX(-25%) rotate(45deg);
            transform: translateX(-25%) rotate(45deg);
  }
  .c-stroke-arrow--top {
    -webkit-transform: translateY(25%) rotate(-45deg);
            transform: translateY(25%) rotate(-45deg);
  }
  .c-stroke-arrow--bottom {
    -webkit-transform: translateY(-25%) rotate(135deg);
            transform: translateY(-25%) rotate(135deg);
  }
}
@layer component {
  .c-button {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: var(--button-items, center);
        -ms-flex-align: var(--button-items, center);
            align-items: var(--button-items, center);
    -webkit-box-pack: var(--button-justify, center);
        -ms-flex-pack: var(--button-justify, center);
            justify-content: var(--button-justify, center);
    gap: var(--button-gap, 0.5em);
    width: var(--button-w, -webkit-fit-content);
    width: var(--button-w, -moz-fit-content);
    width: var(--button-w, fit-content);
    min-width: var(--button-miw, 0);
    max-width: var(--button-maw, 100%);
    height: var(--button-h, 3.5rem);
    color: var(--button-clr, currentColor);
    border: 1px solid var(--button-bdc, transparent);
    background-color: var(--button-bgc, transparent);
    font-size: var(--button-fz, clamp(0.8125rem, 0.9722222222vw, 0.875rem));
    font-weight: var(--button-fw, 700);
    -webkit-transition-property: opacity, color, background-color, border-color;
    transition-property: opacity, color, background-color, border-color;
    -webkit-transition-duration: 0.4s;
            transition-duration: 0.4s;
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transition-delay: 0s;
            transition-delay: 0s;
  }
  .c-button:has(:is(a, span)) {
    padding: var(--button-p-y, 0.5em) var(--button-p-x, 2.5em);
  }
  .c-button a,
  .c-button span,
  .c-button button,
  .c-button input[type=submit],
  .c-button input[type=button] {
    color: currentColor;
  }
  .c-button a::after,
  .c-button span::after,
  .c-button button::after,
  .c-button input[type=submit]::after,
  .c-button input[type=button]::after {
    content: "";
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
  }
  .c-button button,
  .c-button input[type=submit],
  .c-button input[type=button] {
    padding: var(--button-p-y, 0.5em) var(--button-p-x, 1.5em);
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    border: none;
    outline: none;
    background-color: transparent;
    width: 100%;
    height: 100%;
  }
  .c-button .c-svg {
    width: 1.5em;
    height: 1.5em;
  }
  .c-button[data-variant*=primary], .c-button:not([data-variant]) {
    --button-clr: #fff;
    --button-bdc: var(--clr--theme-red);
    --button-bgc: var(--clr--theme-red);
    --svg-fill: var(--clr--theme-red);
  }
  .c-button[data-variant*=primary]:hover, .c-button:not([data-variant]):hover {
    --button-clr: var(--clr--theme-red);
    --button-bgc: #fff;
    --triangle-bgc: var(--clr--theme-red);
    --svg-fill: var(--clr--theme-red);
  }
  .c-button[data-variant*=secondary] {
    --button-bdc: var(--clr--theme-gray);
    --svg-fill: var(--clr--theme-red);
  }
  .c-button[data-variant*=secondary]:hover {
    --triangle-bgc: #fff;
    --svg-fill: #fff;
    background-color: var(--clr--theme-red);
    color: #fff;
  }
  .c-button[data-variant*=rounded-sm] {
    border-radius: 4px;
  }
  .c-button[data-variant*=rounded-md] {
    border-radius: 8px;
  }
  .c-button[data-variant*=rounded-full] {
    border-radius: var(--button-h, 3.5rem);
  }
  .c-button[data-variant*=has-triangle] {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .c-button[data-variant*=has-triangle] a {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    text-align: center;
  }
  .c-button[data-variant*=has-triangle]::after {
    content: "";
    width: 0;
    height: 0;
    display: block;
    border-width: 6px 4px 0 4px;
    border-style: solid;
    border-color: var(--triangle-bgc, var(--clr--theme-red)) transparent transparent transparent;
    -webkit-transition-property: border-color;
    transition-property: border-color;
    -webkit-transition-duration: 0.4s;
            transition-duration: 0.4s;
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transition-delay: 0s;
            transition-delay: 0s;
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
  }
}
@layer project {
  .p-buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: var(--buttons-items, center);
        -ms-flex-align: var(--buttons-items, center);
            align-items: var(--buttons-items, center);
    -webkit-box-pack: var(--buttons-justify, center);
        -ms-flex-pack: var(--buttons-justify, center);
            justify-content: var(--buttons-justify, center);
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: var(--buttons-direction, row);
            flex-direction: var(--buttons-direction, row);
    gap: var(--buttons-gap-y, clamp(0.5rem, 0.8333333333vw, 0.75rem)) var(--buttons-gap-x, clamp(0.75rem, 1.6666666667vw, 1.5rem));
    width: var(--buttons-w, auto);
    margin-top: var(--buttons-mt, 2em);
  }
  @media (max-width: 48em) {
    .p-buttons {
      --buttons-direction: column;
    }
  }
}
@layer utility {
  .u-d-b--sp {
    display: none;
  }
  @media (max-width: 30em) {
    .u-d-b--sp {
      display: block;
    }
  }
  .u-d-b--not-sp {
    display: none;
  }
  @media (min-width: 30.0625em) {
    .u-d-b--not-sp {
      display: block;
    }
  }
  .u-d-b--tb {
    display: none;
  }
  @media (min-width: 30.0625em) and (max-width: 48em) {
    .u-d-b--tb {
      display: block;
    }
  }
  .u-d-b--not-pc {
    display: none;
  }
  @media (max-width: 48em) {
    .u-d-b--not-pc {
      display: block;
    }
  }
  .u-d-b--pc {
    display: none;
  }
  @media (min-width: 48.0625em) {
    .u-d-b--pc {
      display: block;
    }
  }
  @media (max-width: 30em) {
    .u-d-n--sp {
      display: none;
    }
  }
  @media (min-width: 30.0625em) {
    .u-d-n--not-sp {
      display: none;
    }
  }
  @media (min-width: 30.0625em) and (max-width: 48em) {
    .u-d-n--tb {
      display: none;
    }
  }
  @media (max-width: 48em) {
    .u-d-n--not-pc {
      display: none;
    }
  }
  @media (min-width: 48.0625em) {
    .u-d-n--pc {
      display: none;
    }
  }
}
.js-fadein, .js-fadein-up {
  -webkit-transition: all 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
  transition: all 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}
.js-fadein:not(.is-animated), .js-fadein-up:not(.is-animated) {
  opacity: 0;
}

.js-fadein-up:not(.is-animated) {
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
}

.feature-play-the-game ul:before,
.feature-play-the-game ol:before,
.feature-play-the-game dl:before,
.feature-play-the-game .clearfix:before,
.feature-play-the-game ul:after,
.feature-play-the-game ol:after,
.feature-play-the-game dl:after,
.feature-play-the-game .clearfix:after {
  display: none;
}

.pg-mv {
  aspect-ratio: 1/1;
}
@media (min-width: 48.0625em) {
  .pg-mv {
    aspect-ratio: 16/9;
  }
  .pg-mv:hover .pg-play-btn__img::before {
    width: 40px;
    height: 40px;
  }
}
.pg-mv__container {
  position: relative;
}
.pg-mv__container .pg-play-btn {
  position: absolute;
  top: auto;
  left: 0;
  right: 0;
  bottom: 24px;
  margin: auto;
  z-index: 50;
}
@media (min-width: 48.0625em) {
  .pg-mv__container .pg-play-btn {
    bottom: 48px;
  }
}
.pg-mv__mov {
  margin: auto;
  position: relative;
  display: grid;
  overflow: hidden;
}
.pg-mv__mov > * {
  grid-area: 1/-1;
}
.pg-mv__mov a::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}
.pg-mv__mov img {
  position: relative;
  z-index: 20;
  width: 100vw;
}
.pg-mv__mov #YTPlayer {
  position: relative;
  z-index: 1;
  max-width: unset !important;
}

.pg-play-btn {
  width: 44px;
  -webkit-transition-property: opacity, visibility;
  transition-property: opacity, visibility;
  -webkit-transition-duration: 0.4s;
          transition-duration: 0.4s;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
          transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}
@media (min-width: 48.0625em) {
  .pg-play-btn {
    width: 56px;
  }
}
.pg-play-btn__img {
  position: relative;
}
.pg-play-btn__img::before {
  content: "";
  width: 100%;
  height: 100%;
  border: 1px solid #fff;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  -webkit-transition-property: width, height;
  transition-property: width, height;
  -webkit-transition-duration: 0.4s;
          transition-duration: 0.4s;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
          transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}
.pg-play-btn a {
  display: block;
  margin-top: 4px;
  text-align: center;
  width: 100%;
  font-size: 0.625rem;
  color: #fff;
  letter-spacing: 0.02em;
  font-weight: bold;
}
.pg-play-btn a::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}
@media (min-width: 48.0625em) {
  .pg-play-btn a {
    margin-top: 8px;
    font-size: 0.75rem;
  }
}
.pg-play-btn:not(.is-active) {
  opacity: 0;
  visibility: hidden;
}

.pg-introduction {
  padding-top: 48px;
  padding-bottom: 80px;
  text-align: center;
  --minmax: max(calc(var(--content-min-margin, 24) * 1px), calc(var(--content-base-margin, 40) / var(--content-base-width, 1440) * 100vw));
  max-width: var(--content-max-width, 640px);
  margin-left: auto;
  margin-right: auto;
  width: calc(100% - var(--minmax) * 2);
}
@media (min-width: 48.0625em) {
  .pg-introduction {
    padding-top: 96px;
    padding-bottom: 128px;
  }
}

.pg-subtitle {
  font-size: 0.8125rem;
  font-weight: bold;
  letter-spacing: 0.02em;
}
@media (min-width: 48.0625em) {
  .pg-subtitle {
    font-size: 1.125rem;
  }
}

.pg-title {
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 0.02em;
  line-height: 1.2;
  margin-top: 4px;
}
@media (min-width: 48.0625em) {
  .pg-title {
    font-size: 3rem;
    margin-top: 8px;
  }
}

.pg-pro-link {
  margin-top: 28px;
}
@media (min-width: 48.0625em) {
  .pg-pro-link {
    margin-top: 56px;
  }
}
.pg-pro-link__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 33px;
}
@media (min-width: 48.0625em) {
  .pg-pro-link__items {
    gap: 80px;
  }
}
.pg-pro-link__item {
  position: relative;
}
@media (min-width: 48.0625em) {
  .pg-pro-link__item:hover .pg-pro-link__img img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}
.pg-pro-link__img {
  overflow: hidden;
  border-radius: 50%;
}
.pg-pro-link__img img {
  -webkit-transition: -webkit-transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
  transition: -webkit-transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
  transition: transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
  transition: transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) 0s, -webkit-transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}
@media (min-width: 48.0625em) {
  .pg-pro-link__img {
    width: 160px;
  }
}
.pg-pro-link__title {
  font-size: 0.75rem;
  font-weight: bold;
  margin-top: 12px;
  letter-spacing: 0.02em;
  line-height: 1.2;
}
.pg-pro-link__title::after {
  content: "";
  display: block;
  position: absolute;
}
.pg-pro-link__title a::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}
@media (min-width: 48.0625em) {
  .pg-pro-link__title {
    font-size: 1rem;
    margin-top: 20px;
  }
}
.pg-pro-link__link {
  margin-left: auto;
  margin-right: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 0.6875rem;
  font-weight: bold;
  letter-spacing: 0.02em;
  margin-top: 12px;
  position: relative;
  z-index: 50;
  line-height: 1.1;
}
.pg-pro-link__link a {
  position: relative;
}
.pg-pro-link__link a::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #000;
  position: absolute;
  right: 0;
  bottom: 0;
  -webkit-transition: width 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
  transition: width 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}
@media (min-width: 48.0625em) {
  .pg-pro-link__link {
    font-size: 0.75rem;
  }
  .pg-pro-link__link:hover a::after {
    width: 0;
  }
}

.pg-section:not(:first-child) {
  margin-top: 80px;
}
.pg-section.is-align-right .pg-section__container {
  margin-left: auto;
  margin-right: 0;
}
@media (max-width: 48em) {
  .pg-section {
    max-width: 94.6%;
  }
  .pg-section.is-align-right {
    margin-left: auto;
    margin-right: 0;
  }
}
@media (min-width: 48.0625em) {
  .pg-section {
    --minmax: max(calc(var(--content-min-margin, 24) * 1px), calc(var(--content-base-margin, 40) / var(--content-base-width, 1440) * 100vw));
    max-width: var(--content-max-width, 1240px);
    margin-left: auto;
    margin-right: auto;
    width: calc(100% - var(--minmax) * 2);
  }
  .pg-section:not(:first-child) {
    margin-top: 160px;
  }
}
.pg-section__container {
  max-width: 1080px;
  display: grid;
  gap: 40px;
}
@media (min-width: 48.0625em) {
  .pg-section__container {
    gap: 60px;
  }
}
.pg-section__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media (max-width: 48em) {
  .pg-section__content {
    gap: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (min-width: 48.0625em) {
  .pg-section__content {
    gap: 30px;
  }
}

.pg-look-img {
  position: relative;
  overflow: hidden;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media (max-width: 48em) {
  .pg-look-img::before, .pg-look-img::after {
    content: "";
    display: block;
    width: 12px;
    height: 1px;
    background-color: #fff;
    position: absolute;
    left: 10px;
    bottom: 16px;
  }
  .pg-look-img::after {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
}
.pg-look-img--m {
  max-width: 780px;
}
.pg-section:not(.is-align-right) .pg-look-img--m {
  margin-left: auto;
  margin-right: 0;
}
@media (max-width: 48em) {
  .pg-look-img--m {
    width: 80.28%;
  }
}
@media (max-width: 48em) {
  .pg-look-img--s {
    width: 80.28%;
  }
  .pg-section:first-child .pg-look-img--s:nth-of-type(2) {
    margin-left: auto;
    margin-right: 5.4%;
  }
  .pg-section:not(:first-child) .pg-look-img--s:nth-of-type(1) {
    margin-left: auto;
    margin-right: 5.4%;
  }
}
@media (min-width: 48.0625em) {
  .pg-look-img--s {
    -ms-flex-preferred-size: 525px;
        flex-basis: 525px;
  }
  .pg-look-img--s:nth-of-type(2) {
    margin-top: 54px;
  }
}
.pg-look-img img {
  -webkit-transition: -webkit-transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
  transition: -webkit-transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
  transition: transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
  transition: transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) 0s, -webkit-transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}
@media (min-width: 48.0625em) {
  .pg-look-img:hover {
    cursor: url("/public/assets/feature/play-the-game/img/custom-cursor.svg") 25 25, pointer;
  }
  .pg-look-img:hover img {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}

.pg-sections .pg-modal-content {
  display: none;
}
.l-modal .pg-modal-content {
  display: unset;
}
.pg-modal-content__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 48em) {
  .pg-modal-content__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
    padding-bottom: 40px;
  }
}
@media (min-width: 48.0625em) {
  .pg-modal-content__container {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 18px;
  }
}

.pg-style {
  max-width: 690px;
  margin-left: auto;
  margin-right: auto;
}
.pg-style__content {
  margin-top: 20px;
}
@media (max-width: 48em) {
  .pg-style__content {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (min-width: 48.0625em) {
  .pg-style__content {
    margin-top: 24px;
  }
}

.pg-credit {
  text-align: right;
  padding-right: 16px;
}
@media (min-width: 48.0625em) {
  .pg-credit {
    padding-right: 20px;
  }
}
.pg-credit__items {
  font-size: 0.6875rem;
}
@media (min-width: 48.0625em) {
  .pg-credit__items {
    font-size: 0.75rem;
  }
}
.pg-credit__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 8px;
}
.pg-credit__item:not(:first-child) {
  margin-top: 8px;
}
@media (min-width: 48.0625em) {
  .pg-credit__item {
    gap: 12px;
  }
}
.pg-credit__title {
  font-weight: bold;
  text-align: left;
}
.pg-credit__title:not(:first-child) {
  margin-top: 20px;
}
.pg-credit__price small {
  font-size: 0.625rem;
}
.pg-credit__link {
  line-height: 1.1;
  font-weight: bold;
  position: relative;
}
.pg-credit__link::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #000;
  position: absolute;
  right: 0;
  bottom: 0;
  -webkit-transition: width 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
  transition: width 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}
.pg-credit__link:hover::after {
  width: 0;
}

.p-buttons {
  margin-top: 64px;
  --minmax: max(calc(var(--content-min-margin, 24) * 1px), calc(var(--content-base-margin, 40) / var(--content-base-width, 1440) * 100vw));
  max-width: var(--content-max-width, 100%);
  margin-left: auto;
  margin-right: auto;
  width: calc(100% - var(--minmax) * 2);
}
.p-buttons .c-fill-button {
  --w: 100%;
  --maw: 280px;
  --bdc: #000;
}
@media (min-width: 48.0625em) {
  .p-buttons {
    --maw: 400px;
    margin-top: 128px;
  }
}

.pg-banners {
  display: grid;
  gap: 24px;
}
@media (max-width: 48em) {
  .pg-banners {
    padding: 96px 20px 64px;
  }
}
@media (min-width: 48.0625em) {
  .pg-banners {
    padding: 160px 20px 128px;
    gap: 40px;
  }
}

.pg-banner {
  position: relative;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
}
.pg-banner > * {
  grid-area: 1/-1;
}
.pg-banner::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1);
  -webkit-transition: background-color 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
  transition: background-color 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}
.pg-banner.is-coming-soon .pg-banner__link a::before {
  content: "Coming Soon";
}
.pg-banner.is-coming-soon .pg-banner__link a::after {
  display: none;
}
.pg-banner.is-coming-soon a {
  pointer-events: none;
}
@media (min-width: 48.0625em) {
  .pg-banner:not(.is-coming-soon):hover::before {
    background-color: rgba(0, 0, 0, 0.3);
  }
}
.pg-banner__content {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  text-align: center;
  color: #fff;
  z-index: 2;
  letter-spacing: 0.02em;
  padding-top: 24.7887323944%;
}
@media (min-width: 48.0625em) {
  .pg-banner__content {
    padding-top: 14.8148148148%;
  }
}
.pg-banner__category {
  font-size: clamp(1.5rem, 1.3888888889vw, 2rem);
  font-weight: bold;
  line-height: 1.2;
}
.pg-banner__title {
  font-size: clamp(2.8rem, 3.1944444444vw, 4.6rem);
  font-weight: bold;
  line-height: 1.1;
}
.pg-banner__title:not(:first-child) {
  margin-top: 8px;
}
.pg-banner__title a::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}
.pg-banner__subtitle {
  font-size: clamp(1.1rem, 1.0416666667vw, 1.5rem);
  margin-top: 8px;
}
@media (min-width: 48.0625em) {
  .pg-banner__subtitle {
    margin-top: 12px;
  }
}
.pg-banner__link {
  font-weight: bold;
  line-height: 1.2;
  font-size: clamp(1.3rem, 1.25vw, 1.8rem);
  position: relative;
  z-index: 15;
}
.pg-banner__link:not(:first-child) {
  margin-top: 32px;
}
.pg-banner__link a {
  position: relative;
}
.pg-banner__link a::before {
  content: "View More";
}
.pg-banner__link a::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #fff;
  position: absolute;
  bottom: 0;
  right: 0;
  -webkit-transition: width 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
  transition: width 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}
@media (min-width: 48.0625em) {
  .pg-banner__link:not(:first-child) {
    margin-top: 48px;
  }
  .pg-banner__link:hover a::after {
    width: 0;
  }
}

.l-modal {
  opacity: 0;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 1000;
  -webkit-transition-property: opacity, visibility;
  transition-property: opacity, visibility;
  -webkit-transition-duration: 0.4s;
          transition-duration: 0.4s;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
          transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}
.l-modal__container {
  position: relative;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 48em) {
  .l-modal__container {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media (min-width: 48.0625em) {
  .l-modal__container {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    --minmax: max(calc(var(--content-min-margin, 24) * 1px), calc(var(--content-base-margin, 40) / var(--content-base-width, 1440) * 100vw));
    max-width: var(--content-max-width, 1200px);
    margin-left: auto;
    margin-right: auto;
    width: calc(100% - var(--minmax) * 2);
  }
}
.l-modal__wrapper {
  position: relative;
  width: 100%;
  max-height: 100%;
  overflow: auto;
  min-height: 200px;
}
.l-modal__close {
  right: 18px;
  width: 24px;
  height: 24px;
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
}
.l-modal__close::before, .l-modal__close::after {
  content: "";
  display: block;
  width: 11px;
  height: 1px;
  background-color: #000;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}
.l-modal__close::before {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.l-modal__close::after {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media (max-width: 48em) {
  .l-modal__close {
    position: fixed;
    top: 18px;
  }
}
@media (min-width: 48.0625em) {
  .l-modal__close {
    position: absolute;
  }
  .l-modal__close:hover {
    cursor: pointer;
  }
}
.l-modal__content {
  width: 100%;
  height: 100%;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
  min-height: 100%;
}/*# sourceMappingURL=index.css.map */