/*--------------------------------------------------*/
/* .cms-index-page */
/*--------------------------------------------------*/

@media (min-width: 768px) {
	.cms-index-page .page-body .container-wide {
		max-width: 1380px;
	}
}

/*--------------------------------------------------*/
/* .article-list */
/*--------------------------------------------------*/

.cms-index-page .article-list {
	background-color: #ffffff;
	padding: 50px;
}
.cms-index-page .article-list ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-weight: 500;
	border-top: 1px solid var(--gray);
}
.cms-index-page .article-list > ul > li {
	display: flex;
	align-items: center;
	border-bottom: 1px solid var(--gray);
	padding: 30px 0 30px 15px;
}
.cms-index-page .article-list .date {
	font-size: 16px;
	width: 110px;
}
.cms-index-page .article-list .category a {
	display: flex;
	align-items: center;
	width: fit-content;
	min-height: 28px;
	font-size: 14px;
	line-height: 1.2;
	background-color: var(--red);
	color: #ffffff;
	border-radius: 3px;
	padding: 3px 15px;
}
.cms-index-page .article-list .title {
	font-weight: 500;
	line-height: 1.8;
	margin: 0;
}

/* レスポンシブ対応 */
@media (min-width: 768px) {
	.cms-index-page .article-list .title {
		flex: 1;
		font-size: 19px;
		margin: 0;
		padding-left: 25px;
	}
}
@media (max-width: 767px) {
	.cms-index-page .article-list {
		padding: 30px 15px;
	}
	.cms-index-page .article-list ul li {
		flex-wrap: wrap;
		padding: 20px 0 20px 15px;
	}
	.cms-index-page .article-list .date {
		width: 100px;
	}
	.cms-index-page .article-list .category a {
		min-height: 27px;
		font-size: 13px;
		padding: 3px 10px;
	}
	.cms-index-page .article-list .title {
		width: 100%;
		font-size: 16px;
		margin-top: 5px;
	}
}

/*--------------------------------------------------*/
/* ページネーション */
/*--------------------------------------------------*/

.pager-arrows {
	margin-top: 20px;
}
.pager-arrows .pager-inner {
	display: flex;
	justify-content: flex-end;
	gap: 10px;
}
.pager-arrows a {
	position: relative;
	display: block;
	width: 65px;
	height: 65px;
	background-color: rgba(0,0,0,0);
}
.pager-arrows .pager-prev a::after,
.pager-arrows .pager-next a::after {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	border: 1px solid var(--red);
	background-color: var(--red);
	border-radius: 4px;
	color: #ffffff;
	font-family: "Material Symbols Sharp";
	content: "\ef7d";
	font-weight: 200;
	font-size: 32px;
	line-height: 1;
	text-align: center;
	transition: 0.3s;
}
.pager-arrows .pager-next a::after {
	content: "\e941";
}
@media (min-width: 768px) {
	.pager-arrows .pager-prev a:hover::after,
	.pager-arrows .pager-next a:hover::after {
		background-color: #ffffff;
		color: var(--red);
	}
}
@media (max-width: 767px) {
	.pager-arrows a {
		width: 55px;
		height: 55px;
	}
}

/*--------------------------------------------------*/
/* .cms-single-page */
/*--------------------------------------------------*/

@media (min-width: 768px) {
	.cms-single-page .page-body .container-wide {
		max-width: 1180px;
	}
}

/* .entry-wrap */
.cms-single-page .entry-wrap {
	background-color: #ffffff;
	padding: 60px;
}
@media (max-width: 767px) {
	.cms-single-page .entry-wrap {
		padding: 55px 20px 60px 20px;
	}
}

/* .entry-header */
.cms-single-page .entry-header {
	padding-bottom: 80px;
}
.cms-single-page .entry-header .meta-wrap {
	display: flex;
	align-items: center;
}
.cms-single-page .entry-header .date {
	margin-right: 25px;
}
.cms-single-page .entry-header .category a {
	display: flex;
	align-items: center;
	width: fit-content;
	min-height: 28px;
	font-size: 14px;
	line-height: 1.2;
	background-color: var(--red);
	color: #ffffff;
	border-radius: 3px;
	padding: 3px 15px;
}
.cms-single-page .entry-header .article-title {
	font-size: 32px;
	font-weight: 700;
	margin: 30px 0 0 0;
}
.cms-single-page .entry-header .img-wrap {
	margin-top: 30px;
}
@media (min-width: 768px) {
	
}
@media (max-width: 767px) {
	.cms-single-page .entry-header {
		padding-bottom: 60px;
	}
	.cms-single-page .entry-header .date {
		font-size: 16px;
	}
	.cms-single-page .entry-header .category a {
		min-height: 27px;
		font-size: 13px;
	}
	.cms-single-page .entry-header .article-title {
		font-size: 22px;
		margin: 15px 0 0 0;
	}
}

/* .entry-body */
.cms-single-page .entry-body p a {
	color: var(--red);
	text-decoration: underline;
}
.cms-single-page .entry-body h2 {
	font-size: 28px;
	margin: 120px 0 40px 0;
}
.cms-single-page .entry-body h3 {
	position: relative;
	font-size: 24px;
	border-bottom: 5px solid var(--gray);
	padding-bottom: 15px;
	margin: 80px 0 20px 0;
}
.cms-single-page .entry-body h3::after {
	position: absolute;
	left: 0;
	bottom: -5px;
	content: "";
	width: 20px;
	height: 5px;
	background-color: var(--red);
}
.cms-single-page .entry-body h4 {
	font-size: 20px;
	margin: 60px 0 15px 0;
}
.cms-single-page .entry-body h4::before {
	font-family: FontAwesome;
	content: "\f111";
	color: var(--red);
	margin-right: 0.4em;
}
.cms-single-page .entry-body > *:first-child {
	margin-top: 0;
}
@media (min-width: 768px) {
	.cms-single-page .entry-body p a:hover {
		text-decoration: none;
	}
}
@media (max-width: 767px) {
	.cms-single-page .entry-body h2 {
		font-size: 22px;
		margin: 80px 0 20px 0;
	}
	.cms-single-page .entry-body h3 {
		font-size: 20px;
		margin: 50px 0 20px 0;
	}
	.cms-single-page .entry-body h3::after {
		width: 15px;
	}
	.cms-single-page .entry-body h4 {
		font-size: 18px;
		margin: 35px 0 10px 0;
	}
}

.cms-single-page .page-body .btn {
	max-width: 350px;
	margin: 40px auto 0 auto;
}


