@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: 113,175,66;
    --main_pale-color: 180,206,92;
    --sub-color: 191, 130, 5;
    --sub_dark-color: 124, 99, 87;
    --sub_moredark-color: 82, 53, 47;
    --bg-color: 234,240,209;
}
.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_main_pale{
    color: rgba(var(--main_pale-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_moredark{
    color: rgba(var(--sub_moredark-color),1.0);
}

/*---------- ウェイト ----------*/
.fwnor{font-weight: normal;}
.fwlig{font-weight: lighter;}
.fwbol{font-weight: bold;}
.fw400{font-weight: 400;}
.fw500{font-weight: 500;}
.fw600{font-weight: 600;}
.fw700{font-weight: 700;}
.fw800{font-weight: 800;}
.fw900{font-weight: 900;}
/*---------- サイズ ----------*/
.fps{font-size: 90%;}
.fpl{font-size: 110%;}
.fpxl{font-size: 120%;}

