.header {
    padding: 3rem 0;
    text-align: center;
    display: block;
}

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

#title_l {
    font-size: var(--fs-m);
    line-height: var(--fs-xxl);
    color: var(--dark);
    padding-left: 30px;
    font-weight: bold;
}

#title_xxl {
    font-size: 48px;
    line-height: 24px;
}

#title_date {
    /* color: var(--red); */
    font-weight: bold;
    font-size: var(--fs-normal);
    text-align: center;
    margin: 0;
    padding: 5px 30px 5px 0px;
    border-right: 2px solid var(--gray);

}

.title_date_month {
    margin: 0;
    padding-bottom: 16px;
    line-height: 100%;
}

.title_date_number {
    margin: 0;
    font-size: var(--fs-big);
    line-height: 100%;
}

p {
    font-size: var(--fs-s);
    line-height: 185%;
}

.txt-s {
    font-size: 20px;
}

.txt-l {
    font-size: 27px;
}

.txt-xl {
    font-size: 35px;
    line-height: 185%;
}

.txt-xxl {
    font-size: 48px;
    line-height: 185%;
}

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

.txt-extraBold {
    font-weight: 900;
}

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

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

    #title_l {
        font-size: var(--fs-s);
        line-height: var(--fs-xl);
        padding: 0;
    }

    #title_xxl {
        font-size: 32px;
    }

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

    p {
        font-size: var(--fs-18);
    }

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

    .txt-xl {
        font-size: 24px;
    }

    .txt-xxl {
        font-size: 32px;
    }

    .imgTitle {
        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-purple {
    color: var(--purple);
}

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

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

.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);
}

/* highlight */
.highlight_red {
    background: linear-gradient(transparent 0%, #fd0000 0%);
    display: inline;
    padding: 0 2px;
    color: #000;
}

.highlight_yellow {
    background: linear-gradient(transparent 0%, #fdec00 0%);
    display: inline;
    padding: 0 2px;
    color: #000;
}

.highlight_lightYellow {
    background: linear-gradient(transparent 0%, #fae9c5 0%);
    display: inline;
    padding: 0 2px;
}

.highlight_green {
    background: linear-gradient(transparent 0%, #00fd00 0%);
    display: inline;
    padding: 0 2px;
    color: #000;
}

.highlight_blue {
    background: linear-gradient(transparent 0%, #dde6e7 0%);
    display: inline;
    padding: 0 2px;
}

.highlight_purple {
    background: linear-gradient(transparent 0%, #d3217a 0%);
    display: inline;
    padding: 0 2px;
    color: #fff;
}

.highlight_darkPurple {
    background: linear-gradient(transparent 0%, #9221d3 0%);
    display: inline;
    padding: 0 2px;
    color: #fff;
}