﻿@charset "UTF-8";

h1 {
	font-weight: bold;
	border-left: 10px solid #ffb4b4;
	border-radius: 0px 20px 20px 0px;
	background-color: #ff1b1b;
	color: #FFFFFF;
}

/* タブ切り替え
---------------------------------------------------------------------------*/
/* タブ */
.tab-list {
	display: flex;
	justify-content: center;
}

.tab-item {
	width: 19%;
	margin: 2px;
	padding: 10px;
	border-radius: 6px;
	background-color: #e28194;
	color: #999;
	font-weight: bold;
	text-align: center;
	cursor: pointer;
	transition: .4s ease-in-out;
}

.tab-item.weekday {
	background-color: #dceacf;
}

.tab-item.saturday {
	background-color: #c2dff3;
}

.tab-item.holiday {
	background-color: #ffcccc;
}

/* タブをクリックした時 ホバーした時 */
.tab-item:hover,
.tab-item.is-active {
	color: #333;
}

.tab-item.weekday:hover,
.tab-item.weekday.is-active {
	background-color: #92d050;
}

.tab-item.saturday:hover,
.tab-item.saturday.is-active {
	background-color: #49acf3;
}

.tab-item.holiday:hover,
.tab-item.holiday.is-active {
	background-color: #ff8080;
}

/* パネル */
/* .panel-list {} */

.panel-item {
	display: none;
}

.panel-item.is-active {
	display: block;
	animation: panel-show .9s ease-in-out forwards;
}

/* パネル切り替えのアニメーション */
@keyframes panel-show {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}


/*ライブ情報
---------------------------------------------------------------------------*/
h2#liveinfo {
	font-size: clamp(1.3rem, calc(1.1rem + 0.625vw), 1.5rem);
	text-align: center;
	position: relative;
	color: #000;
	background: #ffdb6d;
	line-height: 1;
	border-radius: 22px;
}

/* h2#liveinfo:before {
	content: "";
	position: absolute;
	background: #fff;
	top: 50%;
	left: 14px;
	margin-top: -8px;
	height: 15px;
	width: 15px;
	border-radius: 50%;
	box-shadow: 1px 1px 1px #777 inset;
}

h2#liveinfo:after {
	content: "";
	position: absolute;
	top: 0;
	right: -22px;
	height: 0;
	width: 0;
	border: 18px solid #ffbbb5;

	border-right-color: transparent;
} */

h3#liveinfo {
	font-weight: normal;
	margin: 20px 40px 10px 40px;
}

#liveplay {
	border-spacing: 80px;
}

#liveplay .taplay {
	margin: 0 auto;
	border-spacing: 4px;
}

#liveplay .taplay td {
	margin: min(1.2vw, 12px);
	padding: 4px 12px 4px 12px;
}

#liveplay .taplay tr:nth-child(odd) {
	background-color: #ffecce;
}

#liveplay .taplay tr:nth-child(even) {
	background-color: #fff6e7;
}

#liveplay .taplay tr.break {
	background-color: #eeeeee;
}

#liveplay .taplay td:nth-child(1) {
	text-align: center;
	border-radius: 8px 0 0 8px;
	width: min(2.5vw, 25px);
}

#liveplay .taplay td:nth-child(2) {
	width: 500px;
	border-radius: 0 8px 8px 0;
}
@media screen and (max-width: 500px) {
	#liveplay .taplay td:nth-child(2) {
		width: 100%;
	}
}

/* #liveplay .taplay td:nth-child(3),
td:nth-child(4),
td:nth-child(5),
td:nth-child(6) {
	border-radius: 8px;
	padding-left: -10px;
	padding-right: -10px;
	margin: min(1.0vw, 10px);
}

#liveplay .taplay td:nth-child(3) {
	background-color: #ffecb4;
}

#liveplay .taplay td:nth-child(4) {
	background-color: #ffe8a3;
}

#liveplay .taplay td:nth-child(5) {
	background-color: #ffe492;
}

#liveplay .taplay td:nth-child(6) {
	background-color: #ffe080;
} */