@charset "UTF-8";

h2 {
    border-bottom: none;
    text-align: center;
    font-size: 2rem;
    letter-spacing: 0.2em;
}

/* splide */
.box__content {
    display: flex;
    gap: 24px;
    background-color: var(--color-bg-slider);

    @media (max-width: 767.98px) {
        flex-direction: column;
    }

    & .box__content-img {
        width: 60%;
        aspect-ratio: 4/3;

        @media (max-width: 767.98px) {
            width: 100%;
        }

        & img {
            object-fit: cover;
            width: 100%;
            height: 100%;
        }
    }

    & .box__content-inner {
        width: 40%;
        padding: 3.80673499vw 3.07467057vw;

        @media (max-width: 767.98px) {
            width: 100%;
        }
    }


    & .box__content-cat {
        margin-bottom: 16px;
    }

    & .box__content-date {
        font-size: 1.125rem;
        font-weight: 700;
        margin-bottom: 16px;
    }

    & .box__content-title {
        letter-spacing: 0.05em;
        font-size: 1.5rem;
        line-height: 1.5;
        font-weight: 700;
        margin-bottom: 12px;
        text-align: left;
        padding-bottom: 0;
    }

    & .box__content-sub-title {
        font-size: 1.125rem;
        font-weight: 700;
    }

    & .box__content-description {
        font-size: 1rem;
        font-weight: 600;
        color: var(--color-gray);
    }
}



/* section margin padding */
section.news,
section.event {
    padding-block: 100px;
}