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

/*WordPress対策・全ページ余白なし*/
* {
 margin: 0;
 padding: 0;
}
 
body {
	margin: 0;
	padding: 0;
	color: #333333;
	background: #FFFAFC;
	font-family: '小塚ゴシック Pro','Kozuka Gothic Pro',sans-serif;
}
 
img {
	vertical-align: bottom;
	max-width: 100%;
}
 
h1,h2,h3,h4 {
	color: #C52852;
	font-weight: 500;
	font-family: '小塚ゴシック Pro','Kozuka Gothic Pro',sans-serif;
}

p {
	color: #333333;
	font-weight: 400;
	font-family: '小塚ゴシック Pro','Kozuka Gothic Pro',sans-serif;
}

font,span {
	font-family: '小塚ゴシック Pro','Kozuka Gothic Pro',sans-serif;
}
 
a {
	text-decoration: none;
	font-family: '小塚ゴシック Pro','Kozuka Gothic Pro',sans-serif;
}

/*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;
		line-height: 26px;
		color: #333333;
		text-align: left;
	}
	
	/*電話番号をクリックしても自動発信しない*/
	a[href*="tel:"] {
		pointer-events: none;
		cursor: default;
		text-decoration: none;
	}
	
	main {
		position: relative;
		width: 100%;
		height: auto;
		padding: 100px 0 0 0;
		overflow: hidden;
	}
 
}

/*SMP*/
@media only screen and (max-width: 1024px) {
	.pc { 
		display: none !important; 
	}
	.smp { 
		display: block !important; 
	}
	
	p {
		font-size: 16px;
		font-weight: normal;
		color: #333333;
		text-align: left;
		line-height: 22px;
	}
	
	main {
		position: relative;
		width: 100%;
		height: auto;
		padding: 50px 0 0 0;
		overflow: hidden;
	}
	 
	
}
