/* カスタマイズ用CSS */

/*
全ページ共通
*/

* {
	margin: 0;
	padding: 0;
}
 
body {
	margin: 0;
	padding: 0;
	color: #484848;
	background: #fff;
	font-family: "Zen Old Mincho", serif;
}
 
img {
	vertical-align: bottom;
	max-width: 100%;
}
 
h1,h2,h3,h4,h5 {
	
}

p {
	color: #484848;
	font-family: "Zen Old Mincho", serif;
}

font,span {
	
}
 
a {
	text-decoration: none;
	font-family: "Zen Old Mincho", serif;
}

/*PC*/
@media only screen and (min-width: 768px) {
	.pc { 
		display: block;
	}
	
	.smp { 
		display: none !important; 
	}
	
	p {
		font-size: 16px;
		font-weight: 500;
		letter-spacing: 1px;
		line-height: 26px;
		text-align: left;
	}
	
	/*電話番号をクリックしても自動発信しない*/
	a[href*="tel:"] {
		pointer-events: none;
		cursor: default;
		text-decoration: none;
	}
	
	main {
		position: relative;
		width: 100%;
		height: auto;
		padding: 120px 0 0 0;
		overflow: hidden;
	}
 
}

/*SMP*/
@media only screen and (max-width: 767px) {
	.pc { 
		display: none !important; 
	}
	
	.smp { 
		display: block;
	}
	
	p {
		font-size: 15px;
		font-weight: 500;
		letter-spacing: 1px;
		line-height: 22px;
		text-align: left;
	}
	
	main {
		position: relative;
		width: 100%;
		height: auto;
		padding: 0 0 0 0;
		overflow: hidden;
	} 
	
}

/*ヘッダー*/
/*PC*/
@media only screen and (min-width: 768px) {
	/*ロゴ*/
	.ec-headerRole {
		position: absolute;
		top: 0;
		left: 0;
		width: 240px;
		height: auto;
	}
	
	.ec-headerTitle .ec-headerTitle__title a {
		margin-bottom: 0!important;
	}
	
	.ec-headerNaviRole {
		width: 900px!important;
		margin: 0 0 0 auto!important;
	}
	
	/*グローバルメニュー*/
	.ec-categoryNaviRole {
		display: none!important;
	}
	
}

/*SMP*/
@media only screen and (max-width: 767px) {
	
}