#title_s {
    display: inline-block;
    background-color: var(--dark);
    color: var(--light);
    padding: 0 28px;
    margin-bottom: 12px;
    font-size: var(--fs-xs);
    font-weight: 400;
    line-height: var(--fs-xxl);
}

#title_l {
    font-size: var(--fs-xl);
    line-height: var(--fs-big);
    font-family: var(--fs-family-primary);
    color: #FF6600;
    text-align: center;
    margin-top: 3rem;
}

@media (max-width:768px) {
    #title_l {
        font-size: 1.45rem;
        line-height: var(--fs-big);
        font-family: var(--fs-family-primary);
        color: #FF6600;
        text-align: center;
        margin-top: 3rem;
    }
}

#title_date {
    color: var(--dark);
    font-weight: 500;
    font-family: Arial, sans-serif;
    font-size: var(--fs-normal-big);
    text-align: right;
    margin-top: 2rem;
}


p {
    font-size: 1.25rem;
    font-family: Arial, sans-serif;
    font-weight: 400;
    line-height: var(--fs-m);
    text-align: justify;
}

.big {
    font-size: 1.5rem;
    line-height: 3rem;
}

.bigger {
    font-size: 1.8rem;
    line-height: 2.5rem;
}

.txt-big {
    font-size: var(--fs-l);
}

.txt-xl {
    font-size: var(--fs-m);
}

.txt-l {
    font-size: var(--fs-s);
}

.txt-xs {
    font-size: var(--fs-xs);
}

.txt-xxs {
    font-size: var(--fs-normal);
}

.txt-bold {
    font-weight: bold;
}

.txt-weight-500 {
    font-weight: var(--fw-500);
}

@media (max-width:768px) {
    #title_s {
        font-size: var(--fs-normal);
        padding: 0 20px;
        line-height: 35px;
    }

    #title_l {
        font-size: 1.45rem;
        line-height: var(--fs-xl);
    }

    #title_date {
        font-size: var(--fs-xxs);
    }

    p {
        font-size: 1rem;
        font-weight: var(--fw-400);
        line-height: 1.75rem;
    }

    .big {
        font-size: 1.2rem;
        line-height: 1.5rem;
    }

    .bigger {
        font-size: 1.45rem;
        line-height: 2rem;
    }

    .txt-big {
        font-size: var(--fs-m);
    }

    .txt-xl {
        font-size: var(--fs-xs-big);
    }

    .txt-xs {
        font-size: var(--fs-normal);
    }

    .txt-xxs {
        font-size: var(--fs-xxs);
    }

}

/*------------------------------------*\
    $顏色設定
\*------------------------------------*/

.txt-pink {
    color: var(--pink);
}

.txt-red {
    color: var(--red);
}

.txt-blue {
    color: var(--blue);
}

.txt-lightBlue {
    color: var(--blue-second)
}

.txt-gray {
    color: var(--gray);
}

.txt-dark {
    color: var(--dark);
}

.txt-green {
    color: var(--green);
}

.bg-yellow {
    background: var(--yellow);
}

.bg-pink {
    background: var(--pink);
    color: var(--light);
}

.bg-blue {
    background: var(--blue);
    color: var(--light);
}

.bg-red {
    background: var(--special-red);
    color: var(--light);
}