/*------------------------------
  Typography / General
------------------------------*/
html {
  font-size: 62.5%;
  line-height: 1.6;
  background-color: #F4F9F4;
}

body {
  font-family: "Hiragino Kaku Gothic ProN", "游ゴシック", "Yu Gothic", "MS Gothic", sans-serif;
  margin: 0;
  padding: 90px 0 0;
  color: #4E4545;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ===== タブレット以下 ===== */
@media screen and (max-width: 1024px) {
  body {
    padding: 50px 0 0;
  }
}

/* ===== スマートフォン以下 ===== */
@media screen and (max-width: 767px){
  body{
    padding: 50px 0;
  }
}

/*------------------------------
  Headings
------------------------------*/
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: bold;
  line-height: 1.6;
  letter-spacing: 0.1em;
  color: inherit;
}

h1 {
  font-size: 2rem;
}

h2 {
  font-size: 1.75rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

h5 {
  font-size: 1rem;
}

h6 {
  font-size: 0.875rem;
}

/*------------------------------
  Paragraphs & Text
------------------------------*/
p {
  font-size: 1.5rem;
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ===== スマートフォン以下 ===== */
@media screen and (max-width: 767px) {
  p{
    font-size: 1.4rem;
  }
}

/*------------------------------
  Images
------------------------------*/
img {
  max-width: 100%;
  height: auto;
  display: block;
  vertical-align: middle;
}

/*------------------------------
  Lists
------------------------------*/
ul, ol {
  padding: 0;
  margin: 0;
}

li {
  list-style: none;
}