@charset "utf-8";



* {
    margin: 0;
    padding: 0;
    list-style: none;
    box-sizing: border-box;
}

body {
    background-color: var(--color-White);
    color: var(--color-Black);
    font-family: 'Noto Sans KR', sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
}

.clearfix::after {
    display: block;
    content: "";
    clear: both;
}

/* header */
header {
    width: 100%;
    height: 80px;
    display: flex;
    justify-content: space-between;
    position: fixed;
    z-index: 2;
    background-color: var(--color-accent);
}

.logo {
    position: relative;
    width: 150px;
    top: 15px;
    left: 20px;
}

.logo img {
    width: 100%;
}

.menu {
    width: 50%;
    font-size: 18px;
    font-family: 'Mont', sans-serif;
}

.menu .mainmenu .mainmenu_inner {
    position: relative;
    float: left;
    width: 20%;
    color: var(--color-White);
    text-align: center;
    line-height: 80px;
}

.menu .mainmenu .mainmenu_inner:hover .navicon img {
    opacity: 1;
    transition: 0.4s;
}

.menu .mainmenu .mainmenu_inner>a {
    display: inline-block;
}

.navicon img {
    width: 15px;
    height: 15px;
    top: 20px;
    right: 22%;
    position: absolute;
    opacity: 0;
}

.submenu {
    line-height: 35px;
    height: 200px;
    font-size: 15px;
    font-weight: 400;
    background-color: var(--color-accent);
    display: none;
}

.submenu .submenu_inner {
    padding: 6px;
    cursor: pointer;
}


.burger {
    position: relative;
    width: 25px;
    height: 16px;
    cursor: pointer;
    display: none;
}

.burger_line {
    position: absolute;
    width: 100%;
    height: 3px;
    border-radius: 2px;
    background-color: var(--color-White);
    left: 0;
    transition: 0.2s;
}

.burger_line:first-child {
    top: 0;
}

.burger_line:nth-child(2),
.burger_line:nth-child(3) {
    top: 50%;
}

.burger_line:nth-child(4) {
    top: 100%;
}

.burger.active span:nth-child(1),
.burger.active span:nth-child(4) {
    opacity: 0;
}

.burger.active span:nth-child(2) {
    transform: rotate(45deg);
}

.burger.active span:nth-child(3) {
    transform: rotate(-45deg);
}


/* * menu content start* */

.menu_title {
    width: 100%;
    padding: 120px 100px 60px;
}

.menu_title h2 {
    width: 100%;
    margin: 0 auto;
    text-align: center;
    color: var(--color-accent);
    font-size: 30px;
    font-family: 'Mont', sans-serif;
    font-weight: 900;
}

.menu_title ul {
    width: 80%;
    margin: 40px auto;
    display: flex;
    justify-content: space-around;
}



.menu_title ul li {
    color: var(--color-accent);
    font-family: 'Mont', sans-serif;
    font-weight: 900;
    cursor: pointer;
}


/*-----content1 구간 (스트로베리 시즌)-----*/

.content1_wrap {
    width: 100%;
    height: 400px;
    margin: 0 auto;
    background-color: #ffeef1;
    animation-delay: 0.3s;
}

.content1 {
    width: 100%;
}

.content1_title {
    text-align: left;
    margin-left: 75px;
}

.content1_title h3 {
    padding-top: 100px;
    color: var(--color-accent);
    line-height: 38px;
    font-size: 35px;
    font-family: 'Mont', sans-serif;
    font-weight: 900;
}

.content1_title>p {
    letter-spacing: -2px;
    font-weight: 500;
    font-size: 18px;
    color: var(--color-accent);
}



.content1 ul {
    width: 100%;
    text-align: center;
}

.content1 ul li {
    float: left;
    width: 25%;
    height: 400px;
    border-right: 1px solid var(--color-sub3);
    cursor: pointer;
}

.content1 ul li:hover {
    background-color: var(--color-White);
}

.content1 ul li:hover:nth-child(1) {
    background-color: #ffeef1;
}

.content1 ul li:last-child {
    border-right: none;
}

.content1 ul li img {
    max-width: 100%;
    margin: 10px;
}

.content1>ul>li>p {
    font-family: 'Mont', sans-serif;
    font-weight: 900;
    font-size: 18px;
    color: var(--color-accent);
}

.content1 ul li span {
    color: var(--color-accent);
    font-weight: 500;
}

/*-----content2 구간 (일반 메뉴)-----*/

.content2_title2 {
    width: 100%;
    animation-delay: 0.8s;
}

.content2_title2 h3 {
    width: 100%;
    margin: 60px 0 40px;
    text-align: center;
    color: var(--color-accent);
    font-size: 26px;
    font-family: 'Mont', sans-serif;
    font-weight: 900;
    height: 30px;
    position: relative;
}

.content2_title2 img {
    width: 70px;
    position: absolute;
    bottom: 0;
}

.content2_title2 ul {
    width: 10%;
    display: flex;
    position: absolute;
    right: 20px;
}

.content2_title2 li {
    margin: 0 10px;
    text-align: center;
    font-size: 14px;
    cursor: pointer;
}


.content2_title2 li:hover {
    color: var(--color-accent);
    font-weight: 500;
}

.content2_wrap {
    width: 100%;
    margin: 0 auto;
}

.content2 {
    width: 100%;
    margin: 100px 0;
}

.content2 ul {
    width: 100%;
    text-align: center;
    position: relative;
    border-bottom: 1px solid var(--color-sub3);
}

.content2 ul li {
    float: left;
    width: 25%;
    height: 400px;
    border-top: 1px solid var(--color-sub3);
    border-left: 1px solid var(--color-sub3);
    cursor: pointer;
}

.content2 ul li:nth-child(4n+1) {
    border-left: none;
}

.content2 ul li:hover {
    background-color: #fff1d0;
    transition: 0.3s;
}

.content2 ul li img {
    max-width: 100%;
    margin: 10px;
}

.content2 ul li p {
    font-family: 'Mont', sans-serif;
    font-weight: 900;
    font-size: 18px;
    color: var(--color-accent);
}

.content2 ul li span {
    color: var(--color-accent);
    font-weight: 500;
}

.content2>ul>li>a>span:nth-child(1) {
    font-family: 'Mont', sans-serif;
    font-weight: 900;
    position: absolute;
    top: 30px;
    left: 30px;
    width: 70px;
    height: 30px;
    line-height: 30px;
    padding: 1px;
    background-color: var(--color-accent);
    color: var(--color-White);
    border-radius: 5px;
}

.morebt {
    width: 50px;
    margin: 20px auto;
    text-align: center;
}

.morebt img {
    width: 40px;
    height: 40px;
    cursor: pointer;
}

.morebt img:hover {
    transform: rotate(45deg);
    transition: 0.5s;
}







/*------footer 구간-----*/

footer {
    width: 100%;
    background-color: var(--color-accent);
    padding-top: 20px;
    margin: 0 auto;
    text-align: center;
    color: var(--color-White);
}

.box1 img {
    width: 150px;
}


.box2 ul {
    width: 30%;
    margin: 10px auto;
    display: flex;
    justify-content: space-around;
}

.box3 {
    width: 100%;
    font-size: 14px;
}

.box4 {
    margin: 10px;
}

.box4 img {
    width: 30px;
    height: 30px;
}

.box5 {
    background-color: var(--color-accent2);
    height: 40px;
    line-height: 40px;
    color: var(--color-accent);
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    font-weight: 900;
    font-family: 'Mont', sans-serif;
}


.site {
    width: 110px;
    height: 20px;
    margin-top: 10px;
    text-align: center;
    appearance: none;
    background-size: 15px;
    border: 1px solid var(--color-accent);
    border-radius: 5px;
    background-color: var(--color-accent2);
    color: var(--color-accent);
    font-weight: 900;
    font-family: 'Mont', sans-serif;
    outline: none;
}



.site option {
    appearance: none;
    outline: none;
    background: var(--color-accent2);
    color: var(--color-accent);
    border: none;
    font-weight: 900;
    font-family: 'Mont', sans-serif;
    padding: 3px 0;
}

/*=====반응형구간=====*/

@media only screen and (max-width:1399px) and (min-width:1024px) {
    .navicon img {
        width: 15px;
        height: 15px;
        top: 20px;
        right: 8%;
    }

    .submenu .submenu_inner {
        font-size: 14px;
    }



    /*-----content1 구간 (스트로베리 시즌)-----*/

    .content1_title {
        margin-left: 35px;
    }

    .content1_title h3 {
        font-size: 30px;
        line-height: 30px;
    }

    .content1_title>p {
        letter-spacing: -2px;
        font-size: 16px;
    }

    .content1 ul li img {
        margin: 30px 0;
        width: 250px;
    }


    /*-----content2 구간 (일반 메뉴)-----*/

    .content2_title2 ul {
        width: 15%;
        right: 0;
    }

    .content2>ul>li>span:nth-child(1) {
        top: 15px;
        left: 10px;
        width: 60px;
    }

    .content2 ul li img {
        margin: 30px 0;
        width: 250px;
    }




}

/*1399-1024구간 끝*/

@media only screen and (max-width:1023px) and (min-width:700px) {

    .burger {
        display: block;
        z-index: 4;
        position: absolute;
        top: 30px;
        right: 16px;
    }

    header {
        display: block;
    }


    .logo {
        width: 120px;
    }

    .menu {
        font-size: 14px;
        width: 100%;
        margin-top: 30px;
        display: none;
    }

    .menu .mainmenu .mainmenu_inner {
        width: 100%;
        float: none;
        font-size: 16px;
        color: var(--color-White);
        background-color: var(--color-accent);
        text-align: center;
    }


    .navicon {
        display: none;
    }

    .menu_title {
        padding: 120px 20px 30px;
    }

    .menu_title h2 {
        font-size: 28px;
    }

    .menu_title ul {
        margin: 20px auto;
    }



    /*-----content1 구간 (스트로베리 시즌)-----*/

    .content1_wrap {
        height: 600px;
    }

    .content1_title {
        margin: 60px 80px;
    }

    .content1_title h3 {
        font-size: 35px;
        line-height: 34px;
        padding-top: 40px;
    }

    .content1_title>p {
        letter-spacing: -2px;
        font-size: 16px;
    }



    .content1 ul {
        width: 100%;
        margin: 0 auto;
    }


    .content1 ul li {
        float: left;
        width: 50%;
        margin: 0 auto;
        height: 300px;
        border-top: 1px solid var(--color-sub3);
    }

    .content1 ul li:nth-child(1),
    .content1 ul li:nth-child(2) {
        border-top: none;
    }

    .content1 ul li:nth-child(2) {
        border-right: none;
    }

    .content1 ul li img {
        margin: 0;
        width: 200px;
    }

    .content1 ul li img {
        margin: 10px 0;
    }


    /*-----content2 구간 (일반 메뉴)-----*/

    .content2_title2 ul {
        width: 20%;
        right: 0;
    }

    .content2 ul li {
        float: left;
        width: 50%;
        margin: 0 auto;
        height: 300px;
    }



    .content2>ul>li>span:nth-child(1) {
        top: 20px;
        left: 15px;
        width: 50px;
        height: 25px;
        padding: 0;
        line-height: 28px;
        font-size: 14px;
    }

    .content2 ul li img {
        margin: 10px 0;
        width: 200px;
    }

    .content2 ul li:nth-child(2n+1) {
        border-left: none;
    }


    /*----footer 구간----*/

    .box2 ul {
        width: 40%;
    }

    .box2 ul li {
        font-size: 14px;
    }

    .box3 {
        font-size: 12px;
    }

    .box5 {
        font-size: 14px;
    }


}

/*1023-700구간 끝*/




@media only screen and (max-width:699px) {

    .burger {
        display: block;
        z-index: 4;
        position: absolute;
        top: 30px;
        right: 16px;
    }

    header {
        display: block;
    }


    .logo {
        width: 120px;
    }

    .menu {
        font-size: 14px;
        width: 100%;
        margin-top: 30px;
        display: none;
    }

    .menu .mainmenu .mainmenu_inner {
        width: 100%;
        float: none;
        font-size: 16px;
        color: var(--color-White);
        background-color: var(--color-accent);
        text-align: center;
    }

    .navicon {
        display: none;
    }

    .menu_title {
        width: 100%;
        padding: 120px 0 35px;
    }

    .menu_title h2 {
        font-size: 24px;
    }

    .menu_title ul {
        display: none;
    }

    /*-----content1 구간 (스트로베리 시즌)-----*/

    .content1_wrap {
        height: auto;
    }

    .content1_title {
        margin: 20px 80px;
        text-align: center;
    }

    .content1_title h3 {
        font-size: 28px;
        line-height: 30px;
        padding: 20px;
    }

    .content1_title>p {
        letter-spacing: -2px;
        font-size: 16px;
        display: inline-block;
    }



    .content1 ul {
        width: 100%;
        margin: 0 auto;
    }

    .content1 ul li {
        float: none;
        width: 100%;
        margin: 0 auto;
        padding: 20px;
        height: auto;
        border: none;
    }

    .content1 ul li img {
        width: 220px;
        margin: 0 auto;
    }

    .content1 ul li:nth-child(1) {
        padding: 0;
    }



    /*----content2 구간 (일반 메뉴)----*/
    .content2_title2 h3 {
        font-size: 24px;
    }

    .content2_title2 ul {
        width: 30%;
        right: 0;
        justify-content: space-around;
    }

    .content2 ul li {
        float: none;
        width: 100%;
        height: 300px;
    }

    .content2>ul>li>span:nth-child(1) {
        top: 25px;
        left: 30px;
        width: 50px;
        height: 25px;
        padding: 0;
        line-height: 28px;
        font-size: 14px;
    }

    .content2 ul li img {
        margin: 0;
        width: 220px;
    }



    /*----footer 구간----*/

    .box2 ul {
        width: 60%;
    }

    .box2 ul li {
        font-size: 14px;
        padding: 1px;
    }

    .box3 {
        font-size: 12px;
        width: 80%;
        margin: 20px auto;
    }

    .box5 {
        font-size: 12px;
    }

    .box5>span {
        margin: 0 auto;
    }

    select {
        display: none;
    }
}