@charset "utf-8";

/* 공통 */
:root {
    --base-stage: 164.4rem;
    --base-gutter: 1.6rem;
    --color-teal: #0891B2;
    --color-blue: #0284C7;
    --color-green: #16A34A;
    --transition: all .2s ease-in;
}

body::-webkit-scrollbar {
    display: none;
}

/* 헤더 */
.header-cotainer {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 9;
}

.header-top-stage {
    background-color: #F9FAFB;
}

.header__top {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 0 2.4rem;
    height: 4.4rem;
}

.header-top__link {
    font-size: 1.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.header-top__link + .header-top__link::before {
    content: '';
    display: block;
    width: 1px;
    height: 1.8rem;
    background-color: #E2E8F0;
    margin-right: 2.4rem;
}

.lang-btns {
    width: 11.4rem;
    border: 1px solid #E2E8F0;
    border-radius: 2.4rem;
    background-color: #fff;
    height: 2.8rem;
}

.lang-btn {
    border-radius: inherit;
    height: inherit;
    border-style: solid;
    border-color: #E2E8F0;
    border-width: 0;
    color: #666;
    font-weight: 600;
    width: 50%;
    transition:var(--transition);
}

.lang-btn.active {
    background-color: #000;
    color: #fff;
    border-width: 1px;
}

@media screen and (min-width : 1024px) {
    .header-top__link:hover {
        text-decoration: underline;
    }
}

@media screen and (max-width : 1023px) {
    .header__top {
        display: none;
    }
}

.header__bottom {
    background-color: #fff;
    border-bottom: 1px solid #E2E8F0;
    box-sizing: border-box;
}

.header-wrapper {
    height: 8rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header__logo>a {
    display: block;
    width: 28rem;
    height: 5rem;
    background-image: url(/client/education_manage_system/img/2025_main_update/common/logo.svg);
    background-repeat: no-repeat;
    background-size: contain;
    transition:var(--transition);
}

.header__right {
    display: flex;
    gap: 0 7.2rem;
    align-items: center;
}
.header__nav {
    background-color: #fff;
}

.headeer__lists {
    display: flex;
    gap: 0 8rem;
}

.nav__tit {
    font-size: 1.9rem;
    font-weight: 700;
    position: relative;
}

.nav__tit.active {
    color: #00a59e;
}

.nav__tit.active::before,
.nav__tit.active::after {
    content: '';
    display: block;
    position: absolute;
    width: 2px;
    border-radius: 2px;
    height: 1rem;
    background-color: #00a59e;
    bottom: -2rem;
}

.nav__tit.active::before {
    left: calc(50% - 3px);
    transform: translateX(-50%) rotate(-45deg);
}

.nav__tit.active::after {
    left: calc(50% + 3px);
    transform: translateX(-50%) rotate(45deg);
}

.sub-wrap {
    /* visibility: hidden; */
    opacity: 0;
    height: 0;
    width: 100%;
    /* transition: var(--transition); */
    background-color: #00a59e;
    position: absolute;
    left: 0;
    bottom: -5.4rem;		
}			

.sub-wrap.active {
    opacity: 1;
    visibility: visible;
    height: 5.4rem;
}

.sub-wrap:not(.active) {
    opacity: 0;
    pointer-events: none;
}

.sub__lists {
    max-width: var(--base-stage);
    margin: 0 auto;
    padding: var(--base-gutter) calc(var(--base-gutter) * 2);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0 2rem;
}

.sub__list {
    display: flex;
    align-items: center;
    gap: 0 2rem;
}

.sub__list + .sub__list::before {
    content: '';
    display: block;
    width: 1px;
    border-radius: 1px;
    height: 1rem;
    background-color: #fff;
}

.sub__link {
    font-size: 1.6rem;
    line-height: 2.2rem;
    font-weight: 500;
    white-space: nowrap;
}

.sub__link:hover {
    color: #fff;
}

.header__btns {
    display: flex;
    align-items: center;
    gap: 0 .8rem;
}

.all-menu-contianer {
    height: auto;
}

.all-btn {
    width: 2.8rem;
    min-width: 2.8rem;
    height: 2.8rem;
    border-radius: .4rem;
    position: relative;
}

.all-btn::before {
    content: '';
    display: block;
    background-repeat: no-repeat;
    transition:var(--transition);
    background-size: contain;
    background-position: center center;
    width: 2.4rem;
    height: 2.4rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.all-menu__btn::before {
    background-image: url(/client/education_manage_system/img/2025_main_update/common/all-menu-btn.svg);
   
}

.all-search__btn::before {
    background-image: url(/client/education_manage_system/img/2025_main_update/common/all-search-btn.svg);
}

@media screen and (min-width : 1439px) {
    .all-btn:hover {
        box-shadow: 0 3px 9px #00000030;
    }
}

@media screen and (max-width : 1439px) {
    .headeer__lists,
    .header__right {
        gap: 0 4rem;
    }
}

@media screen and (max-width : 1199px) {
    
    .header__logo>a {
        width: 22rem;
        height: 4rem;
    }
    .footer__logo {
        width: 22rem;
    }
    .headeer__list>a {
        font-size: 1.8rem;
    }
    .headeer__lists {
        column-gap: 3rem;
    }
}

@media screen and (max-width : 1023px) {
    .header__nav {
        position: absolute;
        width: 100%;
        left: 0;
        top: 8rem;
        border-bottom: 1px solid #E2E8F0;
        padding: .5rem 2rem 2rem;
    }
    .header-nav-wrap {
        overflow-x: auto;
    }

    .headeer__lists {
        box-sizing: border-box;
        gap: 0 5.7rem;
        min-width: 70rem;
    }
    .sub-wrap {
        top: 5.3rem;
        bottom: 0;
        overflow-x: auto;
    }
    .sub-wrap::-webkit-scrollbar,
    .header-nav-wrap::-webkit-scrollbar {
        display: none;
    }
    .sub__lists {
        justify-content: flex-start;
        min-width: 90rem;
        padding: 1.6rem 2rem;
    }

    .headeer__list:nth-child(n+2) .sub__lists {
        min-width: 46rem;
    }


    .nav__tit.active::before,
    .nav__tit.active::after {
        display: none;
    }
}

@media screen and (max-width : 576px) {}

.side-menu {
    position: absolute;
    top: 0;
    left: 100%;
    background-color: #fff;
    width: 90%;
    padding: 4rem;
    box-sizing: border-box;
    height: 100vh;
    z-index: 11;
    overflow-y: auto;
    visibility: hidden;
    opacity: 0;
}

.side-menu::-webkit-scrollbar {
    width: .5rem;
    background-color: #eee;
}
.side-menu::-webkit-scrollbar-thumb {
    background-color: var(--color-blue);
    border-radius: .5rem;
}

.side-menu.active {
    visibility: visible;
    opacity: 1;
    left: 10%;
}

/* .all-menu__close {
    position: absolute;
    right: 1.6rem;
    width: 3.7rem;
    height: 3.7rem;
    background: url(/client/education_manage_system/img/2025_main_update/common/all-menu-close.svg) no-repeat;
    background-size: contain;
} */

.side-menu__logo>img {
    width: 28rem;
}

.login__btn {
    width: 100%;
    background-color: var(--color-teal);
    color: #fff;
    height: 8rem;
    border-radius: 1.2rem;
    justify-content: center;
    font-size: 2.1rem;
    font-weight: 700;
}

.side-menu__logo + .login__btn {
    margin-top: 2.4rem;
}

.login__btn>i {
    display: block;
    background-image: url(/client/education_manage_system/img/2025_main_update/common/icon-person-circle.svg);
    background-repeat: no-repeat;
    width: 2.6rem;
    height: 2.6rem;
    margin-right: .8rem;
}

.login__subs {
    display: flex;
    align-items: center;
    border: 1px solid #E2E8F0;
    margin-top: 1.6rem;
    height: 4rem;
    border-radius: 1.2rem;
}

.login-sub__btn {
    flex: 1 1 100%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background-color: #fff;
    transition:var(--transition);
}

.login-sub__btn + .login-sub__btn {
    border-left: 1px solid #E2E8F0;
}

.login-sub__btn:first-child {
    border-radius: 1.2rem 0 0 1.2rem;
}

.login-sub__btn:last-child {
    border-radius:  0 1.2rem 1.2rem 0;
}

.login-sub__btn > p {
    font-size: 1.5rem;
    color: #666;
    font-weight: 500;
    word-break: keep-all;
}

.side__goto {
    display: block;
    width: 100%;
    box-sizing: border-box;
    padding: 4.4rem 0 4.4rem 4rem;
    font-size: 1.9rem;
    border-bottom: 1px solid #E2E8F0;
    font-weight: 500;
    position: relative;
}
.side__goto::before,
.side__goto::after {
    content: '';
    display: block;
    position: absolute;
    background-repeat: no-repeat;
    background-size: contain;
    top: 50%;
    transform: translateY(-50%);
    transition:var(--transition);
}
.side__goto::before {
    left: 0;
    width: 2.7rem;
    height: 2.8rem;
}

.side__goto:nth-child(1):before {
    background-image: url(/client/education_manage_system/img/2025_main_update/common/goto-icon-1.svg);
}
.side__goto:nth-child(2):before {
    background-image: url(/client/education_manage_system/img/2025_main_update/common/goto-icon-2.svg);
}
.side__goto:nth-child(3):before {
    background-image: url(/client/education_manage_system/img/2025_main_update/common/goto-icon-3.svg);
}

.side__goto::after {
    background-image: url(/client/education_manage_system/img/2025_main_update/common/goto-arrow.svg);
    right: 0;
    width: 2.8rem;
    height: 1.6rem;
}

.side__link {
    display: block;
    width: 100%;
    padding: 2.4rem 0;
    box-sizing: border-box;
    font-size: 1.9rem;
    position: relative;
    font-weight: 700;
}

.side__link::after {
    content: '';
    display: block;
    background: url(/client/education_manage_system/img/2025_main_update/common/side-link-arrow.svg) no-repeat;
    width: 1.4rem;
    height: 2.4rem;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.side__link + .side__link {
    border-top: 1px solid #E2E8F0;
}

@media screen and (min-width: 1024px){
    .login-sub__btn:hover {
        background-color: #E2E8F0;
    }
}
@media screen and (max-width: 576px){
    .side-menu {
        padding: 4rem 2rem;
    }
    .side-menu__logo>img {
        width: 20rem;
    }
    .login-sub__btn > p {
        font-size: 1.3rem;
    }
}

/* 전체메뉴 - 디자인 현행유지 */
.all-menu-stage {
    right: -100%;
    position: fixed;
    z-index: 99;
    background-color: #1b7bbc;
    top: 0;
    width: 100%;
    height: 100vh;
    transition: all .3s ease-in;
    visibility: hidden;
    overflow-y: hidden;
}

.all-menu-stage::-webkit-scrollbar {
    width: .5rem;
}

.all-menu-stage::-webkit-scrollbar-thumb {
    width: .5rem;
    border-radius: .5rem;
    background-color: #fff;
}

.all-menu-stage.active {
    right: 0;
    visibility: visible;

}
.all-menu__bottom::after,
.all-menu-stage::before,
.all-menu-stage::after {
    content: '';
    display: block;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    transition: var(--transition);
    z-index: -1;
}

.all-menu__bottom::after {
    display: none;
}

.all-menu-stage::before {
    background-image: url(/client/education_manage_system/img/2025_main_update/common/all-menu-deco-1.png);
    top: 32%;
    left: -4.5%;
    width: 47.2rem;
    height: 47.6rem;
}

.all-menu__bottom::after,
.all-menu-stage::after {
    background-image: url(/client/education_manage_system/img/2025_main_update/common/all-menu-deco-2.png);
    width: 72.9rem;
    height: 61rem;
    bottom: 0;
    right: 0;
}


.all-menu__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem 0;
}

.all-menu__seting {
    display: flex;
    align-items: center;
    gap: 0 2rem;
}

.all-menu-user__lists {
    gap: 0 1rem;
}

.all-menu-user__list {
    position: relative;
}

.all-menu-user__list + .all-menu-user__list::before {
    content: '';
    display: block;
    width: 2px;
    height: 1.6rem;
    background-color: #fff;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.all-menu-user__list + .all-menu-user__list > a{
    margin-left: 1.1rem;
}

.all-menu-user__list > a {
    font-size: 1.7rem;
    line-height: 2.3rem;
}

.all-menu-wrapper {
    max-width: 124rem;
    width: 100%;
    padding: 0 2rem;
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%,-50%);
    color: #fff;
    height: auto;
}

.all-menu__logo svg path {
    fill: #fff;
}

.all-menu__langs {
    display: flex;
    align-items: center;
    gap: .5rem;
}

.all-menu__lang {
    font-size: 1.8rem;
    line-height: 2.2rem;
    padding: .4rem 1rem ;
    color: #fff;
    border-radius: 1.6rem;
    transition: var(--transition);
}

.all-menu__lang.active {
    background-color: #fff;
    color: #1b7bbc;
}

.all-menu__bottom {
    padding-top: 10rem;
    box-sizing: border-box;
    position: relative;
}

.all-manu__link {
    font-size: 1.7rem;
    opacity: .8;
    transition: var(--transition);
}

.all-manu__link:first-child {
    margin-top: 1rem;
}

.all-manu__tit {
    opacity: 1;
    font-size: 2.1rem;
    font-weight: 500;
    position: relative;
}

.all-manu__tit::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background-color: #fff;
    position: absolute;
    bottom: -1rem;
    transition: var(--transition);
}

.all-menu__lists.lists {
    justify-content: space-between;
    gap: 0 3rem;
    align-items: flex-start;
}

.all-menu__list {
    width: 19.4rem;
}

.all-menu__list + .all-menu__list {
    margin-top: 1rem;
}

.all-sub-menu__list {
    display: flex;
    flex-direction: column;
    gap: 1.8rem 0;
    padding-top: 5rem;
    transition: var(--transition);
}

.all-menu__close {
    position: absolute;
    width: 5.5rem;
    height: 5.5rem;
    top: 6rem;
    right: 6rem;
    border-radius: 1rem;
    z-index: 1;
}

.all-menu__close::after,
.all-menu__close::before {
    background-color: #fff;
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    border-radius: 2px;
    position: absolute;
    top: 50%;
    left: .1rem;
    transform: rotate(-45deg) translateY(-50%);
}

.all-menu__close::after {
    transform: rotate(45deg) translateY(-50%);
}

.all-manu__btn {
    font-size: 2rem;
    font-weight: 500;
    color: #fff;
    width: 100%;
    padding: 1rem 0 1rem 1rem;
    text-align: left;
    position: relative;
    left: -1rem;
    display: none;
    align-items: center;
    gap: 0 1rem;
    white-space: nowrap;
}

.all-manu__btn::after {
    content: '';
    display: block;
    width: 0;
    height: 1px;
    position: relative;
    right: -1rem;
    background-color: #fff;
    visibility: hidden;
    transition: var(--transition);
}

.all-manu__btn.active::after {
    width: calc(100% + 4rem);
    visibility: visible;
}

.all-manu__btn.active + .all-sub-menu__list {
    height: auto;
    visibility: visible;
    opacity: 1;
    padding-bottom: 4rem;
}

.all-sub-menu__list > .all-manu__link {
    position: relative;
}

.all-sub-menu__list > .all-manu__link.active {
    opacity: 1;
}

.all-sub-menu__list > .all-manu__link::before {
    content: '';
    display: none;
    width: .5rem;
    height: .5rem;
    background-color: #fff;
    position: absolute;
    border-radius: 50%;
    opacity: 1;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

@media screen and (min-width: 1024px){
    .all-menu__lang:hover {
        background-color: #fff;
        color: #1b7bbc;
    }
    .all-menu-user__list > a:hover {
        text-decoration: underline;
    }
    .all-manu__link:hover {
        opacity: 1;
    }
    .all-manu__tit:hover::after {
        width: 100%;
    }
    .all-menu__close:hover {
        box-shadow: 0 0 10px #ffffff50;
    }
}

@media screen and (max-width: 1439px) {
    .all-menu__close {
        right: 2rem;
    }
    .all-menu-stage {
        background-size: 300px auto;
    }
    .all-menu-stage::before {
        top: 20%;
        width: 30rem;
        height: 30rem;
    }
    .all-menu-stage::after {
        width: 50rem;
        height: 42rem;
    }
    .all-menu__close {
        width: 4rem;
        height: 4rem;
    }
}

@media screen and (max-width: 1199px) {
    .all-menu__close {
        position: relative;
        top: 2rem;
        left: calc(100% - 7rem);
    }
    .all-menu-wrapper {
        padding-top: 4rem;
    }
}

@media screen and (max-width: 1023px) {
    .all-menu-stage {
        width: 80%;
        overflow-x: hidden;
        overflow-y: auto;
    }
    .all-menu-wrapper {
        padding: 3rem 2.4rem 14rem;
        position: static;
        transform: initial;
        overflow: hidden;
    }
    .all-menu__close {
        top: 3rem;
        right: 1.6rem;
        left: initial;
        position: absolute;
        width: 3.5rem;
        height: 3.5rem;
    }
    .all-menu__top {
        flex-direction: column;
        align-items: flex-start;
    }
    .all-menu__seting {
        width: 100%;
        justify-content: space-between;
    }
    .all-menu__bottom {
        padding-top: 4rem;
        min-height: calc(100vh - 18rem);
    }
    .all-menu__lists.lists {
        flex-direction: column;
    }
    .all-menu__list {
        width: 100%;
    }
    .all-sub-menu__list {
        padding-top: 0;
        height: 0;
        visibility: hidden;
        opacity: 0;
    }
    .all-menu-stage::before {
        right: 0;
        left: initial;
        transform: scaleX(-1);
    }
    .all-menu-stage::after {
        display: none;
    }
    .all-menu__bottom::after {
        content: '';
        display: block;
        position: absolute;
        bottom: -14rem;
        width: 45rem;
        height: 38rem;
        right: initial;
        left: -4rem;
        transform: scaleX(-1);
    }
    .all-menu-stage::before {
        right: -8rem;
        top: 25%;
    }
    .all-manu__btn {
        display: flex;
    }
    .all-sub-menu__list > .all-manu__link.active::before {
        display: block;
    }
}
@media screen and (max-width: 767px) {
    .all-menu__bottom::after {
        width: 35rem;
        height: 28rem;
    }
}
@media screen and (max-width: 576px) {
    .all-menu__close {
        width: 2.5rem;
        height: 2.5rem;
    }
    .all-menu-stage {
        width: 90%;
    }

    .all-menu__logo > svg {
        width: 16rem;
    }
}
@media screen and (max-width: 375px) {
    .all-menu-stage {
        width: 100%;
    }
}
/* 푸터 */
.footer__top {
    background-color: #fff;
    border-top: 1px solid #E2E8F0;
    border-bottom: 1px solid #E2E8F0;
}

.footer-top__links {
    display: flex;
    align-items: center;
}

.footer-top__link {
    display: block;
    flex: 1 1 100%;
    padding: 1.8rem 0;
    box-sizing: border-box;
    border-left: 1px solid #E2E8F0;
    text-align: center;
}

.footer-top__link:last-child {
    border-right: 1px solid #E2E8F0;
}

.footer__center {
    background-color: #F9FAFB;
    padding: 4rem 0;
}

.footer-center-stage {
    display: flex;
    justify-content: space-between;
    gap: 2.4rem 11rem;
    position: relative;
}

.footer__txt {
    font-size: 1.7rem;
    font-weight: 500;
    text-align: left;
    word-break: keep-all;
    transition:var(--transition);
}

.footer-info-wrapper {
    display: flex;
    background-color: #fff;
    margin-top: 2.4rem;
    border: 1px solid #E2E8F0;
    border-radius: .6rem;
}

.footer-info {
    padding: 0 2.4rem;
    flex: 1 1 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    height: 7rem;
}

.footer-info + .footer-info {
    border-left: 1px solid #E2E8F0;
}

.footer-info__tit {
    font-size: 1.7rem;
    font-weight: 600;
    position: relative;
    padding-left: 2.8rem;
}

.footer-info__tit::before {
    content: '';
    display: block;
    background: url(/client/education_manage_system/img/2025_main_update/common/footer-info-icon.svg) no-repeat;
    width: 2rem;
    height: 2rem;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.footer__left {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.footer__left > .footer__txt{
    display: none;
}
.footer__right {
    width: 100%;
}

.footer-info__cnt {
    display: flex;
    align-items: center;
    gap: .4rem .8rem;
}

.footer-info__cnt>.tit {
    color: var(--color-teal);
    font-size: 1.7rem;
    font-weight: 600;
    white-space: nowrap;
}

.footer-info__cnt strong {
    font-size: 1.7rem;
}

.footer-info__cnt p {
    font-size: 1.5rem;
}

.footer__bottom {
    background-color: #F9FAFB;
}

.footer-bottom-stage {
    border-top: 1px solid #E2E8F0;
    padding: 4rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2.4rem;
}

.footer-bottom-links {
    display: flex;
    gap: 0 8rem;
}

.footer-bottom__link {
    font-size: 1.7rem;
    font-weight: 500;
}

.footer-bottom__link em {
    color: var(--color-teal);
}

.copyright {
    color: #666;
    font-size: 1.7rem;
}

@media screen and (min-width: 1024px){
    .footer-bottom__link:hover {
        text-decoration: underline;
    }
}
@media screen and (max-width: 1644px) {
    .footer-center-stage {
        gap: 2.4rem 3rem;
        flex-wrap: wrap;
    }
    .footer__right>.footer__txt {
        display: none;
    }
    .footer__left {
        width: 100%;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 1rem 5rem;
    }
    .footer__left > .footer__txt {
        display: block;
        text-align: right;
    }
    .footer-info-wrapper {
        margin: 0;
    }

}
@media screen and (max-width: 1439px){
    .footer-top__links.stage{
        padding: 0;
    }
    .footer-top__link:last-child,
    .footer-top__link{
        border: 0;
    }
    .footer-top__link+.footer-top__link {
        border-left: 1px solid #E2E8F0;
    }
    
}

@media screen and (max-width: 1299px){
    .footer-top__links {
        flex-wrap: wrap;
    }
    .footer-top__link {
        flex: 1 1 50%;
        width: 50%;
    }
    .footer-top__link:nth-child(n+3) {
        border-top: 1px solid #E2E8F0;
    }
    .footer-info-wrapper {
        flex-direction: column;
    }
    .footer-info {
        padding: 1.6rem 4rem;
        height: auto;
        gap: .8rem;
    }
    .footer-info + .footer-info {
        border-left: 0;
        border-top: 1px solid #E2E8F0;
    }
    .footer-bottom-links {
        gap: 2rem 4rem;
    }

}
@media screen and (max-width: 1023px){
}
@media screen and (max-width: 767px){
    .footer-top__link {
        padding:  0 1.5rem;
        height: 6rem;
        display: flex;
        align-items: center;
        justify-content: left;
    }
    .footer-bottom-links,
    .footer-bottom-stage {
        justify-content: center;
    }
    .copyright {
        text-align: center;
    }
    .footer-info {
        padding: 1.6rem 3rem;
    }
    .footer-info__cnt {
        flex-wrap: wrap;
    }
}
@media screen and (max-width: 576px){
    .footer-top__link>img {
        max-height: 4rem;
    }
    .footer-top__link:first-child>img {
        height: 3.6rem;
        width: auto;
    }
    .footer-info {
        padding: 1.6rem 2rem;
        flex-direction: column;
        align-items: flex-start;
    }
    .footer-info__cnt {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
    }
    .footer-bottom-links {
        flex-wrap: wrap;
    }
    .footer__txt {
        font-size: 1.5rem;
        position: static;
        width: 100%;
        text-align: left;
    }
    .footer-center-stage {
        flex-direction: column;
    }
    .footer__left {
        flex-direction: column;
        align-items: flex-start;
    }
    .footer__left > .footer__txt {
        text-align: left;
    }
    .footer-top__link {
        padding: 0 2rem;
    }
}

@media screen and (max-width: 459px){
    .footer-info__cnt {
        flex-direction: column;
        align-items: flex-start;
    }
    .footer-info__cnt br.pc {
        display: block !important;
    }
    .footer-top__link:first-child>img {
        height: 3.2rem;
    }
    .footer-top__link>img {

        width: 100%;
    }
}

.select-stage.family-site {
    width: 100%;
    display: none;
    margin-top: 15rem;
    position: relative;
}

.family-site .select__onoff {
    background-color: transparent;
    border: 0;
}

.family-site .select__onoff svg {
    transition: var(--transition);
}

.family-site .select__onoff.active svg {
    transform: rotate(180deg);
}

.family-site .select-wrapper {
    background-color: #2886b9;
    border-radius: 2.4rem;
    overflow: hidden;
    transition: var(--transition);
}

.family-site .select-wrapper:has(.select__onoff.active) {
    border-radius:  0 0 2.4rem 2.4rem;
    border-top: 0;
}

.family-site .select__btn {
    color: #fff;
    background-color: #2886b9;
    display: block;
    border-radius: 2.4rem;
}


.family-site .select-drop-stage {
    top: initial;
    bottom: 4rem;
    background-color: #2886b9;
    border-radius: 2.4rem;
    height: auto;
    border-radius: 2.4rem 2.4rem 0 0;
    border-bottom: 0;
    padding: .5rem 1.4rem 0;
}

.family-site .select-drop-stage >  .select__btn{
    padding: .8rem 1rem;
}


.family-site .select__btn.active {
    color: #fff;
}

@media screen and (max-width: 1023px){
    .select-stage.family-site {
        display: block;
    }
}

.all-search-container {
    position: absolute;
    right: 14rem;
    background-color: #fff;
    padding: 2rem;
    width: 40rem;
    top: 12.5rem;
    box-shadow: 0px 3px 9px #00000020;
    display: flex;
    gap: .6rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.all-search-container.active {
    opacity: 1;
    visibility: visible;
}

.input__all-serch {
    width: 100%;
    padding: 0 2rem;
    border: 1px solid #E2E8F0;
    border-radius: .6rem;
    font-size: 1.7rem;
}

.btn__all-search {
    font-size: 1.7rem;
    background-color: var(--color-teal);
    color: #fff;
    font-weight: 500;
    height: 3.5rem;
    border-radius: .6rem;
    width: 7rem;
    box-sizing: border-box;
    justify-content: center;
}

@media screen and (max-width: 1023px){
    .all-search-container {
        position: absolute;
	    right: 0rem;
	    background-color: #fff;
	    padding: 2rem;
	    width: 40rem;
	    top: 12.5rem;
	    box-shadow: 0px 3px 9px #00000020;
	    display: flex;
	    gap: .6rem;
	    opacity: 0;
	    visibility: hidden;
	    transition: var(--transition);
    }
}