@import url("https://fonts.googleapis.com/css2?family=Archivo+Black&family=Noto+Sans+TC:wght@100..900&display=swap");
*,
*::before,
*::after {
  box-sizing: border-box; /* Set the sizing of an element to include it's border */
}
* {
  margin: 0; /* Set the default margin to 0 */
  padding: 0; /* Set the default padding to 0 */
}
ul[role=list],
ol[role=list] {
  list-style: none; /* Turn off numbered and unordered list decoration */
}
a:not([class]) {
  text-decoration-skip-ink: auto; /* Makes link undelines look better */
}
img,
picture,
svg,
video,
canvas {
  max-width: 100%; /* Makes it responsive */
  height: auto; /* Makes it responsive */
  vertical-align: middle; /* Makes text next to inline images look better */
  font-style: italic; /* If the images don't load it makes the alt decription look better */
  background-repeat: no-repeat;
  /* The background repeat and size are there if you want to load a picture first like a backroung image that is worse quality while the better quality image loads */
  background-size: cover;
}
input,
button,
textarea,
select {
  font: inherit; /* Makes these elements inherit fonts */
  border: 0;
}
/* Turns off animation for people who don't want to see them */
body,
html {
  height: 100%; /* Makes the body element full screen */
}
:root {
  --pc-size: 1920;
  --mb-size: 430;
  --vw: 100vw;
}
@media (min-width: 768px) and (max-width: 992px) {
  :root {
    --pc-size: 1400;
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  :root {
    --pc-size: 1360;
  }
}
@media (min-width: 1200px) and (max-width: 1400px) {
  :root {
    --pc-size: 1460;
  }
}
html {
  font-size: 10px;
  font-family: "Noto Sans TC", sans-serif;
  font-optical-sizing: auto;
}
html.fixed {
  overflow: hidden;
}
html.lenis {
  height: auto;
}
.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}
.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}
.lenis.lenis-stopped {
  overflow: hidden;
}
.lenis.lenis-scrolling iframe {
  pointer-events: none;
}
body {
  background-color: #000;
}
body.fixed {
  overflow: hidden;
}
body::-webkit-scrollbar {
  height: 3px;
  width: 3px;
}
body::-webkit-scrollbar-track {
  border-radius: 5px;
  background-color: #333;
}
body::-webkit-scrollbar-track:hover {
  background-color: #333;
}
body::-webkit-scrollbar-track:active {
  background-color: #333;
}
body::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background-color: #5e5e5e;
}
body::-webkit-scrollbar-thumb:hover {
  background-color: #717171;
}
body::-webkit-scrollbar-thumb:active {
  background-color: #5e5e5e;
}
.remind-text {
  color: #8e8e8e;
  font-size: calc(18 / var(--pc-size) * var(--vw));
  text-align: center;
}
@media (max-width: 480px) {
  .remind-text {
    font-size: 3.7vw;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  .remind-text {
    font-size: 2.4vw;
  }
}
.site-header__inner {
  max-width: calc(1600 / var(--pc-size) * var(--vw));
  margin-inline: auto;
}
.site-header {
  height: calc(72 / var(--pc-size) * var(--vw));
  background-color: #070707;
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 50;
}
@media (max-width: 480px) {
  .site-header {
    height: 14vw;
    background-color: rgba(0, 0, 0, 0.7);
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  .site-header {
    height: 10vw;
    background-color: rgba(0, 0, 0, 0.7);
  }
}
.site-header__inner {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.site-header__odin-logo {
  font-size: 0;
  width: calc(84 / var(--pc-size) * var(--vw));
  height: calc(38 / var(--pc-size) * var(--vw));
  background: transparent url("../png/odin-logo@3x.png") no-repeat center/cover;
  position: absolute;
  left: calc(20 / var(--pc-size) * var(--vw));
  top: 50%;
  transform: translate3d(0, -50%, 0);
}
@media (max-width: 480px) {
  .site-header__odin-logo {
    left: 50%;
    width: 24vw;
    height: auto;
    aspect-ratio: 84/38;
    top: 15vw;
    transform: translate3d(-50%, -400%, 0);
    opacity: 0;
    z-index: 20;
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
  }
  .site-header__odin-logo.active {
    transform: translate3d(-50%, 0, 0);
    opacity: 1;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  .site-header__odin-logo {
    left: 50%;
    width: 12vw;
    height: auto;
    aspect-ratio: 84/38;
    top: 8vw;
    transform: translate3d(-50%, -300%, 0);
    opacity: 0;
    z-index: 20;
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
  }
  .site-header__odin-logo.active {
    transform: translate3d(-50%, 0, 0);
    opacity: 1;
  }
}
.site-header__nav {
  height: 100%;
  display: flex;
}
@media (max-width: 480px) {
  .site-header__nav {
    background-color: #070707;
    position: fixed;
    width: 100%;
    height: 100%;
    flex-direction: column;
    left: 0;
    top: 0;
    justify-content: start;
    padding-block-start: 40vw;
    opacity: 1;
    z-index: 5;
    transform: translate3d(0, -100%, 0);
    transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
  }
  .site-header__nav.active {
    transform: translate3d(0, 0, 0);
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  .site-header__nav {
    background-color: #070707;
    position: fixed;
    width: 100%;
    height: 100%;
    flex-direction: column;
    left: 0;
    top: 0;
    justify-content: start;
    padding-block-start: 20vw;
    opacity: 1;
    z-index: 5;
    transform: translate3d(0, -100%, 0);
    transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
  }
  .site-header__nav.active {
    transform: translate3d(0, 0, 0);
  }
}
.site-header__btn-link {
  display: flex;
  font-size: calc(18 / var(--pc-size) * var(--vw));
  color: #ccc;
  padding-inline: calc(48 / var(--pc-size) * var(--vw));
  text-decoration: none;
  align-items: center;
  height: 100%;
  transition: background-color 0.3s;
  position: relative;
}
.site-header__btn-link span {
  line-height: 100%;
  display: block;
  height: calc(21 / var(--pc-size) * var(--vw));
  pointer-events: none;
}
@media (min-width: 480px) and (max-width: 768px) {
  .site-header__btn-link span {
    height: 12vw;
    line-height: 12vw;
  }
}
.site-header__btn-link svg {
  width: 130%;
  height: 120%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate3d(-50%, -50%, 0);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.site-header__btn-link svg .path-1 {
  stroke: #fff;
  stroke-dasharray: 100;
  animation: spark-1 2s linear infinite;
  filter: url(#glow);
  fill-opacity: 0;
}
.site-header__btn-link svg .path-2 {
  stroke: #fff;
  stroke-dasharray: 100;
  animation: spark-2 2s linear infinite;
  filter: url(#glow);
  fill-opacity: 0;
}
.site-header__btn-link svg .path-3 {
  stroke: #fff;
  stroke-dasharray: 100;
  animation: spark-3 2s linear infinite;
  filter: url(#glow);
  fill-opacity: 0;
}
@media (max-width: 480px) {
  .site-header__btn-link svg {
    display: none;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  .site-header__btn-link svg {
    display: none;
  }
}
.site-header__btn-link:nth-child(1) svg {
  width: 120%;
  height: 100%;
}
@media (max-width: 480px) {
  .site-header__btn-link {
    font-size: 4vw;
    justify-content: center;
    height: 20vw;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  .site-header__btn-link {
    font-size: 3.4vw;
    justify-content: center;
    height: 12vw;
  }
}
@media (hover: hover) {
  .site-header__btn-link:hover {
    color: #fff;
  }
  .site-header__btn-link:hover svg {
    opacity: 1;
  }
}
.site-header__btn-link.active {
  background-color: #5e4518;
  color: #fff;
  pointer-events: none;
}
.site-header__feature {
  display: flex;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate3d(0, -50%, 0);
}
@media (max-width: 480px) {
  .site-header__feature {
    z-index: 0;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  .site-header__feature {
    z-index: 0;
  }
}
.site-header__btn {
  font-size: calc(14 / var(--pc-size) * var(--vw));
  color: #7e7e7e;
  text-decoration: none;
  padding: 0 calc(20 / var(--pc-size) * var(--vw));
  transition: color 0.3s;
}
@media (max-width: 480px) {
  .site-header__btn {
    font-size: 3.4vw;
    padding-left: 3vw;
    padding-right: 3vw;
  }
  .site-header__btn:nth-child(2) {
    padding-right: 0;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  .site-header__btn {
    font-size: 2vw;
    padding-left: 3vw;
    padding-right: 3vw;
  }
  .site-header__btn:nth-child(2) {
    padding-right: 0;
  }
}
@media (hover: hover) {
  .site-header__btn:hover {
    color: #fff;
  }
}
.site-header__btn:nth-child(1) {
  position: relative;
}
.site-header__btn:nth-child(1)::after {
  content: "";
  position: absolute;
  width: calc(1 / var(--pc-size) * var(--vw));
  height: calc(14 / var(--pc-size) * var(--vw));
  background-color: #7e7e7e;
  right: 0;
  top: 50%;
  transform: translate3d(100%, -50%, 0);
}
@media (max-width: 480px) {
  .site-header__btn:nth-child(1)::after {
    width: 0.2vw;
    height: 3vw;
  }
}
.site-header__btn-close {
  width: 6vw;
  height: 6vw;
  background-color: transparent;
  z-index: 15;
  position: absolute;
  border: 0;
  top: 50%;
  font-size: 0;
  right: 0;
  transform: translate3d(0, -50%, 0);
  display: none;
}
.site-header__btn-close::before, .site-header__btn-close::after {
  width: 100%;
  height: 0.3rem;
  background-color: #fff;
  position: absolute;
  content: "";
  left: 50%;
  top: 50%;
}
.site-header__btn-close::before {
  transform: translate3d(-50%, -50%, 0) rotate(-45deg);
}
.site-header__btn-close::after {
  transform: translate3d(-50%, -50%, 0) rotate(45deg);
}
@media (max-width: 480px) {
  .site-header__btn-close {
    display: block;
    opacity: 0;
    transition: opacity 900ms ease;
  }
  .site-header__btn-close.active {
    opacity: 1;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  .site-header__btn-close {
    display: block;
    opacity: 0;
    transition: opacity 900ms ease;
  }
  .site-header__btn-close.active {
    opacity: 1;
  }
}
.site-header__btn-open {
  width: 6vw;
  height: 5vw;
  background-color: transparent;
  z-index: 5;
  position: absolute;
  border: 0;
  top: 50%;
  font-size: 0;
  left: 0;
  display: none;
  transform: translate3d(0, -50%, 0);
}
.site-header__btn-open::before, .site-header__btn-open::after {
  width: 100%;
  height: 0.3rem;
  background-color: #979797;
  position: absolute;
  content: "";
  left: 50%;
}
.site-header__btn-open::before {
  transform: translate3d(-50%, 0, 0);
  top: 0;
}
.site-header__btn-open::after {
  transform: translate3d(-50%, 0, 0);
  bottom: 0;
}
.site-header__btn-open span {
  width: 100%;
  height: 0.3rem;
  background-color: #979797;
  position: absolute;
  top: 50%;
  transform: translate3d(0, -50%, 0);
  left: 0;
}
@media (max-width: 480px) {
  .site-header__btn-open {
    display: block;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  .site-header__btn-open {
    display: block;
  }
}
@keyframes spark-1 {
  0% {
    stroke-dashoffset: -1000;
  }
}
@keyframes spark-2 {
  to {
    stroke-dashoffset: -500;
  }
}
@keyframes spark-3 {
  to {
    stroke-dashoffset: -1000;
  }
}
.site-footer {
  padding: calc(32 / var(--pc-size) * var(--vw)) 0;
  background-color: #000;
}
@media (max-width: 480px) {
  .site-footer {
    padding: 8vw 0;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  .site-footer {
    padding: 6vw 0;
  }
}
.site-footer__inner {
  max-width: calc(1600 / var(--pc-size) * var(--vw));
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  gap: calc(20 / var(--pc-size) * var(--vw));
  padding-inline: calc(24 / var(--pc-size) * var(--vw));
}
@media (max-width: 480px) {
  .site-footer__inner {
    width: 90%;
    margin-inline: auto;
    gap: 4vw;
    justify-content: center;
    flex-direction: column;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  .site-footer__inner {
    width: 90%;
    margin-inline: auto;
    gap: 3vw;
    justify-content: center;
    flex-direction: column;
  }
}
.site-footer__logo {
  display: flex;
  align-items: center;
  gap: calc(20 / var(--pc-size) * var(--vw));
}
.site-footer__logo img {
  width: auto;
  height: calc(40 / var(--pc-size) * var(--vw));
}
@media (max-width: 480px) {
  .site-footer__logo {
    gap: 4vw;
    justify-content: center;
  }
  .site-footer__logo img {
    height: 8vw;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  .site-footer__logo {
    gap: 4vw;
    justify-content: center;
  }
  .site-footer__logo img {
    height: 6vw;
  }
}
.site-footer__wrap {
  display: flex;
  align-items: center;
  gap: calc(20 / var(--pc-size) * var(--vw));
}
@media (max-width: 480px) {
  .site-footer__wrap {
    gap: 4vw;
    order: 3;
    flex-direction: column;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  .site-footer__wrap {
    gap: 4vw;
    order: 3;
    flex-direction: column;
  }
}
.site-footer__level {
  width: calc(40 / var(--pc-size) * var(--vw));
}
@media (max-width: 480px) {
  .site-footer__level {
    width: 12vw;
    position: relative;
    transform: translate3d(0, 5%, 0);
    margin-inline: auto;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  .site-footer__level {
    width: 8vw;
    position: relative;
    transform: translate3d(0, 5%, 0);
    margin-inline: auto;
  }
}
.site-footer__content ul {
  list-style: none;
}
.site-footer__content ul li {
  font-size: calc(13 / var(--pc-size) * var(--vw));
  color: #777676;
  line-height: 1.4;
}
@media (max-width: 480px) {
  .site-footer__content ul li {
    font-size: 3vw;
    text-align: center;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  .site-footer__content ul li {
    font-size: 2vw;
    text-align: center;
  }
}
.site-footer__content p {
  font-size: calc(13 / var(--pc-size) * var(--vw));
  color: #777676;
  line-height: 1.4;
}
@media (max-width: 480px) {
  .site-footer__content p {
    font-size: 3vw;
    text-align: center;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  .site-footer__content p {
    font-size: 2vw;
    text-align: center;
  }
}
.site-footer__content p a {
  color: #777676;
  text-decoration: none;
}
.site-footer__sns {
  display: flex;
  flex-direction: column;
  gap: calc(20 / var(--pc-size) * var(--vw));
}
@media (max-width: 480px) {
  .site-footer__sns {
    flex-direction: row;
    justify-content: center;
    gap: 4vw;
    order: 2;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  .site-footer__sns {
    flex-direction: row;
    justify-content: center;
    gap: 4vw;
    order: 2;
  }
}
.site-footer__btn-facebook, .site-footer__btn-youtube {
  height: calc(32 / var(--pc-size) * var(--vw));
  line-height: calc(32 / var(--pc-size) * var(--vw));
  padding-inline-start: calc(46 / var(--pc-size) * var(--vw));
  display: block;
  font-size: 0;
  filter: grayscale(100%);
  transition: filter 0.3s;
  position: relative;
  text-decoration: none;
}
@media (max-width: 480px) {
  .site-footer__btn-facebook, .site-footer__btn-youtube {
    height: 4vw;
    line-height: 4vw;
    padding-inline-start: 5vw;
    filter: grayscale(0);
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  .site-footer__btn-facebook, .site-footer__btn-youtube {
    height: 4vw;
    line-height: 4vw;
    padding-inline-start: 5vw;
    filter: grayscale(0);
  }
}
.site-footer__btn-facebook::before, .site-footer__btn-youtube::before {
  content: "";
  width: calc(32 / var(--pc-size) * var(--vw));
  height: calc(32 / var(--pc-size) * var(--vw));
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate3d(0, -50%, 0);
}
@media (max-width: 480px) {
  .site-footer__btn-facebook::before, .site-footer__btn-youtube::before {
    width: 4vw;
    height: 4vw;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  .site-footer__btn-facebook::before, .site-footer__btn-youtube::before {
    width: 3vw;
    height: 3vw;
  }
}
.site-footer__btn-facebook span, .site-footer__btn-youtube span {
  font-size: calc(14 / var(--pc-size) * var(--vw));
  color: #ccc;
}
@media (max-width: 480px) {
  .site-footer__btn-facebook span, .site-footer__btn-youtube span {
    font-size: 3vw;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  .site-footer__btn-facebook span, .site-footer__btn-youtube span {
    font-size: 2vw;
  }
}
@media screen and (hover: hover) {
  .site-footer__btn-facebook:hover, .site-footer__btn-youtube:hover {
    filter: grayscale(0);
  }
}
.site-footer__btn-facebook::before {
  background: transparent url("../png/icon-facebook.png") no-repeat 0 0;
  background-size: cover;
}
.site-footer__btn-youtube::before {
  background: transparent url("../png/icon-youtube.png") no-repeat 0 0;
  background-size: cover;
}
.modal {
  width: 100%;
  height: 100vh;
  position: fixed;
  z-index: 150;
  left: 0;
  top: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 300ms ease;
}
.modal.active {
  pointer-events: auto;
  opacity: 1;
  z-index: 160;
}
.modal__overlay {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal__overlay.scroll {
  overflow-y: scroll;
  min-height: 100%;
  padding-top: calc(50 / var(--pc-size) * var(--vw));
  padding-bottom: calc(50 / var(--pc-size) * var(--vw));
  align-items: flex-start;
}
.modal__overlay.scroll > * {
  scrollbar-width: thin;
  scrollbar-color: #e6c899 #000000;
}
.modal__overlay.scroll::-webkit-scrollbar {
  width: 4px;
}
.modal__overlay.scroll::-webkit-scrollbar-track {
  background: #000000;
}
.modal__overlay.scroll::-webkit-scrollbar-thumb {
  background-color: #e6c899;
  border-radius: 11px;
}
.modal__content {
  position: relative;
}
.modal__video-container {
  width: calc(1081 / var(--pc-size) * var(--vw));
  aspect-ratio: 16/9;
  position: relative;
}
.modal__video-container iframe {
  width: 99%;
  height: 99%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate3d(-50%, -50%, 0);
  z-index: 5;
  background-color: #000;
}
@media (max-width: 480px) {
  .modal__video-container {
    width: 80vw;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  .modal__video-container {
    width: 80vw;
  }
}
.modal__frame {
  background: transparent url("../png/video-frame@2x.png") no-repeat 0 0;
  background-size: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 10;
  pointer-events: none;
  top: 0;
  left: 0;
}
.modal__btn-close {
  background-color: transparent;
  width: calc(40 / var(--pc-size) * var(--vw));
  height: calc(40 / var(--pc-size) * var(--vw));
  right: 0;
  top: calc(-60 / var(--pc-size) * var(--vw));
  position: absolute;
  border: 0;
  padding: 0;
  font-size: 0;
  cursor: pointer;
}
.modal__btn-close::before, .modal__btn-close::after {
  width: 100%;
  height: 0.2rem;
  background-color: #b0b0b0;
  position: absolute;
  left: 50%;
  top: 50%;
  content: "";
  transform-origin: center center;
  transition: background-color 0.3s ease-in-out;
}
.modal__btn-close::before {
  transform: translate3d(-50%, -50%, 0) rotate(45deg);
}
.modal__btn-close::after {
  transform: translate3d(-50%, -50%, 0) rotate(-45deg);
}
@media screen and (hover: hover) {
  .modal__btn-close:hover::before, .modal__btn-close:hover::after {
    background-color: #f1cbac;
  }
}
@media (max-width: 480px) {
  .modal__btn-close {
    width: 5.5vw;
    height: 5.5vw;
    top: -7.5vw;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  .modal__btn-close {
    width: 5.5vw;
    height: 5.5vw;
    top: -7.5vw;
  }
}
.modal__form-wrap {
  background: transparent url("../png/form-modal-bg@2x.png") no-repeat 0 0;
  background-size: cover;
  width: calc(740 / var(--pc-size) * var(--vw));
  height: calc(740 / var(--pc-size) * var(--vw));
  padding-block-start: calc(20 / var(--pc-size) * var(--vw));
}
@media (max-width: 480px) {
  .modal__form-wrap {
    width: 80vw;
    height: auto;
    aspect-ratio: 1/1;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  .modal__form-wrap {
    width: 60vw;
    height: auto;
    aspect-ratio: 1/1;
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  .modal__form-wrap {
    width: calc(666 / var(--pc-size) * var(--vw));
    height: calc(666 / var(--pc-size) * var(--vw));
  }
}
@media (min-width: 1200px) and (max-width: 1400px) {
  .modal__form-wrap {
    width: calc(629 / var(--pc-size) * var(--vw));
    height: calc(629 / var(--pc-size) * var(--vw));
  }
}
.modal__alert-wrap {
  background: transparent url("../png/alert-modal-bg@2x.png") no-repeat 0 0;
  background-size: cover;
  width: calc(740 / var(--pc-size) * var(--vw));
  height: calc(276 / var(--pc-size) * var(--vw));
  padding-block-start: calc(10 / var(--pc-size) * var(--vw));
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: calc(30 / var(--pc-size) * var(--vw));
}
@media (max-width: 480px) {
  .modal__alert-wrap {
    background-size: 100% auto;
    width: 80vw;
    height: auto;
    aspect-ratio: 740/276;
    padding-block-start: 1vw;
    gap: 1.5vw;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  .modal__alert-wrap {
    background-size: 100% auto;
    width: 60vw;
    height: auto;
    aspect-ratio: 740/276;
    padding-block-start: 1vw;
    gap: 1.5vw;
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  .modal__alert-wrap {
    width: calc(666 / var(--pc-size) * var(--vw));
    height: calc(248.4 / var(--pc-size) * var(--vw));
    gap: calc(20 / var(--pc-size) * var(--vw));
  }
}
@media (min-width: 1200px) and (max-width: 1400px) {
  .modal__alert-wrap {
    width: calc(629 / var(--pc-size) * var(--vw));
    height: calc(234.6 / var(--pc-size) * var(--vw));
    gap: calc(15 / var(--pc-size) * var(--vw));
  }
}
.modal__rule {
  background: transparent url("../png/rule-border-bg@2x.png") no-repeat 0 0;
  background-size: cover;
  width: calc(700 / var(--pc-size) * var(--vw));
  height: calc(350 / var(--pc-size) * var(--vw));
  margin-inline: auto;
  padding: calc(20 / var(--pc-size) * var(--vw)) calc(12 / var(--pc-size) * var(--vw));
  box-sizing: border-box;
  margin-block-end: calc(30 / var(--pc-size) * var(--vw));
}
@media (max-width: 480px) {
  .modal__rule {
    background-size: 100% auto;
    width: 75vw;
    height: auto;
    aspect-ratio: 700/350;
    padding: 2vw;
    margin-block-end: 3vw;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  .modal__rule {
    background-size: 100% auto;
    width: 57vw;
    height: auto;
    aspect-ratio: 700/350;
    padding: 2vw;
    margin-block-end: 3vw;
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  .modal__rule {
    width: calc(630 / var(--pc-size) * var(--vw));
    height: calc(315 / var(--pc-size) * var(--vw));
  }
}
@media (min-width: 1200px) and (max-width: 1400px) {
  .modal__rule {
    width: calc(595 / var(--pc-size) * var(--vw));
    height: calc(297.5 / var(--pc-size) * var(--vw));
  }
}
.modal__rule-inner {
  width: 100%;
  height: 100%;
  overflow-y: scroll;
  padding-inline: calc(20 / var(--pc-size) * var(--vw));
}
.modal__rule-inner::-webkit-scrollbar {
  height: 3px;
  width: 3px;
}
.modal__rule-inner::-webkit-scrollbar-track {
  border-radius: 5px;
  background-color: #333;
}
.modal__rule-inner::-webkit-scrollbar-track:hover {
  background-color: #333;
}
.modal__rule-inner::-webkit-scrollbar-track:active {
  background-color: #333;
}
.modal__rule-inner::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background-color: #5e5e5e;
}
.modal__rule-inner::-webkit-scrollbar-thumb:hover {
  background-color: #717171;
}
.modal__rule-inner::-webkit-scrollbar-thumb:active {
  background-color: #5e5e5e;
}
@media (max-width: 480px) {
  .modal__rule-inner {
    ppadding-inline: 2vw;
    height: 89%;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  .modal__rule-inner {
    ppadding-inline: 1vw;
    height: 96%;
  }
}
.modal__rule-article {
  color: #d0d0d0;
  line-height: 1.8;
}
.modal__rule-article:not(:last-child) {
  margin-block-end: calc(40 / var(--pc-size) * var(--vw));
}
@media (max-width: 480px) {
  .modal__rule-article:not(:last-child) {
    margin-block-end: 4vw;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  .modal__rule-article:not(:last-child) {
    margin-block-end: 4vw;
  }
}
.modal__rule-article a {
  border-bottom: solid 1px #d0d0d0;
  color: #d0d0d0;
  text-decoration: none;
}
@media screen and (hover: hover) {
  .modal__rule-article a:hover {
    color: #fff;
    border-bottom-color: #fff;
  }
}
.modal__rule-article h2 {
  text-align: center;
  font-size: calc(30 / var(--pc-size) * var(--vw));
  margin-block-end: calc(20 / var(--pc-size) * var(--vw));
}
@media (max-width: 480px) {
  .modal__rule-article h2 {
    font-size: 4vw;
    margin-block-end: 2vw;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  .modal__rule-article h2 {
    font-size: 2.4vw;
    margin-block-end: 1vw;
  }
}
.modal__rule-article p {
  font-size: calc(20 / var(--pc-size) * var(--vw));
  margin-block-end: calc(20 / var(--pc-size) * var(--vw));
}
@media (max-width: 480px) {
  .modal__rule-article p {
    font-size: 3vw;
    margin-block-end: 2vw;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  .modal__rule-article p {
    font-size: 2vw;
    margin-block-end: 2vw;
  }
}
.modal__rule-article > ul {
  list-style: none;
  padding-left: calc(20 / var(--pc-size) * var(--vw));
}
@media (max-width: 480px) {
  .modal__rule-article > ul {
    padding-left: 4vw;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  .modal__rule-article > ul {
    padding-left: 2vw;
  }
}
.modal__rule-article > ul li {
  font-size: calc(20 / var(--pc-size) * var(--vw));
}
.modal__rule-article > ul li::marker {
  content: "- ";
}
@media (max-width: 480px) {
  .modal__rule-article > ul li {
    font-size: 3vw;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  .modal__rule-article > ul li {
    font-size: 2vw;
  }
}
.modal__rule-article > ol {
  padding-left: calc(30 / var(--pc-size) * var(--vw));
}
@media (max-width: 480px) {
  .modal__rule-article > ol {
    padding-left: 4vw;
  }
}
.modal__rule-article > ol > li {
  font-size: calc(20 / var(--pc-size) * var(--vw));
}
.modal__rule-article > ol > li:not(:last-child) {
  margin-block-end: calc(10 / var(--pc-size) * var(--vw));
}
@media (max-width: 480px) {
  .modal__rule-article > ol > li {
    font-size: 3vw;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  .modal__rule-article > ol > li {
    font-size: 2vw;
  }
}
.modal__rule-article > ol > li > ol {
  padding-block-start: calc(10 / var(--pc-size) * var(--vw));
  counter-reset: inner-ol-list;
  padding-left: calc(30 / var(--pc-size) * var(--vw));
}
@media (max-width: 480px) {
  .modal__rule-article > ol > li > ol {
    padding-block-start: 3vw;
    padding-left: 2vw;
  }
}
.modal__rule-article > ol > li > ol li {
  font-size: calc(20 / var(--pc-size) * var(--vw));
  counter-increment: inner-ol-list;
}
@media (max-width: 480px) {
  .modal__rule-article > ol > li > ol li {
    font-size: 3vw;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  .modal__rule-article > ol > li > ol li {
    font-size: 2vw;
  }
}
.modal__rule-article > ol > li > ol li::marker {
  content: "(" counter(inner-ol-list) ")";
}
.modal__rule-article > ol > li > ol li:not(:last-child) {
  margin-block-end: calc(10 / var(--pc-size) * var(--vw));
}
@media (max-width: 480px) {
  .modal__rule-article > ol > li > ol li:not(:last-child) {
    margin-block-end: 2vw;
  }
}
.modal__rule-article > ol > li > ul {
  list-style: none;
  padding-block-start: calc(10 / var(--pc-size) * var(--vw));
}
@media (max-width: 480px) {
  .modal__rule-article > ol > li > ul {
    padding-block-start: 2vw;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  .modal__rule-article > ol > li > ul {
    padding-block-start: 2vw;
  }
}
.modal__rule-article > ol > li > ul li {
  font-size: calc(20 / var(--pc-size) * var(--vw));
}
@media (max-width: 480px) {
  .modal__rule-article > ol > li > ul li {
    font-size: 3vw;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  .modal__rule-article > ol > li > ul li {
    font-size: 2vw;
  }
}
.modal__rule-article > ol > li > ul li:not(:last-child) {
  margin-block-end: calc(10 / var(--pc-size) * var(--vw));
}
@media (max-width: 480px) {
  .modal__rule-article > ol > li > ul li:not(:last-child) {
    margin-block-end: 2vw;
  }
}
.modal__input-wrap {
  background-color: #b0b0b0;
  margin-inline: calc(20 / var(--pc-size) * var(--vw));
  padding: calc(6 / var(--pc-size) * var(--vw));
  margin-block-end: calc(30 / var(--pc-size) * var(--vw));
}
@media (max-width: 480px) {
  .modal__input-wrap {
    margin-inline: 2vw;
    margin-block-end: 3vw;
    padding: 1vw;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  .modal__input-wrap {
    margin-inline: 1vw;
    margin-block-end: 2vw;
    padding: 0.5vw;
  }
}
.modal__input {
  background-color: #b7b7b7;
  font-size: calc(24 / var(--pc-size) * var(--vw));
  width: 100%;
  text-align: center;
  padding-block: calc(20 / var(--pc-size) * var(--vw));
  box-shadow: 0 0 0.8rem #000;
  color: #333;
  font-weight: 900;
}
.modal__input::placeholder {
  color: #666;
}
.modal__input:focus {
  background-color: #cfcfcf;
  outline: none;
}
@media (max-width: 480px) {
  .modal__input {
    font-size: 4vw;
    padding-block: 2vw;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  .modal__input {
    font-size: 3vw;
    padding-block: 2vw;
  }
}
.modal__checkbox {
  margin-block-end: calc(30 / var(--pc-size) * var(--vw));
  text-align: center;
}
@media (max-width: 480px) {
  .modal__checkbox {
    margin-block-end: 3vw;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  .modal__checkbox {
    margin-block-end: 2vw;
  }
}
.modal__checkbox input[type=checkbox]:checked,
.modal__checkbox input[type=checkbox]:not(:checked),
.modal__checkbox input[type=radio]:checked,
.modal__checkbox input[type=radio]:not(:checked) {
  position: absolute;
  left: -9999px;
}
.modal__checkbox input[type=checkbox]:checked + label,
.modal__checkbox input[type=checkbox]:not(:checked) + label,
.modal__checkbox input[type=radio]:checked + label,
.modal__checkbox input[type=radio]:not(:checked) + label {
  position: relative;
  padding-left: calc(50 / var(--pc-size) * var(--vw));
  cursor: pointer;
  display: inline-block;
  color: #b0b0b0;
  font-size: calc(30 / var(--pc-size) * var(--vw));
  font-weight: 500;
}
@media (max-width: 480px) {
  .modal__checkbox input[type=checkbox]:checked + label,
  .modal__checkbox input[type=checkbox]:not(:checked) + label,
  .modal__checkbox input[type=radio]:checked + label,
  .modal__checkbox input[type=radio]:not(:checked) + label {
    padding-left: 6vw;
    font-size: 3vw;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  .modal__checkbox input[type=checkbox]:checked + label,
  .modal__checkbox input[type=checkbox]:not(:checked) + label,
  .modal__checkbox input[type=radio]:checked + label,
  .modal__checkbox input[type=radio]:not(:checked) + label {
    padding-left: 4vw;
    font-size: 2vw;
  }
}
@media (min-width: 1200px) and (max-width: 1400px) {
  .modal__checkbox input[type=checkbox]:checked + label,
  .modal__checkbox input[type=checkbox]:not(:checked) + label,
  .modal__checkbox input[type=radio]:checked + label,
  .modal__checkbox input[type=radio]:not(:checked) + label {
    font-size: calc(24 / var(--pc-size) * var(--vw));
    font-weight: 500;
  }
}
.modal__checkbox input[type=checkbox]:checked + label:before,
.modal__checkbox input[type=checkbox]:not(:checked) + label:before,
.modal__checkbox input[type=radio]:checked + label:before,
.modal__checkbox input[type=radio]:not(:checked) + label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: calc(40 / var(--pc-size) * var(--vw));
  height: calc(40 / var(--pc-size) * var(--vw));
  border: 0.2rem solid #b0b0b0;
  background: transparent;
  transform: translate3d(0, 8%, 0);
}
@media (max-width: 480px) {
  .modal__checkbox input[type=checkbox]:checked + label:before,
  .modal__checkbox input[type=checkbox]:not(:checked) + label:before,
  .modal__checkbox input[type=radio]:checked + label:before,
  .modal__checkbox input[type=radio]:not(:checked) + label:before {
    width: 4vw;
    height: 4vw;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  .modal__checkbox input[type=checkbox]:checked + label:before,
  .modal__checkbox input[type=checkbox]:not(:checked) + label:before,
  .modal__checkbox input[type=radio]:checked + label:before,
  .modal__checkbox input[type=radio]:not(:checked) + label:before {
    width: 3vw;
    height: 3vw;
  }
}
@media (min-width: 1200px) and (max-width: 1400px) {
  .modal__checkbox input[type=checkbox]:checked + label:before,
  .modal__checkbox input[type=checkbox]:not(:checked) + label:before,
  .modal__checkbox input[type=radio]:checked + label:before,
  .modal__checkbox input[type=radio]:not(:checked) + label:before {
    width: calc(34 / var(--pc-size) * var(--vw));
    height: calc(34 / var(--pc-size) * var(--vw));
  }
}
.modal__checkbox input[type=checkbox]:checked + label:after,
.modal__checkbox input[type=checkbox]:not(:checked) + label:after,
.modal__checkbox input[type=radio]:checked + label:after,
.modal__checkbox input[type=radio]:not(:checked) + label:after {
  content: "";
  width: calc(24 / var(--pc-size) * var(--vw));
  height: calc(16 / var(--pc-size) * var(--vw));
  position: absolute;
  top: calc(10 / var(--pc-size) * var(--vw));
  left: calc(8 / var(--pc-size) * var(--vw));
  border-top: solid 0.2rem #b0b0b0;
  border-right: solid 0.2rem #b0b0b0;
  transition: all 0.2s ease;
  transform: scale(1) rotate(135deg);
}
@media (max-width: 480px) {
  .modal__checkbox input[type=checkbox]:checked + label:after,
  .modal__checkbox input[type=checkbox]:not(:checked) + label:after,
  .modal__checkbox input[type=radio]:checked + label:after,
  .modal__checkbox input[type=radio]:not(:checked) + label:after {
    width: 2vw;
    height: auto;
    aspect-ratio: 24/16;
    top: 1.4vw;
    left: 1vw;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  .modal__checkbox input[type=checkbox]:checked + label:after,
  .modal__checkbox input[type=checkbox]:not(:checked) + label:after,
  .modal__checkbox input[type=radio]:checked + label:after,
  .modal__checkbox input[type=radio]:not(:checked) + label:after {
    width: 1.4vw;
    height: auto;
    aspect-ratio: 24/16;
    top: 1vw;
    left: 0.8vw;
  }
}
@media (min-width: 1200px) and (max-width: 1400px) {
  .modal__checkbox input[type=checkbox]:checked + label:after,
  .modal__checkbox input[type=checkbox]:not(:checked) + label:after,
  .modal__checkbox input[type=radio]:checked + label:after,
  .modal__checkbox input[type=radio]:not(:checked) + label:after {
    width: calc(20 / var(--pc-size) * var(--vw));
    height: calc(12 / var(--pc-size) * var(--vw));
  }
}
.modal__checkbox input[type=checkbox]:not(:checked) + label:after,
.modal__checkbox input[type=radio]:not(:checked) + label:after {
  opacity: 0;
}
.modal__checkbox input[type=checkbox]:checked + label:after,
.modal__checkbox input[type=radio]:checked + label:after {
  opacity: 1;
}
.modal__btn-submit, .modal__btn-confirm {
  position: relative;
  display: flex;
  width: calc(428.8 / var(--pc-size) * var(--vw));
  height: calc(84.8 / var(--pc-size) * var(--vw));
  margin-inline: auto;
  background: transparent url("../png/game-btn-start.png") no-repeat center top;
  background-size: 100% auto;
  font-weight: 900;
  font-size: calc(28.8 / var(--pc-size) * var(--vw));
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.modal__btn-submit::after, .modal__btn-confirm::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: transparent url("../png/game-btn-start.png") no-repeat center bottom;
  background-size: 100% auto;
  content: "";
  opacity: 0;
  z-index: 5;
  transition: opacity 0.3s ease-in-out;
}
.modal__btn-submit span, .modal__btn-confirm span {
  position: relative;
  z-index: 10;
  color: #241102;
  text-shadow: 0 0 4px #fbe7c7;
  transition: all 0.3s ease-in-out;
}
@media screen and (hover: hover) {
  .modal__btn-submit:hover::after, .modal__btn-confirm:hover::after {
    opacity: 1;
  }
  .modal__btn-submit:hover span, .modal__btn-confirm:hover span {
    color: #f1cbac;
    text-shadow: 0 0 4px #442e0b;
  }
}
@media (max-width: 480px) {
  .modal__btn-submit, .modal__btn-confirm {
    width: 50vw;
    height: auto;
    aspect-ratio: 536/106;
  }
  .modal__btn-submit span, .modal__btn-confirm span {
    font-size: 4vw;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  .modal__btn-submit, .modal__btn-confirm {
    width: 36vw;
    height: auto;
    aspect-ratio: 536/106;
  }
  .modal__btn-submit span, .modal__btn-confirm span {
    font-size: 3vw;
  }
}
@media (min-width: 1200px) and (max-width: 1400px) {
  .modal__btn-submit, .modal__btn-confirm {
    width: calc(375.2 / var(--pc-size) * var(--vw));
    height: calc(74.2 / var(--pc-size) * var(--vw));
  }
}
@media (max-width: 480px) {
  .modal__btn-confirm {
    width: 38vw;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  .modal__btn-confirm {
    width: 32vw;
  }
}
.modal__message {
  color: #b0b0b0;
  font-size: calc(24 / var(--pc-size) * var(--vw));
  text-align: center;
}
.modal__message strong::before {
  content: "<";
}
.modal__message strong::after {
  content: ">";
}
@media (max-width: 480px) {
  .modal__message {
    font-size: 3vw;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  .modal__message {
    font-size: 2.4vw;
  }
}
.loading {
  position: fixed;
  z-index: 200;
  background-color: #000;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  transition: opacity 1500ms ease-in-out;
  gap: 1.6rem;
}
.loading.loaded {
  opacity: 0;
  pointer-events: none;
}
.loading p {
  font-size: var(--font-size-xs);
  color: #f8edbb;
  z-index: 10;
  text-shadow: 0 0 1rem #fff;
}
.loader {
  transform: rotateZ(45deg);
  perspective: 1000px;
  border-radius: 50%;
  width: 5.6rem;
  height: 5.6rem;
  color: #f8edbb;
}
.loader:before,
.loader:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: inherit;
  height: inherit;
  border-radius: 50%;
  transform: rotateX(70deg);
  animation: 1s spin linear infinite;
}
.loader:after {
  color: #9c6a13;
  transform: rotateY(70deg);
  animation-delay: 0.4s;
}
@keyframes rotate {
  0% {
    transform: translate(-50%, -50%) rotateZ(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotateZ(360deg);
  }
}
@keyframes rotateccw {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(-360deg);
  }
}
@keyframes spin {
  0%, 100% {
    box-shadow: 0.2em 0px 0 0px currentcolor;
  }
  12% {
    box-shadow: 0.2em 0.2em 0 0 currentcolor;
  }
  25% {
    box-shadow: 0 0.2em 0 0px currentcolor;
  }
  37% {
    box-shadow: -0.2em 0.2em 0 0 currentcolor;
  }
  50% {
    box-shadow: -0.2em 0 0 0 currentcolor;
  }
  62% {
    box-shadow: -0.2em -0.2em 0 0 currentcolor;
  }
  75% {
    box-shadow: 0px -0.2em 0 0 currentcolor;
  }
  87% {
    box-shadow: 0.2em -0.2em 0 0 currentcolor;
  }
}
.index {
  width: 100%;
  height: 100dvh;
  height: calc(var(--vh, 1vh) * 100);
  background: #000 url("../jpg/index-kv-bg.jpg") no-repeat center top;
  background-size: cover;
  position: relative;
  overflow: hidden;
}
@media (max-width: 480px) {
  .index {
    background-image: url("../jpg/index-kv-bg-m.jpg");
    background-position: center bottom;
    background-size: 147% auto;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  .index {
    background-image: url("../jpg/index-kv-bg-m.jpg");
    background-position: center bottom;
    background-size: 147% auto;
  }
}
.index__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(0, -40%, 0);
  z-index: 10;
}
@media (max-width: 480px) {
  .index__content {
    top: inherit;
    bottom: 0;
    transform: translate3d(-50%, -25%, 0);
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  .index__content {
    top: inherit;
    bottom: 0;
    transform: translate3d(-50%, -10%, 0);
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .index__content {
    transform: translate3d(-10%, -40%, 0);
  }
}
@media (min-width: 768px) and (max-width: 992px) and (orientation: portrait) {
  .index__content {
    transform: translate3d(-50%, 0, 0);
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  .index__content {
    transform: translate3d(-20%, -40%, 0);
  }
}
@media (min-width: 1200px) and (max-width: 1400px) {
  .index__content {
    transform: translate3d(-10%, -40%, 0);
  }
}
.index__sub-title {
  width: calc(675 / var(--pc-size) * var(--vw));
  margin-bottom: calc(60 / var(--pc-size) * var(--vw));
  margin-inline: auto;
}
@media (max-width: 480px) {
  .index__sub-title {
    width: 72vw;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  .index__sub-title {
    width: 44vw;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .index__sub-title {
    width: calc(540 / var(--pc-size) * var(--vw));
  }
}
@media (min-width: 768px) and (max-width: 992px) and (orientation: portrait) {
  .index__sub-title {
    width: calc(810 / var(--pc-size) * var(--vw));
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  .index__sub-title {
    width: calc(607.5 / var(--pc-size) * var(--vw));
    margin-bottom: calc(30 / var(--pc-size) * var(--vw));
  }
}
@media (min-width: 1200px) and (max-width: 1400px) {
  .index__sub-title {
    width: calc(540 / var(--pc-size) * var(--vw));
    margin-bottom: calc(30 / var(--pc-size) * var(--vw));
  }
}
.index__main-title {
  width: calc(856 / var(--pc-size) * var(--vw));
  margin-bottom: calc(30 / var(--pc-size) * var(--vw));
}
@media (max-width: 480px) {
  .index__main-title {
    width: 82vw;
    position: relative;
    margin-bottom: 0;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  .index__main-title {
    width: 55vw;
    position: relative;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .index__main-title {
    width: calc(684.8 / var(--pc-size) * var(--vw));
  }
}
@media (min-width: 768px) and (max-width: 992px) and (orientation: portrait) {
  .index__main-title {
    width: calc(1027.2 / var(--pc-size) * var(--vw));
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  .index__main-title {
    width: calc(770.4 / var(--pc-size) * var(--vw));
    margin-bottom: calc(20 / var(--pc-size) * var(--vw));
  }
}
@media (min-width: 1200px) and (max-width: 1400px) {
  .index__main-title {
    width: calc(684.8 / var(--pc-size) * var(--vw));
    margin-bottom: calc(20 / var(--pc-size) * var(--vw));
  }
}
.index__sub-title-2 {
  width: calc(857 / var(--pc-size) * var(--vw));
  margin-bottom: calc(30 / var(--pc-size) * var(--vw));
}
@media (max-width: 480px) {
  .index__sub-title-2 {
    width: 82vw;
    position: relative;
    margin-bottom: 0;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  .index__sub-title-2 {
    width: 55vw;
    position: relative;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .index__sub-title-2 {
    width: calc(685.6 / var(--pc-size) * var(--vw));
  }
}
@media (min-width: 768px) and (max-width: 992px) and (orientation: portrait) {
  .index__sub-title-2 {
    width: calc(1028.4 / var(--pc-size) * var(--vw));
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  .index__sub-title-2 {
    width: calc(771.3 / var(--pc-size) * var(--vw));
  }
}
@media (min-width: 1200px) and (max-width: 1400px) {
  .index__sub-title-2 {
    width: calc(685.6 / var(--pc-size) * var(--vw));
  }
}
.index__btn-video {
  width: calc(159 / var(--pc-size) * var(--vw));
  height: calc(159 / var(--pc-size) * var(--vw));
  background: transparent url("../png/index-btn-video-bg@3x.png") no-repeat center center;
  background-size: cover;
  margin-inline: auto;
  cursor: pointer;
  transition: scale 0.3s ease-in-out;
}
@media (hover: hover) {
  .index__btn-video:hover {
    scale: 1.1;
  }
}
@media (max-width: 480px) {
  .index__btn-video {
    width: 18vw;
    height: 18vw;
    position: absolute;
    left: 50%;
    top: 0;
    transform: translate3d(-50%, -135%, 0);
  }
}
@media (min-width: 768px) and (max-width: 992px) and (orientation: portrait) {
  .index__btn-video {
    width: calc(174.9 / var(--pc-size) * var(--vw));
    height: calc(174.9 / var(--pc-size) * var(--vw));
  }
}
@media (min-width: 1200px) and (max-width: 1400px) {
  .index__btn-video {
    width: calc(127.2 / var(--pc-size) * var(--vw));
    height: calc(127.2 / var(--pc-size) * var(--vw));
  }
}
.index__video-bg {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 100%;
  z-index: 0;
  transform: translate3d(-50%, -50%, 0);
}
.index__video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (min-width: 480px) and (max-width: 768px) {
  .index__video-bg video {
    object-position: 50% 10%;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .index__video-bg video {
    object-position: 35% 50%;
  }
}
@media (min-width: 768px) and (max-width: 992px) and (orientation: portrait) {
  .index__video-bg video {
    object-position: 24% 50%;
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  .index__video-bg video {
    object-position: 50% 50%;
  }
}
.index__video-bg.mobile {
  display: none;
}
@media (max-width: 480px) {
  .index__video-bg.mobile {
    display: block;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  .index__video-bg.mobile {
    display: block;
  }
}
@media (min-width: 768px) and (max-width: 992px) and (orientation: portrait) {
  .index__video-bg.mobile {
    display: block;
  }
}
.index__video-bg.desktop {
  display: block;
}
@media (max-width: 480px) {
  .index__video-bg.desktop {
    display: none;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  .index__video-bg.desktop {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 992px) and (orientation: portrait) {
  .index__video-bg.desktop {
    display: none;
  }
}
.thunderbringer {
  height: 100dvh;
  height: calc(var(--vh, 1vh) * 100);
  background: #000 url("../jpg/thunderbringer-bg.jpg") no-repeat center/cover;
  position: relative;
  overflow: hidden;
}
@media (max-width: 480px) {
  .thunderbringer {
    background-image: url("../jpg/thunderbringer-bg-m.jpg");
    background-position: center bottom;
    background-size: auto 100%;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  .thunderbringer {
    background-image: url("../jpg/thunderbringer-bg-m.jpg");
    background-position: center bottom;
    background-size: 147% auto;
  }
}
@media (min-width: 768px) and (max-width: 992px) and (orientation: portrait) {
  .thunderbringer {
    background-image: url("../jpg/thunderbringer-bg-m.jpg");
    background-position: center bottom;
    background-size: 147% auto;
  }
}
.thunderbringer__content {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate3d(-50%, 0, 0);
  padding-block-end: calc(140 / var(--pc-size) * var(--vw));
}
@media (max-width: 480px) {
  .thunderbringer__content {
    padding-block-end: 0;
    transform: translate3d(-50%, 0, 0);
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  .thunderbringer__content {
    padding-block-end: 0;
    transform: translate3d(-50%, 0, 0);
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .thunderbringer__content {
    transform: translate3d(-50%, -50%, 0);
  }
}
@media (min-width: 768px) and (max-width: 992px) and (orientation: portrait) {
  .thunderbringer__content {
    transform: translate3d(-50%, -48%, 0);
  }
}
.thunderbringer__main-title {
  width: calc(950 / var(--pc-size) * var(--vw));
  margin-inline: auto;
  margin-block-end: calc(10 / var(--pc-size) * var(--vw));
  position: relative;
  z-index: 30;
}
@media (max-width: 480px) {
  .thunderbringer__main-title {
    width: 84vw;
    margin-block-end: 5vw;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  .thunderbringer__main-title {
    width: 64vw;
    margin-block-end: 2vw;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .thunderbringer__main-title {
    width: calc(1235 / var(--pc-size) * var(--vw));
  }
}
@media (min-width: 768px) and (max-width: 992px) and (orientation: portrait) {
  .thunderbringer__main-title {
    width: calc(1045 / var(--pc-size) * var(--vw));
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  .thunderbringer__main-title {
    width: calc(950 / var(--pc-size) * var(--vw));
  }
}
@media (min-width: 1200px) and (max-width: 1400px) {
  .thunderbringer__main-title {
    width: calc(807.5 / var(--pc-size) * var(--vw));
  }
}
.thunderbringer__sub-title {
  width: calc(1220 / var(--pc-size) * var(--vw));
  margin-inline: auto;
  position: relative;
  z-index: 30;
}
@media (max-width: 480px) {
  .thunderbringer__sub-title {
    width: 103vw;
    margin-block-end: 5vw;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  .thunderbringer__sub-title {
    width: 80vw;
    margin-block-end: 1vw;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .thunderbringer__sub-title {
    width: calc(1586 / var(--pc-size) * var(--vw));
  }
}
@media (min-width: 768px) and (max-width: 992px) and (orientation: portrait) {
  .thunderbringer__sub-title {
    width: calc(1342 / var(--pc-size) * var(--vw));
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  .thunderbringer__sub-title {
    width: calc(1220 / var(--pc-size) * var(--vw));
  }
}
@media (min-width: 1200px) and (max-width: 1400px) {
  .thunderbringer__sub-title {
    width: calc(1037 / var(--pc-size) * var(--vw));
  }
}
.thunderbringer__frame {
  width: calc(560 / var(--pc-size) * var(--vw));
  aspect-ratio: 16/14;
  background: transparent url("../png/thunderbringer-frame@3x.png") no-repeat center center;
  background-size: 100% auto;
  margin-inline-start: calc(165 / var(--pc-size) * var(--vw));
  padding: calc(48 / var(--pc-size) * var(--vw)) 0;
}
@media (max-width: 480px) {
  .thunderbringer__frame {
    background-size: 100% auto;
    width: 78vw;
    aspect-ratio: 16/5;
    margin-inline: auto;
    margin-block-end: 45vw;
    padding: 7vw 3vw;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  .thunderbringer__frame {
    background-size: 100% auto;
    width: 48vw;
    aspect-ratio: 1929/1698;
    margin-inline-start: 8vw;
    margin-block-end: 15vw;
    padding: 6vw 2vw;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .thunderbringer__frame {
    width: calc(728 / var(--pc-size) * var(--vw));
    margin-inline: auto;
  }
}
@media (min-width: 768px) and (max-width: 992px) and (orientation: portrait) {
  .thunderbringer__frame {
    width: calc(728 / var(--pc-size) * var(--vw));
    padding: calc(70 / var(--pc-size) * var(--vw)) 0;
    margin-inline: auto;
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  .thunderbringer__frame {
    width: calc(560 / var(--pc-size) * var(--vw));
    margin-inline-start: calc(115.5 / var(--pc-size) * var(--vw));
  }
}
@media (min-width: 1200px) and (max-width: 1400px) {
  .thunderbringer__frame {
    width: calc(504 / var(--pc-size) * var(--vw));
    margin-inline-start: calc(140.25 / var(--pc-size) * var(--vw));
  }
}
.thunderbringer__cht {
  width: calc(1047 / var(--pc-size) * var(--vw));
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate3d(-20%, 0, 0);
  z-index: 20;
  pointer-events: none;
}
@media (max-width: 480px) {
  .thunderbringer__cht {
    width: 110vw;
    transform: translate3d(-30%, 0, 0);
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  .thunderbringer__cht {
    width: 80vw;
    transform: translate3d(-25%, 0, 0);
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .thunderbringer__cht {
    width: calc(1256.4 / var(--pc-size) * var(--vw));
    transform: translate3d(-30%, 59%, 0);
  }
}
@media (min-width: 768px) and (max-width: 992px) and (orientation: portrait) {
  .thunderbringer__cht {
    width: calc(1465.8 / var(--pc-size) * var(--vw));
    transform: translate3d(-30%, 60%, 0);
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  .thunderbringer__cht {
    width: calc(1047 / var(--pc-size) * var(--vw));
    transform: translate3d(-30%, 0, 0);
  }
}
@media (min-width: 1200px) and (max-width: 1400px) {
  .thunderbringer__cht {
    width: calc(889.95 / var(--pc-size) * var(--vw));
  }
}
.thunderbringer__cht-title {
  font-size: calc(70 / var(--pc-size) * var(--vw));
  text-align: center;
  font-weight: 400;
  background: transparent url("../png/thunderbringer-texture@3x.png") no-repeat center center;
  background-size: cover;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  background-clip: text;
  margin-block-end: calc(20 / var(--pc-size) * var(--vw));
}
@media (max-width: 480px) {
  .thunderbringer__cht-title {
    font-size: 9vw;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  .thunderbringer__cht-title {
    font-size: 7vw;
    margin-block-end: 1vw;
  }
}
@media (min-width: 768px) and (max-width: 992px) and (orientation: portrait) {
  .thunderbringer__cht-title {
    font-size: calc(90 / var(--pc-size) * var(--vw));
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  .thunderbringer__cht-title {
    font-size: calc(80 / var(--pc-size) * var(--vw));
    margin-block-end: calc(10 / var(--pc-size) * var(--vw));
  }
}
@media (min-width: 1200px) and (max-width: 1400px) {
  .thunderbringer__cht-title {
    font-size: calc(64 / var(--pc-size) * var(--vw));
    margin-block-end: calc(10 / var(--pc-size) * var(--vw));
  }
}
.thunderbringer__cht-intro {
  text-align: center;
  font-size: calc(26 / var(--pc-size) * var(--vw));
  color: #fff;
  line-height: 1.7;
}
@media (max-width: 480px) {
  .thunderbringer__cht-intro {
    font-size: 3.5vw;
    margin-block-end: 2vw;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  .thunderbringer__cht-intro {
    font-size: 1.8vw;
    margin-block-end: 2vw;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .thunderbringer__cht-intro {
    font-size: calc(34 / var(--pc-size) * var(--vw));
    margin-block-end: calc(34 / var(--pc-size) * var(--vw));
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  .thunderbringer__cht-intro {
    font-size: calc(24 / var(--pc-size) * var(--vw));
    margin-block-end: calc(20 / var(--pc-size) * var(--vw));
  }
}
@media (min-width: 1200px) and (max-width: 1400px) {
  .thunderbringer__cht-intro {
    font-size: calc(24 / var(--pc-size) * var(--vw));
  }
}
.thunderbringer__video-wrap {
  cursor: pointer;
  background: transparent url("../png/thunderbringer-video-bg@3x.png") no-repeat center center;
  background-size: cover;
  width: calc(520 / var(--pc-size) * var(--vw));
  aspect-ratio: 16/5;
  margin-inline: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
}
@media (max-width: 480px) {
  .thunderbringer__video-wrap {
    width: 64vw;
    position: relative;
    transform: translate3d(0, 10%, 0);
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  .thunderbringer__video-wrap {
    width: 30vw;
    position: relative;
    transform: translate3d(0, 10%, 0);
  }
}
@media (min-width: 768px) and (max-width: 992px) and (orientation: portrait) {
  .thunderbringer__video-wrap {
    width: calc(728 / var(--pc-size) * var(--vw));
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  .thunderbringer__video-wrap {
    width: calc(416 / var(--pc-size) * var(--vw));
  }
}
@media (min-width: 1200px) and (max-width: 1400px) {
  .thunderbringer__video-wrap {
    width: calc(468 / var(--pc-size) * var(--vw));
  }
}
@media screen and (hover: hover) {
  .thunderbringer__video-wrap:hover .thunderbringer__btn-video {
    scale: 1.1;
  }
}
.thunderbringer__btn-video {
  pointer-events: none;
  cursor: pointer;
  background: transparent url("../png/thunderbringer-btn-video@3x.png") no-repeat center center;
  background-size: cover;
  width: calc(104 / var(--pc-size) * var(--vw));
  aspect-ratio: 1/1;
  cursor: pointer;
  transition: scale 0.3s ease-in-out;
}
@media (max-width: 480px) {
  .thunderbringer__btn-video {
    width: 12vw;
  }
}
.other-update__btn-link {
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  font-size: calc(34 / var(--pc-size) * var(--vw));
  color: #3b2619;
  display: block;
  width: calc(460 / var(--pc-size) * var(--vw));
  height: calc(78 / var(--pc-size) * var(--vw));
  background: transparent url("../png/common-btn-bg@3x.png") no-repeat center/cover;
  margin-inline: auto;
  transition: scale 0.3s ease-in-out;
}
@media (max-width: 480px) {
  .other-update__btn-link {
    width: 90vw;
    height: auto;
    aspect-ratio: 460/78;
    font-size: 5.8vw;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  .other-update__btn-link {
    width: 50vw;
    height: auto;
    aspect-ratio: 460/78;
    font-size: 3.6vw;
  }
}
@media (min-width: 1200px) and (max-width: 1400px) {
  .other-update__btn-link {
    font-size: calc(26 / var(--pc-size) * var(--vw));
    width: calc(391 / var(--pc-size) * var(--vw));
    height: calc(66.3 / var(--pc-size) * var(--vw));
  }
}
@media screen and (hover: hover) {
  .other-update__btn-link:hover {
    scale: 1.05;
  }
}
.other-update {
  height: 100dvh;
  height: calc(var(--vh, 1vh) * 100);
  background: #000 url("../jpg/update-bg.jpg") no-repeat center/cover;
  position: relative;
  overflow: hidden;
}
@media (max-width: 480px) {
  .other-update {
    background-image: url("../jpg/update-bg-m.jpg");
    background-position: center center;
    background-size: auto 100%;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  .other-update {
    background-image: url("../jpg/update-bg-m.jpg");
    background-position: center center;
    background-size: 147% auto;
  }
}
@media (min-width: 768px) and (max-width: 992px) and (orientation: portrait) {
  .other-update {
    background-image: url("../jpg/update-bg-m.jpg");
    background-position: center center;
    background-size: 147% auto;
  }
}
.other-update__content {
  width: 100%;
  left: 50%;
  top: 50%;
  transform: translate3d(-50%, -46%, 0);
  position: absolute;
  z-index: 10;
}
@media (max-width: 480px) {
  .other-update__content {
    transform: translate3d(-50%, -46%, 0);
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  .other-update__content {
    transform: translate3d(-50%, -46%, 0);
  }
}
@media (min-width: 768px) and (max-width: 992px) and (orientation: portrait) {
  .other-update__content {
    transform: translate3d(-50%, -85%, 0);
  }
}
.other-update__main-title {
  width: calc(980 / var(--pc-size) * var(--vw));
  margin-inline: auto;
  margin-block-end: calc(15 / var(--pc-size) * var(--vw));
  position: relative;
}
.other-update__main-title img:nth-child(1) {
  position: relative;
  z-index: 10;
}
@media (max-width: 480px) {
  .other-update__main-title {
    width: 115vw;
    margin-inline-start: -7vw;
    margin-block-end: 6vw;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  .other-update__main-title {
    width: 104vw;
    margin-inline-start: -3vw;
    margin-block-end: 2vw;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .other-update__main-title {
    width: calc(1274 / var(--pc-size) * var(--vw));
  }
}
@media (min-width: 1200px) and (max-width: 1400px) {
  .other-update__main-title {
    width: calc(833 / var(--pc-size) * var(--vw));
  }
}
.other-update__sub-title {
  width: calc(530 / var(--pc-size) * var(--vw));
  margin-inline: auto;
  margin-block-end: calc(20 / var(--pc-size) * var(--vw));
  position: relative;
  z-index: 10;
}
@media (max-width: 480px) {
  .other-update__sub-title {
    width: 68vw;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  .other-update__sub-title {
    width: 60vw;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .other-update__sub-title {
    width: calc(689 / var(--pc-size) * var(--vw));
  }
}
@media (min-width: 1200px) and (max-width: 1400px) {
  .other-update__sub-title {
    width: calc(450.5 / var(--pc-size) * var(--vw));
  }
}
.other-update__feature {
  display: flex;
  gap: calc(20 / var(--pc-size) * var(--vw));
  margin-block-end: calc(40 / var(--pc-size) * var(--vw));
  position: relative;
  z-index: 10;
}
.other-update .other-update-swiper {
  width: calc(1000 / var(--pc-size) * var(--vw));
  position: relative;
  z-index: 10;
  margin-block-end: calc(40 / var(--pc-size) * var(--vw));
  background-color: calc(513 / var(--pc-size) * var(--vw));
}
@media (max-width: 480px) {
  .other-update .other-update-swiper {
    width: 80vw;
    margin-bottom: 10vw;
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  .other-update .other-update-swiper {
    width: calc(800 / var(--pc-size) * var(--vw));
  }
}
@media (min-width: 1200px) and (max-width: 1400px) {
  .other-update .other-update-swiper {
    width: calc(850 / var(--pc-size) * var(--vw));
  }
}
.other-update__cht {
  width: calc(580 / var(--pc-size) * var(--vw));
  position: absolute;
  z-index: 0;
  left: 50%;
  transform: translate3d(-158%, 0, 0);
  bottom: 0;
}
@media (max-width: 480px) {
  .other-update__cht {
    display: none;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  .other-update__cht {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .other-update__cht {
    width: calc(754 / var(--pc-size) * var(--vw));
    transform: translate3d(-134%, 0, 0);
  }
}
@media (min-width: 768px) and (max-width: 992px) and (orientation: portrait) {
  .other-update__cht {
    width: calc(696 / var(--pc-size) * var(--vw));
    transform: translate3d(-105%, 0, 0);
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  .other-update__cht {
    transform: translate3d(-150%, 0, 0);
  }
}
.other-update__pet-1 {
  width: calc(410 / var(--pc-size) * var(--vw));
  position: absolute;
  z-index: 10;
  left: 50%;
  transform: translate3d(105%, 0, 0);
  bottom: 0;
}
@media (max-width: 480px) {
  .other-update__pet-1 {
    display: none;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  .other-update__pet-1 {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .other-update__pet-1 {
    width: calc(533 / var(--pc-size) * var(--vw));
    transform: translate3d(50%, 0, 0);
  }
}
@media (min-width: 768px) and (max-width: 992px) and (orientation: portrait) {
  .other-update__pet-1 {
    transform: translate3d(10%, 0, 0);
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  .other-update__pet-1 {
    transform: translate3d(88%, 0, 0);
  }
}
.other-update__pet-2 {
  width: calc(220 / var(--pc-size) * var(--vw)) !important;
  position: absolute;
  z-index: 0;
  left: 50%;
  transform: translate3d(225%, -150%, 0);
  top: 50%;
}
@media (max-width: 480px) {
  .other-update__pet-2 {
    display: none;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  .other-update__pet-2 {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .other-update__pet-2 {
    width: calc(286 / var(--pc-size) * var(--vw));
    transform: translate3d(185%, -250%, 0);
  }
}
@media (min-width: 768px) and (max-width: 992px) and (orientation: portrait) {
  .other-update__pet-2 {
    transform: translate3d(145%, -380%, 0);
  }
}
.other-update__glow-1 {
  max-width: inherit;
  width: calc(540 / var(--pc-size) * var(--vw));
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate3d(-64%, -78%, 0);
  z-index: 10;
  mix-blend-mode: hard-light;
}
@media (max-width: 480px) {
  .other-update__glow-1 {
    width: 60vw;
  }
}
.other-update__glow-2 {
  mix-blend-mode: screen;
  max-width: inherit;
  width: calc(1040 / var(--pc-size) * var(--vw));
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate3d(-44%, -34%, 0);
  z-index: 0;
}
@media (max-width: 480px) {
  .other-update__glow-2 {
    width: 120vw;
  }
}
.other-update__cus-swiper-button-prev {
  width: 10vw;
  height: 13vw;
  background: transparent url("../png/swiper-btn-prev@2x.png") no-repeat 0 0;
  background-size: cover;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate3d(0, -30%, 0);
  z-index: 100;
  cursor: pointer;
}
@media (min-width: 480px) and (max-width: 768px) {
  .other-update__cus-swiper-button-prev {
    transform: translate3d(130%, -38%, 0);
  }
}
.other-update__cus-swiper-button-next {
  width: 10vw;
  height: 13vw;
  background: transparent url("../png/swiper-btn-next@2x.png") no-repeat 0 0;
  background-size: cover;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate3d(0, -30%, 0);
  z-index: 100;
  cursor: pointer;
}
@media (min-width: 480px) and (max-width: 768px) {
  .other-update__cus-swiper-button-next {
    transform: translate3d(-130%, -38%, 0);
  }
}
.other-update__swiper-wrap {
  position: relative;
}
.anniversary {
  height: 100dvh;
  height: calc(var(--vh, 1vh) * 100);
  background: #000 url("../jpg/anniversary-bg.jpg") no-repeat center/cover;
  position: relative;
  overflow: hidden;
}
@media (max-width: 480px) {
  .anniversary {
    background-image: url("../jpg/anniversary-bg-m.jpg");
    background-position: center center;
    background-size: auto 100%;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  .anniversary {
    background-image: url("../jpg/anniversary-bg-m.jpg");
    background-position: center center;
    background-size: 147% auto;
  }
}
@media (min-width: 768px) and (max-width: 992px) and (orientation: portrait) {
  .anniversary {
    background-image: url("../jpg/anniversary-bg-m.jpg");
    background-position: center center;
    background-size: 147% auto;
  }
}
.anniversary__content {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  transform: translate3d(-50%, -46%, 0);
}
@media (max-width: 480px) {
  .anniversary__content {
    transform: translate3d(-50%, -50%, 0);
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  .anniversary__content {
    transform: translate3d(-50%, -50%, 0);
  }
}
@media (min-width: 768px) and (max-width: 992px) and (orientation: portrait) {
  .anniversary__content {
    transform: translate3d(-50%, -45%, 0);
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  .anniversary__content {
    transform: translate3d(-50%, -50%, 0);
  }
}
.anniversary__sub-title {
  width: calc(510 / var(--pc-size) * var(--vw));
  margin-inline: auto;
}
@media (max-width: 480px) {
  .anniversary__sub-title {
    width: 86vw;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  .anniversary__sub-title {
    width: 56vw;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .anniversary__sub-title {
    width: calc(663 / var(--pc-size) * var(--vw));
  }
}
@media (min-width: 768px) and (max-width: 992px) and (orientation: portrait) {
  .anniversary__sub-title {
    width: calc(663 / var(--pc-size) * var(--vw));
  }
}
@media (min-width: 1200px) and (max-width: 1400px) {
  .anniversary__sub-title {
    width: calc(433.5 / var(--pc-size) * var(--vw));
  }
}
.anniversary__main-title {
  width: calc(525 / var(--pc-size) * var(--vw));
  position: relative;
  margin-inline: auto;
  margin-block-end: calc(40 / var(--pc-size) * var(--vw));
}
@media (max-width: 480px) {
  .anniversary__main-title {
    width: 88vw;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  .anniversary__main-title {
    width: 58vw;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .anniversary__main-title {
    width: calc(682.5 / var(--pc-size) * var(--vw));
  }
}
@media (min-width: 768px) and (max-width: 992px) and (orientation: portrait) {
  .anniversary__main-title {
    width: calc(682.5 / var(--pc-size) * var(--vw));
  }
}
@media (min-width: 1200px) and (max-width: 1400px) {
  .anniversary__main-title {
    width: calc(446.25 / var(--pc-size) * var(--vw));
  }
}
.anniversary__glow {
  max-width: initial;
  width: calc(650 / var(--pc-size) * var(--vw));
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate3d(-45%, -50%, 0);
  mix-blend-mode: screen;
}
@media (max-width: 480px) {
  .anniversary__glow {
    width: 110vw;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  .anniversary__glow {
    width: 70vw;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .anniversary__glow {
    width: calc(845 / var(--pc-size) * var(--vw));
  }
}
@media (min-width: 768px) and (max-width: 992px) and (orientation: portrait) {
  .anniversary__glow {
    width: calc(910 / var(--pc-size) * var(--vw));
  }
}
@media (min-width: 1200px) and (max-width: 1400px) {
  .anniversary__glow {
    width: calc(552.5 / var(--pc-size) * var(--vw));
  }
}
.anniversary__item-wrap {
  justify-content: center;
  margin-inline: auto;
  display: flex;
  gap: calc(20 / var(--pc-size) * var(--vw));
  margin-block-end: calc(20 / var(--pc-size) * var(--vw));
}
@media (max-width: 480px) {
  .anniversary__item-wrap {
    flex-direction: column;
    align-items: center;
    gap: 3vw;
  }
}
@media (min-width: 768px) and (max-width: 992px) and (orientation: portrait) {
  .anniversary__item-wrap {
    flex-direction: column;
    align-items: center;
  }
}
.anniversary__item {
  width: calc(435 / var(--pc-size) * var(--vw));
  height: calc(369 / var(--pc-size) * var(--vw));
  background: transparent url("../png/anniversary-item-frame@2x.png") no-repeat center center;
  background-size: cover;
  position: relative;
}
@media (max-width: 480px) {
  .anniversary__item {
    background-image: url("../png/anniversary-item-frame-m@2x.png");
    width: 60vw;
    background-size: 100% auto;
    aspect-ratio: 16/9;
    height: auto;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  .anniversary__item {
    background-image: url("../png/anniversary-item-frame-m@2x.png");
    width: 30vw;
    background-size: 100% auto;
    aspect-ratio: 16/9;
    height: auto;
  }
}
@media (min-width: 768px) and (max-width: 992px) and (orientation: portrait) {
  .anniversary__item {
    width: calc(391.5 / var(--pc-size) * var(--vw));
    height: calc(332.1 / var(--pc-size) * var(--vw));
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  .anniversary__item {
    width: calc(348 / var(--pc-size) * var(--vw));
    height: calc(295.2 / var(--pc-size) * var(--vw));
  }
}
@media (min-width: 1200px) and (max-width: 1400px) {
  .anniversary__item {
    width: calc(369.75 / var(--pc-size) * var(--vw));
    height: calc(313.65 / var(--pc-size) * var(--vw));
  }
}
.anniversary__item:nth-child(1) .anniversary__light {
  background: transparent url("../png/anniversary-item-1-light@2x.png") no-repeat center center;
  background-size: cover;
}
.anniversary__item:nth-child(2) .anniversary__light {
  background: transparent url("../png/anniversary-item-2-light@2x.png") no-repeat center center;
  background-size: cover;
}
.anniversary__item:nth-child(3) .anniversary__light {
  background: transparent url("../png/anniversary-item-3-light@2x.png") no-repeat center center;
  background-size: cover;
}
.anniversary__item.label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: calc(187 / var(--pc-size) * var(--vw));
  height: calc(169 / var(--pc-size) * var(--vw));
  background: transparent url("../png/anniversary-item-3-label@2x.png") no-repeat center center;
  background-size: cover;
  z-index: 30;
  transform: translate3d(-8%, 0, 0);
}
.anniversary__item-title {
  width: calc(279 / var(--pc-size) * var(--vw));
  height: calc(45 / var(--pc-size) * var(--vw));
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
  background: transparent url("../png/anniversary-item-title-bg@2x.png") no-repeat center center;
  background-size: cover;
  text-align: center;
  color: #fff;
  font-size: calc(20 / var(--pc-size) * var(--vw));
  line-height: 2.2;
  z-index: 30;
}
@media (max-width: 480px) {
  .anniversary__item-title {
    background-image: url("../png/anniversary-item-title-bg-m@2x.png");
    background-size: 100% auto;
    width: 30vw;
    height: auto;
    aspect-ratio: 216/27;
    font-size: 2.2vw;
    transform: translate3d(-50%, -22%, 0);
    line-height: 1.7;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  .anniversary__item-title {
    background-image: url("../png/anniversary-item-title-bg-m@2x.png");
    background-size: 100% auto;
    width: 20vw;
    height: auto;
    aspect-ratio: 216/27;
    font-size: 1.5vw;
    transform: translate3d(-50%, -33%, 0);
    line-height: 1.7;
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  .anniversary__item-title {
    width: calc(223.2 / var(--pc-size) * var(--vw));
    height: calc(36 / var(--pc-size) * var(--vw));
    font-size: calc(18 / var(--pc-size) * var(--vw));
    line-height: 1.8;
  }
}
.anniversary__light {
  width: calc(492 / var(--pc-size) * var(--vw));
  height: calc(492 / var(--pc-size) * var(--vw));
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
  z-index: 0;
  opacity: 0.5;
  transform-origin: 50% 50%;
  animation: fadeInOut 1s infinite alternate;
}
@media (max-width: 480px) {
  .anniversary__light {
    width: 60vw;
    height: auto;
    aspect-ratio: 1/1;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  .anniversary__light {
    width: 30vw;
    height: auto;
    aspect-ratio: 1/1;
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  .anniversary__light {
    width: calc(393.6 / var(--pc-size) * var(--vw));
    height: calc(393.6 / var(--pc-size) * var(--vw));
  }
}
.anniversary__inner-item {
  width: calc(480 / var(--pc-size) * var(--vw));
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
  z-index: 10;
}
@media (max-width: 480px) {
  .anniversary__inner-item {
    width: 40vw;
    height: auto;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  .anniversary__inner-item {
    width: 20vw;
    height: auto;
  }
}
@media (min-width: 768px) and (max-width: 992px) and (orientation: portrait) {
  .anniversary__inner-item {
    width: calc(480 / var(--pc-size) * var(--vw));
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  .anniversary__inner-item {
    width: calc(384 / var(--pc-size) * var(--vw));
  }
}
@media (min-width: 1200px) and (max-width: 1400px) {
  .anniversary__inner-item {
    width: calc(408 / var(--pc-size) * var(--vw));
  }
}
.anniversary__detail {
  position: relative;
  width: calc(830 / var(--pc-size) * var(--vw));
  margin-inline: auto;
  margin-block-end: calc(20 / var(--pc-size) * var(--vw));
}
@media (max-width: 480px) {
  .anniversary__detail {
    width: 96vw;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  .anniversary__detail {
    width: 58vw;
  }
}
@media (min-width: 1200px) and (max-width: 1400px) {
  .anniversary__detail {
    width: calc(705.5 / var(--pc-size) * var(--vw));
  }
}
.anniversary__detail img {
  position: relative;
  z-index: 0;
}
.anniversary__item-description {
  font-weight: 700;
  z-index: 10;
  font-size: calc(19 / var(--pc-size) * var(--vw));
  background: linear-gradient(0deg, rgb(255, 255, 255) 0%, rgb(181, 181, 181) 50%, rgb(255, 255, 255) 100%);
  text-align: center;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  position: absolute;
  width: 100%;
  left: 0;
  line-height: 1.4;
  bottom: calc(22 / var(--pc-size) * var(--vw));
}
@media (max-width: 480px) {
  .anniversary__item-description {
    font-size: 2.4vw;
    bottom: 1.4vw;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  .anniversary__item-description {
    font-size: 1.2vw;
    bottom: 0.4vw;
  }
}
@media (min-width: 768px) and (max-width: 992px) and (orientation: portrait) {
  .anniversary__item-description {
    bottom: calc(12 / var(--pc-size) * var(--vw));
    font-size: calc(16 / var(--pc-size) * var(--vw));
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  .anniversary__item-description {
    bottom: calc(12 / var(--pc-size) * var(--vw));
  }
}
@media (min-width: 1200px) and (max-width: 1400px) {
  .anniversary__item-description {
    bottom: calc(12 / var(--pc-size) * var(--vw));
  }
}
.anniversary__detail-text {
  position: absolute;
  z-index: 10;
  width: 100%;
  left: 0;
  top: 50%;
  transform: translate3d(0, -36%, 0);
}
.anniversary__detail-text p {
  font-weight: 700;
  width: 100%;
  font-size: calc(20 / var(--pc-size) * var(--vw));
  background: linear-gradient(0deg, rgb(217, 164, 56) 0%, rgb(162, 127, 26) 50%, rgb(217, 164, 56) 100%);
  text-align: center;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0px -0.05px 0 rgba(255, 232, 25, 0.5));
}
.anniversary__detail-text p strong {
  background: linear-gradient(0deg, rgb(255, 255, 255) 0%, rgb(181, 181, 181) 50%, rgb(255, 255, 255) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0px -0.05px 0 rgba(255, 255, 255, 0.2));
}
@media (max-width: 480px) {
  .anniversary__detail-text p {
    font-size: 2.4vw;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  .anniversary__detail-text p {
    font-size: 1.5vw;
  }
}
@media (min-width: 1200px) and (max-width: 1400px) {
  .anniversary__detail-text p {
    font-size: calc(18 / var(--pc-size) * var(--vw));
  }
}
@keyframes fadeInOut {
  0% {
    opacity: 0.5;
    transform: translate3d(-50%, -50%, 0) scale(1);
  }
  100% {
    opacity: 1;
    transform: translate3d(-50%, -50%, 0) scale(1.1);
  }
}
.ranking__btn-link {
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  font-size: calc(26 / var(--pc-size) * var(--vw));
  color: #3b2619;
  display: block;
  padding-block-start: calc(6 / var(--pc-size) * var(--vw));
  width: calc(440 / var(--pc-size) * var(--vw));
  height: calc(72 / var(--pc-size) * var(--vw));
  background: transparent url("../png/common-btn-bg-sm@3x.png") no-repeat center/cover;
  transition: scale 0.3s ease-in-out;
}
@media (max-width: 480px) {
  .ranking__btn-link {
    width: 90vw;
    height: auto;
    aspect-ratio: 440/72;
    font-size: 3vw;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  .ranking__btn-link {
    width: 40vw;
    height: auto;
    aspect-ratio: 440/72;
    font-size: 2.4vw;
  }
}
@media (min-width: 768px) and (max-width: 992px) and (orientation: portrait) {
  .ranking__btn-link {
    font-size: calc(34 / var(--pc-size) * var(--vw));
    width: calc(572 / var(--pc-size) * var(--vw));
    height: calc(93.6 / var(--pc-size) * var(--vw));
  }
}
@media (min-width: 1200px) and (max-width: 1400px) {
  .ranking__btn-link {
    font-size: calc(24 / var(--pc-size) * var(--vw));
    width: calc(374 / var(--pc-size) * var(--vw));
    height: calc(61.2 / var(--pc-size) * var(--vw));
  }
}
@media screen and (hover: hover) {
  .ranking__btn-link:hover {
    scale: 1.05;
  }
}
.ranking {
  height: 100dvh;
  height: calc(var(--vh, 1vh) * 100);
  background: #000 url("../jpg/ranking-bg.jpg") no-repeat center/cover;
  position: relative;
  overflow: hidden;
}
@media (max-width: 480px) {
  .ranking {
    background-image: url("../jpg/ranking-bg-m.jpg");
    background-position: center bottom;
    background-size: auto 100%;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  .ranking {
    background-image: url("../jpg/ranking-bg-m.jpg");
    background-position: center bottom;
    background-size: 147% auto;
  }
}
@media (min-width: 768px) and (max-width: 992px) and (orientation: portrait) {
  .ranking {
    background-image: url("../jpg/ranking-bg-m.jpg");
    background-position: center bottom;
    background-size: 147% auto;
  }
}
.ranking__content {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  transform: translate3d(-50%, -60%, 0);
  z-index: 10;
}
@media (max-width: 480px) {
  .ranking__content {
    transform: translate3d(-50%, -53%, 0);
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  .ranking__content {
    transform: translate3d(-50%, -60%, 0);
  }
}
@media (min-width: 768px) and (max-width: 992px) and (orientation: portrait) {
  .ranking__content {
    transform: translate3d(-50%, -70%, 0);
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  .ranking__content {
    transform: translate3d(-50%, -55%, 0);
  }
}
.ranking__sub-title {
  width: calc(510 / var(--pc-size) * var(--vw));
  margin-inline: auto;
  position: relative;
}
@media (max-width: 480px) {
  .ranking__sub-title {
    width: 75vw;
    margin-bottom: 2vw;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  .ranking__sub-title {
    width: 40vw;
    margin-bottom: 0.5vw;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .ranking__sub-title {
    width: calc(663 / var(--pc-size) * var(--vw));
  }
}
@media (min-width: 768px) and (max-width: 992px) and (orientation: portrait) {
  .ranking__sub-title {
    width: calc(816 / var(--pc-size) * var(--vw));
  }
}
@media (min-width: 1200px) and (max-width: 1400px) {
  .ranking__sub-title {
    width: calc(433.5 / var(--pc-size) * var(--vw));
  }
}
.ranking__main-title {
  width: calc(855 / var(--pc-size) * var(--vw));
  position: relative;
  margin-inline: auto;
  position: relative;
  margin-bottom: calc(10 / var(--pc-size) * var(--vw));
}
@media (max-width: 480px) {
  .ranking__main-title {
    width: 98vw;
    margin-bottom: 2vw;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  .ranking__main-title {
    width: 54vw;
    margin-bottom: 1vw;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .ranking__main-title {
    width: calc(1111.5 / var(--pc-size) * var(--vw));
  }
}
@media (min-width: 768px) and (max-width: 992px) and (orientation: portrait) {
  .ranking__main-title {
    width: calc(1282.5 / var(--pc-size) * var(--vw));
  }
}
@media (min-width: 1200px) and (max-width: 1400px) {
  .ranking__main-title {
    width: calc(726.75 / var(--pc-size) * var(--vw));
  }
}
.ranking__glow {
  max-width: initial;
  width: calc(1000 / var(--pc-size) * var(--vw));
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate3d(-46%, -50%, 0);
  mix-blend-mode: screen;
}
@media (max-width: 480px) {
  .ranking__glow {
    width: 110vw;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  .ranking__glow {
    width: 62vw;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .ranking__glow {
    width: calc(1300 / var(--pc-size) * var(--vw));
  }
}
@media (min-width: 768px) and (max-width: 992px) and (orientation: portrait) {
  .ranking__glow {
    width: calc(1500 / var(--pc-size) * var(--vw));
  }
}
@media (min-width: 1200px) and (max-width: 1400px) {
  .ranking__glow {
    width: calc(850 / var(--pc-size) * var(--vw));
  }
}
.ranking__date {
  width: calc(640 / var(--pc-size) * var(--vw));
  position: relative;
  margin-inline: auto;
  position: relative;
  margin-bottom: calc(20 / var(--pc-size) * var(--vw));
}
@media (max-width: 480px) {
  .ranking__date {
    width: 95vw;
    margin-bottom: 2vw;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  .ranking__date {
    width: 60vw;
    margin-bottom: 1vw;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .ranking__date {
    width: calc(832 / var(--pc-size) * var(--vw));
  }
}
@media (min-width: 768px) and (max-width: 992px) and (orientation: portrait) {
  .ranking__date {
    width: calc(960 / var(--pc-size) * var(--vw));
    margin-bottom: calc(60 / var(--pc-size) * var(--vw));
  }
}
@media (min-width: 1200px) and (max-width: 1400px) {
  .ranking__date {
    width: calc(544 / var(--pc-size) * var(--vw));
  }
}
.ranking__detail {
  width: calc(815 / var(--pc-size) * var(--vw));
  position: relative;
  margin-inline: auto;
}
@media (max-width: 480px) {
  .ranking__detail {
    width: 88vw;
    margin-block-end: 8vw;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  .ranking__detail {
    width: 44vw;
    margin-block-end: 2vw;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .ranking__detail {
    width: calc(1059.5 / var(--pc-size) * var(--vw));
  }
}
@media (min-width: 768px) and (max-width: 992px) and (orientation: portrait) {
  .ranking__detail {
    width: calc(1222.5 / var(--pc-size) * var(--vw));
    margin-block-end: calc(40 / var(--pc-size) * var(--vw));
  }
}
@media (min-width: 1200px) and (max-width: 1400px) {
  .ranking__detail {
    width: calc(692.75 / var(--pc-size) * var(--vw));
  }
}
.ranking__nav {
  display: flex;
  justify-content: center;
}
.ranking__btn-link:nth-child(2) {
  text-indent: calc(20 / var(--pc-size) * var(--vw));
}
@media (max-width: 480px) {
  .ranking__btn-link:nth-child(2) {
    text-indent: 3vw;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  .ranking__btn-link:nth-child(2) {
    text-indent: 2vw;
  }
}
.ranking__cht {
  width: calc(1770 / var(--pc-size) * var(--vw));
  position: absolute;
  z-index: 0;
  left: 50%;
  bottom: 0;
  transform: translate3d(-52.2%, 0, 0);
}
@media (max-width: 480px) {
  .ranking__cht {
    width: 100vw;
    transform: translate3d(-50%, 0, 0);
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  .ranking__cht {
    width: 100vw;
    transform: translate3d(-50%, 15%, 0);
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .ranking__cht {
    width: calc(2301 / var(--pc-size) * var(--vw));
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  .ranking__cht {
    width: calc(1593 / var(--pc-size) * var(--vw));
    transform: translate3d(-52.2%, 12%, 0);
  }
}
.game {
  height: 100dvh;
  height: calc(var(--vh, 1vh) * 100);
  background: #000 url("../jpg/game-bg.jpg") no-repeat center/cover;
  position: relative;
  overflow: hidden;
}
@media (max-width: 480px) {
  .game {
    background-image: url("../jpg/game-bg-m.jpg");
    background-position: center top;
    background-size: auto 100%;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  .game {
    background-image: url("../jpg/game-bg-m.jpg");
    background-position: center top;
    background-size: 144% auto;
  }
}
@media (min-width: 768px) and (max-width: 992px) and (orientation: portrait) {
  .game {
    background-image: url("../jpg/game-bg-m.jpg");
    background-position: center top;
    background-size: 144% auto;
  }
}
.game__content {
  width: 100%;
  left: 50%;
  transform: translate3d(-50%, -300%, 0);
  position: absolute;
  z-index: 10;
  bottom: 0;
}
@media (max-width: 480px) {
  .game__content {
    transform: translate3d(-50%, -400%, 0);
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  .game__content {
    transform: translate3d(-50%, -280%, 0);
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .game__content {
    transform: translate3d(-50%, -350%, 0);
  }
}
@media (min-width: 768px) and (max-width: 992px) and (orientation: portrait) {
  .game__content {
    transform: translate3d(-50%, -335%, 0);
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  .game__content {
    transform: translate3d(-50%, -260%, 0);
  }
}
.game__sub-title {
  width: calc(510 / var(--pc-size) * var(--vw));
  margin-inline: auto;
  position: relative;
}
@media (max-width: 480px) {
  .game__sub-title {
    width: 83vw;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  .game__sub-title {
    width: 60vw;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .game__sub-title {
    width: calc(663 / var(--pc-size) * var(--vw));
  }
}
@media (min-width: 768px) and (max-width: 992px) and (orientation: portrait) {
  .game__sub-title {
    width: calc(918 / var(--pc-size) * var(--vw));
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  .game__sub-title {
    width: calc(510 / var(--pc-size) * var(--vw));
  }
}
@media (min-width: 1200px) and (max-width: 1400px) {
  .game__sub-title {
    width: calc(433.5 / var(--pc-size) * var(--vw));
  }
}
.game__main-title {
  width: calc(532 / var(--pc-size) * var(--vw));
  position: relative;
  margin-inline: auto;
  margin-block-end: calc(10 / var(--pc-size) * var(--vw));
  z-index: 10;
}
@media (max-width: 480px) {
  .game__main-title {
    width: 70vw;
    margin-block-end: 4vw;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  .game__main-title {
    width: 50vw;
    margin-block-end: 2vw;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .game__main-title {
    width: calc(744.8 / var(--pc-size) * var(--vw));
  }
}
@media (min-width: 768px) and (max-width: 992px) and (orientation: portrait) {
  .game__main-title {
    width: calc(957.6 / var(--pc-size) * var(--vw));
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  .game__main-title {
    width: calc(532 / var(--pc-size) * var(--vw));
  }
}
@media (min-width: 1200px) and (max-width: 1400px) {
  .game__main-title {
    width: calc(452.2 / var(--pc-size) * var(--vw));
  }
}
.game__glow {
  max-width: initial;
  width: calc(680 / var(--pc-size) * var(--vw));
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate3d(-46%, -50%, 0);
  mix-blend-mode: screen;
}
@media (max-width: 480px) {
  .game__glow {
    width: 88vw;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  .game__glow {
    width: 62vw;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .game__glow {
    width: calc(952 / var(--pc-size) * var(--vw));
  }
}
@media (min-width: 768px) and (max-width: 992px) and (orientation: portrait) {
  .game__glow {
    width: calc(1156 / var(--pc-size) * var(--vw));
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  .game__glow {
    width: calc(612 / var(--pc-size) * var(--vw));
  }
}
@media (min-width: 1200px) and (max-width: 1400px) {
  .game__glow {
    width: calc(578 / var(--pc-size) * var(--vw));
  }
}
.game__date {
  width: calc(510 / var(--pc-size) * var(--vw));
  position: relative;
  margin-inline: auto;
  z-index: 10;
}
@media (max-width: 480px) {
  .game__date {
    width: 80vw;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  .game__date {
    width: 62vw;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .game__date {
    width: calc(714 / var(--pc-size) * var(--vw));
  }
}
@media (min-width: 768px) and (max-width: 992px) and (orientation: portrait) {
  .game__date {
    width: calc(867 / var(--pc-size) * var(--vw));
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  .game__date {
    width: calc(612 / var(--pc-size) * var(--vw));
  }
}
@media (min-width: 1200px) and (max-width: 1400px) {
  .game__date {
    width: calc(433.5 / var(--pc-size) * var(--vw));
  }
}
.game__cht {
  width: calc(1645 / var(--pc-size) * var(--vw));
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate3d(-53.5%, 0, 0);
  z-index: 5;
  pointer-events: none;
}
@media (max-width: 480px) {
  .game__cht {
    width: 143vw;
    transform: translate3d(-44%, 5%, 0);
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  .game__cht {
    width: 90vw;
    transform: translate3d(-44%, 20%, 0);
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .game__cht {
    transform: translate3d(-53.5%, -20%, 0);
    width: calc(2303 / var(--pc-size) * var(--vw));
  }
}
@media (min-width: 768px) and (max-width: 992px) and (orientation: portrait) {
  .game__cht {
    transform: translate3d(-53.5%, -50%, 0);
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  .game__cht {
    width: calc(2138.5 / var(--pc-size) * var(--vw));
  }
}
@media (min-width: 1200px) and (max-width: 1400px) {
  .game__cht {
    width: calc(1398.25 / var(--pc-size) * var(--vw));
  }
}
.game__remind-text {
  font-size: calc(10 / var(--pc-size) * var(--vw));
  color: #b5b1a8;
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  text-align: center;
  text-shadow: 0px 2px 2px rgb(0, 0, 0);
  transform: translate3d(0, -100%, 0);
  z-index: 10;
}
.game__remind-text p:nth-child(1) {
  margin-bottom: calc(10 / var(--pc-size) * var(--vw));
}
@media (max-width: 480px) {
  .game__remind-text {
    transform: translate3d(0, -50%, 0);
    font-size: 1.8vw;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  .game__remind-text {
    transform: translate3d(0, -50%, 0);
    font-size: 1.4vw;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .game__remind-text {
    transform: translate3d(0, -400%, 0);
  }
}
@media (min-width: 768px) and (max-width: 992px) and (orientation: portrait) {
  .game__remind-text {
    transform: translate3d(0, -700%, 0);
  }
}
.game__start {
  width: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate3d(-50%, 38%, 0);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease-in-out;
}
.game__start.active {
  opacity: 1;
  pointer-events: auto;
}
@media (max-width: 480px) {
  .game__start {
    transform: translate3d(-50%, 100%, 0);
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  .game__start {
    transform: translate3d(-50%, 84%, 0);
  }
}
@media (min-width: 768px) and (max-width: 992px) and (orientation: portrait) {
  .game__start {
    transform: translate3d(-50%, 50%, 0);
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  .game__start {
    transform: translate3d(-50%, 40%, 0);
  }
}
.game__start-gift {
  width: calc(600 / var(--pc-size) * var(--vw));
  transform: translate3d(-5%, 0, 0);
  margin-inline: auto;
  margin-block-end: calc(20 / var(--pc-size) * var(--vw));
}
@media (max-width: 480px) {
  .game__start-gift {
    width: 80vw;
    margin-block-end: 6vw;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  .game__start-gift {
    width: 50vw;
    margin-block-end: 2vw;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .game__start-gift {
    width: calc(840 / var(--pc-size) * var(--vw));
  }
}
@media (min-width: 768px) and (max-width: 992px) and (orientation: portrait) {
  .game__start-gift {
    width: calc(960 / var(--pc-size) * var(--vw));
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  .game__start-gift {
    width: calc(540 / var(--pc-size) * var(--vw));
  }
}
@media (min-width: 1200px) and (max-width: 1400px) {
  .game__start-gift {
    width: calc(510 / var(--pc-size) * var(--vw));
  }
}
.game__btn-start {
  position: relative;
  display: flex;
  width: calc(428.8 / var(--pc-size) * var(--vw));
  height: calc(84.8 / var(--pc-size) * var(--vw));
  margin-inline: auto;
  background: transparent url("../png/game-btn-start.png") no-repeat center top;
  background-size: 100% auto;
  font-weight: 900;
  font-size: calc(28.8 / var(--pc-size) * var(--vw));
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.game__btn-start::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: transparent url("../png/game-btn-start.png") no-repeat center bottom;
  background-size: 100% auto;
  content: "";
  opacity: 0;
  z-index: 5;
  transition: opacity 0.3s ease-in-out;
}
.game__btn-start span {
  position: relative;
  z-index: 10;
  color: #241102;
  text-shadow: 0 0 4px #fbe7c7;
  transition: all 0.3s ease-in-out;
}
@media screen and (hover: hover) {
  .game__btn-start:hover::after {
    opacity: 1;
  }
  .game__btn-start:hover span {
    color: #f1cbac;
    text-shadow: 0 0 4px #442e0b;
  }
}
@media (max-width: 480px) {
  .game__btn-start {
    width: 70vw;
    height: auto;
    aspect-ratio: 536/106;
    font-size: 4vw;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  .game__btn-start {
    width: 34vw;
    height: auto;
    aspect-ratio: 536/106;
    font-size: 2.6vw;
  }
}
@media (min-width: 1200px) and (max-width: 1400px) {
  .game__btn-start {
    width: calc(375.2 / var(--pc-size) * var(--vw));
    height: calc(74.2 / var(--pc-size) * var(--vw));
    font-size: calc(25.6 / var(--pc-size) * var(--vw));
  }
}
.game__prize {
  width: calc(740 / var(--pc-size) * var(--vw));
  position: absolute;
  left: 50%;
  top: 50%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  transform: translate3d(-50%, 30%, 0);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease-in-out;
}
.game__prize.active {
  opacity: 1;
  pointer-events: auto;
}
@media (max-width: 480px) {
  .game__prize {
    width: 100vw;
    transform: translate3d(-50%, 100%, 0);
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  .game__prize {
    width: 60vw;
    transform: translate3d(-50%, 80%, 0);
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .game__prize {
    transform: translate3d(-50%, 40%, 0);
  }
}
@media (min-width: 768px) and (max-width: 992px) and (orientation: portrait) {
  .game__prize {
    width: 59vw;
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  .game__prize {
    width: 50vw;
    transform: translate3d(-50%, 35%, 0);
  }
}
@media (min-width: 1200px) and (max-width: 1400px) {
  .game__prize {
    width: calc(629 / var(--pc-size) * var(--vw));
  }
}
.game__prize-item {
  cursor: pointer;
  width: calc(220 / var(--pc-size) * var(--vw));
  height: calc(220 / var(--pc-size) * var(--vw));
  background: transparent url("../png/game-btn-prize@2x.png") no-repeat center top;
  background-size: 100% auto;
  position: relative;
  margin-inline: calc(-10 / var(--pc-size) * var(--vw));
}
.game__prize-item::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: transparent url("../png/game-btn-prize@2x.png") no-repeat center bottom;
  background-size: 100% auto;
  opacity: 0;
  z-index: 0;
  transition: opacity 0.3s ease-in-out;
}
@media (max-width: 480px) {
  .game__prize-item {
    width: 30vw;
    height: auto;
    aspect-ratio: 1/1;
    margin-inline: -1vw;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  .game__prize-item {
    width: 18vw;
    height: auto;
    aspect-ratio: 1/1;
    margin-inline: -1vw;
  }
}
@media (min-width: 768px) and (max-width: 992px) and (orientation: portrait) {
  .game__prize-item {
    width: calc(286 / var(--pc-size) * var(--vw));
    height: calc(286 / var(--pc-size) * var(--vw));
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  .game__prize-item {
    width: calc(198 / var(--pc-size) * var(--vw));
    height: calc(198 / var(--pc-size) * var(--vw));
  }
}
@media (min-width: 1200px) and (max-width: 1400px) {
  .game__prize-item {
    width: calc(187 / var(--pc-size) * var(--vw));
    height: calc(187 / var(--pc-size) * var(--vw));
  }
}
.game__prize-item h3 {
  pointer-events: none;
  text-shadow: 0 0 4px #fbe7c7;
  z-index: 10;
  line-height: 1.1;
  text-align: center;
  position: absolute;
  width: 100%;
  left: 0;
  bottom: calc(20 / var(--pc-size) * var(--vw));
  font-size: calc(17 / var(--pc-size) * var(--vw));
  color: #241102;
  transition: all 0.3s ease-in-out;
}
.game__prize-item h3 strong {
  transition: all 0.3s ease-in-out;
  display: block;
  color: #69220c;
}
@media (max-width: 480px) {
  .game__prize-item h3 {
    bottom: 4.2vw;
    font-size: 2.6vw;
  }
  .game__prize-item h3 span {
    display: none;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  .game__prize-item h3 {
    bottom: 2.6vw;
    font-size: 1.6vw;
  }
  .game__prize-item h3 span {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .game__prize-item h3 {
    font-size: 1.6vw;
    bottom: 2vw;
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  .game__prize-item h3 {
    bottom: calc(16 / var(--pc-size) * var(--vw));
    font-size: calc(17 / var(--pc-size) * var(--vw));
  }
}
@media (min-width: 1200px) and (max-width: 1400px) {
  .game__prize-item h3 {
    bottom: calc(12 / var(--pc-size) * var(--vw));
    font-size: calc(16 / var(--pc-size) * var(--vw));
  }
}
.game__prize-item:hover::after {
  opacity: 1;
}
.game__prize-item:hover h3 {
  text-shadow: 0 0 4px #442e0b;
  color: #f1cbac;
}
.game__prize-item:hover h3 strong {
  color: #f1cbac;
}
.co-branding__btn-link {
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  font-size: calc(26 / var(--pc-size) * var(--vw));
  color: #3b2619;
  display: block;
  padding-block-start: calc(6 / var(--pc-size) * var(--vw));
  width: calc(440 / var(--pc-size) * var(--vw));
  height: calc(72 / var(--pc-size) * var(--vw));
  background: transparent url("../png/common-btn-bg-sm@3x.png") no-repeat center/cover;
  transition: scale 0.3s ease-in-out;
}
@media (max-width: 480px) {
  .co-branding__btn-link {
    width: 90vw;
    height: auto;
    aspect-ratio: 440/72;
    font-size: 3vw;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  .co-branding__btn-link {
    width: 40vw;
    height: auto;
    aspect-ratio: 440/72;
    font-size: 2.4vw;
  }
}
@media (min-width: 768px) and (max-width: 992px) and (orientation: portrait) {
  .co-branding__btn-link {
    font-size: calc(34 / var(--pc-size) * var(--vw));
    width: calc(572 / var(--pc-size) * var(--vw));
    height: calc(93.6 / var(--pc-size) * var(--vw));
  }
}
@media (min-width: 1200px) and (max-width: 1400px) {
  .co-branding__btn-link {
    font-size: calc(24 / var(--pc-size) * var(--vw));
    width: calc(374 / var(--pc-size) * var(--vw));
    height: calc(61.2 / var(--pc-size) * var(--vw));
  }
}
@media screen and (hover: hover) {
  .co-branding__btn-link:hover {
    scale: 1.05;
  }
}
.co-branding {
  height: 100dvh;
  height: calc(var(--vh, 1vh) * 100);
  background: #000 url("../jpg/co-branding-bg.jpg") no-repeat center/cover;
  position: relative;
  overflow: hidden;
}
@media (max-width: 480px) {
  .co-branding {
    background-image: url("../jpg/co-branding-bg-m.jpg");
    background-position: center top;
    background-size: auto 100%;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  .co-branding {
    background-image: url("../jpg/co-branding-bg-m.jpg");
    background-position: center top;
    background-size: 147% auto;
  }
}
@media (min-width: 768px) and (max-width: 992px) and (orientation: portrait) {
  .co-branding {
    background-image: url("../jpg/co-branding-bg-m.jpg");
    background-position: center top;
    background-size: 147% auto;
  }
}
.co-branding__content {
  width: 100%;
  left: 50%;
  top: 50%;
  transform: translate3d(-50%, -167%, 0);
  position: absolute;
  z-index: 10;
}
@media (max-width: 480px) {
  .co-branding__content {
    transform: translate3d(-50%, -440%, 0);
    top: inherit;
    bottom: 0;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  .co-branding__content {
    transform: translate3d(-50%, -270%, 0);
    top: inherit;
    bottom: 0;
  }
}
@media (min-width: 768px) and (max-width: 992px) and (orientation: portrait) {
  .co-branding__content {
    transform: translate3d(-50%, -350%, 0);
    top: inherit;
    bottom: 0;
  }
}
.co-branding__sub-title {
  width: calc(510 / var(--pc-size) * var(--vw));
  margin-inline: auto;
  position: relative;
}
@media (max-width: 480px) {
  .co-branding__sub-title {
    width: 75vw;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  .co-branding__sub-title {
    width: 58vw;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .co-branding__sub-title {
    width: calc(663 / var(--pc-size) * var(--vw));
  }
}
@media (min-width: 768px) and (max-width: 992px) and (orientation: portrait) {
  .co-branding__sub-title {
    width: calc(918 / var(--pc-size) * var(--vw));
  }
}
@media (min-width: 1200px) and (max-width: 1400px) {
  .co-branding__sub-title {
    width: calc(433.5 / var(--pc-size) * var(--vw));
  }
}
.co-branding__main-title {
  width: calc(540 / var(--pc-size) * var(--vw));
  position: relative;
  margin-inline: auto;
  margin-block-end: calc(20 / var(--pc-size) * var(--vw));
  z-index: 10;
}
@media (max-width: 480px) {
  .co-branding__main-title {
    width: 73vw;
    margin-block-end: 2vw;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  .co-branding__main-title {
    width: 55vw;
    margin-block-end: 1vw;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .co-branding__main-title {
    width: calc(702 / var(--pc-size) * var(--vw));
  }
}
@media (min-width: 768px) and (max-width: 992px) and (orientation: portrait) {
  .co-branding__main-title {
    width: calc(972 / var(--pc-size) * var(--vw));
  }
}
@media (min-width: 1200px) and (max-width: 1400px) {
  .co-branding__main-title {
    width: calc(459 / var(--pc-size) * var(--vw));
  }
}
.co-branding__glow {
  max-width: initial;
  width: calc(380 / var(--pc-size) * var(--vw));
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate3d(-85%, -38%, 0);
  mix-blend-mode: screen;
}
@media (max-width: 480px) {
  .co-branding__glow {
    width: 50vw;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  .co-branding__glow {
    width: 38vw;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .co-branding__glow {
    width: calc(494 / var(--pc-size) * var(--vw));
  }
}
@media (min-width: 768px) and (max-width: 992px) and (orientation: portrait) {
  .co-branding__glow {
    width: calc(684 / var(--pc-size) * var(--vw));
  }
}
@media (min-width: 1200px) and (max-width: 1400px) {
  .co-branding__glow {
    width: calc(323 / var(--pc-size) * var(--vw));
  }
}
.co-branding__date {
  width: calc(470 / var(--pc-size) * var(--vw));
  position: relative;
  margin-inline: auto;
  z-index: 10;
}
@media (max-width: 480px) {
  .co-branding__date {
    width: 78vw;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  .co-branding__date {
    width: 60vw;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .co-branding__date {
    width: calc(611 / var(--pc-size) * var(--vw));
  }
}
@media (min-width: 768px) and (max-width: 992px) and (orientation: portrait) {
  .co-branding__date {
    width: calc(846 / var(--pc-size) * var(--vw));
  }
}
@media (min-width: 1200px) and (max-width: 1400px) {
  .co-branding__date {
    width: calc(399.5 / var(--pc-size) * var(--vw));
  }
}
.co-branding__item {
  width: calc(860 / var(--pc-size) * var(--vw));
  position: absolute;
  margin-inline: auto;
  left: 50%;
  top: 50%;
  transform: translate3d(-50%, -4%, 0);
  z-index: 0;
}
@media (max-width: 480px) {
  .co-branding__item {
    width: 130vw;
    transform: translate3d(-51%, 41%, 0);
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  .co-branding__item {
    width: 94vw;
    transform: translate3d(-51%, -5%, 0);
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .co-branding__item {
    width: calc(1118 / var(--pc-size) * var(--vw));
  }
}
@media (min-width: 768px) and (max-width: 992px) and (orientation: portrait) {
  .co-branding__item {
    width: calc(1376 / var(--pc-size) * var(--vw));
    transform: translate3d(-50%, 34%, 0);
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  .co-branding__item {
    width: calc(946 / var(--pc-size) * var(--vw));
  }
}
@media (min-width: 1200px) and (max-width: 1400px) {
  .co-branding__item {
    width: calc(731 / var(--pc-size) * var(--vw));
  }
}
.co-branding__cht-1 {
  width: calc(650 / var(--pc-size) * var(--vw));
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate3d(-133.5%, 0, 0);
  z-index: 20;
}
@media (max-width: 480px) {
  .co-branding__cht-1 {
    width: 82vw;
    transform: translate3d(-49%, -18%, 0);
    z-index: 5;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  .co-branding__cht-1 {
    width: 40vw;
    transform: translate3d(-150%, 10%, 0);
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .co-branding__cht-1 {
    width: calc(715 / var(--pc-size) * var(--vw));
  }
}
@media (min-width: 768px) and (max-width: 992px) and (orientation: portrait) {
  .co-branding__cht-1 {
    width: calc(650 / var(--pc-size) * var(--vw));
    transform: translate3d(-50%, -55%, 0);
    z-index: 5;
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  .co-branding__cht-1 {
    transform: translate3d(-133.5%, 0, 0);
  }
}
.co-branding__cht-2 {
  width: calc(495 / var(--pc-size) * var(--vw));
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate3d(32%, 1%, 0);
  z-index: 20;
}
@media (max-width: 480px) {
  .co-branding__cht-2 {
    display: none;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  .co-branding__cht-2 {
    width: 30vw;
    transform: translate3d(60%, 6%, 0);
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .co-branding__cht-2 {
    width: calc(544.5 / var(--pc-size) * var(--vw));
    transform: translate3d(35%, 0, 0);
  }
}
@media (min-width: 768px) and (max-width: 992px) and (orientation: portrait) {
  .co-branding__cht-2 {
    display: none;
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  .co-branding__cht-2 {
    transform: translate3d(50%, 1%, 0);
  }
}
.co-branding__nav {
  display: flex;
  justify-content: center;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate3d(-50%, 770%, 0);
}
@media (max-width: 480px) {
  .co-branding__nav {
    transform: translate3d(-50%, 1100%, 0);
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  .co-branding__nav {
    transform: translate3d(-50%, 880%, 0);
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .co-branding__nav {
    transform: translate3d(-50%, 900%, 0);
  }
}
@media (min-width: 768px) and (max-width: 992px) and (orientation: portrait) {
  .co-branding__nav {
    transform: translate3d(-50%, 1250%, 0);
  }
}
@media (min-width: 1200px) and (max-width: 1400px) {
  .co-branding__nav {
    transform: translate3d(-50%, 650%, 0);
  }
}
@media (max-width: 480px) {
  .co-branding__btn-link {
    width: 70vw;
    font-size: 5vw;
    position: relative;
    transform: translate3d(0, 0, 0);
  }
}