/**
 * 一覧ページレイアウト
 */
.bg-area > main {
	flex-grow: 1;
	padding: 105px 40px 54px;
}

/**
 * ページタイトル
 */
.archive-title {
	font-family: "Afacad", sans-serif;
	font-size: 36px;
	font-weight: 700;
	letter-spacing: 2.88px;
	line-height: 48px;
	color: #000000;
	padding: 85px 30px 37px;
}

/**
 * セクションヘッダー
 */
.section-header {
	font-family: "Afacad", sans-serif;
	font-size: 32px;
	font-weight: 700;
	letter-spacing: 2.56px;
	line-height: 48px;
	color: #000000;
	padding: 0 30px 11px;
}

/**
 * 記事一覧ボックス
 */
.article-list-box {
	min-height: 620px;
	border: 1px dashed #9747ff;
	border-radius: 5px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	gap: 4px;
	padding: 8px 20px;
}

/**
 * 記事行
 */
.article-list-item {
	display: flex;
	align-items: center;
	height: 52px;
	text-decoration: none;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 1.12px;
	line-height: 24px;
	padding: 0 8px;
	border-radius: 8px;
}

.article-list-item:hover {
	background-color: rgba(255, 255, 255, 0.2);
}

/**
 * 日付
 */
.article-date {
	flex: 0 0 128px;
}

/**
 * カテゴリ
 */
.article-category {
	flex: 0 0 150px;
	margin-right: 80px;
}

/**
 * タイトル
 */
.article-title {
	flex: 1;
}

/**
 * ページネーション
 */
.article-pagination {
	margin-top: auto;
	padding-top: 8px;
	text-align: center;
}

.article-pagination .page-numbers {
	list-style: none;
	display: inline-flex;
	gap: 8px;
	padding: 0;
	margin: 0;
	position: relative;
}

.article-pagination li:has(.prev),
.article-pagination li:has(.next) {
	position: absolute;
	white-space: nowrap;
}

.article-pagination li:has(.prev) {
	right: 100%;
	margin-right: 8px;
}

.article-pagination li:has(.next) {
	left: 100%;
	margin-left: 8px;
}

.article-pagination .page-numbers a,
.article-pagination .page-numbers span {
	font-size: 18px;
	font-weight: 700;
	letter-spacing: 1.12px;
	line-height: 24px;
	color: #000000;
	text-decoration: none;
	padding: 8px 12px;
	border: 1px solid transparent;
	border-radius: 8px;
}

.article-pagination .page-numbers a:hover {
	background-color: rgba(255, 255, 255, 0.2);
}

.article-pagination .page-numbers .current {
	text-decoration: underline;
}

/**
 * 記事なし
 */
.article-empty {
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 1.12px;
	line-height: 24px;
}
