/* *******************************************************
 * filename : reset.css
 * description : 초기세팅 CSS
 * date : 2023-06-10
******************************************************** */

/* 폰트 가져오기*/

@font-face {
    font-family: "NanumSquareNeo";
    font-weight: 200;
    font-style: normal;
    src: url("../fonts/NanumSquareNeoTTF-aLt.eot");
    src: url("../fonts/NanumSquareNeoTTF-aLt.eot?#iefix") format("embedded-opentype"), url("../fonts/NanumSquareNeoTTF-aLt.woff2") format("woff2"), url("../fonts/NanumSquareNeoTTF-aLt.woff") format("woff"), url("../fonts/NanumSquareNeoTTF-aLt.ttf") format("truetype");
    font-display: swap;
}
@font-face {
    font-family: "NanumSquareNeo";
    font-weight: 300;
    font-style: normal;
    src: url("../fonts/NanumSquareNeoTTF-bRg.eot");
    src: url("../fonts/NanumSquareNeoTTF-bRg.eot?#iefix") format("embedded-opentype"), url("../fonts/NanumSquareNeoTTF-bRg.woff2") format("woff2"), url("../fonts/NanumSquareNeoTTF-bRg.woff") format("woff"), url("../fonts/NanumSquareNeoTTF-bRg.ttf") format("truetype");
    font-display: swap;
}
@font-face {
    font-family: "NanumSquareNeo";
    font-weight: 400;
    font-style: normal;
    src: url("../fonts/NanumSquareNeoTTF-cBd.eot");
    src: url("../fonts/NanumSquareNeoTTF-cBd.eot?#iefix") format("embedded-opentype"), url("../fonts/NanumSquareNeoTTF-cBd.woff2") format("woff2"), url("../fonts/NanumSquareNeoTTF-cBd.woff") format("woff"), url("../fonts/NanumSquareNeoTTF-cBd.ttf") format("truetype");
    font-display: swap;
}
@font-face {
    font-family: "NanumSquareNeo";
    font-weight: 500;
    font-style: normal;
    src: url("../fonts/NanumSquareNeoTTF-dEb.eot");
    src: url("../fonts/NanumSquareNeoTTF-dEb.eot?#iefix") format("embedded-opentype"), url("../fonts/NanumSquareNeoTTF-dEb.woff2") format("woff2"), url("../fonts/NanumSquareNeoTTF-dEb.woff") format("woff"), url("../fonts/NanumSquareNeoTTF-dEb.ttf") format("truetype");
    font-display: swap;
}
@font-face {
    font-family: "NanumSquareNeo";
    font-weight: 600;
    font-style: normal;
    src: url("../fonts/NanumSquareNeoTTF-eHv.eot");
    src: url("../fonts/NanumSquareNeoTTF-eHv.eot?#iefix") format("embedded-opentype"), url("../fonts/NanumSquareNeoTTF-eHv.woff2") format("woff2"), url("../fonts/NanumSquareNeoTTF-eHv.woff") format("woff"), url("../fonts/NanumSquareNeoTTF-eHv.ttf") format("truetype");
    font-display: swap;
}

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
.en_font {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
}

/* 여백 초기화 */
html,
body,
div,
ul,
li,
dl,
dd,
dt,
ol,
h1,
h2,
h3,
h4,
h5,
h6,
input,
fieldset,
legend,
p,
select,
table,
th,
td,
tr,
textarea,
button,
form,
figure,
figcaption {
    margin: 0;
    padding: 0;
}

/* border-sizing */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* a 링크 초기화 */
a {
    text-decoration: none;
    outline: none;
    color: #483e3c;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
}
a:hover {
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
button {
    -webkit-tap-highlight-color: transparent;
}
label {
    -webkit-tap-highlight-color: transparent;
}

textarea br {
    font-family: initial !important;
}

/* 폰트 초기화 */
html,
body,
input,
textarea,
select,
button,
table {
    font-family: "NanumSquareNeo", Times, Arial, Helvetica, sans-serif;
    color: #483e3c;
    font-size: 13px;
    line-height: 1.4;
    outline: none;
    font-weight: 400;
}

/* 폰트 스타일 초기화 */
em,
address {
    font-style: normal;
}

/* 블릿기호 초기화 */
ul,
li,
ol {
    list-style: none;
}

/* 제목 태그 초기화 */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: 1rem;
    font-weight: normal;
}

/* 버튼 초기화 */
button {
    border: 0;
    outline: 0;
    cursor: pointer;
}

/* 반응형 */
img {
    width: 100%;
}

/* 테두리 초기화 */
img,
fieldset {
    border: 0 none;
}

/* clearfix */
.clearfix {
    zoom: 1;
}
.clearfix:before,
.clearfix:after {
    display: block;
    content: "";
    line-height: 0;
}
.clearfix:after {
    clear: both;
}

/* flort */
.float_L {
    float: left;
}
.float_R {
    float: right;
}

/* IR 효과 */
.ir_pm {
    display: block;
    overflow: hidden;
    font-size: 0;
    line-height: 0;
    text-indent: -9999px;
} /* 의미있는 이미지의 대체 텍스트를 제공하는 경우(Phark Method) */
.ir_wa {
    display: block;
    overflow: hidden;
    position: relative;
    z-index: -1;
    width: 100%;
    height: 100%;
} /* 의미있는 이미지의 대체 텍스트로 이미지가 없어도 대체 텍스트를 보여주고자 할 때(WA IR) */
.ir_su {
    overflow: hidden;
    position: absolute;
    width: 0;
    height: 0;
    line-height: 0;
    font-size: 0;
    text-indent: -9999px;
} /* 대체 텍스트가 아닌 접근성을 위한 숨김 텍스트를 제공할 때 */

/* flex_option */
.flex_auto {
    flex: auto !important;
}
.d-block {
    display: block !important;
}
.d-flex {
    display: flex !important;
}
.d-flex-center {
    display: flex !important;
    align-items: center;
}
.flex-1 {
    flex: 1 !important;
}
.flex-2 {
    flex: 2 !important;
}
.flex-3 {
    flex: 3 !important;
}

/* width, height */
.w50 {
    width: 50px !important;
}
.w60 {
    width: 60px !important;
}
.w70 {
    width: 70px !important;
}
.w80 {
    width: 80px !important;
}
.w90 {
    width: 90px !important;
}
.w100 {
    width: 100px !important;
}
.w150 {
    width: 150px !important;
}
.w200 {
    width: 200px !important;
}
.w250 {
    width: 250px !important;
}
.w300 {
    width: 300px !important;
}
.w350 {
    width: 350px !important;
}
.w400 {
    width: 400px !important;
}
.w450 {
    width: 450px !important;
}
.w500 {
    width: 500px !important;
}
.w550 {
    width: 550px !important;
}
.w600 {
    width: 600px !important;
}
.w650 {
    width: 650px !important;
}
.w700 {
    width: 700px !important;
}
.w750 {
    width: 750px !important;
}
.w800 {
    width: 800px !important;
}
.w850 {
    width: 850px !important;
}
.w900 {
    width: 900px !important;
}

.h50 {
    width: 50px !important;
}
.h100 {
    width: 100px !important;
}
.h150 {
    width: 150px !important;
}
.h200 {
    width: 200px !important;
}
.h250 {
    width: 250px !important;
}
.h300 {
    width: 300px !important;
}
.h350 {
    width: 350px !important;
}
.h400 {
    width: 400px !important;
}
.h450 {
    width: 450px !important;
}
.h500 {
    width: 500px !important;
}

/* margin, padding */
.mt0 {
    margin-top: 0 !important;
}
.mt5 {
    margin-top: 5px !important;
}
.mt10 {
    margin-top: 10px !important;
}
.mt15 {
    margin-top: 15px !important;
}
.mt20 {
    margin-top: 20px !important;
}
.mt25 {
    margin-top: 25px !important;
}
.mt30 {
    margin-top: 30px !important;
}
.mt35 {
    margin-top: 35px !important;
}
.mt40 {
    margin-top: 40px !important;
}
.mt45 {
    margin-top: 45px !important;
}
.mt50 {
    margin-top: 50px !important;
}

.mr0 {
    margin-right: 0 !important;
}
.mr5 {
    margin-right: 5px !important;
}
.mr10 {
    margin-right: 10px !important;
}
.mr15 {
    margin-right: 15px !important;
}
.mr20 {
    margin-right: 20px !important;
}
.mr25 {
    margin-right: 25px !important;
}
.mr30 {
    margin-right: 30px !important;
}
.mr35 {
    margin-right: 35px !important;
}
.mr40 {
    margin-right: 40px !important;
}
.mr45 {
    margin-right: 45px !important;
}
.mr50 {
    margin-right: 50px !important;
}

.mb0 {
    margin-bottom: 0 !important;
}
.mb5 {
    margin-bottom: 5px !important;
}
.mb10 {
    margin-bottom: 10px !important;
}
.mb15 {
    margin-bottom: 15px !important;
}
.mb20 {
    margin-bottom: 20px !important;
}
.mb25 {
    margin-bottom: 25px !important;
}
.mb30 {
    margin-bottom: 30px !important;
}
.mb35 {
    margin-bottom: 35px !important;
}
.mb40 {
    margin-bottom: 40px !important;
}
.mb45 {
    margin-bottom: 45px !important;
}
.mb50 {
    margin-bottom: 50px !important;
}

.ml0 {
    margin-left: 0 !important;
}
.ml5 {
    margin-left: 5px !important;
}
.ml10 {
    margin-left: 10px !important;
}
.ml15 {
    margin-left: 15px !important;
}
.ml20 {
    margin-left: 20px !important;
}
.ml25 {
    margin-left: 25px !important;
}
.ml30 {
    margin-left: 30px !important;
}
.ml35 {
    margin-left: 35px !important;
}
.ml40 {
    margin-left: 40px !important;
}
.ml45 {
    margin-left: 45px !important;
}
.ml50 {
    margin-left: 50px !important;
}

.pt0 {
    padding-top: 0 !important;
}
.pt5 {
    padding-top: 5px !important;
}
.pt10 {
    padding-top: 10px !important;
}
.pt15 {
    padding-top: 15px !important;
}
.pt20 {
    padding-top: 20px !important;
}
.pt25 {
    padding-top: 25px !important;
}
.pt30 {
    padding-top: 30px !important;
}
.pt35 {
    padding-top: 35px !important;
}
.pt40 {
    padding-top: 40px !important;
}
.pt45 {
    padding-top: 45px !important;
}
.pt50 {
    padding-top: 50px !important;
}

.pr0 {
    padding-right: 0 !important;
}
.pr5 {
    padding-right: 5px !important;
}
.pr10 {
    padding-right: 10px !important;
}
.pr15 {
    padding-right: 15px !important;
}
.pr20 {
    padding-right: 20px !important;
}
.pr25 {
    padding-right: 25px !important;
}
.pr30 {
    padding-right: 30px !important;
}
.pr35 {
    padding-right: 35px !important;
}
.pr40 {
    padding-right: 40px !important;
}
.pr45 {
    padding-right: 45px !important;
}
.pr50 {
    padding-right: 50px !important;
}

.pb0 {
    padding-bottom: 0 !important;
}
.pb5 {
    padding-bottom: 5px !important;
}
.pb10 {
    padding-bottom: 10px !important;
}
.pb15 {
    padding-bottom: 15px !important;
}
.pb20 {
    padding-bottom: 20px !important;
}
.pb25 {
    padding-bottom: 25px !important;
}
.pb30 {
    padding-bottom: 30px !important;
}
.pb35 {
    padding-bottom: 35px !important;
}
.pb40 {
    padding-bottom: 40px !important;
}
.pb45 {
    padding-bottom: 45px !important;
}
.pb50 {
    padding-bottom: 50px !important;
}

.pl0 {
    padding-left: 0 !important;
}
.pl5 {
    padding-left: 5px !important;
}
.pl10 {
    padding-left: 10px !important;
}
.pl15 {
    padding-left: 15px !important;
}
.pl20 {
    padding-left: 20px !important;
}
.pl25 {
    padding-left: 25px !important;
}
.pl30 {
    padding-left: 30px !important;
}
.pl35 {
    padding-left: 35px !important;
}
.pl40 {
    padding-left: 40px !important;
}
.pl45 {
    padding-left: 45px !important;
}
.pl50 {
    padding-left: 50px !important;
}
