:root {
    --color-black: #101010;
    --color-gray: #909090;
    --color-white: #ffffff;
    --color-background: #FAFAFA;
    --color-highlight: #0060F0;
}

/* ---------------- COMMON ---------------- */

::selection {
    background-color: var(--color-highlight);
    color: var(--color-white);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    min-width: 360px;
    max-width: 100vw;
    min-height: 100vh;
    line-height: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    overflow-x: hidden;
    background-color: var(--color-background);
}

body > img{
    max-width: 800px;
    width: 100%;
    object-fit: contain;
}

body > a > img{
    max-width: 800px;
    width: 100%;
    object-fit: contain;
}

.floating-btn{
    min-width: 360px;
    position: fixed;
    bottom: 2rem;
    transition: 0.2s;
    filter: drop-shadow(0px 8px 6px #ff0000cc);
    z-index: 100;
    /**
    animation-name: updownAnimation;
    animation-duration: 0.5s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    **/
}

.floating-btn-2{
    min-width: 360px;
    position: fixed;
    bottom: 1rem;
    transition: 0.2s;
    filter: drop-shadow(0px 8px 6px #ff0000cc);
    z-index: 100;
    animation-name: updownAnimation;
    animation-duration: 0.5s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}

.contact > img{
    max-width: 800px;
    width: 100%;
    object-fit: contain;
}

@keyframes updownAnimation{
    from{
        bottom: 1rem;
    }

    to{
        bottom: 2rem;
    }
}

.floating-kakao{
    max-width: 120px;
    width: 30vw;
    object-fit: contain;
    position: fixed;
    bottom: 200px;
    right: calc(50vw - 368px);
    z-index: 10;
    animation-name: updown2;
    animation-duration: 0.4s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}

@keyframes updown2{
    from{
        bottom: 200px;
    }

    to{
        bottom: 212px;
    }
}

.floating-btn > img{
    max-width: 800px;
    width: 100%;
    object-fit: contain;
}


.swiper {
    max-width: 800px;
    width: 100%;
    height: 100%;
    background-image: url('../img/05_new_bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.swiper-slide {
    width: 100%;
}

.swiper-slide img {
    width: 100%;
    object-fit: contain;
}

.new-02{
    max-width: 800px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 0;
    row-gap: 0;
}

.new-02 > a > img{
    width: 100%;
    object-fit: contain;
}

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

.floating-kakao{
    min-width: 72px;
    max-width: 120px;
    width: 20vw;
    object-fit: contain;
    position: fixed;
    bottom: calc(18vw + 40px);
    right: 20px;
    z-index: 10;
    animation-name: updown2;
    animation-duration: 0.4s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}

@keyframes updown2{
    from{
        bottom: calc(18vw + 40px);
    }

    to{
        bottom: calc(18vw + 48px);
    }
}
}