@charset "UTF-8";
/* ---------------------------------------------------
resset
---------------------------------------------------- */
*, *::before, *::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
  vertical-align: bottom;
}

body, html {
  padding: 0;
  margin: 0;
}

h1, h2, h3, h4, p, figure, picture, blockquote, ul, li, dl, dd {
  margin: 0;
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4 { /*text-wrap:balance;*/
  text-align: left;
}

i, s {
  font-style: normal;
}

a:not([class]) {
  color: currentColor;
}

img, figure, picture {
  display: block;
  max-width: 100%;
  height: auto;
  margin-inline: auto;
}

input, button, textarea, select {
  font: inherit;
}

textarea:not([rows]) {
  min-height: 10em;
}

:target {
  scroll-margin-block: 5ex;
}

button {
  all: unset;
  display: revert;
}

table {
  border-collapse: collapse;
}

textarea {
  white-space: revert;
}

/*-------------------------------------------
config
-------------------------------------------*/
/* color */
/* width */
/*-------------------------------------------
font
-------------------------------------------*/
/*
font-family: "ryo-gothic-plusn", sans-serif;
font-weight: 400;
font-style: normal;

font-family: "ryo-gothic-plusn", sans-serif;
font-weight: 700;
font-style: normal;

font-family: "Inter", sans-serif;
font-weight: 700;

font-family: "Inter", sans-serif;
font-weight: 900;
*/
/*-------------------------------------------
base
-------------------------------------------*/
html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  text-align: center;
  color: #272727;
  font-size: 16px;
  font-family: "ryo-gothic-plusn", sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1.6;
  letter-spacing: 0.08em;
  -webkit-font-feature-settings: "palt" 1;
          font-feature-settings: "palt" 1;
  -webkit-text-size-adjust: 100%;
}
@media (max-width: 1094px) {
  body {
    overflow-x: hidden;
  }
}
@media (max-width: 768px) {
  body {
    font-size: 15px;
  }
}

.head {
  position: relative;
  text-align: center;
  font-size: 56px;
  font-family: "Inter", sans-serif;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 48px;
}
@media (min-width: 1320px) {
  .head {
    font-size: 56px;
  }
}
@media (max-width: 1320px) {
  .head {
    font-size: clamp(28px, 4.2424242424vw, 56px);
  }
}
@media (max-width: 768px) {
  .head {
    font-size: 28px;
    margin-bottom: 20px;
  }
}

.subHead {
  font-size: 42px;
  font-family: "Inter", sans-serif;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 24px;
  border-bottom: #dcdcdc 1px solid;
  padding-bottom: 22px;
  margin-bottom: 24px;
}
@media (max-width: 1320px) {
  .subHead {
    font-size: clamp(22px, 3.1818181818vw, 42px);
  }
}
@media (max-width: 768px) {
  .subHead {
    font-size: 22px;
    padding-bottom: 16px;
    margin-bottom: 16px;
  }
}

.readText {
  margin-bottom: 36px;
}
@media (max-width: 768px) {
  .readText {
    margin-bottom: 16px;
  }
}
.readText p {
  font-weight: 400;
}
.readText p.bold {
  font-weight: 700;
}
.readText p + p {
  margin-top: 16px;
}
.readText .indent {
  margin-top: 8px;
  font-size: 14px;
  font-weight: 400;
  color: #6A6A6A;
}
@media (max-width: 768px) {
  .readText .indent {
    font-size: 13px;
  }
}

p {
  text-align: left;
}

a {
  opacity: 1;
}

.center {
  text-align: center;
}

.bold {
  font-weight: 700;
}

.btn {
  text-align: center;
}
* + .btn {
  margin-top: 36px;
}
@media (max-width: 560px) {
  * + .btn {
    margin-top: 16px;
  }
}
.btn a, .btn span {
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  color: #272727;
  background: #fff;
  line-height: 1;
  margin: 0 auto 0;
  padding: 8px 32px 8px 16px;
  width: 100%;
  max-width: 303px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border: 1px solid #272727;
  border-radius: 24px;
  height: 48px;
  z-index: 1;
}
@media (max-width: 768px) {
  .btn a, .btn span {
    height: 40px;
    border-radius: 20px;
    font-size: 12px;
  }
}
.btn a::after, .btn span::after {
  position: absolute;
  content: "";
  display: block;
  top: 0;
  right: 24px;
  bottom: 0;
  margin: auto;
  width: 8px;
  height: 8px;
  border-top: 2px solid #272727;
  border-right: 2px solid #272727;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 1;
}
@media (max-width: 768px) {
  .btn a::after, .btn span::after {
    width: 6px;
    height: 6px;
    right: 14px;
  }
}
.btn a:hover, .btn span:hover {
  padding-right: 15px;
  background: #9F9F9F;
  color: #fff;
  border-color: #9F9F9F;
}
@media (max-width: 768px) {
  .btn a:hover, .btn span:hover {
    padding-right: 32px;
  }
}
.btn a:hover::after, .btn span:hover::after {
  border-color: #fff;
}
.btn.black a, .btn.black span {
  background: #272727;
  color: #fff;
  border-color: #272727;
}
.btn.black a::after, .btn.black span::after {
  border-color: #fff;
}
.btn.black a:hover, .btn.black span:hover {
  background: #6c6c6c;
  border-color: #6c6c6c;
}
.btn.ticket a, .btn.ticket span {
  background: #272727;
  color: #fff;
  border-color: #272727;
}
.btn.ticket a::after, .btn.ticket span::after {
  position: absolute;
  content: "";
  right: 18px;
  width: 24px;
  height: 24px;
  -webkit-mask-image: url("../img/icon_gamesche_ticket.svg");
          mask-image: url("../img/icon_gamesche_ticket.svg");
  -webkit-mask-size: 24px 24px;
          mask-size: 24px 24px;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  background: #fff;
  border: none;
  -webkit-transform: none;
          transform: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .btn.ticket a::after, .btn.ticket span::after {
    width: 18px;
    height: 18px;
    -webkit-mask-size: 18px 18px;
            mask-size: 18px 18px;
    right: 8px;
  }
}
.btn.ticket a:hover, .btn.ticket span:hover {
  background: #9F9F9F;
  color: #fff;
  border-color: #9F9F9F;
}
.btn.ticket a:hover::after, .btn.ticket span:hover::after {
  border-color: #fff;
}
.btn.disabled a, .btn.disabled span {
  background: #dcdcdc;
  color: #9F9F9F;
  border-color: #dcdcdc;
  pointer-events: none;
  cursor: default;
  white-space: nowrap;
  padding-inline: 32px;
}
.btn.disabled a::after, .btn.disabled span::after {
  border-color: #dcdcdc;
}
@media (max-width: 768px) {
  .btn.disabled.ticket a, .btn.disabled.ticket span {
    padding-inline: 0px 20px;
  }
}
.btn.disabled.ticket a::after, .btn.disabled.ticket span::after {
  background: #9F9F9F;
}

.link a {
  position: relative;
  display: inline-block;
  color: #272727;
  text-decoration: underline;
  padding-right: 12px;
}
.link a::after {
  position: absolute;
  content: "";
  display: block;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 8px;
  height: 8px;
  border-top: 1px solid #272727;
  border-right: 1px solid #272727;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  line-height: 1;
}
.link a:hover {
  text-decoration: none;
}

.indent {
  margin-left: 1em;
  text-align: left;
}
.indent > li {
  text-indent: -1em;
}
.indent.number {
  margin-left: 1.5em;
}
.indent.number li {
  text-indent: -1.5em;
}

.fadein {
  position: relative;
  top: 40px;
  -webkit-transition: 1s;
  transition: 1s;
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
  opacity: 0;
}
.fadein.visible {
  top: 0;
  opacity: 1;
}

#schedule .scheduleList.fadein,
#ticket .ticketList.fadein,
#events .eventsList.fadein,
#goods .goodsList.fadein {
  top: 0;
  left: 40%;
  opacity: 0;
  -webkit-transition: 1s;
  transition: 1s;
}
#schedule .scheduleList.fadein.initial-load,
#ticket .ticketList.fadein.initial-load,
#events .eventsList.fadein.initial-load,
#goods .goodsList.fadein.initial-load {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}
#schedule .scheduleList.fadein.visible,
#ticket .ticketList.fadein.visible,
#events .eventsList.fadein.visible,
#goods .goodsList.fadein.visible {
  left: 0;
  opacity: 1;
}
#schedule .scheduleList.fadein.visible li,
#ticket .ticketList.fadein.visible li,
#events .eventsList.fadein.visible li,
#goods .goodsList.fadein.visible li {
  position: relative;
  opacity: 0;
  left: 40px;
}
#schedule .scheduleList.fadein.visible li.initial-load:nth-child(1),
#ticket .ticketList.fadein.visible li.initial-load:nth-child(1),
#events .eventsList.fadein.visible li.initial-load:nth-child(1),
#goods .goodsList.fadein.visible li.initial-load:nth-child(1) {
  -webkit-animation: fadeInSlide 0.6s ease 0.2s both;
          animation: fadeInSlide 0.6s ease 0.2s both;
}
#schedule .scheduleList.fadein.visible li.initial-load:nth-child(2),
#ticket .ticketList.fadein.visible li.initial-load:nth-child(2),
#events .eventsList.fadein.visible li.initial-load:nth-child(2),
#goods .goodsList.fadein.visible li.initial-load:nth-child(2) {
  -webkit-animation: fadeInSlide 0.6s ease 0.3s both;
          animation: fadeInSlide 0.6s ease 0.3s both;
}
#schedule .scheduleList.fadein.visible li.initial-load:nth-child(3),
#ticket .ticketList.fadein.visible li.initial-load:nth-child(3),
#events .eventsList.fadein.visible li.initial-load:nth-child(3),
#goods .goodsList.fadein.visible li.initial-load:nth-child(3) {
  -webkit-animation: fadeInSlide 0.6s ease 0.4s both;
          animation: fadeInSlide 0.6s ease 0.4s both;
}
#schedule .scheduleList.fadein.visible li.initial-load:nth-child(4),
#ticket .ticketList.fadein.visible li.initial-load:nth-child(4),
#events .eventsList.fadein.visible li.initial-load:nth-child(4),
#goods .goodsList.fadein.visible li.initial-load:nth-child(4) {
  -webkit-animation: fadeInSlide 0.6s ease 0.5s both;
          animation: fadeInSlide 0.6s ease 0.5s both;
}
#schedule .scheduleList.fadein.visible li.initial-load:nth-child(5),
#ticket .ticketList.fadein.visible li.initial-load:nth-child(5),
#events .eventsList.fadein.visible li.initial-load:nth-child(5),
#goods .goodsList.fadein.visible li.initial-load:nth-child(5) {
  -webkit-animation: fadeInSlide 0.6s ease 0.6s both;
          animation: fadeInSlide 0.6s ease 0.6s both;
}
#schedule .scheduleList.fadein.visible li.initial-load:nth-child(6),
#ticket .ticketList.fadein.visible li.initial-load:nth-child(6),
#events .eventsList.fadein.visible li.initial-load:nth-child(6),
#goods .goodsList.fadein.visible li.initial-load:nth-child(6) {
  -webkit-animation: fadeInSlide 0.6s ease 0.7s both;
          animation: fadeInSlide 0.6s ease 0.7s both;
}
#schedule .scheduleList.fadein.visible li.initial-load:nth-child(7),
#ticket .ticketList.fadein.visible li.initial-load:nth-child(7),
#events .eventsList.fadein.visible li.initial-load:nth-child(7),
#goods .goodsList.fadein.visible li.initial-load:nth-child(7) {
  -webkit-animation: fadeInSlide 0.6s ease 0.8s both;
          animation: fadeInSlide 0.6s ease 0.8s both;
}
#schedule .scheduleList.fadein.visible li.initial-load:nth-child(8),
#ticket .ticketList.fadein.visible li.initial-load:nth-child(8),
#events .eventsList.fadein.visible li.initial-load:nth-child(8),
#goods .goodsList.fadein.visible li.initial-load:nth-child(8) {
  -webkit-animation: fadeInSlide 0.6s ease 0.9s both;
          animation: fadeInSlide 0.6s ease 0.9s both;
}
#schedule .scheduleList.fadein.visible li.initial-load:nth-child(9),
#ticket .ticketList.fadein.visible li.initial-load:nth-child(9),
#events .eventsList.fadein.visible li.initial-load:nth-child(9),
#goods .goodsList.fadein.visible li.initial-load:nth-child(9) {
  -webkit-animation: fadeInSlide 0.6s ease 1s both;
          animation: fadeInSlide 0.6s ease 1s both;
}
#schedule .scheduleList.fadein.visible li.initial-load:nth-child(10),
#ticket .ticketList.fadein.visible li.initial-load:nth-child(10),
#events .eventsList.fadein.visible li.initial-load:nth-child(10),
#goods .goodsList.fadein.visible li.initial-load:nth-child(10) {
  -webkit-animation: fadeInSlide 0.6s ease 1.1s both;
          animation: fadeInSlide 0.6s ease 1.1s both;
}
#schedule .scheduleList.fadein.visible li:not(.initial-load),
#ticket .ticketList.fadein.visible li:not(.initial-load),
#events .eventsList.fadein.visible li:not(.initial-load),
#goods .goodsList.fadein.visible li:not(.initial-load) {
  opacity: 1;
  left: 0;
}

@media (max-width: 768px) {
  #ticket .ticketList.fadein {
    top: 40px;
    left: auto;
    -webkit-transition-delay: 0.5s;
            transition-delay: 0.5s;
  }
  #ticket .ticketList.fadein.visible {
    top: 0;
    left: auto;
  }
}

@-webkit-keyframes fadeInSlide {
  0% {
    opacity: 0;
    left: 40px;
  }
  100% {
    opacity: 1;
    left: 0;
  }
}

@keyframes fadeInSlide {
  0% {
    opacity: 0;
    left: 40px;
  }
  100% {
    opacity: 1;
    left: 0;
  }
}
.forSP {
  display: none;
}
@media (max-width: 768px) {
  .forSP {
    display: block;
  }
}

/*-------------------------------------------
common
-------------------------------------------*/
#wrapper {
  text-align: center;
}
#wrapper.open #header {
  height: 100%;
  width: 100%;
  overflow-y: scroll;
  background: #fff;
}
#wrapper.open nav {
  visibility: visible;
  opacity: 1;
}

#main {
  max-width: 1320px;
  margin-inline: auto;
}
@media (max-width: 1360px) {
  #main {
    padding-inline: 20px;
  }
}

#hero {
  padding: 0;
  background: #000;
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  #hero {
    margin-bottom: 30px;
  }
}
#hero .img {
  width: 100%;
}
#hero .img img {
  width: 100%;
  max-width: 200%;
  aspect-ratio: 1440/810;
  opacity: 0;
  -webkit-animation: bgFadeIn 3.4s ease 0.5s;
          animation: bgFadeIn 3.4s ease 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
@-webkit-keyframes bgFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes bgFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@media (max-width: 560px) {
  #hero .img img {
    aspect-ratio: 786/1396;
  }
}

#footer {
  position: relative;
  padding: 0 60px 24px;
  text-align: center;
  color: #272727;
  z-index: 1;
  margin-top: 120px;
}
@media (max-width: 768px) {
  #footer {
    padding-inline: 20px;
    margin-top: 80px;
  }
}
@media (max-width: 768px) {
  #footer .footerLogo a img {
    width: 114px;
  }
}
#footer .snsList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
  padding-top: 64px;
  border-top: 1px solid #000;
  margin-inline: -60px;
}
@media (max-width: 768px) {
  #footer .snsList {
    gap: 24px;
    margin-inline: -20px;
  }
}
#footer .snsList li a:hover {
  opacity: 0.6;
}
@media (max-width: 768px) {
  #footer .snsList li a img {
    width: 24px;
  }
}
#footer .footerLogo {
  margin-top: 64px;
}
#footer .copyright {
  margin-top: 64px;
  text-align: center;
}
@media (max-width: 768px) {
  #footer .copyright {
    margin-top: 54px;
  }
}
#footer .copyright small {
  font-size: 14px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  color: #272727;
}
@media (max-width: 768px) {
  #footer .copyright small {
    font-size: 13px;
  }
}

@-webkit-keyframes floatBtnFadeIn_PC {
  0% {
    bottom: -24px;
    opacity: 0;
    cursor: default;
    pointer-events: none;
  }
  100% {
    bottom: 24px;
    opacity: 1;
    cursor: pointer;
    pointer-events: all;
  }
}

@keyframes floatBtnFadeIn_PC {
  0% {
    bottom: -24px;
    opacity: 0;
    cursor: default;
    pointer-events: none;
  }
  100% {
    bottom: 24px;
    opacity: 1;
    cursor: pointer;
    pointer-events: all;
  }
}
@-webkit-keyframes floatBtnFadeIn_SP {
  0% {
    bottom: -24px;
    opacity: 0;
    cursor: default;
    pointer-events: none;
  }
  100% {
    bottom: 0;
    opacity: 1;
    cursor: pointer;
    pointer-events: all;
  }
}
@keyframes floatBtnFadeIn_SP {
  0% {
    bottom: -24px;
    opacity: 0;
    cursor: default;
    pointer-events: none;
  }
  100% {
    bottom: 0;
    opacity: 1;
    cursor: pointer;
    pointer-events: all;
  }
}
.floatBtn {
  position: fixed;
  right: 34px;
  bottom: -24px;
  z-index: 10;
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .floatBtn {
    right: 10px;
  }
}
.floatBtn.is-show {
  bottom: 24px;
  opacity: 1;
}
@media (max-width: 768px) {
  .floatBtn.is-show {
    bottom: 10px;
  }
}
.floatBtn a {
  display: block;
  width: 140px;
  height: 140px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .floatBtn a {
    width: 120px;
    height: 120px;
  }
}
.floatBtn a:hover {
  scale: 1.1;
}

section {
  position: relative;
  overflow: hidden;
  background: #fff;
  padding-top: 60px;
  padding-bottom: 60px;
  scroll-margin-top: 60px;
  margin-inline: calc(50% - 50vw);
  max-width: 100vw;
  padding-inline: calc(50vw - 50%);
}
@media (max-width: 768px) {
  section {
    padding-top: 30px;
    padding-bottom: 30px;
    scroll-margin-top: 30px;
  }
}

.movieFrame {
  position: relative;
  max-width: 1094px;
  margin-inline: auto;
}
.movieFrame::before {
  position: absolute;
  content: "PLAY";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  font-size: 14px;
  font-weight: 400;
  color: #000;
  background: #fff;
  border-radius: 50%;
  border: 1px solid #000;
  width: 80px;
  height: 80px;
  display: -ms-grid;
  display: grid;
  place-content: center;
  padding-top: 25px;
  line-height: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 3;
}
@media (max-width: 768px) {
  .movieFrame::before {
    font-size: 13px;
  }
}
@media (max-width: 768px) {
  .movieFrame::before {
    width: 60px;
    height: 60px;
    padding-top: 25px;
  }
}
.movieFrame::after {
  position: absolute;
  content: "";
  top: -12px;
  left: 2px;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 0 8px 12px;
  border-color: transparent transparent transparent #000;
  z-index: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 4;
}
@media (max-width: 768px) {
  .movieFrame::after {
    top: -9px;
  }
}
.movieFrame figure {
  position: relative;
  aspect-ratio: 1094/615;
  overflow: hidden;
}
.movieFrame figure::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 2;
}
.movieFrame figure img {
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 1;
}
.movieFrame:hover::before {
  color: #fff;
  background: #000;
  border: 1px solid #fff;
  scale: 1.25;
}
.movieFrame:hover::after {
  border-color: transparent transparent transparent #fff;
  scale: 1.25;
}
.movieFrame:hover figure::after {
  opacity: 1;
}
.movieFrame:hover figure img {
  scale: 1.1;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  opacity: 0;
  -webkit-transition: opacity 0.5s, scale 0s 0.5s;
  transition: opacity 0.5s, scale 0s 0.5s;
  padding: 60px;
  scale: 0;
  z-index: 200;
  /* 背景クリックでモーダルを閉じる */
}
@media (max-width: 768px) {
  .modal {
    padding: 20px;
  }
}
.modal:target {
  opacity: 1;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
  scale: 1;
  /* モーダルがターゲットされたときに .modal-wrapper を表示 */
}
.modal:target .modal-wrapper {
  opacity: 1;
}
.modal .modal-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  /* 背景がクリック可能であることを明示 */
}
.modal .modal-wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0;
  width: 100%;
  max-width: 900px;
  max-height: 90%;
  margin: auto;
  background-color: #fff;
  border-radius: 8px;
  opacity: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s; /* 表示を遅延させる */
  z-index: 210;
}
.modal .modal-wrapper .modal-content-wrapper {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  overflow-y: auto;
  padding: 70px 60px;
}
@media (max-width: 768px) {
  .modal .modal-wrapper .modal-content-wrapper {
    padding: 15px 15px 30px 15px;
  }
}
.modal .modal-wrapper .modal-content-wrapper .date {
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .modal .modal-wrapper .modal-content-wrapper .date {
    margin-bottom: 10px;
  }
}
.modal .modal-wrapper .modal-content-wrapper .date .day {
  font-size: 36px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
}
@media (min-width: 1320px) {
  .modal .modal-wrapper .modal-content-wrapper .date .day {
    font-size: 36px;
  }
}
@media (max-width: 1320px) {
  .modal .modal-wrapper .modal-content-wrapper .date .day {
    font-size: 2.7272727273vw;
  }
}
@media (max-width: 768px) {
  .modal .modal-wrapper .modal-content-wrapper .date .day {
    font-size: 24px;
  }
}
.modal .modal-wrapper .modal-content-wrapper .date .day i {
  position: relative;
  display: inline-block;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0;
  margin-left: 6px;
}
@media (min-width: 1320px) {
  .modal .modal-wrapper .modal-content-wrapper .date .day i {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .modal .modal-wrapper .modal-content-wrapper .date .day i {
    font-size: 11px;
    margin-left: 4px;
  }
}
.modal .modal-wrapper .modal-content-wrapper .date .day.sat i {
  color: #5FCFFF;
}
.modal .modal-wrapper .modal-content-wrapper .date .day.sun i {
  color: #FF4646;
}
.modal .modal-wrapper .modal-content-wrapper .date .teamlogo {
  position: relative;
  display: block;
  padding-left: 20px;
  margin: 0;
}
@media (max-width: 768px) {
  .modal .modal-wrapper .modal-content-wrapper .date .teamlogo {
    padding-left: 18px;
  }
}
.modal .modal-wrapper .modal-content-wrapper .date .teamlogo::before {
  position: absolute;
  display: inline-block;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  content: "VS";
  color: #9F9F9F;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  height: 1em;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}
@media (max-width: 768px) {
  .modal .modal-wrapper .modal-content-wrapper .date .teamlogo::before {
    font-size: 12px;
  }
}
.modal .modal-wrapper .modal-content-wrapper .date .teamlogo img {
  width: 40px;
  height: 40px;
  min-width: 40px;
  aspect-ratio: 1/1;
}
@media (max-width: 768px) {
  .modal .modal-wrapper .modal-content-wrapper .date .teamlogo img {
    width: 32px;
    height: 32px;
    min-width: 32px;
  }
}
.modal .modal-wrapper .modal-content-wrapper > figure {
  max-width: 540px;
  margin-inline: auto;
}
.modal .modal-wrapper .modal-content-wrapper table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 32px;
}
@media (max-width: 768px) {
  .modal .modal-wrapper .modal-content-wrapper table {
    margin-top: 20px;
  }
}
.modal .modal-wrapper .modal-content-wrapper table th, .modal .modal-wrapper .modal-content-wrapper table td {
  border: 1px solid #9F9F9F;
  padding: 10px;
  line-height: 1.4;
  vertical-align: middle;
}
@media (max-width: 768px) {
  .modal .modal-wrapper .modal-content-wrapper table th, .modal .modal-wrapper .modal-content-wrapper table td {
    padding: 8px 0;
  }
}
.modal .modal-wrapper .modal-content-wrapper table thead th {
  background-color: #f7f7f7;
  color: #272727;
  text-align: center;
  font-weight: 700;
  line-height: 1;
}
@media (max-width: 768px) {
  .modal .modal-wrapper .modal-content-wrapper table thead th {
    font-size: 13px;
  }
}
.modal .modal-wrapper .modal-content-wrapper table thead th:first-child {
  width: 40%;
}
.modal .modal-wrapper .modal-content-wrapper table thead th:nth-child(2) {
  width: 30%;
}
.modal .modal-wrapper .modal-content-wrapper table thead th:nth-child(3) {
  width: 30%;
}
.modal .modal-wrapper .modal-content-wrapper table tbody td {
  padding-block: 15px;
  text-align: left;
}
@media (max-width: 768px) {
  .modal .modal-wrapper .modal-content-wrapper table tbody td {
    padding: 8px 5px;
    font-size: 13px;
  }
}
.modal .modal-wrapper .modal-content-wrapper table tbody tr:first-child td {
  border-top: none;
}
.modal .modal-wrapper .modal-content-wrapper .goods-info h4 {
  font-size: 20px;
  font-weight: 700;
  border-bottom: 1px solid #272727;
  padding-bottom: 8px;
  margin-top: 32px;
  margin-bottom: 12px;
  text-align: left;
}
@media (max-width: 768px) {
  .modal .modal-wrapper .modal-content-wrapper .goods-info h4 {
    font-size: 16px;
    padding-bottom: 6px;
    margin-bottom: 10px;
  }
}
.modal .modal-wrapper .modal-content-wrapper .goods-info p {
  font-size: 16px;
  line-height: 1.6;
  text-align: left;
  margin-bottom: 12px;
}
@media (max-width: 768px) {
  .modal .modal-wrapper .modal-content-wrapper .goods-info p {
    font-size: 14px;
    margin-bottom: 8px;
  }
}
.modal .modal-wrapper .btnClose {
  position: sticky;
  top: 0;
  right: 0;
  text-align: right;
  height: 0;
}
.modal .modal-wrapper .btnClose .close {
  position: relative;
  top: -48px;
  right: 0px;
  font-weight: 400;
  font-size: 36px;
  color: #fff;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
}
@media (max-width: 768px) {
  .modal .modal-wrapper .btnClose .close {
    top: -42px;
    right: 10px;
  }
}

#introduction {
  padding-top: 80px;
  scroll-margin-top: 80px;
  padding-bottom: 0;
}
@media (max-width: 768px) {
  #introduction {
    padding-top: 64px;
    scroll-margin-top: 64px;
  }
}
#introduction > a {
  display: inline-block;
  max-width: 1094px;
}

#schedule .scheduleList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#schedule .scheduleList > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 18px;
  height: auto;
  background: #f7f7f7;
  border-radius: 8px;
  padding: 24px;
  width: calc((100% - 72px) / 4);
}
@media (max-width: 768px) {
  #schedule .scheduleList > li {
    padding-inline: 14px;
    width: calc((100% - 48px) / 4);
  }
}
#schedule .scheduleList > li .date {
  position: relative;
  color: #272727;
  text-align: left;
}
#schedule .scheduleList > li .date .day {
  font-size: 48px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
}
@media (min-width: 1320px) {
  #schedule .scheduleList > li .date .day {
    font-size: 48px;
  }
}
@media (max-width: 1320px) {
  #schedule .scheduleList > li .date .day {
    font-size: 3.6363636364vw;
  }
}
@media (max-width: 768px) {
  #schedule .scheduleList > li .date .day {
    font-size: 32px;
  }
}
#schedule .scheduleList > li .date .day i {
  position: relative;
  display: inline-block;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0;
  margin-left: 6px;
}
@media (min-width: 1320px) {
  #schedule .scheduleList > li .date .day i {
    font-size: 20px;
    margin-left: 6px;
  }
}
@media (max-width: 768px) {
  #schedule .scheduleList > li .date .day i {
    font-size: 16px;
    margin-left: 10px;
  }
}
#schedule .scheduleList > li .date .day.sat i {
  color: #5FCFFF;
}
#schedule .scheduleList > li .date .day.sun i {
  color: #FF4646;
}
#schedule .scheduleList > li .gameinfo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 18px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media (max-width: 768px) {
  #schedule .scheduleList > li .gameinfo {
    gap: 8px;
  }
}
#schedule .scheduleList > li .gameinfo .time {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
#schedule .scheduleList > li .gameinfo .time .open, #schedule .scheduleList > li .gameinfo .time .playball {
  position: relative;
  display: block;
  text-align: left;
  font-size: 24px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  vertical-align: baseline;
}
@media (max-width: 768px) {
  #schedule .scheduleList > li .gameinfo .time .open, #schedule .scheduleList > li .gameinfo .time .playball {
    font-size: 18px;
  }
}
#schedule .scheduleList > li .gameinfo .time .open::before, #schedule .scheduleList > li .gameinfo .time .playball::before {
  display: block;
  color: #9F9F9F;
  font-size: 12px;
  font-family: "ryo-gothic-plusn", sans-serif;
  font-weight: 400;
  margin-bottom: 4px;
}
@media (max-width: 768px) {
  #schedule .scheduleList > li .gameinfo .time .open::before, #schedule .scheduleList > li .gameinfo .time .playball::before {
    font-size: 10px;
    margin-bottom: 2px;
  }
}
#schedule .scheduleList > li .gameinfo .time .open::before {
  content: "開場";
}
#schedule .scheduleList > li .gameinfo .time .playball::before {
  content: "試合開始";
}
#schedule .scheduleList > li .gameinfo .logo {
  width: 100%;
  gap: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
#schedule .scheduleList > li .gameinfo .logo .teamlogo {
  position: relative;
  display: block;
  padding-left: 24px;
}
@media (max-width: 768px) {
  #schedule .scheduleList > li .gameinfo .logo .teamlogo {
    padding-left: 18px;
  }
}
#schedule .scheduleList > li .gameinfo .logo .teamlogo::before {
  position: absolute;
  display: inline-block;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  content: "VS";
  color: #9F9F9F;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  height: 1em;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}
@media (max-width: 768px) {
  #schedule .scheduleList > li .gameinfo .logo .teamlogo::before {
    font-size: 12px;
  }
}
#schedule .scheduleList > li .gameinfo .logo .teamlogo img {
  width: 48px;
  height: 48px;
  aspect-ratio: 1/1;
}
@media (max-width: 768px) {
  #schedule .scheduleList > li .gameinfo .logo .teamlogo img {
    width: 32px;
    height: 32px;
  }
}
#schedule .scheduleList > li .gameinfo .logo .eventlogo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 768px) {
  #schedule .scheduleList > li .gameinfo .logo .eventlogo {
    gap: 1px;
    margin-top: 4px;
  }
}
#schedule .scheduleList > li .gameinfo .logo .eventlogo figure {
  margin-inline: 0;
  aspect-ratio: 1/1;
}
#schedule .scheduleList > li .gameinfo .logo .eventlogo figure img {
  width: 36px;
  height: 36px;
}
@media (max-width: 768px) {
  #schedule .scheduleList > li .gameinfo .logo .eventlogo figure img {
    width: 24px;
    height: 24px;
    min-width: 24px;
    aspect-ratio: 1/1;
  }
}
#schedule .scheduleList > li .buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}
#schedule .scheduleList > li .buttons .btn {
  margin-top: 0;
}
#schedule .scheduleList > li .buttons .btn a {
  white-space: nowrap;
}
@media (max-width: 768px) {
  #schedule .scheduleList > li .buttons .btn a {
    padding-top: 6px;
    padding-bottom: 6px;
  }
}
#schedule .scheduleList > li .buttons .arrow {
  margin-top: 4px;
}
#schedule #scheduleSlider {
  overflow: visible;
}
#schedule #scheduleSlider .swiper-slide {
  width: 755px;
}
@media (max-width: 768px) {
  #schedule #scheduleSlider .swiper-slide {
    width: 264px;
  }
}
#schedule #scheduleSlider .c-swiper-control {
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px 0 0;
}
#schedule #scheduleSlider .c-swiper-button {
  position: relative;
  width: 111px;
  height: 48px;
}
@media (max-width: 768px) {
  #schedule #scheduleSlider .c-swiper-button {
    width: 79px;
    height: 32px;
  }
}
#schedule #scheduleSlider .swiper-pagination {
  position: relative;
  bottom: auto;
  color: #9F9F9F;
  font-size: 24px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 768px) {
  #schedule #scheduleSlider .swiper-pagination {
    font-size: 16px;
  }
}
#schedule #scheduleSlider .swiper-pagination .swiper-pagination-current {
  color: #272727;
  font-size: 48px;
  font-weight: 400;
  margin-top: -13px;
  margin-right: 10px;
}
@media (max-width: 768px) {
  #schedule #scheduleSlider .swiper-pagination .swiper-pagination-current {
    font-size: 32px;
    margin-top: -6px;
    margin-right: 5px;
  }
}
#schedule #scheduleSlider .swiper-pagination i {
  position: relative;
  display: inline-block;
  width: 0.5em;
  height: 1em;
  line-height: 1;
  margin-right: 3px;
}
#schedule #scheduleSlider .swiper-pagination i::after {
  position: absolute;
  content: "/";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 0.5em;
  height: 1em;
}
#schedule #scheduleSlider .swiper-button-prev,
#schedule #scheduleSlider .swiper-button-next {
  position: absolute;
  top: auto;
  margin: 0;
  width: 48px;
  height: 48px;
  border: 1px solid #9F9F9F;
  border-radius: 50%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 768px) {
  #schedule #scheduleSlider .swiper-button-prev,
  #schedule #scheduleSlider .swiper-button-next {
    width: 32px;
    height: 32px;
  }
}
#schedule #scheduleSlider .swiper-button-prev::after,
#schedule #scheduleSlider .swiper-button-next::after {
  content: "";
  width: 6px;
  height: 6px;
  border-top: 1px solid #272727;
  border-right: 1px solid #272727;
  -webkit-transform-origin: center;
          transform-origin: center;
  display: block;
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
}
#schedule #scheduleSlider .swiper-button-prev:hover,
#schedule #scheduleSlider .swiper-button-next:hover {
  background: #272727;
}
#schedule #scheduleSlider .swiper-button-prev:hover::after,
#schedule #scheduleSlider .swiper-button-next:hover::after {
  border-color: #fff;
}
#schedule #scheduleSlider .swiper-button-prev {
  left: 0;
}
#schedule #scheduleSlider .swiper-button-prev::after {
  margin-left: 2px;
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}
#schedule #scheduleSlider .swiper-button-next {
  right: 0;
}
#schedule #scheduleSlider .swiper-button-next::after {
  margin-right: 2px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

#contentsMenu .navList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 24px 36px;
  max-width: 1320px;
  margin-inline: auto;
}
@media (min-width: 1320px) {
  #contentsMenu .navList {
    gap: 24px 36px;
  }
}
@media (max-width: 1320px) {
  #contentsMenu .navList {
    --gap: calc((24 / 1320) * 100vw);
    gap: var(--gap);
  }
}
@media (max-width: 768px) {
  #contentsMenu .navList {
    gap: 6px;
  }
}
#contentsMenu .navList li {
  width: calc((100% - 36px) / 2);
}
@media (min-width: 1320px) {
  #contentsMenu .navList li {
    width: calc((100% - 36px) / 2);
  }
}
@media (max-width: 768px) {
  #contentsMenu .navList li {
    width: 100%;
  }
}
#contentsMenu .navList li a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 22px;
  gap: 16px;
  text-decoration: none;
  background: #363636;
  color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border-radius: 4px;
}
@media (min-width: 1320px) {
  #contentsMenu .navList li a {
    gap: 16px;
  }
}
@media (max-width: 1320px) {
  #contentsMenu .navList li a {
    gap: 1.2121212121vw;
  }
}
@media (max-width: 768px) {
  #contentsMenu .navList li a {
    padding: 8px;
    padding-right: 36px;
    gap: 8px;
  }
}
#contentsMenu .navList li a::before {
  position: absolute;
  content: "";
  display: block;
  right: 11px;
  bottom: 11px;
  width: 38px;
  height: 38px;
  background: #363636;
  border-radius: 50%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  scale: 0.8;
  z-index: 1;
}
@media (max-width: 768px) {
  #contentsMenu .navList li a::before {
    top: 0;
    bottom: 0;
    right: 7px;
    margin: auto;
    width: 24px;
    height: 24px;
  }
}
#contentsMenu .navList li a::after {
  position: absolute;
  content: "";
  display: block;
  right: 26px;
  bottom: 26px;
  width: 10px;
  height: 10px;
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 2;
}
@media (max-width: 768px) {
  #contentsMenu .navList li a::after {
    top: -2px;
    bottom: 0;
    right: 16px;
    margin: auto;
    width: 6px;
    height: 6px;
    border-width: 1px;
  }
}
#contentsMenu .navList li a:hover {
  background: #000;
}
#contentsMenu .navList li a:hover::before {
  background: #fff;
  scale: 1;
}
#contentsMenu .navList li a:hover::after {
  border-color: #000;
}
#contentsMenu .navList li a:hover img {
  scale: 1.1;
}
#contentsMenu .navList li a.disabled {
  pointer-events: none;
  cursor: default;
}
#contentsMenu .navList li a.disabled figure {
  opacity: 0.5;
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
}
#contentsMenu .navList li a.disabled .ttl {
  color: #9F9F9F;
}
#contentsMenu .navList li a.disabled::before, #contentsMenu .navList li a.disabled::after {
  display: none;
}
#contentsMenu .navList li figure {
  overflow: hidden;
  border-radius: 2px;
  min-width: 112px;
  margin: 0;
}
@media (min-width: 1320px) {
  #contentsMenu .navList li figure {
    min-width: 112px;
  }
}
@media (max-width: 1320px) {
  #contentsMenu .navList li figure {
    min-width: 8.4848484848vw;
    max-width: 8.4848484848vw;
  }
}
@media (max-width: 768px) {
  #contentsMenu .navList li figure {
    min-width: 64px;
    max-width: 64px;
  }
}
#contentsMenu .navList li figure img {
  width: 100%;
  aspect-ratio: 1/1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  width: 112px;
}
#contentsMenu .navList li .ttl {
  font-size: 24px;
  font-family: "Inter", sans-serif;
  font-weight: 900;
  line-height: 1;
  margin-top: 6px;
  margin-bottom: 8px;
}
@media (min-width: 1320px) {
  #contentsMenu .navList li .ttl {
    font-size: 24px;
  }
}
@media (max-width: 1320px) {
  #contentsMenu .navList li .ttl {
    font-size: clamp(16px, 1.8181818182vw, 24px);
  }
}
@media (max-width: 768px) {
  #contentsMenu .navList li .ttl {
    font-size: 16px;
    margin-bottom: 5px;
  }
}
#contentsMenu .navList li .text {
  font-size: 13px;
  width: 100%;
  color: #fff;
}
@media (min-width: 1320px) {
  #contentsMenu .navList li .text {
    font-size: 13px;
  }
}
@media (max-width: 1320px) {
  #contentsMenu .navList li .text {
    font-size: 0.9848484848vw;
  }
}
@media (max-width: 768px) {
  #contentsMenu .navList li .text {
    font-size: 13px;
  }
}

#team26 .bg {
  background: #f7f7f7;
  border-radius: 8px;
  padding: 24px;
}
@media (max-width: 768px) {
  #team26 .bg {
    padding: 10px;
  }
}
#team26 .img {
  max-width: 800px;
  margin-inline: auto;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  #team26 .img {
    margin-bottom: 16px;
  }
}
#team26 .readText .btn {
  margin-left: auto;
}
#team26 .readText .btn a {
  margin-left: auto;
}
#team26 .entryBtn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  background: #fff;
  padding: 24px;
  border-radius: 8px;
}
@media (max-width: 768px) {
  #team26 .entryBtn {
    gap: 8px;
    padding: 5px;
    border-radius: 4px;
    margin: auto -4px -4px -4px;
  }
}
#team26 .entryBtn .btn {
  margin-top: 0;
}
#team26 .entryBtn .btn.new, #team26 .entryBtn .btn.continue {
  width: 100%;
}
#team26 .entryBtn .btn.new a, #team26 .entryBtn .btn.continue a {
  border-radius: 4px;
  padding-inline: 0;
  font-size: 18px;
  height: 76px;
  line-height: 1;
  max-width: 500px;
}
@media (max-width: 768px) {
  #team26 .entryBtn .btn.new a, #team26 .entryBtn .btn.continue a {
    font-size: 15px;
    height: 56px;
  }
}
#team26 .entryBtn .btn.new a::after, #team26 .entryBtn .btn.continue a::after {
  display: none;
}
#team26 .entryBtn .btn.new a:hover, #team26 .entryBtn .btn.continue a:hover {
  padding-inline: 0;
}
#team26 .entryBtn .btn.new a {
  background: #272727;
  color: #fff;
  border-color: #272727;
}
#team26 .entryBtn .btn.new a:hover {
  background: #9F9F9F;
  border-color: #9F9F9F;
}
#team26 .entryBtn .btn.continue a {
  background: #6c6c6c;
  color: #fff;
  border-color: #6c6c6c;
}
#team26 .entryBtn .btn.continue a:hover {
  background: #9F9F9F;
  border-color: #9F9F9F;
}

#ticket .topicsbox {
  display: block;
  background: #fad7d9;
  padding: 36px 24px;
  border-radius: 8px;
  margin-top: 36px;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  text-decoration: none;
  color: #272727;
}
@media (max-width: 768px) {
  #ticket .topicsbox {
    padding: 24px 16px;
    margin-top: 16px;
  }
}
#ticket .topicsbox:hover {
  background: #f7c0c3;
}
#ticket .topicsbox:hover .btn.black a, #ticket .topicsbox:hover .btn.black span {
  background: #6c6c6c;
  border-color: #6c6c6c;
}
#ticket .topicsbox h4 {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  #ticket .topicsbox h4 {
    font-size: 16px;
    margin-bottom: 12px;
  }
}
#ticket .topicsbox .text {
  font-size: 18px;
}
@media (max-width: 768px) {
  #ticket .topicsbox .text {
    font-size: 15px;
  }
}
#ticket .topicsbox div {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
@media (max-width: 768px) {
  #ticket .topicsbox div {
    gap: 12px;
  }
}
#ticket .topicsbox div figure {
  min-width: 80px;
  max-width: 80px;
  margin: 0;
}
@media (max-width: 768px) {
  #ticket .topicsbox div figure {
    min-width: 52px;
    max-width: 52px;
    margin: 0;
  }
}
#ticket .topicsbox .btn {
  margin-top: 16px;
}
#ticket .ticketList {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 22px 1fr 22px 1fr 22px 1fr;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
@media (max-width: 1320px) {
  #ticket .ticketList {
    gap: 1.6666666667vw;
  }
}
@media (max-width: 768px) {
  #ticket .ticketList {
    -ms-grid-columns: 1fr 11px 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 11px;
  }
}
#ticket .ticketList > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  background: #f7f7f7;
  border-radius: 8px;
  padding: 24px;
}
@media (max-width: 768px) {
  #ticket .ticketList > li {
    gap: 11px;
    padding: 10px;
  }
}
#ticket .ticketList > li .date {
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
@media (max-width: 768px) {
  #ticket .ticketList > li .date {
    gap: 4px;
  }
}
#ticket .ticketList > li .date .day {
  font-size: 36px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
}
@media (min-width: 1320px) {
  #ticket .ticketList > li .date .day {
    font-size: 36px;
  }
}
@media (max-width: 1320px) {
  #ticket .ticketList > li .date .day {
    font-size: 2.7272727273vw;
  }
}
@media (max-width: 768px) {
  #ticket .ticketList > li .date .day {
    font-size: 20px;
  }
}
#ticket .ticketList > li .date .day i {
  position: relative;
  display: inline-block;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0;
  margin-left: 6px;
}
@media (min-width: 1320px) {
  #ticket .ticketList > li .date .day i {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  #ticket .ticketList > li .date .day i {
    font-size: 11px;
    margin-left: 4px;
  }
}
#ticket .ticketList > li .date .day.sat i {
  color: #5FCFFF;
}
#ticket .ticketList > li .date .day.sun i {
  color: #FF4646;
}
#ticket .ticketList > li .date .teamlogo {
  position: relative;
  display: block;
  padding-left: 20px;
}
@media (max-width: 768px) {
  #ticket .ticketList > li .date .teamlogo {
    padding-left: 18px;
  }
}
#ticket .ticketList > li .date .teamlogo::before {
  position: absolute;
  display: inline-block;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  content: "VS";
  color: #9F9F9F;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  height: 1em;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}
@media (max-width: 768px) {
  #ticket .ticketList > li .date .teamlogo::before {
    font-size: 12px;
  }
}
#ticket .ticketList > li .date .teamlogo img {
  width: 40px;
  height: 40px;
  min-width: 40px;
  aspect-ratio: 1/1;
}
@media (max-width: 768px) {
  #ticket .ticketList > li .date .teamlogo img {
    width: 32px;
    height: 32px;
    min-width: 32px;
  }
}
#ticket .ticketList > li .buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
#ticket .ticketList > li .buttons .btn {
  margin-top: 0;
}

#events {
  padding-bottom: 0;
}
#events .eventsList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#events .eventsList > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  background: #f7f7f7;
  border-radius: 8px;
  padding: 24px;
}
@media (max-width: 768px) {
  #events .eventsList > li {
    gap: 11px;
    padding: 10px;
  }
}
#events .eventsList > li > figure {
  position: relative;
  margin: 0;
  z-index: 1;
  overflow: hidden;
}
@media (max-width: 768px) {
  #events .eventsList > li > figure {
    min-width: 264px;
  }
}
#events .eventsList > li > figure img {
  aspect-ratio: 5/3;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
#events .eventsList > li .date {
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
@media (max-width: 768px) {
  #events .eventsList > li .date {
    gap: 4px;
  }
}
#events .eventsList > li .date .day {
  position: relative;
  display: inline-block;
  font-size: 48px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  margin: 0;
  line-height: 1;
  letter-spacing: 0;
}
@media (max-width: 768px) {
  #events .eventsList > li .date .day {
    font-size: 32px;
  }
}
#events .eventsList > li .date .day i {
  display: inline-block;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0;
  margin-left: 5px;
}
@media (max-width: 768px) {
  #events .eventsList > li .date .day i {
    font-size: 15px;
    margin-left: 2px;
  }
}
#events .eventsList > li .date .day.sat i {
  color: #5FCFFF;
}
#events .eventsList > li .date .day.sun i {
  color: #FF4646;
}
#events .eventsList > li .date .day + .day {
  margin-left: 4px;
}
@media (max-width: 768px) {
  #events .eventsList > li .date .day + .day {
    margin-left: 1px;
  }
}
#events .eventsList > li .date .day + .day.period {
  padding-left: 22px;
}
@media (max-width: 768px) {
  #events .eventsList > li .date .day + .day.period {
    padding-left: 11px;
  }
}
#events .eventsList > li .date .day + .day.period::before {
  position: absolute;
  content: "";
  display: inline-block;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  height: 2px;
  width: 16px;
  background: #272727;
}
@media (max-width: 768px) {
  #events .eventsList > li .date .day + .day.period::before {
    width: 8px;
  }
}
#events .eventsList > li .date .teamlogo {
  position: relative;
  display: block;
  padding-left: 20px;
  margin: 0;
}
@media (max-width: 768px) {
  #events .eventsList > li .date .teamlogo {
    padding-left: 18px;
  }
}
#events .eventsList > li .date .teamlogo::before {
  position: absolute;
  display: inline-block;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  content: "VS";
  color: #9F9F9F;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  height: 1em;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}
@media (max-width: 768px) {
  #events .eventsList > li .date .teamlogo::before {
    font-size: 12px;
  }
}
#events .eventsList > li .date .teamlogo img {
  width: 48px;
  height: 48px;
  min-width: 40px;
  aspect-ratio: 1/1;
}
@media (max-width: 768px) {
  #events .eventsList > li .date .teamlogo img {
    width: 32px;
    height: 32px;
    min-width: 32px;
  }
}
#events .eventsList > li h4 {
  margin-top: 24px;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  #events .eventsList > li h4 {
    margin-top: 12px;
    font-size: 17px;
    margin-bottom: 8px;
  }
}
#events .eventsList > li p {
  margin-top: 11px;
  line-height: 1.8;
}
#events .eventsList > li p.arrow {
  margin-top: 22px;
}
#events .eventsList > li ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
@media (max-width: 768px) {
  #events .eventsList > li ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
#events .eventsList > li ul > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
@media (max-width: 768px) {
  #events .eventsList > li ul > li {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
#events .eventsList > li ul > li h4 {
  width: 100%;
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 0;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media (max-width: 768px) {
  #events .eventsList > li ul > li h4 {
    font-size: 16px;
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
  }
}
@media (max-width: 768px) {
  #events .eventsList > li ul > li figure {
    width: calc(50% - 10px);
  }
}
#events .eventsList > li ul > li figure img {
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
}
#events .eventsList > li ul > li .text {
  margin-top: 0px;
  line-height: 1.6;
}
@media (max-width: 768px) {
  #events .eventsList > li ul > li .text {
    width: calc(50% - 10px);
  }
}
#events #eventsSlider {
  overflow: visible;
}
#events #eventsSlider .swiper-slide {
  width: 755px;
}
@media (max-width: 768px) {
  #events #eventsSlider .swiper-slide {
    width: 264px;
  }
}
#events #eventsSlider .c-swiper-control {
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px 0 0;
}
#events #eventsSlider .c-swiper-button {
  position: relative;
  width: 111px;
  height: 48px;
}
@media (max-width: 768px) {
  #events #eventsSlider .c-swiper-button {
    width: 79px;
    height: 32px;
  }
}
#events #eventsSlider .swiper-pagination {
  position: relative;
  bottom: auto;
  color: #9F9F9F;
  font-size: 24px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 768px) {
  #events #eventsSlider .swiper-pagination {
    font-size: 16px;
  }
}
#events #eventsSlider .swiper-pagination .swiper-pagination-current {
  color: #272727;
  font-size: 48px;
  font-weight: 400;
  margin-top: -13px;
  margin-right: 10px;
}
@media (max-width: 768px) {
  #events #eventsSlider .swiper-pagination .swiper-pagination-current {
    font-size: 32px;
    margin-top: -6px;
    margin-right: 5px;
  }
}
#events #eventsSlider .swiper-pagination i {
  position: relative;
  display: inline-block;
  width: 0.5em;
  height: 1em;
  line-height: 1;
  margin-right: 3px;
}
#events #eventsSlider .swiper-pagination i::after {
  position: absolute;
  content: "/";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 0.5em;
  height: 1em;
}
#events #eventsSlider .swiper-button-prev,
#events #eventsSlider .swiper-button-next {
  position: absolute;
  top: auto;
  margin: 0;
  width: 48px;
  height: 48px;
  border: 1px solid #9F9F9F;
  border-radius: 50%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 768px) {
  #events #eventsSlider .swiper-button-prev,
  #events #eventsSlider .swiper-button-next {
    width: 32px;
    height: 32px;
  }
}
#events #eventsSlider .swiper-button-prev::after,
#events #eventsSlider .swiper-button-next::after {
  content: "";
  width: 6px;
  height: 6px;
  border-top: 1px solid #272727;
  border-right: 1px solid #272727;
  -webkit-transform-origin: center;
          transform-origin: center;
  display: block;
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
}
#events #eventsSlider .swiper-button-prev:hover,
#events #eventsSlider .swiper-button-next:hover {
  background: #272727;
}
#events #eventsSlider .swiper-button-prev:hover::after,
#events #eventsSlider .swiper-button-next:hover::after {
  border-color: #fff;
}
#events #eventsSlider .swiper-button-prev {
  left: 0;
}
#events #eventsSlider .swiper-button-prev::after {
  margin-left: 2px;
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}
#events #eventsSlider .swiper-button-next {
  right: 0;
}
#events #eventsSlider .swiper-button-next::after {
  margin-right: 2px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

#goods {
  padding-bottom: 0;
}
#goods .goodsList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-inline: auto;
}
#goods .goodsList > li {
  background: #f7f7f7;
  border-radius: 8px;
  padding: 24px;
}
@media (max-width: 768px) {
  #goods .goodsList > li {
    padding: 10px;
  }
}
#goods .goodsList > li figure {
  position: relative;
  width: 529px;
  aspect-ratio: 529/397;
  overflow: hidden;
}
#goods .goodsList > li figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

#gourmet {
  padding-bottom: 0;
}
#gourmet .gourmetList > li {
  position: relative;
  max-width: 868px;
  margin-inline: auto;
}
@media (max-width: 768px) {
  #gourmet .gourmetList > li {
    padding-inline: 30px;
  }
}
#gourmet .gourmetList > li .catchCopy {
  position: absolute;
  top: -30px;
  left: -226px;
  font-family: "Inter", sans-serif;
  font-size: 64px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}
@media (min-width: 1320px) {
  #gourmet .gourmetList > li .catchCopy {
    top: -30px;
    left: -226px;
  }
}
@media (max-width: 1320px) {
  #gourmet .gourmetList > li .catchCopy {
    left: calc((100vw - 868px - 60px) / 2 * -1);
    font-size: calc(64 / 1320 * 100vw);
  }
}
@media (max-width: 868px) {
  #gourmet .gourmetList > li .catchCopy {
    left: 30px;
  }
}
@media (max-width: 768px) {
  #gourmet .gourmetList > li .catchCopy {
    top: -34px;
    left: 30px;
    font-size: 24px;
  }
}
#gourmet .gourmetList > li .name {
  position: absolute;
  top: 357px;
  left: -114px;
  font-family: "Inter", sans-serif;
  font-size: 39px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}
@media (min-width: 1320px) {
  #gourmet .gourmetList > li .name {
    top: 357px;
    left: -114px;
  }
}
@media (max-width: 1320px) {
  #gourmet .gourmetList > li .name {
    left: calc((100vw - 868px - 60px) / 2 * -1);
    font-size: calc(39 / 1320 * 100vw);
  }
}
@media (max-width: 868px) {
  #gourmet .gourmetList > li .name {
    left: 30px;
  }
}
@media (max-width: 768px) {
  #gourmet .gourmetList > li .name {
    top: auto;
    bottom: 169px;
  }
}
@media (max-width: 560px) {
  #gourmet .gourmetList > li .name {
    bottom: 145px;
    font-size: 16px;
  }
}
#gourmet .gourmetList > li .name i {
  position: relative;
  display: block;
  font-weight: 400;
  margin-top: -3px;
}
#gourmet .gourmetList > li figure {
  margin-bottom: 32px;
}
@media (max-width: 868px) {
  #gourmet .gourmetList > li figure {
    margin-bottom: 47px;
  }
}
@media (max-width: 768px) {
  #gourmet .gourmetList > li figure {
    margin-inline: -30px;
    margin-top: 73px;
  }
}
@media (max-width: 768px) {
  #gourmet .gourmetList > li figure img {
    max-width: calc(100% + 60px);
  }
}
#gourmet .gourmetList > li .menu {
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  #gourmet .gourmetList > li .menu {
    font-size: 17px;
    margin-bottom: 13px;
  }
}
#gourmet .gourmetList > li .price {
  font-size: 14px;
  line-height: 1;
}
@media (max-width: 768px) {
  #gourmet .gourmetList > li .price {
    font-size: 13px;
  }
}

#campaign {
  color: #fff;
  background: #272727;
  margin-top: 120px;
}
@media (max-width: 768px) {
  #campaign {
    margin-top: 80px;
  }
}
#campaign .head {
  border-color: #fff;
}
#campaign .head::after {
  color: #dcdcdc;
}
#campaign .head::before {
  background-image: url(../img/logo_nation_white.svg);
}
#campaign .campaignList {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 64px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px 64px;
}
@media (min-width: 1320px) {
  #campaign .campaignList {
    gap: 36px 64px;
  }
}
@media (max-width: 1320px) {
  #campaign .campaignList {
    gap: calc(36 / 1320 * 100vw) calc(64 / 1320 * 100vw);
  }
}
@media (max-width: 868px) {
  #campaign .campaignList {
    -ms-grid-columns: 1fr;
    grid-template-columns: repeat(1, 1fr);
    gap: 48px;
  }
}
#campaign .campaignList > li {
  counter-increment: count;
  padding-left: 48px;
}
@media (max-width: 768px) {
  #campaign .campaignList > li {
    padding-left: 0;
    padding-top: 25px;
  }
}
#campaign .campaignList > li::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 1.5em;
  content: "[#0" counter(count) "]";
  text-align: left;
  line-height: 1;
  color: #fff;
  font-size: 14px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  z-index: 2;
}
@media (max-width: 768px) {
  #campaign .campaignList > li::after {
    font-size: 13px;
  }
}
#campaign .campaignList > li a {
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 36px;
}
@media (min-width: 1320px) {
  #campaign .campaignList > li a {
    gap: 36px;
  }
}
@media (max-width: 1320px) {
  #campaign .campaignList > li a {
    gap: calc(36 / 1320 * 100vw);
  }
}
@media (max-width: 768px) {
  #campaign .campaignList > li a {
    gap: 16px;
  }
}
#campaign .campaignList > li a figure {
  margin-bottom: 30px;
}
#campaign .campaignList > li a figure img {
  min-width: 255px;
}
@media (min-width: 1320px) {
  #campaign .campaignList > li a figure img {
    min-width: 255px;
  }
}
@media (max-width: 1320px) {
  #campaign .campaignList > li a figure img {
    min-width: calc(255 / 1320 * 100vw);
  }
}
@media (max-width: 768px) {
  #campaign .campaignList > li a figure img {
    min-width: 174px;
  }
}
#campaign .campaignList > li a h3 {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 20px;
}
@media (max-width: 768px) {
  #campaign .campaignList > li a h3 {
    font-size: 17px;
  }
}
#campaign .campaignList > li a p {
  color: #D2D4DA;
  line-height: 1.85;
}
#campaign .campaignList > li a p.btn {
  margin-top: 18px;
  max-width: 190px;
}
@media (max-width: 560px) {
  #campaign .campaignList > li a p.btn {
    margin-left: -190px;
    max-width: 300%;
  }
}

#cityDressing {
  padding-bottom: 0;
}
#cityDressing .head br {
  display: none;
}
@media (max-width: 560px) {
  #cityDressing .head br {
    display: block;
  }
}
#cityDressing .cityDressingList {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 36px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
}
@media (max-width: 768px) {
  #cityDressing .cityDressingList {
    gap: 32px 18px;
  }
}
#cityDressing .cityDressingList > li h3 {
  text-align: center;
  font-weight: 700;
  line-height: 1.2;
  margin-top: 10px;
}
@media (max-width: 768px) {
  #cityDressing .cityDressingList > li h3 {
    font-size: 15px;
  }
}

#movie {
  padding-bottom: 30px;
}
#movie .movieList {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 36px 1fr 36px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}
@media (max-width: 768px) {
  #movie .movieList {
    -ms-grid-columns: 1fr;
    grid-template-columns: repeat(1, 1fr);
    gap: 40px;
    margin-top: 40px;
    padding-inline: 30px;
  }
}
#movie .movieList > li a {
  position: relative;
  display: block;
  text-decoration: none;
}
#movie .movieList > li h3 {
  text-align: center;
  font-weight: 700;
  line-height: 1.2;
  margin-top: 18px;
}
@media (max-width: 768px) {
  #movie .movieList > li h3 {
    margin-top: 14px;
    font-size: 15px;
  }
}

#buyTicket {
  margin-top: 120px;
  padding: 0;
  border-top: 1px solid #000;
  overflow: hidden;
}
@media (max-width: 768px) {
  #buyTicket {
    margin-top: 80px;
  }
}
#buyTicket a {
  position: relative;
  display: block;
  width: 100%;
  height: 160px;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
@media (max-width: 768px) {
  #buyTicket a {
    height: 88px;
  }
}
#buyTicket a::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 200%;
  height: 100%;
  background-image: url(../img/text_buyTicket.svg);
  background-position: 0 center;
  background-repeat: repeat-x;
  background-size: auto 47px;
  -webkit-animation: scroll 15s linear infinite;
          animation: scroll 15s linear infinite;
}
@media (max-width: 768px) {
  #buyTicket a::before {
    background-size: auto 26px;
  }
}
#buyTicket a:hover {
  background: #000;
}
#buyTicket a:hover::before {
  background-image: url(../img/text_buyTicket_h.svg);
}

@-webkit-keyframes scroll {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

@keyframes scroll {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
/*# sourceMappingURL=style.css.map */