@charset "UTF-8";
/* CSS Document */
html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
  box-sizing: border-box;/* 余白の計り方が変わります。オフジェこみのサイズにするという意味 */
  margin: 0;
  padding: 0;
}
body {
  color: #333; /* RGB */
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
  font-weight: 500;
  font-size: 1.3em;
  line-height: 2.4rem;
  letter-spacing: 0.2rem;
  text-align: center;
  margin: 0;
  padding: 0;
}
a:hover {
  opacity: 0.5;
  color: #f7c1b8;
}
a:over {
  color: #f7c1b8;
}

.none{
  display: none;/* noneのクラスをふったら画面上から消えますという意味 */
}