@charset "UTF-8";

/* ウェブフォントの読み込み */
@import url('https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic&display=swap');

/* 全体に適用する */

* {
  font-weight: normal;
}

body {
  font-family: "Zen Maru Gothic", serif;
}

/*スマホ用ここから
================================================= */

@media screen and (max-width:736px){

	img {
		max-width: 95%;
		height: auto;
		width: auto;
	}

} /* ←削除禁止！ */


/* タブレット用ここから
================================================= */

@media screen and (max-width:1024px){

	/* ここにタブレット用のスタイルシート */

} /* ←削除禁止 */


/*パソコン用ここから
================================================= */

@media screen and (min-width:1025px){

	/* ここにパソコン用のスタイルシート */

} /* ←削除禁止 */

