@charset "utf-8";
@font-face {
    font-family: "Noto Sans KR";
    font-style: normal;
    font-weight: 400;
    src: url("https://cdn.jsdelivr.net/npm/@openfonts/noto-sans-kr_korean@1.44.1/files/noto-sans-kr-korean-400.woff2") format("woff2"), url("https://cdn.jsdelivr.net/npm/@openfonts/noto-sans-kr_korean@1.44.1/files/noto-sans-kr-korean-400.woff") format("woff");
}

@font-face {
    font-family: "Noto Sans KR";
    font-style: normal;
    font-weight: 700;
    src: url("https://cdn.jsdelivr.net/npm/@openfonts/noto-sans-kr_korean@1.44.1/files/noto-sans-kr-korean-700.woff2") format("woff2"), url("https://cdn.jsdelivr.net/npm/@openfonts/noto-sans-kr_korean@1.44.1/files/noto-sans-kr-korean-700.woff") format("woff");
}

:root {
    --container-max: 1280px; /* 페이지 전체 최대 폭 */
    --content-max: 72ch; /* 본문 가독 폭(≈60~75ch 권장) */
    --gutter: clamp(16px, 4vw, 48px); /* 좌우 여백 */
    --gap: clamp(16px, 2.5vw, 32px); /* 섹션 간격 */
    --tab-gap: clamp(30px, 1.5vw, 40px);
    --tab-pad-y: clamp(6px, 1vw, 10px);
    --tab-pad-x: clamp(10px, 2vw, 16px);
    --fs-body: clamp(14px, 1.2vw, 18px);
    --fs-title: clamp(18px, 2.2vw, 28px);

    --main-color: #005B6F;
    --hover-main-color: #007A8F;
    --main2-color: #4DB6AC;
    --hover-main2-color: #399F8C;
    --light-main-color: #99D6E0;
    --most-light-main-color: #CCEEF0;
    --border-color: #e8e8ee;
    --blue-color: #A7C7E7;
    --blue-hover-color: #92B4D4;
    --red-color: #F28B82;
    --red-hover-color: #E57373;
    --edit-color: #AED581;
    --edit-hover-color: #9CCC65;
    --cancel-color: #B0BEC5;
    --cancel-hover-color: #90A4AE;

    --main-font-color: #353535;
    --hover-main-font-color: #4A4A4A;
    --gray-font-color: #929294;
    --default-font-size: 14px;
    --menu-font-size: 16px;
    --title-font-size: 20px;
    --button-font-size: 15px;
    --mo-button-font-size: 13px;
    --table-font-size: 16px;
    --input-header-font-size: 18px;
    --input-font-size: 17px;
    --footer-font-size: 14px;
    --mo-footer-font-size: 10px;
}

.hidden {
    opacity: 0;
    width: 0;
    height: 0;
}

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

::before, ::after {
    text-decoration: inherit;
    vertical-align: inherit;
}

.cf:after {
    display: block;
    content: "";
    clear: both;
}

html {
    width: 100%;
    height: 100%;
    cursor: default;
    -moz-tab-size: 4;
    tab-size: 4;
    -webkit-tap-highlight-color: transparent;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    word-break: break-word;
    overscroll-behavior-y: none;
}

body {
    overscroll-behavior-y: none;
}

body, button, dd, dl, dt, fieldset, form, h1, h2, h3, h4, h5, h6, input, legend, li, ol, p, select, table, td, textarea, th, ul {
    margin: 0;
    padding: 0;
}

body, button, input, select, table, textarea {
    font-size: 13px;
    line-height: 1.5;
    color: #101010;
    font-family: "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Malgun Gothic", "맑은 고딕", helvetica, "Apple SD Gothic Neo", arial, dotum, 돋움, sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-size: inherit;
    line-height: inherit;
}

hr {
    height: 0;
    overflow: visible;
}

main, details {
    display: block;
}

dl, ul, menu {
    list-style: none;
}

ol {
    list-style-type: disc;
}

pre, code, kbd, samp {
    font-family: monospace, monospace;
    font-size: 1em;
}

address, em, i {
    font-style: normal;
}

a {
    background-color: transparent;
    text-decoration: none;
    color: inherit;
}

a:hover {
    text-decoration: none;
}

abbr[title] {
    text-decoration: underline;
    text-decoration: underline dotted;
}

b, strong {
    font-weight: bolder;
}

small {
    font-size: 80%;
}

sub, sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sub {
    bottom: -0.25em;
}

sup {
    top: -0.5em;
}

audio, canvas, iframe, img, svg, video {
    vertical-align: middle;
}

audio, video {
    display: inline-block;
}

img {
    vertical-align: top;
}

iframe, img, fieldset {
    border-style: none;
}

img, video {
    max-width: 100%;
}

svg:not([fill]) {
    fill: currentColor;
}

svg:not(:root) {
    overflow: hidden;
}

img[src$=".gif"], img[src$=".png"] {
    image-rendering: -moz-crisp-edges;
    image-rendering: -o-crisp-edges;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    -ms-interpolation-mode: nearest-neighbor;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

button {
    background-color: transparent;
}

button, select {
    text-transform: none;
}

button, input {
    border: 0;
    border-radius: 0;
    overflow: visible;
}

input:focus {
    outline: none;
}

button, [type="button"], [type="reset"], [type="submit"] {
    -webkit-appearance: button;
}

figure {
    margin: 0;
}

fieldset {
    border: 1px solid #a0a0a0;
    padding: 0.35em 0.75em 0.625em;
}

input {
    overflow: visible;
}

legend {
    color: inherit;
    display: table;
    max-width: 100%;
    white-space: normal;
}

progress {
    display: inline-block;
    vertical-align: baseline;
}

select {
    text-transform: none;
}

textarea {
    overflow: auto;
    resize: vertical;
}

[type="checkbox"], [type="radio"] {
    padding: 0;
}

[type="search"] {
    -webkit-appearance: textfield;
    outline-offset: -2px;
}

::-webkit-inner-spin-button, ::-webkit-outer-spin-button {
    height: auto;
}

::-webkit-input-placeholder {
    color: inherit;
    opacity: 0.54;
}

::-webkit-search-decoration {
    -webkit-appearance: none;
}

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit;
}

::-moz-focus-inner {
    border-style: none;
    padding: 0;
}

:-moz-focusring {
    outline: 1px dotted ButtonText;
}

:-moz-ui-invalid {
    box-shadow: none;
}

dialog {
    background-color: #fff;
    border: solid;
    color: #000;
    display: block;
    height: -moz-fit-content;
    height: -webkit-fit-content;
    height: fit-content;
    left: 0;
    margin: auto;
    padding: 1em;
    position: absolute;
    right: 0;
    width: -moz-fit-content;
    width: -webkit-fit-content;
    width: fit-content;
}

dialog:not([open]) {
    display: none;
}

summary {
    display: list-item;
}

a, area, button, input, label, select, summary, textarea, [tabindex] {
    -ms-touch-action: manipulation;
    touch-action: manipulation;
}

[hidden] {
    display: none;
}

[aria-busy="true"] {
    cursor: progress;
}

[aria-controls] {
    cursor: pointer;
}

[aria-disabled="true"], [disabled] {
    cursor: not-allowed;
}

[aria-hidden="false"][hidden] {
    display: initial;
}

[aria-hidden="false"][hidden]:not(:focus) {
    clip: rect(0, 0, 0, 0);
    position: absolute;
}
