/* 공통적으로 들어가는 스타일 */
:root{
    --main-color:#FFF6E6;

}

html{
    font-size: 20px;
    /* 1rem = 20px */
    font-family: "Pretendard",sans-serif;
    scroll-behavior: smooth;

}
.nanum{
    font-family: Nanum Pen Script,serif;
    font-weight: 400;
    
}
h1{
    font-size: 1.3rem;
    font-weight: 700;
}
h2{
    font-size: 1.2rem;
    font-weight: 600;
}
h3{
    font-size: 1rem;
    font-weight: 600;
}
p{
    line-height: 140%;

}
.detail{
    font-size: 0.9rem;
}
botton{
    font-size: 0.8rem;
}
strong{
    color: var(--main-color);
    font-weight: inherit;
}    
.commonFrame{
        width: 1400px;
        margin: 0 auto;
        padding-top: 6rem;
}

@keyframes swing {
    0%{
        transform: rotate(0deg);
    }
    100%{
        transform: rotate(45deg);
    }
}


.ltr{
    transform: translateX(-1rem);
    opacity: 0;
    transition:all 1s ease 0s;
}
.ltr.on{
    transform: translateX(0);
    opacity: 1;
}