/* ========== Minimal Reset for WordPress ========== */

/* box modelを安定させる */
*, *::before, *::after {
  box-sizing: border-box;
}

/* iOSの文字拡大防止 */
html {
  -webkit-text-size-adjust: 100%;
}

/* bodyの余白リセット */
body {
line-height: 1.6;
  margin: 0;
}

/* 画像のはみ出し防止 */
img {
  max-width: 100%;
  height: auto;
}

/* リストの余計な左余白だけ調整（完全には消さない） */
ul, ol {
  padding-left: 1em;
	list-style: none;

}




table {
  border-collapse: collapse;
}
