@charset "utf-8";

/* 記事一覧
---------------------------------------- */
.articleListWrapper {
	margin-top: 1em;
}

.articleItem a {
	display: flex;
	padding: 2em 0;
}

.articleItem:not(:first-child) a {
	border-top: 1px solid #E6E6E6;
}

.articleListTitle {
	font-size: 16px;
	letter-spacing: 0.05em;
	line-height: 1.5;
	color: var(--textColor);
	flex: 1;
}

.articleDate {
	font-size: 16px;
	font-weight: 500;
	letter-spacing: 0.05em;
	line-height: 1.5;
	color: #268aff;
	flex: 0 0 100px;
	order: -1;
}

.articleListTitle + .articleDate {
	margin-right: 1em;
}

.totalCurrentPage {
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.07em;
	color: #949395;
}

/* 記事詳細
---------------------------------------- */
.articleWrapper {
	margin-top: 2em;
}

.articleHeader {
	display: flex;
	flex-direction: column;
	border-bottom: 1px solid #b0b0b0;
	padding-bottom: 1em;
}

h1.articleTitle {
	line-height: 1.3;
	color: #268aff;
	margin-bottom: 0;
}

.postDate {
	color: #268aff;
	order: -1;
}

.articleText {
	line-height: calc(30 / 16);
	margin-top: 0.8em;
}

.articleLinkWrapper {
	margin-top: 36px;
}

.articleLink {
	color: #268aff;
}

.buttonWrapper {
	display: flex;
	justify-content: center;
	margin-top: 80px;
}

.arrowToLeft {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 22px;
	margin: auto 0;
	width: 9px;
	height: 15px;
	z-index: 1;
	display: inline-flex;
}

.arrowToLeft use {
	color: #268aff;
	transition: color 0.2s;
}

.backArrow::after {
	content: "";
	position: absolute;
	top: 0;
	right: -100%;
	width: 100%;
	height: 100%;
	background-color: #268aff;
	display: inline-block;
	transition: transform 0.2s ease-out;
}

@media (hover: hover) and (pointer: fine) {
	.backArrow:hover {
		border-color: #268aff;
	}

	.backArrow:hover::after {
		transform: translateX(-100%);
	}

	.baseButton:hover .arrowToLeft use {
		color: #fff;
	}
}

/* ページャー
---------------------------------------- */
.pagerWrapper {
	margin-top: 56px;
}

.pager ul {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	text-align: center;
}

.pager ul li.currentpage a {
	color: #268aff;
}

.pager ul li:is(.prev, .next) {
	height: 100%;
}

.pager ul li.prev {
	margin-right: 2em;
}

.pager ul li.next {
	margin-left: 2em;
}

.pager ul li:not(:nth-last-child(2), .prev, .next) {
	margin-right: 1em;
}

.pager ul li a {
	font-size: 18px;
	font-weight: 500;
	color: #b0b0b0;
	display: block;
}

.pager ul li:is(.prev, .next) a {
	display: block;
}

.pager ul li.prev a::before {
	border-left: 1px solid #268aff;
	border-bottom: 1px solid #268aff;
	transform-origin: right;
}

.pager ul li:is(.prev, .next) a::before {
	content: "";
	width: 7px;
	height: 7px;
	display: inline-block;
	transform: rotate(45deg);
}

.pager ul li.next a::before {
	border-top: 1px solid #268aff;
	border-right: 1px solid #268aff;
	transform-origin: right top;
}
