@charset "UTF-8";
.inner {
  max-width: 1232px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 16px;
  padding-left: 16px;
}

.section-inner {
  max-width: 1032px;
  margin-right: auto;
  margin-left: auto;
  padding: 50px 16px;
}
.section-inner > *:first-child {
  margin-top: 0 !important;
}
.section-inner > *:last-child {
  margin-bottom: 0 !important;
}

@media (min-width: 768px) {
  .section-inner {
    padding-top: 80px;
  }
}
.main-header {
  position: sticky;
  top: 0;
  width: 100%;
  background-color: #8f0038;
  z-index: 100;
}
.main-header .inner {
  display: flex;
  align-items: center;
  min-height: 70px;
}
.main-header .team-logo {
  height: 48.4px;
  margin-right: auto;
}
.main-header .team-logo img {
  height: 100%;
}

@media (min-width: 768px) {
  .main-header .inner {
    max-width: 100%;
    min-height: 110px;
    padding-right: 20px;
    padding-left: 20px;
  }
  .main-header .team-logo {
    height: 77px;
  }
  .menu-btn {
    display: none;
  }
}
.menu-btn {
  position: relative;
  width: 44px;
  height: 44px;
  border: 1px solid #b68f27;
  cursor: pointer;
  transition: all 0.2s;
}
.menu-btn.is-active span:nth-of-type(1) {
  animation: active-upper-line 0.75s forwards;
}
.menu-btn.is-active span:nth-of-type(2) {
  opacity: 0;
}
.menu-btn.is-active span:nth-of-type(3) {
  animation: active-lower-line 0.75s forwards;
}
.menu-btn span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 75%;
  height: 6px;
  background-color: #b68f27;
  transform: rotate(0) translate(-50%, -50%);
  transform-origin: left;
  transition: all 0.4s;
  pointer-events: none;
}
.menu-btn span:nth-of-type(1) {
  animation: upper-line 0.75s forwards;
}
.menu-btn span:nth-of-type(2) {
  top: 50%;
}
.menu-btn span:nth-of-type(3) {
  animation: lower-line 0.75s forwards;
}

.main-navigation ul {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  width: 400px;
  margin: 0;
  line-height: 1.5;
}
.main-navigation ul li::after {
  display: inline-block;
  margin-right: 16px;
  margin-left: 16px;
  color: #fff;
  content: "/";
}
.main-navigation ul li:nth-of-type(3)::after {
  display: none;
}
.main-navigation ul li:last-of-type::after {
  display: none;
}
.main-navigation ul span {
  display: none;
}
.main-navigation a {
  color: #fff;
}
.main-navigation .menu-team-logo {
  display: none;
}

@media (max-width: 767px) {
  .main-navigation {
    display: none;
    position: fixed;
    top: 69px;
    left: 0;
    width: 100%;
    min-height: calc(100vh - 70px);
    background-color: #8f0038;
  }
  .main-navigation.is-active {
    display: block;
  }
  .main-navigation ul {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0 20px;
  }
  .main-navigation ul li {
    display: flex;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #fff;
    list-style-type: none;
  }
  .main-navigation ul li.home-game a::before {
    background-image: url(../images/icon-schedule.svg);
  }
  .main-navigation ul li.seat a::before {
    background-image: url(../images/icon-seat.svg);
  }
  .main-navigation ul li.price-system a::before {
    background-image: url(../images/icon-yen.svg);
  }
  .main-navigation ul li.planning-ticket a::before {
    background-image: url(../images/icon-people.svg);
  }
  .main-navigation ul li.howto a::before {
    background-image: url(../images/icon-ticket.svg);
  }
  .main-navigation ul li.resale a::before {
    background-image: url(../images/icon-map.svg);
  }
  .main-navigation ul li:last-of-type {
    border-bottom: 0;
  }
  .main-navigation ul li::before {
    display: none;
  }
  .main-navigation ul li::after {
    display: none;
  }
  .main-navigation ul li span {
    display: block;
  }
  .main-navigation ul li a {
    display: flex;
    align-items: center;
    width: 100%;
  }
  .main-navigation ul li a::before {
    display: inline-block;
    width: 54px;
    height: 54px;
    margin-right: 10px;
    background-color: #b68f27;
    content: "";
  }
  .main-navigation .menu-team-logo {
    display: block;
    max-width: 305px;
    margin: 20px auto 0;
  }
  .main-navigation .menu-team-logo a {
    display: block;
  }
  .main-navigation .menu-team-logo a img {
    width: 100%;
  }
}
@media (hover: hover) and (pointer: fine) {
  .menu-btn:hover {
    opacity: 0.7;
  }
  .main-navigation a:hover {
    opacity: 0.7;
    text-decoration: none !important;
  }
}
@keyframes upper-line {
  0% {
    top: calc(50% - 1px);
    left: calc(50% - 1px);
    transform: rotate(45deg) translate(-50%, -50%);
  }
  50% {
    top: 50%;
    left: 50%;
    transform: rotate(0) translate(-50%, -50%);
  }
  100% {
    top: calc(50% - 12px);
    left: 50%;
    transform: rotate(0) translate(-50%, -50%);
  }
}
@keyframes active-upper-line {
  0% {
    top: calc(50% - 12px);
    left: 50%;
    transform: rotate(0) translate(-50%, -50%);
  }
  50% {
    top: 50%;
    left: 50%;
    transform: rotate(0) translate(-50%, -50%);
  }
  100% {
    top: calc(50% - 2px);
    left: calc(50% - 2px);
    transform: rotate(45deg) translate(-50%, -50%);
  }
}
@keyframes lower-line {
  0% {
    top: calc(50% - 1px);
    left: calc(50% + 1px);
    transform: rotate(-45deg) translate(-50%, -50%);
  }
  50% {
    top: 50%;
    left: 50%;
    transform: rotate(0) translate(-50%, -50%);
  }
  100% {
    top: calc(50% + 12px);
    left: 50%;
    transform: rotate(0) translate(-50%, -50%);
  }
}
@keyframes active-lower-line {
  0% {
    top: calc(50% + 12px);
    left: 50%;
    transform: rotate(0) translate(-50%, -50%);
  }
  50% {
    top: 50%;
    left: 50%;
    transform: rotate(0) translate(-50%, -50%);
  }
  100% {
    top: calc(50% - 2px);
    left: calc(50% + 2px);
    transform: rotate(-45deg) translate(-50%, -50%);
  }
}
.main-footer {
  background-color: #8f0038;
  color: #fff;
}
.main-footer .inner:nth-child(1), .main-footer .inner:nth-child(2) {
  padding-top: 50px;
  padding-bottom: 0;
}
.main-footer .inner:nth-child(3) {
  padding-top: 60px;
  padding-bottom: 20px;
}
.main-footer .team-logo {
  width: 150px;
  margin-right: auto;
  margin-left: auto;
}
.main-footer .copyright {
  padding: 30px 0 0;
  font-size: 0.625rem;
  text-align: center;
}
.main-footer .foot-menu a {
  color: #fff;
}
.main-footer .foot-menu .item {
  margin-top: 15px;
  text-align: center;
}
.main-footer .sns-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

@media (min-width: 768px) {
  .main-footer .inner:nth-child(1), .main-footer .inner:nth-child(2) {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .main-footer .inner:nth-child(2) {
    max-width: 100%;
    padding-top: 30px;
    padding-bottom: 30px;
    border-top: 2px solid #fff;
    border-bottom: 2px solid #fff;
  }
  .main-footer .inner:nth-child(3) {
    padding-top: 37px;
    padding-bottom: 48px;
  }
  .main-footer .team-logo {
    width: 228px;
  }
  .main-footer .foot-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
  }
  .main-footer .foot-menu .item {
    margin-top: 0;
  }
  .main-footer .copyright {
    padding: 50px 0 0;
    font-size: 0.875rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .main-footer a:hover {
    opacity: 0.7;
    text-decoration: none !important;
  }
}
.anchor-section .team-logo {
  max-width: 530px;
  margin-right: auto;
  margin-left: auto;
}
.anchor-section .lead-text {
  font-size: 100%;
}

.anchor-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 30px 0;
}
.anchor-links .item {
  background-color: #000;
  border: 1px solid #b68f27;
}
.anchor-links .item a {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 10px;
  color: #fff;
  font-size: 0.75rem;
  line-height: 1.3;
  text-decoration: none !important;
}
.anchor-links .item a .icon {
  width: 24px;
  height: 24px;
}
.anchor-links .item a > span {
  margin-left: 10px;
}

@media (min-width: 768px) {
  .anchor-section {
    border-top: 1px solid #707070;
    border-bottom: 1px solid #707070;
  }
  .anchor-links {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px 32px;
  }
  .anchor-links .item {
    min-height: 76px;
  }
  .anchor-links .item a {
    font-size: 1rem;
  }
  .anchor-links .item a .icon {
    width: 54px;
    height: 54px;
  }
  .anchor-links .item a > span {
    margin-left: 25px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .anchor-links .item a:hover {
    opacity: 0.7;
    text-decoration: none !important;
  }
}
.ticket-purchase-banner {
  text-align: center;
}
.ticket-purchase-banner a {
  display: inline-block;
}

@media (hover: hover) and (pointer: fine) {
  .ticket-purchase-banner a:hover {
    opacity: 0.7;
    text-decoration: none !important;
  }
}
.acc-handle {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  cursor: pointer;
}
.acc-handle * {
  pointer-events: none;
}
.acc-handle span {
  display: inline-block;
  margin-left: 6px;
}

.acc-body {
  display: none;
  margin: 0 auto;
  border-top: 0;
  overflow: hidden;
  transition: all 400ms ease;
}

.acc-handle.home-game-schedule::after {
  display: inline-block;
  margin: 22px 0 0 10px;
  border-style: solid;
  border-width: 0 10px 16px 10px;
  border-color: transparent transparent #b68f27 transparent;
  transform: translate(0, -50%) rotate(180deg);
  transition: transform 200ms ease;
  content: "";
}
.acc-handle.home-game-schedule.is-open::after {
  transform: translate(0, -50%) rotate(0);
}

.acc-handle.gold-block {
  position: relative;
  margin-top: 30px;
  padding: 12px 15px;
  font-size: 1rem;
  background-color: #b68f27;
  color: #fff;
}
.acc-handle.gold-block::before {
  position: absolute;
  top: 50%;
  right: 10px;
  display: inline-block;
  border-style: solid;
  border-width: 0 10px 16px 10px;
  border-color: transparent transparent #fff transparent;
  transform: translate(0, -50%) rotate(180deg);
  transition: transform 200ms ease;
  content: "";
}
.acc-handle.gold-block.is-open::before {
  transform: translate(0, -50%) rotate(0);
}

.acc-body.gold-block {
  background-color: #f0f0f0;
  border: 3px solid #b68f27;
}
.acc-body.gold-block .add-innner {
  padding: 25px 15px;
  color: #000;
}

@media (min-width: 768px) {
  .acc-handle.gold-block::before {
    border-width: 0 15px 25px 15px;
  }
  .acc-body.gold-block .add-innner {
    padding: 30px 50px 50px;
  }
}
.square-btn {
  display: block;
  width: 100%;
  max-width: 500px;
  margin: 30px auto 0;
  padding: 18px 20px;
  text-align: center;
  background-color: #8f0038;
  border: 2px solid #b68f27;
  color: #fff;
  text-decoration: none !important;
  font-size: 1.125rem;
}

.round-btn {
  display: block;
  width: 100%;
  max-width: 500px;
  margin: 20px auto 0;
  padding: 4px 20px;
  text-align: center;
  background-color: #b68f27;
  border-radius: 10rem;
  color: #fff;
  text-decoration: none !important;
}

@media (min-width: 768px) {
  .square-btn {
    padding: 14px 20px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .square-btn:hover {
    opacity: 0.7;
    text-decoration: none !important;
  }
  .round-btn:hover {
    opacity: 0.7;
    text-decoration: none !important;
  }
}
.faq-list dt, .faq-list dd {
  margin: 20px 0;
}
.faq-list dt {
  margin: 0 0 20px 0;
  padding-top: 20px;
  padding-left: 25px;
  border-top: 1px solid #000;
  color: #b68f27;
  font-weight: 500;
  text-indent: -25px;
}
.faq-list dt::before {
  content: "Q：";
}
.faq-list dt:first-of-type {
  border-top: 0;
}
.faq-list dd {
  margin: 20px 0;
  padding-left: 25px;
  text-indent: -22px;
}
.faq-list dd::before {
  content: "A：";
}

.kv-section {
  position: relative;
  min-height: 140vw;
  height: calc(100vh - 70px);
  width: 100%;
  height: 100%;
}
.kv-section .kv-image {
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, 0);
  z-index: 1;
}
.kv-section .kv-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.kv-section h1 {
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  transform: translate(-50%, 0);
  z-index: 5;
}

@media (min-width: 768px) {
  .kv-section {
    min-height: calc(100vh - 110px);
  }
  .kv-section::before {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(0deg, #000, rgba(0, 0, 0, 0));
    z-index: 5;
    content: "";
  }
  .kv-section .kv-image img {
    position: absolute;
    left: 50%;
    min-width: 1000px;
    transform: translate(-50%, 0);
  }
  .kv-section h1 {
    top: auto;
    bottom: 10px;
    width: 100%;
    max-width: 1000px;
  }
}
.anchor-section .section-inner {
  padding-top: 10px;
  padding-bottom: 35px;
}
.anchor-section .team-logo {
  margin-top: 10px;
  text-align: center;
}
.anchor-section .lead-text {
  margin: 0;
  text-align: center;
  line-height: 1;
}
.anchor-section .lead-text img {
  display: inline-block;
  max-width: 320px;
}
.anchor-section .ticket-purchase-banner {
  margin-top: 30px;
  margin-bottom: 30px;
}

@media (min-width: 768px) {
  .anchor-section .section-inner {
    padding-top: 12px;
  }
  .anchor-section .lead-text img {
    max-width: 360px;
  }
  .anchor-section .ticket-purchase-banner {
    margin-top: 35px;
    margin-top: 43px;
  }
}
.schedule-section {
  background: #000 url(../images/bg-image.webp) repeat left top/auto;
}
.schedule-section .legend-block .item {
  display: flex;
  align-items: center;
}
.schedule-section .legend-block .item:first-of-type {
  margin-top: 8px;
}
.schedule-section .legend-block .color-tip {
  display: block;
  width: 14px;
  height: 100%;
  min-height: 21.88px;
  margin-right: 6px;
}
.schedule-section .legend-block .color-tip.tournament-b1league {
  background-color: #8f0038;
  color: #fff;
}
.schedule-section .legend-block .color-tip.tournament-championship {
  background-color: #3e3e3e;
  color: #fff;
  border: 1px solid #b68f27;
}
.schedule-section .legend-block .color-tip.tournament-emperorscup {
  background-color: #b68f27;
  color: #333;
}
.schedule-section .legend-block .color-tip.tournament-preseason {
  background-color: #ded7c8;
  color: #333;
}
.schedule-section .acc-handle {
  margin: 64px 0 16px;
  color: #b68f27;
  font-size: 1.125rem;
}
.schedule-section .acc-handle .icon {
  display: inline-block;
  margin-left: 5px;
}
.schedule-section .link-block {
  margin: 50px 0;
}

.schedule-table {
  width: 100%;
  border-collapse: collapse;
}
.schedule-table th {
  padding: 5px;
  border-bottom: 1px solid #fff;
  vertical-align: middle;
  text-align: center;
  line-height: 1.2;
}
.schedule-table th:first-of-type {
  padding-left: 0;
}
.schedule-table th:last-of-type {
  padding-right: 0;
}
.schedule-table th.release-date {
  position: relative;
}
.schedule-table td {
  padding: 10px 5px;
  text-align: center;
  vertical-align: middle;
  border-bottom: 1px solid #fff;
  line-height: 1.2;
}
.schedule-table td:first-of-type {
  padding-left: 0;
}
.schedule-table td:last-of-type {
  padding-right: 0;
}
.schedule-table td.is-no-border {
  border-top: 0;
}
.schedule-table td.date {
  width: 60px;
  font-weight: 700;
}
.schedule-table td.date .date-inner {
  display: grid;
  grid-template-columns: 12px auto;
  grid-template-rows: auto auto;
}
.schedule-table td.date .color-tip {
  grid-column: 1;
  grid-row: 1/3;
  margin-right: 2px;
}
.schedule-table td.date .color-tip.tournament-b1league {
  background-color: #8f0038;
  color: #fff;
}
.schedule-table td.date .color-tip.tournament-championship {
  background-color: #3e3e3e;
  color: #fff;
  border: 1px solid #b68f27;
}
.schedule-table td.date .color-tip.tournament-emperorscup {
  background-color: #b68f27;
  color: #333;
}
.schedule-table td.date .color-tip.tournament-preseason {
  background-color: #ded7c8;
  color: #333;
}
.schedule-table td.date .date {
  grid-column: 2;
  grid-row: 1;
  font-size: 1.1875rem;
  text-align: center;
}
.schedule-table td.date .day {
  grid-column: 2;
  grid-row: 2;
  font-size: 0.9375rem;
}
.schedule-table td.time {
  width: 50px;
}
.schedule-table td.place {
  width: auto;
  min-width: 85px;
  padding-right: 10px;
  padding-left: 10px;
}
.schedule-table td.place .team-logo {
  display: flex;
  align-items: center;
  width: 32px;
  height: 32px;
  margin: 0 auto;
}
.schedule-table td.place .team-logo img {
  height: 100%;
}
.schedule-table td.planning-ticket {
  width: 48px;
}
.schedule-table td.planning-ticket img {
  width: 32px;
}
.schedule-table td.status {
  width: 100px;
}
.schedule-table td.status a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 5px 12px;
  background-color: #8f0038;
  color: #fff;
  text-decoration: none !important;
}
.schedule-table td.status a.soldout {
  background-color: #000;
  border: 2px solid #8f0038;
  color: #8f0038;
  font-family: "Arvo", "Noto Serif JP", serif;
  font-weight: bold;
}
.schedule-table td.release-date {
  width: 100px;
  padding-left: 10px;
  font-size: 1.125rem;
}
.schedule-table td.release-date span {
  display: none;
}
.schedule-table td.release-date span.is-active {
  display: block;
}

.pulldown-hundle {
  width: auto;
  padding: 8px 2px;
  background-color: #fff;
  border: 1px solid #707070;
  color: #000;
  overflow: hidden;
  cursor: pointer;
}
.pulldown-hundle[data-type=type-1] {
  background-color: #fff;
  color: #333;
}
.pulldown-hundle[data-type=type-1]::after {
  border-color: #333 transparent transparent transparent;
}
.pulldown-hundle[data-type=type-2] {
  background-color: #000;
  color: #fff;
}
.pulldown-hundle[data-type=type-2]::after {
  border-color: #fff transparent transparent transparent;
}
.pulldown-hundle[data-type=type-3] {
  background-color: #b68f27;
  color: #333;
}
.pulldown-hundle[data-type=type-3]::after {
  border-color: #333 transparent transparent transparent;
}
.pulldown-hundle[data-type=type-4] {
  background-color: #8f0038;
  color: #fff;
}
.pulldown-hundle[data-type=type-4]::after {
  border-color: #fff transparent transparent transparent;
}
.pulldown-hundle[data-type=type-5] {
  background-color: #ded7c8;
  color: #333;
}
.pulldown-hundle[data-type=type-5]::after {
  border-color: #333 transparent transparent transparent;
}
.pulldown-hundle::after {
  position: relative;
  top: 16px;
  margin: 0;
  border-style: solid;
  border-width: 9px 6px 0 6px;
  border-color: #000 transparent transparent transparent;
  line-height: 1;
  content: "";
}
.pulldown-hundle .text {
  width: auto;
  padding-right: 4px;
  text-align: center;
}
.pulldown-hundle .text span {
  display: inline-block;
}

.pulldown {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  width: 175px;
  background-color: #fff;
  border: 1px solid #707070;
  color: #000;
  text-align: left;
}
.pulldown.is-open {
  display: block;
}
.pulldown .item {
  padding: 10px 5px;
  text-align: center;
  cursor: pointer;
}
.pulldown .item[data-type=type-1] {
  background-color: #fff;
  color: #333;
}
.pulldown .item[data-type=type-2] {
  background-color: #000;
  color: #fff;
}
.pulldown .item[data-type=type-3] {
  background-color: #b68f27;
  color: #333;
}
.pulldown .item[data-type=type-4] {
  background-color: #8f0038;
  color: #fff;
}
.pulldown .item[data-type=type-5] {
  background-color: #ded7c8;
  color: #333;
}

@media (min-width: 768px) {
  .schedule-section .acc-handle {
    font-size: 1.5rem;
  }
  .schedule-section .acc-handle .icon {
    vertical-align: 4px;
  }
  .schedule-table {
    width: 100%;
  }
  .schedule-table th br {
    display: none;
  }
  .schedule-table td.date {
    width: 190px;
  }
  .schedule-table td.date .date-inner {
    display: flex;
    align-items: center;
  }
  .schedule-table td.date .date-inner .color-tip {
    display: block;
    width: 14px;
    height: 47px;
    margin-right: 10px;
  }
  .schedule-table td.date .date-inner .date {
    min-width: 82px;
    text-align: left;
    font-size: 2rem;
  }
  .schedule-table td.date .date-inner .day {
    margin: 10px 0 0 10px;
    font-size: 1.375rem;
  }
  .schedule-table td.time {
    width: 75px;
  }
  .schedule-table td.place {
    width: auto;
  }
  .schedule-table td.place > div {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }
  .schedule-table td.place .team-logo {
    width: 47px;
    margin: 0;
  }
  .schedule-table td.planning-ticket {
    width: 120px;
  }
  .schedule-table td.planning-ticket img {
    width: 32px;
  }
  .schedule-table td.status {
    width: 180px;
  }
  .schedule-table td.status br {
    display: none;
  }
  .schedule-table td.status a {
    min-height: 48px;
    padding: 10px 12px;
  }
  .schedule-table td.status a:hover {
    opacity: 0.7;
    text-decoration: none !important;
  }
  .schedule-table td.release-date {
    width: 180px;
  }
  .pulldown-hundle {
    padding: 10px 5px;
  }
  .pulldown-hundle::after {
    top: 18px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .schedule-table td a:hover {
    opacity: 0.7;
    text-decoration: none !important;
  }
}
.seatmap-section .planning-ticket-block {
  margin-bottom: 50px;
}
.seatmap-section .planning-ticket-block .img-block {
  width: calc(100% - 30px);
  margin: 0 auto 20px;
  background-color: #ccc;
}
.seatmap-section .seat-map {
  margin: 50px auto;
}
.seatmap-section .acc-body.block-1 h4 br {
  display: none;
}
.seatmap-section .acc-body.block-1 .img-block {
  margin-top: 10px;
  margin-bottom: 10px;
}
.seatmap-section .acc-body.block-2 .img-block {
  margin-top: 20px;
}

@media (min-width: 768px) {
  .seatmap-section .seat-map {
    margin-bottom: 60px;
  }
  .seatmap-section .acc-body.block-1 h4 br {
    display: block;
  }
  .seatmap-section .acc-body.block-1 .l-flex {
    display: flex;
    gap: 30px;
    margin-top: 30px;
  }
  .seatmap-section .acc-body.block-1 .l-flex .img-block {
    width: 450px;
    margin: 0;
    order: 2;
  }
  .seatmap-section .acc-body.block-1 .l-flex .text-block {
    width: calc(100% - 450px);
    order: 1;
  }
  .seatmap-section .acc-body.block-1 .l-flex .text-block h4:nth-last-child(-n+2) {
    margin-top: 50px;
  }
  .seatmap-section .acc-body.block-2 .img-block {
    margin-top: 50px;
  }
  .seatmap-section .planning-ticket-block .l-flex {
    display: flex;
    gap: 50px;
  }
  .seatmap-section .planning-ticket-block .l-flex .img-block {
    width: 350px;
  }
  .seatmap-section .planning-ticket-block .l-flex .text-block {
    width: calc(100% - 350px);
  }
  .seatmap-section .planning-ticket-block .l-flex .text-block .round-btn {
    margin-top: 30px;
  }
  .seatmap-section .planning-ticket-block > p {
    text-align: center;
  }
}
.simplebar-wrapper {
  margin: 0 !important;
}

.simplebar-track.simplebar-horizontal {
  height: 15px;
  background: #fff;
  border-radius: 15px;
}

.simplebar-scrollbar {
  height: 15px;
  background: #ccc;
  border-radius: 15px;
}
.simplebar-scrollbar::before {
  background: #ccc;
}

.howto-section .ticket-purchase-process {
  width: 100%;
  padding: 16px 0 8px;
  background-color: #fff;
  overflow-x: auto;
}
.howto-section .ticket-purchase-process::-webkit-scrollbar {
  width: 50px;
  height: 14px;
  background-color: #fff;
  border-radius: 15px;
}
.howto-section .ticket-purchase-process::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border: 2px solid #fff;
  border-radius: 15px;
}
.howto-section .ticket-purchase-process .inner {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  width: auto;
}
.howto-section .ticket-purchase-process img {
  max-width: 200px;
}
.howto-section .ticket-purchase-banner {
  margin: 20px auto;
}
.howto-section .link-block {
  margin-top: 50px;
  margin-bottom: 50px;
}
.howto-section .acc-body .img-block {
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .howto-section .ticket-purchase-process .inner {
    gap: 50px;
  }
  .howto-section .ticket-purchase-process img {
    max-width: 270px;
  }
  .howto-section .ticket-purchase-banner {
    margin-top: 50px;
    margin-bottom: 30px;
  }
  .howto-section .acc-body .l-flex {
    display: flex;
    gap: 30px;
  }
  .howto-section .acc-body .l-flex .img-block {
    width: 312px;
  }
  .howto-section .acc-body .l-flex .text-block {
    width: calc(100% - 312px);
  }
  .howto-section .acc-body .l-flex .text-block .icon-square br {
    display: none;
  }
  .howto-section .acc-body .l-flex .text-block p:nth-child(2), .howto-section .acc-body .l-flex .text-block p:nth-child(3), .howto-section .acc-body .l-flex .text-block p:nth-child(5) {
    margin-top: 30px;
  }
}
.access-section .text-block h4 {
  margin-top: 30px;
  font-size: 100%;
  font-weight: normal;
}
.access-section .text-block h4:first-of-type {
  margin-top: 20px;
}
.access-section .round-btn {
  margin-top: 30px;
}

@media (min-width: 768px) {
  .access-section .l-flex {
    display: flex;
    align-items: flex-start;
    gap: 50px;
  }
  .access-section .l-flex .img-block {
    width: 350px;
  }
  .access-section .l-flex .text-block {
    width: calc(100% - 350px);
  }
  .access-section .l-flex .text-block h4:first-of-type {
    margin-top: 0;
  }
}
* {
  box-sizing: border-box;
}

body {
  min-width: auto !important;
  background-color: #000;
  color: #333;
  font-size: 0.875rem;
  font-family: "Noto Sans JP", Helvetica, sans-serif;
  line-height: 1.8;
}

@media (min-width: 768px) {
  body {
    font-size: 1rem;
  }
}
main > section {
  overflow: hidden;
}

img {
  vertical-align: bottom;
  width: 100%;
}

p {
  margin: 10px 0;
}

* > p:first-of-type {
  margin-top: 0;
}
* > p:last-of-type {
  margin-bottom: 0;
}

.is-sp-only {
  display: block;
}

.is-pc-only {
  display: none;
}

@media (min-width: 768px) {
  .is-sp-only {
    display: none;
  }
  .is-pc-only {
    display: block;
  }
}
h3 {
  margin-top: 30px;
  margin-bottom: 20px;
  font-size: 1.25rem;
  font-weight: 500;
  text-align: center;
}

h4 {
  font-size: 1rem;
  font-weight: 500;
}

.image-heading {
  margin-top: 48px;
  padding: 0 20px 12px;
  background-image: url(../images/gold-line.svg);
  background: url(../images/gold-line.svg) no-repeat center 100%/100%;
  text-align: center;
}
.image-heading img {
  width: auto;
  height: 20px;
}

.sub-heading {
  margin: 9px 0 12px;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
}

@media (min-width: 768px) {
  h3 {
    margin-top: 50px;
    font-size: 1.75rem;
  }
  h4 {
    font-size: 1.25rem;
  }
  .image-heading {
    margin-top: 92px;
    padding-bottom: 30px;
  }
  .image-heading img {
    height: 35px;
  }
  .sub-heading {
    font-size: 1.25rem;
  }
}
.text-center {
  text-align: center;
}

.bg-white {
  background-color: #fff;
  color: #333;
}

.color-white {
  color: #fff;
}

.bg-black {
  background-color: #000;
  color: #fff;
}

.color-black {
  color: #000;
}

.bg-winered {
  background-color: #8f0038;
  color: #fff;
}

.color-winered {
  color: #8f0038;
}

.bg-gold {
  background-color: #b68f27;
  color: #333;
}

.color-gold {
  color: #b68f27;
}

.bg-beige {
  background-color: #eee7d4;
  color: #333;
}

.color-beige {
  color: #eee7d4;
}

.bg-gray {
  background-color: #ded7c8;
  color: #333;
}

.color-gray {
  color: #ded7c8;
}

.bg-dark-gray {
  background-color: #3e3e3e;
  color: #fff;
}

.color-dark-gray {
  color: #3e3e3e;
}

.bg-blue {
  background-color: #013D8B;
  color: #fff;
}

.color-blue {
  color: #013D8B;
}

a.link-arrow {
  display: inline-block;
  padding-left: 20px;
  text-indent: -20px;
  line-height: 1.2;
}
a.link-arrow::before {
  display: inline-block;
  margin-right: 8px;
  border-style: solid;
  border-width: 6px 0 6px 12px;
  border-color: transparent transparent transparent #b68f27;
  content: "";
}
a.link-arrow + .link-arrow {
  margin-top: 16px;
}

.icon-square {
  position: relative;
  margin-bottom: 0;
  padding-left: 17px;
}
.icon-square::before {
  position: absolute;
  top: 7px;
  left: -4px;
  content: "■ ";
}
.icon-square + .icon-square {
  margin-top: 0;
}

.icon-note {
  margin-bottom: 0;
  padding-left: 16px;
  text-indent: -20px;
}
.icon-note::before {
  padding-left: 0;
  text-indent: 0;
  content: "※";
}
.icon-note + .icon-square {
  margin-top: 0;
}

.normal-list {
  padding-left: 18px;
}
.normal-list li {
  list-style-type: disc;
}

main a:hover {
  text-decoration: underline !important;
}

/*# sourceMappingURL=lp-style.css.map */
