/**
 * Theme Name: Blocksy SNS
 * Description: Blocksy Child theme
 * Author: Creative Themes
 * Template: blocksy
 * Text Domain: blocksy
 */
/* standard sns button */
.sns_button.sns_button {
    display: flex;
    width: 100%;
    justify-content: center;
    box-sizing: border-box;
    background: var(--theme-palette-color-1);
    color: var(--theme-palette-color-5);
    font-size: 14px;
    font-weight: 700;
    padding: 5px 15px;
    border-radius: 10px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: background 0.2s;
}
.sns_button.sns_button:hover,
.sns_button.sns_button:focus {
    background: var(--theme-palette-color-2);
    color: var(--theme-palette-color-4);
}
/* gb text default button */
.gb-text.gb-text {
    display: flex;
    width: 100%;
    justify-content: center;
    box-sizing: border-box;
    background: var(--theme-palette-color-1); !Important
    color: var(--theme-palette-color-5);
    font-size: 14px;
    font-weight: 700;
    padding: 5px 15px;
    border-radius: 10px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: background 0.2s;
}
.gb-text.gb-text:hover,
.gb-text.gb-text:focus {
    background: var(--theme-palette-color-2);
    color: var(--theme-palette-color-4);
}