@charset "UTF-8";

/** -----------------------
* works
----------------------- **/
.cat_works {
	padding: 74px 50px 120px;
}
.cat_works .inner {
	margin: 0 -10px;
}

.cat_works h1 {
    background-color: #3D804E;
    color: #F8F5ED;
    display: table;
    font-size: 40px;
    letter-spacing: 2px;
    line-height: 1.0;
    margin-bottom: 50px;
    padding: 8px 25px 13px;
    text-align: center;
    word-break: keep-all;
    min-width: 260px;
}

/** article **/
.cat_works article {
	cursor: pointer;
	margin: 0 10px 80px;
	position: relative;
	width: calc(33.3333% - 20px);
}
.cat_works article a {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	z-index: 1;
}
.cat_works article p {
	color: #1F3E27;
	line-height: 1.8;
	padding-bottom: 40px;
	position: relative;
}
.cat_works article p::after {
	background: url("../img/common/icon-arrow-1.svg") no-repeat 100% 0 / contain;
	content: '';
	display: block;
	position: absolute;
	bottom: 20px;
	right: 0;
	height: 10px;
	width: 164px;
}
.cat_works article .thumb {
	position: relative;
	transition: ease .3s;
	height: 650px;
	width: 100%;
}
.cat_works article .thumb img {
	object-fit: cover;
	height: 100%;
	width: 100%;
}

.cat_works article.thumb::before,
.cat_works article .thumb::after {
	transition: ease .3s;
}
.cat_works article:hover .thumb::before,
.cat_works article:hover .thumb::after {
	display: block;
	position: absolute;
	left: 0;
	width: 100%;
}
.cat_works article:hover .thumb::before {
	background-color: #68665E;
	content: '';
	mix-blend-mode: multiply;
	opacity: .7;
	top: 0;
	height: 100%;
}
.cat_works article:hover .thumb::after {
	color: #F8F5ED;
	content: 'Read more';
	font-family: "brother-1816", sans-serif;
	font-size: 20px;
	font-style: normal;
	font-weight: 700;
	position: absolute;
	top: 50%;
	text-align: center;
	transform: translateY(-50%);
}
.cat_works article:hover .thumb .hover_1,
.cat_works article:hover .thumb .hover_2 {
	position: absolute;
	transition: ease .3s;
	height: 120px;
	width: 120px;
}
.cat_works article:hover .thumb .hover_1 {
	right: 20px;
	top: 20px;
}
.cat_works article:hover .thumb .hover_2 {
	bottom: 20px;
	left: 20px;
}
.cat_works article .thumb .hover_1::before,
.cat_works article .thumb .hover_1::after,
.cat_works article .thumb .hover_2::before,
.cat_works article .thumb .hover_2::after {
	transition: ease .3s;
}
.cat_works article:hover .thumb .hover_1::before,
.cat_works article:hover .thumb .hover_1::after,
.cat_works article:hover .thumb .hover_2::before,
.cat_works article:hover .thumb .hover_2::after {
	background-color: #F8F5ED;
	content: '';
	display: block;
	position: absolute;
}
.cat_works article:hover .thumb .hover_1::before,
.cat_works article:hover .thumb .hover_2::before {
	bottom: 0;
	height: 100%;
	width: 1px;
}
.cat_works article:hover .thumb .hover_1::before {
	right: 20px;
}
.cat_works article:hover .thumb .hover_2::before {
	left: 20px;
}
.cat_works article:hover .thumb .hover_1::after,
.cat_works article:hover .thumb .hover_2::after {
	left: 0;
	height: 1px;
	width: 100%;
}
.cat_works article:hover .thumb .hover_1::after {
	top: 20px;
}
.cat_works article:hover .thumb .hover_2::after {
	bottom: 20px;
}

/** nav-links **/
.cat_works .nav-links {
	display: flex;
	justify-content: center;
	width: 100%;
}
.cat_works .nav-links .page-numbers {
	background-color: #3D804E;
	border: solid 1px #3D804E;
	box-sizing: border-box;
	color: #F8F5ED;
	display: block;
    font-family: "century-gothic", sans-serif;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 40px;
	margin: 0 5px;
    position: relative;
    text-align: center;
    height: 40px;
    width: 40px;
}
.cat_works .nav-links .page-numbers:hover {
	background-color: #F8F5ED;
	color: #3D804E;
}

.cat_works .nav-links .page-numbers.current {
	background-color: transparent;
	border: none;
	color: #3D804E;
}
.cat_works .nav-links .page-numbers.current::after {
	background-color: #3D804E;
	content: '';
	display: block;
	position: absolute;
	bottom: 3px;
	left: 50%;
	transform: translateX(-50%);
	height: 2px;
	width: 18px;
}

.cat_works .nav-links .page-numbers.prev,
.cat_works .nav-links .page-numbers.next {
    font-family: "hiragino-kaku-gothic-pron", sans-serif;
	font-size: 20px;
	padding: 0 20px;
	width: auto;
}

@media screen and (max-width: 1875px) {
	.cat_works {
		padding: 4vw 2.7vw 8vw;
	}
	.cat_works .inner {
		margin: 0 -.5vw;
	}

	.cat_works h1 {
        font-size: 2.1vw;
        letter-spacing: .11vw;
		margin-bottom: 3vw;
        padding: .4vw 1.3vw .7vw;
        min-width: 14vw;
	}

	/** article **/
	.cat_works article {
		margin: 0 .5vw 4.2vw;
		width: calc(33.3333% - 1vw);
	}
	.cat_works article p {
		padding-bottom: 2.1vw;
	}
	.cat_works article p::after {
		bottom: 1.05vw;
		height: .5vw;
		width: 8.7vw;
	}
	.cat_works article .thumb {
		height: 34.7vw;
	}

	.cat_works article:hover .thumb::after {
		font-size: 1.05vw;
	}
	.cat_works article:hover .thumb .hover_1,
	.cat_works article:hover .thumb .hover_2 {
		height: 6.4vw;
		width: 6.4vw;
	}
	.cat_works article:hover .thumb .hover_1 {
		right: 1.05vw;
		top: 1.05vw;
	}
	.cat_works article:hover .thumb .hover_2 {
		bottom: 1.05vw;
		left: 1.05vw;
	}
	.cat_works article:hover .thumb .hover_1::before {
		right: 1.05vw;
	}
	.cat_works article:hover .thumb .hover_2::before {
		left: 1.05vw;
	}
	.cat_works article:hover .thumb .hover_1::after {
		top: 1.05vw;
	}
	.cat_works article:hover .thumb .hover_2::after {
		bottom: 1.05vw;
	}
	
	/** nav-links **/
	.cat_works .nav-links .page-numbers {
		font-size: 1.3vw;
		line-height: 2.1vw;
		margin: 0 .3vw;
		height: 2.1vw;
		width: 2.1vw;
	}
	
	.cat_works .nav-links .page-numbers.current::after {
		bottom: 3px;
		height: 2px;
		width: .95vw;
	}
	
	.cat_works .nav-links .page-numbers.prev,
	.cat_works .nav-links .page-numbers.next {
		font-size: 1.05wv;
		padding: 0 1.05wv;
	}
}

@media screen and (max-width: 780px) {
	.cat_works {
        padding: 12vw 0 16vw;
	}
	.cat_works .inner {
		margin: 0;
	}

	.cat_works h1 {
        font-size: 5.2vw;
        letter-spacing: .3vw;
		margin-bottom: 8vw;
        padding: 2vw 4vw;
        min-width: 36vw;
	}

	/** article **/
	.cat_works article {
		margin: 0 0 10vw;
		width: 100%;
	}
	.cat_works article p {
		padding-bottom: 5vw;
	}
	.cat_works article p::after {
		bottom: 1vw;
		height: 3vw;
		width: 28vw;
	}
	.cat_works article .thumb {
		height: 54vw;
	}

	.cat_works article:hover .thumb::after {
		font-size: 3.8vw;
	}
	.cat_works article:hover .thumb .hover_1,
	.cat_works article:hover .thumb .hover_2 {
		height: 10vw;
		width: 10vw;
	}
	.cat_works article:hover .thumb .hover_1 {
		right: 3vw;
		top: 3vw;
	}
	.cat_works article:hover .thumb .hover_2 {
		bottom: 3vw;
		left: 3vw;
	}
	.cat_works article:hover .thumb .hover_1::before {
		right: 2vw;
	}
	.cat_works article:hover .thumb .hover_2::before {
		left: 2vw;
	}
	.cat_works article:hover .thumb .hover_1::after {
		top: 2vw;
	}
	.cat_works article:hover .thumb .hover_2::after {
		bottom: 2vw;
	}
	
	/** nav-links **/
	.cat_works .nav-links .page-numbers {
		font-size: 4.2vw;
		line-height: 8vw;
		margin: 0 1vw;
		height: 8vw;
		width: 8vw;
	}
	
	.cat_works .nav-links .page-numbers.current::after {
		bottom: 3px;
		height: 2px;
		width: 3vw;
	}
	
	.cat_works .nav-links .page-numbers.prev,
	.cat_works .nav-links .page-numbers.next {
		font-size: 3.8vw;
		padding: 0 3vw;
	}
}


/** -----------------------
* news
----------------------- **/
.cat_news {
	padding: 74px 50px 100px;
}

.cat_news .inner {
	margin-left: 100px;
	margin-top: 50px;
	width: 700px;
}

.cat_news h1 {
    background-color: #3D804E;
    color: #F8F5ED;
    display: table;
    font-size: 40px;
    letter-spacing: 2px;
    line-height: 1.0;
    margin-bottom: 50px;
    padding: 8px 25px 13px;
    text-align: center;
    word-break: keep-all;
    min-width: 260px;
}

.cat_news dl {
	border-bottom: solid 1px #1F3E27;
	color: #1F3E27;
	cursor: pointer;
	margin-bottom: 20px;
	position: relative;
}
.cat_news dl dt {
	width: 110px;
}
.cat_news dl dd {
	padding-bottom: 4px;
	padding-right: 40px;
	position: relative;
	transition: ease .3s;
	width: calc(100% - 110px);
}
.cat_news dl dd::after {
	background: url("../img/common/icon-arrow-2.svg") no-repeat center/ 12px;
	background-color: #1F3E27;
	border: solid 1px #1F3E27;
	box-sizing: border-box;
	content: '';
	display: block;
	position: absolute;
	right: 0;
	bottom: -1px;
	transition: ease .3s;
	height: 30px;
	width: 30px;
}
.cat_news dl:hover dd::after {
	background: url("../img/common/icon-arrow-2-green.svg") no-repeat center/ 12px;
	background-color: #FFFDF9;
}
.cat_news dl:hover dd {
	font-weight: 700;
}
.cat_news dl a {
	position: absolute;
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
}

@media screen and (max-width: 1875px) {
	.cat_news {
		padding: 4vw 2.7vw 8vw;
	}

	/** inner **/
	.cat_news .inner {
		margin-left: 5.3vw;
		margin-top: 2.7vw;
		width: 37.4vw;
	}

	.cat_works h1 {
        font-size: 2.1vw;
        letter-spacing: .11vw;
		margin-bottom: 3vw;
        padding: .4vw 1.3vw .7vw;
        min-width: 14vw;
	}

	.cat_news dl {
		margin-bottom: 1.05vw;
	}
	.cat_news dl dt {
		width: 5.9vw;
	}
	.cat_news dl dd {
		padding-bottom: .2vw;
		padding-right: 2.1vw;
		width: calc(100% - 5.9vw);
	}
	.cat_news dl dd::after {
		background-size: .64vw;
		height: 1.6vw;
		width: 1.6vw;
	}
	.cat_news dl:hover dd::after {
		background-size: .64vw;
	}
}

@media screen and (max-width: 780px) {
	.cat_news {
        padding: 12vw 0 16vw;
	}

	/** inner **/
	.cat_news .inner {
        margin-left: 0;
        margin-top: 6vw;
        width: 100%;
	}

	.cat_news h1 {
        font-size: 5.2vw;
        letter-spacing: .3vw;
		margin-bottom: 8vw;
        padding: 2vw 4vw;
        min-width: 36vw;
	}

	.cat_news dl {
		margin-bottom: 4vw;
	}
	.cat_news dl dt {
		margin-bottom: 1vw;
		width: 100%;
	}
	.cat_news dl dd {
        padding-bottom: 2vw;
        padding-right: 8vw;
        width: 100%;
	}
	.cat_news dl dd::after {
        background-size: 2.4vw;
        height: 5vw;
        width: 5vw;
	}
	.cat_news dl:hover dd::after {
		background-size: .64vw;
	}
}