@charset "utf-8";

/* ------------------------------
 COMMON
------------------------------ */

/* ベースのフォントサイズを10px */
html {
  font-size: 62.5%;
}

/* スタイルが指定されていない要素のフォントサイズを統一 */
body {
  font-family: "游ゴシック Medium","Yu Gothic Medium","游ゴシック体",YuGothic,"ヒラギノ角ゴ Pro W3","メイリオ",sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.2em;
  color: #4c2a1f;
  overflow: hidden;
}

/* リンクの装飾をリセット */
a {
  text-decoration: none;
  outline: none;
}

/* 画像レスポンシブ */
img {
  width: 100%;
  max-width: 100%;
  height: auto;
}

.for-sp {
  display: none;
}


@media screen and ( max-width:767px) {
  .for-sp {
    display: block;
  }
}