@charset "UTF-8";
@import url("https://use.fontawesome.com/releases/v6.4.2/css/all.css");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap");
* {
  box-sizing: border-box;
}

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

html {
  font-size: 62.5%;
}

body {
  padding-top: 80px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
}
@media only screen and (max-width: 600px) {
  body {
    padding-top: 72px;
  }
}

.common-inner {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
}

@media only screen and (max-width: 767px) {
  .sp-hidden {
    display: none;
  }
}

.common-heading {
  margin: 0 0 40px;
  color: #fff;
  font-size: 3.2rem;
  line-height: 1.2;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .common-heading {
    margin-bottom: 28px;
    font-size: 2.4rem;
  }
}

/*========
   Header
========*/
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  height: 80px;
  background: #40003c;
  border-bottom: 4px solid #e6002d;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding-right: 20px;
  padding-left: 20px;
}

.site-header__logo {
  display: block;
}

.site-header__logo img {
  display: block;
  width: auto;
  max-width: 240px;
  height: 60px;
}

.site-header__nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.site-header__nav a {
  color: #fff;
  font-size: 2.4rem;
  font-weight: bold;
  white-space: nowrap;
  text-decoration: none;
}

.site-header__nav a small {
  margin-left: 2px;
  font-size: 1.4rem;
}

.site-header__nav-marker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 1em;
  color: #ffe13a;
  font-size: 1.2rem;
  line-height: 1;
  vertical-align: middle;
}

.site-header__nav-break {
  display: none;
}

.site-header__nav a:hover {
  opacity: 0.7;
}

@media only screen and (max-width: 600px) {
  .site-header {
    height: 72px;
  }
  .site-header__logo img {
    max-width: 150px;
    height: 50px;
  }
  .site-header__nav {
    gap: 16px;
  }
  .site-header__nav a {
    font-size: 1.4rem;
    line-height: 1.4;
    text-align: center;
  }
  .site-header__nav a small {
    font-size: 1rem;
  }
  .site-header__nav-break {
    display: block;
  }
}
/*========
   Key visual
========*/
.key-visual picture,
.key-visual img {
  display: block;
  width: 100%;
}
.key-visual img {
  height: auto;
}

/*========
   Ticket CTA
========*/
.ticket-cta {
  width: min(600px, 100% - 32px);
  margin-inline: auto;
}
.ticket-cta--follow {
  position: fixed;
  right: 0;
  bottom: 40px;
  z-index: 1200;
  width: min(480px, 100% - 32px);
  margin: 0;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}
.ticket-cta--follow .ticket-cta__link {
  min-height: 77px;
  border-radius: 14px 0 0 14px;
}
.ticket-cta--follow.is-hidden {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}
.ticket-cta--static {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  width: min(1200px, 100% - 32px);
  margin-top: 60px;
}
.ticket-cta--static .ticket-cta__link {
  grid-template-columns: 1fr 72px 68px;
}
.ticket-cta--static .ticket-cta__emblem {
  transform: translateX(-8px);
}
.ticket-cta__link {
  display: grid;
  grid-template-columns: 72px 1fr 68px;
  align-items: center;
  min-height: 96px;
  overflow: hidden;
  border: 3px solid #80046d;
  border-radius: 14px;
  background: #fbd647;
  color: #80046d;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.ticket-cta__link:hover, .ticket-cta__link:focus-visible {
  background: #80046d;
  color: #fbd647;
}
.ticket-cta__link:hover .ticket-cta__arrow::before, .ticket-cta__link:focus-visible .ticket-cta__arrow::before {
  transform: translate(4px, -0.08em);
}
.ticket-cta__link--disabled {
  filter: grayscale(1);
  cursor: not-allowed;
}
.ticket-cta__link--disabled:hover {
  background: #fbd647;
  color: #80046d;
}
.ticket-cta__link--disabled:hover .ticket-cta__arrow::before {
  transform: translateY(-0.08em);
}
.ticket-cta__icon {
  width: 48px;
  height: 48px;
  margin-inline: auto;
  background-color: currentColor;
  -webkit-mask: url("../img/icon_ticket.svg") center/contain no-repeat;
  mask: url("../img/icon_ticket.svg") center/contain no-repeat;
}
.ticket-cta__emblem {
  display: block;
  width: 64px;
  height: 64px;
  margin-inline: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.ticket-cta__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  background: #80046d;
  color: #fbd647;
  font-size: 4rem;
}
.ticket-cta__arrow::before {
  content: "›";
  line-height: 1;
  transform: translateY(-0.08em);
  transition: transform 0.2s ease;
}
@media only screen and (max-width: 767px) {
  .ticket-cta {
    width: calc(100% - 32px);
  }
  .ticket-cta--follow {
    position: fixed;
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1200;
    width: 100%;
    margin: 0;
  }
  .ticket-cta--follow .ticket-cta__link {
    min-height: 40px;
    border-radius: 0;
  }
  .ticket-cta--static {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 40px;
  }
  .ticket-cta--static .ticket-cta__link {
    grid-template-columns: 1fr 48px 48px;
  }
  .ticket-cta--static .ticket-cta__emblem {
    transform: translateX(-6px);
  }
  .ticket-cta__link {
    grid-template-columns: 48px 1fr 48px;
    min-height: 64px;
    border-width: 2px;
    border-radius: 10px;
    font-size: 1.8rem;
  }
  .ticket-cta__icon {
    width: 32px;
    height: 32px;
  }
  .ticket-cta__emblem {
    width: 40px;
    height: 40px;
  }
  .ticket-cta__arrow {
    font-size: 3rem;
  }
}

/*========
   Common lead
========*/
.common-lead {
  width: 100%;
  background-image: url("../img/bg_common-lead.jpg");
  background-position: center;
  background-size: cover;
  text-align: center;
}

.common-lead__inner {
  padding: 120px 40px;
  background: rgba(255, 255, 255, 0.6);
}

.common-lead__inner p {
  margin: 0;
  color: #80046d;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 2;
}

.common-lead__inner p + p {
  margin-top: 40px;
}

@media only screen and (max-width: 767px) {
  .common-lead__inner {
    padding: 60px 20px;
  }
  .common-lead__inner p {
    font-size: 1.6rem;
    line-height: 1.8;
    text-align: left;
  }
  .common-lead__inner p + p {
    margin-top: 20px;
  }
}
/*========
   Photo slider
========*/
.photo-slider {
  width: 100%;
  height: 240px;
  overflow: hidden;
}

.photo-slider__track {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  height: 100%;
  animation: photo-slider-scroll 50s linear infinite;
}

.photo-slider__group {
  display: flex;
  flex-shrink: 0;
  height: 100%;
  margin: 0;
}

.photo-slider__group img {
  display: block;
  flex-shrink: 0;
  width: auto;
  max-width: none;
  height: 240px;
  margin: 0;
}

@media only screen and (max-width: 767px) {
  .photo-slider {
    height: 160px;
  }
  .photo-slider__group img {
    height: 160px;
  }
}
.photo-slider:hover .photo-slider__track {
  animation-play-state: paused;
}

@keyframes photo-slider-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .photo-slider__track {
    animation-play-state: paused;
  }
}
/*========
   Match content
========*/
.match-area {
  width: 100%;
  padding-bottom: 80px;
  overflow: hidden;
  background: #d9c8d8 url("../img/bg_match-panel.jpg") center top/cover fixed;
}

.match-area__header {
  padding-top: 36px;
  text-align: center;
  background: rgba(64, 0, 60, 0.25) url("../img/bg_match-tabs.jpg") center/cover;
  border-bottom: 12px solid #ffe13a;
}

.match-area__visual {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 20px;
  width: min(760px, 100% - 32px);
  margin: 0 auto;
}

.match-area__heading {
  flex: 1;
  max-width: 414px;
  margin: 0 0 20px;
}

.match-area__heading img {
  display: block;
  width: 100%;
  height: auto;
}

.match-area__mascot {
  flex-shrink: 0;
  width: 100px;
  height: auto;
}

.match-tabs {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 12px;
  width: min(760px, 100% - 32px);
  margin: 0 auto -1px;
}

.match-tab {
  display: grid;
  grid-template-columns: 90px auto;
  grid-template-rows: auto auto;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 12px;
       column-gap: 12px;
  width: 50%;
  min-height: 112px;
  padding: 12px 20px 8px;
  border: 0;
  border-radius: 8px 8px 0 0;
  background: #e7e7e7;
  color: #666;
  font-family: inherit;
  text-align: left;
  cursor: pointer;
}

.match-tab:not(.is-active) {
  color: #919090;
  transition: color 0.2s ease;
}
.match-tab:not(.is-active) .match-tab__emblem {
  opacity: 0.6;
  transition: opacity 0.2s ease;
}
.match-tab:not(.is-active):hover {
  color: #212121;
}
.match-tab:not(.is-active):hover .match-tab__emblem {
  opacity: 1;
}

.match-tab.is-active {
  background: #ffe13a;
  color: #80046d;
}

.match-tab__emblem {
  grid-row: 1/3;
  width: 90px;
  height: 90px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.match-tab__emblem--mito {
  background-image: url("../img/em_mito.svg");
}

.match-tab__emblem--fukuoka {
  background-image: url("../img/em_fukuoka.svg");
}

.match-tab__date {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 1;
}

.match-tab__date small {
  font-size: 2rem;
  line-height: 1.1;
}

.match-tab__opponent {
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.match-panel {
  overflow: visible;
  background: #f4f4f4;
  scroll-margin-top: 80px;
}
@media only screen and (max-width: 600px) {
  .match-panel {
    scroll-margin-top: 100px;
  }
}

.match-panel[hidden] {
  display: none;
}

.match-kv {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: content-box;
  width: 100%;
  aspect-ratio: 80/29;
  background-color: #f7f7f7;
  background-position: center;
  background-size: cover;
}

.match-kv--mito {
  background-image: url("../img/kv_mito.jpg");
}

.match-kv--fukuoka {
  background-image: url("../img/kv_fukuoka.jpg");
}

/* 一時非表示
.match-lead {
    position: relative;
    min-height: 350px;
    padding: 80px 190px;
    overflow: visible;
    background: linear-gradient(rgba(64, 0, 60, 0.28), rgba(64, 0, 60, 0.28)), url("../img/slide/photo_01.jpg") center / cover;
}

.match-lead--mito {
    background-image: linear-gradient(rgba(64, 0, 60, 0.28), rgba(64, 0, 60, 0.28)), url("../img/bg_mito-lead.jpg");
    background-position: top center;
}

.match-lead__text {
    position: relative;
    z-index: 3;
    color: #fff;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 2;
    text-align: center;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.7);
}

.match-lead__text p {
    margin: 0;
}

.match-lead__text p+p {
    margin-top: 8px;
}

.match-lead__mascot {
    position: absolute;
    bottom: 0;
    z-index: 2;
    width: auto;
    height: 300px;
    pointer-events: none;
}

.match-lead__mascot--left {
    left: -70px;
}

.match-lead__mascot--right {
    right: -80px;
}
*/
.match-pickup {
  position: relative;
  padding: 80px 80px 64px;
  overflow: visible;
  color: #fff;
  background: #80046d;
}

.match-pickup > .common-heading {
  position: relative;
  z-index: 3;
}

.match-pickup__mascot {
  position: absolute;
  z-index: 1;
  width: auto;
  height: 260px;
  pointer-events: none;
}

.match-pickup__mascot--04 {
  height: 250px;
  top: 25px;
  left: -60px;
}

.match-pickup__mascot--05 {
  top: 20px;
  right: -80px;
}

.match-pickup__mascot--06 {
  height: 250px;
  top: 20px;
  left: -70px;
}

.match-pickup__mascot--07 {
  top: 20px;
  right: -80px;
}

.match-pickup__viewport {
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.match-pickup__track {
  display: flex;
  transition: transform 0.4s ease;
}

.match-pickup__item {
  flex: 0 0 100%;
  text-align: center;
}

.match-pickup__image {
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
  background-color: #fff;
  -o-object-fit: cover;
     object-fit: cover;
}

.match-pickup__item h3 {
  margin: 32px 0 12px;
  font-size: 2.8rem;
  line-height: 1.4;
}

.match-pickup__item p {
  margin: 0;
  font-size: 1.7rem;
  line-height: 1.8;
}

.match-pickup__text--left {
  text-align: left;
}

.match-pickup__gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 4px;
  margin-top: 48px;
}
.match-pickup__gallery img {
  display: block;
  width: 100%;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
}

.match-pickup__subheading {
  margin: 56px 0 20px;
  padding-left: 12px;
  border-left: 6px solid #fff;
  font-size: 2.2rem;
  line-height: 1.4;
  text-align: left;
}

.match-pickup__table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  color: #212121;
  font-size: 1.6rem;
  line-height: 1.5;
  text-align: left;
}
.match-pickup__table th,
.match-pickup__table td {
  padding: 18px 20px;
  border-bottom: 1px solid #fff;
}
.match-pickup__table th {
  width: 28%;
  background: #000;
  color: #fff;
  font-weight: 700;
  text-align: center;
}
.match-pickup__table td {
  background: #f4f4f4;
}
.match-pickup__table tr:last-child th,
.match-pickup__table tr:last-child td {
  border-bottom: 0;
}

.match-pickup__notes {
  margin-top: 32px;
  text-align: left;
}
.match-pickup__notes h4 {
  margin: 0 0 8px;
  font-size: 1.8rem;
  line-height: 1.5;
}
.match-pickup__notes small {
  display: block;
  font-size: 1.3rem;
  line-height: 1.8;
}

.match-pickup__more {
  display: grid;
  grid-template-columns: 1fr 48px;
  align-items: center;
  width: min(420px, 100%);
  min-height: 67px;
  margin: 48px auto 0;
  padding: 0;
  overflow: hidden;
  border: 2px solid #fff;
  border-radius: 14px;
  background: #fff;
  color: #80046d;
  font-family: inherit;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.match-pickup__more:hover .match-pickup__more-arrow::before {
  transform: translate(4px, -0.08em);
}

.match-pickup__more-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  border-radius: 0 14px 14px 0;
  background: #80046d;
  color: #fbd647;
  font-size: 4rem;
}
.match-pickup__more-arrow::before {
  content: "›";
  line-height: 1;
  transform: translateY(-0.08em);
  transition: transform 0.2s ease;
}

/*========
   Pickup modal
========*/
body.is-modal-open {
  overflow: hidden;
}

.pickup-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  padding: 5vh 24px;
  background: rgba(64, 0, 60, 0.5);
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.pickup-modal.is-open {
  visibility: visible;
  opacity: 1;
}

.pickup-modal[hidden] {
  display: none;
}

.pickup-modal__dialog {
  width: min(1000px, 100%);
  height: 90vh;
  height: 90dvh;
  padding: 48px;
  overflow-y: auto;
  overscroll-behavior: contain;
  background: #fff;
  color: #212121;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.7rem;
  line-height: 1.8;
  letter-spacing: normal;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.pickup-modal__dialog--empty {
  display: flex;
  flex-direction: column;
}
.pickup-modal__dialog--empty .pickup-modal__close {
  margin: auto auto 0;
}

.pickup-modal__article {
  width: 100%;
}
.pickup-modal__article > h3 {
  margin-top: 52px;
  letter-spacing: normal;
}
.pickup-modal__article .match-pickup__subheading {
  margin-top: 76px;
  border-left-color: #80046d;
}

.pickup-modal__article--news {
  text-align: left;
}
.pickup-modal__article--news > h3:first-child {
  margin-top: 20px;
  color: #212121;
  text-align: center;
}
.pickup-modal__article--news p + p {
  margin-top: 12px;
}

.pickup-modal__image {
  display: block;
  width: 100%;
  height: auto;
  margin: 32px 0;
}
.pickup-modal__image--contain {
  max-height: 560px;
  -o-object-fit: contain;
     object-fit: contain;
}
.pickup-modal__image--medium {
  width: min(500px, 100%);
  margin-right: auto;
  margin-left: auto;
}

.pickup-modal__gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 32px 0;
}
.pickup-modal__gallery img {
  display: block;
  width: 100%;
  height: auto;
}

.pickup-modal__text--center {
  text-align: center;
}

.pickup-modal__heading {
  margin: 68px 0 20px;
  padding-left: 12px;
  border-left: 6px solid #80046d;
  font-size: 2.2rem;
  line-height: 1.4;
  letter-spacing: normal;
  text-align: left;
}

.pickup-modal__subheading {
  margin: 24px 0 8px;
  font-size: 1.8rem;
  line-height: 1.5;
  letter-spacing: normal;
  text-align: left;
}
.pickup-modal__subheading::before {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-right: 8px;
  background: #80046d;
  content: "";
}

.pickup-modal__copyright {
  font-size: 1.3rem !important;
  line-height: 1.8 !important;
  letter-spacing: normal;
}

.pickup-modal__product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin: 32px 0;
}
.pickup-modal__product-grid figure {
  margin: 0;
}
.pickup-modal__product-grid img {
  display: block;
  width: 100%;
  height: auto;
}
.pickup-modal__product-grid figcaption {
  margin-top: 8px;
  font-size: 1.3rem;
  line-height: 1.5;
  text-align: center;
}

.pickup-modal__product-image {
  display: block;
  width: min(560px, 100%);
  height: auto;
  margin: 32px auto;
}

.pickup-modal__note {
  margin-top: 20px !important;
  font-size: 1.3rem !important;
}

.pickup-modal__update {
  color: #e6002d;
}

.pickup-modal__link {
  color: #80046d;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.pickup-modal__close {
  display: block;
  margin: 40px auto 0;
  padding: 10px 26px;
  border: 2px solid #80046d;
  border-radius: 14px;
  background: #fff;
  color: #80046d;
  font-family: inherit;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.4;
  cursor: pointer;
}

.match-pickup__arrow {
  position: absolute;
  top: 45%;
  z-index: 3;
  width: 32px;
  height: 32px;
  border: 0;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  background: transparent;
  cursor: pointer;
}

.match-pickup__arrow--prev {
  left: 28px;
  transform: rotate(-135deg);
}

.match-pickup__arrow--next {
  right: 28px;
  transform: rotate(45deg);
}

.match-pickup__dots {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 52px;
}

.match-pickup.is-single .match-pickup__arrow,
.match-pickup.is-single .match-pickup__dots {
  display: none;
}

.match-pickup__dot {
  width: 120px;
  height: 4px;
  padding: 0;
  border: 0;
  background: #fff;
  opacity: 0.65;
  cursor: pointer;
}

.match-pickup__dot.is-active {
  background: #ffe13a;
  opacity: 1;
}

@media only screen and (max-width: 767px) {
  .match-area {
    padding-bottom: 0px;
    background-attachment: scroll;
  }
  .match-area__header {
    padding-top: 24px;
    border-bottom-width: 8px;
  }
  .match-area__visual {
    gap: 8px;
    width: calc(100% - 16px);
  }
  .match-area__mascot {
    width: 60px;
  }
  .match-tabs {
    gap: 4px;
    width: calc(100% - 16px);
  }
  .match-tab {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    -moz-column-gap: 0;
         column-gap: 0;
    min-height: 80px;
    padding: 10px 6px;
    text-align: center;
  }
  .match-tab__emblem {
    width: 46px;
    height: 46px;
  }
  .match-tab__date {
    font-size: 2.2rem;
    gap: 4px;
    padding-left: 4px;
  }
  .match-tab__opponent {
    width: 100%;
    font-size: 1.2rem;
  }
  .match-tab__date small {
    font-size: 1.4rem;
    line-height: 1;
    text-align: left;
  }
  /* 一時非表示
  .match-lead {
      min-height: 0;
      padding: 48px 24px 180px;
  }

  .match-lead__text {
      font-size: 1.4rem;
      line-height: 1.8;
  }

  .match-lead__mascot {
      width: auto;
      height: 200px;
  }

  .match-lead__mascot--left {
      left: -60px;
  }

  .match-lead__mascot--right {
      right: -60px;
  }
  */
  .match-pickup {
    padding: 56px 40px 40px;
  }
  .match-pickup__mascot {
    height: 170px;
  }
  .match-pickup__mascot--04 {
    top: 18px;
    left: -36px;
    transform: rotate(24deg);
  }
  .match-pickup__mascot--05 {
    top: 8px;
    right: -50px;
    transform: rotate(-4deg);
  }
  .match-pickup__mascot--06 {
    top: 16px;
    left: -40px;
    transform: rotate(40deg);
  }
  .match-pickup__mascot--07 {
    top: 10px;
    right: -40px;
    transform: rotate(-15deg);
  }
  .match-pickup__item h3 {
    margin-top: 24px;
    font-size: 2.2rem;
  }
  .match-pickup__item p {
    font-size: 1.4rem;
  }
  .match-pickup__gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 32px;
  }
  .match-pickup__subheading {
    margin-top: 36px;
    padding-left: 8px;
    border-left-width: 4px;
    font-size: 1.8rem;
  }
  .match-pickup__table {
    font-size: 1.2rem;
  }
  .match-pickup__table th,
  .match-pickup__table td {
    padding: 12px 8px;
  }
  .match-pickup__table th {
    width: 32%;
  }
  .match-pickup__notes {
    margin-top: 24px;
  }
  .match-pickup__notes h4 {
    margin-bottom: 12px;
    font-size: 1.5rem;
  }
  .match-pickup__notes small {
    font-size: 1.1rem;
  }
  .match-pickup__more {
    grid-template-columns: 1fr 48px;
    min-height: 64px;
    margin-top: 32px;
    border-width: 3px;
    border-radius: 10px;
    font-size: 1.8rem;
  }
  .match-pickup__more-arrow {
    border-radius: 0 10px 10px 0;
    font-size: 3rem;
  }
  .pickup-modal {
    padding: 5vh 12px;
  }
  .pickup-modal__dialog {
    padding: 24px 16px;
    font-size: 1.4rem;
  }
  .pickup-modal__article > h3 {
    margin-top: 44px;
  }
  .pickup-modal__article .match-pickup__subheading {
    margin-top: 56px;
  }
  .pickup-modal__article--news > h3:first-child {
    margin-top: 20px;
  }
  .pickup-modal__heading {
    margin-top: 56px;
    padding-left: 8px;
    border-left-width: 4px;
    font-size: 1.8rem;
  }
  .pickup-modal__subheading {
    margin-top: 44px;
    font-size: 1.5rem;
  }
  .pickup-modal__copyright {
    font-size: 1.1rem !important;
  }
  .pickup-modal__product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .pickup-modal__product-grid figcaption {
    font-size: 1.1rem;
  }
  .pickup-modal__note {
    font-size: 1.1rem !important;
  }
  .pickup-modal__close {
    margin-top: 32px;
    font-size: 1.6rem;
  }
  .match-pickup__arrow {
    width: 22px;
    height: 22px;
  }
  .match-pickup__arrow--prev {
    left: 12px;
  }
  .match-pickup__arrow--next {
    right: 12px;
  }
  .match-pickup__dot {
    width: 60px;
  }
}
/*========
   Seat map
========*/
.ticket-area {
  width: 100%;
  padding-block: 80px;
  background: url("../img/bg_ticket.jpg") center top/cover;
}
@media only screen and (max-width: 767px) {
  .ticket-area {
    padding-block: 40px;
  }
}

.seat-map ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.seat-map p {
  margin: 0;
}
.seat-map table {
  width: 100%;
  border-collapse: collapse;
}
.seat-map img {
  max-width: 100%;
}
.seat-map__content {
  margin-top: 50px;
  background-color: #fff;
}
@media only screen and (max-width: 988px) {
  .seat-map__content {
    margin-top: 20px;
  }
}
.seat-map__tabs {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  height: 83px;
  border-bottom: 4px solid #554744;
}
@media only screen and (max-width: 988px) {
  .seat-map__tabs {
    width: 100%;
    margin-top: 0;
    overflow-x: auto;
  }
}
.seat-map__tab {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 20px 2px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
  cursor: pointer;
}
.seat-map__tab::after {
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: 30px;
  border-right: 1px solid #ccc;
  content: "";
  transform: translateY(-50%);
}
.seat-map__tab:hover, .seat-map__tab.is-active {
  color: #fff;
}
.seat-map__tab:hover::after, .seat-map__tab.is-active::after {
  border: 0;
}
.seat-map__tab:last-child::after {
  border: 0;
}
@media only screen and (max-width: 988px) {
  .seat-map__tab {
    padding: 20px 10px;
    white-space: nowrap;
  }
}
.seat-map__layout {
  display: flex;
  align-items: stretch;
}
@media only screen and (max-width: 988px) {
  .seat-map__layout {
    display: block;
  }
}
.seat-map__image {
  width: 800px;
  padding: 30px 24px;
  border-right: 2px solid #fff;
  background: #f2f2f2;
}
@media only screen and (max-width: 988px) {
  .seat-map__image {
    width: 100%;
    padding: 10px 6px;
    border: 0;
  }
  .seat-map__image img {
    width: 100%;
    height: auto;
  }
}
.seat-map__panels {
  background: #f3f3f3;
}
.seat-map__panels figure {
  text-align: center;
}
.seat-map__panels img {
  width: 100%;
  max-width: 100%;
}
.seat-map__panels > ul > .seat-map__panel {
  display: none;
  width: 400px;
  height: 100%;
  padding: 10px;
  background: #f3f3f3;
}
.seat-map__panels > ul > .seat-map__panel.is-current {
  display: block;
}
@media only screen and (max-width: 988px) {
  .seat-map__panels > ul > .seat-map__panel {
    width: 100%;
    height: auto;
    padding: 15px;
  }
}

.seat-map__tab--default:hover,
.seat-map__tab--default.is-active {
  background: #554744;
}

.seat-map__tabs[data-active-seat=tabseat_default] {
  border-color: #554744;
}

.seat-map__tab--00:hover,
.seat-map__tab--00.is-active {
  background: #554744;
}

.seat-map__tabs[data-active-seat=tabseat_00] {
  border-color: #554744;
}

.seat-map__tab--01:hover,
.seat-map__tab--01.is-active {
  background: #a08a23;
}

.seat-map__tabs[data-active-seat=tabseat_01] {
  border-color: #a08a23;
}

.seat-map__tab--02:hover,
.seat-map__tab--02.is-active {
  background: #750069;
}

.seat-map__tabs[data-active-seat=tabseat_02] {
  border-color: #750069;
}

.seat-map__tab--03:hover,
.seat-map__tab--03.is-active {
  background: #cd6715;
}

.seat-map__tabs[data-active-seat=tabseat_03] {
  border-color: #cd6715;
}

.seat-map__tab--04:hover,
.seat-map__tab--04.is-active {
  background: #9f9122;
}

.seat-map__tabs[data-active-seat=tabseat_04] {
  border-color: #9f9122;
}

.seat-map__tab--05:hover,
.seat-map__tab--05.is-active {
  background: #b01f24;
}

.seat-map__tabs[data-active-seat=tabseat_05] {
  border-color: #b01f24;
}

.seat-map__tab--06:hover,
.seat-map__tab--06.is-active {
  background: #d93569;
}

.seat-map__tabs[data-active-seat=tabseat_06] {
  border-color: #d93569;
}

.seat-map__tab--07:hover,
.seat-map__tab--07.is-active {
  background: #947f28;
}

.seat-map__tabs[data-active-seat=tabseat_07] {
  border-color: #947f28;
}

.seat-map__tab--08:hover,
.seat-map__tab--08.is-active {
  background: #d80c18;
}

.seat-map__tabs[data-active-seat=tabseat_08] {
  border-color: #d80c18;
}

.seat-map__tab--09:hover,
.seat-map__tab--09.is-active {
  background: #e0815e;
}

.seat-map__tabs[data-active-seat=tabseat_09] {
  border-color: #e0815e;
}

.seat-map__tab--10:hover,
.seat-map__tab--10.is-active {
  background: #2a6198;
}

.seat-map__tabs[data-active-seat=tabseat_10] {
  border-color: #2a6198;
}

.seat-map__tab--11:hover,
.seat-map__tab--11.is-active {
  background: #6c2463;
}

.seat-map__tabs[data-active-seat=tabseat_11] {
  border-color: #6c2463;
}

.seat-map__tab--12:hover,
.seat-map__tab--12.is-active {
  background: #92558a;
}

.seat-map__tabs[data-active-seat=tabseat_12] {
  border-color: #92558a;
}

.seat-map__tab--13:hover,
.seat-map__tab--13.is-active {
  background: #3c2578;
}

.seat-map__tabs[data-active-seat=tabseat_13] {
  border-color: #3c2578;
}

.seat-map__tab--14:hover,
.seat-map__tab--14.is-active {
  background: #7a62a9;
}

.seat-map__tabs[data-active-seat=tabseat_14] {
  border-color: #7a62a9;
}

.seat-map__tab--15:hover,
.seat-map__tab--15.is-active {
  background: #374e28;
}

.seat-map__tabs[data-active-seat=tabseat_15] {
  border-color: #374e28;
}

.seat-map__tab--16:hover,
.seat-map__tab--16.is-active {
  background: #004871;
}

.seat-map__tabs[data-active-seat=tabseat_16] {
  border-color: #004871;
}

.seat-card {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 0;
  background: #f3f3f3;
}
@media only screen and (max-width: 988px) {
  .seat-card {
    margin: 0 4px 20px;
  }
}
.seat-card__thumbnail {
  position: relative;
  flex: 1;
}
.seat-card__thumbnail img {
  display: block;
  width: 100%;
  height: auto;
}
.seat-card__thumbnail p {
  position: absolute;
  right: 10px;
  bottom: 10px;
  padding: 5px 10px;
  border-radius: 3px;
  background: #ed193a;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.08;
}
.seat-card h5 {
  position: relative;
  flex: 2;
  width: 100%;
  height: 50px;
  margin: 0;
  padding: 0 0 0 50px !important;
  border: 0;
  background: #f3f3f3;
  color: #fff;
  font-size: 2rem;
  line-height: 50px;
  text-align: center;
}
.seat-card h5 span:first-child {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 50px;
  padding: 0;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 50px !important;
  text-align: center;
}
.seat-card h5 span + span {
  display: block;
  padding-left: 10px;
  text-align: left;
}
@media only screen and (max-width: 413px) {
  .seat-card h5 {
    font-size: 1.8rem;
    line-height: 50px !important;
  }
  .seat-card h5 span:first-child {
    font-size: 2rem;
    line-height: 50px !important;
  }
}
.seat-card__note {
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 2;
  text-align: left;
}
.seat-card__body {
  display: flex;
  flex: auto;
  flex-direction: column;
  padding-top: 20px;
  background: #f3f3f3;
}
.seat-card__body > p {
  flex: 2;
  margin-top: 10px;
  font-size: 1.6rem;
  line-height: 1.5;
}
.seat-card__body > a,
.seat-card__body > span {
  position: relative;
  z-index: 1;
  display: block;
  width: 80%;
  margin: 20px auto 0;
  padding-left: 30px;
  overflow: hidden;
  border: 1px solid #6f0c6b;
  border-radius: 23px;
  background: #fff;
  color: #6f0c6b;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 44px;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: 0.3s;
}
.seat-card__body > a img,
.seat-card__body > span img {
  position: absolute;
  top: 50%;
  left: 10px;
  width: 50px;
  transform: translateY(-50%);
}
.seat-card__body > a::before {
  position: absolute;
  top: -50%;
  right: 0;
  z-index: -1;
  width: 120%;
  height: 200%;
  border-radius: 0 100% 100% 0;
  background: #fff5ff;
  content: "";
  transform: translateX(-100%);
  transition: transform 0.2s ease;
}
.seat-card__body > a:hover::before {
  transform: translateX(10%);
}
.seat-card__labels {
  display: flex;
  flex: 1;
}
.seat-card__labels > p {
  display: block;
  width: 70px;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1 !important;
}
.seat-card__labels > div {
  width: calc(100% - 70px);
}
.seat-card__labels > div > ul {
  line-height: 0;
}
.seat-card__labels > div > p {
  width: 100%;
  padding-left: 1rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.4;
  text-indent: -1rem;
}
.seat-card__label {
  display: inline-block;
  width: auto;
  height: auto;
  margin: 0 5px 5px 0;
  padding: 0 8px;
  border-radius: 3px;
  background: #ccc;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.7;
}
.seat-card__label--purple {
  background: #6f0c6b;
}
.seat-card__label--gold {
  background: #b9a879;
}
.seat-card__subnote {
  margin-top: unset;
  font-size: 1rem;
  font-weight: 400;
  line-height: 2.4;
  text-align: left;
}
.seat-card__pdf {
  padding-block: 2%;
  background: #554744;
}
.seat-card__pdf a {
  color: #fff;
  text-decoration: none;
}
.seat-card table {
  margin-top: 10px;
  text-align: center;
}
.seat-card table thead th {
  padding: 5px 0;
  border-right: 1px solid #8f8f8f;
  background: #646464;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
}
.seat-card table thead th:last-child {
  border-right: 0;
}
.seat-card table tbody th {
  padding: 5px 0;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.71;
}
.seat-card table tbody td {
  padding: 5px 0;
  border-right: 1px solid #dad9d9;
  border-bottom: 1px solid #dad9d9;
  background: #fff;
  font-size: 1.4rem;
  line-height: 1.71;
  vertical-align: middle;
}
.seat-card table tbody td:last-child {
  border-right: 0;
}
.seat-card table tbody tr:last-child td {
  border-bottom: 0;
}

.seat-card__number--00 {
  color: #fff !important;
  background-color: #554744 !important;
}
.seat-card__number--00 + span {
  color: #554744 !important;
  background: rgba(85, 71, 68, 0.2) !important;
}

.seat-card__number--01 {
  color: #fff !important;
  background-color: #a08a23 !important;
}
.seat-card__number--01 + span {
  color: #a08a23 !important;
  background: rgba(160, 138, 35, 0.2) !important;
}

.seat-card__number--02 {
  color: #fff !important;
  background-color: #750069 !important;
}
.seat-card__number--02 + span {
  color: #750069 !important;
  background: rgba(117, 0, 105, 0.2) !important;
}

.seat-card__number--03 {
  color: #fff !important;
  background-color: #cd6715 !important;
}
.seat-card__number--03 + span {
  color: #cd6715 !important;
  background: rgba(205, 103, 21, 0.2) !important;
}

.seat-card__number--04 {
  color: #fff !important;
  background-color: #9f9122 !important;
}
.seat-card__number--04 + span {
  color: #9f9122 !important;
  background: rgba(159, 145, 34, 0.2) !important;
}

.seat-card__number--05 {
  color: #fff !important;
  background-color: #b01f24 !important;
}
.seat-card__number--05 + span {
  color: #b01f24 !important;
  background: rgba(176, 31, 36, 0.2) !important;
}

.seat-card__number--06 {
  color: #fff !important;
  background-color: #d93569 !important;
}
.seat-card__number--06 + span {
  color: #d93569 !important;
  background: rgba(217, 53, 105, 0.2) !important;
}

.seat-card__number--07 {
  color: #fff !important;
  background-color: #947f28 !important;
}
.seat-card__number--07 + span {
  color: #947f28 !important;
  background: rgba(148, 127, 40, 0.2) !important;
}

.seat-card__number--08 {
  color: #fff !important;
  background-color: #d80c18 !important;
}
.seat-card__number--08 + span {
  color: #d80c18 !important;
  background: rgba(216, 12, 24, 0.2) !important;
}

.seat-card__number--09 {
  color: #fff !important;
  background-color: #e0815e !important;
}
.seat-card__number--09 + span {
  color: #e0815e !important;
  background: rgba(224, 129, 94, 0.2) !important;
}

.seat-card__number--10 {
  color: #fff !important;
  background-color: #2a6198 !important;
}
.seat-card__number--10 + span {
  color: #2a6198 !important;
  background: rgba(42, 97, 152, 0.2) !important;
}

.seat-card__number--11 {
  color: #fff !important;
  background-color: #6c2463 !important;
}
.seat-card__number--11 + span {
  color: #6c2463 !important;
  background: rgba(108, 36, 99, 0.2) !important;
}

.seat-card__number--12 {
  color: #fff !important;
  background-color: #92558a !important;
}
.seat-card__number--12 + span {
  color: #92558a !important;
  background: rgba(146, 85, 138, 0.2) !important;
}

.seat-card__number--13 {
  color: #fff !important;
  background-color: #3c2578 !important;
}
.seat-card__number--13 + span {
  color: #3c2578 !important;
  background: rgba(60, 37, 120, 0.2) !important;
}

.seat-card__number--14 {
  color: #fff !important;
  background-color: #7a62a9 !important;
}
.seat-card__number--14 + span {
  color: #7a62a9 !important;
  background: rgba(122, 98, 169, 0.2) !important;
}

.seat-card__number--15 {
  color: #fff !important;
  background-color: #374e28 !important;
}
.seat-card__number--15 + span {
  color: #374e28 !important;
  background: rgba(55, 78, 40, 0.2) !important;
}

.seat-card__number--16 {
  color: #fff !important;
  background-color: #004871 !important;
}
.seat-card__number--16 + span {
  color: #004871 !important;
  background: rgba(0, 72, 113, 0.2) !important;
}

/*========
   Watch guide
========*/
.watch-guide {
  width: 100%;
  padding-bottom: 10px;
  border-top: 10px solid #d5c6d2;
  border-bottom: 10px solid #d5c6d2;
  background: #fff url("../img/guide/btnlink_bg_guide--pc.jpg") center/auto 100% no-repeat;
  text-align: center;
}
.watch-guide__heading {
  width: min(505px, 90%);
  margin: -14px auto 0;
}
.watch-guide__heading img {
  display: block;
  width: 100%;
  height: auto;
  padding: 50px 0 10px;
}
.watch-guide__banner {
  display: block;
  width: min(500px, 100% - 32px);
  margin: 20px auto 40px;
  transition: opacity 0.2s ease;
}
.watch-guide__banner img {
  display: block;
  width: 100%;
  height: auto;
  border: 2px solid #aaa;
  border-radius: 8px;
}
.watch-guide__banner:hover {
  opacity: 0.7;
}
@media only screen and (max-width: 988px) {
  .watch-guide {
    padding-bottom: 0;
    background-image: url("../img/guide/btnlink_bg_guide--sp.jpg");
    background-size: cover;
    background-repeat: repeat-y;
    border-top: none;
  }
  .watch-guide__heading {
    margin-top: 15px;
  }
  .watch-guide__banner {
    width: calc(100% - 8vw);
    margin-top: 7vw;
    margin-bottom: 7vw;
  }
}

/*========
   Footer
========*/
.site-footer {
  width: 100%;
  background: #f3f3f3;
}
.site-footer__inner {
  width: 100%;
}
.site-footer__sns {
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 35px 0;
  list-style: none;
}
.site-footer__sns li {
  margin: 0 12px;
}
@media only screen and (max-width: 988px) {
  .site-footer__sns li {
    margin-inline: 5px;
  }
}
.site-footer__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
}
.site-footer__link:hover {
  opacity: 0.5;
}
.site-footer__link--x {
  border: 1px solid #fff;
}
.site-footer__link--line img {
  width: 60%;
}
.site-footer__copyright {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 80px 20px;
  background: #80046d;
  color: #fff;
  text-align: center;
}
.site-footer__copyright img {
  display: block;
  width: 120px;
  height: auto;
}
.site-footer__copyright p {
  margin: 50px 0 0;
  font-size: 1.6rem;
  line-height: 1.5;
}
@media only screen and (max-width: 767px) {
  .site-footer__copyright {
    padding-block: 48px;
  }
  .site-footer__copyright img {
    width: 80px;
  }
  .site-footer__copyright p {
    margin-top: 32px;
    font-size: 1.2rem;
  }
}

.site-footer__link--x {
  background: #000;
}

.site-footer__link--facebook {
  background: #1877f2;
}

.site-footer__link--instagram {
  background: #cf2e92;
}

.site-footer__link--tiktok {
  background: #000;
}

.site-footer__link--line {
  background: #00b900;
}

.site-footer__link--youtube {
  background: #dc0021;
}