@charset "utf-8";
/* CSS Document */


/* common setting */
header.nav-fixed > nav,
header.nav-fixed > nav:before,
body.nav > header > nav:before,
body.nav > header.nav-fixed > nav:before {
	box-shadow: none;
}
header.nav-fixed > nav:after {
	background: #424242;
}
header > h1 {
	position: fixed;
	top: 60px;
	left: 0;
	width: 100vw;
	min-width: 1280px;
	height: 70px;
	text-align: center;
	padding-top: 15px;
	background: #fff;
	z-index: 9;
	border-bottom: 1px solid #c0c0c0;
}
header > h1 > a > img {
	height: 40px;
	vertical-align: top;
}

main {	
	position: relative;
}
main > section {
	position: relative;
}
#calendar {
	position: fixed;
	z-index: 9;
	top: 130px;
	left: 0;
	width: 100vw;
	min-width: 1280px;
	background: rgba(248,248,248,1);
	box-shadow: 0 5px 10px rgba(0,0,0,.2);
	text-align: center;
}
main,#calendar {
	-ms-user-select: none; /* IE 10+ */
	-moz-user-select: -moz-none;
	-khtml-user-select: none;
	-webkit-user-select: none;
	user-select: none;
}
#calendar h3 {
	font-size: 22px;
	font-weight: normal;
	padding: 20px 0 0 0;
}
#calendar .calendar-list {
	padding-bottom: 20px;
	position: relative;
	display: inline-block;
	height: 320px;
}
#calendar .calendar-list > a {
	display: inline-block;
	position: absolute;
	top: -45px;
	transition: all .2s;
	transform-origin: center;
	opacity: 0;
	height: calc(100% + 45px);
	width: calc(50vw - 158px);
	padding-top: calc(50% - 10px);
	padding-left: 20px;
	padding-right: 20px;
}
#calendar .swiper-slide-active .calendar-list > a {
	opacity: 1;
}
#calendar .calendar-list > a > img {
	height: 40px;
}
#calendar .calendar-list > a.prev {
	right: 316px;
	text-align: right;
}
#calendar .calendar-list > a.prev:hover {
	transform: translateX(-5px);
}
#calendar .calendar-list > a.next {
	left: 316px;
	text-align: left;
}
#calendar .calendar-list > a.next:hover {
	transform: translateX(5px);
}
#calendar .calendar-list > a.prev > img {
	transform: scale(-1.0,1.0);
}
#calendar .calendar-list > .calendar-list-week {
	padding-top: 6px;
	letter-spacing: -.4em;
}
#calendar .calendar-list > .calendar-list-week:first-child {
	padding-top: 0;
}
#calendar .calendar-list > .calendar-list-week > span {
	letter-spacing: normal;
	display: inline-block;
	width: 40px;
	margin-right: 6px;
	vertical-align: bottom;
}
#calendar .calendar-list > .calendar-list-week > span:nth-child(7n) {
	margin-right: 0;
}
#calendar .calendar-list > .calendar-list-week > span.day_of_week {
	font-size: 14px;
}
#calendar .calendar-list > .calendar-list-week > span.day {
	height: 40px;
	line-height: 40px;
	font-size: 18px;
	border-radius: 6px;
	transition: all .2s;
	cursor: pointer;
}
#calendar .calendar-list > .calendar-list-week > span.day:hover {
	box-shadow: 0 0 0 1px rgb(64,187,238) inset, 0 0 4px rgba(64,187,238,.8);
}
#calendar .calendar-list > .calendar-list-week > span.current-false {
	color: rgb(166,166,166);
}
#calendar .calendar-list > .calendar-list-week > span.current-false.holiday-true {
	color: rgb(248,120,147);
}
#calendar .calendar-list > .calendar-list-week > span.current-true {
	color: rgb(89,89,89);
}
#calendar .calendar-list > .calendar-list-week > span.current-true.holiday-true {
	color: rgb(244,58,89);
}
#calendar .calendar-list > .calendar-list-week > span.event-false {
	background: rgb(255,255,255);
}
#calendar .calendar-list > .calendar-list-week > span.event-true {
	background: rgb(255,255,204);
}
#calendar .calendar-list > .calendar-list-week > span.current-false.event-true {
	background: rgb(255,255,204);
}
#calendar .calendar-list > .calendar-list-week > span.today-false,
#calendar .calendar-list > .calendar-list-week > span.today-true {
	box-shadow: 0 0 0 1px rgb(191,191,191) inset;
}
#calendar .swiper-slide-active .calendar-list > .calendar-list-week > span.today-true {
	box-shadow: 0 0 0 1px rgb(244,58,89) inset, 0 0 4px rgba(244,58,89,.5);
}
.swiper-container {
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: all .4s;
}
.swiper-container.ready {
	opacity: 1;
}
.swiper-wrapper {
	-webkit-align-items: stretch !important;  
	align-items: stretch !important; 
}

main {
	margin-top: 495px !important;
}
main .schedule-list {
	display: none;
	opacity: 0;
}
main .schedule-list.active {
	display: block;
	opacity: 1;
	-webkit-animation: show 0.4s;
	animation: show 0.4s;
}
@keyframes show {
	  0% { display: none;  opacity: 0; }
	  1% { display: block; opacity: 0; }
	100% { display: block; opacity: 1; }
}
@-webkit-keyframes show {
	  0% { display: none;  opacity: 0; }
	  1% { display: block; opacity: 0; }
	100% { display: block; opacity: 1; }
}
main .omission-true,
main .omission-false {
	border: none;
	border-bottom: 1px solid rgb(224,224,224);
}
main .omission-true {
	padding: 0 30px;
}
main .omission-false {
	width: 100%;
	padding: 30px 0;
	overflow: auto;
	position: relative;
}
main .omission-false > a {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	transition: all .4s;
}
main .omission-false > a:hover {
	background: rgba(255,255,255,.5);
}
main .omission-false > div {
	overflow: hidden;
	float: left;
}
main .omission-false > div:nth-child(1) {
	width: 148px;
}
main .omission-false > div:nth-child(2) {
	width: calc(100% - 148px);
}
main .omission-false > div:nth-child(1) {
	text-align: center;
	font-weight: bold;
}
main .omission-false > div:nth-child(1) > h2,
main .omission-false > div:nth-child(1) > p {
	font-size: 44px;
	color: rgb(166,166,166);
}
main .omission-false > div:nth-child(1) > p {
	font-size: 36px;
}
.lang-en main .omission-false > div:nth-child(1) > p {
	font-size: 32px;
}
main .omission-false > div:nth-child(1) > h2 {
	padding-bottom: 5px;
	margin-top: -8px;
}
.lang-en main .omission-false > div:nth-child(1) > h2 {
	padding-bottom: 10px;
}
main .omission-false > div:nth-child(2) {
	position: relative;
	padding-right: 120px;
}
main .omission-false > div:nth-child(2) > img {
	height: 20px;
}
main .omission-false > div:nth-child(2) > h2,
main .omission-false > div:nth-child(2) > p {
	padding-left: 0 !important;
	padding-right: 0 !important;
}
main .omission-false > div:nth-child(2) > .link-category {
	position: absolute;
	top: 0;
	right: 46px;
	overflow: auto;
	display: block;
}
main .omission-false > div:nth-child(2) > .link-category > * {
	display: block !important;
	position: static !important;
	margin: 0 !important;
	overflow: hidden;
	float: left;
}
article .blank-link {
	height: 24px;
	line-height: 24px;
	padding: 0 7px !important;
}
article .category {
	height: 24px;
	line-height: 24px;
	padding: 0 10px !important;
}