@charset "UTF-8";


/* PC SP　出し分け */

@media screen and (min-width: 960px) {
    .sp {
      display: none;
    }
  }
@media screen and (max-width: 959px) {
    .pc {
      display: none;
    }
  }


/* 全体のアニメーション速度 */

*{
    transition: .5s;
    scroll-behavior: smooth;
  }


/* 横スクロール許さない */

body {
  overflow-x: hidden;
}


/* リンク共通 */

a:hover {
  color: #BEC5D0;
  opacity: .75;
}