
@charset "utf-8";

/* PC・スマホ兼用のCSSを書く場所 */

.block {
	text-align: center;
	width: 1000px;
	margin: 0 auto;
	padding: 10px 20px;
	box-sizing: border-box;
  }
  

/* スマホ専用のCSSを書く場所 */

  @media (max-width: 768px) {
  
	.block {
	  width: 100%;
	}
  
  }


body {
	background-color: #ccbbaa;
	//font-family: "Nico Moji", 'Futura','Arial',YuGothic,'Yu Gothic',sans-serif;
	font-size: 16px;
	color: #443322;
	line-height: 1.5;

	font-family: "DotGothic16", sans-serif;
	font-weight: 500;
	font-style: normal;
}





