/* 공통 */
div,
p,
span,
a {
    box-sizing: border-box;
}

.container {
    max-width: 1400px;
}

.ellipsis:focus {
    display: block;
    /* border: thin dashed var(--Default); */
}

/* flex */
.d-flex {
    display: flex;
}

.flex-column {
    flex-direction: column;
}

.align-items-center {
    align-items: center;
}

/* gap */
.gap-1 {
    gap: 10px;
}

.gap-2 {
    gap: 20px;
}

.gap-3 {
    gap: 30px;
}

.gap-4 {
    gap: 40px;
}

/* margin */
.mb-1 {
    margin-bottom: 10px;
}

.mb-2 {
    margin-bottom: 20px;
}

.mb-3 {
    margin-bottom: 30px;
}

.mb-4 {
    margin-bottom: 40px;
}

/* 웹접근성 */
a:focus,
button:focus {
    outline: thin dashed var(--Default);
}

.slick-slider a:focus {
    border: thin dashed var(--Default);
    box-sizing: border-box;
    outline: none;
}

header .lnb > li a:focus,
.mayorBox .mayorLink a:focus,
.noticeSec .tab-area .tab .tabBtn.active a:focus {
    outline-color: #fff;
}

.snsSec .snsSlider a:focus {
    outline: thin dashed var(--Default);
}

.quickCon2 .searchBox > .searchRst a:focus {
    outline: thin dashed #fff;
}

/* nav */
header.nav-d {
    height: 119px;
}

header.nav-d .nav {
    position: fixed;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    top: 41px;
    left: 0;
    width: 100%;
    height: 78px;
    background: #fff;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

header.nav-d .nav .headerLogo {
    padding-left: 65px;
}

header.nav-d .nav .headerLogo img {
    width: 132px;
}

header.nav-d .nav .gnbBox {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 1200px;
    height: 100%;
}

header.nav-d .nav .gnbBox li {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
    width: 100%;
    height: 100%;
    text-align: center;
}

header.nav-d .nav .gnbBox li a {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "GmarketSans";
    font-size: 18px;
    font-weight: 500;
    width: 100%;
    height: 100%;
}

header .nav .rightItem {
    padding-left: 15px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 30px;
    flex-shrink: 0;
}

header.nav-d .nav .rightItem .itemA {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

header.nav-d .nav .rightItem .search,
header.nav-d .nav .rightItem .languageBox,
header.nav-d .nav .rightItem .userIcon {
    width: 32px;
    height: 32px;
}

header .nav .rightItem .search > a,
header .nav .rightItem .sitemapBox > a,
header.nav-d .nav .rightItem .userIcon > a {
    display: block;
}

header.nav-d .nav .rightItem .languageBox a.dropdownBtn {
    display: block;
    border: none;
    border-radius: 0;
    background: transparent;
}

header.nav-d .nav .rightItem .languageBox .dropdownCon {
    width: fit-content;
    top: 40px;
    right: 0;
}

header.nav-d .nav .rightItem .userIcon {
    display: flex;
}

header.nav-d .nav .rightItem .sitemapBox {
    padding: 23px;
    background: var(--Default);
    width: 100%;
    height: 100%;
}

header.nav-d .nav .rightItem .search > a img,
header.nav-d .nav .rightItem .languageBox a.dropdownBtn img {
    padding: 0;
    width: 100%;
}

header.nav-d .nav .rightItem .sitemapBox > a img {
    width: 32px;
    height: 32px;
}

header.nav-d .nav .deopth2Bg {
    display: none;
    position: absolute;
    top: 78px;
    left: 0;
    background: #fff;
    width: 100%;
    height: 450px;
    border-top: 2px solid var(--Default);
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.15);
}

header.nav-d .nav .deopth2Bg .container {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    max-width: 1200px;
    height: 100%;
}

header.nav-d .nav .deopth2Bg ul.depth2 {
    padding: 0 10px;
    width: 100%;
    height: 100%;
    border-right: 1px solid var(--Default);
}

header.nav-d .nav .deopth2Bg ul.depth2:last-child {
    border-right: none;
}

header.nav-d .nav .deopth2Bg ul.depth2 li {
    padding: 0 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-grow: 1;
    width: 100%;
    height: 50px;
}

header .nav .deopth2Bg ul.depth2 li:first-child {
    margin-top: 16px;
}

header.nav-d .nav .deopth2Bg ul.depth2 li a {
    padding: 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-family: "GmarketSans";
    color: var(--Greyscale6);
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    word-break: keep-all;
}

header.nav-d .nav .deopth2Bg ul.depth2 li a:hover {
    color: var(--Primary-dark);
    text-decoration: underline;
}

/* 반응형 네비게이션 */
.nav-m {
    display: none;
    background: #fff;
    height: 145px;
}

.nav-m .nav {
    position: fixed;
    top: 67px;
    z-index: 998;
    width: 100%;
    height: 78px;
}

.nav-m .nav .navBar {
    padding-left: 32px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    height: 100%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-m .nav .navBar .headerLogo a img {
    width: 132px;
}

.nav-m .nav .navBar .rightItem {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    height: 100%;
}

.nav-m .nav .navBar .rightItem a.searchBtn {
    display: block;
    padding: 0;
    width: 32px;
    height: auto;
    background: transparent;
}

.nav-m .nav .navBar .rightItem a.searchBtn img {
    width: 100%;
    height: 100%;
}

.navBar .rightItem .hamburger {
    padding: 26px;
    width: 78px;
    height: 100%;
    background: var(--Default);
}

.navBar .rightItem .bar {
    display: block;
    width: 24px;
    height: 2px;
    margin: 5px auto;
    -webkit-transition: all 3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background: #fff;
}

.navBar .rightItem .hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.navBar .rightItem .hamburger.active .bar:nth-child(1) {
    -webkit-transform: translateY(7px) rotate(45deg);
    transform: translateY(7px) rotate(45deg);
}

.navBar .rightItem .hamburger.active .bar:nth-child(3) {
    -webkit-transform: translateY(-7px) rotate(-45deg);
    transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 1480px) {
    .nav-menu.active + .nav-overlay {
        display: block;
    }

    .nav-d {
        display: none;
    }

    .nav-m {
        display: block;
    }

    .navBar .rightItem .hamburger {
        cursor: pointer;
    }

    .nav-menu {
        position: fixed;
        right: -100%;
        top: 145px;
        background: #fff;
        height: 100vh;
        text-align: center;
        transition: 0.5s ease-in-out;
        box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.15);
        z-index: 999;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu.active .content {
        background: #000;
    }

    .nav-menu .topCon {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
    }

    .nav-menu .navTab {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
    }

    .nav-menu .navTab-area {
        flex-shrink: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        height: calc(100vh - 75px);
        background: #fff;
    }

    .nav-menu .navTab-area ul.tab {
        margin: 0;
    }

    .nav-menu .navTab-area li.tabBtn {
        border-radius: 0 !important;
    }

    .nav-menu .navTab-area li {
        margin-top: 0;
        padding: 16px;
        flex-grow: 0;
        width: 100%;
        font-size: 16px;
        border: none;
    }

    .nav-menu .navTab-area li:last-child {
        border-right: none;
    }

    .nav-menu .navTab-area li.active {
        box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.15);
    }

    .nav-menu .navTab-area li.active a {
        color: var(--Default);
        font-weight: 700;
    }

    .nav-menu .navTab-area li.active::after {
        content: none;
    }

    .nav-menu .navTab-area li a {
        padding: 0;
        word-break: keep-all;
    }

    .nav-menu .tabCon {
        flex-grow: 1;
        width: 100%;
        height: 100vh;
        background: var(--Default);
    }

    .nav-menu .tabCon .tabConItem .navSubCon {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-self: flex-start;
    }

    .nav-menu .tabCon .tabConItem .navSubCon li {
        padding: 16px;
        width: 100%;
    }

    .nav-menu .tabCon .tabConItem .navSubCon li a {
        display: block;
        color: #fff;
        text-align: center;
    }

    .nav-menu .tabCon .tabConItem .navSubCon li:hover {
        background: var(--Primary-dark);
    }

    .nav-m .nav .navBar.flexBox {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 16px;
    }

    .nav-m .nav .navBar.flexBox .closeBtn img {
        width: 24px;
        height: 24px;
    }

    .nav-m .nav .navBar .search-bar-wrapper {
        position: relative;
        width: 100%;
    }

    .nav-m .nav .navBar .search-bar-wrapper button {
        position: absolute;
        top: 0;
        right: 1%;
        height: 40px;
        width: 40px;
        background-color: transparent;
        border: 0;
        outline: none;
        padding: 0;
        cursor: pointer;
        z-index: 2;
    }

    .nav-m .nav .navBar .search-bar-wrapper button img {
        padding: 8px;
        height: 100%;
        width: 100%;
    }

    .nav-m .nav .navBar .search-bar-wrapper input[type="search"] {
        padding: 0 16px;
        position: relative;
        height: 40px;
        background-color: #fff;
        border: 1px solid #1784d8;
        border-radius: 30px;
        box-sizing: border-box;
        box-shadow: none;
    }

    .nav-m .nav .navBar .search-bar-wrapper input[type="search"]::placeholder {
        color: #999;
        font-size: 14px;
        font-weight: 400;
    }
}

@media only screen and (max-width: 1480px) and (min-width: 768px) {
    .nav-menu {
        width: 50%;
    }

    .nav-menu .navTab-area {
        width: 35%;
    }
}

@media only screen and (max-width: 1480px) and (min-width: 960px) {
    .nav-m .nav .navBar {
        padding-left: 32px;
    }
}

@media only screen and (max-width: 959px) and (min-width: 768px) {
    .nav-m .nav .navBar {
        padding-left: 20px;
    }
}

@media only screen and (max-width: 767px) and (min-width: 460px) {
    .nav-m .nav .navBar {
        padding-left: 16px;
    }

    .nav-menu {
        width: 70%;
    }

    .nav-menu .navTab-area {
        width: 40%;
    }
}

@media only screen and (max-width: 459px) and (min-width: 320px) {
    .nav-m .nav .navBar {
        padding-left: 16px;
    }

    .nav-menu {
        width: 100%;
    }

    .nav-menu .navTab-area {
        width: 40%;
    }
}

/* subpage-snb */
.subSNB {
    margin-top: 40px;
}

.subSNB .titBox {
    padding: 57px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--Primary);
}

.subSNB .titBox h1 {
    text-align: center;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    word-break: keep-all;
}

.subSNB > .accordion-area {
    margin-top: 12px;
}

.subSNB .accordion {
    border: 1px solid var(--Greyscale4);
}

.subSNB .accordion .accordionItem .accordionHeader {
    padding: 10px;
}

.subSNB .accordion .accordionItem .accordionHeader.bb-no {
    border-bottom: none;
}

.subSNB .accordion .accordionItem .accordionHeader .accordionTitle {
    font-size: 16px;
    font-weight: 400;
}

.subSNB .accordion .accordionItem .accordionHeader.active .accordionTitle {
    color: var(--Default);
}

.subSNB .accordion .accordionItem .accordionHeader .accordionIcon {
    width: 20px !important;
    height: 20px !important;
    border: none;
    border-radius: 0;
}

.subSNB .accordion .accordionItem .accordionHeader .accordionIcon .Icon {
    width: 100%;
}

.subSNB .accordion .accordionItem .accordionHeader .accordionIcon > .Icon.on {
    display: none;
}

.subSNB
.accordion
.accordionItem.active
.accordionHeader
.accordionIcon
> .Icon.off {
    display: none;
}

.subSNB
.accordion
.accordionItem.active
.accordionHeader
.accordionIcon
> .Icon.on {
    display: block;
    background: var(--Default);
    border-radius: 50%;
}

.subSNB > .accordion-area .accordionContent {
    padding: 8px 6px;
    background: var(--Greyscale2);
}

.subSNB > .accordion-area .accordionContent > ul li {
    padding: 8px;
}

.subSNB > .accordion-area .accordionContent > ul li a {
    display: block;
    width: fit-content;
    color: var(--Greyscale5);
    font-size: 16px;
}

.subSNB > .accordion-area .accordionContent > ul li.active a {
    color: var(--Greyscale9);
}

.subSNB-mobile {
    display: none;
}

@media (max-width: 1199px) {
    .sub-contents > .row {
        flex-direction: column;
    }

    .subSNB.deskTop {
        display: none;
    }

    .subSNB-mobile {
        padding: 16px 0 0;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 16px;
        width: 100%;
    }

    .subSNB-mobile .aItem,
    .subSNB-mobile .bItem {
        flex-grow: 1;
        flex-basis: 50%;
    }
}

/* Accordion */
.accordion-area {
    margin-top: 40px;
}

.accordion {
    width: 100%;
}

.accordion .accordionItem {
    overflow: hidden;
}

.accordion .accordionItem .accordionHeader {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: left;
    gap: 16px;
    padding: 16px;
    width: 100%;
    cursor: pointer;
    background-color: #fff;
    border-bottom: 1px solid var(--Greyscale4);
}

.accordion.right .accordionItem .accordionHeader {
    justify-content: space-between;
}

.accordion .accordionItem .accordionHeader:focus,
.accordion .accordionItem .accordionHeader:focus-visible {
    border: thin dashed var(--Default);
    outline: none;
}

.accordion .accordionItem .accordionHeader .accordionIcon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: #fff;
    border: 1px solid var(--Greyscale4);
    border-radius: 50%;
}

.accordion .accordionItem .accordionHeader .accordionTitle {
    color: var(--Greyscale8);
    font-size: 18px;
    font-weight: 400;
}

.accordion .accordionItem .accordionContent {
    display: none;
    padding: 16px;
    height: auto;
    font-size: 18px;
    font-weight: 400;
    background: var(--Greyscale1);
    overflow: hidden;
}

.accordion .accordionHeader.active .accordionIcon .ezIcon.add,
.accordion .accordionHeader .accordionIcon .ezIcon.remove {
    display: none;
}

.accordion .accordionItem .accordionHeader.active + .accordionContent,
.accordion .accordionHeader.active .accordionIcon .ezIcon.remove {
    display: block;
}

.accordion .accordionItem .accordionHeader .accordionIcon,
.accordion .accordionItem .accordionHeader .accordionTitle {
    pointer-events: none;
}

/* subtit + breadcrumb */
.breadcrumb {
    padding-bottom: 16px;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.breadcrumb li {
    display: flex;
    flex-direction: row;
    align-items: stretch;
}

.breadcrumb li a {
    font-family: "GmarketSans";
    color: var(--Greyscale6);
    font-size: 16px;
    font-weight: 500;
    line-height: 19px;
}

.breadcrumb li::after {
    content: "";
    color: var(--Greyscale6);
    width: 16px;
    height: 16px;
    background: url(../assets/icon/common/breadcrumbs_arrow.svg) no-repeat center;
}

.breadcrumb li:last-child::after {
    display: none;
}

.tit-area {
    display: flex;
    flex-direction: column;
    font-family: "GmarketSans";
}

.tit-area h2.tit-txt {
    color: var(--Primary-dark);
    font-size: 36px;
    font-weight: 700;
}

.tit-area h3.subtit-txt {
    color: var(--Greyscale5);
    font-size: 18px;
    font-weight: 500;
}

.sub-tit-area section {
    padding: 50px 0;
    background: var(--Greyscale2);
}

.sub-tit-area .tit-area.sns {
    display: flex;
    flex-direction: row;
    align-items: end;
    justify-content: space-between;
}

@media (max-width: 1480px) {
    .sub-tit-area section {
        padding-left: 0 !important;
    }
}

@media (max-width: 640px) {
    /* subtit + breadcrumb */
    .tit-area h2.tit-txt {
        width: 100%;
        text-align: center;
        word-break: keep-all;
        word-wrap: break-word;
    }

    .sub-tit-area .tit-area.sns {
        flex-direction: column;
        align-items: center;
    }

    .breadcrumb {
        justify-content: center;
    }
}

/* Dropdown */
.dropdown {
    position: relative;
    font-size: 16px;
    font-weight: 400;
}

.dropdown .dropdownBtn {
    display: flex;
    flex-direction: row;
    align-items: center;
    color: #000;
    background: #fff;
    border: 1px solid var(--Greyscale4);
    border-radius: 8px;
    box-sizing: border-box;
}

.dropdown .dropdownBtn span {
    padding: 12px 0 12px 16px;
    flex-grow: 1;
    display: block;
    height: 100%;
    font-size: 16px;
    border-right: 1px solid var(--Greyscale4);
}

.dropdown .dropdownBtn > img {
    padding: 0 14px;
    transition: all 0.2s;
}

.dropdown .dropdownCon {
    display: none;
    position: absolute;
    margin-top: -1px;
    width: 100%;
    background: #fff;
    border: 1px solid var(--Greyscale4);
    border-radius: 8px;
    box-sizing: border-box;
    z-index: 1;
}

.dropdown .dropdownCon a {
    display: block;
    padding: 12px 14px;
    color: #000;
}

.dropdown.show .dropdownCon {
    display: block;
}

.dropdown.show .dropdownBtn > img {
    transform: rotate(180deg);
}

/* Sub searchbox */
input {
    font-size: 18px;
    background: #fff;
}

input:focus-visible,
textarea:focus-visible {
    outline: transparent;
}

input[type="text"]::placeholder,
input[type="password"]::placeholder,
input[type="search"]::placeholder,
input[type="file"]::placeholder,
textarea::placeholder {
    color: var(--Greyscale5);
    font-size: 16px;
}

input[type="search"]::-webkit-search-cancel-button {
    display: none;
}

.subsearch {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 0;
}

.subsearch .dropdown {
    width: 200px;
}

.subsearch .dropdownBtn {
    border-radius: 8px 0 0 8px;
}

.subsearch .rightItem {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0;
    flex-grow: 1;
}

.subsearch .rightItem input {
    flex-grow: 1;
    padding: 0 16px;
    height: 100%;
    border: 1px solid var(--Greyscale4);
}

.subsearch .rightItem .searchBtn {
    border-radius: 0 8px 8px 0;
    flex-shrink: 0;
}

.subTopitem {
    margin: 0 0 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 16px;
    background: var(--Greyscale1);
    border-radius: 16px;
}

.subTopitem .aItem {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.subTopitem .aItem > .dropdown {
    width: 200px;
}

.subTopitem .aItem > .subsearch {
    flex-grow: 1;
}

@media (max-width: 1199px) {
    .subTopitem {
        margin: 40px 0 20px;
    }
}

@media (max-width: 960px) {
    .subTopitem .aItem {
        flex-wrap: wrap;
        gap: 10px;
    }

    .dropdown,
    .subTopitem .aItem > .dropdown {
        width: 100%;
    }
}

@media (max-width: 640px) {
    .subTopitem .aItem > .subsearch {
        flex-wrap: wrap;
    }

    .subTopitem .aItem > .subsearch .rightItem input,
    .subTopitem .aItem > .subsearch .dropdown {
        width: 100%;
    }

    .subTopitem .aItem > .subsearch .dropdown {
        margin-bottom: 10px;
    }

    .subTopitem .aItem > .subsearch .rightItem input {
        border-radius: 8px 0 0 8px;
    }
}

/* sub-footer-common */
.sub-FooterCommon {
    padding: 30px 0;
    margin-top: 30px;
    font-family: "GmarketSans";
}

.sub-FooterCommon .topItem {
    margin-bottom: 10px;
    padding: 16px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 19px;
    flex-wrap: wrap;
    border: 1px solid var(--Greyscale3);
}

.sub-FooterCommon .topItem p {
    color: var(--Greyscale7);
    font-size: 16px;
    font-weight: 500;
}

.sub-FooterCommon .topItem p span {
    color: var(--Greyscale9);
}

.sub-FooterCommon .bodyItem .leftItem {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sub-FooterCommon .bodyItem .leftItem .info-area {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    border: 1px solid var(--Greyscale3);
}

.sub-FooterCommon .bodyItem .leftItem .info-area .tit-area {
    padding: 9px 16px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5px;
    color: #fff;
    background: var(--Primary-dark);
}

.sub-FooterCommon .bodyItem .leftItem .info-area .part-area {
    display: flex;
    align-items: center;
    padding: 9px 16px;
    color: var(--Greyscale7);
}

.sub-FooterCommon .bodyItem .leftItem .rdo-area {
    padding: 10px 16px;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--Greyscale3);
}

.sub-FooterCommon .bodyItem .leftItem .rdo-area .titItem {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.sub-FooterCommon .bodyItem .leftItem .rdo-area .titItem a {
    display: block;
    padding: 5px 16px;
    color: #fff;
    font-size: 18px;
    border-radius: 60px;
}

.sub-FooterCommon .bodyItem .leftItem .rdo-area .titItem a.opn {
    background: var(--Greyscale7);
}

.sub-FooterCommon .bodyItem .leftItem .rdo-area .titItem a.sbm {
    background: var(--Primary-dark);
}

.sub-FooterCommon .bodyItem .leftItem .rdo-area .rdoItem {
    padding-top: 10px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.sub-FooterCommon .bodyItem .leftItem .rdo-area .rdoItem > .radio-area {
    justify-content: start;
}

.sub-FooterCommon
.bodyItem
.leftItem
.rdo-area
.rdoItem
> .radio-area
label
span {
    font-family: "Noto Sans Korean";
    color: var(--Greyscale8);
    font-size: 16px;
    font-weight: 400;
}

.sub-FooterCommon .bodyItem .leftItem .rdo-area .rdoItem a {
    display: block;
    padding: 5px 16px;
    color: #fff;
    font-size: 18px;
    background: var(--Greyscale7);
    border-radius: 60px;
}

.sub-FooterCommon .bodyItem .rightItem {
    padding: 16px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    height: 100%;
    background: var(--Greyscale3);
}

.sub-FooterCommon .bodyItem .rightItem .qrImg {
    padding: 7px;
    background: #fff;
    border-radius: 10px;
}

@media (max-width: 640px) {
    /* sub-footer-common */
    .sub-FooterCommon .topItem > img {
        height: 42px;
    }

    .sub-FooterCommon .topItem p,
    .sub-FooterCommon .bodyItem .leftItem .info-area,
    .sub-FooterCommon .bodyItem .leftItem .rdo-area .titItem,
    .sub-FooterCommon .bodyItem .rightItem,
    .sub-FooterCommon .bodyItem .leftItem .rdo-area .titItem a,
    .sub-FooterCommon .bodyItem .leftItem .rdo-area .rdoItem a {
        font-size: 14px;
        gap: 10px;
    }
}

/* pagination */
.pagination-area {
    font-family: "Noto Sans Korean";
    padding: 20px 0;
}

.pagination {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.pagination li {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.pagination li img {
    display: block;
}

.pagination li a {
    color: var(--Greyscale8);
    font-size: 16px;
}

.pagination .num.active {
    background: inherit;
    border: 1px solid var(--Primary);
    border-radius: 50%;
}

.pagination .num.active a {
    color: var(--Primary);
}

@media (max-width: 640px) {
    .pagination {
        gap: 6px;
    }

    .pagination li {
        height: 30px;
        width: 30px;
    }
}

/* Photo list */
.photo-list .photo-card {
    margin-top: 40px;
    display: block;
    background: #fff;
    border-radius: 0 50px 0 0;
    filter: drop-shadow(0px 2px 15px rgba(0, 0, 0, 0.1));
}

.photo-list .photo-card .img-area {
    width: 100%;
    height: 220px;
}

.photo-list .photo-card .img-area img {
    width: 100%;
    height: 100%;
    border-radius: 0 50px 0 0;
    object-fit: cover;
}

.photo-list .photo-card .info-area {
    padding: 30px 20px;
}

.photo-list .photo-card .info-area ul.infoTxt {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.photo-list .photo-card .info-area ul.infoTxt li {
    display: flex;
    align-items: center;
}

.photo-list .photo-card .info-area ul.infoTxt li::after {
    content: "/";
    padding: 0 3px;
    font-size: 14px;
}

.photo-list .photo-card .info-area ul.infoTxt li:last-child::after {
    content: "";
}

.photo-list .photo-card .info-area ul.infoTxt li p {
    color: var(--Greyscale8);
    font-size: 14px;
    font-weight: 300;
}

.photo-list .photo-card .info-area p.tit {
    margin: 0 0 8px;
    color: var(--Greyscale8);
    font-size: 18px;
    font-weight: 700;
}

.photo-list .photo-card .info-area p.con {
    color: var(--Greyscale6);
    font-size: 16px;
    font-weight: 400;
}

.ellipsis4 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

/* textarea */
textarea {
    padding: 12px 16px;
    width: 100%;
    height: 300px;
    border: 1px solid var(--Greyscale4);
    border-radius: 0;
}

textarea:focus,
textarea:focus-visible {
    outline: 1px solid var(--Primary) !important;
}

/* 만족도조사결과 + 의견남기기 + 모달 */
.inputField.opn-input {
    display: none;
    flex-shrink: 0;
    width: 100%;
}

.inputField.opn-input input {
    padding: 12px 16px;
    width: 100%;
    height: 43px;
    border: 1px solid var(--Greyscale4);
}

.inputField.opn-input input:focus,
.inputField.opn-input input:focus-visible {
    outline: 1px solid var(--Primary);
}

.inputField.opn-input.active {
    display: block;
}

.modal {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
}

.modalBg {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.modal.show,
.modal-img.show {
    display: none;
}

.modal .modalCon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 50%;
    background: #fff;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.2);
}

.modal.rslView-modal .modalCon {
    max-height: 700px;
    overflow: auto;
}

.modal.rslView-modal .modalCon .modalTop {
    padding: 16px 24px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 6px;
    background: var(--Primary-darker);
}

.modal.rslView-modal .modalCon .modalTop img {
    width: 24px;
}

.modal.rslView-modal .modalCon .modalTop h1.tit {
    font-family: "GmarketSans";
    color: #fff;
    font-size: 18px;
    font-weight: 500;
}

.modal.rslView-modal .modalBody {
    padding: 16px 24px 0;
}

.modal.rslView-modal .modalBody .rslViewchartBox {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    border: 1px solid var(--Greyscale4);
}

.modal.rslView-modal .modalBody .rslViewchartBox ul.txtItem li,
.modal.rslView-modal .modalBody .rslViewchartBox ul.countItem li {
    padding: 10px;
    font-size: 12px;
    height: 40px;
    text-align: center;
    border-bottom: 1px solid var(--Greyscale4);
}

.modal.rslView-modal .modalBody .rslViewchartBox ul li:last-child {
    border-bottom: none;
}

.modal.rslView-modal .modalBody .rslViewchartBox ul:nth-child(1),
.modal.rslView-modal .modalBody .rslViewchartBox ul:nth-child(2) {
    min-width: 84px;
    max-width: 120px;
    border-right: 1px solid var(--Greyscale4);
}

.modal.rslView-modal .modalBody .opn-area .topItem {
    margin: 16px 0;
    padding: 6px 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    border: none;
    border-bottom: 1px solid var(--Greyscale4);
}

.modal.rslView-modal .modalBody .opn-area .topItem img {
    width: 24px;
    height: 24px;
}

.modal.rslView-modal .modalBody .opn-area .topItem h2.tit {
    font-family: "GmarketSans";
    color: var(--Primary-darker);
    font-size: 16px;
    font-weight: 500;
}

.modal.rslView-modal .modalBody .opn-area .opnBox {
    max-height: 290px;
    overflow: auto;
    border: 1px solid var(--Greyscale4);
}

.modal.rslView-modal .modalBody .opn-area .opnBox .opnBoxItem {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    font-family: "Noto Sans Korean";
    font-size: 14px;
    border-bottom: 1px solid var(--Greyscale4);
}

.modal.rslView-modal .modalBody .opn-area .opnBox .opnBoxItem:last-child {
    border-bottom: none;
}

.modal.rslView-modal .modalBody .opn-area .opnBox .opnBoxItem .name {
    padding: 8px 16px;
    flex-shrink: 0;
    width: 84px;
    height: 100%;
    text-align: center;
}

.modal.rslView-modal .modalBody .opn-area .opnBox .opnBoxItem .opnCon {
    padding: 8px 16px;
    display: flex;
    flex-direction: row;
    align-items: baseline;
    flex-grow: 1;
    border-left: 1px solid var(--Greyscale4);
}

.modal.rslView-modal .modalBody .opn-area .opnBox .opnBoxItem .opnCon p.conTxt {
    flex-grow: 1;
    font-size: 14px;
    font-weight: 400;
    white-space: pre-wrap;
    word-break: break-all;
}

.modal.rslView-modal .modalBody .opn-area .opnBox .opnBoxItem .opnCon .date {
    flex-shrink: 0;
    padding: 0 16px;
    margin-bottom: auto;
}

.modal.rslView-modal
.modalBody
.opn-area
.opnBox
.opnBoxItem
.opnCon
.date
.dateTxt {
    color: var(--Greyscale7);
    font-size: 14px;
    font-weight: 400;
}

.modal.rslView-modal
.modalBody
.opn-area
.opnBox
.opnBoxItem
.opnCon
.date
.timeTxt {
    color: var(--Greyscale5);
    font-size: 14px;
    font-weight: 400;
}

.modal.rslView-modal .modalFooter {
    margin: 16px auto;
}

.modal.rslView-modal .modalFooter button {
    margin: 0 auto;
    padding: 7px;
    width: 120px;
    font-family: "Noto Sans Korean";
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    background: var(--Primary);
    border-radius: 8px;
}

.modal.rslView-modal .modalBody .rslChart {
    flex-grow: 1;
    height: 100%;
}

.modal.rslView-modal .modalBody .rslChart li {
    padding: 10px 10px 10px 0;
    display: flex;
    align-items: center;
    height: 40px;
    border-bottom: 1px solid var(--Greyscale4);
}

.modal.rslView-modal .modalBody .rslChart li .bar {
    height: 10px;
}

.modal.rslView-modal .modalBody .rslChart li #bar1 {
    width: 20%;
    background-color: var(--Greyscale9);
}

.modal.rslView-modal .modalBody .rslChart li #bar2 {
    width: 40%;
    background-color: var(--Greyscale8);
}

.modal.rslView-modal .modalBody .rslChart li #bar3 {
    width: 60%;
    background-color: var(--Greyscale7);
}

.modal.rslView-modal .modalBody .rslChart li #bar4 {
    width: 80%;
    background-color: var(--Greyscale6);
}

.modal.rslView-modal .modalBody .rslChart li #bar5 {
    width: 100%;
    background-color: var(--Greyscale5);
}

@media (max-width: 767px) {
    .modal.rslView-modal .modalCon {
        max-width: 70%;
    }
}

@media (max-width: 640px) {
    .modal.rslView-modal .modalBody .opn-area .opnBox .opnBoxItem {
        flex-direction: column;
    }

    .modal.rslView-modal .modalBody .opn-area .opnBox .opnBoxItem .name {
        width: 100%;
        text-align: left;
    }

    .modal.rslView-modal .modalBody .opn-area .opnBox .opnBoxItem .opnCon {
        flex-direction: column;
        width: 100%;
        border-left: none;
    }

    .modal.rslView-modal .modalBody .opn-area .opnBox .opnBoxItem .opnCon .date {
        padding: 10px 0 0;
    }
}

@media (max-width: 460px) {
    .modal.rslView-modal .modalCon {
        max-height: 70%;
    }

    .modal.rslView-modal .modalBody .rslViewchartBox {
        flex-wrap: wrap;
    }

    .modal.rslView-modal .modalBody .rslViewchartBox ul:nth-child(1),
    .modal.rslView-modal .modalBody .rslViewchartBox ul:nth-child(2) {
        min-width: unset;
        max-width: unset;
        width: 50%;
    }

    .modal.rslView-modal .modalBody .rslViewchartBox ul:nth-child(2) {
        border-right: none;
    }

    .modal.rslView-modal .modalBody .rslChart {
        border-top: 1px solid var(--Greyscale4);
        width: 100%;
    }
}

/* floatingBtn */
.flotingBtn {
    position: fixed;
    bottom: 60px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    z-index: 999;
}

.flotingBtn > a.topBtn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--Default);
    display: none;
    text-align: center;
    line-height: 52px;
}

@media (max-width: 1480px) {
    .flotingBtn > a.topBtn {
        width: 50px;
        height: 50px;
    }
}

/* disabled */
.disabled {
    opacity: 0.4 !important;
    cursor: default;
}

/* Tab */
.tab-area {
    margin-top: 40px;
}

.tab {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    line-height: 47px;
    box-sizing: border-box;
}

.tab.fit {
    width: 100%;
}

.tabBtn {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 8px;
    width: 25%;
    height: 47px;
    font-size: 18px;
    text-align: center;
    border: 1px solid var(--Greyscale4);
}

.tab .tabBtn {
    border-right: none;
}

.tab .tabBtn:last-child {
    border-right: 1px solid var(--Greyscale4) !important;
}

.tabBtn:first-child {
    border-radius: 8px 0 0 8px;
}

.tabBtn:nth-child(4n) {
    border-radius: 0 8px 8px 0;
    border-right: 1px solid var(--Greyscale4);
}

.tabBtn:nth-child(5),
.tabBtn:nth-child(9),
.tabBtn:nth-child(21) {
    border-radius: 8px 0 0 8px !important;
}

.tabBtn:last-child {
    border-radius: 0 8px 8px 0;
}

.tab .tabBtn.lastTab {
    border-radius: 8px !important;
}

.tabBtn a {
    width: 100%;
    padding: 0 12px;
    display: block;
    color: var(--Greyscale6);
    /* overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap; */
}

.tabConItem {
    display: none;
}

.tabConItem.active {
    display: block;
}

.tabBtn.full.active {
    background: var(--Primary-darker);
    border: none;
}

.tabBtn.full.active a {
    color: #fff;
}

.tab.fiveTab > .tabBtn {
    width: 20%;
    border-right: none;
}

.tab.fiveTab > .tabBtn:last-child {
    border-radius: 0 8px 8px 0 !important;
}

.tab.fiveTab > .tabBtn:nth-child(4n),
.tab.fiveTab > .tabBtn:nth-child(9) {
    border-radius: 0 !important;
}

.tab.fiveTab > .tabBtn:nth-child(5n) {
    border-radius: 0px 8px 8px 0 !important;
    border-right: 1px solid var(--Greyscale4);
}

.tab.fiveTab > .tabBtn:nth-child(6),
.tab.fiveTab > .tabBtn:nth-child(11),
.tab.fiveTab > .tabBtn:nth-child(16) {
    border-radius: 8px 0 0 8px !important;
}

.tab-area .tab.dscl > .tabBtn {
    flex-grow: 1;
    width: unset;
    border-radius: 0 !important;
}

.tab-area .tab.dscl > .tabBtn:nth-child(4n) {
    border-right: 0;
}

.tab-area .tab.dscl > .tabBtn:first-child {
    border-radius: 8px 0 0 8px !important;
}

.tab-area .tab.dscl > .tabBtn:last-child {
    border-radius: 0 8px 8px 0 !important;
}

.intgrSearch .tab .tabBtn {
    width: calc(100% / 8);
}

.intgrSearch .tab .tabBtn:nth-child(4n) {
    border-radius: unset;
    border-right: 0;
}

.intgrSearch .tab .tabBtn:nth-child(5) {
    border-radius: 0 !important;
}

.intgrSearch .tab .tabBtn:last-child {
    border-radius: 0 8px 8px 0;
}

.intgrSearch .tabCon > .tabConItem {
    padding-top: 40px;
}

@media (max-width: 640px) {
    .tabBtn {
        height: auto;
        line-height: normal;
    }

    .tabBtn a {
        padding: 10px 12px;
        word-break: keep-all;
        font-size: 16px;
    }

    .tabBtn,
    .tab.fiveTab > .tabBtn {
        width: 50%;
    }

    .tabBtn:nth-child(2n),
    .tab.fiveTab > .tabBtn:nth-child(2n) {
        border-right: 1px solid var(--Greyscale4);
        border-top-right-radius: 8px !important;
        border-bottom-right-radius: 8px !important;
    }

    .tabBtn:nth-child(2n + 1),
    .tab.fiveTab > .tabBtn:nth-child(2n + 1) {
        border-top-left-radius: 8px;
        border-bottom-left-radius: 8px;
    }

    .tab.fiveTab > .tabBtn:last-child {
        border-radius: 8px !important;
    }
}

/* button */
button {
    cursor: pointer;
}

.btn {
    display: block;
    color: var(--Primary);
    cursor: pointer;
}

.btn.Fill.list {
    margin: 0 auto;
    padding: 21px;
    width: 200px;
    color: #fff;
    font-size: 18px;
    text-align: center;
    font-weight: 700;
    background: var(--Primary-darker);
    border-radius: 8px;
    border: none !important;
}

.btn.Fill.write {
    padding: 21px;
    width: 200px;
    color: #fff;
    font-size: 18px;
    text-align: center;
    font-weight: 700;
    background: var(--Primary-darker);
    border-radius: 8px;
    border: none !important;
}

.btn.txt-Close {
    padding: 12px 16px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    width: fit-content;
    font-family: "GmarketSans";
    color: #000;
    font-size: 21px;
    font-weight: 500;
    border: 1px solid #000;
    border-radius: 16px;
}

.btn.txt-Moreview {
    padding: 8px 12px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    width: fit-content;
    font-family: "GmarketSans";
    color: var(--Primary);
    font-size: 18px;
    font-weight: 500;
    background: #fff;
    border-radius: 10px;
}

.btn.txt-Gobtn.line {
    padding: 8px 16px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    width: fit-content;
    font-family: "GmarketSans";
    color: var(--Primary);
    font-size: 18px;
    font-weight: 500;
    background: transparent;
    border: 1px solid var(--Primary);
    border-radius: 60px;
}

.searchBtn {
    padding: 12px 16px;
    height: 100%;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    background: var(--Primary);
    border-radius: 8px;
    flex-shrink: 0;
}

.resetBtn {
    height: 100%;
    color: #000;
    font-size: 18px;
    font-weight: 400;
    background: transparent;
    border: 1px solid var(--Greyscale4);
    border-radius: 8px;
}

.btn-area {
    margin-top: 30px;
}

.btn-area.row {
    justify-content: center;
}

.btn-area.write-area {
    display: flex;
    justify-content: end;
    margin-top: 0;
    width: 100%;
}

.btn-area a.list,
.btn-area a.write,
.btn-area a.cancel {
    display: flex;
    flex-direction: row;
    align-self: center;
    justify-content: center;
    gap: 4px;
    padding: 18px 45px;
    color: var(--Greyscale9);
    font-size: 18px;
    font-weight: 400;
    border: 1px solid var(--Greyscale4);
}

.btn-area.flexBtn {
    display: flex;
    flex-direction: row;
    align-self: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-area.flexBtn .btn {
    margin: unset;
}

.btn-area.flexBtn .btn.fix,
.btn-area.flexBtn .btn.delete,
.btn-area.flexBtn .btn.answer {
    padding: 21px;
    width: 200px;
    color: var(--Primary-darker);
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    background: #fff;
    border: 1px solid var(--Primary-darker);
    border-radius: 8px;
}

.btn-area.lovehm-system {
    display: flex;
    justify-content: end;
}

.guideCon .con > .btn-area a.payGo {
    padding: 21px;
    width: unset;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    border-radius: 8px;
}

.btn-area.end {
    display: flex;
    justify-content: end;
}

.btn-area.end a {
    margin: unset !important;
}

a.goBtn,
.btn-area a.goBtn {
    padding: 10px 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    width: fit-content;
    color: var(--Greyscale8);
    font-size: 16px;
    background: #fff;
    border: 1px solid var(--Greyscale4);
    border-radius: 5px;
}

a.downloadBtn {
    padding: 10px 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    width: fit-content;
    color: var(--Greyscale8);
    font-size: 16px;
    border: 1px solid var(--Greyscale4);
    border-radius: 5px;
}

@media (max-width: 767px) {
    .btn-area.row.flexCol {
        gap: 16px;
    }
}

@media (max-width: 640px) {
    .btn-area a.list,
    .btn-area a.write,
    .btn-area a.cancel {
        padding: 10px !important;
        font-size: 16px !important;
    }

    .btn.Fill.list,
    .btn-area.flexBtn .btn.fix,
    .btn-area.flexBtn .btn.delete,
    .btn-area.flexBtn .btn.answer {
        padding: 12px;
        font-size: 16px;
        width: 100%;
    }

    .guideCon .con > .btn-area {
        flex-direction: column;
    }

    .guideCon .con > .btn-area a.payGo {
        padding: 12px 16px;
        font-size: 16px;
    }
}

/* Table */
.boardCount {
    padding-bottom: 15px;
    color: var(--Greyscale6);
    font-size: 16px;
    font-weight: 400;
}

.table-area {
    overflow-x: auto;
}

table.tbl {
    width: 100%;
}

table.tbl thead {
    background: var(--Greyscale0);
    border-top: 2px solid var(--Greyscale8);
    border-bottom: 1px solid var(--Greyscale5);
}

table.tbl thead,
table.tbl tbody {
    text-align: center;
}

table.tbl tbody {
    background: #fff !important;
}

table.tbl tbody.t-line {
    border-top: 2px solid var(--Greyscale8);
}

table.tbl tbody > tr {
    border-bottom: 1px solid var(--Greyscale4);
}

table.tbl thead > tr td {
    font-weight: 700;
}

table.tbl tbody > tr td {
    font-weight: 400;
}

table.tbl tbody > tr.noticeBox {
    background: var(--Greyscale0);
}

table.tbl tbody > tr.noticeBox p.noticeTxt {
    display: block;
    padding: 3px 5px;
    color: var(--Greyscale8);
    font-weight: 400;
    background: var(--Secondary);
    border-radius: 3px;
}

table.tbl thead > tr td,
table.tbl tbody > tr td {
    padding: 16px;
    font-size: 16px !important;
    word-break: keep-all;
}

table.tbl thead > tr td.item01,
table.tbl tbody > tr td.item01 {
    width: 10%;
}

table.tbl thead > tr td.item02,
table.tbl tbody > tr td.item02 {
    width: 15%;
}

table.tbl thead > tr td.item03,
table.tbl tbody > tr td.item03 {
    width: 30%;
}

table.tbl thead > tr td.tit,
table.tbl tbody > tr td.tit {
    flex: auto;
    max-width: 0;
    text-overflow: ellipsis;
    overflow: hidden;
    /* white-space: nowrap; */
}

table.tbl tbody > tr td.item02.left {
    text-align: left;
}

table.tbl tbody > tr td.tit.left {
    text-align: left;
}

table.tbl tbody > tr td.tit,
table.tbl tbody > tr td.tit a {
    color: var(--Greyscale8);
    font-weight: 400;
}

table.tbl tbody.l-line > tr td {
    border-left: 1px solid var(--Greyscale4);
    min-width: 120px;
}

table.tbl tbody.l-line > tr td:first-child {
    border-left: 0;
}

table.tbl thead .overHeader-b {
    border-bottom: 1px solid var(--Greyscale4);
}

table.tbl thead .overHeader-r {
    border-right: 1px solid var(--Greyscale4);
}

table.tbl tbody > tr .overHeader-l {
    border-left: 1px solid var(--Greyscale4) !important;
}

table.tbl tbody tr .tblBodyItem > div.flexBox {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

/* 게시글이 없을때 */
.tbl .tblBody.noContents {
    justify-content: center;
}

.tbl .tblBody.noContents .tblBodyItem {
    color: var(--Greyscale7);
    font-size: 16px;
    font-weight: 400;
}

@media (max-width: 640px) {
    table.tbl .dNone640 {
        display: none;
    }

    table.tbl thead > tr td,
    table.tbl tbody > tr td {
        padding: 12px 8px;
    }

    .table-area > .tbl.board {
        width: 100%;
        display: block;
    }

    .table-area > .tbl.board > .tblHeader {
        display: none !important;
    }

    .table-area > .tbl.board > tbody {
        border-top: 2px solid var(--Greyscale8);
    }

    .table-area > .tbl.board > tbody,
    .table-area > .tbl.board > tbody > tr {
        display: flex;
        flex-direction: column;
        width: 99.9%;
    }

    .table-area > .tbl.board > tbody > tr {
        gap: 5px;
        padding: 20px 10px;
        box-sizing: border-box;
    }

    .table-area > .tbl.board > tbody td {
        display: block;
        width: 99.9% !important;
        max-width: unset !important;
        text-align: left;
        padding: 0;
        color: var(--Greyscale8);
    }

    .table-area > .tbl.board > tbody td.dNone640 {
        display: none;
    }

    table.tbl.board tbody > tr td:not(.tit) {
        font-size: 14px !important;
        color: var(--Greyscale6);
    }

    table.tbl.board tbody > tr.noticeBox p.noticeTxt {
        width: fit-content;
    }

    .table-area > .tbl.board.trms > tbody > tr {
        padding: 0;
    }

    .table-area > .tbl.board.trms > tbody > tr > td {
        padding: 10px;
    }
}

/* CheckBox */
.chk-area {
    width: fit-content;
}

.chkBox {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

input[type="checkbox"] {
    width: 24px;
    height: 24px;
    background-position: 50% 50%;
    border: 1px solid var(--Primary);
    border-radius: 3px;
    cursor: pointer;
}

input[type="checkbox"]:focus,
input[type="checkbox"]:focus-visible {
    outline: thin dashed var(--Default);
}

input[type="checkbox"].chkFill:checked {
    background: var(--Primary) no-repeat center;
    -webkit-appearance: none;
}

input[type="checkbox"].chkLine:checked {
    background: #fff no-repeat center;
    -webkit-appearance: none;
}

input[type="checkbox"].ezIcon.vIcon,
input[type="checkbox"].chkFill.ezIcon.vIcon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M13.3332 4L5.99984 11.3333L2.6665 8' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

input[type="checkbox"].ezIcon.lIcon,
input[type="checkbox"].chkFill.ezIcon.lIcon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='2' viewBox='0 0 12 2' fill='none'%3E%3Cline x1='1' y1='1' x2='11' y2='1' stroke='white' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
}

input[type="checkbox"].ezIcon.vIcon,
input[type="checkbox"].chkLine.ezIcon.vIcon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M13.3332 4L5.99984 11.3333L2.6665 8' stroke='%2358968B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

input[type="checkbox"].ezIcon.lIcon,
input[type="checkbox"].chkLine.lIcon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='2' viewBox='0 0 12 2' fill='none'%3E%3Cline x1='1' y1='1' x2='11' y2='1' stroke='%2358968B' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
}

/* Radio Button */
.radio-area {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.radioBtn {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

input[type="radio"].radioItem {
    width: 24px;
    height: 24px;
    accent-color: var(--Primary);
    background-position: 50% 50%;
    border: 1px solid var(--Primary);
    border-radius: 50%;
    cursor: pointer;
}

input[type="radio"].radioItem:focus,
input[type="radio"].radioItem:focus-visible {
    outline: thin dashed var(--Default);
}

.radioBtn span {
    font-size: 16px;
    font-weight: 400;
}

/* prv,nxt contents */
.dtl-Btitem {
    margin-top: 20px;
    border-top: 1px solid var(--Greyscale5);
    border-bottom: 1px solid var(--Greyscale5);
}

.prvCon,
.nxtCon {
    padding: 20px 16px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 60px;
    width: 100%;
    box-sizing: border-box;
}

.prvCon .leftItem,
.nxtCon .leftItem {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 8px;
    color: var(--Greyscale9);
    font-size: 16px;
    font-weight: 700;
}

.prvCon .rightItem,
.nxtCon .rightItem {
    flex-grow: 1;
    color: var(--Greyscale6);
    font-size: 16px;
    font-weight: 400;
}

.prvCon a.rightItem,
.nxtCon a.rightItem {
    color: var(--Greyscale9);
}

.prvCon {
    border-bottom: 1px solid var(--Greyscale5);
}

@media (max-width: 640px) {
    .prvCon,
    .nxtCon {
        gap: 16px;
    }

    .prvCon .leftItem > p,
    .nxtCon .leftItem > p {
        display: none;
    }
}

/* DetailPage table */
.tbl-dtlPage {
    margin-top: 40px;
}

.tbl-dtlPage p.tit {
    padding: 16px;
    color: var(--Greyscale8);
    font-size: 24px;
    font-weight: 700;
    background: var(--Greyscale0);
    border-top: 2px solid var(--Greyscale5);
    border-bottom: 1px solid var(--Greyscale5);
}

.tbl-dtlPage .infoItem {
    padding: 16px;
    border-bottom: 1px solid var(--Greyscale5);
}

.tbl-dtlPage .infoItem ul {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
}

.tbl-dtlPage .infoItem ul li {
    display: flex;
    align-items: center;
    font-size: 16px;
}

.tbl-dtlPage .infoItem > ul > li::after {
    display: block;
    padding: 0 10px;
    content: "ㅣ";
    color: var(--Greyscale4);
    font-size: 16px;
}

.tbl-dtlPage .infoItem > ul > li:last-child::after {
    content: "";
}

.tbl-dtlPage .infoItem ul li b {
    color: var(--Greyscale7);
    font-weight: 700;
}

.tbl-dtlPage .infoItem ul li b > span {
    padding-left: 10px;
    color: var(--Greyscale8);
    font-weight: 400;
}

.tbl-dtlPage .tbl-dtlCon-area {
    padding: 50px 35px 60px 35px;
    border-bottom: 1px solid var(--Greyscale5);
}

.tbl-dtlPage .tbl-dtlCon-area .imgItem {
    margin: 10px 0;
    width: 100%;
    height: auto;
}

.tbl-dtlPage .tbl-dtlCon-area .imgItem video {
    width: 100%;
}

.tbl-dtlPage .tbl-dtlCon-area .imgItem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tbl-dtlPage .tbl-dtlCon-area .txtItem p {
    color: var(--Greyscale9);
    font-size: 16px;
    word-break: break-all;
    word-wrap: break-word;
    white-space: pre-wrap;
}

@media (max-width: 640px) {
    .tbl-dtlPage p.tit {
        font-size: 18px;
    }

    .tbl-dtlPage .infoItem ul li {
        font-size: 14px;
    }

    .tbl-dtlPage .tbl-dtlCon-area {
        padding: 30px 16px 50px 16px;
    }
}

/* DetailPage File dowon */
.fileDown-area {
    padding: 16px;
    display: flex;
    flex-direction: row;
    align-items: start;
    gap: 16px;
    background: var(--Greyscale0);
    border-bottom: 1px solid var(--Greyscale5);
}

.fileDown-area p.tit {
    padding: 6px 0;
    color: var(--Greyscale8);
    font-size: 16px;
    font-weight: 700;
    flex-shrink: 0;
}

.fileDown-area .conDown {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.fileDown-area .conDown .conDownItem {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.fileDown-area .conDown .conDownItem > p {
    color: var(--Greyscale8);
    font-size: 16px;
    font-weight: 400;
}

.fileDown-area .conDown .conDownItem > button {
    padding: 5px 12px;
    color: var(--Greyscale0);
    background-color: var(--Greyscale5);
    border-radius: 8px;
}

@media (max-width: 640px) {
    .fileDown-area {
        flex-direction: column;
    }

    .fileDown-area .conDown .conDownItem > p,
    .fileDown-area p.tit {
        font-size: 14px;
    }

    .fileDown-area .conDown .conDownItem > button {
        padding: 5px 8px;
        font-size: 14px;
    }
}

/* File upload */
.fileBox {
    margin-bottom: 10px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    font-size: 16px;
}

.fileBox:last-child {
    margin-bottom: 0;
}

.fileBox p.tit-txt {
    padding-right: 40px;
    color: var(--Greyscale5);
    font-size: 16px;
    font-weight: 400;
    border-right: 1px solid var(--Greyscale5);
}

.fileBox input {
    flex-grow: 1;
    padding: 0 16px;
    height: 43px;
    line-height: 43px;
    border: 1px solid var(--Greyscale4);
}

.fileBox input::file-selector-button {
    display: none;
}

.fileBox input::placeholder {
    color: var(--Grayscale4);
    font-size: 16px;
}

.fileBox label {
    padding: 0 16px;
    height: 43px;
    color: #fff;
    font-size: 16px;
    line-height: 43px;
    background: var(--Greyscale8);
}

.fileBox input:focus,
.fileBox input:focus-visible {
    outline: thin dashed var(--Default);
}

@media (max-width: 640px) {
    .fileBox {
        width: 100%;
    }

    .fileBox input {
        font-size: 16px;
        width: inherit;
    }

    .fileBox label {
        flex-shrink: 0;
        font-size: 14px;
    }
}

/* Write table */
.nwsWant {
    margin-top: 40px;
}

.guideTxt {
    padding-bottom: 8px;
    color: var(--Greyscale8);
    font-size: 16px;
    text-align: right;
    font-weight: 400;
}

.guideTxt span {
    color: var(--Error);
}

.input-tbl {
    border-top: 2px solid var(--Greyscale8);
}

.input-tbl .tbl-section {
    display: flex;
    flex-direction: row;
    align-items: center;
    align-self: stretch;
    flex: none;
    width: 100%;
    border-bottom: 1px solid var(--Greyscale4);
}

.input-tbl .tbl-section .leftItem {
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: stretch;
    padding: 18px;
    width: 225px;
    color: var(--Greyscale9);
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    background: var(--Greyscale0);
    word-break: keep-all;
}

.input-tbl .tbl-section .leftItem span {
    color: var(--Error);
}

.input-tbl .tbl-section .rightItem {
    padding: 18px 16px;
    flex-grow: 1;
    align-self: stretch;
    width: calc(100% - 200px);
}

.input-tbl .tbl-section .rightItem p {
    color: var(--Greyscale8);
    font-size: 16px;
    font-weight: 400;
}

.input-tbl .tbl-section .rightItem.address {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.input-tbl .tbl-section .rightItem .inputField {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    width: 100%;
}

.input-tbl .tbl-section .rightItem .inputField input {
    padding: 12px 16px;
    flex-grow: 1;
    height: 43px;
    border: 1px solid var(--Greyscale4);
}

.input-tbl .tbl-section .rightItem .inputField input:focus,
.input-tbl .tbl-section .rightItem .inputField input:focus-visible {
    outline: 1px solid var(--Primary) !important;
}

.input-tbl .tbl-section .rightItem .inputField.addBtn button {
    padding: 0 16px;
    height: 43px;
    color: var(--Greyscale0);
    font-size: 16px;
    font-weight: 400;
    background: var(--Greyscale8);
}

.input-tbl .tbl-section .rightItem.radio-area {
    justify-content: start;
}

.agree-area {
    padding: 30px 45px;
    text-align: center;
}

.agree-area p.txt {
    padding-bottom: 16px;
    color: var(--Primary);
    font-size: 18px;
    font-weight: 700;
    word-break: keep-all;
}

.agree-area .radio-area {
    gap: 65px;
}

.topTxt-box.praise .tbl-section .rightItem .fileUpload-Info p {
    margin: 4px 0;
    color: var(--Greyscale8);
    font-size: 16px;
    font-weight: 400;
}

@media (max-width: 640px) {
    .input-tbl .tbl-section {
        flex-direction: column;
    }

    .input-tbl .tbl-section .leftItem,
    .input-tbl .tbl-section .rightItem {
        width: 100%;
    }

    .input-tbl .tbl-section .rightItem .inputField {
        flex-wrap: wrap;
    }

    .input-tbl .tbl-section .rightItem p {
        flex-shrink: 0;
        width: 100%;
    }

    .fileUpload-Info p {
        font-size: 14px !important;
    }

    .input-tbl .tbl-section .rightItem .inputField.addBtn p {
        font-size: 14px;
    }
}

@media (max-width: 420px) {
    .input-tbl .tbl-section .rightItem .inputField.addBtn button {
        width: 100%;
    }
}

/* Sub contents style */
.guideCon {
    padding-top: 50px;
}

.guideCon .tit {
    position: relative;
    color: var(--Greyscale8);
    font-size: 21px;
    font-weight: 700;
}

.guideCon > .tit::before {
    position: absolute;
    top: -8px;
    content: "";
    width: 42px;
    height: 6px;
    background: var(--Primary-darken);
}

.guideCon .con {
    margin-top: 16px;
}

.guideCon .con img {
    max-width: 100%;
}

.guideCon .con p {
    /* display: flex; */
    align-items: baseline;
    color: var(--Greyscale8);
    font-size: 16px;
    font-weight: 400;
    position: relative;
}

.guideCon .con p:not(.txt) {
    padding-left: 10px;
}

.guideCon .con p::before {
    margin-right: 4px;
    display: block;
    content: "·";
    font-size: 16px;
    color: var(--Primary);
    position: absolute;
    left: 0;
    top: 0;
}

.guideCon .con > .btn-area {
    display: flex;
    gap: 8px;
    margin-top: 16px;
}

.guideCon .con > .btn-area a {
    padding: 11px 16px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4px;
    color: var(--Greyscale8);
    font-size: 16px;
    font-weight: 400;
    border: 1px solid var(--Greyscale4);
    border-radius: 5px;
}

.guideCon .con > .conItembox {
    margin-bottom: 16px;
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.guideCon .con .conItem p {
    align-items: flex-start;
}

.guideCon .con .conItem > p {
    padding-left: 20px;
}

.guideCon .con > .conItembox .conItem {
    display: flex;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 250px;
}

.guideCon .con > .conItembox .conItem.circle {
    display: flex;
    align-items: center;
    text-align: center;
    width: auto;
}

.guideCon .con > .conItembox .conItem > div {
    flex-grow: 1;
}

.guideCon .con > .conItembox .conItem .topItem {
    padding: 8px 16px;
    color: #fff;
    background: var(--Primary-darken);
    border-radius: 8px 8px 0 0;
}

.guideCon .con > .conItembox .conItem .topItem span {
    font-weight: 700;
}

.guideCon .con > .conItembox .conItem .bottomItem {
    padding: 8px 16px;
    color: #fff;
    font-weight: 700;
    background: var(--Greyscale8);
}

.guideCon .con > .infoTxt {
    margin-top: 16px;
    padding: 20px;
    color: var(--Greyscale8);
    border: 1px solid var(--Greyscale4);
    border-radius: 16px;
}

.guideCon .con > .infoTxt p {
    font-size: 18px;
    font-weight: 700;
}

.guideCon .con p.txt::before,
.guideCon .con > .infoTxt p::before {
    content: none;
}

.guideCon .con > .infoTxt ul {
    padding-top: 16px;
}

.guideCon .con > .infoTxt ul.pt-no {
    padding-top: 0;
}

.guideCon .con > .infoTxt ul li {
    display: flex;
    font-size: 16px;
    font-weight: 400;
}

.guideCon .con > .infoTxt ul li::before {
    margin-right: 10px;
    content: "·";
    font-size: 20px;
    color: var(--Greyscale8);
}

.guideCon .con .conItem {
    padding: 5px 0 5px 0;
}

.guideCon .con .conItem p::before {
    content: url(../assets/image/sub/text_arrow.png);
    width: 24px;
    height: 24px;
    font-size: 16px;
    vertical-align: middle;
}

.guideCon .con > .guideTxt {
    padding: 16px 0;
    color: var(--Primary);
    font-size: 16px;
    text-align: left;
    font-weight: 400;
}

.guideCon .con p.mTop {
    margin-top: 16px;
}

.subcon {
    padding-top: 30px;
}

h5.subTit {
    color: var(--Greyscale8);
    font-size: 18px;
}

@media (max-width: 640px) {
    .guideCon .con p {
        flex-wrap: wrap;
    }
}

/* Sub Top Box */
.topTxt-box.praise {
    padding: 20px;
    height: unset;
    background: #fff;
}

.topTxt-box.praise b.green {
    display: block;
    padding-bottom: 16px;
    color: var(--Primary);
    font-size: 18px;
    font-weight: 700;
}

.topTxt-box.praise p.txt {
    color: var(--Greyscale8);
    font-size: 16px;
    font-weight: 400;
}

/* Footer */
footer {
    background-color: var(--Greyscale3);
    margin-top: 60px;
}

footer .footerWrap {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 40px 16px;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

footer .footerWrap .footerInfo {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 60px;
}

footer .footerWrap .footerInfo > img {
    width: 130px;
    height: auto;
}

footer .footerWrap .footerInfo .infoBox {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

footer .footerWrap .footerInfo .footerNav {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 30px;
}

footer .footerWrap .footerInfo .footerNav > a {
    font-family: "GmarketSans";
    font-size: 16px;
    color: var(--Greyscale8);
}

footer .footerWrap .footerInfo .localInfo {
    font-family: "GmarketSans";
    font-size: 16px;
    color: var(--Greyscale7);
}

@media (max-width: 960px) {
    footer .footerWrap {
        flex-direction: column;
    }

    footer .footerWrap .footerInfo {
        flex-direction: column;
        margin-bottom: 16px;
        gap: 20px;
    }
}

@media (max-width: 640px) {
    header {
        max-width: unset;
        width: 100%;
        left: -100%;
    }

    footer .footerWrap .footerInfo > img {
        width: 100px;
    }

    footer .footerWrap .footerInfo .localInfo {
        font-size: 14px;
    }

    footer .footerWrap .footerInfo .footerNav {
        gap: 10px;
    }

    footer .footerWrap .footerInfo .footerNav > a {
        font-size: 14px;
    }
}

@media (max-width: 460px) {
    footer .footerWrap .footerInfo .footerNav {
        flex-wrap: wrap;
    }
}

/* 가로 이미지 레이아웃 추가 */

.guideCon .con .con-flexBox {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
}

.guideCon .con .con-flexBox img {
    max-width: 360px;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.guideCon .con .con-flexBox .txtBox {
    color: var(--Greyscale8);
    font-size: 16px;
    font-weight: 400;
}

@media (max-width: 640px) {
    .guideCon .con .con-flexBox {
        flex-direction: column;
    }

    .guideCon .con .con-flexBox img {
        margin: 0 auto;
    }
}

/* 상단 사이트링크 */
.siteLink-wrap {
    position: fixed;
    top: 0;
    left: 0;
    padding: 10px 0;
    width: 100%;
    font-family: "GmarketSans";
    background: var(--Greyscale7);
    box-sizing: border-box;
    z-index: 999;
}

.siteLink-wrap .siteLinkCon {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.siteLink-wrap .siteLinkCon .siteLinkItem {
    display: flex;
    align-items: center;
}

.siteLink-wrap .siteLinkCon .siteLinkItem::after {
    content: "│";
    padding: 0 6px;
    color: var(--Greyscale6);
    font-size: 16px;
}

.siteLink-wrap .siteLinkCon .siteLinkItem:last-child::after {
    content: none;
}

.siteLink-wrap .siteLinkCon .siteLinkItem a {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
}

.siteLink-wrap .siteLinkDrop .dropdownCon {
    max-height: 300px;
    overflow-y: auto;
}

/* 사이트맵 */
.con-wrap .siteMapBox {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 50px;
}

.siteMapTit {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.siteMapTit > p {
    min-width: 200px;
}

.siteMapTit > img {
    width: 42px;
}

.siteMapTit > p {
    width: fit-content;
    flex-shrink: 0;
    font-size: 21px !important;
    font-family: "GmarketSans";
}

.siteMapTit > p::before {
    display: none;
}

ul.siteMap {
    display: flex;
    flex-direction: row;
    gap: 30px;
    flex-wrap: wrap;
}

ul.siteMap > li {
    width: calc(20% - 24px);
    flex-shrink: 0;
}

ul.siteMap > li > a {
    display: block;
    width: 100%;
    background-color: var(--Greyscale1);
    border: 1px solid var(--Greyscale2);
    border-radius: 8px;
    padding: 10px;
    font-family: "GmarketSans";
    font-size: 18px;
    color: var(--Greyscale8);
}

ul.siteMap > li > .siteMapSub {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
}

ul.siteMap > li > .siteMapSub a {
    font-family: "GmarketSans";
    font-size: 16px;
    color: var(--Greyscale7);
}

ul.siteMap > li > .siteMapSub a::before {
    content: "·";
    padding-right: 5px;
    color: var(--Primary);
}

@media (max-width: 640px) {
    ul.siteMap {
        gap: 16px;
    }

    ul.siteMap > li {
        width: calc(50% - 8px);
    }
}

/* 배너모음 */
.siteLinkWrap {
    background-color: #fff;
    width: 100%;
    border-top: 1px solid var(--Greyscale2);
}

.siteLinkWrap .siteLinkBox {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 40px 16px;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.siteLinkWrap .siteLinkControl {
    width: 130px;
    flex-shrink: 0;
}

.siteLinkWrap .siteLinkControl h5 {
    font-size: 18px;
    font-family: "GmarketSans";
    font-weight: 500;
    margin-bottom: 10px;
}

.siteLinkWrap .siteLink {
    width: calc(100% - 130px);
    flex-shrink: 0;
}

.siteLinkWrap .siteLink li {
}

.siteLinkWrap .siteLink li a {
    display: block;
    width: 170px;
    height: 52px;
    border: 1px solid var(--Greyscale4);
    background-color: #fff;
}

.siteLinkWrap .siteLink li a img {
    width: 100%;
    height: 100%;
}

@media (max-width: 1480px) {
    .siteLinkWrap {
        padding-left: unset;
    }
}

@media (max-width: 960px) {
    .siteLinkWrap .siteLink li {
        padding: 0 5px;
    }

    .siteLinkWrap .siteLink li a {
        width: 100%;
        height: 0;
        padding-bottom: 30.5%;
        position: relative;
    }

    .siteLinkWrap .siteLink li a img {
        position: absolute;
    }
}

@media (max-width: 640px) {
    .siteLinkWrap .siteLinkBox {
        flex-direction: column;
        align-items: center;
    }

    .siteLinkWrap .siteLink {
        width: 100%;
    }

    .siteLinkWrap .siteLinkControl {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 5px;
        width: 100%;
        margin-bottom: 10px;
    }

    .siteLinkWrap .siteLinkControl h5 {
        display: block;
        width: 100%;
        margin: 0;
    }
}
