.newsList_wrap {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	gap: 10.9rem;
	padding: 13.5rem 0;
}
.newsList_content_item_title_wrap {
	margin-bottom: 0.8rem;
}
.newsList_content_item_title-ja {
	font-size: 2.4rem;
	font-weight: 500;
	line-height: 1.7;
	letter-spacing: 0.04rem;
}
.newsList_table {
	width: 100%;
}
.newsList_item {
	display: flex;
	flex-direction: row;
	align-items: center;
	border-bottom: 1px solid #e8e8e8;
	padding: 2rem 0;
}
.newsList_item:first-child {
	border-top: 1px solid #e8e8e8;
}
.newsList_date {
	font-size: 1.6rem;
	line-height: 1.8;
	color: #757575;
	width: 12rem;
}
.newsList_title {
	font-size: 1.6rem;
	line-height: 1.8;
	color: var(--text-color-dark);
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.newsList_aside_wrap {
	width: 28rem;
	display: flex;
	flex-direction: column;
	gap: 4rem;
}
.newsList_aside_item_title_wrap {
	padding-bottom: 1rem;
	margin-bottom: 1rem;
	border-bottom: 1px solid #e8e8e8;
}

.newsList_aside_item_title-ja {
	font-size: 2.4rem;
	font-weight: 500;
	line-height: 1.7;
	letter-spacing: 0.04rem;
}

.newsList_aside_item_content_list {
	display: flex;
	flex-direction: column;
}
.newsList_aside_item_content_list_item a {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 1rem;
	padding: 0.8rem 0;
	transition: opacity 0.3s ease;
}
.newsList_aside_item_content_list_item a:hover {
	opacity: 0.7;
}
.newsList_aside_item_content_list_item a svg {
	width: 0.5rem;
	min-width: 0.5rem;
	transition: transform 0.3s ease;
}
.newsList_aside_item_content_list_item a:hover svg {
	transform: translateX(0.4rem);
}
.newsList_aside_item_content_list_item a span {
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	font-size: 1.4rem;
	font-weight: 500;
	color: var(--text-color-dark);
}
.newsList_pagination {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 3rem;
	padding-top: 10rem;
}
.newsList_pagination * {
	font-size: 2.6rem;
	font-weight: 500;
	letter-spacing: 0.04rem;
	color: var(--text-color-dark);
}
.newsList_pagination_num {
	color: #c2c2c2;
	transition: color 0.3s ease;
}
.newsList_pagination_num:hover {
	color: var(--text-color-dark);
}
.newsList_pagination_prev,
.newsList_pagination_next {
	transition: transform 0.3s ease;
}
.newsList_pagination_prev:hover {
	transform: translateX(-0.4rem);
}
.newsList_pagination_next:hover {
	transform: translateX(0.4rem);
}
/* single */
.newsList_content_item {
	display: flex;
	flex-direction: column;
}
.newsList_content_date {
	font-size: 1.6rem;
	font-weight: 500;
	color: #757575;
	line-height: 1.8;
}
.newsList_content_title {
	margin-top: 1.6rem;
	font-size: 3.6rem;
	font-weight: 700;
	color: var(--text-color-dark);
	width: 100%;
}
.newsList_content_image {
	margin-top: 3.2rem;
}
.newsList_content_body {
	margin-top: 3.6rem;
}
.newsList_content_body h1 {
	font-size: 2.6rem;
	font-weight: 500;
	line-height: 1.7;
	letter-spacing: 0.04rem;
	color: var(--text-color-dark);
}
.newsList_content_body h2 {
	font-size: 2.4rem;
	font-weight: 500;
	line-height: 1.7;
	letter-spacing: 0.04rem;
	color: var(--text-color-dark);
}
.newsList_content_body h3 {
	font-size: 2rem;
	font-weight: 500;
	line-height: 1.7;
	letter-spacing: 0.04rem;
	color: var(--text-color-dark);
}
.newsList_content_body h4 {
	font-size: 1.8rem;
	font-weight: 500;
	line-height: 1.7;
	letter-spacing: 0.04rem;
	color: var(--text-color-dark);
}
.newsList_content_body p {
	font-size: 1.6rem;
	line-height: 2;
	color: var(--text-color-dark);
}
.newsList_back_btn {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	gap: 2.4rem;
	margin: 5.6rem auto auto auto;
}
.newsList_back_btn_text {
	font-size: 1.6rem;
	font-weight: 500;
	color: var(--text-color-dark);
}

@media screen and (max-width: 767px) {
	.newsList_wrap {
		flex-direction: column;
		gap: 11.2rem;
		padding: 5.6rem 0;
	}
	.newsList_item {
		flex-direction: column;
		padding: 2.2rem 0;
		align-items: flex-start;
	}
	.newsList_date {
		font-size: 1.2rem;
		width: 100%;
	}
	.newsList_title {
		overflow: unset;
		text-overflow: unset;
		white-space: unset;
	}

	.newsList_aside_wrap {
		width: 100%;
		gap: 4rem;
	}

	.newsList_pagination {
		padding-top: 4.8rem;
	}
}
