@charset "UTF-8";
/* ===================================
	common.scss - Base Layout (ns)
	Location: css/ns/common/
====================================== */
/**
 * _color.scss - サイト共通カラー（一元管理）
 * 直感的な名前 + 類似色は1色に統一
 *
 * 使用: @import '../common/color'; または @use '../common/color' as *;
 */
/*===== メインカラー（ブランド・アクセント） =====*/
/*===== 白・黒・グレー =====*/
/*===== 背景 =====*/
/*===== 状態 =====*/
/* ホバー等 */
/*===== その他 =====*/
/* common setting
------------------------------------*/
html {
  overflow-y: scroll;
}

.onlySR {
  display: none;
}

.onlySP {
  display: none !important;
}

.onlyPC {
  display: block !important;
}

@media (max-width: 768px) {
  .onlySP {
    display: block !important;
  }

  .onlyPC {
    display: none !important;
  }
}
