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

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

.notice__list {
	list-style: none;
}

.notice__item::after {
	content: "";
	display: block;
	border-bottom: solid 1px;
	border-color: var(--alpha-text-color);
}

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

.notice__inner {
	display: block;
	padding: 16px 0;
}

.notice__text {
	display: -webkit-box;
	max-height: 44.8px;
	margin-bottom: 4px;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	line-height: 1.4;
}

.notice__date {
	display: inline-block;
	font-size: 14px;
    color: var(--text-color);
    opacity: 60%;
}

.background-layer .notice__wrapper,
.background-layer .notice__item {
	background: transparent !important;
}

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

.feed-detail .notice__list {
	border: none;
}

/*****************************
			list
*****************************/
@media screen and (min-width: 768px) {
    .notice__wrapper {
		padding: 30px 40px 0;
	}
	
	.notice__list {
		border-top: dotted 1px;
		border-color: var(--alpha-text-color);
	}
	
	.notice__inner {
		padding: 30px 16px;
	}
	
	.notice .title-optionable {
		float: left;
		display: block;
		width: 34%;
		padding: 0 0 0 40px;
	}
	
	.notice .title-optionable .headline {
		margin-bottom: 24px;
	}
	
	.notice .title-optionable ~ .notice__wrapper,
	.notice .title-optionable ~ .contents_empty {
		float: left;
		width: 66%;
	}
	
	.notice__item::after {
		border-bottom-style: dotted;
	}
	
	.notice__item:last-child::after {
		content: "";
		margin-bottom: 40px;
	}
	
/*************************************
			detail-feed
*************************************/

	.feed-detail .notice__wrapper {
		padding: 24px 0 0 0;
	}
	
	.feed-detail .notice__inner {
		padding: 24px 18px;
	}

	.feed-detail .notice__text {
		max-height: 39.2px;
		margin: 0 0 2px 0;
		font-size: 14px;
	}
	
	.feed-detail .notice__date {
		font-size: 12px;
	}
}
/************************************/