/* * =========================================
 * カード一覧
 * =========================================
 */
.article-list {
	padding: 40px 24px;
}

.article-list__inner {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 40px 24px;
	align-items: stretch;
}

.article-list__card {
	position: relative;
}

.article-list__card img {
	width: 100%;
}

.card__btns {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	display: flex;
	gap: 16px;
	align-items: center;
	justify-content: center;
	width: 100%;
	padding: 20px;
}

.card__btns a {
	display: flex;
	flex: 1;
	justify-content: center;
	padding: 0.4em;
	font-size: 18px;
	font-style: normal;
	font-weight: var(--font-weight-medium);
	line-height: 140%; /* 33.6px */
	color: #fff;
	letter-spacing: 1.92px;
	white-space: nowrap;
	background-color: #f58dab;
	border-radius: 0.5rem;
	box-shadow: none;
}

/* * =========================================
 * レスポンシブ対応 (767px以上1150px以下)
 * =========================================
 */
@media screen and (width >= 768px) and (width <= 1150px) {
	/* FVバナーの調整 */
	.c-fv-banner__container {
		display: block;
	}

	/* カード一覧の調整 */
	.card__btns {
		padding: 20px 20px 12px;
	}

	.card__btns a {
		font-size: 13px;
	}
}

/* * =========================================
 * レスポンシブ対応 (767px以下)
 * =========================================
 */
@media screen and (width <= 767px) {
	.article-list {
		padding: 32px 0 64px;
	}

	.article-list__inner {
		grid-template-columns: repeat(1, 1fr);
	}
}

/* * =========================================
 * レスポンシブ対応 (420px以下)
 * =========================================
 */
@media screen and (width <=420px) {
	.card__btns {
		padding: 16px;
	}

	.card__btns a {
		font-size: 16px;
		letter-spacing: 0.4px;
	}
}
