@charset "utf-8";

/*-------------------------------------------------
Title       : Layout
-------------------------------------------------*/

/* --- Root --- */
:root{
    --contents-wrap-size: 1448px;
    --contents-padding-x: 24px;
    --contents-centents-size: 1400px;
}

@media screen and (max-width: 767px) {
    :root{
        --contents-padding-x: 16px;
    }
}


/* --- Layout --- */
body.is-gnb-web,
body.is-gnb-mobile {
    overflow: hidden;
}

.inner {
    width: 100%;
    max-width: var(--contents-wrap-size);
    padding: 0 var(--contents-padding-x);
    margin: 0 auto;
}


/* --- Masthead --- */
#masthead {
    position: relative;
    background: var(--color-gray-5);
    z-index: 9999;
}

#masthead .inner {
    padding-top: 0.4rem;
    padding-bottom: 0.4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#masthead .nuri-txt {
    display: flex;
    align-items: center;
    gap: 0.4em;
    font-size: 1.5rem;
}

#masthead .nuri-txt::before {
    content: '';
    display: inline-block;
    width: 2.4rem;
    height: 2.4rem;
    background: url(/images/layout/flag.svg);
}

#masthead .top-actions {
    display: flex;
    align-items: center;
    gap: 1.2em;
    font-size: 1.5rem;
    font-weight: 500;
}

#masthead .top-actions .name strong {
    font-weight: 500;
    color: #000;
}

#masthead .top-actions .session {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--color-information-50);
}

#masthead .top-actions .session button,
#masthead .top-actions .session a {
    color: var(--color-gray-90);
    text-decoration: underline;
    text-underline-position: under;
    margin-left: 0.4rem;
}

#masthead .top-actions .session button:hover {
    color: #000;
}

#masthead .top-actions .btn-navi {
    display: flex;
    align-items: center;
    gap: 0.4em;
}

#masthead .top-actions .btn-navi i {
    color: var(--color-gray-50);
}

#masthead .dropdown-wrap .dropdown-btn .text {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

#masthead .dropdown-list {
    width: auto;
    left: auto;
    right: 0;
    top: calc(100% + 0.8rem);
}

#masthead .dropdown-list > li {
    padding: 0.6rem;
}

#masthead .dropdown-list > li > a {
    white-space: nowrap;
    height: 4rem;
    padding: 0 1.6rem;
    font-size: 1.7rem;
    border-radius: 0.6rem;
}

#masthead .dropdown-list > li > a:hover {
    background: var(--color-secondary-5);
}

@media screen and (max-width: 1023px) {
    #masthead {
        z-index: 9998;
    }

    #masthead .top-actions {
        display: none;
    }
}


/* --- Header --- */
#header {
    position: sticky;
    top: 0;
    left: 0;
    background: #fff;
    z-index: 9998;
}

#header .header-in {
    position: relative;
    transform: translateY(0);
    background: #fff;
}

#header .header-container > .inner {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    padding-right: 0;
}

#header .header-utility {
    display: flex;
    justify-content: flex-end;
}

#header .header-utility .utility-list {
    display: flex;
    align-items: center;
}

#header .header-utility .utility-list > li {
    display: flex;
    align-items: center;
    margin-left: 1.2rem;
    gap: 1.2rem;
}

#header .header-utility .utility-list > li > a {
    font-size: 1.5rem;
}

#header .header-utility .utility-list > li:not(:first-of-type)::before {
    content: '';
    display: inline-block;
    width: 0.1rem;
    height: 1.6rem;
    background: var(--color-gray-20);
}

#header .header-branding {
    display: flex;
    align-items: center;
}

#header .header-branding .logo {
    width: 16rem;
    height: 4.6rem;
    flex-shrink: 1;
    order: 1;
}

#header .header-branding .logo a {
    display: block;
    width: 100%;
    height: 100%;
    background: url(/images/layout/logo.svg) no-repeat left center;
    background-size: contain;
}

#header .header-actions {
    display: inline-flex;
    margin-top: 0.4rem;
    margin-left: auto;
    flex-shrink: 0;
    order: 3;
}

#header .header-actions .btn-navi {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    padding: 0.4rem 0.8rem;
    border-radius: 0.6rem;
    font-size: 1.7rem;
    font-weight: 700;
}

#header .header-actions .btn-navi.all {
    display: none;
}

#wrap[class*=scroll] #header {
    position: relative;
    border-bottom: 0.1rem solid var(--color-border);
    transition: transform ease 0.3s 0.01s;
}

#wrap[class*=scroll] #header .header-in {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    border-bottom: 0.1rem solid var(--color-border);
    transition: transform ease 0.3s 0.01s;
}

#wrap.scroll-down #header .header-in {
    transform: translateY(-100%);
}

#wrap.scroll-up #header .header-in {
    transform: translateY(0);
}

@media screen and (max-width: 1023px) {
    #header .header-container > .inner {
        padding-top: 0.8rem;
        padding-bottom: 0.8rem;
    }

    #header .header-utility {
        display: none;
    }

    #header .header-branding .logo {
        width: 14.2rem;
        height: 3.2rem;
    }

    #header .header-actions .btn-navi {
        flex-direction: column;
        gap: 0.4rem;
        padding: 0 1rem;
    }

    #header .header-actions .btn-navi.join {
        display: none;
    }

    #header .header-actions .btn-navi.sitemap {
        display: none;
    }

    #header .header-actions .btn-navi.all {
        display: flex;
    }
}

@media screen and (max-width: 767px) {
    #header .header-actions .btn-navi {
        font-size: 1.5rem;
    }
}

/* --- Main Menu --- */
.main-menu {
    order: 2;
}

.main-menu > .inner {
	padding: 0 1.2rem;
}

.main-menu .gnb-menu {
    display: flex;
}

.main-menu .gnb-menu .gnb-main-trigger {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    position: relative;
    height: 7.2rem;
    font-size: 1.9rem;
    font-weight: 700;
    padding: 1.6rem 1.2rem;
    color: var(--color-text-subtle);
}

.main-menu .gnb-menu .gnb-main-trigger i {
    transition: var(--transition-base);
}

.main-menu .gnb-menu .gnb-main-trigger:focus {
    outline-offset: -0.4rem;
    box-shadow: inset 0 0 0 0.4rem var(--color-gray-50);
}

.main-menu .gnb-menu .gnb-main-trigger.active {
    text-decoration: underline;
    text-underline-position: under;
}

.main-menu .gnb-menu .gnb-main-trigger.selected {
    text-decoration: underline;
    text-underline-position: under;
}

.main-menu .gnb-menu .gnb-main-trigger.active i {
    transform: rotate(180deg);
}

.main-menu .gnb-toggle-wrap {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    margin-top: -0.1rem;
    z-index: 70;
    border: 0.1rem solid var(--color-border);
    box-shadow: var(--box-shadow-base);
    width: 100%;
    background: #edf6ea;
    overflow-x: hidden;
}

.main-menu .gnb-toggle-wrap.is-open {
    display: block;
}

.main-menu .gnb-toggle-wrap .gnb-main-list {
    max-width: var(--contents-centents-size);
    margin: 0 auto;
}

.main-menu .gnb-toggle-wrap .gnb-sub-list.between {
    display: flex;
}

.main-menu .gnb-toggle-wrap .gnb-sub-title {
    width: 24rem;
    padding: 2rem 0;
    border-right: 0.1rem solid var(--color-border);
    position: relative;
    overflow: hidden;
    min-height: 24rem;
}

.main-menu .gnb-toggle-wrap .gnb-sub-title::after {
    content: '';
    display: block;
    width: 20rem;
    height: 16rem;
    opacity: 0.2;
    position: absolute;
    background-image: url(/images/sub/gnb_bg.svg);
    background-repeat: no-repeat;
    bottom: -2rem;
    right: -2rem;
    z-index: 1;
}

.main-menu .gnb-toggle-wrap .gnb-sub-title .title {
    font-size: 2.4rem;
    font-weight: 700;
}

.main-menu .gnb-toggle-wrap .gnb-sub-title .text {
    font-size: 1.5rem;
    color: var(--color-text-subtle);
}

.main-menu .gnb-toggle-wrap .gnb-sub-content {
    display: flex;
    gap: 1.6rem;
    width: 100%;
    padding-left: 2.4rem;
    background: #fff;
    position: relative;
}

.main-menu .gnb-toggle-wrap .gnb-sub-content::after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 100%;
    background: #fff;
}

.main-menu .gnb-toggle-wrap .gnb-sub-content .sub-title {
    display: flex;
    align-items: center;
    height: 5.6rem;
    padding: 0.4rem;
    font-size: 2.4rem;
    font-weight: 700;
}

.main-menu .gnb-toggle-wrap .gnb-sub-content ul {
    display: grid;
    gap: 1.2rem;
    padding: 1.6rem 0.8rem;
    width: 100%;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-auto-rows: max-content;
    padding: 2rem 0;
}

.main-menu .gnb-toggle-wrap .gnb-sub-content ul > li > a {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 0.8rem;
    padding: 0.8rem 1.6rem;
    border-radius: 0.6rem;
    white-space: nowrap;
    font-weight: 500;
    border: 0.1rem solid var(--color-border);
}

.main-menu .gnb-toggle-wrap .gnb-sub-content ul > li > a:hover {
	border: 0.1rem solid #000;
	color: #000;
	text-decoration: underline;
	text-underline-position: under;
}

@media screen and (max-width: 1439px) {
	.main-menu .gnb-menu .gnb-main-trigger {
		font-size: 1.7rem;
		padding: 1.6rem 0.6rem;
	}
}

@media screen and (max-width: 1279px) {
	.main-menu .gnb-menu .gnb-main-trigger {
		padding: 1.6rem 1.2rem;
	}
	
	.main-menu .gnb-menu .gnb-main-trigger i {
		display: none;
	}
}

@media screen and (max-width: 1023px) {
    .main-menu {
        display: none;
    }
}


/* --- Mobile Menu --- */
.main-menu-mobile {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    right: -100%;
    visibility: hidden;
    transition: all var(--transition-base);
}

.main-menu-mobile.is-open {
    right: 0;
    visibility: visible;
}

.main-menu-mobile::after {
    content: '';
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .75);
}

.main-menu-mobile.is-backdrop::after {
    display: block;
}

.main-menu-mobile .gnb-wrap {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 5;
    width: 40%;
    height: 100%;
    background: #fff;
}

.main-menu-mobile .gnb-header {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    padding: 1.6rem 1.6rem 1rem 1.6rem;
    border-bottom: 0.4rem solid var(--color-border);
}

.main-menu-mobile .gnb-utils .utility-list {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.main-menu-mobile .gnb-utils .utility-list > li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.main-menu-mobile .gnb-utils .utility-list > li:not(:first-of-type)::before {
    content: '';
    display: block;
    width: 0.1rem;
    height: 1.6rem;
    background: var(--color-border);
}

.main-menu-mobile .gnb-utils .utility-list > li .link {
    font-size: 1.5rem;
}

.main-menu-mobile .gnb-login {
    font-size: 1.9rem;
    font-weight: 700;
    padding: 0.5rem 0.2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.main-menu-mobile .gnb-login .user {
    font-size: 1.7rem;
    font-weight: 700;
    width: 100%;
    display: flex;
    gap: 0.8rem;
}

.main-menu-mobile .gnb-login .user .session {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    gap: 0.4rem;
    font-weight: 400;
    color: var(--color-gray-70);
}

.main-menu-mobile .gnb-login .user .session > a {
    text-decoration: underline;
    text-underline-position: under;
}

.main-menu-mobile .gnb-login .btn-wrap {
    display: flex;
}

.main-menu-mobile .gnb-login .btn-wrap button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    font-size: 1.9rem;
    font-weight: 700;
    width: 100%;
    border-right: 0.1rem solid var(--color-border);
}

.main-menu-mobile .gnb-login .btn-wrap button.login {
    width: auto;
}

.main-menu-mobile .gnb-login .btn-wrap button:last-of-type {
    border-right: 0;
}

.main-menu-mobile .gnb-body {
    overflow-y: auto;
}

.main-menu-mobile .gnb-menu .submenu-wrap .gnb-sub-list {
    padding: 1.6rem;
    border-bottom: 0.4rem solid var(--color-border);
}

.main-menu-mobile .gnb-menu .submenu-wrap .gnb-sub-list .sub-title {
    padding: 0.8rem;
    font-size: 1.9rem;
    border-bottom: 0.1rem solid var(--color-gray-40);
}

.main-menu-mobile .gnb-menu .submenu-wrap .gnb-sub-list .sub-title.link {
    border-bottom: 0;
}

.main-menu-mobile .gnb-menu .submenu-wrap .gnb-sub-list .sub-title > a {
    display: block;
}

.main-menu-mobile .gnb-menu .submenu-wrap .gnb-sub-list > ul {
    padding-top: 0.8rem;
}

.main-menu-mobile .gnb-menu .submenu-wrap .gnb-sub-list .gnb-sub-trigger {
    display: block;
    padding: 1.2rem 0.8rem;
    font-size: 1.7rem;
    border-radius: 0.8rem;
}

.main-menu-mobile .gnb-menu .submenu-wrap .gnb-sub-list .gnb-sub-trigger.has-depth3 {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.main-menu-mobile .gnb-menu .submenu-wrap .gnb-sub-list .gnb-sub-trigger.active {
    background: var(--color-gray-5);
    color: var(--color-secondary-80);
    font-weight: 700;
}

.main-menu-mobile .gnb-menu .submenu-wrap .gnb-sub-list .gnb-sub-trigger.has-depth3::after {
    content: '';
    display: block;
    width: 2rem;
    height: 2rem;
    mask-image: url(/images/layout/ico_angle.svg);
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
    background: var(--color-text-subtle);
    transition: var(--transition-base);
}

.main-menu-mobile .gnb-menu .submenu-wrap .gnb-sub-list .gnb-sub-trigger.active::after {
    transform: rotate(180deg);
}

.main-menu-mobile .gnb-menu .submenu-wrap .gnb-sub-list .depth3-wrap {
    display: none;
    margin-top: 0.8rem;
}

.main-menu-mobile .gnb-menu .submenu-wrap .gnb-sub-list .depth3-wrap.is-open {
    grid-template-rows: 1fr;
    opacity: 1;
    visibility: visible;
    max-height: 1000px;
}

.main-menu-mobile .gnb-menu .submenu-wrap .gnb-sub-list .depth3-wrap > ul {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.main-menu-mobile .gnb-menu .submenu-wrap .gnb-sub-list .depth3-wrap .depth3-trigger {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 1.6rem;
    border-radius: 0.8rem;
}

.main-menu-mobile .gnb-menu .submenu-wrap .gnb-sub-list .depth3-wrap .depth3-trigger::before {
    content: '•';
}

.main-menu-mobile #close-nav {
    position: absolute;
    top: 1.6rem;
    right: 1.6rem;
}

.main-menu-mobile i {
    display: block !important;
}

@media screen and (max-width: 767px) {
    .main-menu-mobile .gnb-wrap {
        width: 100%;
    }
}

/* --- Footer --- */
#footer {
    background: var(--color-gray-5);
}

#footer .foot-quick {
    border-top: 0.1rem solid var(--color-border);
    border-bottom: 0.1rem solid var(--color-border);
    background-color: #fff;
}

#footer .foot-quick .inner {
    display: flex;
    padding: 0;
}

#footer .foot-quick .inner .link-wrap {
    position: relative;
}

#footer .foot-quick .inner .link {
    width: 300px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 5.4rem;
    gap: 0.8rem;
    padding: 0 2.4rem;
    border-right: 0.1rem solid var(--color-border);
    border-left: 0.1rem solid var(--color-border);
    margin-left: -0.1rem;
}

#footer .foot-quick .inner .link:hover {
	text-decoration: underline;
	text-underline-position: under;	
}

#footer .foot-quick .inner .link-list {
    display: none;
	position: absolute;
    bottom: 100%;
    left: -0.1rem;
    width: calc(100% + 0.1rem);
    background: #fff;
    border: 0.1rem solid var(--color-border);
}

#footer .foot-quick .inner .link-list > li {
    border-bottom: 0.1rem solid var(--color-border);
}

#footer .foot-quick .inner .link-list > li:last-of-type {
    border-bottom: 0;
}

#footer .foot-quick .inner .link-list > li > a {
	display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 1.2rem 1.6rem;
}

#footer .foot-quick .inner .link-list > li > a:hover {
	background: var(--color-gray-5);
    text-decoration: underline;
    text-underline-position: under;
}

#footer > .inner {
    display: flex;
    flex-direction: column;
    gap: 3.5rem;
    padding: 4rem 0 2.4rem;
}

#footer .f-logo {
    width: 20rem;
    height: 4.6rem;
    background: url(/images/layout/logo.svg) no-repeat center;
    background-size: contain;
}  

#footer .f-cnt {
    display: flex;
    justify-content: space-between;
    gap: 2.4rem;
}

#footer .f-cnt .f-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

#footer .f-cnt .f-info .info-cs {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

#footer .f-cnt .f-info .info-cs li {
    display: flex;
    align-items: center;
}

#footer .f-cnt .f-info .info-cs li strong {
    display: inline-flex;
    gap: 0.8rem;
}

#footer .f-cnt .f-info .info-cs li strong span {
    font-weight: 400;
}

#footer .f-cnt .f-info .info-cs li .more-info {
    display: inline-flex;
    align-items: center;
    padding-left: 0.8rem;
    gap: 0.8rem;
}

#footer .f-cnt .f-info .info-cs li .more-info::before {
    content: '';
    display: block;
    width: 0.1rem;
    height: 1.2rem;
    background-color: var(--color-gray-50);
}

#footer .f-link {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
}

#footer .f-link .link-go a {
   font-size: 1.7rem;
   display: inline-flex;
   align-items: center;
   gap: 0.8rem
}

#footer .f-link .link-sns {
    display: flex;
    justify-content: flex-end
}

#footer .f-link .link-sns a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background: #fff;
    border: 0.1rem solid var(--color-gray-30);
}

#footer .f-btm {
    display: flex;
    flex-direction: column;
    padding-top: 2rem;
    gap: 4rem;
    border-top: 0.1rem solid var(--color-border);
}

#footer .f-btm .f-btm-text {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.5rem;
}
  
#footer .f-btm .f-btm-text .f-menu {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    flex-wrap: wrap;
}

#footer .f-btm .f-btm-text .f-menu a:hover {
    text-decoration: underline;
    text-underline-position: under;
}

#footer .f-btm .f-btm-text .f-menu a.point {
    font-weight: 700;
    text-decoration: underline;
    text-underline-position: under;
    color: blue;
    font-size: 1.7rem;
}

#footer .f-btm .f-btm-text .f-menu a.point:hover {
    color: var(--color-information-50);
}

#footer .f-btm .f-btm-text .f-copy {
    color: var(--color-text-subtle);
}

@media screen and (max-width: 1279px) {
    #footer > .inner {
        padding: 4rem var(--contents-padding-x) 2.4rem;
    }
}

@media screen and (max-width: 1023px) {
    #footer .f-logo {
        width: 14.2rem;
        height: 3.2rem;
    }

    #footer > .inner {
        gap: 2.4rem;
        padding-top: 2.4rem;
        padding-bottom: 2.4rem;
    }
}

@media screen and (max-width: 767px) {
    #footer .foot-quick .inner {
        flex-direction: column;
    }

    #footer .foot-quick .inner .link {
        width: 100%;
        font-size: 1.5rem;
        border-right: 0;
        border-bottom: 0.1rem solid var(--color-border);
        padding: 0 1.6rem;
        height: 4.6rem;
    }

    #footer .foot-quick .inner .link:last-of-type {
        border-bottom: 0;
    }

    #footer .f-cnt {
        font-size: 1.5rem;
        flex-direction: column;
    }

    #footer .f-link .link-go a  {
        font-size: 1.5rem;
    }

    #footer .f-link .link-sns {
        justify-content: flex-start;
    }

    #footer .f-btm .f-btm-text {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }
}


/* --- Identifier --- */
.identifier {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.6rem;
    background: #fff;
    border-radius: 0.6rem;
}

.identifier .logo {
    width: 5.3rem;
    height: 2.0rem;
    background: url(/images/layout/logo_kfs.png) no-repeat center;
    background-size: contain;
}

.identifier .ban-txt {
    font-size: 1.5rem;
}

@media screen and (max-width: 767px) {
    .identifier {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.4rem;
    }

    .identifier .ban-txt {
        font-size: 1.3rem;
    }
}

/* --- Page Top --- */
#pagetop-btn {
    display: none;
    position: fixed;
    right: 4rem;
    bottom: 4rem;
    width: 5.5rem;
    height: 5.5rem;
    z-index: 9999;
    background: #fff;
    border-radius: 0.8rem;
    border: 0.1rem solid var(--color-border);
    box-shadow: var(--box-shadow-base);
    transition: var(--transition-base);
}

#pagetop-btn:hover {
	border: 0.1rem solid #000;
}

#pagetop-btn.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

@media screen and (max-width: 767px) {
	#pagetop-btn {
		right: 2rem;
	    bottom: 2rem;
	    width: 3.6rem;
	    height: 3.6rem;
	}
	
	#pagetop-btn i {
		font-size: 2rem;
	}
}


/* --- Total Search --- */
.total-search-wrap {
    border-top: 0.1rem solid var(--color-border);
    border-bottom: 0.1rem solid var(--color-border);
    width: 100%;
    background-color: var(--color-gray-5);
    background-size: 10px 10px;
    background-image: repeating-linear-gradient(-45deg, #FFFFFF 0, #FFFFFF 1px, var(--color-gray-5) 0, var(--color-gray-5) 50%);
    position: absolute;
    top: 100%;
    left: 0;
    display: none;
}

.total-search-wrap.active {
    display: block;
}

.total-search-wrap > .inner {
    position: relative;
}

.total-search-wrap .search-box {
    width: 100%;
    max-width: 60rem;
    margin: 0 auto;
    padding: 2.8rem 0 4.4rem;
}

.total-search-wrap .search-tit .title {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--color-secondary-90);
    margin-bottom: 0.8rem;
}

.total-search-wrap .sch-input {
    position: relative;
}

.total-search-wrap .sch-input .form-input {
    padding-right: 5rem;
    border: 0.3rem solid var(--color-secondary-70);
}

.total-search-wrap .sch-input button {
    position: absolute;
    top: 50%;
    right: 1.2rem;
    transform: translateY(-50%);
    color: var(--color-secondary-70);
}

.total-search-wrap .btn-close {
    position: absolute;
    top: 0.8rem;
    right: 0.8rem;
    color: var(--color-gray-50);
}


/* --- Sitemap --- */
.sitemap-wrap {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 9999;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-top: 0.1rem solid var(--color-border);
}

.sitemap-wrap .sitemap-menu > li {
    display: flex;
}

.sitemap-wrap .d1-menu {
    display: block;
    width: 18rem;
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--color-secondary-90);
    background: var(--color-gray-5);
    padding: 2rem 1.6rem;
    border-bottom: 0.1rem dotted var(--color-border);
}

.sitemap-wrap .d2-menu {
    width: calc(100% - 20rem);
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    gap: 0.8rem 1.6rem;
    border-bottom: 0.1rem dotted var(--color-border);
    padding: 1.2rem 0 1.2rem 1.6rem;
}

.sitemap-wrap .sitemap-menu > li:first-of-type .d1-menu {
    padding-top: 2rem;
}

.sitemap-wrap .sitemap-menu > li:first-of-type .d2-menu {
    padding-top: 1.6rem;
}

.sitemap-wrap .sitemap-menu > li:last-of-type .d2-menu {
    border-bottom: 0;
    padding-bottom: 1.6rem;
}

.sitemap-wrap .d2-menu > li > a {
    display: block;
    font-size: 1.6rem;
    font-weight: 500;
    border: 0.1rem solid var(--color-border);
    padding: 0.8rem 1.6rem;
    border-radius: 0.6rem;
    word-break: break-all;
}

.sitemap-wrap .d2-menu > li > a {
    display: block;
    font-size: 1.6rem;
    font-weight: 500;
    border: 0.1rem solid var(--color-border);
    padding: 0.8rem 1.6rem;
    border-radius: 0.6rem;
    height: 100%;
}

.sitemap-wrap .d2-menu > li > a:hover {
    text-decoration: underline;
    border: 0.1rem solid var(--color-gray-50);
}

@media screen and (max-width: 1279px) {
    .sitemap-wrap .d2-menu {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
}