@charset "UTF-8";
/* ======================
goods main
========================*/

/* ======================
season
========================*/
.main {
    background-color: #F3EEE6;
}

.seoson__item {
    margin-top: 36px
}

.seoson__item:first-of-type {
    margin-top: 0;
}

.season__name {
    margin: 20px 0 10px;
    font-size: 1.8rem;
    font-weight: 700;
}

.season__categoryList {
    display: flex;
}

.season__category {
    margin-right: 10px;
    padding: 2px 8px;
    border-radius: 8px;
    background-color: #398A32;
    color: #fff;
}

.season__content .txt {
    margin-top: 10px;
}

/* season pc */
@media screen and (min-width: 769px) {
    .season__list {
        display: flex;
    }

    .seoson__item {
        margin: 0 20px 0 0;
    }

    .season__item:last-of-type {
        margin-right: 0;
    }

    .season__name {
        font-size: 2.0rem;
        font-weight: 700;
    }
}/* pc 769px */


/* ======================
gift
========================*/
.gift__item {
    margin-top: 36px;
}

.gift__item:first-of-type {
    margin-top: 0;
}

.gift__name {
    margin-top: 20px;
    font-size: 1.8rem;
    font-weight: 700;
}

.gift__content .txt {
    margin-top: 10px;
}

/* gift pc */
@media screen and (min-width: 769px) {
    .gift__list {
        display: flex;
    }

    .gift__item {
        margin: 0 20px 0 0;
    }

    .gift__item:last-of-type {
        margin-right: 0;
    }
    
    .gift__name {
        font-size: 2.0rem;
        font-weight: 700;
    }
}/* pc 769px */


/* ======================
home
========================*/
.home__main .txt {
    margin-top: 20px;
}

/* home pc */
@media screen and (min-width: 769px) {
    .home__main .txt {
        margin: 0;
    }

    .home__main {
        display: grid;
        gap: 48px;
        grid-template-columns: 2fr 3fr;
    }
}/* pc 769px */


/* ======================
grid
========================*/
.grid__list {
    display: grid;
    gap: 3.6rem 2rem;
    grid-template-columns: repeat(2, 1fr);
}

.grid__name {
    margin: 10px 0;
    font-size: 1.8rem;
    font-weight: 700;
}

/* grid pc */
@media screen and (min-width: 769px) {
    .grid__list {
        display: grid;
        gap: 2.4rem 1.7rem;
        grid-template-columns: repeat(4, 1fr);
    }

    .grid__name {
        margin: 12px 0;
        font-size: 2.0rem;
    }
}/* pc 769px */