/* ==============================
	News Archive
============================== */

.news-archive {
	background: #F5F5F5;
}

/* ------------------------------
	Page Heading
------------------------------ */
.page-heading--news {
	background-image: url("../img/news/news-heading-bg_sp.jpg");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
.page-heading.page-heading--news .page-heading__title-jp {
	color: #fff;
	font-size: 1.3rem;
}
.page-heading.page-heading--news .page-heading__title-en {
	color: #fff;
	font-size: 3.8rem;
}

/* ------------------------------
	Filter
------------------------------ */
.news-filter {
	padding-top: 30px;
}

.news-filter__group {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-bottom: 20px;
}

.news-filter__list {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 14px;
	margin-bottom: 0;
}
.news-filter__list--date {
	gap: 10px 12px;
}

.news-filter__item {
	width: calc((100% - 14px) / 2 );
}
.news-filter__list--date .news-filter__item {
	width: calc((100% - 36px) / 4 );
}

.news-filter__link {
	background: #fff;
	border: 1px solid #C6C6C6;
	width: 100%;
	padding: 10px 5px 9px;
	border-radius: 20px;
	font-size: 1.3rem;
	font-weight: 500;
	line-height: 1.5;
	text-align: center;
	cursor: pointer;
}

.news-filter__item.is-current .news-filter__link {
	background: #EF8125;
	border-color: #EF8125;
	color: #fff;
}

/* ------------------------------
	News List
------------------------------ */
.news-list {
}

.news-list__items {
	margin-bottom: 40px;
}

.news-list__item {
	margin-bottom: 20px;
	padding-bottom: 14px;
	border-bottom: 1px solid #C6C6C6;
}
.news-list__item:first-child {
	padding-top: 20px;
	border-top: 1px solid #C6C6C6;
}

.news-list__link {
}

.news-list__meta {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 10px 16px;
	margin-bottom: 10px;
}

.news-list__category {
	background: #EF8125;
	color: #fff;
	min-width: 100px;
	padding: 2px 20px 1px;
	border-radius: 20px;
	font-size: 1.2rem;
	font-weight: 400;
	line-height: 1.5;
	text-align: center;
	letter-spacing: .05rem;
}

.news-list__date {
	opacity: .5;
	font-size: 1.4rem;
	font-weight: 400;
	line-height: 1.5;
}

.news-list__title {
	margin-bottom: 0;
	font-size: 1.4rem;
	font-weight: 500;
	line-height: 1.5;
	text-align: justify;
}

/* ------------------------------
	Pagination
------------------------------ */
.pagination {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 8px;
	padding-bottom: 20px;
}

.pagination__prev,
.pagination__next {
	position: relative;
	background: #EF8125;
	color: #fff;
	width: 40px;
	height: 36px;
	border-radius: 20px;
}

.pagination__prev::before,
.pagination__next::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 8px;
	height: 12px;
	background-image: url("../img/common/arrow-pagination.svg");
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}

.pagination__prev::before {
	transform: translate(-50%,-50%) rotate(180deg);
}

.pagination__num {
	background: #fff;
	color: #9F9D9D;
	font-size: 1.5rem;
	font-weight: 500;
	width: 40px;
	height: 36px;
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
}
a.pagination__num:hover {
	color: #9F9D9D;
}

.pagination__num.is-current {
	background: #EF8125;
	color: #fff;
}

/* ------------------------------
	PC
------------------------------ */
@media screen and (min-width: 1024px) {

	.news-archive {
	}
.page-heading--news {
	background-image: url("../img/news/news-heading-bg.jpg");
}
.page-heading.page-heading--news .page-heading__title-jp {
	font-size: 1.8rem;
}
.page-heading.page-heading--news .page-heading__title-en {
	font-size: 5rem;
}
.news-filter {
	margin-bottom: 60px;
	padding-top: 60px;
}
.news-filter__group {
	gap: 20px;
}
.news-filter__list {
}
.news-filter__list--date {
	gap: 10px 14px;
}
.news-filter__item {
	width: auto;
}
.news-filter__list--date .news-filter__item {
	width: auto;
}
.news-filter__link {
	width: auto;
	padding: 10px 35px 9px;
	font-size: 1.4rem;
	transition: 0.3s all ease;
}
.news-filter__link:hover {
	background: #EF8125;
	border-color: #EF8125;
	color: #fff;
}
.news-filter__item.is-current .news-filter__link {
}
.news-list {
}
.news-list__items {
	margin-bottom: 80px;
}
.news-list__item {
	margin-bottom: 40px;
	padding-bottom: 30px;
}
.news-list__item:first-child {
	padding-top: 40px;
}
.news-list__link {
	display: flex;
	gap: 25px;
}
a.news-list__link:hover {
	transform: scale(1.015);
}
.news-list__meta {
	justify-content: flex-start;
	gap: 10px 16px;
	margin-bottom: 0;
}
.news-list__category {
	order: 2;
}
.news-list__date {
}
.news-list__title {
	font-size: 1.6rem;
}

	.pagination {
		gap: 12px;
		padding-bottom: 40px;
	}

	.pagination__prev {
	}

	.pagination__next {
	}

	.pagination__num {
	}

	.pagination__num {
		transition: 0.3s all ease;
	}
	a.pagination__num:hover {
		background: #EF8125;
		color: #fff;
	}

}

/* ==============================
	Topics List
	（ニュース／トピックス一覧）
============================== */

/* ------------------------------
	Topics List
------------------------------ */
.topics-list {
}
.topics-list__items {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: flex-start;
	gap: 30px;
	margin-bottom: 40px;
}
.topics-list__item {
	width: 100%;
	max-width: 360px;
}
.topics-list__link {
	display: block;
	border-radius: 10px;
	overflow: hidden;
}

/* ------------------------------
	Topics List Thumb
------------------------------ */
.topics-list__thumb {
	aspect-ratio: 16 / 9;
	width: 100%;
	overflow: hidden;
}
.topics-list__thumb-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
/* ------------------------------
	Topics List Body
------------------------------ */
.topics-list__body {
	padding: 20px;
	background: #fff;
}
.topics-list__meta {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 10px 16px;
	margin-bottom: 10px;
}
.topics-list__category {
	background: #EF8125;
	color: #fff;
	min-width: 100px;
	padding: 2px 20px 1px;
	border-radius: 20px;
	font-size: 1.2rem;
	font-weight: 400;
	line-height: 1.5;
	text-align: center;
	letter-spacing: .05rem;
}
.topics-list__date {
	opacity: .5;
	font-size: 1.4rem;
	font-weight: 400;
	line-height: 1.5;
}
.topics-list__title {
	margin-bottom: 0;
	font-size: 1.4rem;
	font-weight: 500;
	line-height: 1.75;
	text-align: justify;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
}

/* ==============================
	PC
============================== */
@media screen and (min-width: 1024px) {

	/* ------------------------------
		Topics List
	------------------------------ */
	.topics-list {
	}
	.topics-list__items {
		justify-content: flex-start;
		margin-bottom: 80px;
	}
	.topics-list__item {
		width: calc((100% - 60px) / 3);
	}
	.topics-list__link {
	}

	/* ------------------------------
		Topics List Thumb
	------------------------------ */
	.topics-list__thumb {
	}

	.topics-list__thumb-img {
	}

	/* ------------------------------
		Topics List Body
	------------------------------ */
	.topics-list__body {
	}

	.topics-list__meta {
	}

	.topics-list__category {
	}

	.topics-list__date {
	}

	.topics-list__title {
	}

}



/* ==============================
	News Single
============================== */

.news-single {
}
.news-article {
	margin-bottom: 80px;
	padding-top: 40px;
}
.news-entry {
}
.news-entry__header {
}
.news-entry__meta {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px 16px;
	margin-bottom: 20px;
}
.news-entry__category {
	background: #EF8125;
	color: #fff;
	min-width: 100px;
	padding: 2px 20px 1px;
	border-radius: 20px;
	font-size: 1.2rem;
	font-weight: 400;
	line-height: 1.5;
	text-align: center;
	letter-spacing: .05rem;
}
.news-entry__date {
	opacity: .5;
	font-size: 1.4rem;
	font-weight: 400;
	line-height: 1.5;
}
.news-entry__title {
	margin-bottom: 20px;
	font-size: 2rem;
	font-weight: 500;
	line-height: 1.5;
}
.news-entry__body {
	font-size: 1.4rem;
	font-weight: 400;
}
.news-entry__body p {
	margin-bottom: 1em;
	font-size: 1.4rem;
	font-weight: 400;
}
.news-entry__body a {
	text-decoration: underline;
}
.news-entry__body strong,
.news-entry__body b {
	font-weight: 500;
}
.news-entry__body ul,
.news-entry__body ol {
	margin-bottom: 1em;
	padding-left: 1em;
}
.news-entry__body li {
	margin-bottom: 1em;
}

/* ------------------------------
	PC
------------------------------ */
@media screen and (min-width: 1024px) {

	.news-single {
	}
	.news-article {
		margin-bottom: 160px;
		padding-top: 80px;
	}
	.news-entry {
	}
	.news-entry__header {
	}
	.news-entry__meta {
	}
	.news-entry__category {
	}
	.news-entry__date {
	}
	.news-entry__title {
		margin-bottom: 40px;
		font-size: 2.8rem;
	}
	.news-entry__body {
		font-size: 1.6rem;
	}
	.news-entry__body p {
		font-size: 1.6rem;
	}
	.news-entry__body a {
	}
	.news-entry__body strong,
	.news-entry__body b {
	}
	.news-entry__body ul,
	.news-entry__body ol {
	}
	.news-entry__body li {
	}

}
