@charset "utf-8";

.lead {
	margin: 0 0 60px;
	text-align: center;
}
.month_flex {
	margin: 0 0 60px;
}
.month_flex ul {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
 }
 .month_flex li {
	 list-style: none;
	 margin: 0 10px;
	 font-weight: bold; 
 }
.month_flex li span {
    padding: 0 30px;
    height: 44px;
    background: #FFF;
    border: 2px solid #0B7DD1;
    color: #0B7DD1;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    cursor: pointer;
	text-decoration: none;
	border-radius: 6px;
}
.month_flex li span:hover {
	background: #DFEEF4;
}
.month_flex li.active span {
	background: #0B7DD1;
	color: #FFF;
}

.panel_contents {
	visibility: hidden;
	height: 0;
	transition: all 0.5s;
	background: #FFF;
}
.panel_contents.active {
	animation: panelFadeIn 0.5s linear forwards;
	height: auto;
}

@keyframes panelFadeIn {
0% {
	visibility: hidden;
	opacity: 0;
}

50% {
	visibility: visible;
	opacity: .5;
}

100% {
	visibility: visible;
	opacity: 1;
}
}


.schedule_base {
    margin: 0 auto 80px;
}

.panel_contents .schedule_base {
	display: none;
}
.panel_contents.active .schedule_base {
	display: block;
}



.schedule_base table {
	border-top: 1px solid #999;
	width: 100%;
}
.schedule_base td {
	width: auto;
	border: none;
	padding: 10px 20px;
	text-align: left;
	border: 1px solid #999;
	line-height: 1.8;
}
.schedule_base table tr:first-child td {
	background: #DFEEF4;
	font-weight: bold;
	text-align: center;
	font-size: 80%;
	letter-spacing: 2px;
	white-space: nowrap;
}
.schedule_base table tr td:first-child {
	white-space: nowrap;
}
.schedule_base table tr td:nth-child(2) {
}
.schedule_base table tr td:nth-child(3) {
}
.schedule_base table tr td:nth-child(4) {
}

@media(min-width: 768px) {
.schedule_base .swipe_icon {
	display: none;
}
}
@media(max-width: 768px) {
.schedule_base table th,
.schedule_base table td {
	padding: 10px;
	font-size: 14px;
}
}

@media(max-width: 767px) {
.schedule_base {
	width: 100%;
	overflow: auto;
	margin-bottom: 30px;
	padding-bottom: 30px;	
}


.month_flex {
	margin: 0 0 30px;	
}
.schedule_base table {
	width: auto;	
}

.schedule_base table th,
.schedule_base table td {
	padding: 5px 3px!important;
	font-size: 13px;
}
.ovf_full {
	width: 160vw;	
}

.month_flex li a {
    padding: 0 20px;
    height: 34px;
}

.schedule_base {
	position: relative;	
}

.schedule_base .swipe_icon {
	position: absolute;
	top: 150px;
	left: calc(50vw - 30px);
	width: 60px;
	opacity: 0.8;
	animation: swipeIcon 3s infinite;
}

.swipe_icon img {
	width: 100%;
	height: auto;	
}

@keyframes swipeIcon {
0% {
	transform: translateX(-60px);
}
50% {
	transform: translateX(60px);
}
100% {
	transform: translateX(-60px);
}
}
	
}
@media(max-width: 320px) {
.schedule_base table th,
.schedule_base table td {
	font-size: 12px;
}
.ovf_full {
	width: 170vw;	
}
}