@charset "UTF-8";
/*============================
　暗黙でいつも入れてる設定で、直接見た目に影響ないモノをまとめて指定
============================*/
body * {
  background-repeat: no-repeat;
  background-position: center center;
  text-decoration: none;
}

/* ブラウザのスクロールバー デザイン */
/* html {
  scrollbar-width: thin;
  scrollbar-color: red #000;
} */
/* CSS のみでスムーススクロール */
/* html {
  scroll-behavior: smooth;
  scroll-margin-top:;
} */
/*============================
　共通設定
============================*/
body {
  font-feature-settings: "halt";
  font-weight: 300;
  /* =====
  100	Thin (Hairline)
  200	Extra Light (Ultra Light)
  300	Light
  400	Normal (Regular)
  500	Medium
  600	Semi Bold (Demi Bold)
  700	Bold
  800	Extra Bold (Ultra Bold)
  900	Black (Heavy)
  ===== */
}

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

a:hover {
  transition: 0.3s;
  filter: brightness(120%);
}

/*============================
　コンテンツ関連
============================*/
/* ===== レスポンシブ明示指定CSS ===== */
.look_pc {
  display: block;
}

.look_sp {
  display: none;
}

@media screen and (max-width: 767px) {
  .look_pc {
    display: none;
  }
  .look_sp {
    display: block;
  }
}
/* ===== 汎用 ===== *//*# sourceMappingURL=foundation.css.map */