@charset "UTF-8";
/* CSS Document */
*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}
html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
  box-sizing: border-box;
　-webkit-box-sizing: border-box;
}
main {
  font-family: "Noto Sans JP", sans-serif, "Zen Kaku Gothic New", sans-serif,"Jost", sans-serif;;
  font-weight: 300;
  font-style: normal;
  font-size: 1.6rem;
  line-height: 1.5;
  text-align: center;
	
/* ページ全体の文字色を変更する */
  color: #333333; 
/* ページ全体の背景色を変更する */
  background-color: #ffffff;
}


/* 使用フォントMEMO

- 本文用のフォント -
.noto-sans-jp-<uniquifier> {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}

- 「⚪︎つのポイント」数字部分のフォント -
.zen-kaku-gothic-new-regular {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
}

- 値段用のフォント -
.jost-<uniquifier> {
  font-family: "Jost", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}　*/