@charset "UTF-8";
/* style.css */


/* ===============================================
全デバイス共通のCSS
===============================================*/

body{}




#service h2{
	font-weight:800;
	letter-spacing:1px;
	text-align:center;
}


#service p.txt{
	font-size: 14px;
}

#service p.ttl{
	font-size:24px;
	font-weight:700;
	text-align:center;
	margin-bottom:10px;
}

#service p.txt{
	text-align:left;
}



/* ===============================================
PC向け 画面の横幅が960px以上
===============================================*/

@media screen and (min-width: 960px){
	
#mainImage{
	width:100%;
	margin-bottom:60px;
	text-align:center;
}

#mainImage img{
	max-width:1260px;
	height:auto;
	width:100%;
}

#mainImage .pc{
	display:block;
}

#mainImage .sp{
	display:none;
}

#service{
	max-width:960px;
	margin:0 auto 120px auto;
	}
	
#service h2{
	font-size:2em;
	margin-bottom:30px;
}

#service section {
	width:280px;
	float:left;
	margin-right:60px;
	height:auto;
	text-align:center;
}
	
#service section h3{
	width:280px;
	margin-bottom:30px;
}

#service section.last{
	margin-right:0;
}

	
}


/* ===============================================
スマホ・タブレット向け 画面の横幅が~959px
=============================================== */

@media screen and (max-width: 959px){
	
#mainImage{
	width:100%;
	margin-bottom:60px;
	text-align:center;
}
	
#mainImage img{
	max-width:480px;
	height:auto;
	width:100%;
}

#mainImage .pc{
	display:none;
}

#mainImage .sp{
	display:block;
}

#service {
	padding: 0 30px;
}

#service h2{
	font-size:1.6em;
	margin-bottom:0px;
}

#service section {
	margin-bottom: 40px;
	text-align:center;
}
#service section.last {
	margin-bottom: 0;
}

}



