@charset "UTF-8";
/* CSS Document */
/*共通箇所*/
html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
  box-sizing: border-box;
}
body {
  color: #333; /* RGB */
  font-family: 'Raleway', sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
  text-align: center;
  background-color: #ffffff;
  padding-top: 25px;
}
* {
  margin: 0;
  padding: 0;
}
img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
}
