@charset "utf-8";

/* ページヘッダー */
.page-header {
	padding: 5.4rem 20px 3.0rem;
}

.page-header h1 {
	width: min(100%,320px);
	margin: 0 auto 8.2rem;
	text-align: center;
}

.set-content-width {
	padding-left: 20px;
	padding-right: 20px;
}

.topics-list {
	width: min(100%,1120px);
	margin: 0 auto;
}

/* news ------------------------------------- */
.item-topics {
	display: flex;
	flex-flow: row nowrap;
	align-items: flex-start;
	width: 100%;
	margin: 0 0 4.0rem;
	padding: 1.6rem;
	background-color: #F3F3F3;
}

.item-img {
	position: relative;
	width: 36.58%;
}

.item-img img {
	width: 100%;
	height: 100%;
	aspect-ratio: 43 / 25;
	object-fit: cover;
}

.item-img .item-cat {
	position: absolute;
	left: 0;
	top: 0;
	margin: 0;
	padding: 0.5rem;
	background-color: var(--main-color);
	font-weight: 600;
	color: #FFFFFF;
}

.item-text {
	display: flex;
	flex-flow: column nowrap;
	width: calc(100% - 36.58%);
	padding-left: 1.6rem;
	line-height: 1.7;
}

.item-text p {
	margin-bottom: 0.75em;
}

.item-text p.title {
	font-weight: 700;
	font-size: var(--ft-size22);
}

.item-text p.excerpt {
}

.item-text time {
	display: block;
	margin-top: auto;
	text-align: right;
	font-size: var(--ft-size24);
}

.page-numbers {
	display: flex;
	flex-flow: row wrap;
	align-items: center;
	justify-content: center;
	gap: 1.0rem;
}

.page-numbers li {
	flex-shrink: 0;
}

.page-numbers li a,
.page-numbers li span {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	padding-bottom: 0.3rem;
	border-radius: 50%;
	border: 1px solid #333333;
	font-weight: 600;
}

.page-numbers li span.current {
	border: 1px solid #34ACA6;
	background-color: #34ACA6;
	color: #FFFFFF;
}

.page-numbers a.next,
.page-numbers a.prev {
	border: none;
}

/* ================================================ */
@media (min-width: 1000px) {
}

/* ================================================ */
@media (max-width: 1000px) {
}

/* ================================================ */
@media (max-width: 768px) {

.page-header h1 img {
	width: clamp(220px,41.66vw,320px);
	height: auto;
}

/* news ------------------------------------- */
.item-topics {
	display: flex;
	flex-flow: column nowrap;
	align-items: center;
}

.item-img {
	width: 100%;
	margin-bottom: 2.4rem;
}

.item-text {
	width: 100%;
	padding-left: 0;
}

}
/* ================================================ */
@media (max-width: 480px) {
}