@charset "UTF-8";

/* -- 共通 -- */
* {
	margin: 0;
	padding: 0;
}

/* 点滅 */
.blink {
	animation: blinking 1s ease-in-out infinite alternate;
	color:#ff0000;
	font-weight:bold;
}
 
@keyframes blinking {
	0% {opacity: 0;}
	100% {opacity: 1;}
}


/* -- PC用 -- */
@media screen and (min-width: 481px) {

	/* -- 背景 -- */
	body {
		background-image: url(sayagata-400px.png);
		line-height: 1.4;
		font-family: Arial, sans-serif;
		font-size: 14px;
	}

	h1{
		font-size: 25px;
		font-weight: bold;
	}

	h2{
		font-size: 20px;
		font-weight: bold;
	}

	.menu_abc{
		color:#04B404;
		font-size:24px;
	}

	.menu_memo{
		color:#04B404;
		font-size:15px;
	}

	.menu_name{
		color:#B40404;
		font-size:20px;
		width: 400px;
		margin: 0 auto;
		text-align: left;
	}

	.message {
		font-size: 22px;
		font-weight:bold;
	}

	.tel_no {
		font-size: 23px;
		font-weight:bold;
	}

}



/* -- スマホ用 -- */
@media screen and (max-width: 480px) {

	/* -- 背景 -- */
	body {
		background-image: url(sayagata-400px.png);
		line-height: 1.4;
		font-family: Arial, sans-serif;
		font-size: 4vw;
	}

	h1{
		font-size: 6vw;
		font-weight: bold;
	}

	h2{
		font-size: 5.2vw;
		font-weight: bold;
	}

	.menu_abc{
		color:#04B404;
		font-size: 5.5vw;
	}
	.menu_memo{
		color:#04B404;
		font-size: 3.3vw;
	}

	.menu_name{
		color:#B40404;
		font-size: 4.5vw;
		margin: 0 auto;
		text-align: left;
	}

	.message {
		font-size: 5vw;
		font-weight:bold;
	}

	.tel_no {
		font-size: 5.5vw;
		font-weight:bold;
	}

}



