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

body {
  color: #333; /* RGB */
  background-color: #fff;
  font-family: 'Noto Sans JP', 'Playball', Arial, sans-serif;
  font-weight: 400;
  font-size: 1.6em;
  line-height: 2.4rem;
  text-align: left;
}

img {
    max-width: 100%;
    height: auto;
}

a:hover {
  opacity: 0.5;
}

a {
  text-decoration: none;
  color:#000
}

.none {
  display: none;
}

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

p.text_box {
  text-align: justify;
}

/*scroll_up*/

.scroll_up {
  transition: 1s;
  opacity: 0;
}

.scroll_up.animated {
  opacity: 1;
}