@charset 'utf-8';

.section-inner {
	max-width: 1024px;
    margin: 0 auto;
    padding-top: 80px;
}
.container {
	border-top: 1px solid #eee;
    padding: 24px 16px;
}
.news figure img,
.blog figure img {
	max-width: 100%;
	height: auto;
}

/****************************************************************
 * 							news
 ***************************************************************/
section.news a {
	display: block;
}
section.news .article {
	display: flex;
    justify-content: flex-start;
	margin-bottom: 24px;
}
section.news .article figure {
	width: 50%;
	margin-right: 16px;
}
section.news .article figure a {
	position: relative;
	padding-top: 60%;
	overflow: hidden;
}
section.news .article figure a img {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	object-fit: cover;
}
section.news .article .post-meta {
	width: 75%;
}
section.news .article .post-meta a {
	display: flex;
	flex-direction: column-reverse;
	color: #000;
}
section.news .article .post-meta h3 {
	font-size: 16px;
	font-weight: bold;
	line-height: 1.4;
}
section.news .article .post-meta p {
	margin-bottom: 8px;
}
section.news .article h3 {
	margin-bottom: 16px;
}

/****************************************************************
 * 							blog
 ***************************************************************/
.content.blog .mod-ttl-block .mod-ttl-block-outer::after {
	background: #ff0211;
}
.breadcrumb .font-bb {
	text-transform: uppercase;
}
.mod-ttl-block-bottom .content-sub {
	color: #fff;
	text-align: right;
}
.mod-ttl-block-bottom .content-sub a {
	color: #fff;
	pointer-events: none;
}
.content.blog .main,
main#main.news {
	width: 75%;
    display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
    margin: 0 auto;
	padding: 60px 0 100px;
}
.content.blog .main-inner,
main#main.news .main-inner {
	width: 100%;
	margin: 0;
	padding-top: 0;
	padding-bottom: 40px;
}
.content.blog .news-header {
	color: #000;
	margin-bottom: 24px;
	padding: 16px;
	border-bottom: 4px solid #ff0211;
}
.content.blog .content-sub {
	display: flex;
    justify-content: flex-start;
	align-items: center;
	font-size: 12px;
    margin-bottom: 24px;
}
.content.blog .content-sub .cate {
	font-size: 12px;
	margin-left: 8px;
	padding: 4px 8px;
	text-transform: uppercase;
	background: #ff0211;
}
.content.blog .content-sub .cate a {
	font-size: 10px;
	color: #fff;
}
.content.blog .news-header h2 {
	font-size: 16px;
	font-weight: bold;
	line-height: 1.2;
}
.content.blog figure {
	position: relative;
	padding-top: 35%;
	overflow: hidden;
}
.content.blog figure img {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	object-fit: cover;
}
.sidebar {
	width: 280px;
}
.sidebar .widget h3 {
	font-size: 14px;
    font-weight: bold;
	color: #000;
    padding-bottom: 8px;
    border-bottom: 2px solid #ff0211;
}
.sidebar .widget ul {
	margin-top: 16px;
	margin-bottom: 32px;
}
.sidebar .widget ul li {
	padding-top: 8px;
	padding-bottom: 8px;
	border-bottom: 1px dotted #ff0211;
}
.sidebar .widget ul li a {
	color: #000;
}
.content.blog .article .text p {
	font-size: 14px;
	margin: 16px 0;
	line-height: 1.8;
}
.pagination {
	display: flex;
    justify-content: space-between;
    margin-top: 40px;
}
.content.blog .pagination a {
	color: #000;
	border-bottom: 1px dotted #ff0211;
}

@media screen and (max-width: 640px) {
	section.news .article {
		flex-wrap: wrap;
	}
	section.news .article figure {
		width: 100%;
		margin-right: 0;
	}
	section.news .article .post-meta {
		width: 100%;
		margin-top: 16px;
	}
	section.news .article .post-meta h3 {
		font-size: 12px;
		order: 2;
		margin-top: 16px;
	}
	section.news .article .post-meta p {
		order: 1;
		margin-bottom: 0;
	}
	section.news .article .post-meta a {
		display: flex;
		flex-direction: column;
	}
}

@media screen and (max-width: 768px) {
	.content.blog {
		padding-top: 60px;
	}
	.content.blog .content-sub {
		margin-right: 16px;
	}
	.content.blog .main,
	main#main.news {
		width: 90%;
	}
}

/****************************************************************
 * 						ページリスト表示
 ***************************************************************/
.pnavi {
	width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 16px 0;
}
.page-numbers {
	padding: 10px 12px;
    border-radius: 5px;
    margin-right: 4px;
    background: #b2b2b0;
    color: #fff;
}
.page-numbers.current {
	background: #081117;
}