@charset "UTF-8";
/* CSS Document */
*, *:before, *:after {
  box-sizing: border-box;
}
* {
  border: 0;
  margin: 0;
  outline: 0;
  padding: 0;
  font: inherit;
  font-family: inherit;
  font-size: 100%;
  font-style: inherit;
  font-weight: inherit;
  text-decoration: none;
  vertical-align: baseline;
}
/* ============================================ 
font設定
/* ============================================ */
html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
}
body {
  font-family: "Noto Serif JP", YuMincho, "Yu Mincho", 游明朝体, 游明朝, serif;
  font-size: 1.4rem; /* 14px*/
  line-height: 1.75;
  letter-spacing: .08em;
}
h1 {
  font-size: 3.2rem;
  font-weight: 400;
  letter-spacing: .1em;
}
h2 {
  font-size: 2.8rem;
  font-weight: 400;
  letter-spacing: .1em;
}
h3 {
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: .1em;
}
h4 {
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: .1em;
  margin-bottom: 5px;
}
@media (max-width: 959px) { /* 600px以下*/
  h1 {
    font-size: 2.4rem;
  }
  h2 {
    font-size: 2.2rem;
    line-height: 1.455;
    margin-bottom: 5px;
  }
  h3 {
    font-size: 1.6rem;
  }
  h4 {
    font-size: 1.6rem;
    padding-top: 5px;
    margin-bottom: 2px;
  }

}