@charset "utf-8";

/*---------------------------------------------------------
	index_service
---------------------------------------------------------*/

#index_service {
	padding: 100px 0 115px 0;
}

.service_area {
	max-width: 1040px;
	padding: 0 20px;
	margin: 0 auto;
}

.service_txt {
	margin-bottom: 50px;
}

.service_img img {
	display: block;
	width: 100%;
	height: auto;
}

/* ボタン */

#index_service .btn-wrapper {
	display: flex;
	justify-content: center;
	gap: 125px;
	margin: 45px 0;
}

#index_service .btn-link {
	min-width: 315px;
	padding: 10px 10px;
	text-align: center;
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 70px;
	background: #4B9A61;
	color: #fff;
	text-decoration: none;
	font-weight: bold;
	font-size: 1.8rem;
	border-radius: 50px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, .15);
	transition: transform .2s, box-shadow .2s;
}


#index_service .btn-link:hover {
	opacity: .85;
	transition: all .3s ease;

}


@media screen and (max-width:767px) {

	#index_service {
		padding: 50px 0;
	}

	#index_service .service_txt {
		margin-bottom: 25px;
	}

	#index_service .btn-wrapper {
		display: block;
		margin: 20px 0;
		text-align: center;
	}

	#index_service .btn-link {
		margin-top: 15px;
		font-size: 1.34rem;
		height: 50px;

	}


}