@charset "UTF-8";

/* period */

.section--period {
    padding-bottom: 0;
}

.period__block {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 25px;
}

.period__img {
    width: 100%;
    aspect-ratio: 7 / 4;
    object-fit: cover;
    border-radius: 10px;
}

.period__txtBlock {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0 10px;
    letter-spacing: 1.4px;
}

@media screen and (min-width: 768px) {
    .period__block {
        flex-direction: row;
        gap: 40px;
        margin-top: 30px;
    }

    .period__img {
        width: 45%;
        min-width: 45%;
    }

    .period__txtBlock {
        gap: 20px;
    }
}

/* calender */
.section--calendar {
    padding-bottom: 70px;
}

.calender__dammy {
    margin-top: 25px;
    display: block;
    width: 100%;
    max-height: 600px;
    aspect-ratio: 1 / 1;
    background-color: gray;
}

.calender__txt {
    margin-top: 20px;
    padding: 0 10px;
    font-size: 1.2rem;
}

@media screen and (min-width: 768px) {
    .section--calendar {
        padding-bottom: 100px;
    }
    .calender__dammy {
        margin-top: 30px;
        aspect-ratio: auto;
        height: 600px;
    }

    .calender__txt {
        margin-top: 30px;
        font-size: 1.8rem;
    }
}