@charset "utf-8";
/* CSS Document */

/*WordPress対策・全ページ余白なし*/
* {
 margin: 0;
 padding: 0;
}
 
body {
 margin: 0;
 padding: 0;
 color: #161616;
 background: #fff;
 font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
}
 
img {
 vertical-align: bottom;
 max-width: 100%;
}
 
p,h1,h2,h3,h4 {
	color: #161616;
	font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
}
 
a {
 text-decoration: none;
}

/*PC*/
@media only screen and (min-width: 1025px) {
	.pc { 
		display: block !important; 
	}
	
	.smp { 
		display: none !important; 
	}
	
	p {
		font-size: 16px;
		font-weight: normal;
		letter-spacing: 1px;
		color: #161616;
		text-align: left;
	}
	
	/*電話番号をクリックしても自動発信しない*/
	a[href*="tel:"] {
		pointer-events: none;
		cursor: default;
		text-decoration: none;
	}
 
}

/*SMP*/
@media only screen and (max-width: 1024px) {
	.pc { 
		display: none !important; 
	}
	.smp { 
		display: block !important; 
	}
	
	p {
		font-size: 14px;
		font-weight: normal;
		letter-spacing: 1px;
		color: #161616;
		text-align: left;
		line-height: 22px;
	}
	 
	
}