@charset "utf-8";

/* font */
@font-face {
    font-family: 'Pretendard';
    src: url('https://cdn.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'Pretendard';
    src: url('https://cdn.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
}
@font-face {
    font-family: 'Pretendard';
    src: url('https://cdn.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-ExtraBold.woff') format('woff');
    font-weight: 800;
    font-style: normal;
}
/* // <uniquifier>: Use a unique and descriptive class name
// <weight>: Use a value from 100 to 900 */
.noto-sans-<uniquifier> {
  font-family: "Noto Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}

/* 여백초기화 */
body,div,ul,li,ol,dl,dt,dd,h1,h2,h3,h4,h5,h6,input,fieldset,legend,
p,select,textarea,button,table,th,td,tr,form{
    margin: 0;
    padding: 0;
}
body{
    font-family: "Pretendard", "Noto Sans KR",'Apple SD Gothic Neo', Sans-serif;
}
/* 보더박스 */
*{box-sizing: border-box; color: #111;}

/* a 링크 초기화 */
a{
    text-decoration: none;
    color: #111;
}
ul,li{
    list-style: none;
}
h2{
    font-size: 50px;
    font-weight: 600;
    text-align: center;
}
main{
    background-color: #fff;
}

/* IR효과 */
.ir_pm{
    /* 의미있는 이미지의 대체 텍스트를 제공하는 경우 */
    display: block;
    overflow: hidden;
    font-size: 0;
    line-height: 0;
    text-indent: -9999px;
}
.ir_wa{
    /* 의미있는 이미지의 대체 텍스트로 이미지가 없어도 
    대체 텍스트를 보이고자 할 때*/
    display: block;
    overflow: hidden;
    position: relative;
    z-index: -1;
    width: 100%;
    height: 100%;
}
.ir_so{
    /* screen out / ir_su
    대체 텍스트가 아닌 접근성을 위한 숨김 텍스트를 제공할 때 */
    overflow: hidden;
    position: absolute;
    width: 0;
    height: 0;
    line-height: 0;
    text-indent: -9999px;
}