/* 헤더 */
#header {
    width: 100%;
    height: 90px;
    padding-right:var(--space-70);
    border-bottom: var(--border-basic);
    z-index: 50;
    position: relative;
    background-color: var(--color-white);
}
#header .layout {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between
}
.pc-header .logo {
    width: 210px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}
.pc-header .logo a {
    display: flex;
    align-items: center;
}
.pc-header .logo img {
    width: 100%
}
.pc-header .logo img.dark {
    display: none;
}
#header .pc-menu {
    display: none;
}
[data-theme="dark"] .pc-header .logo img.color {
    display: none;
}
[data-theme="dark"] .pc-header .logo img.dark {
    display: block;
}
    /* 헤더 검색 영역 */
.header-search {
    width: 220px;
    display: flex;
    align-items: center;
    z-index: 2;
}
.header-search.pc {
    height: 100%;
}
.header-search .search-form {
    width: 100%;
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
    height: 40px;
    border-bottom: var(--border-basic);
}
.header-search .form-button {
    padding:0 var(--space-10);
}
.header-search .form-input {
    padding-left: var(--space-10)
}
.header-search .form-button svg {
    width: 14px;
}
.header-search input {
    height: 100%;
}
    /* 헤더 스크롤 일때 */
#header.navbar-fixed-top {
    position: fixed;
    top: 0
}
.pc-header {
    height: 100%;
}
.mobile-header {
    display: none;
    height: 100%;
}
.header-search.mobile {
    display: none;
}
   /* 헤더 미디어쿼리 */
    @media all and (max-width:1200px) {
        #header {
            padding-right: 0
        }
        .pc-header {
            display: none
        }
        .mobile-header {
            display: block
        }
        .header-search.mobile {
            display: flex;
        }
        .mobile-header .logo svg {
            width: 100%;
        }
        .header-search {
            width: 100%;
        }
        .header-search .form-input {
            padding-left: var(--space-40)
        }
        .header-search .form-button {
            padding-right: var(--space-30)
        }
        .mobile-header .quick-link,
        .mobile-header .quick-sns {
            display: flex;
            /* margin-right: -2% */
        }
        .mobile-header .quick-link .link,
        .mobile-header .quick-sns a {
            margin: 0 3px;
            display: inline-flex;
            align-items: center;
        }
        /* .mobile-header .quick-link .link:last-of-type {
            margin-right: 0
        } */
        .mobile-header .quick-link .link strong {
            display: none;
        }
        .mobile-header .header-right {
            display: flex;
            padding-right: 6%
        }
    }
    @media all and (max-width:1000px) {
        #header {
            height: 75px;
        }
        .mobile-header .logo {
            width: 180px;
        }
        .mobile-header .quick-link img,
        .mobile-header .quick-sns img {
            width: 27px;
        }
        .header-search .form-input {
            padding-left: var(--space-30)
        }
    }
    @media all and (max-width:640px) {
        #header {
            height: 60px;
            padding-right: 0
        }
        #header .logo {
            width: 150px;
        }
        .mobile-header .quick-link img {
            width: 23px;
        }
        .mobile-header .quick-sns {
            display: none;
        }
        .mobile-header .header-right {
            padding-right: 11%
        }
    }

/* Side Menu */
.content-wrap {
    position: relative;
}
.side-menu {
    position: absolute;
    height: 100%;
    left: 60px;
    border-left: 1px solid #DFDFDF;
    z-index: 1;
    top: 0
}
.side-menu ul {
    top: 210px;
    position: fixed;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.side-menu li {
    position: relative;
    padding-left: 22px;
}
.side-menu li a {
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    color: #989898
}
.side-menu li a:hover,
.side-menu li.on a {
    font-weight: bold;
    color: #1E84A0
}
.side-menu li.on span {
    position: absolute;
    left: -7px
}
    /* Side Menu 미디어쿼리 */
    @media all and (max-width:1700px) {
        .side-menu {
            display: none !important;
        }
    }


/* footer */
footer {
    font-size: var(--font-16);
    color: var(--color-basic);
    border-top: var(--border-basic);
}
footer .footer-wrap .layout {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    padding: var(--space-60) 0
}
footer .footer-logo {
    flex: 1 0 22%;
    display: flex;
}
footer .footer-logo img {
    width: 227px;
}
footer .footer-logo img.dark {
    display: none;
}
[data-theme="dark"] footer .footer-logo img.color {
    display: none;
}
[data-theme="dark"] footer .footer-logo img.dark {
    display: block;
}
footer .footer-content {
    display: flex;
    flex: 1 0 78%;
    justify-content: flex-end;
    align-items: stretch;
}
footer .footer1,
footer .footer2,
footer .footer3 {
    border-left: var(--border-basic);
    padding: 0 var(--space-80)
}
footer .footer1 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
footer .footer1 ul:first-of-type {
    margin: 0 0 var(--space-30);
    font-weight: var(--fw-normal);
}
footer .footer1 ul:first-of-type li:first-child {
    margin-bottom: var(--space-12)
}
footer .footer1 ul:first-of-type li:nth-child(2) {
    margin-bottom: var(--space-5);
}
footer .footer1 ul:first-of-type li:nth-child(2) a:hover,
footer .footer1 ul:first-of-type li:last-child a:hover {
    font-weight: var(--fw-bold);
}
footer .footer1 .address {
    font-size: var(--font-18);
    font-weight: var(--fw-bold);
}
footer .footer1 ul:last-of-type {
    display: flex;
    align-items: center;
}
footer .footer1 ul:last-of-type li {
    white-space: nowrap;
    font-weight: var(--fw-light);
    font-size: var(--font-15);
}
footer .footer1 ul:last-of-type li:first-child {
    margin-right: var(--space-30)
}
footer .footer1 ul li a:hover {
    color: var(--color-wood);
}
footer .footer2 .operation strong {
    font-weight: var(--fw-bold);
    display: block;
    margin-bottom: var(--space-10);
}
footer .footer2 .operation li:nth-child(-n+2) {
    margin-bottom: var(--space-5);
}
footer .footer2 .btn-call {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    border: var(--border-basic);
    background-color: var(--color-basic);
    font-size: var(--font-15);
    font-weight: var(--fw-bold);
    width: 185px;
    height: 42px;
    margin-top: var(--space-20);
}
footer .footer2 .btn-call svg {
    width: 25px;
    margin-left: var(--space-10);
}
footer .footer2 .btn-call:hover {
    color: var(--color-basic);
    background-color: var(--color-white);
}
footer .footer2 .btn-call svg #icon-phone g {
    transition: none;
}
footer .footer2 .btn-call:hover svg #icon-phone g {
    stroke: var(--color-basic);
}
footer .footer2 .btn-call:hover svg path,
footer .footer2 .btn-call:hover svg rect {
    stroke: var(--color-basic);
}
footer .footer2 .btn-call:hover svg circle {
    fill: var(--color-basic)
}
footer .footer3 .sitemap li:not(:last-child) {
    margin-bottom: var(--space-10);
}
footer .footer3 .sitemap li a {
    white-space: nowrap;
}
footer .footer3 .sitemap li a:hover {
    font-weight: var(--fw-bold);
}
footer .copyright {
    padding: var(--space-10) 0;
    text-align: center;
    border-top: var(--border-basic);
    position: relative;
}
footer .copyright .layout {
    position: relative;
    display: flex;
    justify-content: flex-end;
}
footer .copyright p {
    font-size: var(--font-13);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
footer .copyright .logoarea {
    display: flex;
    align-items: center;
}
footer .copyright .logoarea a {
    display: block;
}
footer .copyright .logoarea a:first-of-type {
    margin-right: var(--space-30);
}
footer .copyright .logoarea img {
    height: 52px;
    width: auto;
}
    /* footer 미디어쿼리 */
    @media all and (max-width: 1600px) {
        footer .footer1,
        footer .footer2,
        footer .footer3 {
            padding: 0 6.5%;
        }
        footer .footer1 ul:last-of-type {
            flex-direction: column;
            align-items: flex-start;
        }
        footer .footer1 ul:last-of-type li:first-child {
            margin-right: 0;
            margin-bottom: var(--space-5)
        }
    }
    @media all and (max-width: 1200px) {
        footer .footer-wrap .layout {
            flex-wrap: wrap;
            padding: var(--space-50) 0
        }
        footer .footer-logo {
            flex: 1 0 100%;
            border-bottom: var(--border-basic);
            padding-bottom: var(--space-20);
            margin-bottom: var(--space-30);
        }
        footer .footer-logo img {
            width: 180px;
        }
        footer .footer-content {
            justify-content: flex-start;
        }
        footer .footer1,
        footer .footer2,
        footer .footer3 {
            padding: 0 var(--space-75);
        }
        footer .footer1 {
            padding-left: 0;
            border-left: 0;
        }
        footer .footer3 {
            padding-right: 0
        }
        footer .copyright .logoarea a:first-of-type {
            margin-right: var(--space-20);
        }
        footer .copyright .logoarea img {
            height: 40px;
        }
    }
    @media all and (max-width: 1000px) {
        footer .footer-wrap .layout {
            flex-wrap: wrap;
            padding: var(--space-40) 0
        }
        footer .footer-logo {
            flex: 1 0 100%;
            border-bottom: var(--border-basic);
            padding-bottom: var(--space-20);
            margin-bottom: var(--space-30);
        }
        footer .footer-logo img {
            width: 160px;
        }
        footer .footer1,
        footer .footer2,
        footer .footer3 {
            padding: 0 var(--space-40);
        }
        footer .footer1 {
            padding-left: 0
        }
        footer .footer2 .btn-call {
            width: 100%;
        }
        footer .footer3 {
            padding-right: 0
        }
        footer .copyright p {
            left: 0;
            transform: translate(0, -50%);
        }
        footer .copyright .logoarea img {
            height: 35px;
        }
    }
    @media all and (max-width: 640px) {
        footer {
            font-size: var(--font-15);
        }
        footer .footer-wrap .layout {
            width: 100%;
            padding: var(--space-40) 0 0 0
        }
        footer .footer-logo {
            margin-bottom: 0;
            border-bottom: 0;
            padding: 0 5%
        }
        footer .footer-logo img {
            width: 150px;
        }
        footer .footer-content {
            flex-wrap: wrap;
        }
        footer .footer1,
        footer .footer2 {
            width: 100%;
            padding: var(--space-20) 0;
            margin: 0 5%;
            border-left: 0;
        }
        footer .footer2,
        footer .footer3 {
            border-top: var(--border-basic)
        }
        footer .footer1 .address {
            font-size: var(--font-16);
        }
        footer .footer2 {
            padding-bottom: var(--space-30);
        }
        footer .footer3 {
            width: 100%;
            padding: var(--space-10) 5%;
            border-left: 0;
            margin: 0;
        }
        footer .footer3 .sitemap li:not(:last-child) {
            margin-bottom: 0
        }
        footer .footer3 ul {
            display: flex;
            justify-content: space-between;
        }
        footer .copyright .layout {
            flex-direction: column-reverse;
            justify-content: center;
            align-items: center;
        }
        footer .copyright p {
            position: relative;
            left: unset;
            right: unset;
            transform: unset;
            margin-top: var(--space-10);
        }
        footer .copyright .logoarea img {
            height: 35px;
        }
    }

/* 서브 상단 */
aside {
    margin-top: var(--space-80);
}
.aside-title-area {
    margin-bottom: var(--space-50);
    text-align: center;
}
.aside-sub-title {
    display: block;
    margin-bottom: var(--space-10);
    font-size: var(--font-15);
    font-weight: var(--fw-black);
}
.aside-title {
    font-size: var(--font-60);
    font-weight: var(--fw-black);
}

/* 네비게이션 영역 */
.breadcrumbs {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 60px;
    border: var(--border-basic);
    border-width: 1px 0 1px 0;
    z-index: 1;
}
.breadcrumbs .layout {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.breadcrumbs .home {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: var(--space-25);
}
.breadcrumbs .crumbs {
    position: relative;
    height: 100%
}
.breadcrumbs .home::after,
.breadcrumbs .crumbs::after {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    content: "";
    display: block;
    width: 1px;
    height: 21px;
    background-color: var(--color-dark);
}
.breadcrumbs .crumbs:last-of-type::after {
    display: none;
}
.breadcrumbs .crumbs-title {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    padding: 0 var(--space-25);
}
.breadcrumbs .crumbs-title strong {
    font-size: var(--font-18);
    font-weight: var(--fw-semibold);
}
.breadcrumbs .crumbs-title span {
    margin-left: var(--space-20);
}

/* 드롭다운 메뉴 */
.dropdown {
    z-index: 100;
    position: absolute;
    top: 58px;
    left: 0;
    width: 100%;
    height: auto;
    background-color: var(--color-white);
    border: var(--border-basic);
    transition: var(--transition);
}
.crumbs:not(:hover) .dropdown {
    height: 0;
    border: 0;
}
.dropdown > li {
    display: flex;
    align-items: center;
    overflow: hidden;
    height: 40px;
    font-size: var(--font-16);
    cursor: pointer;
    white-space: nowrap;
    /* transition: 0.3s height cubic-bezier(0.73, 0.32, 0.34, 1.5), 0.3s padding cubic-bezier(0.73, 0.32, 0.34, 1.5), 0.3s margin cubic-bezier(0.73, 0.32, 0.34, 1.5), 0.3s 0.1s */
}
.dropdown > li a {
    width: 100%;
    display: block;
}
.dropdown li.on,
.dropdown > li:hover {
    background: var(--color-dark);
    color: var(--color-white) !important
}
.dropdown li.on a,
.dropdown li:hover {
    font-weight: var(--fw-medium);
    color: var(--color-white) !important
}
.crumbs:not(:hover) .dropdown > li {
    visibility: hidden;
    height: 0;
    padding-top: 0;
    padding-bottom: 0;
    margin: 0;
    color: var(--color-white);
}
    /* 서브상단 미디어쿼리*/
    @media all and (max-width: 1000px) {
        aside {
            margin-top: var(--space-60);
        }
        .aside-title-area {
            margin-bottom: var(--space-40);
        }
        .aside-sub-title {
            margin-bottom: var(--space-5);
            font-size: var(--font-14);
        }
        .aside-title {
            font-size: var(--font-40);
        }
        .breadcrumbs {
            height: 55px;
        }
        .breadcrumbs .home {
            padding-right: var(--space-20);
        }
        .breadcrumbs .home svg {
            width: 11px;
        }
        .breadcrumbs .home::after,
        .breadcrumbs .crumbs::after {
            height: 19px;
        }
        .breadcrumbs .crumbs-title {
            padding: 0 var(--space-20);
        }
        .breadcrumbs .crumbs-title strong {
            font-size: var(--font-16);
        }
        .breadcrumbs .crumbs-title span {
            width: 12px;
            margin-left: var(--space-15);
        }
        .dropdown {
            top: 53px;
        }
        .dropdown > li {
            height: 35px;
            font-size: var(--font-15);
        }
        .dropdown > li a {
            width: 100%;
            display: block;
            padding: 0 var(--space-20)
        }
    }
    @media all and (max-width: 640px) {
        aside {
            margin-top: var(--space-40);
        }
        .aside-title-area {
            margin-bottom: var(--space-30);
        }
        .aside-sub-title {
            font-size: var(--font-15);
        }
        .aside-title {
            font-size: var(--font-30);
        }
        .breadcrumbs {
            height: 40px;
        }
        .breadcrumbs .home svg {
            width: 9px;
        }
        /* .breadcrumbs .crumbs {
            height: 50px;
        } */
        .breadcrumbs .home::after,
        .breadcrumbs .crumbs::after {
            height: 17px;
        }
        .breadcrumbs .crumbs-title strong {
            font-size: var(--font-15);
        }
        .breadcrumbs .crumbs-title span {
            width: 10px;
            margin-left: var(--space-10);
        }
        .dropdown {
            top: 38px;
        }
        .dropdown > li {
            height: 30px;
            font-size: var(--font-14);
        }
    }

/*chkbox*/
.control {
    display: block;
    position: relative;
    padding-left: 26px;
    cursor: pointer;
    font-size: 14px;
}
.control input {
    position: absolute;
    z-index: -1;
    opacity: 0;
}
.control__indicator {
    position: absolute;
    top: 2px;
    left: 0;
    height: 18px;
    width: 18px;
    border-radius: 100%;
    border: 1px solid #d8dde6;
    background: #fff;
}
.control--radio .control__indicator {
    border-radius: 50%;
}
.control:hover input~.control__indicator,
.control input:focus~.control__indicator {
    border: 1px solid #d8dde6;
}
.control input:checked~.control__indicator {
    background: #489BD7;
    border: 1px solid #489BD7;
}
.control:hover input:not([disabled]):checked~.control__indicator,
.control input:checked:focus~.control__indicator {
    background: #489BD7;
}
.control input:disabled~.control__indicator {
    border: 1px solid #d8dde6;
    opacity: 0.6;
    pointer-events: none;
}
.control__indicator:after {
    content: '';
    position: absolute;
    display: none;
}
.control input:checked~.control__indicator:after {
    display: block;
}
.control--checkbox .control__indicator:after {
    left: 4px;
    top: 2px;
    width: 7px;
    height: 8px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
.control--checkbox input:disabled~.control__indicator:after {
    border-color: #7b7b7b;
}
    /* control 미디어쿼리 */
    @media all and (max-width:640px) {
        .control {
            font-size: 12px;
        }
        .control__indicator {
            width: 14px;
            height: 14px;
            left: 3px;
            top: 3px;
        }
        .control--checkbox .control__indicator:after {
            left: 3px;
            top: 1px;
            width: 6px;
            height: 8px;
        }
        .counter button {
            width: 30px;
            height: 30px;
        }
        .counter input {
            width: 30px;
            height: 30px;
            line-height: 28px;
        }
    }

/*selectbox*/
.select-box {
    position: relative;
    display: block;
    width: 72%;
    font-size: 16px;
}
.select-box__current {
    position: relative;
    cursor: pointer;
    outline: none;
}
.select-box__current:focus+.select-box__list {
    opacity: 1;
    -webkit-animation-name: none;
    animation-name: none;
}
.select-box__current:focus+.select-box__list .select-box__option {
    cursor: pointer;
}
.select-box__current:focus .select-box__icon {
    transform: translateY(-50%) rotate(180deg);
}
.select-box__icon {
    position: absolute;
    top: 50%;
    left: 146px;
    transform: translateY(-50%);
    width: 13px;
    opacity: 0.3;
    transition: 0.2s ease;
}
.select-box__value {
    display: flex;
}
.select-box__input {
    display: none;
}
.select-box__input:checked+.select-box__input-text {
    display: block;
}
.select-box__input-text {
    display: none;
    width: 100%;
    margin: 0;
    background-color: #fff;
}
.select-box__list {
    position: absolute;
    width: 47%;
    padding: 0;
    list-style: none;
    opacity: 0;
    -webkit-animation-name: HideList;
    animation-name: HideList;
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-timing-function: step-start;
    animation-timing-function: step-start;
    -webkit-box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
    border: 1px solid #D9D9D9;
    border-radius: 9px;
    background: #fff;
}
.select-box__option {
    display: block;
    padding: 15px;
}
.select-box__option:hover,
.select-box__option:focus {
    color: #fff;
    background-color: #489BD7;
}
.select-box__list li:first-child .select-box__option:hover,
.select-box__list li:first-child .select-box__option:focus {
    border-radius: 9px 9px 0 0;
}
.select-box__list li:last-child .select-box__option:hover,
.select-box__list li:last-child .select-box__option:focus {
    border-radius: 0 0 9px 9px;
}
@-webkit-keyframes HideList {
    from {
        transform: scaleY(1);
    }
    to {
        transform: scaleY(0);
    }
}
@keyframes HideList {
    from {
        transform: scaleY(1);
    }
    to {
        transform: scaleY(0);
    }
}
    /* selectbox 미디어쿼리 */
    @media all and (max-width:1400px) {
        .select-box {
            width: 40%
        }
    }
    @media all and (max-width:1000px) {
        .select-box__list {
            width: 100%;
        }

        .select-box__option {
            padding: 10px
        }
    }

/*radio*/
.radio-wrap {
    display: flex;
    align-items: center;
}
.radio {
    margin: 10px;
}
.radio input[type=radio] {
    position: absolute;
    opacity: 0;
}
.radio input[type=radio]+.radio-label:before {
    content: "";
    background: #fff;
    border-radius: 100%;
    border: 1px solid #D8DDE6;
    display: inline-block;
    width: 24px;
    height: 24px;
    position: relative;
    top: 0;
    margin-right: 10px;
    vertical-align: top;
    cursor: pointer;
    text-align: center;
    transition: all 250ms ease;
}
.radio input[type=radio]:checked+.radio-label:before {
    background-color: #3197EE;
    box-shadow: inset 0 0 0 4px #f4f4f4;
}
.radio input[type=radio]:focus+.radio-label:before {
    outline: none;
    border-color: #3197EE;
}
.radio input[type=radio]:disabled+.radio-label:before {
    box-shadow: inset 0 0 0 4px #f4f4f4;
    border-color: #b4b4b4;
    background: #b4b4b4;
}
.radio input[type=radio]+.radio-label:empty:before {
    margin-right: 0;
}

/*counter*/
.counter {
    display: inline-flex;
    align-items: center;
    border: 1px solid #d8dde6;
    border-radius: 7px;
}
.counter button {
    color: #fff;
    width: 40px;
    height: 40px;
    font-size: 15px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.counter input {
    width: 46px;
    height: 42px;
    line-height: 46px;
    text-align: center;
    background: #489BD7;
    border: 0 !important;
    color: #fff;
    font-weight: bold;
    border-radius: 0;
}
    /*미디어쿼리 */
    @media all and (max-width:640px) {
        .radio input[type=radio]+.radio-label:before {
            width: 16px;
            height: 16px;
            top: 3px;
        }
        .counter input {
            width: 34px;
            height: 30px;
            line-height: 30px;
        }
        .counter button {
            width: 36px;
            height: 30px;
        }
    }

/* 오른쪽 메뉴 영역 */
#right {
    width: 70px;
    height: 100vh;
    position: fixed;
    right: 0;
    top: 0;
    background-color: var(--color-white);
    z-index: 999;
    border-left: var(--border-basic)
}
#right .inner {
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: var(--space-90) 0 var(--space-70)
}
#right .quick-link .link:not(:last-of-type) {
    margin-bottom: var(--space-25);
}
#right .quick-link .link a,
#right .quick-link .link button {
    display: block;
    width: 100%;
    text-align: center;
}
#right .quick-link .link img {
    width: 30px;
}
#right .quick-link .link strong {
    display: block;
    text-align: center;
    margin-top: var(--space-5);
    font-size: var(--font-14);
    font-weight: var(--fw-medium);
    transition: var(--transition);
}
#right .quick-link .link a:hover strong,
#right .quick-link .link button:hover strong {
    font-weight: var(--fw-bold);
}
#right .link-wrap {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
}
#right .right-sns {
    display: flex;
    align-items: center;
    flex-direction: column;
}
#right .right-sns a {
    display: flex;
    align-items: center;
    justify-content: center;
}
#right .right-sns a:not(:last-of-type) {
    margin-bottom: var(--space-8)
}
    /* 오른쪽 메뉴 미디어쿼리 */
    @media all and (max-width:1200px) {
        #right {
            display: none;
        }
    }