/*-------------------------------------
common
-------------------------------------*/
:root {
    --_base-font-family: "游ゴシック", "游ゴシック体", "Yu Gothic", "YuGothic", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    /* --_base-font-family__serif: "MatissePro-M", "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
    --_base-font-family__serif__en: "AGaramondPro-Regular", "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif; */

    --easing-a: cubic-bezier(.77, 0, .18, 1);
    --easing-b: cubic-bezier(.19,1,.22,1);
    --easing-c: cubic-bezier(.165, .84, .44, 1);

    --radius-s: 4px;
    --radius-m: 8px;
    --radius-l: 16px;
}

body {
    overflow-x: hidden;
    font-family: var(--_base-font-family);
}

@media screen and (min-width:1024px) {
    .pc-hidden {
      display: none !important;
      visibility: hidden !important;
    }
}
@media screen and (min-width:600px) and (max-width:1023px) {
    .tb-hidden {
      display: none !important;
      visibility: hidden !important;
    }
}
@media screen and (max-width:599px) {
    .sp-hidden {
      display: none !important;
      visibility: hidden !important;
    }
}