@charset "UTF-8";
/*
    Template: swell
    Theme Name: SWELL CHILD
    Theme URI: https://swell-theme.com/
    Description: SWELLの子テーマ
    Version: 1.0.0
    Author: LOOS WEB STUDIO
    Author URI: https://loos-web-studio.com/

    License: GNU General Public License
    License URI: http://www.gnu.org/licenses/gpl.html
*/

/* ===============================
   新着記事一覧（PC：2列固定）
================================ */

.l-main .new-posts-grid {
	display: grid !important;
	grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	gap: 24px;
	margin: 40px 0;
	padding: 0;
	list-style: none;
}

.l-main .new-posts-item {
	width: 100%;
}

.l-main .new-posts-item a {
	display: block;
	text-decoration: none;
}

/* サムネイル */
.l-main .new-posts-thumb img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 8px;
}

/* タイトル（黒字） */
.l-main .new-posts-title {
	margin-top: 8px;
	font-size: 16px;
	font-weight: 600;
	color: #000 !important;
	line-height: 1.5;
}

/* ===============================
   ページネーション（メインカラー）
================================ */

.l-main .new-posts-pagination {
	margin-top: 40px;
	text-align: center;
}

.l-main .new-posts-pagination .page-numbers {
	display: inline-block;
	margin: 0 6px;
	padding: 8px 12px;
	border: 1px solid var(--color_main);
	border-radius: 4px;
	color: var(--color_main);
	text-decoration: none;
}

.l-main .new-posts-pagination .current,
.l-main .new-posts-pagination a.page-numbers:hover {
	background: var(--color_main);
	color: #fff;
	border-color: var(--color_main);
}



