@charset "UTF-8";
@import url('../../css/common/webfonts.css');

/****************************************/
/*  Name : byWIND
/*  PART : reset.css
/*  Version : 2.0
/*  Author : 이소망
/*  Modify : 
/****************************************/

/* (전체) 공통 변수 */
:root {
    /* font-family */
    --poppins: "Poppins";
    --nanumsquare: "NanumSquare";
    --gothic: "Gothic A1";

    /* icon */
    --lineawesome: "Line Awesome Free";
    --xeicon: "xeicon";

    /* color */
    --point-color: #475df1;
    --hd-font-color: #333;
    --placeholder-color: #bebfc1;

    /* border */
    --table-border: #eaeaf2;
    --input-border: #dcdcdc;
}

/* 키보드로 포커스 시 */
a:focus-visible, button:focus-visible, input:focus-visible {outline: solid #000; border-radius: 1px;}
input[type="radio"]:focus-visible {outline: solid #000; border-radius: 1px; position: absolute; width: 16px;  height: 16px; top: 50%; left: 50%; transform: translate(-50%, -50%);}
/* 마우스, 터치로 포커스 시 */
a:focus:not(:focus-visible),
button:focus:not(:focus-visible),
input:focus:not(:focus-visible),
select:focus:not(:focus-visible) {outline: none;}

/* reset */
html {font-size: 20px; margin: 0; padding: 0; box-sizing: border-box;}
body {width: 100%; min-height: 100vh; margin: 0; padding: 0; font-size: 0.8rem; line-height: 1.25; color: #777; word-break: keep-all; font-family: var(--poppins), var(--gothic), sans-serif; letter-spacing: -0.1px; text-size-adjust : none; overflow: overlay;}
*,*:before,*:after {box-sizing: border-box;}
::selection {background: #475ef118;} /*드래그컬러효과*/
ul,ol,li,dl,dt,dd {margin: 0;padding: 0;list-style: none;}
p,h1,h2,h3,h4,h5,h6 {margin: 0; padding: 0; letter-spacing: normal; transform: rotate(-0.1deg);}
a {color: inherit; text-decoration: none;}
a[href^="tel"] {font-style: normal;}
img {border: 0;max-width: 100%;height: auto;width: auto; vertical-align: middle;}
img::selection {background: none;}
table {border-collapse: collapse;width: 100%;border-spacing: 0;}
caption, legend {position: absolute;width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); border: 0;}
textarea {resize: none; -webkit-appearance: none;overflow: auto;vertical-align: top; outline: none;}
address,caption,em,i,var {font-style: normal;  font-weight: normal;}
button {border: 0;background: none;cursor: pointer;margin: 0;padding: 0; -webkit-appearance:none;border-radius: 0;}
hr {margin: 0; border: none; padding: 0; display: block;}
form, figure, figcaption {padding: 0; margin: 0; -webkit-appearance: none;}
fieldset {border: none; padding: 0; margin: 0; border: 0;}
header, footer, article, section, aside, nav, main, details, menu, figcaption, figure {display: block;}
legend, caption {display: none;}
br {letter-spacing: normal;}
span, em {letter-spacing: -0.5px;}
pre, code {vertical-align: baseline; outline: 0; padding: 0; margin: 0; border: 0; font-family: var(--poppins), var(--gothic),sans-serif;}

input, optgroup, select, textarea {font-family: inherit; font-size: inherit; font-weight: inherit; margin: 0;-webkit-appearance: none;  -moz-appearance: none;appearance: none;border: 0; vertical-align: middle; border-radius: 0;}
input[type="text"] {outline: none;}
input:checked[type="checkbox"] {-webkit-appearance: none;}

input[type=search] {-webkit-appearance: none;appearance: none;-webkit-box-sizing: content-box;box-sizing: content-box;font-family: inherit;  font-size: 100%;}
input::-webkit-search-decoration, input::-webkit-search-cancel-button {display: none;}

/* input type number 에서 화살표 제거 */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {-webkit-appearance: none;-moz-appearance: none;appearance: none;margin: 0;}
select {-webkit-appearance: none; -moz-appearance: none; appearance: none;} /* Select box 스타일 초기화 */

/* input placeholder style */
input::-webkit-input-placeholder {color: var(--placeholder-color);}
input::-moz-placeholder {color: var(--placeholder-color);}
input::placeholder {color: var(--placeholder-color);}
select::-webkit-input-placeholder {color: var(--placeholder-color);}
select::-moz-placeholder {color: var(--placeholder-color);}
select::placeholder {color: var(--placeholder-color);}
textarea::-webkit-input-placeholder {color: var(--placeholder-color);}
textarea::-moz-placeholder {color: var(--placeholder-color);}
textarea::placeholder {color: var(--placeholder-color);}

/* Skip Navigation */
.skip-to {display: block; position: absolute; width: 100%; line-height: 1.6rem; margin: 0 auto; overflow: hidden; background: #000; color: #fff; font-size: 0.6rem; font-weight: 700; text-align: center;opacity: 0;}
.skip-to:active, .skip-to:focus {opacity: 1; outline: none; z-index: 10000;}
.sr-only {overflow: hidden;  position: absolute; border: 0; width: 1px; height: 1px; clip: rect(1px, 1px, 1px, 1px);}
.blind {overflow: hidden; position: absolute; clip: rect(0 0 0 0); width: 1px; height: 1px; margin: -1px;}

/* print */
@media print {
  * {box-sizing: border-box; -webkit-print-color-adjust: exact !important; color-adjust: exact !important;}
  html, body {margin:0; padding:0;page-break-after: avoid; page-break-before: avoid;}
  header,  aside,  footer {display: none;} 
  table, figure {width: 100%; page-break-inside: avoid;}
  table {page-break-inside: auto; width: 90%;}
  tr {page-break-inside: avoid; page-break-after: auto;}
  thead {display: table-header-group;}
  tfoot {display: table-footer-group;}
}
@page {size: A4 portrait; margin:0;}
@page {size: A4 landscape; margin:0;}

