/*Font CDN import*/
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --color-white: #ffffff;
    --color-black: #212121;
    --color-darkblue: #00467e;
    --color-darkblue2: #00388D;
    --color-blue: #0090e8;
    --color-hover-blue: #006eb3;
    --color-lightblue: #eff9ff;
    --color-lightred: #ff7e8d;
    --color-middlered: #ff465c;
    --color-darkred: #bc2e3e;
    --color-red: #ee001d;
    --color-lightgray: #757575;
    --color-gray: #bdbdbd;
    --color-green: #00be94;
    --header-height: 9.2rem;
}

::-webkit-scrollbar {
    width: 10px;
    height: 5px;
}

::-webkit-scrollbar-thumb {
    height: 17%;
    background-color: #858585;
    border-radius: 10px;
}

::-webkit-scrollbar-track {
    background-color: #eeeeee;
}

.skip {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

a {
    transition: 0.2s all ease;
}

table a:hover {
    text-decoration: underline;
    color: var(--color-blue);
}

hr {
    border-top: 1px solid var(--color-gray);
}

.mb-only {
    display: none;
}

.overflow-hidden {
    overflow: hidden;
}

.ac {
    text-align: center;
    justify-content: center;
}

.ar {
    text-align: right;
}

.al {
    text-align: left;
}

.dscr-text {
    margin: 1.6rem 0 0;
}

.dscr-text--l {
    margin: 0 0 15px 0;
    font-weight: 500;
    font-size: 2rem;
}

.dscr-text--m {
    font-weight: 500;
    font-size: 1.8rem;
}

.text-lightgray {
    color: var(--color-lightgray);
}
.text--navy {
    color: var(--color-darkblue);
}
.text--blue {
    color: var(--color-blue) !important;
}
.text--red {
    color: var(--color-red);
}
.text--dark-red {
    color: var(--color-darkred);
}

.text--green {
    color: var(--color-green);
}

.text-em {
    margin-top: 30px;
}

.bg-color--blue {
    color: var(--color-blue);
    background-color: #eaf7ff;
}

.bg-color--green {
    color: #00be94;
    background-color: #e6fffc;
}

.bg-color--red {
    color: var(--color-middlered);
    background-color: #ffedef;
}

.bg-color--orange {
    color: #ff7700;
    background-color: var(--color-white);
}

.bg-color--black {
    color: var(--color-white);
    background-color: #000;
}
.bg-color--gray {
    background-color: #f8f9fa !important;
}
.bg-color--skyblue {
    background-color: #eff9ff !important;
    border-color: #bae0ff !important;
}
.bg-color--white {
    background-color: #fff !important;
}
.border-color-navy {
    border-color: var(--color-darkblue) !important;
}

.border-color-blue {
    border-color: var(--color-blue) !important;
}
.border-color-skyblue {
    border-color: #39B4FF !important;
}

.w-full {
    width: 100%;
}

/***** FONT *****/
.ellipsis {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ellipsis2 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.ellipsis3 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.weight-medium {
    font-weight: 500;
}

/*  ì—¬ë°± */
.mr-top-l {
    margin-top: 8rem;
}

.mr-top-m {
    margin-top: 5rem;
}

.mr-top-ms {
    margin-top: 4rem;
}

.mr-top-s {
    margin-top: 3rem;
}

.mr-top-xs {
    margin-top: 1.4rem;
}

/***** BUTTON *****/
.btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.btn-group.center {
    justify-content: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    gap: 5px;
    padding: 0.9rem 1.5rem;
    line-height: 1.3;
    border: 1px solid transparent;
    vertical-align: middle;
    cursor: pointer;
    border-radius: 4px;
    font-weight: 500;
    font-size: 1.4rem;
    transition: 0.2s all ease;
}

.btn--link {
    position: relative;
    color: var(--color-blue);
    border-bottom: 1px solid var(--color-blue);
    font-weight: 500;
    word-break: keep-all;
}

.btn--link:hover {
    color: var(--color-hover-blue);
    border-bottom: 1px solid var(--color-hover-blue);
}

.btn--like::before {
    content: "â™¡";
    transform: scale(1) rotate(0);
    transition: 0.3s;
}

.btn--like.on::before  {
    content: "â™¥";
    color: var(--color-red);
}
.btn--like:active::before {
    transform: scale(1.3) rotate(15deg);
}
.btn-l {
    min-width: 100px;
}

.btn-f {
    width: 100%;
}

.btn-m {
    padding: 0.4rem 1rem;
}

.btn-s {
    padding: 6px 12px;
    font-size: 1.2rem;
}

.btn:disabled,
.btn:disabled:hover {
    background: #eeeeee;
    color: #9e9e9e;
    border: 1px solid #e0e0e0;
    cursor: default;
}

.btn--primary {
    background-color: var(--color-blue);
    color: var(--color-white);
}

.btn--success {
    background: #00BE94;
    color: var(--color-white);
}

.btn--secondaly {
    background-color: var(--color-white);
    border: 1px solid var(--color-gray);
    color: var(--color-black);
}

.btn--secondaly_line {
    background-color: #eff9ff;
    border: 1px solid #6fc0ff;
    color: #0090e8;
}

.btn--danger {
    background: var(--color-lightred);
    color: var(--color-white);
}

.btn--navy {
    background-color: var(--color-darkblue);
    color: var(--color-white);
}

.btn--white {
    background-color: var(--color-white);
}

@media (hover: hover) {
    .btn--primary:hover {
        background-color: var(--color-hover-blue);
        text-decoration: none;
    }
    .btn--secondaly:hover {
        background-color: #ededed;
    }
    .btn--navy:hover {
        background-color: var(--color-hover-blue);
    }
    .btn--danger:hover {
        background: var(--color-middlered);
    }
}

/* top button */
.btn-top-wrap {
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 11;
    text-align: right;
    padding-bottom: 2rem;
}
.btn--top {
    width: 8rem;
    height: 8rem;
    transform: translateX(-2rem);
    border-radius: 50%;
    background: var(--color-darkblue) url('../images/icon/ic-arrow-top.svg') no-repeat center / 27%;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.16);
    color: var(--color-white);
}

/***** TEXT *****/
.cont-title {
    padding: 3rem 0 2rem;
    font-size: 2.4rem;
    font-weight: 600;
    /* word-break: keep-all; */
}

.cont-title:first-child {
    padding-top: 0;
}

.cont-title:has(button),
.cont-title:has(.title-side) {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.title-group {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

.title-group .cont-title {
    padding: 0;
}

.main-title {
    padding: 0 0 20px 0;
    font-size: 3rem;
    font-weight: 600;
    word-break: keep-all;
}
.main-title + p {
    margin: 15px 0 0 0;
}
.border--bottom {
    border-bottom: 1px solid var(--color-gray);
}
.sub-title {
    flex-shrink: 0;
    padding: 30px 0 20px;
    font-size: 2rem;
    font-weight: 600;
}
.sub-title.padding-0 {
    padding: 0;
}

.cont-title + .sub-title {
    padding-top: 0;
}

.sub-title:has(img),
.cont-title:has(img) {
    display: flex;
    align-items: center;
    gap: 10px;
}
.title-side {
    flex-shrink: 0;
    font-size: 1.6rem;
    font-weight: 400;
}

.title-side {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.anchor-text:hover {
    color: var(--color-blue);
    text-decoration: underline;
}

.text-underline {
    text-decoration: underline;
}

/* ===== Skip Menu ===== */
.skipMenu {
    position: relative;
    z-index: 999;
    background-color: #000;
    font-size: 1.6rem;
}
.skipMenu a {
    position: absolute;
    top: -30px;
    left: 0px;
    width: 100%;
    height: 30px;
    line-height: 30px;
    text-align: center;
    background-color: #000;
    color: #fff;
}
.skipMenu a:active,
.skipMenu a:focus-visible {
    top: 0px;
}

/***** TAB *****/
.tab-btn-list {
    display: flex;
    list-style-type: none;
    padding: 0;
    margin: 2rem 0 4rem;
    border-bottom: 1px solid #e0e0e0;
}

.tab-btn-list .tab-btn {
    flex-grow: 1;
}

.tab-btn-list .tab-btn a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 1rem 0.2rem 2.4rem;
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    word-break: keep-all;
    border-bottom: 4px solid transparent;
}

.tab-btn-list .tab-btn.on a {
    color: var(--color-blue);
    border-color: var(--color-blue);
}

.tab-contents-wrap .tab-content {
    display: none;
    font-size: 1.6rem;
}

.tab-contents-wrap .tab-content.on {
    display: block;
}

/***** LIST *****/
.bullet-list {
    padding-left: 1.6rem;
}

.order-list {
    padding-left: 1.3rem;
}

.bullet-list > li {
    list-style-type: disc;
}

.order-list > li {
    list-style-type: decimal;
    padding-left: 0.6rem;
}

.bullet-list > li + li,
.text-list > li + li,
.order-list > li + li {
    margin-top: 1rem;
}

.bullet-list > li::marker {
    color: #424242;
    font-size: 1.2rem;
}

.order-list > li::marker {
    color: #424242;
    font-size: 1.4rem;
}

/***** TABLE *****/
.table {
    box-sizing: border-box;
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 1.6rem;
}
.table.table--fixed {
    table-layout: fixed;
}
.table.center {
    text-align: center;
}
.responsive-table .table td.tb-category {
    color: var(--color-darkblue);
}

.main-title + .table {
    margin-bottom: 30px;
}

.table th {
    padding: 2rem 1rem;
    color: var(--color-black);
    /* overflow-wrap: break-word; */
    font-weight: 500;
    word-break: keep-all;
}

.table th:last-child {
    border-right: 0;
}

.table thead th {
    vertical-align: middle;
    border-bottom: 1px solid var(--color-black);
}

.table th[scope='row'] {
    border-right: 1px solid #dddddd;
}

.table th[scope='row'] + td + th {
    border-left: 1px solid #dddddd;
}

.table td {
    /* overflow-wrap: break-word; */
    word-break: keep-all;
    padding: 2rem 1rem;
}

.table td:last-child {
    border-right: 0;
}

.table tbody td {
    vertical-align: middle;
    border-bottom: 1px solid #dbdbdb;
}
.table tbody td a:not(.btn) {
    color: #000;
    font-weight: 500;
    word-break: break-all;
}
.table tbody th {
    vertical-align: middle;
    border-bottom: 1px solid #dbdbdb;
}

.table .td-text + .bullet-list,
.table .td-text + .order-list {
    margin-top: 10px;
}

.table-comment {
    margin: 5px 0;
    line-height: 1.3;
}

.table + .table {
    margin-top: 10px;
}

.mb-only-title {
    flex-shrink: 0;
    display: none;
    font-weight: 500;
}

.pc-mb-title {
    flex-shrink: 0;
}

.mb-title-block {
    margin-bottom: 10px;
}

.scroll-table {
    position: relative;
    overflow: auto;
}
.scroll-table .table th,
.scroll-table .table td {
    word-break: keep-all;
}

.border-top {
    border-top: 1px solid var(--color-black);
}

.bg-table th {
    padding: 2rem;
    background: #F8F9FA;
}

.bg-table td {
    padding: 2rem;
}

/* íƒ€ì´í‹€ ê³ ì • í…Œì´ë¸” */
.sticky-table {
    position: relative;
    overflow: auto;
    /* scroll-snap-type: both mandatory; */
}

.sticky-table thead {
    position: relative;
}

.sticky-table thead th {
    position: sticky;
    top: 0;
    z-index: 10;
    white-space: nowrap;
    background: var(--color-white);
}

.sticky-table tbody {
    position: relative;
}

.sticky-table tbody th,
.sticky-table thead .pin {
    position: sticky;
    left: 0;
    z-index: 10;
    background: var(--color-white);
    white-space: nowrap;
}

.sticky-table thead .pin {
    z-index: 11;
}
.scroll-table::before,
.scroll-img::before {
    position: sticky;
    left: 0;
    content: 'SCROLL';
    display: none;
    justify-content: right;
    margin-top: 10px;
    margin-bottom: 5px;
    padding-right: 50px;
    font-size: 1.4rem;
    color: var(--color-lightgray);
    background: url('../images/icon/icon-scroll.svg') no-repeat right;
}
.scroll-img {
    text-align: center;
}
.scroll-img > img {
    max-width: 100%;
}

/***** DIV TABLE *****/
.table-container {
    display: table;
    width: 100%;
    border-top: 1px solid var(--color-blue);
}

.table-container.center {
    text-align: center;
}

.table-container .table-head {
    display: table-header-group;
    width: 100%;
}

.table-container .table-head {
    color: var(--color-lightgray);
}

.table-container .table-body {
    display: table-row-group;
}

.table-container .table-list {
    display: table-row;
    width: 100%;
}

.table-container .table-item {
    display: table-cell;
    padding: 20px 12px;
    vertical-align: middle;
    border-bottom: 1px solid #dbdbdb;
    word-break: break-word;
    color: #424242;
}

.responsive-table .table {
    border-top: 0;
}

.responsive-table:not(.is-head) thead {
    display: none;
}

.responsive-table thead th {
    border-color: var(--color-black);
}
.responsive-table tbody {
    border-top: 1px solid var(--color-black);
}

/* ë¦¬ìŠ¤íŠ¸ ì•…ì„¸ì‚¬ë¦¬ */
.list-accessories {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
    margin-bottom: 1.2rem;
}
.list-length {
}

/***** FORM *****/
select {
    box-sizing: border-box;
    display: inline-block;
    /* width: 200px; */
    min-height: 40px;
    background-position: calc(100% - 12px) center;
    border: 1px solid #e5e5e5;
    transition: all 0.3s;
    cursor: pointer;
    padding-right: 20px;
    background: url('../images/icon/icon-select-arrow.svg') var(--color-white) no-repeat center;
    background-position-x: 95%;
}

select.small {
    width: 80px;
    background-position-x: 90%;
}

input::-webkit-input-placeholder {
    color: var(--color-gray);
    font-size: 1.5rem;
}

input:-ms-input-placeholder {
    color: var(--color-gray);
    font-size: 1.5rem;
}

textarea::-webkit-input-placeholder {
    color: var(--color-gray);
    font-size: 1.5rem;
}

textarea:-ms-input-placeholder {
    color: var(--color-gray);
    font-size: 1.5rem;
}

.division {
    vertical-align: text-bottom;
    font-size: 11px;
    color: var(--color-gray);
}
.division--blue-l {
    margin: 0 10px;
    font-size: 3rem;
    color: var(--color-blue);
}

.form-group {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 300px;
    gap: 5px;
    flex-grow: 1;
}

.form-group.large {
    width: 600px;
}

.form-group + .form-group {
    margin-top: 10px;
}
.form-group > input,
.form-group > select {
    flex: 1;
    width: 100%;
}

/* =============== input =============== */
.normal-input {
    width: 100%;
}

.normal-input:disabled,
.normal-input:read-only {
    background-color: #f1f1f1;
    color: #aaa;
}
.normal-input:disabled::placeholder {
    color: #aaa;
}

.input-wrap {
    /* width: 400px; */
}

.input-wrap + .input-wrap {
    margin-top: 15px;
}

.input-wrap input {
    max-width: 42rem;
    width: 100%;
}
.input-group {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 5px;
}
.input-group .input-wrap {
    flex-grow: 1;
    width: auto;
}
/* ì´ë©”ì¼ ìž…ë ¥ */
.input-group.email input:nth-of-type(1) {
    width: 15rem;
}
.input-group.email input:nth-of-type(2) {
    width: 15rem;
}

.input-group.email .select {
    width: 20rem;
}

/* ì£¼ì†Œ ìž…ë ¥ */
.input-wrap.adress {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.input-wrap.adress input.zip-code {
    max-width: 17rem;
}
.input-wrap.adress input.adress1 {
    max-width: 34rem;
}
.input-wrap.adress input.adress2 {
    max-width: 17rem;
}
.input-group input[type='text'] + button {
    /* width: auto; */
}

/* ì—°ë½ì²˜ ìž…ë ¥ */
.input-group.tel .select {
    width: 10rem;
}

.input-group.tel input {
    width: 10rem;
}

/* input text */
.hyphen {
    margin: 0 5px;
    vertical-align: middle;
}

.label-text {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
}

.label-text + input {
    max-width: 100%;
    margin-top: 10px;
}

.text--message {
    text-align: left;
    margin-top: 5px;
}
.text--message.error {
    color: var(--color-red);
}

input[type='file'] {
    width: 100%;
}

/***** Accordion *****/
.accordion {
    margin: 30px 0;
    border-top: 1px solid var(--color-black);
}

.accordion .item {
    border-bottom: 1px solid #d7d7d7;
}

.accordion .item-cont {
    display: flex;
    flex: 1;
    align-items: center;
    gap: 10px;
}

.accordion .item > a {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 2rem 2rem 2rem 0;
    margin: 0;
    font-size: 1.6rem;
    font-weight: 500;
    letter-spacing: 0.8px;
    color: #000;
    transition: ease-in-out 0.2s all;
    cursor: pointer;
}

.accordion .item > a::before {
    content: '';
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('../images/icon/icon-q.svg') #eff9ff no-repeat center;
    border-radius: 50%;
    width: 3.2rem;
    height: 3.2rem;
}

.accordion .item > a::after {
    content: '';
    background: url('../images/icon/icon-accordion-arrow.svg') no-repeat center;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    transform: rotate(270deg);
}

.accordion .item.on > a::after {
    transform: rotate(90deg);
}

.accordion .item .accordionCont {
    position: relative;
    display: grid;
    grid-template-rows: 1fr auto;
    height: 0;
    opacity: 0;
    letter-spacing: 0.5px;
    font-size: 1.5rem;
    overflow: hidden;
    visibility: hidden;
    color: #616161;
    background-color: #f8f8f8;
    transition: all 0.6s cubic-bezier(0.42, 0.2, 0.08, 1);
}

.accordion .item.on .accordionCont {
    visibility: visible;
    overflow: auto;
    opacity: 1;
    height: 300px;
    position: relative;
    z-index: 0;
    border-radius: 0px 0px 3px 3px;
}
.accordion .item .answer_item {
    padding: 2rem 2rem 2rem 7rem;
}
.accordion .item .answer_item::before {
    content: 'A';
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-blue);
    border-radius: 50%;
    width: 3.2rem;
    height: 3.2rem;
    flex-shrink: 0;
    font-weight: 700;
    color: var(--color-white);
    position: absolute;
    top: 2rem;
    left: 2rem;
}


.accordion .item .board__file {
    flex-direction: row;
    padding: 2rem;
}

.accordion .item .board__file::before {
    content: 'F';
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-darkblue);
    border-radius: 50%;
    width: 3.2rem;
    height: 3.2rem;
    flex-shrink: 0;
    font-weight: 700;
    color: var(--color-white);
}

.accordion .empty-item {
    padding: 4rem 0;
    text-align: center;
    background: #F8F9FA;
    border: 1px solid #DBDBDB;
    font-weight: 500;
}

.accordion .icon {
    position: absolute;
    top: 50%;
    right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    font-weight: 600;
    font-size: 23px;
    color: #000;
    transition: 0.3s all ease;
    transform: translateY(-50%) rotate(180deg);
}

.accordion .item.on .icon {
    transform: rotate(0deg) translateY(-50%);
}

.accordion .item .icons {
    display: inline-flex;
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.accordion .item .icons.icon-q {
    background-color: #dbe3ff;
    color: #466def;
}

.accordion .item .icons.icon-a {
    background-color: #ffdbdb;
    color: #e91e63;
}

.accordion .item .category {
    flex-shrink: 0;
    color: #466def;
}

.accordionTitle {
    color: #000;
}

/***** Dropdown Toggle *****/
.dropdown-toggle-group {
    position: relative;
    display: inline-flex;
    border-right: 1px solid rgba(225, 225, 255, 0.3);
}

.dropdown-toggle-group .dropdown-menu {
    position: absolute;
    bottom: 1px;
    left: 0;
    z-index: 1;
    display: none;
    min-width: 100px;
    padding: 20px 0 30px;
    transform: translateY(100%);
    border: 1px solid #336b97;
    border-top: none;
    background: var(--color-white);
    box-shadow: 0px 3px 4px rgba(0, 0, 0, 0.2);
}

.dropdown-toggle-group.on .dropdown-menu {
    display: block;
}

.dropdown-toggle-group .menu-item a {
    display: block;
    padding: 10px 40px;
    font-size: 1.6rem;
    color: var(--color-lightgray);
    transition: 0.3s color ease;
}

.dropdown-toggle-group .menu-item a:hover {
    color: var(--color-darkblue);
}

/* ì²´í¬ë°•ìŠ¤ */
input[type='checkbox'] + label {
    position: relative;
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
    cursor: pointer;
}

.check-box {
    display: inline-block;
    margin-right: 20px;
}

.check-box:last-child {
    margin-right: 0;
}
.check-box input[type='checkbox'] + label::before {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    margin-right: 5px;
    flex-shrink: 0;
    background: url('../images/checkbox-unchecked.svg') no-repeat center;
}

.check-box input[type='checkbox'][disabled]:checked + label::before {
    background-image: url('../images/checkbox-checked-disabled.svg');
}

.check-box input[type='checkbox']:checked + label::before {
    background-image: url('../images/checkbox-checked.svg');
}

.check-box input[type='checkbox']:focus-visible + label::after {
    position: absolute;
    top: 0;
    left: -2px;
    content: '';
    width: 22px;
    height: 22px;
    border: 1px dashed #000;
}

/* ë¼ë””ì˜¤ë°•ìŠ¤ */
input[type='radio'] + label {
    position: relative;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
}

.radio-group {
    margin-top: 1rem;
}

.radio {
    display: inline-block;
    margin-right: 20px;
}

.radio:last-child {
    margin-right: 0;
}

.radio input[type='radio'] + label::before {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    margin-right: 5px;
    background: url('../images/radio-unchecked.svg') no-repeat center;
    flex-shrink: 0;
}

.radio input[type='radio']:checked + label::before {
    background-image: url('../images/radio-checked.svg');
}

.radio input[type='radio'][disabled]:checked + label::before {
    background-image: url('../images/radio-checked-disabled.svg');
}

.radio input[type='radio']:focus-visible + label::after {
    position: absolute;
    top: 0;
    left: -2px;
    content: '';
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 1px dashed #000;
}

/* POPUP */
.popup {
    position: fixed;
    z-index: 10000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    background: rgba(0, 0, 0, 0.7);
    font-size: 1.6rem;
}
.popup.popupOpen {
    display: block;
    /*overflow: hidden;*/
    position: fixed;
    width: 100%;
    height: 100%;
}
.popup__box {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    width: 1000px;
    max-height: 80%;
    padding: 12px 24px 24px;
    transform: translate(-50%, -50%);
    background-color: var(--color-white);
    box-shadow: 0px 6px 30px 2px rgba(0, 0, 0, 0.15);
    -webkit-overflow-scrolling: touch;
    border-radius: 10px;
}
.popup.small .popup__box {
    width: 500px;
}

.popup__box .tab-btn-list {
    margin: 0 0 3rem;
}

.popup__box .tab-btn-list .tab-btn a {
    padding: 1rem 0.2rem 1.4rem;
}
.popup__close {
    position: absolute;
    top: 20px;
    right: 0;
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
}

.popup__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    border-bottom: 1px solid #ddd;
    margin-bottom: 16px;
    padding: 15px 45px 15px 0;
    font-weight: 600;
    font-size: 2rem;
    word-break: keep-all;
}
.popup__head .side-text {
    font-size: 1.8rem;
}
.popup__body {
    padding: 1rem 0;
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}
.popup__foot {
    padding-top: 20px;
}
.popup__foot .btn-group {
    margin-top: 0;
}
.popup__bg {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
}
.popup__body .line-box {
    padding: 3%;
}
.popup__body .cont-title {
    font-size: 1.8rem;
}

/* ê²€ìƒ‰íŒì—… */
.search-popup-box {
    max-width: 700px;
    margin: 0 auto;
    padding: 20px;
}

/* Alert Popup */
.alert .popup__head {
    display: flex;
    align-items: center;
    flex-direction: column;
    row-gap: 10px;
    padding: 15px 0;
}

/* PAGENATION */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 6rem;
    font-size: 1.4rem;
}
.popup .pagination {
    margin-top: 15px;
}
.pagination .page-btn {
    display: block;
    width: 38px;
    height: 38px;
    background-image: url('../images/icon/icon-pagination-arrow.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 13px;
    border: 1px solid #dbdbdb;
}
.pagination .prev {
    transform: rotate(-180deg);
}
.pagination .first {
    transform: rotate(-180deg);
    background-image: url('../images/icon/angles-right-solid.svg');
    background-size: 15px;
}
.pagination .last {
    background-image: url('../images/icon/angles-right-solid.svg');
    background-size: 15px;
}
.pagination .page-list {
    display: flex;
    gap: 8px;
}
.pagination .page-item {
    transition: 0.3s;
}
.pagination .page-item.active {
    background: var(--color-darkblue);
}
.pagination .page-item.active a {
    border: 0;
    color: var(--color-white);
}
.pagination .page-item a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid #dbdbdb;
    color: #000;
    font-weight: 500;
    font-size: 1.4rem;
}

.popup img {
    max-width: 100%;
}

/* í—¤ë” */
.header {
    position: relative;
    z-index: 13;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    background: var(--color-white);
}
.header .wrap-inner {
    position: initial;
    display: flex;
    align-items: center;
}
.header-top {
    padding: 3rem 0 1.4rem;
}
.header-top .wrap-inner {
    justify-content: space-between;
}
.head-logo {
    max-width: 19.1rem;
}

.header.head-sticky .header-top {
    height: 0;
    padding: 0;
    overflow: hidden;
}

.header.head-sticky {
    position: sticky;
    top: 0;
}

.head-logo img {
    width: 100%;
}

.header-top .pc-right-group {
    display: flex;
    align-items: center;
}

.sns-link-group {
    position:relative;
    display: flex;
    align-items: center;
    gap: 10px;
}


.sns-link-group a {
    display: inline-flex;
    width: 32px;
    height: 32px;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 0px 8px 1px rgba(0,0,0,0.2);
    border-radius: 50%;
}

.sns-link-group strong {
    font-size: 14px;
    color: rgba(0,0,0,0.3);
    font-weight: 800;
    margin-right: 6px;
}

.header-top .sns-link-group:after {
    content: '';
    position: absolute;
    width: 1px;
    height: 18px;
    border-right: 2px solid #DEDEDE;
    right: -25px;
}
.mb-side-nav .sns-link-group {
    width: 100%;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.mb-side-nav .sns-link-group:before {
    content: '';
    position: absolute;
    border-top: 1px solid #EDEDED;
    height: 11px;
    left: 20px;
    right: 20px;
    top: 11px;
}
.mb-side-nav .sns-link-group strong {
    position: relative;
    background: #fff;
    padding: 5px 20px;
    top: -5px;
}
.sns-link-group-icons {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}
.sns-link-group-icons a {
    width: 45px;
    height: 45px;
}

.sns-link-group-icons a img {
    width: 22px;
}

.header-search {
    width: 30rem;
    display: flex;
    align-items: center;
    border-bottom: 2px solid var(--color-black);
    margin-right:30px;
}
.header-search input {
    width: 100%;
    border: 0;
    font-size: 1.5rem;
    padding: 1rem;
}
.header-search input::placeholder {
    font-size: 1.5rem;
}

.header-search .search-submit-btn {
    display: flex;
    align-items: center;
    text-indent: -9999px;
    width: 3rem;
    height: 3rem;
    background: url("../images/icon/ic-search-black.svg") no-repeat center / 14px;
}

.language-btn {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-left: 5rem;
    font-size: 1.4rem;
    font-weight: 500;
}

.language-btn::before {
    content: "";
    display: block;
    width: 2.2rem;
    height: 2.2rem;
    background: url("../images/icon/ic-gloval.svg") no-repeat center / 100%;
}

/* zoom ë²„íŠ¼ */
.zoom-btn-group {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-left: 3rem;
}

.zoom-btn-group .btn-list {
    display: flex;
    gap: 5px;
}

.zoom-btn {
    width: 2.2rem;
    height: 2.2rem;
    border: 1px solid #ddd;
    border-radius: 50%;
    background-color: #dddddd;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 0.8rem;
}

.zoom-minus {
    background-image: url("../images/icon/ic-minus.svg");
}

.zoom-plus {
    background-image: url("../images/icon/ic-plus.svg");
}

.zoom-text {
    vertical-align: middle;
    font-size: 1.3rem;
}

.header-bottom {
    padding: 1.4rem 0 0;
}

.header .site-map-btn {
    display: block;
    width: 3rem;
    height: 2.1rem;
    margin-bottom: 1.4rem;
    background: url("../images/icon/ic-hambuger.svg") no-repeat center / 100%;
    margin-right: 3.5%;
}

.head-nav__group {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.head-nav__depth {
    display: flex;
    align-items: center;
}

.head-nav__title {
    font-size: 1.8rem;
}

@media (hover: hover) {
    .head-nav__title a:hover,
    .head-nav__title a:focus-visible {
        color: var(--color-blue);
    }
}

.head-nav__title a {
    display: block;
    padding: 0.5rem 2rem 2rem;
}

.head-nav__title.mypage-link {
    margin-bottom: 1.4rem;
}

.head-nav__title.mypage-link a {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.3rem 1.5rem;
    background: #EAF7FF;
    border-radius: 16px;
    color: var(--color-darkblue);
    font-size: 1.6rem;
}
.head-nav__title.mypage-link a::after {
    content: "";
    display: block;
    width: 1.4rem;
    height: 1.4rem;
    background: url("../images/icon/ic-page-navy.svg") no-repeat center / 100%;
}

.head-menu__box {
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    height: 0;
    overflow: hidden;
    visibility: hidden;
    background: var(--color-white);
    border: 1px solid var(--color-gray);
    /* display: none; */
    transition: ease-in-out 0.3s;
}

.head-menu__box.on {
    height: 35rem;
    visibility: visible;
}

.menu__box-inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    height: 100%;
    align-items: flex-start;
}


.depth-nav__title {
    position: relative;
    width: 30%;
    height: 100%;
    padding: 3rem 0 0;
    font-size: 3rem;
    font-weight: 500;
    background: #F8F9FA;
    border-right: 1px solid var(--color-gray);
}
.depth-nav__title::before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 100%;
    background-color: #F8F9FA;
    transform: translateX(-100%);
}

.depth-nav__list {
    width: 80%;
    padding: 4rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem 2.4rem;
    font-size: 1.5rem;
    font-weight: 500;
}
.depth-nav__list li {
    border: 1px solid #DBDBDB;
    border-radius: 4px 4px 12px 4px;
    transition: background 0.3s;
    overflow: hidden;
}


@media (hover: hover) {
    .depth-nav__list li a:hover,
    .depth-nav__list li a:focus-visible {
        background: var(--color-blue);
        color: var(--color-white);
    }
}

.depth-nav__list li a {
    display: block;
    width: 100%;
    padding: 0.9rem 1.4rem;
}
.small-nav__list {
    display: flex;
    gap: 2.4rem;
    margin-left: auto;
    margin-bottom: 1.4rem;
    font-size: 1.4rem;
    font-weight: 500;
    color: rgba(0,0,0,.5);
}

.mb-side-top,
.mb-side-bottom {
    display: none;
}

/* ë‚˜ì˜ê°•ì˜ì‹¤ í—¤ë” */
.header-lecture {
    padding: 2.2rem 0;
}
.header-lecture .wrap-inner {
    justify-content: space-between;
}

.header-lecture .head-right-group {
    display: flex;
    align-items: center;
}

.header-lecture .small-nav__list {
    gap: 0;
    margin-bottom: 0;
}

.header-lecture .small-nav__list li + li::before {
    content: "";
    width: 1px;
    height: 10px;
    display: inline-block;
    margin: 0 1rem;
    background-color: #DBDBDB;
}

.header-lecture .head-print-btn {
    width: 2.4rem;
    height: 2.4rem;
    margin-left: 2rem;
    background: url("../images/icon/ic-print-gray.svg") no-repeat center / 80%;
}
.header-lecture .lecture-exit {
    background-color: #F7F7F7;
    border-radius: 20px;
    padding: 8px 16px;
    font-size: 14px;
    color: #000;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 30px;
}
.header-lecture .lecture-exit:hover {
    background-color: #ebebeb;
}

.header-lecture .lecture-home {
    display: none;
    background-color: #F7F7F7;
    border-radius: 20px;
    padding: 0.4rem 1.4rem;
    font-size: 14px;
    color: #000;
    margin-left: auto;
    margin-right: 1rem;
}

/* =========== header ì˜ë¬¸ì‚¬ì´íŠ¸ =========== */
.header-eng {
    font-family: 'Roboto', sans-serif;
}
.header-eng .header-top {
    padding: 1.4rem 0;
    background: #F8F9FA;
}

.header-eng .header-top .wrap-inner {
    position: relative;
    justify-content: flex-end;
}

.header-eng .head-logo {
    width: 21.9rem;
}

.header-eng .head-logo.pc-only {
    margin-bottom: 1rem;
}

.header-eng .head-top-link {
    margin-left: 3rem;
    text-transform: uppercase;
    font-size: 1.4rem;
    font-weight: 500;
}

.header-eng .language-btn {
    margin-left: 3rem;
}

.header-eng .head-nav__group {
    flex-grow: 1;
}

.header-eng .head-nav__depth {
    margin-left: auto;
}

.header-eng .small-nav__list {
    margin-left: 4%;
}

.header-eng .head-nav__title {
    font-weight: 400;
    color: rgba(33, 33, 33, .5);
}


/* footer */
.footer {
    padding-bottom: 5rem;
    font-size: 1.6rem;
}
.footer-top {
    padding: 2.6rem 0;
    background-color: #F3F4F5;
}
.footer-top .wrap-inner {
    display: flex;
    justify-content: space-between;
}
.footer-bottom .wrap-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 9%;
}

.footer-logo {
    width: 21%;
    flex-shrink: 0;
}

.footer-logo img {
    width: 100%;
}

.footer .family-group .select {
    min-width: 24rem;
    border-radius: 6px;
}

.footer .family-group .select + .select {
    margin-left: 0.5rem;
}

.foot-link__group {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    padding: 4rem 0 3rem;
}
.footer .link__list {
    display: flex ;
    align-items: center;
    flex-wrap: wrap;
    padding-bottom: 2.4rem;
    border-bottom: 1px solid #DBDBDB;
}
.footer .link__list li {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.footer .link__list li:not(:last-child):after {
    content: "";
    display: block;
    width: 1px;
    height: 11px;
    margin-right: 1rem;
    background: #DBDBDB;
}
.footer .link__list li.on {
    font-weight: 700;
    color: var(--color-darkblue);
}
.footer .sns__list {
    display: flex;
    gap: 1rem;
}

.footer .sns__list li {
    width: 3.6rem;
    height: 3.6rem;
}

.footer .sns__list img {
    width: 100%;
}

.foot-info__list {
    position: relative;
    padding-top: 2.4rem;
    padding-right: 12%;
}
.foot-info__list .markImg {
    position: absolute;
    right: 0;
    bottom: 0;
}
.foot-info__list ul {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}
.foot-info__list .adress-item {
    width: 100%;
    display: flex;
}
.foot-info__list address {
    display: flex;
    align-items: center;
}
.foot-info__list ul li {

}
.footer .copy--btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin-left: 1.2rem;
    font-size: 1.4rem;
    font-weight: 500;
    flex-shrink: 0;
}
.footer .copy--btn::before {
    content: "";
    display: block;
    width: 2rem;
    height: 2rem;
    flex-shrink: 0;
    background: url("../images/icon/ic-clip.svg") no-repeat center / 100%;
}
.foot-info__list address {
    font-style: normal;
}
.foot-info__list .icon-item {
    display: flex;
    align-items: center;
}
.foot-info__list .icon-item::before {
    content: "";
    display: block;
    width: 2rem;
    height: 2rem;
    flex-shrink: 0;
    margin-right: 1.2rem;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
}
.adress-item::before {
    background-image: url("../images/icon/ic-loadmap.svg");
}
.tell-item::before {
    background-image: url("../images/icon/ic-call.svg");
}

.foot-info__list .line-item {
    display: flex;
    align-items: center;
}

.foot-info__list .line-item::before {
    content: "";
    display: block;
    width: 1px;
    height: 16px;
    margin-right: 2rem;
    background: #DBDBDB;
}

.footer .call-btn {
    margin-left: 1.2rem;
    padding: 0.5rem 1.5rem;
    border: 1px solid #BDBDBD;
    border-radius: 4px;
    font-size: 1.4rem;
    font-weight: 500;
}

.footer .copyright {
    width: 100%;
    color: #757575;
}

.eng-footer {
    padding: 5rem 0 6rem;
}

.eng-footer .footer-logo {
    width: 21.9rem;
}

.eng-footer .wrap-inner {
    display: flex;
    align-items: center;
    gap: 5%;
}

.eng-footer .foot-info__list {
    padding-top: 0;
}

.eng-footer .foot-info__list ul {
    gap: 1rem;
}

.footer .img-mark {
    position: absolute;
    bottom: -30rem;
    right: 0;
    width: 11.6rem;
}

.footer .img-mark img {
    width: 100%;
}

.footer .popup--btn {
    display: none;
    position: relative;
    background: var(--color-white);
    border-radius: 50%;
    box-shadow: 0 3px 6px rgba(0,0,0,.16);
}

.footer .popup--btn a {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer .popup--btn img {
    width: 65%;
}

.footer .popup--btn .popup-num {
    top: -5px;
    right: -3px;
}

/* quick menu */
.quick-menu {
    position: fixed;
    top: 54%;
    right: 2%;
    z-index: 12;
    transform: translateY(-50%);
    border-radius: 14px;
    box-shadow: 0 3px 20px rgba(0, 0, 0, 0.2);
    background: var(--color-white);
}
.quick-menu__list {
    padding: 0.6rem 0;
}

.quick-menu__item + .quick-menu__item::before {
    content: "";
    display: block;
    width: 78%;
    height: 1px;
    margin: 0 auto;
    border-top: 1px solid #EEEEEE;
}

.quick-menu a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.quick-menu__item a {
    position: relative;
    padding: 1.2rem 1rem;
    gap: 0.4rem;
}
.quick-menu img {
    width: 43%;
}
.quick-menu .item__title {
    font-size: 1.5rem;
    font-weight: 500;
    color: #757575;
}

.quick-menu__item:hover .item__title {
    color: var(--color-blue);
}

.quick-menu .top-btn {
    gap: 0.4rem;
    padding: 1rem 1.2rem;
    border-radius: 0 0 14px 14px;
    text-transform: uppercase;
    background: var(--color-blue);
    color: var(--color-white);
}

.quick-menu .top-btn::before {
    content: "";
    width: 1.4rem;
    height: 1.4rem;
    background: url("../images/icon/ic-arrow-top-white.svg") no-repeat center / 100%;
}

.quick-menu .tab-btn__text {
    font-size: 1.5rem;
    font-weight: 700;
}

.popup-num {
    position: absolute;
    top: 7px;
    right: 17px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--color-red);
    color: var(--color-white);
    font-size: 14px;
}

.empty--area {
    padding: 9rem 0;
    text-align: center;
    font-size: 2rem;
    color: #9E9E9E;
}

.empty--area::before {
    content: "";
    display: block;
    width: 24.2rem;
    height: 16.4rem;
    margin: 0 auto 2rem;
    background: url("../images/empty-image.png") no-repeat center / cover;
}

/*****MEDIA QUERY*****/
@media screen and (max-width: 1600px) {
    .quick-menu {
        display: none;
    }

    .footer .popup--btn {
        display: block;
    }
}

/*****MEDIA QUERY*****/
@media screen and (max-width: 1300px) {
    .head-nav__group {
        margin-left: 1rem;
    }
    .header .site-map-btn {
        width: 2rem;
        margin-right: 5px;
    }

    .head-nav__title {
        font-size: 1.7rem;
    }
    .head-nav__title a {
        padding: 0.5rem 1.2rem 2rem;
    }
    .small-nav__list {
        gap: 1rem;
    }
    .depth-nav__title {
        width: 20%;
        font-size: 2rem;
    }
}

@media all and (max-width: 1024px) {
    body,
    html {
        font-size: 55%;
    }

    /* í—¤ë” */
    .header {
        position: sticky;
        top: 0;
        padding: 1.8rem 0;
        background: var(--color-white);
    }
    .header-top {
        padding: 0;
    }
    .head-logo {
        max-width: 13.2rem;
    }

    .header .mb-only {
        display: block !important;
    }

    .header .pc-only {
        display: none !important;
    }

    /* ëª¨ë°”ì¼ ì‚¬ì´ë“œë©”ë‰´ */
    .mb-side-nav {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        max-width: 375px;
        height: 100%;
        padding: 0;
        transform: translateX(100%);
        border-left: 1px solid var(--color-gray);
        background: #ffffff;
        transition: 0.5s;
    }
    .mb-side-nav.show {
        transform: translateX(0);
    }
    .mb-side-nav .wrap-inner {
        display: flex;
        flex-direction: column;
        padding: 0;
        height: 100%;
    }
    .mb-side-top {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        row-gap: 5px;
        flex-wrap: wrap;
        padding: 2rem;
        padding-right: 50px;
        box-shadow: 0 3px 6px rgba(0, 0, 0, 0.08);
    }
    .mb-side-top-wrap {
        display: flex;
        align-items: center;
        gap: 10px;
        width: 100%;
    }
    .mb-side-top .mb-top__item {
        display: inline-flex;
        justify-content: center;
        align-items: center;
        font-size: 1.4rem;
        font-weight: 500;
        border-radius: 16px;
    }

    .mb-top__item + .mb-top__item:not(.language-btn)::before {
        content: "";
        width: 1px;
        height: 10px;
        display: inline-block;
        margin-right: 1rem;
        vertical-align: middle;
        background: #DBDBDB;
    }

    .mb-top__item.language-btn::before {
        width: 1.6rem;
        height: 1.6rem;
    }

    .mb-top__item.language-btn {
        margin-left: auto;
        padding: 0.3rem 1rem;
        border: 1px solid #D8D8D8;
        border-radius: 14px;
    }

    .mb-side-top-wrap  .mb-top__item.active {
        opacity: 0.5;
    }

    .mb-side-bottom {
        display: flex;
        align-items: center;
        gap: 0.7rem;
        width: 100%;
        padding: 2rem;
        background: #DCEDF7;
        box-shadow: inset 0 3px 6px rgba(0, 0, 0, 0.08);
    }

    .mb-side-bottom .btn {
        flex-grow: 1;
        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.16);
    }


    .head-nav__group {
        width: 100%;
        display: block;
        margin: 0;
        display: block;
        margin: 0;
        overflow-y: auto;
    }
    .head-nav__depth {
        display: block;
        color: #757575;
    }

    .head-nav__title {
        font-size: 2rem;
        font-weight: 500;
        background: url("../images/icon/ic-arrow-down.svg") no-repeat 95% center / 1.4rem;
    }

    .head-nav__title.arrow-none {
        background: none !important;
    }

    .head-nav__title.show {
        background-image: url("../images/icon/ic-arrow-down-black.svg");
    }

    .head-nav__title a {
        padding: 1.2rem 2rem;
    }

    .head-nav__title.mypage-link {
        margin-bottom: 0;
    }

    .head-nav__title.mypage-link a {
        padding: 2rem;
        background: transparent;
        color: #0090E8;
        font-size: 2rem;
    }
    .head-nav__title.mypage-link a::after {
        display: none;
    }
    .head-menu__box {
        position: initial;
        height: auto;
        visibility: inherit;
        margin: 0;
        border: 0;
        background: #F8F9FA;
        display: none;
    }
    .head-menu__box.on  {
        height: auto;
    }
    .head-nav__title.show + .head-menu__box {
        display: block;
    }
    .menu__box-inner {
        display: block;
        max-width: unset;
        padding: 0;
    }

    /* ëª¨ë°”ì¼ ê²€ìƒ‰ì˜ì—­ */
    .header-top .mb-search-group {
        position: fixed;
        right: 0;
        top: 0;
        width: 100%;
        height: 100%;
        max-width: 428px;
        display: block;
        padding: 1.8rem 2rem;
        transform: translateX(100%);
        border-left: 1px solid var(--color-gray);
        background: #ffffff;
        transition: 0.5s;
    }

    .header-search .search-close-btn {
        display: block;
        width: 3rem;
        height: 3rem;
        background: url("../images/icon/ic-arrow-left-black.svg") no-repeat center / 65%;
        text-indent: -9999px;
        overflow: hidden;
        flex-shrink: 0;
    }

    .header-search .search-submit-btn {
        position: initial;
        margin: 0;
        clip: unset;
        white-space: unset;
        flex-shrink: 0;
    }

    .header-search {
        width: 100%;
        display: flex;
    }

    .mb-search-group .header-search input {
        background: none;
        padding: 0.8rem 0.5rem 1.5rem 0.8rem;
    }

    .mb-search-group.show {
        transform: translateX(0);
    }

    .depth-nav__title {
        display: none;
    }
    .depth-nav__title::before {
        display: none;
    }
    .depth-nav__list {
        display: block;
        width: 100%;
        padding: 1rem 0;
        font-size: 1.6rem;
    }

    .depth-nav__list li {
        border: 0;
        border-radius: 0;
    }

    .depth-nav__list li a {
        padding: 1.3rem 2rem;
    }

    .mb-head-btn,
    .mb-sideopen-btn {
        width: 3rem;
        height: 3rem;
        background-repeat: no-repeat;
        background-position: center;
        background-size: 65%;
    }
    .mb-head-btn + .mb-head-btn {
        margin-left: 0.5rem;
    }
    .mb-search-btn {
        background-image: url("../images/icon/ic-search-black.svg");
    }
    .mb-menu-btn,
    .mb-sideopen-btn {
        background-image: url("../images/icon/ic-hambuger-mb.svg");
    }
    .menu-close-btn,
    .mb-sideclose-btn {
        background-image: url("../images/icon/ic-x.svg");
        position: absolute;
        right: 1rem;
    }

    .small-nav__list {
        display: none;
    }

    .header-eng .header-top {
        background: transparent;
        padding: 0;
    }

    .header-eng .header-top .wrap-inner {
        justify-content: space-between;
    }

    .header-eng .head-logo {
        position: initial;
        width: 14.5rem;
    }

    /* í‘¸í„° */
    .footer {
        position: relative;
        padding-bottom: 2rem;
    }
    .footer-top {
        padding: 95px 0 2rem;
    }
    .footer-top .wrap-inner {
        flex-direction: column;
        gap: 2.8rem;
    }
    .footer-bottom .wrap-inner {
        position: static;
    }
    .footer-logo {
        position: absolute;
        top: 30px;
    }
    .footer-logo img {
        width:180px;
    }
    .footer .family-group .select {
        width: 100%;
        background-position-x: 98%;
    }

    .footer .family-group .select + .select {
        margin: 0.8rem 0 0;
    }
    .foot-link__group {
        flex-direction: column;
        align-items: flex-start;
        row-gap: 1rem;
        padding: 2rem 0 1rem;
    }
    .footer .link__list {
        width:100%;
        row-gap: 1rem;
        padding-bottom: 2rem;
    }
    .footer .link__list li {
        gap: 1rem;
    }
    .footer .link__list li:not(:last-child):after {
        margin-right: 1rem;
    }
    .footer .sns__list {
        width: 100%;
        justify-content: flex-end;
    }
    .foot-info__list {
        position: static;
        padding-top: 1rem;
        padding-right: 0;
    }
    .foot-info__list .markImg {
        width: 60px;
        bottom: auto;
        top: 20px;
        right: 20px;
    }

    .footer .copy--btn span {
        display: none;
    }

    .foot-info__list .adress-item {
        align-items: flex-start;
    }

    .foot-info__list address {
        display: block;
    }

    .foot-info__list ul {
        gap: 1rem;
    }

    .footer .call-btn {
        padding: 0.2rem 1.5rem;
    }

    .foot-info__list .line-item::before {
        margin-right: 1rem;
    }

    .eng-footer .wrap-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .eng-footer .footer-logo {
        width: 14.5rem;
    }

    .footer .img-mark {
        width: 5rem;
        height: 5.1rem;
        top: 0;
        right: 2rem;
        bottom: unset;
    }

    /*TABLE*/
    .sticky-table tbody td {
        white-space: nowrap;
    }

    .scroll-img img {
        width: 100%;
    }

    .page-print {
        display: none;
    }

    /*popup*/
    .popup__head {
        align-items: flex-start;
        margin-bottom: 0;
        gap: 20px;
    }
    .popup__body {
        padding: 15px 0;
    }
    .popup__box {
        max-width: 90%;
    }
    .popup__close {
        right: 0;
    }
    .popup__foot {
        margin-top: 0;
        border-top: 1px solid #d7d7d7;
    }
}

@media all and (max-width: 640px) {
    .footer-logo img {
        width: 145px;
    }
    .foot-info__list .markImg {
        width: 50px;
    }
    .footer .family-group .select,
    .foot-info__list,
    .footer .link__list {
        font-size: 1.4rem;
    }
    .foot-info__list .icon-item::before {
        width: 1.7rem;
        height: 2.5rem;
    }
}
