/* リセット */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  background-color: #F5F0EA;
}

body {
  font-family: "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* メインコンテナ：画像を縦に並べる */
main {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 793px; /* 元画像の解像度に合わせる（画質劣化防止） */
  margin: 0 auto;
  background-color: #FFFFFF;
}

/* 画像はすべて全幅表示・隙間なし */
main img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: bottom;
  /* 画質を最適化 */
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}
