@charset "UTF-8";


/* ==================================================
		ニュースアーカイブ
================================================== */

/***** 記事一覧 *****/
.articleContent::before {
	position: absolute;
	top: 10px;
	right: 10px;
	width: 24px;
	height: 24px;
	content: "";
	border: 1px solid #d0d0d0;
	border-radius: 100%;
}
.articleContent::after {
	position: absolute;
	top: 17px;
	right: 19px;
	width: 10px;
	height: 10px;
	content: "";
	border-top: 1px  solid #d0d0d0;
	border-right: 1px solid #d0d0d0;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

/* SP用記事リンク */
.articleLinkSp {
	border: 1px solid #cccccc;
	z-index: 1;
	-webkit-transition: border-color .3s;
	transition: border-color .3s;
}
.articleLinkSp:hover {
	border: 2px solid #0051a4;
}

/* 公開日 */
.newsDate {
	width: 100%;
	color: #a0a0a0;
	font-size: 1.1rem;
}

/* カテゴリ */
.newsCat {
	width: 100%;
	font-weight: 500;
}
.newsCat span.separate {
	padding-right: 1rem;
	margin-right: 1rem;
	position: relative;
}
.newsCat span.separate::after{
	content: ' ';
	display: inline-block;
	height: 70%;
	position: absolute;
	width: 1px;
	background-color: #cccccc;
	top: 20%;
	right: 0;
}

/* タイトル */
.newsTtl {
	font-weight: 600;
}

/* 記事本文冒頭抜粋 */
.newsTxt {
	width: calc(100% - 90px);
	line-height: 1.8;
	font-size: 1.2rem;
	text-align: justify;
	word-break: break-all;
}

/* サムネイル */
.newsThumb {
	width: 90px;
	height: 90px;
	overflow: hidden;
}

.newsThumb img {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	max-width: none;
	width: auto;
	height: 100%;
}


@media (min-width: 375px) {
	/* 公開日 */
	.newsDate {
		width: auto;
	}

	/* カテゴリ */
	.newsCat {
		width: auto;
	}
}

@media (min-width: 768px) {
	.articleContent {
		border: 1px solid #cccccc;
	}
	.articleContent::before {
		content: none;
	}
	.articleContent::after {
		content: none;
	}

	/* PCレイアウト用ボックス */
	.contentBox {
		width: calc(100% - 200px);
	}

	/* 公開日 */
	.newsDate {
		width: 100%;
		font-size: 1.4rem;
	}

	/* カテゴリ */
	.newsCat {
		width: 100%;
		font-size: 1.8rem;
	}

	/* タイトル */
	.newsTtl {
		font-size: 1.8rem;
	}

	/* 冒頭文 */
	.newsTxt {
		width: 100%;
		font-size: 1.6rem; 
	}

	/* サムネイル */
	.newsThumb {
		width: 200px;
		height: 200px;
	}

	/* PC用MOREボタン */
	.btnMore {
		width: 180px;
		padding: 8px 20px 12px;
		border: 1px solid #cccccc;
		border-radius: 10rem;
		font-size: 1.6rem;
		font-weight: 500;
		-webkit-transition: .3s;
		transition: .3s;
	}
	.btnMore::before {
		position: absolute;
		top: 20px;
		left: 20px;
		width: 15px;
		height: 3px;
		border-top: 3px solid #000000;
		content: "";
		-webkit-transition: .3s;
		transition: .3s;
	}
	.btnMore:hover {
		border-color: #0051a4;
		color: #ffffff;
		background: #0051a4;
	}
	.btnMore:hover::before {
		border-top-color: #ffffff;
	}
}

@media (min-width: 992px) {
	/* PCレイアウト用ボックス */
	.contentBox {
		width: calc(100% - 260px);
	}

	/* サムネイル */
	.newsThumb {
		width: 260px;
		height: 260px;
	}
}


/***** ページネーション *****/
.pageLink {
	padding: 12px;
	border-color: #cccccc;
	color: #0051a4;
	font-weight: 500;
	text-align: center;
	-webkit-transition: .3s;
	transition: .3s;
	cursor: pointer;
}
.pageLink:hover {
	border-color: #0051a4;
	color: #ffffff;
	background: #0051a4;
}

/* ドット */
.pageLink.dots {
	margin-left: 1px;
	padding: 12px 10px;
	border: none;
	color: #333333;
}
.pageLink.dots:hover {
	background: none;
	cursor: default;
}

/* PREV NEXT */
.pageLink .pagePrev,
.pageLink .pageNext {
	display: inline-block;
	width: 34px;
}

/* アクティブの時 */
.pageItem.active .pageLink {
	border-color: #0051a4;
	color: #ffffff;
	background: #0051a4;
	cursor: default;
}


@media (min-width: 375px) {
	.pageLink {
		padding: 12px 15px;
	}

	/* ドット */
	.pageLink.dots {
		padding: 12px 12px 12px 11px;
	}
}

@media (min-width: 414px) {
	/* PREV NEXT */
	.pageLink .pagePrev,
	.pageLink .pageNext {
		width: 38px;
	}
}

@media (min-width: 768px) {
	/* ドット */
	.pageLink.dots {
		padding: 12px 14px 12px 13px;
	}

	/* PREV NEXT */
	.pageLink .pagePrev,
	.pageLink .pageNext {
		width: 48px;
	}
}
