@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;
}

.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);
}

/* * main * */

.main_wrap {
        background-color: var(--color-accent);
}

.main {
        width: 50%;
        height: 700px;
        background-image: url("../image/images1/main.jpeg");
        background-size: cover;
        background-position: center;
}


.product_img {
        position: relative;
        top: 20%;
        left: 70%;
        width: 500px;
        z-index: 1;
}

.product_img img {
        width: 100%;
}

.main_text {
        position: absolute;
        top: 30%;
        right: 8%;
        letter-spacing: -1px;
        z-index: 1;
}

.main_text h2 {
        font-size: 60px;
        font-family: 'Mont', sans-serif;
        color: var(--color-White);
        animation-delay: 0.3s;
}

.main_text p {
        margin: 5px;
        font-weight: 500;
        color: var(--color-accent2);
        animation-delay: 0.6s;
}

.more_btn {
        position: absolute;
        right: 22%;
        font-family: 'Mont', sans-serif;
        font-weight: 900;
        font-size: 20px;
        color: var(--color-accent2);
        z-index: 1;
        animation-delay: 0.6s;
        cursor: pointer;
}

.more_btn>a {
        display: flex;
        align-items: center;

}

.btn_icon {
        width: 50px;
        height: 50px;
        margin-right: 10px;
}


.btn_icon img {
        width: 100%;
}

/*------content1 best product 구간-----*/

.content1 {
        width: 100%;
        margin: 40px auto;
        visibility: hidden;
}

.content1 h3 {
        width: 100%;
        margin-top: 80px;
        font-weight: 900;
        font-family: 'Mont', sans-serif;
        color: var(--color-accent);
        ;
        text-align: center;
        font-size: 35px;
}

.content1_wrap {
        width: 98%;
        margin: 0 auto;
        height: 500px;
        display: flex;
        justify-content: space-around;
}


.item {
        display: flex;
        width: 100%;
}

.item:nth-child(1) {
        margin-left: 30px;
}

.item:nth-child(2) {
        margin-top: 180px;
}

.item:nth-child(3) {
        margin-right: 30px;
}

.item_img {
        width: 250px;
        margin-top: 80px;
        cursor: pointer;
}


.item_text {
        width: 100%;
        margin-left: 30px;
        margin-top: 130px;
        letter-spacing: -1px;
}

.item_text p {
        color: var(--color-accent);
        ;
        font-weight: 600;
        font-size: 18px;
}




.item_img {
        animation: motion 5s
                /*속도*/
                linear 0s
                /*처음부터 끝까지 일정 속도로 진행*/
                infinite alternate;
        /* 무한 반복 */
}

@keyframes motion {
        0% {
                transform: rotate(0deg);
        }

        25% {
                transform: rotate(-10deg);
        }

        50% {
                transform: rotate(0deg);
        }

        75% {
                transform: rotate(10deg);
        }

        100% {
                transform: rotate(0deg);
        }
}


/*------content2 구간-----*/

.content2_wrap {
        width: 100%;
        height: 500px;
}

.content2 {
        width: 100%;
        display: flex;
        text-align: center;
        justify-content: space-around;
}

.content2>div {
        display: flex;
        align-items: center;
        justify-content: center;
}

.text_wrap {
        color: var(--color-White);
}

.text_wrap h3 {
        font-size: 35px;
        font-weight: 900;
        font-family: 'Mont', sans-serif;
}


.imgbox1 {
        width: calc(100% / 3);
        height: 500px;
        background: url("../image/images1/event.jpeg") no-repeat;
        background-size: cover;
        animation-delay: 0.3s;
        visibility: hidden;
        cursor: pointer;
}


.imgbox2 {
        width: calc(100% / 3);
        height: 500px;
        background: url("../image/images1/store.jpeg") no-repeat;
        background-size: cover;
        background-position-x: 50%;
        animation-delay: 0.6s;
        visibility: hidden;
        cursor: pointer;
}

.imgbox3 {
        width: calc(100% / 3);
        height: 500px;
        background: url("../image/images1/goods.jpeg") no-repeat;
        background-size: cover;
        animation-delay: 0.9s;
        visibility: hidden;
        cursor: pointer;
}



/*------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;
        cursor: pointer;
        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;
        cursor: pointer;
}


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

@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;
        }


        /*----main 구간----*/

        .product_img {
                position: relative;
                left: 55%;
                width: 450px;
                z-index: 1;
        }

        .main_text {
                position: absolute;
                right: 5%;
                letter-spacing: -1px;
                z-index: 1;
        }

        .main_text h2 {
                font-size: 45px;
        }

        .main_text p {
                margin: 0;
        }

        .more_btn {
                right: 18%;
        }



        /*----content1 best product 구간----*/

        .content1 h3 {
                margin-top: 40px;
                font-size: 35px;
        }

        .content1_wrap {
                width: 98%;
                justify-content: center;
                align-items: center;
        }


        .item:nth-child(1) {
                margin-left: 0;
        }

        .item:nth-child(2) {
                margin-top: 0;
        }

        .item:nth-child(3) {
                margin-right: 0;
        }


        .item {
                flex-wrap: wrap;
        }

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

        .item_img img {
                width: 200px;
        }

        .item_text {
                margin-top: 100px;
        }

        .item_text:nth-child(2) {
                margin-top: 0;
        }

        .item_text p {
                font-size: 16px;
                margin-top: 50px;
        }

        .item_text span {
                font-size: 14px;
        }

}

/*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;
        }

        /*----main 구간----*/

        .product_img {
                left: 55%;
                top: 44%;
                width: 400px;
        }

        .main_text {
                top: 24%;
                right: 3%;
        }


        .main_text h2 {
                font-size: 45px;
        }

        .main_text p {
                margin: 0;
        }

        .more_btn {
                right: 18%;
        }


        /*------content1 best product 구간-----*/

        .content1 {
                width: 100%;
                margin: 40px auto;
                visibility: hidden;
        }

        .content1 h3 {
                width: 100%;
                margin-top: 80px;
                font-size: 30px;
        }

        .content1_wrap {
                width: 95%;
                margin: 0 auto;
                height: auto;
                display: block;
        }

        .item {
                align-items: center;
                margin: 0 auto;
        }

        .item:nth-child(1) {
                margin-left: 0;
        }

        .item:nth-child(2) {
                margin-top: 0;
        }

        .item:nth-child(3) {
                margin-right: 0;
        }

        .item_img {
                width: 250px;
                margin-top: 80px;
        }

        .item_text {
                width: 80%;
                margin-left: 10px;
                margin-top: 90px;
        }

        .item_text p {
                width: 200px;
                font-size: 16px;
        }




        /*------content2 구간-----*/

        .content2_wrap {
                width: 100%;
                height: 900px;
        }

        .content2 {
                width: 100%;
                display: block;
                text-align: center;
        }

        .text_wrap h3 {
                font-size: 32px;
        }


        .imgbox1,
        .imgbox2,
        .imgbox3 {
                width: 100%;
                height: 300px;
                background-position: center;
        }


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


        .box2 ul {
                width: 40%;
        }

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

        .box3 {
                font-size: 12px;
        }

        .box5 {
                font-size: 14px;
        }


}

/*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;
        }

        /*----main 구간----*/

        .product_img {
                left: 30%;
                top: 50%;
                width: 350px;
        }

        .main_text {
                top: 24%;
                right: 5%;
        }


        .main_text h2 {
                font-size: 32px;
        }

        .main_text p {
                width: 150px;
                margin: 0;
                font-size: 14px;
        }

        .more_btn {
                margin-top: 20px;
                right: 12%;
                font-size: 18px;
        }


        /*------content1 best product 구간-----*/

        .content1 {
                width: 100%;
                margin: 40px auto;
                visibility: hidden;
        }

        .content1 h3 {
                width: 100%;
                margin-top: 80px;
                font-size: 30px;
                text-align: center;
        }

        .content1_wrap {
                width: 95%;
                margin: 0 auto;
                height: auto;
                display: block;
        }

        .item {
                align-items: center;
                margin: 0 auto;
        }

        .item:nth-child(1) {
                margin-left: 0;
        }

        .item:nth-child(2) {
                margin-top: 0;
        }

        .item:nth-child(3) {
                margin-right: 0;
        }

        .item_img {
                width: 200px;
                margin-top: 80px;
        }

        .item_img img {
                width: 100%;
        }

        .item_text {
                width: 80%;
                margin-left: 10px;
                margin-top: 90px;
        }

        .item_text p {
                width: 200px;
                font-size: 16px;
        }

        .item_text span {
                width: 200px;
                font-size: 14px;
        }

        /*------content2 구간-----*/

        .content2_wrap {
                width: 100%;
                height: 900px;
        }

        .content2 {
                width: 100%;
                display: block;
                text-align: center;
        }

        .text_wrap h3 {
                font-size: 30px;
        }


        .imgbox1,
        .imgbox2,
        .imgbox3 {
                width: 100%;
                height: 300px;
                background-position: center;
        }


        /*----footer----*/
        .box2 ul {
                width: 70%;
        }

        .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;
        }

}

/*699구간 완료*/