@charset "utf-8";


/****** ●●●●●●●● setting start ******/



/****** スクリーンサイズ setting start ******/

/* スマホ（小）= スクリーンサイズが320pxまでの場合に適用 */
h1 {
	color: #333333;
	margin: 0;
	font-size: 22px;
}
h2 {
	color: #333333;
	margin: 0;
	font-size: 20px;
}
h3 {
	color: #333333;
	margin: 0;
	font-size: 18px;
}
p {
	color: #333333;
	font-size: 16px;
    line-height: 1.8em;
	margin: 0;
}

/* スマホ（小）= スクリーンサイズが320px以上の場合に適用 */
@media screen and (min-width: 320px) {
	h1 {
		font-size: 22px;
	}
	h2 {
		font-size: 20px;
	}
	h3 {
		font-size: 18px;
	}
	p {
		font-size: 16px;
	}
}

/* スマホ = スクリーンサイズが480px以上の場合に適用 */
@media screen and (min-width: 480px) {
	h1 {
		font-size: 26px;
	}
	h2 {
		font-size: 24px;
	}
	h3 {
		font-size: 20px;
	}
	p {
		font-size: 16px;
	}
} 

/* タブレット = スクリーンサイズが768px以上の場合に適用 */
@media screen and (min-width: 768px) {
	h1 {
		font-size: 28px;
	}
	h2 {
		font-size: 26px;
	}
	h3 {
		font-size: 22px;
	}
	p {
		font-size: 18px;
	}
	a[href^="tel:"] {
		pointer-events:none;
	}
} 

/* PC = スクリーンサイズが1200px以上の場合に適用 */
@media screen and (min-width: 1200px) {
	h1 {
		font-size: 30px;
	}
	h2 {
		font-size: 26px;
	}
	h3 {
		font-size: 24px;
	}
	p {
		font-size: 18px;
	}
} 
/****** スクリーンサイズ setting end   ******/


/****** 改行 setting start ******/


/*///// pcでは表示する /////*/
@media screen and (max-width: 767.9px){
	.blank-min768{
		display: none;
	}
}
/*///// スマホ・タブレットでは表示する  /////*/
@media screen and (min-width: 768px){
	.blank-max767{
		display: none;
	}
}

/*///// スマホでは表示する /////*/
@media screen and (min-width: 480px){
	.blank-max479{
		display: none;
	}
}


/*///// スマホでは表示しない /////*/
@media screen and (max-width: 479.9px){
	.blank-min480{
		display: none;
	}
}


/*///// スマホ(小)では表示する /////*/
@media screen and (min-width: 380px){
	.blank-max379{
		display: none;
	}
}


/*///// スマホ(小)では表示しない /////*/
@media screen and (max-width: 379.9px){
	.blank-min380{
		display: none;
	}
}

/****** 改行 setting end   ******/

#service-01{
	margin-top: -40px;
	padding-top: 40px;
}
#personal-information{
	margin-top: -60px;
	padding-top: 60px;
}

/****** ●●●●●●●● setting end   ******/

