@charset "utf-8";
/* ---------------------------------------
** common
** 
** サイトに左右される共通設定はcommon.cssに記述
--------------------------------------- */
/* webfont */
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP:400,500,700,900");

body {
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック Medium",
    "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  /* font-family: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "Arial", "メイリオ", "Meiryo", "Osaka", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif; */
}

/* ---------------------------------------
** footer
--------------------------------------- */
.footer{
  padding-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .footer{
    padding-bottom: 8.53%;
  }
}

.footer_copyright{
  text-align: center;
  font-size: 10px;
}
@media screen and (max-width: 768px) {
  .footer_copyright{
    font-size: 2.66vw;
  }
}

