﻿@CHARSET "UTF-8";
/***** デフォルトはスマートフォン *****/
.flex{
		background: red;
		padding: 1rem;
}
.bottun{
	padding: 1rem 1rem;
	margin: 0 auto;
	background: lightcyan;
	text-align: center;
	display: block;
}
.tel_img{
	width: 2%;
}
.font0{
	font-family: "メイリオ";
}

.font1{
	font-family: "ＭＳ ゴシック";
}
.font2{
	font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
}

.font3{
	font-family: "ＭＳ 明朝";
}
.bigfont{
	font-size: 2rem;
}

.smallfont{
	font-size: 1rem;
}
/**==================================================**/
/**=          画面サイズ768px以上の指定              **/
/**==================================================**/
@media screen and (min-width:768px){
	.flex{
		display: flex;
		justify-content: space-around;
	}
}
/**==================================================**/
/**=          画面サイズ1024px以上の指定              **/
/**==================================================**/
@media screen and (min-width:1280px){

}