/* 공통적으로 들어가는 스타일 */
:root{
    --main-color:#A9CAFF;
    --sub-color:rgba(221, 216, 171, 0.5);
    --sub2-color:#6AD4DD;
    --sub3-color:#f8f6e381;
    --f-size-pc: 20px;
    --f-size-tab: 18px;
    --f-size-mo: 14px;
}
@font-face {
    font-family: "온글잎체";
    src: url('../../폰트/온글잎\ 위씨리스트.ttf') format('woff2');
    font-weight: normal;
    font-style: normal;
}
.onglip{
    font-family: "온글잎체",sans-serif;
}
.detail{
    font-size: 0.9rem;
}
html{
    font-size: var(--f-size-pc);
    /* 1rem = 20px */
    font-family: "pretendard",sans-serif;
    scroll-behavior: smooth;
}
@media (max-width:1400px){
    html{
        font-size: var(--f-size-tab);
    }
}
@media (max-width:768px){
    html{
        font-size: var(--f-size-mo);
    }
}
h1{
    font-size: 1.3rem;
}
h2{
    font-size: 1.2rem;
    font-weight: 600;
}
h3{
    font-size: 1.1rem;
    font-weight: 600;
}
p{
    line-height: 140%;
}
.detail{
    font-size: 0.9rem;
    line-height: 120%;
}
button{
    font-size: 0.8rem;
}
img{
    line-height: 0;
}
strong{
    color: var(--sub2-color);
    font-weight: inherit;
}
.barStyle{
    border-left: 0.2rem solid var(--main-color);
    padding-left: 1rem;
}
.commonFrame{
    width: 1400px;
    margin: 0 auto;
    padding-top: 8rem;
}
