@charset "utf-8";

/*-------------------------------
	タイムスケジュール
-------------------------------*/

.Schedule__calendar{
	margin-bottom: 5rem;
	line-height: 1;
	text-align: center;
	position: relative;
	z-index: 7000;
}
.Schedule__calendar-text{
	font-size: 1.8rem;
	padding-left: 3.2rem;
	padding-bottom: .7rem;
	line-height: 1;
	color: #999;
	display: inline-block;
	cursor: pointer;
	position: relative;
}
.Schedule__calendar-text::before{
	content: "";
	display: block;
	width: 1.8rem;
	height: 1.8rem;
	background-image: url(../images/today_event/icon_calendar-gray.svg);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
	position: absolute;
	left: .5rem;
	top: 0;
}
.Schedule__calendar-text::after{
	content: "";
	display: block;
	width: 100%;
	height: 1px;
	background: #999;
	position: absolute;
	left: 0;
	bottom: 0;
	right: 0;
}

.Schedule-calendar-wrap{
	transition: var(--transition);
	width: 100%;
	max-width: 35rem;
	border-radius: .5rem;
	position: absolute;
	left: 50%;
	top: 1.5em;
	transform: translate(-50%,-5%);
	opacity: 0;
	visibility: hidden;
	box-shadow: 1px 0 0 #e6e6e6,-1px 0 0 #e6e6e6,0 1px 0 #e6e6e6,0 -1px 0 #e6e6e6,0 3px 13px rgba(0,0,0,0.08);
	background: #fff;
}
.Schedule-calendar-wrap.-on{
	transform: translate(-50%,0%);
	opacity: 1;
	visibility: visible;
}
.Schedule-calendar__button{
	width: 5.5rem;
	height: 6.6rem;
	position: absolute;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}
.Schedule-calendar__button::before{
	content: "";
	display: block;
	width: 1.1rem;
	height: 1.1rem;
	border-top: 2px solid #555;
	border-right: 2px solid #555;
}
.Schedule-calendar__button.-before{
	left: 0;
	top: 0;
}
.Schedule-calendar__button.-after{
	right: 0;
	top: 0;
}
.Schedule-calendar__button.-before::before{
	transform: rotate(-135deg);
}
.Schedule-calendar__button.-after::before{
	transform: rotate(45deg);
}
.Schedule-calendar__button.-not{
	pointer-events: none;
	opacity: .4;
}


.Schedule-calendar{
	width: 100%;
}
.Schedule-calendar__caption{
	width: 100%;
	line-height: 6.6rem;
	font-size: 2.2rem;
	font-weight: 500;
	text-align: center;
}
.Schedule-calendar__head{
	height: 2.7rem;
}
.Schedule-calendar__head-item{
	font-size: 1.6rem;
	line-height: 1;
	font-weight: 400;
	color: rgba(0,0,0,.54);
	text-align: center;
	vertical-align: middle;
}
.Schedule-calendar__item{
	height: 5rem;
	font-weight: 500;
	color: #333;
	font-size: 1.8rem;
	text-align: center;
	vertical-align: middle;
}
.Schedule-calendar__item a{
	width: 100%;
	height: 100%;
	border-radius: 50%;
	color: #333;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 1 !important;
}
.Schedule-calendar__item a:hover{
	background: #e6e6e6;
}
.Schedule-calendar__item.-empty::before{
	content: "-";
	opacity: .4;
	font-weight: 400;
}
.Schedule-calendar__item.-past,
.Schedule-calendar__item.-past a{
	opacity: .4;
	pointer-events: none;
}
.Schedule-calendar__item:last-child,
.Schedule-calendar__item:last-child a,
.Schedule-calendar__head-item.-stu{
	color: #1e90ff;
}
.Schedule-calendar__item:first-child,
.Schedule-calendar__item:first-child a,
.Schedule-calendar__head-item.-sun{
	color: #dc143c;
}

.Schedule__tab{
	width: 100%;
	margin-bottom: 7rem;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	z-index: 5000;
}
.Schedule__tab::after{
	background: var(--subcolor);
	content: "";
	display: block;
	width: 100%;
	height: 2px;
	position: absolute;
	left: 0;
	bottom: 0;
	right: 0;
	z-index: -1;
}
.Schedule__tab-item{
	width: 35rem;
	height: 8rem;
	border-top-left-radius: 1rem;
	border-top-right-radius: 1rem;
	border: 2px solid #ccc;
	background: #f2f2f2;
	border-bottom: none;
	position: relative;
	z-index: -1;
	cursor: pointer;
}
.Schedule__tab-item:not(:last-child){
	margin-right: 2rem;
}
.Schedule__tab-item span{
	font-size: 2.4rem;
	width: 100%;
	height: 100%;
	color: #999;
	display: flex;
	align-items: center;
	justify-content: center;
}
.Schedule__tab-item.-current{
	border-color: var(--subcolor);
	background: #fff;
	z-index: 6000;
}
.Schedule__tab-item.-current span{
	color: var(--subcolor);
	font-weight: 700;
}

/*----- イベント */
.Schedule-block-wrap{
    width: 100%;
	margin-bottom: 12rem;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
	display: none;
}
.Schedule-block-wrap.-current{
    display: flex;
}
.Schedule-block-wrap::after{
    content: "";
    display: block;
    width: calc((100% - 10rem) / 2);
    height: 0;
    order: 9999;
}
.Schedule-block{
    width: calc((100% - 10rem) / 2);
}
.Schedule-block:not(:nth-last-of-type(-n+2)){
    margin-bottom: 7rem;
}
.Schedule-block__image{
    width: 100%;
    border-radius: 2rem;
    aspect-ratio: 3 / 2;
    overflow: hidden;
}
.Schedule-block__image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.Schedule-block__body{
    padding-top: 3rem;
    padding-left: 3rem;
    padding-right: 3rem;
}
.Schedule-block__category{
    margin-bottom: 1.5rem;
}
.Schedule-block__title{
    font-size: 2.4rem;
    margin-bottom: 1.4rem;
    line-height: calc(3.6 / 2.4);
    font-weight: 700;
}
.Schedule-block__schedule{
    color: var(--maincolor);
    line-height: calc(3 / 2);
	font-feature-settings: "palt";
}

/*----- 表 */
.Schedule-table{
	margin-bottom: 12rem;
	position: relative;
    /* z-index: 4000; */
	z-index: 6000;
	display: none;
}
.Schedule-table.-current{
	display: block;
}
.Schedule-table__header{
	width: 100%;
	height: 5.6rem;
	padding-right: 4.5rem;
	border-top: 1px solid #acb4b6;
	border-bottom: 1px solid #acb4b6; 
	background: #eaf9fc;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: flex-start;
}
.Schedule-table__header__inner{
	width: calc(100% - 44rem);
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: flex-start;
}
.Schedule-table__header::before{
	content: "";
	display: block;
	width: 44rem;
	height: 100%;
}
.Schedule-table__header-time{
	width: calc(100% / 11);
	height: 100%;
	border-left: 1px solid transparent;
	position: relative;
}
.Schedule-table__header-time::before,
.Schedule-table__header-time::after{
	content: "";
	display: block;
	width: 1px;
	height: 1.6rem;
	position: absolute;
	bottom: 0;
	background: #acb4b6;
}
.Schedule-table__header-time::before{
	left: -1px;
}
.Schedule-table__header-time::after{
	left: 50%;
}
.Schedule-table__header-time span{
	font-family: var(--en);
	font-size: 1.4rem;
	line-height: 1;
	font-weight: 700;
	transform: translateX(-50%);
	display: inline-block;
}

/* 最後の処理 */
.Schedule-table__header-time:last-child{
	width: 0;
}
.Schedule-table__header-time:last-child::after{
	display: none;
}

.Schedule-table__item{
	width: 100%;
	padding-right: 4.5rem;
	display: flex;
	align-items: stretch;
	justify-content: flex-start;
}
.Schedule-table__item:nth-of-type(2n){
	background: #f2f0f1;
}
.Schedule-table__item__left{
	width: 44rem;
	padding: 2rem 2rem 1.8rem;
}
.Schedule-table__item__left a{
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.Schedule-table__item-content-category{
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: flex-start;
}
.Schedule-table__item-content-category__item{
	font-size: 1.2rem;
	min-height: 1.5rem;
	padding: .3rem .8rem;
	min-width: 6.5rem;
	color: #fff;
}
.Schedule-table__item-content__title{
	font-size: 1.8rem;
	line-height: 1.2;
	font-weight: 700;
	text-decoration: underline;
}
.Schedule-table__item__right{
	width: calc(100% - 44rem);
}
.Schedule-table__item-content{
	width: calc(100% - 9rem);
	padding-right: 2rem;
}
.Schedule-table__item-content__image{
	width: 9rem;
	border-radius: 1rem;
	overflow: hidden;
}
.Schedule-table__item-content__image img{
	width: 100%;
	aspect-ratio: 3 / 2;
	object-fit: cover;
}
.Schedule-table__item__right{
	width: calc(100% - 44rem);
	display: flex;
	align-items: stretch;
	justify-content: flex-start;
	position: relative;
	z-index: 4000;
}
.Schedule-table__item:last-child{
	border-bottom: 1px solid #acb4b6;
}
.Schedule-table__item-time{
	width: calc(100% / 11);
	height: 100%;
	border-left: 1px solid #acb4b6;
	position: relative;
}
/* .Schedule-table__item:first-child .Schedule-table__item-time::before{
	content: "";
	display: block;
	width: 1px;
	height: 1.6rem;
	background: #acb4b6;
	position: absolute;
	left: -1px;
	top: 0;
	transform: translateY(-100%);
} */
.Schedule-table__item-time:last-child{
	width: 0;
}
.Schedule-table__item-time_bar{
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	height: 5rem;
	transform: translateY(-50%);
	background: #ddd;
	z-index: 6000;
}
/* イベント時間 */
.Schedule-table__item-time_bar{
	width: 100%;
}
/* カテゴリ */
.Schedule-table__item.-event_cate1 .Schedule-table__item-time_bar{
	background: var(--maincolor);
}
.Schedule-table__item.-event_cate2 .Schedule-table__item-time_bar{
	background: #d2c300;
}
.Schedule-table__item.-event_cate3 .Schedule-table__item-time_bar{
	background: #f39800;
}
.Schedule-table__item.-event_cate4 .Schedule-table__item-time_bar{
	background: #9a72bc;
}
.Schedule-table__item.-event_cate5 .Schedule-table__item-time_bar{
	background: #e96767;
}
.Schedule-table__item.-event_cate6 .Schedule-table__item-time_bar{
	background: #8cc63f;
}
.Schedule-table__item.-event_cate7 .Schedule-table__item-time_bar{
	background: #a0866e;
}
.Schedule-table__item.-event_cate8 .Schedule-table__item-time_bar{
	background: var(--subcolor);
}
.Schedule-table__item.-event_cate9 .Schedule-table__item-time_bar{
	background: #66af99;
}
.Schedule-table__item.-event_cate10 .Schedule-table__item-time_bar{
	background: #f59196;
}
.Schedule-table__item.-event_cate11 .Schedule-table__item-time_bar{
	background: #b3b3b3;
}
.Schedule-table__item.-event_cate12 .Schedule-table__item-time_bar{
	background: #b48c14;
}
.Schedule-table__item.-event_cate13 .Schedule-table__item-time_bar{
	background: #b48c14;
}
.Schedule-table__item.-event_cate14 .Schedule-table__item-time_bar{
	background: #692891;
}

.Schedule__text{
	width: 100%;
	text-align: center;
}
.Schedule__button{
	margin-left: auto;
	margin-right: auto;
}

@media screen and (min-width:769px) , print{

	/* 固定時 */
	.Schedule-table__header.-on{
		width: calc(100% - (var(--padding-leftright) * 2));
		top: var(--header-height);
		max-width: 110rem;
		position: fixed;
		left: 0;
		right: 0;
		z-index: 6000;
		margin-left: auto;
		margin-right: auto;
	}
	.Schedule-table__header.-on + .Schedule-table__body{
		padding-top: 5.6rem;
	}

}
@media screen and (max-width:1240px) and (min-width: 769px){

}
@media screen and (max-width:1100px) and (min-width: 769px){

	.Schedule-table__header::before{
		width: 35rem;
	}
	.Schedule-table__header__inner{
		width: calc(100% - 35rem);
	}
	.Schedule-table__item__left{
		width: 35rem;
	}
	.Schedule-table__item__right{
		width: calc(100% - 35rem);
	}

}
@media screen and (max-width:960px) and (min-width: 769px){

	.Schedule-table__header{
		padding-right: 2.5rem;
	}
	.Schedule-table__header::before{
		width: 25rem;
	}
	.Schedule-table__header__inner{
		width: calc(100% - 25rem);
	}
	.Schedule-table__item{
		padding-right: 2.5rem;
	}
	.Schedule-table__item__left{
		width: 25rem;
	}
	.Schedule-table__item__left a{
		flex-direction: column;
		align-items: flex-start;
	}
	.Schedule-table__item-content{
		width: 100%;
		padding-right: 0;
	}
	.Schedule-table__item-content__image{
		width: 100%;
		margin-top: 1.5rem;
		height: auto;
	}
	.Schedule-table__item__right{
		width: calc(100% - 25rem);
	}

}
@media screen and (max-width:768px){

	.Schedule__calendar{
		margin-bottom: 6rem;
	}
	.Schedule__calendar-text{
		font-size: 2.7rem;
		padding-left: 4.8rem;
		padding-bottom: 1rem;
		padding-right: .5rem;
	}
	.Schedule__calendar-text::before{
		width: 2.7rem;
		height: 2.7rem;
		left: 1rem;
	}

	.Schedule-calendar-wrap{
		max-width: 64rem;
	}
	.Schedule-calendar__button{
		width: 2.5em;
		height: 3em;
		font-size: 6vw;
	}
	.Schedule-calendar__button::before{
		width: .5em;
		height: .5em;
	}


	.Schedule-calendar__caption{
		line-height: 3em;
		font-size: 6vw;
	}
	.Schedule-calendar__head{
		height: 1.5em;
	}
	.Schedule-calendar__head-item{
		font-size: 90%;
	}
	.Schedule-calendar__item{
		height: 3em;
		font-size: 100%;
	}

	.Schedule__tab{
		width: calc(100% + 4rem);
		margin-bottom: 7rem;
		margin-left: -2rem;
	}
	.Schedule__tab::after{
		width: calc(100% + (var(--padding-leftright) * 2));
		margin-left: calc(var(--padding-leftright) * -1);
	}
	.Schedule__tab-item{
		width: calc((100% - 3rem) / 2);
		height: 10rem;
		border-top-left-radius: 1.5rem;
		border-top-right-radius: 1.5rem;
	}
	.Schedule__tab-item:not(:last-child){
		margin-right: 3rem;
	}
	.Schedule__tab-item span{
		font-size: 3rem;
	}

	/*----- イベント */
	.Schedule-block-wrap{
		width: calc(100% + 6rem);
		margin-left: -3rem;
		margin-bottom: 10rem;
		/* padding-left: 1rem;
		padding-right: 1rem; */
		flex-direction: column;
	}
	.Schedule-block-wrap::after{
		display: none;
	}
	.Schedule-block{
		width: 100%;
	}
	.Schedule-block:not(:last-child){
		margin-bottom: 5.5rem;
	}
	.Schedule-block a{
		width: 100%;
		display: flex;
		flex-wrap: wrap;
		align-items: flex-start;
		justify-content: flex-start;
	}
	.Schedule-block__image{
		width: 30rem;
	}
	.Schedule-block__body{
		width: calc(100% - 30rem);
		padding-top: 0;
		padding-left: 4rem;
		padding-right: 0;
	}
	.Schedule-block__category{
		margin-bottom: 0;
	}
	.Schedule-block__title{
        font-size: 3.2rem;
        margin-bottom: 1.4rem;
        line-height: calc(4.8 / 3.2);
	}
	.Schedule-block__schedule{
		font-size: 2.8rem;
        line-height: calc(4.2 / 2.8);
	}

	.Schedule-table{
		width: calc(100% + (var(--padding-leftright)) * 2);
		margin-left: calc(var(--padding-leftright) * -1);
		margin-bottom: 10rem;
		max-height: 60vh;
		overflow-x: scroll;
		overscroll-behavior-x: none;
		-webkit-overflow-scrolling: auto;
		position: relative;
	}
	.Schedule-table::before{
		transition: var(--transition);
		content: "";
		display: block;
		width: 18rem;
		height: 15.6rem;
		background-image: url(../images/today_event/icon_scroll-hint.svg);
		background-size: contain;
		background-position: center center;
		background-repeat: no-repeat;
		position: absolute;
		left: calc(32rem + 11.8rem);
		top: calc(8.2rem + 2.5rem);
		z-index: 6000;
	}
	.Schedule-table.-on::before{
		opacity: 0;
		visibility: hidden;
	}
	.Schedule-table__header{
		padding-right: 8.5rem;
		width: calc(29rem + (9.2rem * 11));
		height: 8.2rem;
		position: sticky;
		left: 0;
		top: 0;
		z-index: 7000;
	}
	.Schedule-table__header::before{
		width: 29rem;
		margin-right: 3rem;
		position: sticky;
		left: 0;
		top: 0;
		z-index: 6000;
		background: #eaf9fc;
	}
	.Schedule-table__header__inner{
		width: calc(100% - 32rem);
	}
	.Schedule-table__header-time::before,
	.Schedule-table__header-time::after{
		height: 2.4rem;
	}
	.Schedule-table__header-time span{
		font-size: 2.2rem;
		/* letter-spacing: -.13em; */
	}
	.Schedule-table__body{
		width: calc(29rem + (9.2rem * 11));
	}
	.Schedule-table__item__left{
		width: 32rem;
		/* width: 29rem;
		margin-right: 3rem; */
		padding: 2.5rem 3rem 2.5rem 3rem;
		position: sticky;
		left: 0;
		top: 0;
		z-index: 6000;
		background: #fff;
		/* text-align: justify; */
	}
	.Schedule-table__item{
		padding-right: 8.5rem;
	}
	.Schedule-table__item:nth-of-type(2n) .Schedule-table__item__left{
		background: #f2f0f1;
	}
	.Schedule-table__item-content-category__item{
		min-width: 10rem;
		font-size: 1.8rem;
		min-height: 2.7rem;
		border-radius: 1.35rem;
		border-width: 1px !important;
	}
	.Schedule-table__item-content__image{
		display: none;
	}
	.Schedule-table__item-content{
		width: 100%;
		padding-right: 0;
	}
	.Schedule-table__item-content__title{
		font-size: 2.6rem;
		line-height: calc(3.9 / 2.6);
	}
	.Schedule-table__item__right{
		width: calc(100% - 32rem);
	}
	.Schedule-table__item:first-child .Schedule-table__item-time::before{
		height: 2.4rem;
	}

	.Schedule__button.-large a{
		font-size: 2.7rem;
		padding-right: 4.5rem;
	}

}