:root {
    --color-bk:#202124;
    --color-gy: #848890;
    --color-wh: #ffffff;

    --color-bg: #FAFAFA;
    --color-line: #FAFAFA;

    --color-hl: #FF8B00;
}

@font-face {
    font-family: 'RiaSans-ExtraBold';
    src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/2410-1@1.0/RiaSans-ExtraBold.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

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

::selection {
    background-color: var(--color-bg);
    color: var(--color-hl);
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    position: relative;
    min-width: 320px;
    max-width: 100vw;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    background-color: var(--color-bg);
}

body > div{
    max-width: 860px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

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

.wrapper{
    position: relative;
    z-index: 1;
}

#abs-sticky{
    position: fixed;
    bottom: 0;
    z-index: 2;
}

#abs-01{
    position: absolute;
    bottom: 4%;
    z-index: 2;
}

#abs-02{
    position: absolute;
    top: 12%;
    font-family: 'RiaSans-ExtraBold';
    font-size: 6.4rem;
    letter-spacing: -0.02em;
    color: var(--color-hl);    
}

#abs-02 > span:not(#counting){
    font-size: 4.8rem;
}

#abs-03{
    position: absolute;
    bottom: 3%;
    z-index: 2;
}

form{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    background-color: var(--color-wh);
    padding: 0 2.8rem 5.6rem 2.8rem;
}

.input-wrapper{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 1.4rem;
    margin-bottom: 2rem;
}

.input-wrapper > label{
    font-family: 'Pretendard Variable', sans-serif;
    font-size: 2rem;
    font-weight: 500;
    color: var(--color-bk);
}

.input-wrapper > label > span{
    color: var(--color-hl);
}

.input-wrapper > input{
    width: 100%;
    font-family: 'Pretendard Variable', sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--color-bk);
    padding: 1.5rem 2rem;
    background-color: #F8F9FA;
    border: 1px solid #E6E6E6;
    border-radius: 0.75rem;
}

.input-wrapper > input:focus{
    outline: none;
    border: 1px solid var(--color-hl);
}

.checkbox-wrapper{
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.checkbox-wrapper > input{
    width: 1.2rem;
    height: 1.2rem;
    accent-color: var(--color-hl);
}

.checkbox-wrapper > label{
    font-family: 'Pretendard Variable', sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--color-gy);
    margin: 0 0.5rem;
}

.checkbox-wrapper > span{
    font-size: 1.2rem;
    color: var(--color-gy);
    font-weight: 700;
    text-decoration: underline;
    cursor: pointer;
}

#form-submit{
    width: 100%;
    background-color: var(--color-hl);
    padding: 1.2rem;
    border: none;
    border-radius: 0.75rem;
    margin-top: 2.4rem;
    cursor: pointer;
}

#form-submit > img{
    max-width: 17rem;
    width: 100%;
    object-fit: contain;
}

.footer{
    z-index: 5;
}

.swiper {
    width: 100%;
    height: 100%;
    background-color: var(--color-wh);
    padding-bottom: 5rem;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    max-width: 560px;
    width: 100%;
    object-fit: contain;
    border-radius: 1.2rem;
    
    box-shadow: 0px 4px 12px #1010100D;
}

.reviewSwiper .swiper-slide {
    opacity: 0.4;
    transition: opacity 0.2s ease;
}

.reviewSwiper .swiper-slide-active {
    opacity: 1;
}

@media screen and (max-width: 860px) {
    html{
        font-size: 1.86vw;
    }

    .swiper-slide img {
    max-width: 85vw;
    width: 100%;
}

}

@media screen and (max-width: 576px) {
    html{
        font-size: 2.4vw;
    }

    #abs-02{
    font-size: 4.8rem;
}

    #abs-02 > span:not(#counting){
        font-size: 3.2rem;
    }

    form{
        padding: 0 2rem 4.8rem 2rem;
    }
}