@charset "UTF-8";
/*==========schedule==========*/
.schedule__wrapper {
	max-width: 880px;
	margin: 0 auto;
	padding: 8px 24px;
}

.schedule__wrapper::before {
	content: "";
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: inherit;
}

.schedule__list {
	list-style: none;
}

.schedule__item::after {
	content: "";
	display: block;
	font-size: 20px;
	width: calc(100% - (16px + 3.5em));
	margin: 0 0 0 auto;
	border-bottom: solid 1px;
	border-color: var(--alpha-text-color);
}

.schedule__item:last-child::after {
	content: none;
}

.schedule__inner {
	display: table;
	width: 100%;
	padding: 16px 0;
}

.schedule__date {
	position: relative;
	display: table-cell;
	font-size: 20px;
	width: 3.5em;
	vertical-align: middle;
}

.schedule__date .fixed-icon {
	position: absolute;
	top: -8px;
	left: 2.5em;
}

.fixed-icon::before {
	content: "\e963";
	font-family: 'icon';
	display: block;
	font-size: 16px;
	font-weight: normal;
	line-height: 1;
}

.detail__schedule-date .fixed-icon::before {
	content: none;
}

.schedule-text__wrapper {
	display: table-cell;
	vertical-align: middle;
}

.category-container {
	margin: 0 0 4px 16px;
}

.schedule__text {
	display: -webkit-box;
	max-height: 44.8px;
	padding-left: 16px;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	line-height: 1.4;
}

.year {
	height: 1em;
	margin-bottom: 4px;
	font-size: 12px;
    opacity: 60%;
}

.day {
	font-size: 20px;
	font-weight: bold;
}

.yet {
	text-align: right;
}

.date__wrapper {
	position: relative;
}

.date__wrapper:nth-of-type(2) {
	margin-top: 8px;
}

.date__wrapper:nth-of-type(2)::before {
	content: "|";
	position: absolute;
	top: -4px;
	right: 20px;
	font-size: 12px;
	line-height: 1;
	font-weight: bold;
}

.background-layer .schedule__wrapper,
.background-layer .schedule__item {
	background: transparent !important;
}

.schedule .tag-icon {
	margin-left: 0;
}

/*************************************
			detail-feed
*************************************/
.feed-detail .schedule__wrapper {
	height: 100%;
	padding: 102px 24px 0;
}

.feed-detail .search-modal .schedule__list {
	overflow: auto;
}

/*****************************
			list
*****************************/

@media screen and (min-width: 768px) {
	.schedule__wrapper {
		padding: 30px 40px 0;
	}

	.schedule__inner {
		padding: 24px 16px;
	}
	
	.schedule .title-optionable {
		float: left;
		display: block;
		width: 34%;
		padding: 0 0 0 40px;
	}
	
	.schedule .title-optionable .headline {
		margin-bottom: 24px;
	}
	
	.schedule .title-optionable ~ .schedule__wrapper,
	.schedule .title-optionable ~ .contents_empty {
		float: left;
		width: 66%;
	}

	.schedule__item::after {
		width: calc(100% - (40px + 4em));
		border-bottom-style: dotted;
	}
	
	.schedule__item:first-child::before {
		content: "";
		display: block;
		width: calc(100% - (40px + 4em));
		margin: 0 0 0 auto;
		border-top: 1px dotted;
		border-color: var(--alpha-text-color);
		font-size: 20px;
		border: none;
	}
		
	.schedule__item:last-child::after {
		content: "";
		margin-bottom: 40px;
	}

	.schedule__date {
		width: 4em;
	}
	
	.category-container {
		margin: 0 0 6px 40px;
	}
	
	.schedule__text {
		padding-left: 40px;
	}
	
	.day {
		font-size: 24px;
	}

/*************************************
			detail-feed
*************************************/

	.feed-detail .schedule__wrapper {
		padding: 24px 0 0 0;
	}

	.feed-detail .schedule__inner {
		padding: 16px 0;
	}
	
	.feed-detail .schedule__text {
		max-height: 39.2px;
		font-size: 14px;
	}
}