.banner_newslink {
	display: flex;
	align-items: center;
	width: 680px;
	height: 120px;
	background-image: url(../img/desktop/newslink_banner.svg);
	background-size: 100% 100%;
}
.item_list {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	gap: 10px;
	
	padding: 10px 10px;
}

.left_part {
	flex: 0 0 auto;
}
.left_part .title {
	background-color: #f29700;
	
	color: white;
	text-align: center;
	
	padding: 4px;
}
.main_cat_item {
	position: relative;
	
	border: 1px solid #c9cacb;
	padding: 2px 20px 2px 20px;
	
	cursor: pointer;
}
.main_cat_item:before {
	content: '';
	
	position: absolute;
	top: 50%;
	left: 0;
	width: 10px;
	height: 20px;
	
	background-color: #0096cc;
	
	border-radius: 0 15px 15px 0;
	
	margin-top: -10px;
}

@media(hover: hover) and (pointer: fine) {
	.main_cat_item:hover {
		background-color: #e6e6e6;
	}
}
.main_cat_item.selected {
	background-color: #ececec;
	pointer-events: none;
}

.right_part {
	width: 100%;
}
.right_part > .title {
	background-color: #00a4e2;
	
	color: white;
	
	padding: 4px 10px;
}
.notice {
	padding: 4px 10px;
}
.list_part {
	
}
.list_part .head {
	color: white;
	background-color: #9e9e9e;
	padding: 5px;
	
	display: none;
}
.news_list {
	
}
.paging {
	margin-top: 20px;
	font-size: 14px;
	
	display: none;
}
.paging .change_page {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 25px;
	min-height: 25px;
	padding: 0 6px;
	cursor: pointer;
}
.paging .page_no_container {
	display: inline-block;
}
.paging .change_page.current {
	background-color: #fce4d6;
	pointer-events: none;
}
.paging .change_page.prev {
	margin-right: 10px;
}
.paging .change_page.next {
	margin-left: 10px;
}
.paging .go_to_page_part {
	display: inline-block;
	position: relative;
	
	display: none;
}

.a_news {
	padding: 15px 5px;
	border-bottom: 2px solid #d2d2d3;
}
.a_news:not(.has_function_btn):not(.has_selection) {
	cursor: pointer;
}
@media(hover: hover) and (pointer: fine) {
	.a_news:hover {
		background-color: #e6e6e6;
	}
}
.list_part .src,
.list_part .title,
.list_part .date {
	display: inline-block;
	vertical-align: middle;
	font-size: 14px;
}
.list_part .title {
	width: 75%;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}
.list_part .date {
	width: 25%;
}
.a_news .src {
	display: none;
}

.news_detail_part .back_url_row {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
}
.news_detail_part .back_btn {
	flex: 0 0 auto;
	
	position: relative;
	
	display: flex;
	align-items: center;
	justify-content: center;
	width: 45px;
	height: 16px;
	
	color: #5c5a5a;
	/* border: 1px solid #c4c4c5; */
	
	background-image: url(../img/desktop/newslink_BackButtonA.svg);
	background-size: contain;
	background-repeat: no-repeat;
	
	border-radius: 5px;
	box-sizing: border-box;
	cursor: pointer;
	
	
}
.news_detail_part .back_btn > span {
	color: transparent;
}
.news_detail_part .url_btn {
	flex: 0 0 auto;
	
	position: relative;
	
	display: flex;
	align-items: center;
	justify-content: center;
	width: 41px;
	height: 16px;
	
	color: #5c5a5a;
	/* border: 1px solid #c4c4c5; */
	
	background-image: url(../img/desktop/newslink_ConnectButtonA.svg);
	background-size: contain;
	background-repeat: no-repeat;
	
	border-radius: 5px;
	box-sizing: border-box;
	cursor: pointer;
}
.news_detail_part .cat_of_news {
	display: grid;
	grid-template-columns: auto auto auto 1fr;
	border-bottom: 3px solid #00a4e2;
	margin: 0 0 20px;
	padding-bottom: 4px;
}
.news_detail_part .cat_of_news .a_cat {
	display: inline-block;
	display: flex;
	align-items: center;
	color: #eb5e3d;
	margin-right: 15px;
	vertical-align: middle;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	line-height: 16px;
	
	display: none;
}
.news_detail_part .cat_of_news .a_cat.like_button {
	justify-self: right;
	display: inline-block;
	width: 82px;
	height: 28px;
	background-position: right center;
	background-repeat: no-repeat;
	background-size: auto 100%;
	margin-right: 0;
	cursor: pointer;
	
	display: none;
}
.news_detail_part .title {
	font-size: 120%;
}
.news_detail_part .date {
	font-size: 90%;
	margin: 2px 0 20px;
}
.news_detail_part .content {
	font-size: 90%;
	padding: 0;
	white-space: pre-wrap;
}
.news_detail_part .link {
	display: inline-block;
	margin: 20px 0 40px;
}
.news_detail_part .end_line {
	height: 2px;
	background-color: #bcbcbd;
	
	display: none;
}
.banner_newslink .menu_btn {

}

/* mobile view */
@media screen and (max-width: 767px) {
	.banner_newslink {
		width: 100%;
		height: calc(100vw / 480 * 85);
		background-image: url(../img/mobile/newslink_banner_M.png);
	}
	.banner_newslink .menu_btn {
		position: absolute;
		top: calc(100vw / 480 * 30);
		right: calc(100vw / 480 * 30);
		display: inline-block;
		width: calc(100vw / 480 * 40);
		height: calc(100vw / 480 * 40);
		background-image: url(../img/mobile/newslink_AreaMenuButtonA_M.svg);
		background-position: center;
		background-repeat: no-repeat;
		background-size: contain;
		cursor: pointer;
	}
	.banner_newslink .menu_btn.openmenu {
		background-image: url(../img/mobile/newslink_AreaMenuButtonB_M.svg);
	}
	.left_part {
		width: 100%;
		display: none;
	}
	.left_part.openmenu {
		display: inline-block;
	}
	.left_part .title {
		text-align: left;
		padding: 10px 20px;
	}
	.main_cat_item {
		display: flex;
		align-items: center;
		gap: 10px;
		padding: 10px 30px;
	}
	.main_cat_item:before {
		position: relative;
		display: inline-block;
		top: 0;
		margin-top: 0;
	}
	.right_part {
		padding: 10px 14px;
	}
	.item_list {
		flex-direction: column;
		
		padding: 0;
	}
	.a_news {
		padding: 8px 4px;
	}
	.news_detail_part .cat_of_news {
		margin: 0 0 10px;
	}
}