@charset "utf-8";
.news_container {
		max-width: 1000px;
		margin: 0 auto 60px;
		padding: 0 30px;
}
@media(max-width: 767px) {
		.news_container {
				/* padding: 0; */
				padding: 0 25px;
				margin-bottom: 30px;
		}
}
@media(max-width: 390px) {
		.news_container {
				/* padding: 0; */
				padding: 0 20px;
		}
}
.news_wrap {
		position: relative;
}
.news_tab_gr {
		max-width: 1000px;
		margin: 0 auto 30px;
		padding: 0 30px;
}
.news_tab_gr ul {
		display: flex;
		justify-content: center;
		align-items: center;
}
.news_tab_gr li {
		margin: 0 7px;
		list-style: none;
		background: #fff;
		color: #3D3A39;
		font-family: 'Poppins', sans-serif;
		font-weight: 600;
		font-size: 14px;
		line-height: 1;
		padding: 7px 15px;
		border-radius: 20px;
		cursor: pointer;
		border: 1px solid #DCDDE0;
		display: block;
		text-align: center;
		letter-spacing: 0;
		transition: background 0.05s;
}
@media(max-width: 767px) {
		.news_tab_gr {
				margin: 0 0 25px;
				padding: 0 20px;
		}
		.news_tab_gr ul {
				display: grid;
				grid-template-columns: repeat(4, 1fr);
				gap: 5px 5px;
		}
		.news_tab_gr li {
				font-size: 13px;
				margin: 0;
				width: auto;
				padding: 9px 0px;
		}
}
/* ============= */
.sortBtn_gr {
		display: flex;
		justify-content: center;
		align-items: center;
		margin-bottom: 30px;
		position: relative;
		z-index: 100;
}
.sortBtn_gr li {
		list-style: none;
		margin: 0 5px;
		font-size: 12px;
		color: #3D3A39;
		border: 1px solid #3D3A39;
		height: 26px;
		display: flex;
		justify-content: center;
		align-items: center;
		padding: 0 15px;
		border-radius: 4px;
		cursor: pointer;
		transition: background 0.05s;
}
.sortBtn_gr li span {
		transform: translateY(-0.5px)
}
/* ========== */
.news_tab_gr li.isCurrent, .sortBtn_gr li.isCurrent {
		background: #3D3A39;
		color: #fff;
}
@media (hover: hover) {
		.news_tab_gr li:not(.isCurrent):hover, .sortBtn_gr li:not(.isCurrent):hover {
				background: #ededed;
		}
}
.news_wrap .panel_contents {
		position: absolute;
		inset: 0;
}
.panel_contents {
		opacity: 0;
		visibility: hidden;
		transition: opacity 0.3s ease;
		min-height: 500px;
		position: relative;
		z-index: -1;
}
.panel_contents .hrCenter {
		margin-top: 40px;
}
.panel_in {
		position: relative;
}
.panel_in .panel_in_contents {
		position: absolute;
		inset: 0;
}
.panel_in .panel_in_contents {
		opacity: 0;
		visibility: hidden;
		transition: opacity 0.3s ease;
		min-height: 500px;
}
.panel_contents.isCurrent, .panel_in .panel_in_contents.isCurrent {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		z-index: 1;
		position: static;
}
.news_item {
		border-bottom: 1px solid #7f7f7f;
		position: relative;
}
.recommend_section .news_item:first-child, .regular_section .news_item:first-child {
		border-top: 1px solid #7f7f7f;
}
.news_item::after {
		content: '';
		display: block;
		position: absolute;
		bottom: 0;
		left: 0;
		width: 100%;
		height: 2px;
		transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
		transform-origin: left center;
		background: #3D3A39;
		transform: scaleX(0);
		pointer-events: none
}
@media (hover: hover) {
		.news_item:hover::after {
				transform: scaleX(1);
		}
}
.recommend_section .news_item:last-child {
		border-bottom: none;
}
.regular_section .news_item:first-child {
		border-top: 1px solid #7f7f7f;
}
.news_item a {
		color: #3D3A39;
		text-decoration: none;
		padding: 30px 80px 30px 20px;
		position: relative;
		display: block
}
.news_item a::after {
		content: '';
		display: block;
		width: 18px;
		height: 5px;
		border-right: 1px solid #3D3A39;
		border-bottom: 1px solid #3D3A39;
		position: absolute;
		right: 25px;
		bottom: 35px;
		transform: skew(40deg);
		pointer-events: none
}
.news_item_status {
		display: flex;
		align-items: center;
		margin: 0 0 5px;
}
.news_item_hdr {
		display: flex;
		align-items: center;
		flex-wrap: wrap;
		margin: 0 0 10px;
}
.news_date {
		font-size: 14px;
		font-weight: 500;
		font-feature-settings: "palt";
		letter-spacing: 0.02em;
		margin: 0 10px 0 0;
		line-height: 1;
}
.icon_status {
		display: flex;
		justify-content: center;
		align-items: center;
		border-radius: 4px;
		border-radius: 60px;
		background: none;
		border: 1px solid #3D3A39;
		color: #3D3A39;
		font-family: 'Poppins', sans-serif;
		font-weight: 600;
		font-size: 11px;
		line-height: 1;
		margin-right: 7px;
		height: 19px;
		box-sizing: border-box;
		position: relative;
		letter-spacing: 0 !important;
		padding: 0 6px;
}
.news_item_status .icon_status {
		font-size: 11px;
		height: 16px;
		border-radius: 4px;
}
@media(max-width: 375px) {
		.news_date {
				margin: 0 5px 0 0;
		}
		.icon_status {
				margin-right: 6px;
		}
}
.icon_status span {
		/* transform: translateY(0.5px) */
}
.icon_status.category {
		background: #3D3A39;
		color: #fff;
		border: 1px solid #3D3A39;
}
.icon_status.update {
		background: none;
		color: #cc0000;
		border: 1px solid #cc0000;
}
.icon_status.feature {
		color: #fff;
		background: #cc0000;
		border: 1px solid #cc0000;
}
.icon_status.pickup {
		color: #fff;
		background: #cc0000;
		border: 1px solid #cc0000;
}
.icon_status.new {
		color: #fff;
		background: #cc0000;
		border: 1px solid #cc0000;
}
.artist_type {
		font-size: 14px;
		font-weight: 600;
}
@media(max-width: 390px) {
		.artist_type {
				width: 35%;
		}
}
.news_title_flex {
		display: flex;
		margin: 0 0 15px;
}
.news_title_icon {
		margin-right: 5px;
}
.news_title_icon .icon_status {
		margin: 4px 0;
}
.news_title {
		font-size: 16px;
		font-weight: 600;
		margin: 0 0 15px;
}
.news_title small {
		/* font-size: 90%;
		padding: 0;
		margin-left: 1em; */
		letter-spacing: 0
}
.media_plus {
		letter-spacing: 0
}
@media(max-width: 767px) {
		.news_title small {
				display: block;
				/* padding-top: 5px;
				margin-left: 0; */
		}
}
.news_title_flex .news_title {
		margin-bottom: 0;
}
.news_excerpt {
		font-size: 15px;
		line-height: 1.8;
}
.news_excerpt p {
		line-height: 1.8;
}
.recommend_section .news_excerpt p {
		display: -webkit-box;
		-webkit-box-orient: vertical;
		overflow: hidden;
		text-overflow: ellipsis;
		-webkit-line-clamp: 2;
}
.regular_section .news_excerpt p {
		display: -webkit-box;
		-webkit-box-orient: vertical;
		overflow: hidden;
		text-overflow: ellipsis;
		-webkit-line-clamp: 2;
}
.news_excerpt p {
		font-size: 14px;
		display: -webkit-box;
		-webkit-box-orient: vertical;
		overflow: hidden;
		text-overflow: ellipsis;
		-webkit-line-clamp: 2;
}
.recommend_section, .regular_section {
		/* padding-left: 15px;
		padding-right: 15px; */
}
.recommend_section {
		/* margin-bottom: 30px;
		 padding: 10px 15px;
		background: #f5f5f5; */
		padding: 0;
		background: none;
}
@media(max-width: 767px) {
		.recommend_section {
				/* padding-left: 25px;
				padding-right: 25px;
				background: #f5f5f5; */
				margin-bottom: 30px;
		}
		.regular_section {
				/* padding: 10px 25px; */
				padding: 0;
		}
		.news_item a {
				padding: 20px 0 40px;
		}
		.news_item a::after {
				right: 15px;
				bottom: 20px;
		}
		.news_title {
				font-size: 16px;
				margin: 0 0 13px;
		}
		.news_title_flex {
				margin: 0 0 13px;
		}
		.news_excerpt {
				font-size: 14px;
		}
		.recommend_section .news_excerpt p {
				display: -webkit-box;
				-webkit-box-orient: vertical;
				overflow: hidden;
				text-overflow: ellipsis;
				-webkit-line-clamp: 2;
				line-height: 1.8;
		}
		.regular_section .news_excerpt p {
				display: -webkit-box;
				-webkit-box-orient: vertical;
				overflow: hidden;
				text-overflow: ellipsis;
				-webkit-line-clamp: 2;
				line-height: 1.8;
		}
}
/* =============== */
.linkBtn {
		width: 200px;
		font-family: 'Poppins', sans-serif;
		font-weight: 600;
		font-size: 14px;
		cursor: pointer;
}
.linkBtn a {
		height: 40px;
		text-decoration: none;
		display: flex;
		justify-content: center;
		align-items: center;
		transition: background 0.2s;
		position: relative;
		border: 1px solid #3D3A39;
		background: #3D3A39;
		color: #fff;
}
.linkBtn a span {
		position: relative;
		transform: translateY(1px);
		left: -15px;
}
.linkBtn a::after {
		content: '';
		display: block;
		width: 27px;
		height: 1px;
		background: #fff;
		position: absolute;
		top: 50%;
		right: 20px;
		transform-origin: left center;
		transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
@media (hover: hover) {
		.linkBtn a:hover, .name_wrap:hover .linkBtn a {
				background: #fff;
				color: #3D3A39;
		}
		.linkBtn a:hover::after, .name_wrap:hover .linkBtn a::after {
				transform: scaleX(2.5);
				background: #3D3A39;
		}
}
@media(max-width: 767px) {
		.linkBtn {
				width: 180px;
		}
		.linkBtn a {
				height: 37px
		}
		.linkBtn a::after {
				right: 15px;
		}
		.linkBtn a span {
				transform: translateY(0px);
				left: -15px;
		}
}
/* =============== */
.hrCenter {
		display: flex;
		justify-content: center;
}
.hrRight {
		display: flex;
		justify-content: flex-end;
}
/* =============== */
.fadeInNml {
		opacity: 0;
		transition: opacity 0.4s;
}
.fadeInNmlActive {
		opacity: 1;
}
.firstAll .news_item {
		transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s;
		transform: translateY(30px);
		opacity: 0;
}
.firstAll .news_item.newsItemActive {
		transform: translateY(0px);
		opacity: 1;
}
/* =============== */
@media(min-width: 768px) {
		br.spbr {
				display: none;
		}
}
@media(max-width: 767px) {
		br.pcbr {
				display: none;
		}
}
.anchor {
		margin-top: -100px;
		padding-top: 100px;
		position: relative;
		z-index: 0;
}
@media(max-width: 767px) {
		.anchor {
				margin-top: -70px;
				padding-top: 70px;
		}
}
.mb00 {
		margin-bottom: 0px !important;
}
.mb05 {
		margin-bottom: 5px !important;
}
.mb10 {
		margin-bottom: 10px !important;
}
.mb15 {
		margin-bottom: 15px !important;
}
.mb20 {
		margin-bottom: 20px !important;
}