@charset "UTF-8";
/*――――――――――――――――――
mv
―――――――――――――――――――*/
#under_mv {
	background-image: url(../img/common/under_mv.jpg);
}

/*――――――――――――――――――
section
―――――――――――――――――――*/
#section01{
	padding-bottom: 100px;
}
@media screen and (max-width: 767px) {
#section01 {
	padding-bottom: 50px;
}
}

/*――――――――――――――――――
blog
―――――――――――――――――――*/
.blog_flex {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin-bottom: 50px;
}
/*.blog_flex_works img {
	width: 100%;
	height: 20vw;
	object-fit: cover;
	font-family: ‘object-fit: cover;’;
}*/
.blog_flex:after {
	content: '';
	display: block;
	width: 32.3%;
}
.blog_flex a {
	width: 32.3%;
	background: #fff;
	transition: opacity .4s ease;
	display: block;
    margin-bottom: 30px;
}
.blog_flex a:hover {
	opacity: 0.6;
}
.blog_flex .w_text {
	line-height: 1.4;
	padding: 10px 20px 25px;
}
.blog_flex .date {
	font-family: var(--noto);
	color: var(--mc);
	font-weight: 700;
	font-size: 14px;
	margin-bottom: 5px;
}
.blog_flex .text {
	font-size: 13px;
	margin-bottom: 15px;
}
.blog_flex .category{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-content: center;
	justify-content: flex-start;
	align-items: center;
	gap: 5px;
}
.blog_flex .category li {
	font-size: 12px;
	color: #fff;
	border-radius: 50px;
	background: var(--mc);
	text-align: center;
	padding: 3px 15px;
	letter-spacing: 0;
}
@media only screen and (max-width: 767px) {
	.blog_flex  {
		display: block;
	}
	.blog_flex  > a {
		display: block;
		width: 100%;
		margin-bottom: 20px;
	}
	.blog_flex  > a img {
		width: 100%;
	}
	.blog_flex  > a:last-child {
		margin-bottom: 0;
	}
}

/*――――――――――――――――――
.pagination
―――――――――――――――――――*/
.pagination {
	text-align: center;
    margin: 0em auto;
    padding-bottom: 4em;
}

.pagination h2.screen-reader-text {
    display: none;
}

.pagination .nav-links {
    text-align: center;
}

.pagination .nav-links .current {
    display: inline-block;
    width: 20px;
    height: 20px;
    margin: 5px;
	color: var(--mc);
    font-size: 15px;
    line-height: 20px;
    font-weight: 700;
}

.pagination .nav-links .dots {
    display: inline-block;
    margin: 5px;
    font-size: 15px;
    font-weight: 700;
    line-height: 20px;
}

.pagination .nav-links a.page-numbers {
    display: inline-block;
    width: 20px;
    height: 20px;
    margin: 5px;
    font-size: 15px;
    text-decoration: none;
    line-height: 20px;
}

.pagination .nav-links a.page-numbers:hover {
	color: var(--mc);
    text-decoration: underline;
}

.pagination .nav-links a.prev.page-numbers,.pagination .nav-links a.next.page-numbers {
    width: auto;
    padding-right: 6px;
    padding-left: 6px;
    background: transparent;
}

.pagination .nav-links a.prev.page-numbers:hover,.pagination .nav-links a.next.page-numbers:hover {
	color: var(--mc);
    text-decoration: none;
}