/* Service */
.serviceBoxes {
	margin: 32px 0 0;
	padding: 0;
}
.serviceBox {
	margin: 32px 0 0;
}
.serviceBox:after {
	content: "";
	clear: both;
	display: block;
}
.serviceBox:first-of-type {
	margin: 0;
}
.serviceBox h4 {
	width: 100%;
	font-size: 2.4rem;
	text-align: center;
}

.serviceList {
	width: calc(336px * 3);
	list-style: none;
	margin: 0 auto;
	padding: 0 0 32px;
	display: flex;
}
.serviceList:after {
	content: "";
	clear: both;
	display: block;
}
.serviceList li {
	width: 336px;
}
.serviceList li .innerBox {
	width: 288px;
	height: 100%;
	box-shadow: 0px 1px 3px rgba(0, 0, 0, .3);
	margin: 0 auto;
}
.serviceList li img {
	width: 288px;
	height: 200px;
	display: block;
}
.serviceList li strong {
	width: 100%;
	height: 56px;
	color: #ff6f00;
	font-size: 1.8rem;
	line-height: 100%;
	text-align: center;
	padding: 24px 0;
	display: block;
}
.serviceList li p {
	width: 100%;
	font-size: 1.4rem;
	line-height: 168%;
	padding: 0 16px 24px;
}

/* Contact Button */
section:nth-of-type(2) {
	background-color: #f4f4f4;
	padding: 64px 0;
}
.cmdContact {
	width: 480px;
	height: 48px;
	color: #ff6f00;
	font-size: 1.4rem;
	font-weight: bolder;
	line-height: 100%;
	text-decoration: none;
	text-align: center;
	border: solid 2px #ff6f00;
	border-radius: 24px;
	margin: 0 auto;
	padding: 16px 0;
	display: block;
	transition: .4s;
}
.cmdContact:hover {
	color: #fff;
	background-color: #ff6f00;
}

@media screen and (max-width:414px) {
	.serviceBox {
		margin: 40px 0 0;
	}
	.serviceBox h4 {
		font-size: 2.2rem;
		text-align: left;
		line-height: 160%;
	}
	.serviceBox h4 span {
		display: block;
	}
	
	.serviceList {
		width: 100%;
		padding: 0 0 24px;
		display: block;
	}
	.serviceList li {
		width: 100%;
		margin-bottom: 32px;
	}
	.serviceList li:last-of-type {
		margin: 0;
	}
	.serviceList li .innerBox {
		width: 100%;
		box-shadow: 0px 1px 4px rgba(0, 0, 0, .3);
	}
	.serviceList li img {
		width: 100%;
		height: auto;
	}
	
	/* Contact Button */
	section:nth-of-type(2) {
		padding: 48px 0;
	}
	.cmdContact {
		width: 100%;
		transition: none;
	}
	.cmdContact:hover {
		color: #ff6f00;
		background: none;
	}
}