.linkList .linkList_item:after {
    background-color: #FDCDA7;
}
.linkList .linkList_item .txtArea:after {
    background-color: #FC8328;
}


/* ページネーション全体のコンテナ */
.pagination {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 15px; /* 数字同士の間隔 */
	margin: 40px 0;
}

/* 全ての数字と矢印に共通のスタイル */
.pagination .page-numbers {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 45px;
	height: 45px;
	text-decoration: none;
	font-size: 18px;
	font-weight: bold;
	border-radius: 50%; /* 正円にする */
	border: 2px solid #ff8e3c; /* オレンジの境界線 */
	color: #ff8e3c; /* 数字の色 */
	transition: all 0.3s ease;
}

/* 現在表示しているページのスタイル（塗りつぶし） */
.pagination .page-numbers.current {
	background-color: #ff8e3c;
	color: #fff;
	border-color: #ff8e3c;
}

/* ホバー時の挙動（お好みで） */
.pagination a.page-numbers:hover {
	background-color: #fff4ec; /* 薄いオレンジ背景 */
}
@media screen and (max-width: 1024px) {
	.pagination {
		gap: 8px;
	}
	.pagination .page-numbers {
		width: 38px;
		height: 38px;
		font-size: 16px;
	}
}
@media screen and (max-width: 480px) {
	.pagination .page-numbers {
		width: 35px;
		height: 35px;
		font-size: 16px;
	}
}

/* セレクトボックスを囲む親要素（矢印を自作するために必要） */
.custom-select-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 160px; /* 必要に応じて調整 */
	margin-bottom: 40px;
}

/* セレクト本体のスタイル */
.custom-select-wrapper select {
    appearance: none;           /* デフォルトの矢印を消す */
    -webkit-appearance: none;    /* Safari用 */
    -moz-appearance: none;       /* Firefox用 */
    
    width: 100%;
    padding: 10px 40px 10px 15px; /* 右側に矢印用の余白を確保 */
    font-size: 16px;
    color: #333;
    background-color: #fff;
    border: 2px solid #ddd;
    border-radius: 5px;
    cursor: pointer;
    transition: border-color 0.3s, box-shadow 0.3s;
    outline: none;
}

/* ホバー・フォーカス時：これまでのアクセントカラー（オレンジ）を使用 */
.custom-select-wrapper select:hover,
.custom-select-wrapper select:focus {
    border-color: #ff8e3c;
}

/* 自作の矢印アイコン（擬似要素） */
.custom-select-wrapper::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 8px solid #666; /* ボタン等で使ったグレー */
    pointer-events: none;        /* 矢印の上をクリックしてもセレクトが反応するように */
}

/* フォーカス時に矢印の色も変える場合 */
.custom-select-wrapper:focus-within::after {
    border-top-color: #ff8e3c;
}

