body {
  font-family: "Open Sans", sans-serif;
  line-height: 1.25;
}

.table_scroll_area {
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

table {
  border-collapse: collapse;
  margin: 0 auto;
  padding: 0;
  width: 650px;
  table-layout: fixed;
}

table tr {
  background-color: #eceaea;
  color: #333;
  padding: 1.6rem;
  border-bottom: 2px solid #fff;
}

table th,
table td {
  padding: 1em 10px 1em 1em;
  border-right: 2px solid #fff;
}

table th {
  font-size: 1.6rem;
}

table thead tr {
  background-color: #082f57;
  color: #fff;
}

table tbody th {
  text-align: center;
  background: #92753f;
  color: #fff;
}

.txt {
  text-align: center;
  font-size: 1.6rem;
}

.game {
  text-align: left;
  color: #333;
  font-weight: bold;
  background: #d6b86b;
  font-size: 1.6rem;
}

.non {
  background: #fff;
}

.ryukyu_lp_seat thead th {
  font-size: 1.6rem !important;
}

.ryukyu_lp_seat_jsbox01 .swiper-button-prev,
.ryukyu_lp_seat_jsbox01 .swiper-button-next {
  display: none;
}

.ryukyu_lp_mainin .ryukyu_lp_banner {
  padding: 60px 0;
}

/* ボタン全体のコンテナ */
.button-container {
  background-color: white;
  z-index: 10;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 20px 0;
  max-width: 980px;
  margin: 0 auto;
  border-bottom: 1px solid #e0e0e0;
}

.button-container .anchor-button {
  color: #ffffff !important;
}

/* アンカーリンクボタンのスタイル */
.anchor-button {
  position: relative;
  display: flex;
  align-items: flex-start;
  padding: 10px 40px 10px 20px;
  background-color: #003f6b;
  color: white;
  text-decoration: none;
  text-align: center;
  border-radius: 8px;
  font-size: 20px;
  font-weight: bold;
  transition: opacity 0.3s;
  align-items: center;
  justify-content: center;
  min-height: 90px;
}

.anchor-button:hover {
  opacity: 0.8;
}

/* ▼アイコンを疑似要素で追加 */
.anchor-button::after {
  content: "▼";
  /* 表示するアイコン */
  position: absolute;
  color: #fff;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  font-size: 0.8em;
}

.top_btn {
  position: fixed;
  z-index: 150;
  bottom: 20px;
  right: 40px;
}

.top_btn a {
  max-width: 113px;
  width: 100%;
  display: block;
}

@media only screen and (max-width: 767px) {
  .ryukyu_lp_seat thead th {
    font-size: 1.2rem !important;
  }

  .button-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .anchor-button {
    padding: 10px 24px 10px 10px;
    font-size: 12px;
    min-height: 55px;
  }

  .anchor-button::after {
    right: 10px;
    font-size: 0.6em;
  }

  .top_btn {
    bottom: 10px;
    right: 10px;
  }

  .top_btn a {
    max-width: 61px;
  }
}

/* チケットプラン */
.ticket_plan_area {
  margin-bottom: 60px;
}

.ticket_plan_title {
  display: flex;
  align-items: center;
  font-size: 40px;
  font-weight: bold;
  color: #081c4f;
  margin-bottom: 30px;
}

.ticket_plan_title:before,
.ticket_plan_title:after {
  content: "";
  height: 6px;
  flex-grow: 1;
  background-color: #003f6b;
}

.ticket_plan_title:before {
  margin-right: 1rem;
}

.ticket_plan_title:after {
  margin-left: 1rem;
}

.ticket_plan_area .ticket_box {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 15px;
}

.ticket_plan_area .ticket_box .ticket_item {
  width: calc((100% / 3) - 10px);
  border: 1px solid #5f5f5f;
  transition: 0.4s;
}

.ticket_plan_area .ticket_box .ticket_item:hover {
  opacity: 0.6;
}

.ticket_plan_area .ticket_box .ticket_item .txt {
  background-color: #f31918;
  font-size: 20px;
  font-weight: bold;
  padding: 10px;
  text-align: center;
  color: #fff;
}

.ticket_plan_area .ticket_box .ticket_item .img img {
  width: 100%;
}

@media only screen and (max-width: 767px) {
  .ticket_plan_area {
    margin-bottom: 30px;
  }

  .ticket_plan_title {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .ticket_plan_title:before,
  .ticket_plan_title:after {
    height: 4px;
  }

  .ticket_plan_area .ticket_box {
    gap: 10px;
  }

  .ticket_plan_area .ticket_box .ticket_item {
    width: 100%;
  }

  .ticket_plan_area .ticket_box .ticket_item .txt {
    font-size: 16px;
    padding: 10px;
  }
}

/* お知らせモーダル表示 */
.hide-area {
  display: none;
}

.info_open-text {
  display: none;
}

.modaal-close:after,
.modaal-close:before {
  background: #ccc;
}

.modaal-close:focus:after,
.modaal-close:focus:before,
.modaal-close:hover:after,
.modaal-close:hover:before {
  background: #666;
}

.modaal-container {
  background: transparent;
  box-shadow: none;
  position: relative;
}

.modaal-content {
  background: #fff;
  box-shadow: 0 4px 15px rgb(0 0 0 / 20%);
}

.modaal-content-container {
  padding: 15px;
}

.modaal-wrapper .modaal-close {
  content: "";
  background: url("/files/user/_/lp/2023/game_lp_2023/modaal_close_btn.png")
    no-repeat 0 0 / 100% 100% !important;
  height: 40px;
  width: 180px;
  border-radius: 0;
  position: absolute;
  top: auto;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}

.modaal-wrapper .modaal-close:after,
.modaal-wrapper .modaal-close:before {
  content: none;
}

/* お知らせ追加用 */
.notification_info_title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 18px;
  text-align: center;
  border-bottom-width: 2px;
  border-bottom-style: solid;
  border-bottom-color: #081c4f;
  font-family: "Noto Sans Japanese";
  padding-bottom: 12px;
}

.notification_info_text,
.ECM_CheckboxInput-LabelText_2023 {
  font-size: 17px;
  margin-bottom: 16px;
  line-height: 1.8;
  font-family: "Noto Sans Japanese";
}

.notification_info_link {
  color: #007bff;
  transition: all 0.5s !important;
}

.notification_info_link:hover {
  color: #48a0ff;
}

/*infoエリアをはじめは非表示*/
#info {
  display: none;
}

/*モーダルの横幅を変更したい場合*/
.modaal-container {
  max-width: 640px;
}

/* .modaal-content-container {
padding: 20px 10px 20px 30px;
} */

.scroll_area {
  max-height: 65vh;
  padding-right: 30px;
  overflow-y: scroll;
  overflow-wrap: break-word;
}

.scroll_area::-webkit-scrollbar {
  width: 10px;
}

.scroll_area::-webkit-scrollbar-track {
  background-color: #ccc;
}

.scroll_area::-webkit-scrollbar-thumb {
  background-color: #003d67;
}

@media screen and (max-width: 767px) {
  .notification_info_title {
    font-size: 18px;
  }

  .notification_info_text,
  .ECM_CheckboxInput-LabelText_2023 {
    font-size: 15px;
  }
}

/* 調整用 */
@media print, screen and (min-width: 768px) {
  .layout-second .second-body {
    padding-inline: 0;
  }
  .ryukyu_lp_mainin {
    max-width: 100% !important;
  }
}

.ryukyu_lp_top-inner {
  margin: 0 auto;
  width: 980px;
  max-width: 100%;
  /* padding: 0 38px; */
}

.layout-second .second-body article th,
.layout-second .second-body article td {
  border: none !important;
}

/* 沖縄サントリーアリーナ 座席スライダー */

.arena_seat_wrap {
  box-sizing: border-box;
  max-width: 1000px;
  margin: 40px auto 75px;
  padding: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 24px;
  font-family: "Noto Sans Japanese", "Open Sans", sans-serif;
  color: #222;
}

.arena_seat_wrap * {
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .arena_seat_wrap {
    grid-template-columns: 53% 44.5%;
    align-items: start;
  }
}

/* 左カラム: 座席名ボタン */

.arena_seat_btn_groups {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.arena_seat_btn_group_title {
  margin: 0 0 8px !important;
  padding: 6px 10px !important;
  background: #f4f4f4 !important;
  border-left: 4px solid #003d67 !important;
  font-size: 14px !important;
  font-weight: bold;
  color: #222 !important;
}

.arena_seat_btns {
  align-content: start;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.arena_seat_btns li {
  margin: 0;
}

.arena_seat_btn {
  width: 100%;
  height: 100%;
  padding: 7px 10px;
  border: 1px solid #d5d8dc;
  border-radius: 4px;
  background: #fff;
  color: #444;
  font-size: 12px;
  line-height: 1.4;
  text-align: left;
  font-weight: bold;
  cursor: pointer;
  transition:
    background-color 0.15s,
    border-color 0.15s,
    color 0.15s;
}

.arena_seat_btn:hover {
  border-color: #b7bcc3;
}

.arena_seat_btn.is-active {
  background: var(--seat-color-current, #e93340);
  border-color: var(--seat-color-current, #e93340);
  color: #fff;
}

/* 右カラム: 説明カードスライダー */

.arena_seat_right {
  min-width: 0;
  position: relative;
}

.arena_seat_slider {
  min-width: 0;
  overflow: hidden;
  transition: height 0.3s ease;
}

.arena_seat_track {
  display: flex;
  align-items: flex-start;
  transition: transform 0.3s ease;
  touch-action: pan-y;
  cursor: grab;
  user-select: none;
}

.arena_seat_track.is-dragging {
  transition: none;
  cursor: grabbing;
}

.arena_seat_track img {
  -webkit-user-drag: none;
  pointer-events: none;
}

.arena_seat_card {
  flex: 0 0 100%;
  min-width: 0;
  padding: 24px;
  background: #f4f4f4;
  background: color-mix(in srgb, var(--seat-color-current, #e93340) 12%, white);
}

.arena_seat_lead {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.arena_seat_number {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 32px;
  padding: 0 8px;
  border-radius: 4px;
  background: var(--seat-color-current, #e93340);
  color: #fff !important;
  font-weight: bold !important;
  font-size: 16px;
}

.arena_seat_title_wrap {
  min-width: 0;
}

.arena_seat_category {
  margin: 0 0 2px;
  font-size: 12px;
  font-weight: bold !important;
  color: #888 !important;
}

.arena_seat_card_title {
  margin: 0;
  font-size: 20px;
  font-weight: bold !important;
}

.arena_seat_img {
  position: relative;
  width: 100%;
  aspect-ratio: 10 / 9;
  background: #d9dce0;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 16px;
}

.arena_seat_img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  padding: 6px;
  background-color: #fff;
}

.arena_seat_img img.img-missing {
  visibility: hidden;
}

.arena_seat_price_list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.arena_seat_price_list li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: #081c4f;
  color: #fff;
  border-radius: 4px;
  font-size: 14px;
}

.arena_seat_price_list .rank {
  font-weight: bold;
}

.arena_seat_price_list .price {
  margin-left: auto;
  font-weight: bold;
  white-space: nowrap;
}

.arena_seat_lounge_link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  width: 80%;
  margin-inline: auto;
  margin-top: 16px;
  padding: 10px 20px;
  border: 1px solid #081c4f;
  border-radius: 999px;
  background: #fff;
  color: #081c4f;
  font-family: inherit;
  font-size: 14px;
  font-weight: bold;
  text-decoration: none;
  text-align: left;
  appearance: none;
  cursor: pointer;
}

.arena_seat_lounge_link::after {
  content: "";
  flex: 0 0 auto;
  width: 10px;
  height: 14px;
  background-color: currentColor;
  transform: rotate(90deg);
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 33.476'%3E%3Cpath d='M159.395,23.89h-9.4L164.6,40.635,149.99,57.365h9.4l14.6-16.731Z' transform='translate(-149.99 -23.89)'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 33.476'%3E%3Cpath d='M159.395,23.89h-9.4L164.6,40.635,149.99,57.365h9.4l14.6-16.731Z' transform='translate(-149.99 -23.89)'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}

/* 前後矢印 */

.arena_seat_arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 60px;
  transform: translateY(-50%);
  border: none;
  cursor: pointer;
  padding: 0;
  background-color: transparent;
  transition: 0.3s ease;
}

.arena_seat_arrow::before {
  content: "";
  display: block;
  width: 25px;
  height: 60px;
  background-color: #081c4f;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 33.476'%3E%3Cpath d='M159.395,23.89h-9.4L164.6,40.635,149.99,57.365h9.4l14.6-16.731Z' transform='translate(-149.99 -23.89)'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 33.476'%3E%3Cpath d='M159.395,23.89h-9.4L164.6,40.635,149.99,57.365h9.4l14.6-16.731Z' transform='translate(-149.99 -23.89)'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.arena_seat_arrow.is-prev {
  left: -10px;
}

.arena_seat_arrow.is-prev::before {
  transform: scaleX(-1);
}

.arena_seat_arrow.is-next {
  right: -10px;
}

.arena_seat_arrow:hover {
  opacity: 0.6;
}

/* SPモーダル（is-modal-openが付くまではPCでもSPでもboxを生成しない） */

.arena_seat_modal_backdrop {
  display: none;
}

.arena_seat_modal_close {
  display: none;
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 3;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1px solid #081c4f;
  border-radius: 50%;
  background: #fff;
  color: #081c4f;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}

.arena_seat_modal_close:hover {
  opacity: 0.6;
}

html.arena-seat-modal-open,
html.arena-seat-modal-open body {
  overflow: hidden;
}

@media (max-width: 767px) {
  .arena_seat_wrap {
    margin-bottom: 50px;
  }

  .arena_seat_wrap.is-modal-open .arena_seat_modal_backdrop {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(8, 28, 79, 0.6);
  }

  .arena_seat_wrap.is-modal-open .arena_seat_right {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1001;
    width: calc(100% - 32px);
    max-width: 435px;
    max-height: calc(100dvh - 32px);
    margin: 0;
    padding: 16px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  }

  .arena_seat_wrap.is-modal-open .arena_seat_slider {
    flex: 1 1 auto;
    min-height: 0;
    overflow-x: hidden;
    overflow-y: auto;
  }

  .arena_seat_wrap.is-modal-open .arena_seat_modal_close {
    display: flex;
  }
}

/* 各種ラウンジサービス */
.pc_none {
  display: none;
}

.sp_none {
  display: block;
}

.section__head {
  text-align: center;
  margin-bottom: calc(6.25vw);
}

.benefits-list .section__head {
  color: rgb(206, 174, 108);
}

.section-title-jp {
  font-family: "Noto Serif JP", serif;
  font-size: calc(2.08333vw);
  font-weight: 600;
  letter-spacing: 0.06em;
}

.section-title-jp__sub {
  font-family: "Playfair Display", serif;
  font-size: calc(1.25vw);
  letter-spacing: 0.02em;
  line-height: 1.4;
  color: rgb(206, 174, 108) !important;
  margin-top: calc(0.833333vw);
}

.section-title-en {
  font-family: "Playfair Display", serif;
  font-size: clamp(18px, 2.125vw, 33px) !important;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: rgb(206, 174, 108) !important;
  background: transparent !important;
  padding: 0 !important;
}

.section-title-en__sub {
  font-family: "Noto Serif JP", serif;
  font-size: calc(2vw);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.06em;
  margin-bottom: calc(0.833333vw);
  color: rgb(206, 174, 108) !important;
}

.lounge-slider-controls {
  display: none;
  position: relative;
  width: calc(25.2083vw);
  margin: calc(4.16667vw) auto 0px;
  justify-content: center;
  align-items: center;
}

/* ラウンジスライダー（バニラJS）の矢印・ドット */
.benefits-container .slide-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.benefits-container .prev-arrow {
  left: 0;
}

.benefits-container .next-arrow {
  right: 0;
}

.benefits-container .slide-arrow img {
  width: calc(4.58333vw) !important;
  height: auto;
}

.benefits-container .lounge-dots {
  position: relative;
  bottom: auto;
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: calc(1.25vw);
  padding: 0;
  margin: 0;
  list-style: none;
}

.benefits-container .lounge-dots li {
  margin: 0;
}

.benefits-container .lounge-dots li button {
  padding: 0;
  width: calc(1.04167vw);
  height: calc(1.04167vw);
  border-radius: 50%;
  background-color: #444;
  border: none;
  text-indent: -9999px;
  cursor: pointer;
}

.benefits-container .lounge-dots li.is-active button {
  background-color: #081c4f;
}

/* ラウンジスライダー（バニラJS）のトラック本体：centerMode相当のピーク表示 */
.lounge-slider-list {
  overflow: hidden;
  padding: 0 11%;
}

.lounge-slider-track {
  display: flex;
  transition: transform 0.3s ease;
  touch-action: pan-y;
  cursor: grab;
  user-select: none;
}

.lounge-slider-track.is-dragging {
  transition: none;
  cursor: grabbing;
}

.lounge-slider-track img {
  -webkit-user-drag: none;
  pointer-events: none;
}

.lounge-features.is-slider-active .lounge-slider-track > .feature-item {
  flex: 0 0 100%;
  min-width: 0;
}

.benefits-container {
  width: 100%;
  max-width: calc(100vw);
  margin: 0px auto 75px;
}

.benefits-tabs {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 0px auto;
  border-bottom: 1px solid rgb(206, 174, 108);
}

.tab-button {
  width: calc(31.25vw);
  padding: calc(1.04167vw) 0px;
  background-color: rgb(5, 27, 39);
  border: 1px solid rgb(206, 174, 108);
  color: rgb(206, 174, 108);
  cursor: pointer;
  font-family: "Noto Serif JP", serif;
  font-size: calc(1.35417vw);
  font-size: clamp(13px, 1.35417vw, 18px);
  font-weight: 600;
  transition: 0.3s;
}

.tab-button:first-child {
  border-radius: 4px 0px 0px;
}

.tab-button:last-child {
  border-radius: 0px 4px 0px 0px;
}

.tab-button.active {
  background-color: rgb(206, 174, 108);
  color: rgb(0, 0, 0);
  opacity: 1;
}

.tab-button .limited_text {
  border: 1px solid rgb(206, 174, 108);
  color: rgb(206, 174, 108);
  padding: calc(0.208333vw) calc(0.416667vw);
  border-radius: 4px;
  font-size: calc(0.78125vw);
  font-size: clamp(10px, 0.78125vw, 12px);
  display: inline-block;
  margin: 0px calc(0.520833vw) calc(0.625vw);
}

.tab-button.active .limited_text {
  color: rgb(5, 27, 39);
  border: 1px solid rgb(5, 27, 39);
}

.tab-content {
  display: none;
  padding: calc(10.4167vw) calc(4.5vw);
  width: 100%;
  margin: 0px auto;
  position: relative;
  border-bottom: 1px solid rgb(206, 174, 108);
  background-color: rgb(5, 27, 39);
}

.tab-content.active {
  display: block;
}

.lounge-content {
  text-align: center;
}

.section__head-main {
  color: rgb(206, 174, 108);
  margin-bottom: calc(5vw);
}

.section__head-main .section-title-jp {
  font-size: clamp(22px, 2.8125vw, 36px) !important;
  color: rgb(206, 174, 108) !important;
}

.section__head-main .limited_text {
  display: none;
}

.lounge-image-item img {
  width: 100% !important;
  height: 100%;
  object-fit: cover;
  display: block !important;
}

.lounge-image-item {
  position: absolute;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px;
}

.lounge-image-item--1 {
  width: calc(46.875vw);
  height: calc(33.75vw);
  top: calc(24.1667vw);
  right: 0px;
}

.lounge-image-item--2 {
  width: calc(17.5vw);
  height: calc(11.6667vw);
  top: calc(52.0833vw);
  right: calc(32.625vw);
}

.lounge-image-item--3 {
  width: calc(22.1875vw);
  height: calc(31.25vw);
  bottom: calc(-5.78125vw);
  right: calc(7.70833vw);
}

.lounge-title {
  text-align: left;
  max-width: calc(36.4583vw);
}

.section__head-lounge {
  text-align: left;
  margin-bottom: calc(2.91667vw);
  color: rgb(206, 174, 108);
}

.lounge-lead {
  color: rgb(206, 174, 108);
  margin-top: calc(2.5vw);
  max-width: calc(28.0417vw);
  /* height: calc(18.75vw); */
}

.lounge-heading {
  font-family: "Noto Serif JP", serif;
  font-size: calc(1.14583vw);
  font-weight: 600 !important;
  line-height: 2;
  color: rgb(206, 174, 108) !important;
}

.lounge-description {
  font-family: "Noto Serif JP", serif;
  font-size: calc(16 / 1920 * 100vw);
  font-size: clamp(12px, 1.1vw, 14px);
  margin-top: calc(0.833333vw);
  line-height: 2;
  color: rgb(206, 174, 108) !important ;
}

.lounge-features {
  display: grid;
  /* minmax(0, 1fr): 画像の元サイズでトラックが広がるのを防ぐ（1frのmin-content問題） */
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: calc(6.25vw);
  margin-top: calc(6.5833vw);
  text-align: left;
}

.lounge-feature-img img {
  width: 100%;
  height: auto;
  display: block;
}

.feature-item:nth-child(2) {
  margin-top: calc(8.75vw);
}

.feature-item:nth-child(2n + 1) {
  margin-top: calc(-4.75vw);
}

.feature-item:first-child {
  margin-top: calc(0vw);
}

.feature-item .lounge-feature-img {
  margin-bottom: calc(2.5vw);
}

.feature-item h4 {
  font-family: "Noto Serif JP", serif;
  font-size: calc(1.14583vw);
  font-weight: 600;
  border: 1px solid rgb(206, 174, 108) !important;
  padding-bottom: calc(0.833333vw);
  margin-bottom: calc(1.25vw) !important;
  color: rgb(206, 174, 108) !important;
}

.feature-item p {
  color: rgb(206, 174, 108);
  font-family: "Noto Serif JP", serif;
}

.benefits-grid .lounge-image-item--4 {
  width: calc(21.6667vw);
  height: calc(14.4271vw);
  bottom: calc(16.9271vw);
  right: calc(-4.89583vw);
}

.benefits-grid .lounge-image-item--5 {
  width: calc(34.1667vw);
  height: calc(22.8125vw);
  bottom: calc(5vw);
  left: calc(-11.9792vw);
}

.benefits-grid .lounge-image-item--6 {
  width: calc(14.1667vw);
  height: calc(21.25vw);
  bottom: calc(-2.91667vw);
  right: calc(22.1875vw);
}

.section__head-benefit {
  color: rgb(13, 46, 64);
  text-align: left;
  margin-bottom: calc(2.91667vw);
}

.section__head-other-benefit {
  color: rgb(13, 46, 64);
  text-align: left;
  margin-bottom: calc(4.16667vw);
  padding: 0px calc(12.5vw);
}

.section__head-section-5 {
  color: rgb(13, 46, 64);
  margin-bottom: calc(4.16667vw);
}

@media screen and (min-width: 1328px) {
  .tab-content {
    padding: 142px 120px;
  }
  .section__head-main {
    margin: 120px 0 60px;
  }
  .lounge-image-item--1 {
    top: 96px;
    max-width: 600px;
    height: auto;
  }
  .lounge-image-item--2 {
    top: 456px;
    right: 408px;
    max-width: 227px;
    height: auto;
  }
  .lounge-title {
    max-width: 472px;
  }
  .lounge-lead {
    max-width: 397px;
    height: auto;
  }
  .lounge-features {
    margin-top: 130px;
  }
  .section__head-main {
    margin-bottom: 60px;
  }
}

@media screen and (max-width: 960px) {
  .lounge-title {
    max-width: 37%;
  }
  .lounge-lead {
    max-width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .pc_none {
    display: block;
  }

  .sp_none {
    display: none;
  }

  .section__head {
    margin-bottom: calc(8.53333vw);
  }

  .section-title-jp {
    font-size: calc(5.33333vw);
  }

  .section-title-jp__sub {
    font-size: calc(3.73333vw);
    margin-top: calc(2.66667vw);
  }

  .section-title-en {
    font-size: calc(9.06667vw) !important;
    line-height: 1.2;
  }

  .section-title-en__sub {
    font-size: calc(5.5vw);
    margin-bottom: calc(2.66667vw);
  }

  .ryukyu_lp_top-inner {
    margin: 0 auto;
    max-width: 100%;
    /* padding: 0 10px; */
  }

  .arena_seat_card {
    padding: 15px;
  }

  .arena_seat_lead {
    margin-bottom: 5px;
  }

  .arena_seat_number {
    min-width: 38px;
    height: 28px;
  }

  .arena_seat_card_title {
    font-size: 18px;
    line-height: 1.4;
  }

  .arena_seat_img {
    margin-bottom: 8px;
  }

  .arena_seat_lounge_link {
    width: 100%;
  }

  .arena_seat_btn {
    font-size: 11px;
  }

  .benefits-container .benefits-tabs {
    width: 100%;
    border-bottom: calc(0.266667vw) solid #081c4f;
  }

  .benefits-container .tab-button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
    height: auto;
    font-size: calc(12 / 375 * 100vw);
    border-radius: 0px;
    border-width: calc(0.266667vw) 0px;
    border-style: solid none;
    padding: calc(6 / 375 * 100vw);
    padding-block: 1.5em;
  }

  .benefits-container .tab-button:nth-of-type(2){
    border: 1px solid #081c4f;
  }

  .benefits-container .tab-button > .limited_text {
    display: none;
    padding: calc(0.8vw) calc(1.33333vw);
    font-size: calc(7 / 375 * 100vw);
    margin: 0px calc(0.533333vw) calc(1.06667vw);
  }

  .benefits-container .tab-button .limited_text + br {
    display: none;
  }

  .benefits-container .tab-content {
    width: 100%;
    padding: calc(17.0667vw) 0px calc(25.6vw);
  }

  .lounge-content {
    display: flex;
    flex-direction: column;
  }

  .section__head-main {
    margin: calc(10vw) 0 calc(5vw);
    order: 1;
  }

  .section__head-main .section-title-jp {
    font-size: calc(7.46667vw);
  }

  .section__head-main .limited_text-wrap {
    display: grid;
    gap: 10px;
    margin-top: 10px;
  }

  .section__head-main .limited_text {
    display: inline-block;
    width: fit-content;
    margin: auto;
    font-family: "Noto Serif JP", serif;
    border: 1px solid #081c4f;
    padding: calc(0.208333vw) calc(1.416667vw);
    border-radius: 4px;
    color: #081c4f;
  }

  .benefits-container .lounge-title {
    max-width: 100%;
    padding: 0px calc(5.53333vw);
    order: 2;
  }

  .benefits-container .lounge-title-m {
    font-size: calc(5.33333vw);
  }

  .benefits-container .lounge-lead {
    max-width: 100%;
    height: auto;
  }

  .benefits-container .lounge-heading {
    font-size: calc(4.26667vw);
  }

  .benefits-container .lounge-description {
    margin-top: calc(4.26667vw);
    font-size: calc(3.73333vw);
    height: auto;
  }

  .benefits-container .lounge-features {
    grid-template-columns: minmax(0, 1fr);
    gap: calc(10.6667vw);
    margin-top: calc(23.4667vw);
    padding: 0px;
    order: 5;
  }

  /* スライダー化中はgridを解除（トラックは通常フローでの幅計測を前提とするため） */
  .benefits-container .lounge-features.is-slider-active {
    display: block;
  }

  .benefits-container
    .lounge-features.is-slider-active
    .feature-item:nth-child(2),
  .benefits-container
    .lounge-features.is-slider-active
    .feature-item:nth-child(2n + 1),
  .benefits-container
    .lounge-features.is-slider-active
    .feature-item:first-child {
    margin-top: 0px;
  }

  .benefits-container .lounge-features.is-slider-active .feature-item {
    padding: 0px calc(4.26667vw);
  }

  .benefits-container .lounge-slider-controls {
    display: flex;
    width: calc(53.3333vw);
    margin-top: calc(14.9333vw);
    order: 6;
  }

  .benefits-container .slide-arrow img {
    width: calc(11.7333vw) !important;
  }

  .benefits-container .lounge-dots {
    gap: calc(3.2vw);
  }

  .benefits-container .lounge-dots li {
    width: calc(2.66667vw);
    height: calc(2.66667vw);
  }

  .benefits-container .lounge-dots li button {
    width: calc(2.66667vw);
    height: calc(2.66667vw);
    background-color: #CFCFCF;
  }

  .feature-item .lounge-feature-img {
    margin-bottom: calc(6.4vw);
  }

  .benefits-container .feature-item h4 {
    font-size: calc(4.26667vw);
    padding: 2px 6px;
    margin-bottom: calc(5.33333vw);
  }

  .benefits-container .feature-item p {
    font-size: calc(3.73333vw);
  }

  .benefits-container .benefits-list .section-title-jp {
    line-height: 1.6;
  }

  .lounge-image-item--1 {
    width: calc(67.4vw);
    height: calc(58.0667vw);
    margin-top: calc(17.0667vw);
    margin-left: auto;
    position: static;
    order: 3;
  }

  .lounge-image-item--2 {
    width: calc(38.4vw);
    height: calc(25.6vw);
    margin-top: calc(-14.9333vw);
    margin-left: calc(2.53333vw);
    position: static;
    order: 4;
  }

  .lounge-image-item--3 {
    display: none;
  }

  .benefits-grid .lounge-image-item--4 {
    width: calc(34.1333vw);
    height: calc(22.9333vw);
    bottom: calc(44.2667vw);
    right: calc(0vw);
  }

  .benefits-grid .lounge-image-item--5 {
    width: calc(53.0667vw);
    height: calc(35.7333vw);
    bottom: calc(17.0667vw);
    left: calc(0vw);
  }

  .benefits-grid .lounge-image-item--6 {
    width: calc(25.6vw);
    height: calc(35.4667vw);
    bottom: calc(0vw);
    right: calc(12.8vw);
  }
}
.btn-link-schedule {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  text-decoration: none !important;
  color: #ffffff !important;
  font-size: 16px;
  border-radius: 5px;
  max-width: 300px;
  height: 40px;
  font-weight: bold;
  transition: 0.3s;
  background-color: #021b52;
  margin: 50px auto 0;
  position: relative;
  z-index: 1;
}

/* 座席カード / チケット購入方法カードスライダー（.card-shelf）調整 */
.ryukyu_lp_seat .card-shelf {
  overflow: hidden;
  position: relative;
  padding-bottom: 30px !important;
}
.ryukyu_lp_seat .card-shelf.swiper {
  margin: 0;
  padding: 0;
}
.ryukyu_lp_seat .card-shelf .swiper-wrapper {
  gap: 0;
}
.ryukyu_lp_seat .card-shelf {
  padding-bottom: 30px;
}
.ryukyu_lp_seat .card-shelf .swiper-pagination {
  bottom: 0;
}
@media screen and (max-width: 767px) {
  .ryukyu_lp_seat .card-shelf .swiper-slide {
    width: 100%;
  }
}

/* ACCESS 沖縄サントリーアリーナへのアクセス */
.lp_access_map .arena_logo {
  text-align: center;
  margin-bottom: 15px;
}

.lp_access_map .map_area {
  position: relative;
  text-align: center;
  margin-bottom: 40px;
}
.lp_access_map .map_area iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 109/57;
}

.lp_access_map .free_shuttle_bus_area {
  padding: 0px 16px;
  max-width: 1080px;
  margin: 0px auto 60px;
}

.lp_access_map .free_shuttle_bus_area-inner {
  border: 4px solid rgb(0, 61, 103);
  padding: 10px;
}

.lp_access_map .free_shuttle_bus_area-title {
  background: rgb(188, 40, 38);
  color: rgb(255, 255, 255);
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  padding: 20px;
  line-height: 1;
}

.lp_access_map .free_shuttle_bus_area-text {
  margin: 10px 0px 15px;
}

.lp_access_map .free_shuttle_bus_area-text p {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  color: rgb(0, 63, 107);
}

.lp_access_map .free_shuttle_bus_area-text p span {
  font-size: 26px;
  color: rgb(196, 26, 32);
}

.lp_access_map .free_shuttle_bus_area-text p + p {
  margin-top: 30px;
}

.lp_access_map .free_shuttle_bus_area-img {
  padding: 0px 14px 14px;
  text-align: center;
}

.lp_access_map .shuttle-bus-route_title {
  margin: 0px auto 40px;
  border: none !important;
}

.shuttle-bus-route_title {
  text-align: center;
  margin-bottom: 45px;
}

.lp_access_map .tab_box {
  max-width: 1080px;
  width: 100%;
  margin: 0px auto;
}
.lp_access_map .tab_box .lp_access_tab {
  display: flex;
  justify-content: center;
}
.lp_access_map .tab_box .tab_btn:first-child {
  margin-left: 0px;
}
.lp_access_map .tab_box .tab_btn:last-child {
  margin-right: 0px;
}
.lp_access_map .tab_box .tab_btn {
  text-align: center;
  cursor: pointer;
  width: 50%;
  margin: 0px 4px;
}
.lp_access_map .tab_box .tab_btn .inner {
  background: rgb(218, 226, 233);
  border-radius: 12px 12px 0px 0px;
  padding: 16px 0px 24px;
  font-family: "Noto Sans Japanese";
  font-size: 22px;
  font-weight: bold;
  color: rgba(0, 61, 103, 0.6);
  line-height: 1;
  border-top: 4px solid rgb(218, 226, 233);
  border-left: 4px solid rgb(218, 226, 233);
  border-right: 4px solid rgb(218, 226, 233);
  position: relative;
}
.lp_access_map .tab_box .tab_btn .inner .root {
  border-right-width: medium;
  border-right-style: none;
  border-right-color: currentcolor;
  padding: 0px;
  margin: 0px;
}
.lp_access_map .tab_box .tab_btn .inner::before {
  content: "";
  width: calc(100% + 8px);
  height: 4px;
  display: inline-block;
  background-color: rgb(255, 255, 255);
  position: absolute;
  bottom: 3px;
  left: -4px;
}
.lp_access_map .tab_box .tab_btn .inner::after {
  content: "";
  width: calc(100% + 16px);
  height: 4px;
  display: inline-block;
  background-color: rgb(0, 61, 103);
  position: absolute;
  bottom: 0px;
  left: -12px;
}
.lp_access_map .tab_box .tab_btn:first-child .inner::after {
  right: -12px;
  left: auto;
}
.lp_access_map .tab_box .tab_btn.active .inner {
  background-color: rgb(255, 255, 255);
  border-radius: 12px 12px 0px 0px;
  border-top: 4px solid rgb(0, 61, 103);
  border-left: 4px solid rgb(0, 61, 103);
  border-right: 4px solid rgb(0, 61, 103);
  color: rgb(0, 61, 103);
}
.lp_access_map .tab_box .tab_btn.active .inner::after,
.lp_access_map .tab_box .tab_btn.active .inner::before {
  content: none;
}
.lp_access_map .tab_box .lp_access_contents.active {
  display: block;
}
.lp_access_map .tab_box .lp_access_contents {
  background-color: rgb(255, 255, 255);
  padding: 60px 0px 40px;
  display: none;
  border-radius: 0px 0px 10px 10px;
}
.lp_access_map .tab_box .bus_station_box {
  width: 100%;
  max-width: 1080px;
  margin: 0px auto 20px;
  background: url("https://goldenkings.bl.kuroco-img.app/v=1691121879/files/user/_/lp/2023/game_lp_2023/bus_station_bg_pc.png")
    0% 0% / 100% no-repeat;
  padding: 65px 0px 0px;
}
.lp_access_map .tab_box .bus_station_box.koza {
  background: url("/files/user/_/lp/2026/ticket/img/bus_station_bg_pc_20260717.png")
    no-repeat;
  background-size: 100%;
}
.lp_access_map .tab_box .bus_station_box.raikamu {
  background: url("/files/user/_/lp/2026/ticket/img/bus_station_bg_pc_20260717_raikam.png")
    no-repeat;
  background-size: 100%;
}
.lp_access_map .tab_box .bus_station_box .route_point_text {
  padding: 2px 10px;
  text-align: center;
  background-color: rgb(255, 255, 255);
  border-top: 2px solid rgb(0, 63, 107);
  border-bottom: 2px solid rgb(0, 63, 107);
  font-size: 40px;
  font-weight: bold;
  color: rgb(0, 63, 107);
  margin: 90px 0px 10px;
  position: relative;
  font-family: "Noto Sans Japanese";
}
.lp_access_map .tab_box .bus_station_box .route_point_text.fast_text {
  margin-top: 54px;
}
.lp_access_map .tab_box .bus_station_box .route_point_text span.img_text {
  padding: 0px;
  display: inline-block;
}
.lp_access_map .tab_box .bus_station_box .route_point_text span.img_text img {
  vertical-align: baseline;
}
.lp_access_map
  .tab_box
  .bus_station_box
  .route_point_text
  span.img_text
  img.logo-spacing {
  padding-top: 7px;
}
.lp_access_map .tab_box .bus_station_box-img.gordy-01::after {
  content: "";
  background: url("https://goldenkings.bl.kuroco-img.app/v=1691121879/files/user/_/lp/2023/game_lp_2023/bus_station_gordy.png")
    0px 0px / 100% 100% no-repeat;
  width: 81px;
  height: 107px;
  right: 10px;
  top: -107px;
  position: absolute;
  z-index: 1;
}
.lp_access_map .tab_box .bus_station_box-img.gordy-02::after {
  content: "";
  background: url("https://goldenkings.bl.kuroco-img.app/v=1691121879/files/user/_/lp/2023/game_lp_2023/bus_station_gordy02.pngbus_station_gordy02.png")
    0px 0px / 100% 100% no-repeat;
  width: 117px;
  height: 90px;
  left: 8px;
  top: -89px;
  position: absolute;
  z-index: 1;
}
.lp_access_map .tab_box .bus_station_box-img {
  position: relative;
}
.lp_access_map .tab_box .bus_station_box-img.nobori::before {
  content: "";
  background: url("https://goldenkings.bl.kuroco-img.app/v=1691121884/files/user/_/lp/2023/game_lp_2023/nobori.png")
    0px 0px / 100% 100% no-repeat;
  width: 178px;
  height: 211px;
  right: 0px;
  bottom: -1px;
  position: absolute;
  z-index: 1;
}
.lp_access_map .tab_box .route_map_area {
  position: relative;
}
.lp_access_map .tab_box .route_map_area iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 979/516;
}
.lp_access_map .tab_box .access_information_btn {
  margin-top: 40px;
}
.lp_access_map .tab_box .access_information_btn .btn_01 {
  max-width: 647px;
  width: 100%;
  display: block;
  margin: 0px auto;
}
.lp_access_map .tab_box .annotation {
  text-align: center;
  color: rgb(51, 51, 51);
  font-size: 14px;
  font-weight: bold;
  font-family: "Noto Sans Japanese";
  margin-top: 14px;
}
.lp_access_map .route_map_link {
  margin-bottom: 30px;
}

.lp_access_map .route_map_link-txt {
  color: rgb(51, 51, 51);
  font-size: 22px;
  font-weight: bold;
  text-align-last: center;
  margin: 0px auto 5px;
  position: relative;
  width: 480px;
}

.route_map_link-txt::after {
  position: absolute;
  top: 8px;
  right: 35px;
  margin: auto;
  content: "";
  background: url("https://goldenkings.bl.kuroco-img.app/v=1691121883/files/user/_/lp/2023/game_lp_2023/icon_map_link01.svg")
    0% 0% / 100% no-repeat;
  width: 12px;
  height: 16px;
}

.route_map_link-txt::before {
  position: absolute;
  top: 8px;
  left: 35px;
  margin: auto;
  content: "";
  background: url("https://goldenkings.bl.kuroco-img.app/v=1691121883/files/user/_/lp/2023/game_lp_2023/icon_map_link02.svg")
    0% 0% / 100% no-repeat;
  width: 12px;
  height: 16px;
}

.lp_access_map .route_map_link-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  color: rgb(188, 39, 37);
  font-size: 20px;
  font-weight: bold;
  border: 2px solid rgb(188, 39, 37);
  border-radius: 30px;
  width: 480px;
  height: 50px;
  margin: 0px auto;
  position: relative;
  transition: opacity 0.3s;
}

.lp_access_map .route_map_link-btn:hover {
  opacity: 0.7;
}

.route_map_link-btn::after {
  position: absolute;
  top: 18px;
  right: 20px;
  margin: auto;
  content: "";
  vertical-align: middle;
  width: 8px;
  height: 8px;
  border-top: 2px solid rgb(188, 39, 37);
  border-right: 2px solid rgb(188, 39, 37);
  transform: rotate(45deg);
}

.lp_access_map .shuttle_bus_notes_text {
  font-size: 20px;
  font-family: "Noto Sans Japanese";
  color: rgb(206, 1, 1);
  font-weight: bold;
  margin-bottom: 40px;
  padding: 0px 10px;
  text-align: center;
}

#access_info_toho {
  width: 100%;
}

#access_infotxt_toho {
  font-size: 1.5em;
  text-align: center;
  background-color: rgb(255, 255, 255);
  margin-top: 5em;
}

#access_infotxt_toho a {
  color: rgb(214, 187, 114);
}

@media screen and (max-width: 767px) {
  .lp_access_map .arena_logo {
    text-align: center;
    margin-bottom: 7px;
  }

  .lp_access_map .map_area {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
  }

  .lp_access_map .map_area iframe {
    position: absolute;
    top: 0px;
    right: 0px;
    width: 100% !important;
    height: 100% !important;
  }

  .lp_access_map .free_shuttle_bus_area {
    margin-bottom: 30px;
    padding: 0px;
  }

  .lp_access_map .free_shuttle_bus_area-inner {
    border: 2px solid rgb(0, 61, 103);
    padding: 5px;
  }

  .lp_access_map .free_shuttle_bus_area-title {
    background: rgb(188, 40, 38);
    color: rgb(255, 255, 255);
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    padding: 10px;
    line-height: 1;
  }

  .lp_access_map .free_shuttle_bus_area-text {
    margin: 10px 0px 15px;
  }

  .lp_access_map .free_shuttle_bus_area-text p {
    text-align: center;
    font-size: 12px;
    font-weight: bold;
    color: rgb(0, 63, 107);
  }

  .lp_access_map .free_shuttle_bus_area-text p span {
    font-size: 13px;
    color: rgb(196, 26, 32);
  }

  .lp_access_map .free_shuttle_bus_area-text p + p {
    margin-top: 15px;
  }

  .lp_access_map .free_shuttle_bus_area-img {
    padding: 0px 7px 7px;
  }

  .lp_access_map .shuttle-bus-route_title {
    max-width: calc(307.5px);
    margin: 0px auto 20px;
  }

  .lp_access_map .tab_box .tab_btn .inner .root {
    border-right-width: medium;
    border-right-style: none;
    border-right-color: currentcolor;
    padding: 0px;
    margin: 0px;
  }
  .lp_access_map .tab_box .tab_btn .inner {
    border-radius: 5px 5px 0px 0px;
    padding: 10px 0px 13px;
    font-size: 12px;
    border-top: 2px solid rgb(218, 226, 233);
    border-left: 2px solid rgb(218, 226, 233);
    border-right: 2px solid rgb(218, 226, 233);
    background: rgb(218, 226, 233);
    position: relative;
  }
  .lp_access_map .tab_box .tab_btn .inner::before {
    content: "";
    width: calc(100% + 4px);
    height: 2px;
    display: inline-block;
    background-color: rgb(255, 255, 255);
    position: absolute;
    bottom: 3px;
    left: -2px;
  }
  .lp_access_map .tab_box .tab_btn .inner::after {
    content: "";
    width: calc(100% + 6px);
    height: 2px;
    display: inline-block;
    background-color: rgb(0, 61, 103);
    position: absolute;
    bottom: 0px;
    left: -6px;
  }
  .lp_access_map .tab_box .tab_btn:first-child .inner::after {
    right: -6px;
    left: auto;
  }
  .lp_access_map .tab_box .tab_btn.active .inner {
    background-color: rgb(255, 255, 255);
    border-radius: 5px 5px 0px 0px;
    border-top: 2px solid rgb(0, 61, 103);
    border-left: 2px solid rgb(0, 61, 103);
    border-right: 2px solid rgb(0, 61, 103);
  }
  .lp_access_map .tab_box .tab_btn.active .inner::after,
  .lp_access_map .tab_box .tab_btn.active .inner::before {
    content: none;
  }
  .lp_access_map .tab_box .tab_btn {
    margin: 0px 2px;
  }
  .lp_access_map .tab_box {
    padding: 0px 8px;
  }
  .lp_access_map .tab_box .lp_access_contents {
    padding: 20px 0px;
    border-radius: 0px 0px 5px 5px;
  }
  .lp_access_map .tab_box .bus_station_box {
    margin: 0px auto 20px;
    padding-top: 9vw;
    background: url("https://goldenkings.bl.kuroco-img.app/v=1708926826/files/user/_/lp/2023/game_lp_2023/bus_station_bg_sp.png")
      0% 0% / 100% no-repeat;
  }
  .lp_access_map .tab_box .bus_station_box.koza {
    margin: 0px auto 20px;
    padding-top: 9vw;
    background: url("https://goldenkings.bl.kuroco-img.app/v=1712923051/files/user/_/lp/2023/game_lp_2023/bus_station_bg_sp_202404121731.png")
      0% 0% / 100% no-repeat;
  }
  .lp_access_map .tab_box .bus_station_box.raikamu {
    margin: 0px auto 20px;
    padding-top: 9vw;
    background: url("https://goldenkings.bl.kuroco-img.app/v=1712923051/files/user/_/lp/2023/game_lp_2023/bus_station_bg_sp_202404121731.png")
      0% 0% / 100% no-repeat;
  }
  .lp_access_map .tab_box .bus_station_box .route_point_text {
    padding: 2px 10px;
    border-top: 1px solid rgb(0, 63, 107);
    border-bottom: 1px solid rgb(0, 63, 107);
    font-size: 14px;
    margin: 4em 0px;
  }
  .lp_access_map .tab_box .bus_station_box .route_point_text.fast_text {
    margin-top: 8.5vw;
  }
  .lp_access_map .tab_box .bus_station_box .route_point_text span.img_text img {
    vertical-align: text-bottom;
  }
  .lp_access_map
    .tab_box
    .bus_station_box
    .route_point_text
    span.img_text
    img.logo-spacing {
    padding-top: 0px;
  }
  .lp_access_map .tab_box .bus_station_box-img.nobori::before {
    width: 58px;
    height: 68px;
    right: 0px;
    bottom: 0px;
  }
  .lp_access_map .tab_box .bus_station_box-img.gordy-01::after {
    width: 40px;
    height: 53px;
    right: 0px;
    top: -53px;
  }
  .lp_access_map .tab_box .bus_station_box-img.gordy-02::after {
    width: 60px;
    height: 46px;
    left: 2px;
    top: -46px;
  }
  .lp_access_map .tab_box .route_map_area {
    width: 100%;
    padding-top: 52.78%;
  }
  .lp_access_map .tab_box .route_map_area iframe {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100% !important;
    height: 100% !important;
  }
  .lp_access_map .tab_box .bus_station_box .route_point_text span.img_text {
    max-width: 204px;
    padding: 3px 0px;
  }
  .lp_access_map .tab_box .access_information_btn {
    margin-top: 20px;
  }
  .lp_access_map .tab_box .access_information_btn .btn_01 {
    max-width: 480px;
    padding: 0px;
  }
  .lp_access_map .tab_box .access_information_btn .btn_01::before {
    height: 8px;
    width: 27.5px;
    right: -16px;
  }
  .lp_access_map .tab_box .annotation {
    font-size: 10px;
    margin-top: 10px;
  }
  .lp_access_map .route_map_link {
    margin-bottom: 30px;
  }

  .lp_access_map .route_map_link-txt {
    font-size: 14px;
    width: 100%;
  }

  .route_map_link-txt::before {
    top: 5px;
    left: 16px;
  }

  .route_map_link-txt::after {
    top: 5px;
    right: 16px;
  }

  .lp_access_map .route_map_link-btn {
    font-size: 14px;
    width: 100%;
    height: 40px;
  }

  .route_map_link-btn::after {
    top: 13px;
  }

  .lp_access_map .shuttle_bus_notes_text {
    font-size: 14px;
    margin-bottom: 20px;
  }

  #access_infotxt_toho {
    font-size: 1em;
  }

  #access_info_toho {
    padding: 0px;
  }
}

.layout-second .second-body article h2,
.layout-second .second-body article h4,
.news-article p,
.tab-button,
.tab-button.active .limited_text{
  font-family: "Noto Sans Japanese", "Open Sans", sans-serif;
}
.benefits-tabs{
  border-bottom: 1px solid #081c4f;
}
.tab-button{
  background-color: #FFFFFF;
  color: #081c4f;
  border-color: #081c4f;
}
.tab-button.active{
  background-color: #081c4f;
  color: #FFFFFF;
  border-color: #081c4f;
}
.tab-button .limited_text{
  border-color: #081c4f;
  color: #081c4f;
}
.tab-button.active .limited_text {
    color: #FFFFFF;
    border: 1px solid #FFFFFF;
}
.tab-content{
  border-bottom: 1px solid #081c4f;
  background: none;
}
.section__head-main .section-title-jp,
.section-title-en__sub,
.section-title-en,
.news-article p,
.lounge-heading{
  color: #081c4f !important;
}
.layout-second .second-body article h4{
  border-color: #081c4f !important;
  color: #081c4f !important;
  padding: 6px 10px 6px;
  
}
