@charset "UTF-8";

/* ------------------------------------------------------------
  PCスタイル
 ------------------------------------------------------------ */
@media screen and (min-width: 768px) {
	/* ページヘッダー */
	.newsTtl_fig {
		width: 222px;
		height: 245px;
		position: absolute;
		left: -260px;
		bottom: -103px;
	}

	/* 記事見出し部分 */
	.newsDetail_sec {
		width: 800px;
		margin-top: 100px;
	}
	.newsDetail_ttlGroup {
		display: flex;
		flex-direction: column-reverse;
		align-items: center;
	}
	.newsDetail_ttl {
		margin-top: 8px;
		font-size: 2.5rem;
		font-weight: 500;
		line-height: 1.2;
	}
	.post_date, .post_cat {
		font-size: 0.875rem;
		line-height: 1;
	}
	.post_cat {
		display: inline-block;
		padding: 0.2rem;
		border: 1px solid #1AAD6B;
		color: #1AAD6B;
	}

	/* 本文 */
	.newsDetail_contWrap {
		display: flex;
		flex-direction: column;
		align-items: center;
	}
	.newsDetail_thumb {
		margin-top: 50px;
	}
	.newsDetail_mainTxt {
		width: 100%;
		padding-bottom: 30px;
		margin-top: 50px;
		border-bottom: 1px solid #000;
		text-align: justify;
	}
	/* メディア挿入の画像 */
	.alignleft { /* 左寄せ */
		display: block;
		margin-right: auto;
	}
	.aligncenter { /* 中央 */
		display: block;
		margin-left: auto;
		margin-right: auto;
	}
	.alignright { /* 右寄せ */
		display: block;
		margin-left: auto;
	}

	/* ページネーション */
	.post_pageNation {
		width: 100%;
		height: 40px;
		margin: 30px 0 0;
		position: relative;
	}
	.nation_rev {
		width: 65px;
		height: 40px;
		position: absolute;
		top: 50%;
		left: 0;
		transform: translate(0, -50%);
	}
	.nation_top {
		width: 105px;
		height: 40px;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
	}
	.nation_skip {
		width: 65px;
		height: 40px;
		position: absolute;
		top: 50%;
		right: 0;
		transform: translate(0, -50%);
	}

	.post_pageNation a {
		display: flex;
		justify-content: center;
		align-items: center;
		height: 40px;
		padding: 0 1rem;
		border: 1px solid #000;
		border-radius: 20px;
		background: #fefcf3;
		font-size: 0.875rem;
		color: #000;
		text-decoration: none;
		line-height: 1;
		transform: var(--hover-speed);
	}
	.post_pageNation a:hover {
		background: #000;
		color: #fff;
		transition: var(--hover-speed);
	}
}


/* ------------------------------------------------------------
  SPスタイル
 ------------------------------------------------------------ */
@media screen and (max-width: 767px) {
	/* ページヘッダー・イラスト */
	.newsTtl_fig {
		width: 181px;
		height: 200px;
		position: absolute;
		right: 0;
		bottom: -150px;
		left: 0;
		margin: 0 auto;
	}

	/* 記事見出し部分 */
	.newsDetail_sec {
		display: flex;
		flex-direction: column;
		align-items: center;
		width: 100%;
		padding: 0 24px;
		margin-top: 40px;
	}
	.newsDetail_ttlGroup {
		display: flex;
		flex-direction: column-reverse;
		align-items: center;
	}
	.newsDetail_ttl {
		margin-top: 8px;
		font-size: 2.0625rem; /* 33px */
		font-weight: 500;
		line-height: 1;
	}
	.post_date, .post_cat {
		font-size: 0.875rem;
		line-height: 1;
	}
	.post_cat {
		display: inline-block;
		padding: 0.2rem;
		border: 1px solid #1AAD6B;
		color: #1AAD6B;
	}
	/* 投稿画像 */
	.newsDetail_thumb {
		display: flex;
		flex-direction: column;
		align-items: center;
		width: 100%;
		margin-top: 30px;
	}
	.newsDetail_contWrap {
		width: 100%;
		padding-bottom: 30px;
		border-bottom: 1px solid #000;
	}
	.newsDetail_mainTxt p img {
		width: 100%;
		height: auto;
	}
	.newsDetail_contWrap p {
		margin-top: 30px;
		text-align: justify;
	}

	/* ページネーション */
	.post_pageNation {
		width: 100%;
		height: 40px;
		margin: 30px 0 100px;
		position: relative;
	}
	.nation_rev {
		width: 65px;
		height: 40px;
		position: absolute;
		top: 50%;
		left: 0;
		transform: translate(0, -50%);
	}
	.nation_top {
		width: 105px;
		height: 40px;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
	}
	.nation_skip {
		width: 65px;
		height: 40px;
		position: absolute;
		top: 50%;
		right: 0;
		transform: translate(0, -50%);
	}
	.post_pageNation a {
		display: flex;
		justify-content: center;
		align-items: center;
		height: 40px;
		padding: 0 1rem;
		border: 1px solid #000;
		border-radius: 20px;
		background: #fefcf3;
		font-size: 0.875rem;
		color: #000;
		text-decoration: none;
		line-height: 1;
		transform: var(--hover-speed);
	}
	.post_pageNation a:hover {
		background: #000;
		color: #fff;
		transition: var(--hover-speed);
	}

}
