@charset "utf-8";

/* CSS Document */
html {
  font-size : 62.5%;
  /* 16px * 62.5% = 10px */
  width     : 100%;
  box-sizing: border-box;
}

body {
  font-family: YuGothic, "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-family: "dnp-shuei-gothic-gin-std",
    "neue-haas-grotesk-display",
    Arial,
    "Hiragino Kaku Gothic ProN",
    "Hiragino Sans",
    Meiryo,
    sans-serif;
  font-weight             : 300;
  font-style              : normal;
  font-size               : 1.5em;
  text-align              : left;
  line-height             : 1.75;
  color                   : #333;
  /* font-feature-settings: "palt";
  letter-spacing          : 0.02em; */
}

img,
svg {
  vertical-align: bottom;
  width         : 100%;
  height        : auto;
}



.none {
  display: none;
}

* {
  margin : 0;
  padding: 0;
}

* {
  list-style: none;
}

* {
  text-decoration: none;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing        : border-box;
}

a {
  color: #333;
}


.sa {
  opacity   : 0;
  transition: all .5s ease-in-out;
}

.sa--up {
  transform: translate(0, 30px);
}


.sa.show {
  opacity   : 1;
  transform : none;
  transition: all .5s ease-in-out;
}