@charset "UTF-8";

:root {
    --app-height: 100vh;
}

/* reset */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, main {
    display: block;
}

body {
    line-height: 1;
}

body .wrapper { transition: opacity 300ms ease-in-out; }
body.start .wrapper { opacity: 0; }
body.loaded .wrapper { opacity: 1; }

ol, ul {
    list-style: none;
}

blockquote, q { quotes: none; }
blockquote:before, blockquote:after, q:before, q:after {
    content: "";
    content: none;
}

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

html {
    font-family: "Noto Sans KR", -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #000;
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

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

html, body {
    background-color: #fff;
}

.wrapper {
    max-width: 480px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    box-shadow: unset;
    background-color: #fff;
    min-height: 100vh;
    scroll-behavior: smooth;
}

body {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

body.loaded {
    position: static;
}

* {
    letter-spacing: -0.015em;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 96px;
}

/* modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    visibility: hidden;
    z-index: -1;
    transition: all 400ms;
    overflow: auto;
}

.modal.active {
    z-index: 9999999;
    opacity: 1;
    visibility: visible;
}

.modal .inner {
    background: rgba(0, 0, 0, 0.8);
    position: relative;
    min-height: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px;
    box-sizing: border-box;
}

.modal .modal-box {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
    background: #FFFFFF;
    width: 100%;
    box-sizing: border-box;
    max-width: 500px;
}

.modal .close {
    display: block;
    width: 60px;
    min-width: 60px;
    height: 60px;
    min-height: 60px;
    background: url(/img/icon/x.svg) no-repeat 50% 50%;
    text-indent: -999em;
    overflow: hidden;
    border-radius: 50%;
}

#pcMstockDownloadModal .title-area {
    text-align: center;
    padding: 40px 20px 40px 20px;
    font-weight: 500;
}

#pcMstockDownloadModal .title-area h2 {
    font-size: 18px;
    font-weight: 500;
    line-height: 25px;
    letter-spacing: 0em;
    text-align: center;
    color: #043B72;
}

#pcMstockDownloadModal .title-area h3 {
    font-family: Noto Sans KR;
    font-size: 40px;
    font-weight: 700;
    line-height: 48px;
    letter-spacing: -0.005em;
    text-align: center;
    color: #F58220;
}

#pcMstockDownloadModal .title-area p {
    margin-top: 5px;
    font-size: 11px;
    line-height: 1.45;
    letter-spacing: 0.01em;
    color: #888;
}

#pcMstockDownloadModal .type {
    border-top: 1px solid #CECED8;
    padding: 30px;
}

#pcMstockDownloadModal .type .grid {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    row-gap: 12px;
    width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

#pcMstockDownloadModal .type .grid .col {
    flex: 0 0 calc(50% - 12px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: calc(50% - 12px);
    height: auto;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

#pcMstockDownloadModal .type .grid .col > a {
    display: block;
    width: auto;
    height: auto;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

#pcMstockDownloadModal .type .grid .col > a img {
    width: 100%;
    max-width: 100%;
    height: auto;
}

img.border { border: 2px solid #F58220; }

/* section-notice */
.section-notice {
    max-width: 1440px;
    margin: 0 auto 80px auto;
    padding: 0 96px;
    background: #fff;
}

.section-notice .toggle,
.section-notice .notoggle {
    display: flex;
    align-items: center;
    height: 62px;
    border-top: 1px solid #CECED8;
    padding: 0 30px;
    font-weight: 500;
    font-size: 18px;
    line-height: 145%;
    letter-spacing: 0.005em;
}

.section-notice .toggle i {
    margin-left: auto;
    width: 12px;
    height: 12px;
    background: url(/img/icon/plus-sm.svg) 50% 50% no-repeat;
    display: block;
}

.section-notice .toggle.active i {
    background-image: url(/img/icon/minus-sm.svg);
}

.section-notice .toggle.active + .notice {
    height: auto;
}

.section-notice .notice {
    border-top: 1px solid #CECED8;
    font-weight: 500;
    font-size: 11px;
    line-height: 145%;
    height: 0;
    overflow: hidden;
    box-sizing: border-box;
}

.section-notice.none {
    padding-top: 0;
    margin: 0 auto 0 auto;
}

.section-notice.none .notice {
    overflow: auto;
    height: auto;
}

.section-notice .notice .container {
    padding: 20px 30px;
}

.section-notice .notice h4 {
    margin-bottom: 10px;
    font-size: 13px;
    font-weight: 500;
    line-height: 145%;
}

.section-notice .notice p {
    margin-bottom: 20px;
    font-size: 13px;
    font-weight: 500;
    line-height: 145%;
    color: #888888;
}

.section-notice .notice em {
    color: #F58220;
}

.section-notice .notice ul {
    margin-bottom: 30px;
}

.section-notice .notice li {
    padding-left: 7px;
    text-indent: -7px;
    font-size: 13px;
    font-weight: 500;
    line-height: 145%;
    color: #888888;
}

.section-notice .notice ul li ul {
    margin-bottom: 0;
}

.section-notice .notice li ul li {
    padding-left: 7px;
    text-indent: -7px;
}

.section-notice .notice p.txt em {
    font-size: 16px;
    color: #888888;
}

.section-notice.txt {
    margin-bottom: 0;
    background: #f9f9f9;
}

.section-notice.txt .notice {
    border-top: 0;
    height: auto;
}

.section-notice.txt .notice .container {
    padding: 50px 0 30px;
}

.section-notice.txt .notice .container ul {
    margin-bottom: 40px;
    font-size: 13px;
    font-weight: 500;
    line-height: 19px;
    letter-spacing: 0.005em;
    text-align: left;
}

html.desktop .wrapper {
    max-width: 1440px;
    min-width: 1440px;
}
