@charset "utf-8";

/**
 * ***************************************
 * 発売ページに関わるCSSの設定
 * ***************************************
 */
/*カレンダーコンテナ*/
.hatubai-container{
	margin:0 auto;
}
@media (min-width: 900px) {
	.hatubai-container{
		width:80%;
	}
}
.hatubai-module{
	padding:0px;
}
.calendar-container{
}
.calendar{
	overflow-x:scroll;
}
.calendar table{
	border-collapse:collapse;
	width:100%;
	border-left:1px solid #444;
	border-right:1px solid #444;
	font-size:10px;
	text-align:center;
	vertical-align:middle;
	overflow-x:scroll;
}
.calendar table th{
	position:sticky;
	left:0;
	z-index:1;
	min-width:78px;
	border-bottom:1px solid #3aa3a3;
	padding:2px;
	text-align:center;
	vertical-align:middle;
}
.calendar table tr{
	border-bottom:1px solid #3aa3a3;
	border-top:1px solid #3aa3a3;
}
.calendar table td{
	min-width:28px;
	word-wrap:break-word;/*折り返し*/
	border-left:1px solid #3aa3a3;
	border-bottom:1px solid #3aa3a3;
	padding:2px;
	text-align:center;
	vertical-align:middle;
	font-size:1.2em;
	line-height:1.2em;
}

.calendar a {
	color: inherit;
	text-decoration: none;
}
/*曜日色分け*/
.sat{
 color:#0000cc;
}
.sun{
 color:#cc0000;
}
/*モーニング・デイ・ナイター色分け*/
.c_moning{
	background:#4f90ff;
}
.c_day{
	background:#99cc3b;
}
.c_summer{
	background:#e0a941;
}
.c_night{
	background:#2f5597;
	color:#fff;
}
/*グレード色分け*/
.c_sg{
	background:#c9171e;
	color:#fff;
}
.c_g1{
	background:#ff6600;
}
.c_pg1{
	background:#ff6600;
	color:#fff;
}
.c_g2{
	background:#70ad47;
}
.c_g3{
	background:#66ccff;
}
/*女子*/
.c_ladys{
	background:#fccc42;
}
/*中止*/
.c_cancel{
	background:#3aa3a3;
	color:#fff;
}
/*グレード表*/
div.list{
}
div.list ul{
	margin-top:10px;
	margin-bottom:0px;
	display:flex;
	flex-wrap:wrap;
	list-style:none;
}
div.list li{
	margin-right:10px;
	margin-bottom:5px;
	padding-left:15px;
	padding-right:5px;
	line-height:2.5em;
	font-size:11px;
	background:left center no-repeat;
	background-size:30px auto;
}
/*
div.list li:nth-child(1){
	background-image:url(../images/sg.png);
}
div.list li:nth-child(2){
	background-image:url(../images/g1.png);
}
div.list li:nth-child(3){
	background-image:url(../images/g2.png);
}
div.list li:nth-child(4){
	background-image:url(../images/g3.png);
}
div.list li:nth-child(5){
	background-image:url(../images/ladys.png);
}
div.list li:nth-child(6){
	background-image:url(../images/moning-r.png);
}
div.list li:nth-child(7){
	background-image:url(../images/day-r.png);
}
div.list li:nth-child(8){
	background-image:url(../images/summer-r.png);
}
div.list li:nth-child(9){
	background-image:url(../images/night-r.png);
}
*/
/*　タブメニュ－仕様　*/
.tab-wrap {
    width: 90%;
    display: flex;
    flex-wrap: wrap;
    margin:20px auto;
}

.tab-wrap:after {
    content: '';
    width: 100%;
    height: 3px;
    background: #325A8C;
    display: block;
    order: -1;
}

.tab-label {
    color: White;
    background: LightGray;
    font-size: 16px;
    font-size: 1.6rem;
    font-weight: bold;
    white-space: nowrap;
    text-align: center;
    padding: 10px .5em;
    order: -1;
    position: relative;
    z-index: 1;
    cursor: pointer;
    border-radius: 5px 5px 0 0;
    flex: 1;
}

.tab-label:not(:last-of-type) {
    margin-right: 5px;
}

.tab-content {
    width: 100%;
    height: 0;
    overflow: hidden;
    opacity: 0;
}

.tab-switch:checked+.tab-label {
    background: #325A8C;
}

.tab-switch:checked+.tab-label+.tab-content {
    height: auto;
    overflow: auto;
    opacity: 1;
    transition: .5s opacity;
}

.tab-switch {
    display: none;
}
