@import url('https://cdn.jsdelivr.net/gh/jgthms/minireset.css@master/minireset.min.css');
@import url('https://cdn.jsdelivr.net/gh/sun-typeface/SUIT/fonts/variable/woff2/SUIT-Variable.css');
:root {
    --clr-white: #fff;
    --clr-light: #999;
    --clr-gray: #666;
    --clr-dark: #333;
    --clr-black: #000;
    --clr-border: #ddd;
    --clr-primary: #FF3000;
    --clr-warning: #C01515;
}
a {
    text-decoration: none;
    color: inherit;
}
html, body {
    font-family: 'SUIT Variable', sans-serif;
    font-size: 62.5%; /* For Web Accessibility 10px = 1rem */
    overflow-x: hidden;
    color: var(--clr-black);
    font-weight: 400;
}
* {
    outline-color: var(--clr-primary);
}
input, select, textarea{
    font-family: inherit;
    outline-offset: -0.1rem;
    background-color: var(--clr-white);
}
/* scroll css override */
::-webkit-scrollbar {
    width: 1.2rem;
    background: none;
}
::-webkit-scrollbar-thumb {
    background-color: var(--clr-primary);
    border-radius: 99vw;
}
::-webkit-scrollbar-track {
    background-color: #F0F0F0;
}
/* scroll css for firefox */
/* Firefox */
* {
    scrollbar-color: var(--clr-primary) #f0f0f0;
}
.container {
    max-width: 1620px;
    width: calc(100% - 4rem);
    /* padding-inline: 2rem; */
    margin: 0 auto;
}
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--clr-white);
    z-index: 999;
}
header::after {
    position: absolute;
    content: '';
    width: 100%;
    height: 0.1rem;
    bottom: 0;
    left: 0;
    background-color: var(--clr-border);
}
header .container {
    display: flex;
    align-items: center;
    height: 10rem;
}
header .container .logo h1 {
    width: 25.2rem;
    height: 4.6rem;
    font-size: 0;
    background-image: url('../images/common/logo.svg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
header .container .gnb {
    display: flex;
    align-items: center;
    flex-grow: 1;
    margin-left: 2rem;
    height: 100%;
}
header .container .gnb > li {
    height: 100%;
}
header .container .gnb li a {
    margin: 0 3.2rem;
    font-size: 1.8rem;
    height: 100%;
    display: grid;
    place-items: center;
    position: relative;
}
header .container .gnb li a::after {
    position: absolute;
    content: '';
    left: 50%;
    translate: -50% 0;
    bottom: 2rem;
    width: 0%;
    height: 2px;
    background-color: var(--clr-black);
    transition: 0.3s all;
}
header .container .gnb li a:hover::after {
    width: 100%;
}
header .container .subMenu {
    display: flex;
    align-items: center;
    gap: 3.5rem;
}
header .container .subMenu > a {
    font-size: 1.2rem;
    color: var(--clr-gray);
    display: grid;
    place-items: center;
    gap: 0.9rem;
}
header .container .subMenu > a img {
    width: 3.2rem;
    aspect-ratio: 1/1;
    object-fit: contain;
    object-position: center;
}
header .container > a + a {
    margin-left: 3.2rem;
}
header .container .gnb .lnb {
    position: relative;
    max-height: 0;
    overflow-x: visible;
    overflow-y: clip;
    transition: 0.5s all;
    display: flex;
    flex-direction: column;
    align-items: center;
}
/* must choose longest lnb */
header .container .gnb li:nth-of-type(2) .lnb::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 200vw;
    height: 100%;
    background-color: var(--clr-white);
    translate: -50% 0;
    z-index: -1;
    border-bottom: 0.1rem solid var(--clr-border);
}
header .container .gnb[aria-expanded='true'] .lnb {
    padding-top: 3rem;
    padding-bottom: 6rem;
    max-height: 90vh;
}

header .container .gnb .lnb li a {
    color: var(--clr-gray);
    font-size: 1.6rem;
    position: relative;
    width: max-content;
    transition: 0.3s all;
}
header .container .gnb .lnb li a::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -0.4em;
    width: 0;
    height: 0.3rem;
    translate: -50% 0;
    background-color: var(--clr-primary);
    transition: 0.3s all;
}
header .container .gnb .lnb li a:hover {
    color: var(--clr-primary);
    font-weight: 600;
}
header .container .gnb .lnb li a:hover::after {
    width: 100%;
}
header .container .gnb .lnb li + li {
    margin-top: 3rem;
}
main {
    margin-top: 10rem;
}
/* floatBanner */
aside.mobileFloatBanner {display: none;}
aside.floatBanner {
    max-width: 8rem;
    width: 100%;
    position: fixed;
    top: 50%;
    right: 0;
    translate: 0 -50%;
    background-color: #FEFDF5;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 10;
    padding-bottom: 2rem;
}
aside.floatBanner > em {
    background-color: var(--clr-primary);
    height: 3.8rem;
    display: grid;
    place-items: center;
    font-size: 2rem;
    font-weight: 700;
    font-style: normal;
    color: var(--clr-white);
    width: 100%;
}
aside.floatBanner > p {
    writing-mode: vertical-rl;
    text-orientation: upright;
    font-size: 1.8rem;
    color: var(--clr-dark);
    font-weight: 600;
    margin-top: 1.4rem;
    margin-bottom: 1.4rem;
}
aside.floatBanner > span {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--clr-dark);
    margin-bottom: 2rem;
}
aside.floatBanner > .planLink {
    width: 3.2rem;
    aspect-ratio: 1/1;
    opacity: 0.3;
    transition: 0.3s opacity;
}
aside.floatBanner > .planLink:hover {
    opacity: 1;
}
aside.floatBanner > .planLink img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

/* footer */
footer {
    margin-top: 15rem;
    background-color: var(--clr-dark);
}
footer .fnb {
    position: relative;
    color: var(--clr-light);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-block: 2.7rem;
    font-size: max(12px,1.6rem);
}
footer .fnb::after {
    content: '';
    position: absolute;
    width: 100vw;
    height: 1px;
    background-color: var(--clr-gray);
    bottom: 0;
    left: 50%;
    translate: -50% 0;
}
footer .fnb > li:nth-child(1) {
    color: var(--clr-gray);
}
footer .fnb > li:nth-child(1) > a:nth-child(2) {
    font-weight: 700;
    color: var(--clr-light);
}
footer .fnb > li:nth-child(1) > a+a {
    margin-left: 4.8rem;
    position: relative;
}
footer .fnb > li:nth-child(1) > a+a::before {
    content: '';
    position: absolute;
    width: 1px;
    height: 1.6rem;
    background-color: var(--clr-gray);
    left: -2.4rem;
    top: 50%;
    translate: 0 -50%;
    pointer-events: none;
    user-select: none;
}
footer .fnb > li:nth-child(2) {
    display: flex;
    align-items: center;
    gap: 4rem;
}
footer .fnb div .familySite {
    padding: 0.8rem 1.5rem;
    border: 0.1rem solid var(--clr-light);
    border-radius: 99vw;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
footer .fnb div {
    position: relative;
}
footer .fnb div .familySite + ul {
    position: absolute;
    right: 0;
    bottom: -1rem;
    translate: 0% 100%;
    max-height: 0;
    overflow: hidden;
    transition: 0.3s all;
    border: 0.1rem solid transparent;
    width: max-content;
    box-sizing: content-box;
    background-color: var(--clr-dark);
    z-index: 1;
    display: flex;
    flex-direction: column;
    row-gap: 1rem;
}
footer .fnb div .familySite + ul[aria-expanded='true'] {
    max-height: 100vh;
    border-color: var(--clr-gray);
    padding: 0.8rem 1.5rem;
}
footer .fnb .familySite::after {
    content: '';
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='6' viewBox='0 0 13 6' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M12.8376 0.249425C12.9566 0.390728 13.014 0.57298 12.9971 0.756116C12.9803 0.939252 12.8906 1.10828 12.7478 1.22605L7.13724 5.84973C6.99381 5.96229 6.81157 6.0149 6.62945 5.99635C6.44733 5.97779 6.27976 5.88953 6.16255 5.75042C6.04534 5.61132 5.98778 5.43239 6.00217 5.25187C6.01656 5.07135 6.10175 4.90356 6.23955 4.78433L11.8501 0.160641C11.993 0.0429577 12.1773 -0.0137981 12.3624 0.0028506C12.5476 0.0194993 12.7185 0.10819 12.8376 0.249425Z' fill='%23999999'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M0.162424 0.249425C0.281496 0.10819 0.452401 0.0194992 0.63757 0.00285051C0.822738 -0.0137982 1.00701 0.0429576 1.14988 0.160641L6.76045 4.78433C6.89825 4.90356 6.98344 5.07135 6.99783 5.25187C7.01222 5.43239 6.95466 5.61131 6.83745 5.75042C6.72024 5.88953 6.55267 5.97779 6.37055 5.99635C6.18843 6.0149 6.00619 5.96229 5.86276 5.84973L0.252193 1.22605C0.10939 1.10828 0.0197157 0.939252 0.00288216 0.756116C-0.0139513 0.57298 0.0434344 0.390728 0.162424 0.249425Z' fill='%23999999'/%3E%3C/svg%3E");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 1.3rem;
    height: 0.6rem;
    margin-left: 1rem;
}
footer .info {
    display: grid;
    grid-template-columns: 22rem minmax(0,1fr);
    align-items: center;
    column-gap: 6rem;
    color: var(--clr-gray);
} 
footer .info .logo {
    width: 100%;
}
footer .info article {
    display: flex;
    flex-direction: column;
}
footer .info article strong{
    font-size: max(14px,1.8rem);
    font-weight: 600;
    margin-top: 2.5rem;
    margin-bottom: 2rem;
}
footer .info article p {
    font-size: max(10px,1.4rem);
    line-height: 1.75;
    margin-bottom: 3.6rem;
}
footer .info article p span+span {
    margin-left: 0.5rem;
    padding-left: 0.5rem;
    border-left: 0.1rem solid var(--clr-gray);
}
/* fullGnb */
@keyframes fadeIn {
    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}
#fullGnb {
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    background-color: var(--clr-white);
    z-index: 1000;
    display: none;
    opacity: 1;
    animation: fadeIn 0.3s;
    transition: 0.3s opacity;
}
#fullGnb .bg {
    position: absolute;
    width: 100vw;
    height: 100vh;
    left: 0;
    bottom: 0;
    translate: 0 100%;
    z-index: -1;
}
#fullGnb .top {
    min-height: 10rem;
    display: flex;
    align-items: center;
    justify-content: end;
}
#fullGnb .top .close {
    font-size: 0;
    width: max(16px,3.2rem);
    aspect-ratio: 1/1;
    cursor: pointer;
    background-image: url('../images/common/icon-close.svg');
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}
#fullGnb .gnb {
    padding-top: 2.8rem;
    padding-bottom: 7.7rem;
    display: flex;
    flex-direction: column;
    row-gap: 7.7rem;
}
#fullGnb .gnb > li {
    display: grid;
    grid-template-columns: max-content minmax(0,1fr);
    column-gap: 3rem;
}
#fullGnb .gnb > li > a {
    width: 7em;
    font-size: max(34px,4.2rem);
    font-weight: 700;
    transition: 0.3s all;
}
#fullGnb .gnb > li > a:hover {
    color: var(--clr-primary);
}
#fullGnb .gnb > li > .lnb {
    display: flex;
    align-items: center;
    font-size: max(16px,2.4rem);
    font-weight: 500;
    color: var(--clr-gray);
    column-gap: 6.5rem;
    row-gap: 3.6rem;
    flex-wrap: wrap;
}
#fullGnb .gnb > li > .lnb a {
    position: relative;
    transition: 0.3s all;
    min-width: max-content;
}
#fullGnb .gnb > li > .lnb a::after {
    position: absolute;
    content: '';
    left: 50%;
    bottom: -0.8rem;
    width: 0;
    height: 0.3rem;
    background-color: var(--clr-primary);
    translate: -50% 0;
    transition: 0.3s all;
}
#fullGnb .gnb > li > .lnb a:hover {
    color: var(--clr-primary);
}
#fullGnb .gnb > li > .lnb a:hover::after {
    width: 100%;
}
#fullGnb .bottom {
    position: relative;
    padding-top: 6rem;
    padding-bottom: 7rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    column-gap: 10.4rem;
    max-height: 100vh;
}
#fullGnb .bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 100vw;
    height: 0.1rem;
    background-color: var(--clr-border);
    translate: -50% 0;
}
#fullGnb .bottom .link {
    font-size: max(22px,3rem);
    color: var(--clr-gray);
    font-weight: 500;
    display: flex;
    align-items: center;
    transition: 0.3s all;
}
#fullGnb .bottom .link::after {
    content: '';
    width: max(30px,4.2rem);
    aspect-ratio: 1/1;
    background-image: url('../images/common/icon-left-circle.svg');
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.3;
    rotate: 180deg;
    margin-left: 2rem;
    transition: 0.3s all;
}
#fullGnb .bottom .link:hover {
    color: var(--clr-primary);
}
#fullGnb .bottom .link:hover::after {
    opacity: 1;
}

/* slidebutton */
.slideButton {
    cursor: pointer;
    aspect-ratio: 1/1;
    width: 4rem;
    background-image: url('../images/common/icon-left-circle.svg');
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.5;
    transition: 0.3s opacity;
}
.slideButton:hover {
    opacity: 1;
}
.slideButton.next {
    background-image: url('../images/common/icon-right-circle.svg');
}
.readMore {
    display: block;
    width: max-content;
    font-size: max(14px,2rem);
    color: var(--clr-primary);
    font-weight: 700;
    position: relative;
    padding-bottom: 1rem;
}
.readMore::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 0.3rem;
    background-color: var(--clr-primary);
    transition: 0.3s all;
    translate: -50% 0;
}
.readMore:hover::after {
    width: 100%;
}

/* modal */
@keyframes modalOpen {
    0% {
        opacity: 0;
        translate: -50% calc(-50% - 5rem);
    }
    100% {
        opacity: 1;
        translate: -50% calc(-50%);
    }
}
html:has(.modal) {
    overflow: hidden;
}
.modal {
    min-width: 50rem;
    width: max-content;
    max-width: 95vw;
    max-height: 95vh;
    overflow: auto;
    position: fixed;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    box-shadow: 0px 4px 28px 0px rgba(0, 0, 0, 0.10);
    background-color: var(--clr-white);
    padding: 3.6rem 3.2rem 4.2rem;
    z-index: 9999;
    transition: 0.3s all;
    opacity: 1;
    animation: modalOpen 0.3s;
}
/* cover for block background click */
.modal.cover {
    overflow-x: hidden;
}
body:has(.modal.cover)::after {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 1000;
}
.modal .title {
    padding-bottom:  1.8rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 0.1rem solid var(--clr-border);
}
.modal .title h1 {
    font-size: max(18px,2rem);
    font-weight: 700;
}
.modal .title .close {
    font-size: 0;
    width: max(14px,1.8rem);
    aspect-ratio: 1/1;
    background-image: url('../images/common/icon-close.svg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
}
.modal .content {
    text-align: center;
    color: var(--clr-gray);
    font-size: max(14px,1.8rem);
    margin-top: 3.2rem;
}
.modal .content em {
    color: var(--clr-primary);
    font-style: normal;
    font-weight: 700;
}
.modal .content strong {
    color: var(--clr-dark);
    font-weight: 700;
}
.modal .buttonList {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 3.2rem;
}
.modal .buttonList a {
    min-width: 14.5rem;
    min-height: 5rem;
    display: grid;
    place-items: center;
    font-size: max(12px,1.8rem);
    font-weight: 700;
    padding-inline: 0.8rem;
}
.modal .buttonList a.subButton {
    border: 0.1rem solid var(--clr-primary);
    background-color: var(--clr-white);
    color: var(--clr-primary);
}
.modal .buttonList a.primaryButton {
    background-color: var(--clr-primary);
    color: var(--clr-white);
}
/* inputs */
form label span {
    font-size: max(18px,2.2rem);
    color: var(--clr-dark);
    font-weight: 700;
}
form label span.mandatory::before {
    content: '* ';
}
form label + label {
    margin-top: 4rem;
}
form label {
    display: flex;
    flex-direction: column;
    position: relative;
}
form label input,
form label select {
    border: 0.1rem solid var(--clr-border);
    width: 100%;
    height: max(40px,6rem);
    margin: 0;
    padding: 0 2.4rem;
    font-size: max(14px,2rem);
    appearance: none;
}
form label input[type='file'] {
    line-height: max(40px,6rem);
}
form label input[type='file']::file-selector-button {
    width: 11.5rem;
    height: max(24px,4rem);
    background-color: var(--clr-light);
    border: 0;
    font-size: max(10px,1.6rem);
    color: var(--clr-white);
    display: grid;
    place-items: center;
    position: absolute;
    top: 50%;
    right: 2.4rem;
    translate: 0 -50%;
}
form label input:disabled,
form label select:disabled {
    background-color: #F9F9F9;
    color: var(--clr-light);
}
form label:has(.sendCodeBtn) input {
    padding-right: 17rem;
}
form label:has(.passwordViewBtn) input,
form label:has(.timer) input {
    padding-right: 8rem;
}
form label .timer {
    position: absolute;
    right: 1.6rem;
    top: 50%;
    translate: 0 -50%;
    font-size: max(12px,2rem);
    font-weight: 700;
    color: var(--clr-primary);
}
form label input::placeholder {
    font-size: max(14px,2rem);
    color: var(--clr-light);
}
form .inputContainer {
    position: relative;
    font-size: max(16px,2rem);
    margin-top: 1.5rem;
}
form .inputContainer .passwordViewBtn {
    position: absolute;
    font-size: 0;
    top: 50%;
    right: 2.4rem;
    translate: 0 -50%;
    width: 3.5rem;
    aspect-ratio: 1/1;
    background-image: url('../images/common/icon-invisible.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}
form .inputContainer .passwordViewBtn.show {
    background-image: url('../images/common/icon-visible.svg');
}
form .inputContainer .sendCodeBtn {
    border: 0;
    background-color: var(--clr-light);
    display: grid;
    place-items: center;
    width: 12rem;
    min-width: max-content;
    height: 4.2rem;
    font-size: max(12px,1.6rem);
    font-weight: 400;
    color: var(--clr-white);
    position: absolute;
    right: 1.6rem;
    top: 50%;
    translate: 0 -50%;
    cursor: pointer;
}
form .inputContainer:has(select)::after {
    position: absolute;
    content: '';
    width: 1.6rem;
    aspect-ratio: 1/1;
    background-image: url('../images/common/icon-down-chevron.svg');
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    top: 50%;
    right: 2.5rem;
    translate: 0 -50%;
    pointer-events: none;
}
form label .errorMessage {
    color: var(--clr-warning) !important;
    font-size: max(12px,1.6rem) !important;
    font-weight: 400 !important;
    margin-top: 0.8rem;
    word-break: keep-all;
    display: block;
    min-height: 2rem;
}
form .submitBtn {
    border: 0;
    margin: 0;
    margin-top: 9rem;
    margin-bottom: 3.5rem;
    background-color: var(--clr-primary);
    display: grid;
    place-items: center;
    font-size: max(16px,2.8rem);
    color: var(--clr-white);
    width: 100%;
    height: 8.2rem;
    cursor: pointer;
}
form label:has(.passwordViewBtn) input,
form label:has(.timer) input {
    padding-right: 8rem;
}
form label:has(.sendCodeBtn) input {
    padding-right: 17rem;
}
form label .inputContainer .checkIdBtn {
    cursor: pointer;
    height: 4rem;
    width: 13rem;
    display: grid;
    place-items: center;
    font-size: 1.6rem;
    color: var(--clr-white);
    border: 0;
    background-color: var(--clr-primary);
    position: absolute;
    right: 1.6rem;
    top: 50%;
    translate: 0 -50%;
}
form .termList {
    margin-top: 3rem;
    border-top: 0.1rem solid var(--clr-border);
    padding-top: 6rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
form label.term {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1.6rem;
    position: relative;
}
form label.term::before {
    content: '';
    width: 2.6rem;
    aspect-ratio: 1/1;
    background-image: url('../images/common/icon-checkbox.svg');
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}
form label.term:has(:checked)::before {
    background-image: url('../images/common/icon-checkbox-checked.svg');
}
form label.term input[type='checkbox'] {
    display: none;
}
form label.term span {
    color: var(--clr-light);
    font-size: max(14px,2rem);
    font-weight: 400;
}
form label.term em {
    font-style: normal;
    color: var(--clr-primary);
    font-weight: 600;
    text-decoration: underline;
    cursor: pointer;
}
/* for quill css overrides */
.ql-snow .ql-picker-label {
    font-size: initial;
}
.ql-toolbar.ql-snow,
.ql-container.ql-snow {
    border-color: var(--clr-border);
}

/* banner */
#banner .container img {
    width: 100%;
    aspect-ratio: 405/58;
    object-fit: cover;
    object-position: center;
    margin: 15rem auto 0;
}


/* reponsive */
@media only screen and (max-width : 1740px) {
    aside.floatBanner {
        display: none;
    }
    aside.mobileFloatBanner {
        display: block;
        position: fixed;
        right: 0;
        bottom: 10rem;
        width: max(60px,8rem);
        aspect-ratio: 1/1;
        border-radius: 99vw 0 0 99vw;
        overflow: hidden;
        display: grid;
        place-items: center;
        z-index: 2;
    }
    aside.mobileFloatBanner::before {
        content: '';
        background-color: var(--clr-primary);
        opacity: 0.1;
        position: absolute;
        inset: 0;
        z-index: -1;
    }
    aside.mobileFloatBanner a {
        width: max(48px,6.5rem);
        aspect-ratio: 1/1;
        border-radius: 99vw;
        background-color: var(--clr-primary);
        filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.10));
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        color: var(--clr-white);
        font-size: max(10px,1.4rem);
        font-weight: 700;
    }
    aside.mobileFloatBanner a img {
        width: max(16px,2.4rem);
        aspect-ratio: 1/1;
        object-fit: contain;
        object-position: center;
    }
}
/* less than container size */
@media only screen and (max-width : 1620px) {
    html, body {
        font-size: 57.5%;
    }
}
@media only screen and (max-width : 1439px) {
    html, body {
        font-size: 52.5%;
    }
    #fullGnb .gnb > li:nth-child(1) > .lnb,
    #fullGnb .gnb > li:nth-child(2) > .lnb{
        flex-wrap: wrap;
        row-gap: 2rem;
    }
}
@media only screen and (max-width : 1201px) {
    html, body {
        font-size: 47.5%;
    }
}
@media only screen and (max-width : 1145px) {
    header .container .gnb li a {
        margin: 0 1.5rem;
    }
}
@media only screen and (max-width : 1024px) {
    html, body {
        font-size: 37.5%;
    }
    header .container .gnb {
        display: none;
    }
    header .container {
        justify-content: end;
        position: relative;
    }
    header .container .subMenu > a {
        font-size: 0;
        gap: 0;
    }
    header .container .logo {
        position: absolute;
        top: 50%;
        left: 50%;
        translate: -50% -50%;
    }
    header .container .subMenu .fullGnbBtn{
        position: absolute;
        left: 2rem;
        rotate: 180deg;
    }
    footer .info {
        grid-template-columns: minmax(0,1fr);
        padding: 3rem 0;
    }
    footer .info .logo {
        max-height: 35px;
    }
    footer .info article {
        text-align: center;
    }
}
/* for tablet */
/* @media only screen and (max-width : 769px) {
    html, body {
        font-size: 28.5%;
    }
    
} */
/* for mobile */
@media only screen and (max-width : 767px) {
    html, body {
        font-size: 32.5%;
    }
    footer .fnb {
        flex-direction: column;
    }
    footer .fnb > li:nth-child(2) {
        margin-top: 2rem;
        display: grid;
        grid-template-columns: repeat(4, max-content);
        justify-content: space-between;
    }
    footer .fnb > li:nth-child(2) > a {
        text-align: center;
    }
    footer .fnb div {
        grid-column: 1/-1;
        display: flex;
        justify-content: end;
    }
    .readMore {
        padding-bottom: 0;
    }
    .readMore::after {
        display: none;
    }
    #fullGnb {
        inset: 0;
        overflow-y: auto;
        overflow-x: clip;
    }
    #fullGnb .top {
        position: sticky;
        top: 0;
        background-color: var(--clr-white);
        z-index: 1;
    }
    #fullGnb .gnb > li {
        grid-template-columns: minmax(0,1fr);
    }
    #fullGnb .gnb {
        padding-top: 0;
    }
    #fullGnb .gnb > li > a {
        font-size: 22px;
    }
    #fullGnb .gnb > li > .lnb {
        flex-direction: column;
        align-items: start;
        margin-top: 24px;
    }
    #fullGnb .bottom {
        flex-direction: column;
        align-items: start;
        row-gap: 24px;
    }
    #fullGnb .bottom .link {
        font-size: 16px;
        flex-direction: row-reverse;
    }
    #fullGnb .bottom .link::after {
        width: 20px;
        margin-left: 0;
        margin-right: 0.5em;
    }
    #fullGnb .bg {
        display: none;
    }
}

a.viewMore {
    color: var(--clr-primary);
    font-size: max(12px,1.6rem);
    text-decoration: underline;
}