@charset "UTF-8";

.tab-group {
	margin-left: 10px;
	margin-right: 10px;
}
.tab-group .tab {
	display: flex;
	justify-content: center;
	align-items: center;
}
.tab-group .tab img {
	max-width: 40px;
	max-height: 40px;
}
.panel-group {
	margin-left: 10px;
	margin-right: 10px;
}
.service_container {
	display: flex;
	flex-wrap: wrap;
	margin-top: 1.5em;
}
.service_lead {
	margin-top: 2em;
	font-size: 1.4rem;
}
.service_container-item {
	border: 1px solid #dadada;
	line-height: 1;
	margin-top: 2%;
	margin-left: auto;
	margin-right: auto;
}

.service_container-item img {
	max-width: 100%;
}
.service_container-item:hover {
	opacity: 0.7;
}
.l_btn {
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1.3;
	text-decoration: none;
	color: #333333;
	border-radius: 5px;
	width: 400px;
	height: 80px;
	border: 1px solid #cccccc;
	position: relative;
	background-color: #f8f8f8;
	margin: 50px auto 0;
}

.l_btn::before, .l_btn::after {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	right:18px;
	transform-origin: 100% 50%;
	height: 1px;
	width: 12px;
	background-color: #999;
	border-radius: 4px;
	will-change: transform;
	transition: .3s;
}
.l_btn::before{
	transform: translateY(-50%) rotate(45deg);
}
.l_btn::after{
	transform: translateY(-50%) rotate(-45deg);
}
.l_btn:hover {
	opacity: 0.7;
}
	

@media screen and (max-width: 480px) {
	.contents_ttl {
		margin-top: 1.6em;
		font-size: 2.4rem;
	}
	.l_btn {
		width: 98%;
		font-size: 1.5rem;
	}
	.l_btn::before, .l_btn::after {
		right:12px;
	}
}

@media screen and (min-width: 768px) {
	.service_container {
		margin-top: 1.5em;
	}
	.service_container-item {
		flex-basis: 49%;
		max-width: 49%;
		margin-left: 0;
		margin-right: 0;
	}
	.service_container-item:nth-child(odd) {
		margin-right:2%;
	}

}

@media screen and (min-width:1024px) {
	.tab-group {
		margin-left: auto;
		margin-right: auto;
	}
	.tab-group .tab img {
		max-width: 75px;
		max-height: 75px;
	}
	.panel-group {
		margin-left: auto;
		margin-right: auto;
	}
	.service_container {
		margin-top: 0;
	}
	.service_container-item {
		flex-basis: 480px;
		max-width: 480px;
		margin-top: 20px;
		padding-top: 10px;
		padding-bottom: 10px;
	}
	.service_container-item:nth-child(odd) {
		margin-right:20px;
	}
	.service_lead {
		margin-top: 40px;
		font-size: 1.6rem;
	}
}