@charset "UTF-8";
/*16*1.75/2*/
/* default css
-----------------------------------*/
/*==========*/
/* 基本設定 */
/*==========*/
body {
  background: #FFF;
  color: #333;
  font-size: 18px;
  font-family: "Noto Sans JP", sans-serif;
  text-align: left;
  line-height: 1.8;
}
@media (max-width: 767px) {
  body {
    font-size: 16px;
  }
}

* {
  box-sizing: border-box;
}

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

/*============*/
/* リンク設定 */
/*============*/
a {
  color: #333;
  text-decoration: none;
}
a img {
  transition: 0.5s all;
}
a:hover {
  color: #0096E7;
  text-decoration: underline;
}
a:hover img {
  opacity: 0.7;
}
/*# sourceMappingURL=default.css.map */