/* ---------------------------------------------
*   Universal selector
--------------------------------------------- */
*,*::before,*::after {
  box-sizing: border-box;
}

/* ---------------------------------------------
*   html, body
--------------------------------------------- */
html,body {
  color: #fff;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 16px;
  font-weight: bold;

  -webkit-text-size-adjust: 100%;
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
  html,body {
    font-size: 1.5625vw;
  }
}

@media screen and (max-width: 768px) {
  html,body {
    font-size: 1rem;
  }
}

body {
  line-height: 1.5;
}

@media screen and (max-width: 768px) {
  body {
    min-width: 320px;
    line-height: 1.5;
  }
}

/* ---------------------------------------------
*   <a> tag
--------------------------------------------- */
a {
  outline: none;
  color: inherit !important;
  text-decoration: none;
}

a:hover {
  text-decoration: none !important;
}

/* ---------------------------------------------
*   <img> tag
--------------------------------------------- */
img {
  max-width: 100%;
  vertical-align: bottom;
}

/* ---------------------------------------------
*   <hr> tag as anchor target
--------------------------------------------- */
hr[id^=anchor-] {
  display: block;
  width: auto;
  height: 0;
  margin: -80px 0 0 0;
  padding: 80px 0 0 0;
  border: 0;
  background: 0;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  hr[id^=anchor-] {
    margin-top: -60px;
    padding-top: 60px;
  }
}