@charset "utf-8";



/*------------------------------------------------------------
	Feature
------------------------------------------------------------*/


.feature-list {
	width: 100vw;
	position: relative;
	left: 50%;
	transform: translate(-50%,0);
	display: grid;
	grid-template-columns: repeat(2,1fr);
	gap: 1px;
}
.wp-block-post-content .feature-list {
	width: 100%;
}
.feature-list li {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: #fff;
	min-height: 404px;
	height: auto;
	padding: 30px;
	background: #000;
}
.feature-list li .bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.4;
}
.feature-list li h3 {
	position: relative;
	z-index: 1;
	font-size: 26px;
	line-height: 36px;
	font-weight: 700;
}
.feature-list li h3 span {
	display: block;
	margin-bottom: 10px;
	font-family: 'Roboto', sans-serif;
	font-weight: 700;
	font-size: 15px;	
	line-height: 18px;
}
.feature-list li a {
	position: relative;
	z-index: 1;
	margin-top: 20px;
	color: #fff;
	width: 200px;
	height: 50px;
	border: 1px solid currentcolor;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	font-size: 16px;
	line-height: 1;
	position: relative;
	transition: 0.5s;
	text-decoration: none;
}
.feature-list li a:hover {
	background: rgba(255,255,255,0.3);
	box-shadow: 0 0 10px 0 rgba(255,255,255,1);
}

.feature-list li a::before,
.feature-list li a::after {
	content: '';
	width: 14px;
	height: 1px;
	position: absolute;
	right: 14px;
	top: 24px;
	display: block;
	background: #fff;
}
.feature-list li a::after {
	transform: rotate(90deg);
}

.feature-wrap .thumb {
	margin-bottom: 25px;
	width: 100%;
}
.feature-wrap .thumb img {
	width: 100%;
}
.feature-wrap .txt h3 {
	font-size: 24px;
	line-height: 36px;
	font-weight: 700;
	margin-bottom: 10px;
}
.feature-wrap .txt h3 span {
	display: block;
	margin-bottom: 15px;
	font-family: 'Roboto', sans-serif;
	font-weight: 700;
	font-size: 15px;	
	line-height: 18px;
}
.feature-wrap .txt p {
	font-size: 15px;
	line-height: 2;
}
.feature-wrap .txt p + p {
	margin-top: 1em;
}

@media screen and (max-width: 800px) {
	.feature-list {
		grid-template-columns: 1fr;
	}
	.feature-list li {
		padding: 25px;
		height: auto;
		min-height: 260px;
	}
	.feature-list li h3 {
		font-size: 20px;
		line-height: 30px;
	}
	.feature-list li a {
		height: 45px;
		font-size: 15px;
	}
	.feature-list li a::before,
	.feature-list li a::after {
		top: 21px;
	}
	.vbox-container .vbox-inline {
		padding: 20px;
	}
	.feature-wrap .txt h3 {
		font-size: 18px;
		line-height: 2;
	}
	.feature-wrap .txt h3 span {
		font-size: 13px;
		line-height: 15px;
		margin-bottom: 0;
	}
	.feature-wrap .txt p {
		font-size: 14px;
		line-height: 26px;
	}
}