@charset "utf-8";

html {
    font-feature-settings: 'palt';
}

/* font-familyの設定 */
.font_zen_mincho {
    font-family: 'Zen Old Mincho', serif;
}
.font_bold {
    font-weight: 700;
}

/* remの設定 */
@media (min-width: 1441px) {
    html {
        font-size: 100px;
    }
}
@media (max-width: 1440px) and (min-width: 751px) {
    html {
        font-size: 6.9444444vw; /* 1440:100px=100vw:Xvw -> x = 6.9444444vw */
    }
}
@media (min-width: 751px) {
    body {
        font-size: 0.14rem;
        line-height: 1.4;
    }
}
@media (max-width: 750px) {
    html {
        font-size: 10px;
        font-size: 1.3333333vw; /* 750:10px=100vw:Xvw -> x = 1.333333333vw */
    }
    body {
        font-size: 1.4rem;
        line-height: 1.4;
    }
}

/* PC,SPの出し分け */
@media (min-width: 751px) {
    .sp_only {
        display: none !important;
    }
}
@media (max-width: 750px) {
    .pc_only {
        display: none !important;
    }
}

/* リサイズ時のアニメーションを制限 */
body.is_stop_animation *,
body.is_stop_animation *::before,
body.is_stop_animation *::after {
    transition: none !important;
}
