/* カスタマイズ用CSS */

/*ステージシート*/
.seat-container{
	width: 100%;
	margin: 20px 0;
}
.seat-memo{
	margin: 10px 3px;
}
.seat-part{
	width: 100%;
	border: 1px solid #333;
	border-radius: 20px;
	text-align: center;
	background: #fff;
}
.seat-header{
	width: 100%;
	text-align: center;
}
.seat-title{
	width: 14%;
	min-width: 10em;
	border: 1px solid #333;
	text-align: center;
	font-weight: bold;
	font-size: 120%;
	line-height: 1.5;
	display: inline-block;
	margin: 20px 0;
	background: #fff;
}
.seat-title-footer {
	width: 25%;
	min-width: 10em;
	border: 1px solid #333;
	text-align: center;
	font-weight: bold;
	font-size: 120%;
	line-height: 1.5;
	display: inline-block;
	margin: 20px 0 0;
	background: #fff;
}
.seat-main{
	width: 100%;
	text-align: center;
}
.seat-list ul{
	width: 100%;
	list-style: none;
	margin: 0;
	padding: 10px 0;
	text-align: center;
	display: flex;
	justify-content: center;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}
.seat-list ul li{
	display: inline-block;
	border: 1px solid #333;
	width: 25px;
	min-width: 25px;
	font-size: 12px;
	margin: 1px;
	background: #fff;
}
.seat-list ul li.normal-seat{
	background: #fff;
}
.seat-list ul li.admin-seat{
	background: #fffda2;
}
.seat-list ul li.none-normal-seat{
    background: darkgray;
}
.seat-list ul li.none-seat{
	background: gray;
}
.seat-list ul li.last-seat{
	background: pink;
}
.seat-list ul li.hidden-seat{
	background: #fff;
	border: 1px solid #fff;
	opacity: 0;
}
.seat-list ul li p{
	width: 100%;
	padding: 6px 0;
}
.seat-list ul li p:first-child {
	/* font-weight: bold; */
	letter-spacing: -0.5px;
}
.seat-list ul li a{
	display: block;
	color: #333;
}
.seat-list ul li a:hover {
	text-decoration: unset;
	color: #fff;
	background: #8BB6D6;
}
.seat-list ul li.prev-seat{
	margin: 2px;
	border: none;
	background-image: url(left.png);
}
.seat-list ul li.next-seat{
	margin: 2px;
	border: none;
	background-image: url(right.png);
}
.seat-footer{
	width: 100%;
	text-align: center;
}
.map_text {
    margin: 10px 0;
    font-weight: bold;
}
.seat_stage {
    text-align: center;
}
.seat-bottom-text {
	text-align: left;
	margin: 10px 0 20px 50px;
}
#detailphotobloc-left .photo-left img {
    max-height: 260px;
}
#detailrightbloc-right .photo-right img {
    max-height: 260px;
    background-color: white;
}
#detailphotobloc-area {
    width: 100%;
    display: flex;
    justify-content: center;
}
#detailphotobloc-left {
    margin: 0 20px;
}
#detailrightbloc-right {
    margin: 0 20px;
}

@media screen and (max-width: 980px) {
    /* seat */
    .seat-list {
        width: calc(100% - 38px);
        overflow-x: scroll;
        -webkit-overflow-scrolling: touch;
        margin: 0 auto;
    }
    .seat-list::-webkit-scrollbar {
        height: 10px;
    }
    .seat-list::-webkit-scrollbar-thumb{
        background: #666;
        border-radius: 5px;
    }
    .seat-list::-webkit-scrollbar-track-piece {
        background: #999;
    }
    .seat-list ul {
        width: 1080px !important;
        justify-content: unset !important;
    }
    .seat-list_area {
        position: relative;
        background: #fff;
        border: 1px solid #999;
        margin-bottom: 20px;
    }
    .seat-list_area::before {
        content: '';
        position: absolute;
        top: 24px;
        left: 4px;
        border-top: 16px solid transparent;
        border-right: 10px solid #999;
        border-bottom: 16px solid transparent;
    }
    .seat-list_area::after {
        content: '';
        position: absolute;
        top: 24px;
        right: 4px;
        border-top: 16px solid transparent;
        border-left: 10px solid #999;
        border-bottom: 16px solid transparent;
    }
    .seat-text {
        display: block;
        text-align: left;
    }
    .seat-part {
        background: transparent !important;
        border: none !important;
    }
    /* seat-view */
    #detailrightbloc-right {
    	margin: 0 !important;
    }
    .seat-view-part{
    	padding-bottom: 15px;
    }
    .seat-view ul {
    	padding: 1px 0 !important;
    }
    .seat-view ul li {
    	min-width: 2% !important;
    	margin: 1px 0.5px !important;
    	height: 30px;
    }
    .seat-view ul li p {
    	padding: 0 !important;
    	display: none;
    }
}

/*座席状況*/
.th_line {
    border-right-width: 1px;
    border-left-width: 1px;
}

.td_line_left {
    border-left-width: 1px;
}

.row_dark_gray{
    --bs-table-accent-bg: darkgray;
}

.row_gray{
    --bs-table-accent-bg: gray;
}

.row_light_red{
    --bs-table-accent-bg: #ffd1d1;
}

.th_light_pink{
    background-color: #ffd1e8 !important;
    box-shadow: none !important;
}

.th_light_blue{
    background-color: #d1ffff !important;
    box-shadow: none !important;
}

.th_light_yellow{
    background-color: #ffffd1 !important;
    box-shadow: none !important;
}