@charset "utf-8";
/* ===========================================
 * 有料席情報
 * ======================================== */
/* ===========================================
 * ロイヤル席情報
 * ======================================== */
main #com_content_wrapper .com_content {
	padding: 40px 0px 40px 0px;
}
.flex {
	display: flex;
}

.justify_content {
	justify-content: center;
}

.justify_content_between {
	justify-content: space-between;
}

.gap_40 {
	gap: 40px;
}

.target_content {
	display: none;
}

.target_content.content-selected {
	display: block;
}

.par-tab02 .par-tab_li.tab-selected {
	border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: var(--MAIN_COLOR, #003288);
}

.par-tab02 .par-tab_li.tab-selected .par-tab_item .par-tab_item_cell {
	display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    color: #FFFFFF;
	font-size:17px;
}

.par-tab02 li.par-tab_li {
    width: 350px;
}

.par-tab02.payseat_content_tab {
    gap: 35px;
    padding-top: 70px;
}

.category_facility {
    padding: 10px 40px 10px 40px;
}

/* スライダー */
.slider-wrapper {
  position: relative;
  width: 900px;
  margin: 0 auto;
}

.slider {
  position: relative;
  width: 900px;
  margin: 0 auto;
}

.slider-inner {
  width: 900px;
  overflow: hidden; /* ← 画像のはみ出しを隠すのはここだけ */
}

.slides {
  display: flex;
  transition: transform 0.3s ease;
}

.slides img {
  width: 900px;
  height: auto;
  flex-shrink: 0;
  user-select: none; /* ドラッグ選択防止 */
}

.slides img.active {
  display: block;
}

button.prev,
button.next {
  position: absolute;
  top: 43%;
  left: 100%;
  right: 100%;
  transform: translateY(-50%);
  background: unset;
  color: #003288;
  border: none;
  padding: 0px;
  cursor: pointer;
  font-size: 50px;
  z-index: 10;
  transform: scaleX(0.5);
  transform: scaleY(2.5);
}

/* 左右を画像の外側に */
button.prev {
  left: -60px;   /* ★ 外側へ移動 */
}

button.next {
  right: -50px;  /* ★ 外側へ移動 */
}

/* ドットナビゲーション */
.dots {
  text-align: center;
  margin-top: 10px;
}

.dots span {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 4px;
  border-radius: 50%;
  background: #cccccc;
  cursor: pointer;
}

.dots span.active {
  background: #333333;
}

/* スライダー終わり */

p.text_center {
    text-align: center;
    font-size: 16px;
    font-weight: bold;
}

span.black_caution {
    font-size: 14px;
    font-weight: normal;
    display: inline-block;
    margin: 10px 0px 20px 0px;
}

span.red_caution {
    font-size: 14px;
    color: #FF0000;
}

.payseat_button p{
    display: flex;
    margin: 0 auto;
    width: 320px;
    height: 60px;
    font-size: 16px;
    line-height: 60px;
    border-radius: 20px;
    background-color: #003288;
    color: #FFFFFF;
    text-align: center;
    justify-content: center;   /* 全体を中央寄せ */
    position: relative;
    margin-top: 20px;
}

.right_icon_bg {
  position: absolute;
  right: 0;
  top: 51%;
  height: 20px;
  width: 20px;
  line-height: 20px;
  border-radius: 15px;
  transform: translateY(-50%);
  background-color: #ffffff;
  margin-right: 20px;
}

.right_icon_bg img {
    margin-left: 4px;
}

.payseat_button span.nextpage_icon{
    content: '';
    position: absolute;
    width: 3.0rem;
    height: 3.0rem;
    right: 0rem;
    top: 0rem;
    background-color: #003288;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
}

.payseat_button span.nextpage_icon::after{
    content: '';
    position: absolute;
    left: 1.5rem;
    top: 41%;
    width: 1.0rem;
    height: 1.0rem;
    border-left: 0.2rem solid #FFFFFF;
    border-bottom: 0.2rem solid #FFFFFF;
    transform: translate(-50%, -50%) rotate(-45deg);
}

table{
  border-collapse: separate;   /* collapseだと角丸が潰れるので注意 */
  border: 1px solid #7C7C7C;      /* 外枠の線 */
  border-radius: 10px;         /* 角丸 */
  overflow: hidden;            /* はみ出し防止 */
}

table th {
    width: 140px;
    font-size: 16px;
	font-weight: bold;
    text-align: center;
    vertical-align: middle;
    background: #003288;
    color: #FFFFFF;
    padding: 1.5rem;
}

table td {
    background-color: #FFFFFF;
}
table.left_table td {
	min-width: 210px;
}

table.right_table {
  flex: 1;
  width: auto;
}

table th,
table td {
	border: 1px solid #7C7C7C;
	font-size: 16px;
	padding: 15px;
	font-weight: normal;
	vertical-align: middle;
}

table.right_table td {
	padding-left: 0px;
}

table tr td span{
	font-size: 14px;
}

table tr ul {
  display: flex;
  flex-direction: column; /* 縦方向に並べる */
  flex-wrap: wrap;        /* 折り返しを許可 */
  list-style-type: disc;
  height: 150px;          /* 1列の高さ（liの高さ×5） */
  justify-content: center;
}
table tr ul li {
  list-style: none;
  position: relative;
  padding-left: 2em;
}

table tr ul li {
  margin-bottom: 3px; /* 行間が必要なら */
}
table.right_table td ul li::before {
  content: "・";
  font-size: 20px;
  position: absolute;
  padding-left: 10px;
  left: 0; /* ← padding の外側に配置される */
  line-height: 24px;
}

.payseat_1 table.right_table td ul li:nth-child(8)::before {
  content: "";
}

.payseat_2 table.right_table td ul li:nth-child(3)::before {
  content: "";
}

.seat_title,.floor_map {
	font-size: 30px;
	font-weight: bold;
	color: #003288;
	padding-bottom: 20px;
	padding-top: 30px;
	position: relative;
}

.abs_tokotan1,
.abs_tokotan2,
.abs_tokotan3 {
	position: absolute;
}

img.abs_tokotan1 {
    top: -75px;
    left: 100px;
}

img.abs_tokotan2 {
    right: 70px;
    top: 240px;
}

img.abs_tokotan3 {
    right: 50px;
    bottom: -35px;
}

.payseat_access,
.fx_content {
    display: flex;
    justify-content: space-between;
}

.seat_flex {
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
}

.payseat_access {
    padding-left: 20px;
}

.payseat_access p,
.fx_content a p {
    font-size: 14px;
    padding-right: 45px;
    color: #FF7F00;
    text-decoration: underline;
}
.payseat_access p {
    font-size: 20px;
}
.before_next {
    margin-top: 3px;
    margin-left: 10px;
    position: absolute;
    width: 18px;
    height: 18px;
    background-color: #FF7F00;
    border-radius: 50%;
    border: 2px solid var(--red);
    cursor: pointer;
}

.payseat_access .before_next {
    margin-top: 8px;
}

.before_next::before {
    content: "";
    position: absolute;
    width: 5px;
    height: 5px;
    left: 23%;
    top: 26%;
    border-top: 2px solid #ffffff;
    border-right: 2px solid #ffffff;
    transform: rotate(45deg);
}
