
:root{
    --base-color: #106192 ;
    --title-color: #000000 ;
    --text-color: #666 ;
    --background-color: #106192;
    --front-color: #fff ;
}
.base-color{
    color:var(--base-color) !important;
}
.title-color{
    color:var(--title-color) !important;
}
.text-color{
    color:var(--text-color) !important;
}
.background-color{
    background-color: var(--background-color) !important;
}
.front-color{
    color:var(--front-color) !important;
}


@media (min-width : 980px) {
    .mobile {
        display: none !important;
    }
    .pc{
        display: block !important;
    }
}
@media (max-width : 980px) {
    .mobile {
        display: block !important;
    }
    .pc{
        display: none !important;
    }
}