@charset "utf-8";
/* ===========================================================
 CSS information
 file name : top.css
 style info : single page style
============================================================== */

header { border: 0; }

@media print, screen and (min-width: 751px) {	
	/*----------------------------------------------------
		copy
	----------------------------------------------------*/
	#copy {
		width: 100%;
		height: 260px;
		background: #00b6d5;
		text-align: center;
		color: #fff;
		padding: 170px 0 0 0;
	}
	#copy h2 {
		 font-size: 2.6rem;
		 font-weight: normal;
		 letter-spacing: 0.1em;
		 margin: 0 0 20px 0;
	}
	#copy p { margin: 0; }
	
	/*----------------------------------------------------
		service
	----------------------------------------------------*/
	#service {
		width: 1000px;
		height: 140px;
		background: #fff;
		border-left: 1px solid #aaa;
		border-right: 1px solid #aaa;
		margin: 0 auto;
		display: flex;
	}
	#service a {
		width: 25%;
		height: 100px;
		border-right: 1px solid #aaa;
		color: #666;
		padding: 40px 0 0 0;
		text-align: center;
	}
	#service a:hover { color: #aaa; }
}

@media screen and (max-width: 750px) {
	/*----------------------------------------------------
		copy
	----------------------------------------------------*/
	#copy {
		width: 100%;
		background: #00b6d5;
		text-align: center;
		color: #fff;
		padding: 32vw 2.4vw 16vw 2.4vw;
	}
	#copy h2 {
		 font-size: 5.6vw;
		 font-weight: normal;
		 letter-spacing: 0.1em;
		 margin: 0 0 2.4vw 0;
	}
	#copy p { margin: 0; }
	
	/*----------------------------------------------------
		service
	----------------------------------------------------*/
	#service {
		width: 100%;
		background: #fff;
		display: flex;
	}
	#service a {
		width: 25%;
		height: 24vw;
		border-right: 0.24vw solid #aaa;
		color: #666;
		padding: 4vw 0 0 0;
		text-align: center;
	}
	#service a:last-of-type { border: 0; }
}


#service a::before {
	font-family: "Font Awesome 5 Free";
	font-size: 2rem;
	margin-bottom: 0.4em;
	font-weight: 400;
	display: block;
}
#service a:nth-of-type(1)::before { content: "\f007"; }
#service a:nth-of-type(2)::before { content: "\f1ad"; }
#service a:nth-of-type(3)::before { content: "\f328"; }
#service a:nth-of-type(4)::before { content: "\f0eb"; }
#service a:last-of-type { border-right: none; }



