@charset "utf-8";
body {
		background: #E2BAB4;
		color: #fff;
}
main {
		padding-bottom: 120px;
}
#toppage main {
		padding-bottom: 0 !important;
}
@media(max-width: 767px) {
		main {
				padding-bottom: 80px;
		}
}
.sort_btn_flex {
		display: flex;
		justify-content: center;
		margin: 0 0 80px;
}
.sort_btn_flex ul {
		list-style: none;
		display: flex;
		justify-content: center;
		align-items: center;
		flex-wrap: wrap;
}
.sort_btn_flex li {
		width: 195px;
		margin: 0 20px 10px;
		font-size: 18px;
		font-weight: 700;
}
.sort_btn_flex li a {
		height: 60px;
		display: flex;
		align-items: center;
		border: 2px solid #fff;
		border-radius: 60px;
		color: #fff;
		text-decoration: none;
		box-sizing: border-box;
		padding-left: 25px;
		transition: background 0.3s;
		position: relative;
}
.sort_btn_flex li a::before, .sort_btn_flex li a::after {
		content: '';
		display: block;
		position: absolute;
		box-sizing: border-box;
}
.sort_btn_flex li a::before {
		width: 22px;
		height: 22px;
		border: 2px solid #fff;
		border-radius: 50%;
		right: 17px;
		top: 19px;
}
.sort_btn_flex li a::after {
		width: 8px;
		height: 8px;
		border-right: 2px solid #fff;
		border-bottom: 2px solid #fff;
		transform: rotate(45deg);
		right: 24px;
		top: 24px;
}
.sort_btn_flex a.isActive {
		background: #fff;
		color: #E2BAB4;
}
.sort_btn_flex a.isActive::before {
		border: 2px solid #E2BAB4;
		background: #E2BAB4;
}
.sort_btn_flex a.isDisabled {
		pointer-events: none;
}
.news_item {
		opacity: 1;
}
.news_item_gr {
		position: relative;
}
.news_item_gr .news_item_gr_cover {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: #E2BAB4;
		opacity: 0;
		display: none;
		z-index: 10;
}
@media(max-width: 767px) {
		.sort_btn_flex {
				margin: 0 0 60px;
		}
		.sort_btn_flex ul {
				width: 100%;
		}
		.sort_btn_flex li {
				width: calc(45% - 16px);
				margin: 0 8px;
				font-size: 16px;
		}
		.sort_btn_flex li a {
				height: 50px;
				padding-left: 15px;
		}
		.sort_btn_flex li a::before {
				right: 12px;
				top: 12px;
		}
		.sort_btn_flex li a::after {
				right: 19px;
				top: 18px;
		}
}