/*iOS（iPhone・iPad）はデバイスの縦横でフォントサイズが変わる*/
/*自動調整を無効にしたい*/
body { -webkit-text-size-adjust: none; }

/*タップターゲットの長押しポップアップを阻止*/
a { -webkit-touch-callout: none; }


/*iOS（iPhone・iPad）のフォームボタンなどのデザイン変更 */
input[type="button"],input[type="submit"] { -webkit-appearance: none; }

/*スマホ　Safari専用のCSSハック*/
@media (max-width: 736px) {
	@media screen and (-webkit-min-device-pixel-ratio:0) {
	/*おかしいところをピンポイントで設定*/
		.banner .tel_cont .tel {
		    font-size: 40px;
			text-decoration: none !important;
		}
		.banner .tel_cont .tel a{
			text-decoration: none !important;
		}

		.banner_list .tel_cont .tel {
		    font-size: 40px;
			text-decoration: none !important;
		}
		.banner_list .tel_cont .tel a{
			text-decoration: none !important;
		}
	}
}