@charset "utf-8";
/* CSS Document */

/* モバイルレイアウト : 480 px およびそれ以下 */


.s1 {
	font-family: serif;
	font-weight: normal;
	font-size: 18pt;
}
.s2 {
	font-family: serif;
	font-weight: normal;
	font-size: 12pt;
}
p {
	font-family: serif;
	font-weight: normal;
	font-size: 11pt;
}

/* タブレットレイアウト : 481 px ～ 768 px。モバイルレイアウトからスタイルを継承。 */
@media only screen and (min-width: 481px) {
	
/*-- main layout --*/

.s1 {
	font-family: serif;
	font-weight: normal;
	font-size: 18pt;
}
.s2 {
	font-family: serif;
	font-weight: normal;
	font-size: 12pt;
}
p {
	font-family: serif;
	font-weight: normal;
	font-size: 11pt;
}
}
/* デスクトップレイアウト : 769 px ～最大 1232 px。モバイルレイアウトとタブレットレイアウトからスタイルを継承。 */


@media only screen and (min-width: 769px) {
	
/*-- main layout --*/

.s1 {
	font-family: serif;
	font-weight: normal;
	font-size: 18pt;
}
.s2 {
	font-family: serif;
	font-weight: normal;
	font-size: 12pt;
}
p {
	font-family: serif;
	font-weight: normal;
	font-size: 11pt;
}
}