#sns {
    width: 1280px;
    margin: 0 auto;
}

#sns>h2 {
    text-align: left;
}

#sns>ul {
    display: grid;
    width: 1280px;
    overflow: hidden;
    grid-template-columns: repeat(4, 3fr);
}


#month {
    width: 100%;
    height: 580px;
    padding: 60px 0 60px;
    position: relative;
    overflow: hidden;
}


#month>h2 {
    width: 1280px;
    max-width: 100%;
    margin: 0 auto;
    text-align: left;
    padding-bottom: 28px;
}




.crown1,
.crown2 {
    overflow: hidden;
    margin-bottom: 12px;
    /* display: grid;
    /* margin-bottom: 12px; */
    /* width: calc(400px * 6 + 20px * 5); */
    /*height: 280px;
    position: absolute;
    overflow: hidden; */
}

.crown2 {
    margin-bottom: 0;
}

#month1,
#month2 {
    display: flex;
    width: max-content;
    gap: 12px;
    display: flex;
    width: max-content;
    gap: 15px;
    list-style: none;
    /* width: 100%;
    display: grid;
    grid-template-columns: repeat(6, 4fr);
    gap: 20px;
    position: relative;
    background-color: cadetblue; */
}




#month1>li,
#month2>li {
    /* flex-shrink: 0;
    width: 400px;
    height: 280px;
    overflow: hidden;
    background-color: black; */
    flex-shrink: 0;
    width: 300px;
    /* 이미지 너비 */
    height: 250px;
    /* 이미지 높이 (4:3 비율) */
    border-radius: 6px;
    overflow: hidden;
}

#month1>li img,
#month2>li img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

#month1>li:hover img,
#month2>li:hover img {
    transform: scale(1.06);
}

.crown1 #month1 {
    animation: slideLeft 28s linear infinite;
}

/* 두 번째 행: 오른쪽으로 흐름 */
.crown2 #month2 {
    animation: slideRight 28s linear infinite;
}

/* 호버 시 정지 */
.crown1:hover #month1,
.crown2:hover #month2 {
    animation-play-state: paused;
}

@keyframes slideLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes slideRight {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}


#cook>h2 {
    font-family: 'Cafe24Anemone';
    width: 100%;
    padding-bottom: 60px;
    text-align: center;
    position: relative;
}

#r-more {
    width: 100%;
}


#more_p>p {
    display: block;
    align-items: center;
    margin-bottom: 70px;
}

.icone {
    margin-bottom: 150px;
}