@charset "UTF-8";
/*--------------------------------------
  homepost
--------------------------------------*/
.homepost {
	display: flex;
		justify-content:space-between;
}
.homepost .post {
	margin: 0 1%;
	background: #F1F3F9;
	padding: 20px;
	width:32%;
}
.homepost .image {
	position: relative;
	margin: 0 auto 10px auto;
	box-shadow: 10px 14px 14px -7px rgba(0, 0, 128, 0.16), 0 0 28px -14px rgba(0, 0, 128, 0.18);
	overflow: hidden;
	z-index:0;
}
.homepost .image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
	transform-origin: center;
}
.homepost .image:hover img {
	transform: scale(1.12);
}
.homepost .post .category {
	position: absolute;
	top: 0px;
	left: 0px;
	padding: 3px 8px;
	color: #fff;
	font-size: .85em;
	font-weight: bold;
}
.homepost .post .title {
	font-weight: normal;
	font-size: 1.15em;
	line-height: 30px;
	margin: 0 0 10px 0;
}
.homepost .date {
	font-size: .85em;
	margin: 0 0 10px 0;
}
/*--------------------------------------
  toppagepost
--------------------------------------*/
#sidebar .top-pagepost-head {
	display: flex;
	align-items: center;
	margin: 30px 0 30px 0;
}
.top-pagepost-head {
	display: flex;
	align-items: center;
	margin: 50px 0;
}
.top-pagepost-head .title {
	font-size: 48px;
	font-weight: bold;
}
.top-pagepost-head span {
	font-size:1em;
	font-weight:600;
}
.top-pagepost-head h2 {
	font-size: 1em;
	margin: 15px 0 0 30px;
}
.toppage-post {
	display: flex;
	flex-wrap: wrap;
	justify-content:space-between;
	margin: 0 auto;
}
.toppage-post .post {
	width: 20%;
	margin: 0 1% 30px 1%;
	background: #F1F3F9;
	padding: 20px 1.5%;
}
.toppage-post .image {
	margin: 0 auto 10px auto;
	box-shadow: 10px 14px 14px -7px rgba(0, 0, 128, 0.16), 0 0 28px -14px rgba(0, 0, 128, 0.18);
	position: relative;
	overflow: hidden;
}
.toppage-post .image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
	transform-origin: center;
}
.toppage-post .image:hover img {
	transform: scale(1.12);
}
.toppage-post .post .category {
	position: absolute;
	top: 0px;
	left: 0px;
	padding: 3px 8px;
	color: #fff;
	font-size: .85em;
	font-weight: bold;
}
.toppage-post .post .title {
	font-weight: normal;
	font-size: 1em;
	line-height: 25px;
	margin: 0 0 10px 0;
}
.toppage-post .date {
	font-size: .85em;
	margin: 0 0 10px 0;
}
/*--------------------------------------
  ranking
--------------------------------------*/
.ranking {
	display: flex;
	flex-wrap: wrap;
	counter-reset: number;
	justify-content:space-between;
}
.ranking .post {
	width: 18%;
	margin: 0 0 0px 0;
	padding: 10px;
	counter-increment: number;
}
.ranking .post .title {
	font-weight: normal;
	font-size: .95em;
	line-height: 25px;
	margin: 0 0 10px 0;
}
.ranking .post .image {
	margin: 0 0 10px 0;
	position: relative;
	overflow: hidden;
	box-shadow: 10px 14px 14px -7px rgba(0, 0, 128, 0.16), 0 0 28px -14px rgba(0, 0, 128, 0.18);
}
.ranking .image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
	transform-origin: center;
}
.ranking .image:hover img {
	transform: scale(1.12);
}
.ranking .post .image:before {
	position: absolute;
	top: 0px;
	left: 0px;
	content: counter(number);
	padding-right: 10px;
	text-align: center;
	padding: 5px 10px;
	color: #fff;
	font-weight: 700;
	font-size: .95em;
	background: #F33;
	z-index: 1;
}
.ranking .post:nth-child(1) .image::before {
	background: #e60012;
}
.ranking .post:nth-child(2) .image::before {
	background: #f39800;
}
.ranking .post:nth-child(3) .image::before {
	background: #ffd900;
}
.ranking .post:nth-child(4) .image::before {
	background: #8fc31f;
}
.ranking .post:nth-child(5) .image::before {
	background: #009944;
}
.ranking .post:nth-child(6) .image::before {
	background: #00a0e9;
}
.ranking .post:nth-child(7) .image::before {
	background: #0068b7;
}
.ranking .post:nth-child(8) .image::before {
	background: #1d2088;
}
.ranking .post:nth-child(9) .image::before {
	background: #920783;
}
.ranking .post:nth-child(10) .image::before {
	background: #e4007f;
}