@charset "UTF8";
*,
*::before,
*::after {
    box-sizing: border-box;
}
a {
    text-decoration: none;
}
:root {
    --white-color: 255, 255, 255;
    --black-color: 0, 0, 0;
    --glay-color: 136, 136, 136;
    --main-color: 231, 31, 24;
    --sub-color: 24, 139, 185;
    --sub_dark-color: 175, 73, 69;
    --sub_light-color: 191, 118, 105;
    --bg-color: 255, 255, 255;
    --bg-color2: 231, 31, 24;
    --author3-color: 35, 37, 132;
    --glay_h-color: 101, 107, 112;
    --text_h-color: 70, 118, 181;
}
.clr_white{
    color: rgba(var(--white-color),1.0);
}
.clr_black{
    color: rgba(var(--black-color),1.0);
}
.clr_glay{
    color: rgba(var(--glay-color),1.0);
}
.clr_main{
    color: rgba(var(--main-color),1.0);
}
.clr_sub{
    color: rgba(var(--sub-color),1.0);
}
.clr_sub_dark{
    color: rgba(var(--sub_dark-color),1.0);
}
.clr_sub_light{
    color: rgba(var(--sub_light-color),1.0);
}
.texNar70 {transform: scale(0.7, 1);}
.texNar80 {transform: scale(0.8, 1);}
.texNar90 {transform: scale(0.9, 1);}

.pc_br{
    display: inline;
}
.tb_br{
    display: none;
}
.sp_br{
    display: none;
}
@media screen and (max-width: 800px){
    .pc_br{
        display: none;
    }
    .tb_br{
        display: inline;
    }
}
@media screen and (max-width: 560px){
    .tb_br{
        display: none;
    }
    .sp_br{
        display: inline;
    }
}
