@charset "UTF-8";
/**
 * @type layout
 * @name layer-popup
 */
html.active-layer-popup body {
    height: 100%;
    overflow: hidden;
}

html.active-layer-popup #wrap {
    overflow-y: scroll;
}

html.active-consult-request-popup body {
    height: 100%;
    overflow: hidden;
}

html.active-consult-request-popup #wrap {
    overflow-y: scroll;
}

@-webkit-keyframes openPopup {
    0% {
        visibility: 0;
        opacity: 0;
    }

    100% {
        visibility: 1;
        opacity: 1;
    }
}

@keyframes openPopup {
    0% {
        visibility: 0;
        opacity: 0;
    }

    100% {
        visibility: 1;
        opacity: 1;
    }
}

.layer-popup.module-a.style-a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: fixed;
    overflow-y: scroll;
    z-index: 50;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 24rem;
    max-width: 100%;
    outline: 0 none;
}

.layer-popup.module-a.style-a:not(.active) {
    display: none;
}

.layer-popup.module-a.style-a.active {
    -webkit-animation-duration: 0.25s;
    animation-duration: 0.25s;
    -webkit-animation-name: openPopup;
    animation-name: openPopup;
    -webkit-animation-timing-function: ease;
    animation-timing-function: ease;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

.layer-popup.module-a.style-a.small .popup-page-body {
    width: 660rem;
}

.layer-popup.module-a.style-a.medium .popup-page-body {
    width: 700rem;
}

.layer-popup.module-a.style-a.large .popup-page-body {
    width: 796rem;
}

.layer-popup.module-a.style-a::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    visibility: visible;
    background-color: rgba(0, 0, 0, 0.6);
}

.layer-popup.module-a.style-a .popup-page-body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    overflow: hidden;
    border-radius: 16rem;
    background-color: #fff;
    -webkit-box-shadow: 0 4rem 8rem 0 rgba(0, 0, 0, 0.08), 0 0 0 0.0625rem rgba(0, 0, 0, 0.05);
    box-shadow: 0 4rem 8rem 0 rgba(0, 0, 0, 0.08), 0 0 0 0.0625rem rgba(0, 0, 0, 0.05);
}

.layer-popup.module-a.style-a .popup-page-body .popup-local {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    overflow: hidden;
}

.layer-popup.module-a.style-a .popup-page-body .popup-local .popup-local-head {
    position: relative;
    padding: 0 40rem;
    -webkit-box-shadow: 0 1rem 0 0 #dddddd;
    box-shadow: 0 1rem 0 0 #dddddd;
}

.layer-popup.module-a.style-a .popup-page-body .popup-local .popup-local-head .popup-local-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0;
    height: 106rem;
}

.layer-popup.module-a.style-a .popup-page-body .popup-local .popup-local-head .popup-local-title .popup-local-name {
    color: #333333;
    font-size: 28rem;
    line-height: 42rem;
    font-weight: 600;
    font-family: 'roboto','notokr', sans-serif;
}

.layer-popup.module-a.style-a .popup-page-body .popup-local .popup-local-body {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    padding: 0 40rem;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
}

.layer-popup.module-a.style-a .popup-page-body .popup-local .popup-local-body .popup-content-body {
    padding: 48rem 0;
}

.layer-popup.module-a.style-a .popup-page-body .popup-local .popup-local-body .popup-content-body .section .section-head {
    display: block;
    position: absolute;
    overflow: hidden;
    visibility: hidden;
    margin: -1px;
    padding: 0;
    width: 1px;
    height: 1px;
    line-height: 1px;
    font-size: 1px;
    border: 0;
    clip: rect(0 0 0 0);
    clip: rect(0, 0, 0, 0);
    pointer-events: none;
}

.layer-popup.module-a.style-a .popup-page-body .popup-local .popup-local-body .popup-content-body .section + .section {
    margin-top: 40rem;
    padding-top: 40rem;
    border-top: 1rem dashed #c1c1c1;
}

.layer-popup.module-a.style-a .popup-page-body .popup-local .popup-local-util {
    -webkit-box-shadow: inset 0 0.0625rem 0 0 #c1c1c1;
    box-shadow: inset 0 0.0625rem 0 0 #c1c1c1;
}

.layer-popup.module-a.style-a .popup-page-body .popup-local .popup-local-util .button-area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.layer-popup.module-a.style-a .popup-page-body .popup-local .popup-local-util .button-area .btn {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    width: 100%;
}

.layer-popup.module-a.style-a .popup-page-body .popup-local .popup-local-util .button-area .btn + .btn {
    margin-left: 12rem;
}

.layer-popup.module-a.style-a .popup-close {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: absolute;
    top: 30rem;
    right: 28rem;
    width: 48rem;
    height: 48rem;
}

.layer-popup.module-a.style-a .popup-close svg {
    display: block;
    fill: #111111;
}

/* 상담 연락처 남기기 */
.layer-popup#consultRequest .submit-form .form-list .form-item + .form-item {
    padding-top: 30rem;
    border-top: 1rem solid #dddddd;
}

.layer-popup#consultRequest .submit-form .form-list .option-select .option-head .option-name .form.checkbox {
    font-size: 16rem;
    line-height: 24rem;
}

.layer-popup#consultRequest .submit-form .form-list .option-select .option-head .option-name .form.checkbox .form-text {
    text-decoration: underline;
}

.layer-popup#consultRequest .submit-form .form-list .option-select .option-util {
    margin-left: 20rem;
}

/* 개인정보 수집 및 이용 동의 */
.layer-popup#privacyPolicy {
    z-index: 60;
}
/* 개인정보 수집 및 이용 동의 */
.layer-popup#privacyTransform {
    z-index: 61;
}

/* 인터넷+IPTV 상품정보 */
.layer-popup.product-composition .section-body .button-area.module-a.style-a.type-b {
    margin-top: 24rem;
}

/**
 * @type layout
 * @name widget
 */
/* widget toolbar */
@-webkit-keyframes tollbar-motion-01 {
    0% {
        opacity: 0;
        visibility: hidden;
    }

    100% {
        opacity: 1;
        visibility: visible;
    }
}

@keyframes tollbar-motion-01 {
    0% {
        opacity: 0;
        visibility: hidden;
    }

    100% {
        opacity: 1;
        visibility: visible;
    }
}

@-webkit-keyframes tollbar-motion-02 {
    0% {
        opacity: 0;
        visibility: hidden;
    }

    100% {
        opacity: 1;
        visibility: visible;
    }
}

@keyframes tollbar-motion-02 {
    0% {
        opacity: 0;
        visibility: hidden;
    }

    100% {
        opacity: 1;
        visibility: visible;
    }
}

@-webkit-keyframes tollbar-motion-0000 {
    0% {
        opacity: 0;
        visibility: hidden;
    }

    100% {
        opacity: 1;
        visibility: visible;
    }
}

@keyframes tollbar-motion-0000 {
    0% {
        opacity: 0;
        visibility: hidden;
    }

    100% {
        opacity: 1;
        visibility: visible;
    }
}

@-webkit-keyframes tollbar-character-motion-01 {
    0% {
        -webkit-transform: translate(-110rem, 50rem) scale(0.1);
        transform: translate(-110rem, 50rem) scale(0.1);
        opacity: 1;
    }

    100% {
        -webkit-transform: translate(0) scale(1);
        transform: translate(0) scale(1);
        opacity: 1;
    }
}

@keyframes tollbar-character-motion-01 {
    0% {
        -webkit-transform: translate(-110rem, 50rem) scale(0.1);
        transform: translate(-110rem, 50rem) scale(0.1);
        opacity: 1;
    }

    100% {
        -webkit-transform: translate(0) scale(1);
        transform: translate(0) scale(1);
        opacity: 1;
    }
}

@-webkit-keyframes tollbar-character-motion-02 {
    0% {
        -webkit-transform: translate(-70rem, 30rem) scale(0.1);
        transform: translate(-70rem, 30rem) scale(0.1);
        opacity: 1;
    }

    100% {
        -webkit-transform: translate(0) scale(1);
        transform: translate(0) scale(1);
        opacity: 1;
    }
}

@keyframes tollbar-character-motion-02 {
    0% {
        -webkit-transform: translate(-70rem, 30rem) scale(0.1);
        transform: translate(-70rem, 30rem) scale(0.1);
        opacity: 1;
    }

    100% {
        -webkit-transform: translate(0) scale(1);
        transform: translate(0) scale(1);
        opacity: 1;
    }
}

@-webkit-keyframes tollbar-character-motion-03 {
    0% {
        -webkit-transform: translate(-70rem, 10rem) scale(0.1);
        transform: translate(-70rem, 10rem) scale(0.1);
        opacity: 1;
    }

    100% {
        -webkit-transform: translate(0) scale(1);
        transform: translate(0) scale(1);
        opacity: 1;
    }
}

@keyframes tollbar-character-motion-03 {
    0% {
        -webkit-transform: translate(-70rem, 10rem) scale(0.1);
        transform: translate(-70rem, 10rem) scale(0.1);
        opacity: 1;
    }

    100% {
        -webkit-transform: translate(0) scale(1);
        transform: translate(0) scale(1);
        opacity: 1;
    }
}

.widget.toolbar {
    position: fixed;
    z-index: 16;
    top: 313rem;
    left: calc(100vw - 220rem);
    -webkit-animation: tollbar-motion-01 0.5s both;
    animation: tollbar-motion-01 0.5s both;
}

.widget.toolbar .widget-head {
    display: block;
    position: absolute;
    overflow: hidden;
    visibility: hidden;
    margin: -1px;
    padding: 0;
    width: 1px;
    height: 1px;
    line-height: 1px;
    font-size: 1px;
    border: 0;
    clip: rect(0 0 0 0);
    clip: rect(0, 0, 0, 0);
    pointer-events: none;
}

.widget.toolbar .widget-body {
    position: relative;
    z-index: 10;
    width: 90rem;
}

.widget.toolbar .widget-body::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-radius: 45rem;
    background-color: #4130df;
    -webkit-box-shadow: 0 12rem 20rem 6rem rgba(0, 0, 0, 0.2);
    box-shadow: 0 12rem 20rem 6rem rgba(0, 0, 0, 0.2);
}

.widget.toolbar .widget-body .data-list {
    position: relative;
    z-index: 10;
}

.widget.toolbar .widget-body .data-list .data-item {
    position: relative;
    padding: 16rem 0;
}

.widget.toolbar .widget-body .data-list .data-item + .data-item::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 60rem;
    height: 1rem;
    background-color: rgba(255, 255, 255, 0.2);
}

.widget.toolbar .widget-body .data-list .data-item .data-name {
    display: block;
    font-size: 14rem;
    line-height: 20rem;
    font-weight: 600;
    font-family: 'roboto','notokr', sans-serif;
    color: white;
    text-decoration: none;
    text-align: center;
}

.widget.toolbar .widget-body .data-list .data-item .data-name .wbr {
    display: block;
}

.widget.toolbar .widget-body .button-area {
    position: relative;
    z-index: 10;
}

.widget.toolbar .widget-body .button-area .btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 90rem;
    height: 60rem;
    font-size: 14rem;
    line-height: 20rem;
}

.widget.toolbar .widget-body .button-area .btn::before {
    content: "";
    display: block;
    position: relative;
    z-index: 1;
    width: 20rem;
    height: 20rem;
    background-repeat: no-repeat;
    background-position: 0 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' style='fill: rgba(255,255,255,1)'%3E%3Cpath d='M3.8,6.2L2,8l10,10L22,8l-1.8-1.8L12,14.5L3.8,6.2z'/%3E%3C/svg%3E");
    background-size: cover;
}

.widget.toolbar .widget-body .button-area .btn:not(.active) {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
}

.widget.toolbar .widget-body .button-area .btn:not(.active) .btn-text {
    display: block;
    position: absolute;
    overflow: hidden;
    visibility: hidden;
    margin: -1px;
    padding: 0;
    width: 1px;
    height: 1px;
    line-height: 1px;
    font-size: 1px;
    border: 0;
    clip: rect(0 0 0 0);
    clip: rect(0, 0, 0, 0);
    pointer-events: none;
}

.widget.toolbar .widget-body .button-area .btn.active {
    text-decoration: none;
}

.widget.toolbar .widget-body .button-area .btn.active::before {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.widget.toolbar .widget-body .button-area .btn.active .btn-text {
    display: block;
    margin-top: 4rem;
    width: 100%;
    text-align: center;
    font-size: 14rem;
    line-height: 20rem;
    font-weight: 600;
    font-family: 'roboto','notokr', sans-serif;
    color: white;
    text-align: center;
}

.widget.toolbar .widget-util {
    display: none;
    margin-bottom: 20rem;
}

.widget.toolbar .widget-util .button-area .btn.attr-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 90rem;
    height: 90rem;
    color: white;
    font-size: 14rem;
    line-height: 20rem;
    text-decoration: none;
    border-radius: 50%;
    -webkit-box-shadow: 0 12rem 20rem 6rem rgba(0, 0, 0, 0.2);
    box-shadow: 0 12rem 20rem 6rem rgba(0, 0, 0, 0.2);
    background-color: #989898;
}

.widget.toolbar .widget-util .button-area .btn.attr-top::before {
    content: "";
    display: block;
    position: relative;
    z-index: 1;
    width: 20rem;
    height: 20rem;
    background-repeat: no-repeat;
    background-position: 0 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' style='fill: rgba(255,255,255,1)'%3E%3Cpath d='M5,9l1.41,1.41L11,5.83V22H13V5.83l4.59,4.59L19,9l-7-7L5,9z'/%3E%3C/svg%3E");
    background-size: cover;
}

.widget.toolbar .widget-util .button-area .btn.attr-top .btn-text {
    display: block;
}

.widget.toolbar .widget-animations {
    position: absolute;
    top: calc(50% - 90rem);
    right: 0;
    left: 0;
    height: 180rem;
}

.widget.toolbar .widget-animations .animations-scene {
    position: absolute;
    left: 78rem;
    background-repeat: no-repeat;
    background-position: 0 0;
    background-size: cover;
}

.widget.toolbar .widget-animations .scene-00 {
    z-index: 10;
    top: 28rem;
    width: 23rem;
    height: 85rem;
    background-image: url(./../images/layout/widget_toolbar_character_00.png);
}

.widget.toolbar .widget-animations .scene-01 {
    top: 0;
    width: 90rem;
    height: 144rem;
    background-image: url(./../images/layout/widget_toolbar_character_01.png);
    -webkit-animation: tollbar-character-motion-01 0.5s 0.3s both;
    animation: tollbar-character-motion-01 0.5s 0.3s both;
}

.widget.toolbar .widget-animations .scene-02 {
    top: 98rem;
    width: 38rem;
    height: 52rem;
    background-image: url(./../images/layout/widget_toolbar_character_02.png);
    -webkit-animation: tollbar-character-motion-02 0.5s 0.5s both;
    animation: tollbar-character-motion-02 0.5s 0.5s both;
}

.widget.toolbar .widget-animations .scene-03 {
    top: 130rem;
    width: 54rem;
    height: 52rem;
    background-image: url(./../images/layout/widget_toolbar_character_03.png);
    -webkit-animation: tollbar-character-motion-03 0.5s 0.7s both;
    animation: tollbar-character-motion-03 0.5s 0.7s both;
}

.widget.toolbar:not(.active) .widget-body {
    padding-top: 36rem;
}

.widget.toolbar.active .widget-util {
    display: block;
}

.widget.toolbar.active .widget-body .data-list {
    display: none;
}

.widget.toolbar.active .widget-body .button-area .btn {
    height: 90rem;
}

body:not(.wedget-toolbar-onenter) .widget.toolbar .widget-util {
    display: none;
}

body:not(.wedget-toolbar-onenter) .widget.toolbar .widget-body {
    padding-bottom: 36rem;
}

body:not(.wedget-toolbar-onenter) .widget.toolbar .widget-body .button-area {
    display: none;
}

body.wedget-toolbar-onenter .widget.toolbar {
    -webkit-animation: tollbar-motion-02 0.5s both;
    animation: tollbar-motion-02 0.5s both;
    top: auto;
    bottom: 40rem;
}

body.wedget-toolbar-onenter .widget.toolbar .widget-body .widget-animations {
    display: none;
}

:root {
    font-size: 1px;
}

html,
body {
    height: 100%;
}

body {
    margin: 0;
    padding: 0;
    word-break: keep-all;
    font-size: 16rem;
    letter-spacing: -0.04em;
    font-family: 'roboto', 'notokr', Noto Sans KR, Apple SD Gothic Neo, dotum, 돋움, sans-serif;
    -webkit-text-size-adjust: none;
    overflow-y: scroll;
}

hr {
    display: none;
}

img {
    max-width: 100%;
}

#wrap {
    position: relative;
    overflow: hidden;
    width: initial;
    min-width: 1298rem;
    min-height: 100%;
    padding: 0 64rem;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

#page {
    position: relative;
    margin: 0 auto;
    width: 1170rem;
}

.page-skip .skip-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    z-index: 30;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 100vw;
    min-width: calc(100% + 128rem);
    top: -112rem;
    height: 112rem;
    color: white;
    font-size: 22rem;
    line-height: 32rem;
    background-color: rgba(0, 0, 0, 0.75);
}

.page-skip .skip-item:focus {
    top: 0;
}

/* page-head */
.page-head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    z-index: 20;
    height: 112rem;
    -webkit-box-shadow: 0 2rem 0 0 #dddddd;
    box-shadow: 0 2rem 0 0 #dddddd;
}

.page-head::before {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 100vw;
    min-width: calc(100% + 128rem);
    z-index: -1;
    top: 0;
    height: 100%;
    -webkit-box-shadow: 0 2rem 0 0 #dddddd;
    box-shadow: 0 2rem 0 0 #dddddd;
    background-color: white;
}

.page-head .page-title {
    margin: 0;
}

.page-head .page-title .page-name {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    height: 112rem;
    color: #333333;
}

.page-head .page-title .page-name::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-position: 0 center;
}

.page-head .page-title .page-name .wbr:first-child {
    font-size: 20rem;
    line-height: 30rem;
}

.page-head .page-title .page-name .wbr:not(:first-child) {
    font-size: 14rem;
    line-height: 20rem;
}

.page-head .page-title .page-name .wbr {
    display: block;
    -webkit-animation-name: text-fadein;
    animation-name: text-fadein;
    -webkit-animation-duration: 6s;
    animation-duration: 6s;
}

.page-head .page-title.skbd ~ .page-navi {
    margin:0 60rem;
}

.page-head .page-title.skbd .page-name {
    width: 175rem;
}

.page-head .page-title.skbd .page-name::after {
    background-image: url("./../images/layout/header_logo_skbd.png");
}

.page-head .page-title.btvc ~ .page-navi {
    margin: 0 96rem;
}

.page-head .page-title.btvc .page-name {
    width: 130rem;
}

.page-head .page-title.btvc .page-name::after {
    background-image: url("./../images/layout/header_logo_btvc.png");
}

.page-head .page-navi {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.page-head .page-navi .section-head {
    display: block;
    position: absolute;
    overflow: hidden;
    visibility: hidden;
    margin: -1px;
    padding: 0;
    width: 1px;
    height: 1px;
    line-height: 1px;
    font-size: 1px;
    border: 0;
    clip: rect(0 0 0 0);
    clip: rect(0, 0, 0, 0);
    pointer-events: none;
}

.page-head .page-navi .section-body .gnb-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 0;
    padding: 0;
}

.page-head .page-navi .section-body .gnb-list .gnb-item {
    position: relative;
    list-style: none;
}

.page-head .page-navi .section-body .gnb-list .gnb-item .gnb-name {
    display: block;
    color: #333333;
    text-decoration: none;
    font-size: 20rem;
    line-height: 30rem;
    font-weight: 600;
    font-family: 'roboto','notokr', sans-serif;
}

.page-head .page-navi .section-body .gnb-list .gnb-item.active .gnb-name, .page-head .page-navi .section-body .gnb-list .gnb-item.current .gnb-name {
    color: #4130df;
}

.page-head .page-navi .section-body .gnb-list .gnb-item .tooltip {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    -webkit-transform: translate(50%, -100%);
    -ms-transform: translate(50%, -100%);
    transform: translate(50%, -100%);
    border-top-right-radius: 9rem;
    border-top-left-radius: 9rem;
    border-bottom-right-radius: 9rem;
    background-color: #ff0000;
}

.page-head .page-navi .section-body .gnb-list .gnb-item .tooltip .tooltip-area {
    display: block;
}

.page-head .page-navi .section-body .gnb-list .gnb-item .tooltip .tooltip-area .tooltip-body {
    display: block;
    padding: 0 8rem;
    font-size: 12rem;
    line-height: 18rem;
    font-weight: 600;
    font-family: 'roboto','notokr', sans-serif;
    color: white;
    letter-spacing: 0em;
}

.snb-item .tooltip {
    border-top-right-radius: 9rem;
    border-top-left-radius: 9rem;
    border-bottom-right-radius: 9rem;
    background-color: #ff0000;
    height: 17px;
    line-height: 14px;
    margin: 0 5px 0 10px;
    transform: translate(0, -12%);
    -webkit-transform: translate(0, -12%);
    -ms-transform: translate(0, -12%);
}

.snb-item .tooltip .tooltip-area {
}

.snb-item .tooltip .tooltip-area .tooltip-body {
    display: inline-block;
    padding: 0 8rem;
    font-size: 12rem;
    line-height: 8px;
    font-weight: 600;
    font-family: 'roboto','notokr', sans-serif;
    color: white;
    letter-spacing: 0em;
    height: 20px;
}

.page-head .page-side {
    position: absolute;
    z-index: 50;
    top: 100%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 100vw;
    min-width: calc(100% + 128rem);
    max-height: 0;
    overflow: hidden;
    visibility: hidden;
    -webkit-box-shadow: inset 0 2rem 0 0 #dddddd;
    box-shadow: inset 0 2rem 0 0 #dddddd;
    background-color: white;
    -webkit-transition: max-height 0.25s ease-out, visibility 0.25s ease-out;
    -o-transition: max-height 0.25s ease-out, visibility 0.25s ease-out;
    transition: max-height 0.25s ease-out, visibility 0.25s ease-out;
}

body #wrap::after {
    content: "";
    display: block;
    position: absolute;
    z-index: 10;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    -webkit-box-shadow: inset 0 1rem 0 0 #bbbbbb;
    box-shadow: inset 0 1rem 0 0 #bbbbbb;
    background-color: black;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: opacity 0.25s ease-out, visibility 0.25s ease-out;
    -o-transition: opacity 0.25s ease-out, visibility 0.25s ease-out;
    transition: opacity 0.25s ease-out, visibility 0.25s ease-out;
}

html.active-page-side body {
    overflow: hidden;
}

html.active-page-side body .page-side {
    max-height: 540rem;
    visibility: visible;
    -webkit-transition: max-height 0.25s ease-in, visibility 0.25s ease-in;
    -o-transition: max-height 0.25s ease-in, visibility 0.25s ease-in;
    transition: max-height 0.25s ease-in, visibility 0.25s ease-in;
}

html.active-page-side body #wrap {
    overflow-y: scroll;
}

html.active-page-side body #wrap::after {
    opacity: 0.6;
    visibility: visible;
    -webkit-transition: opacity 0.25s ease-in, visibility 0.25s ease-in;
    -o-transition: opacity 0.25s ease-in, visibility 0.25s ease-in;
    transition: opacity 0.25s ease-in, visibility 0.25s ease-in;
}

.page-head .page-side .section-head {
    display: block;
    position: absolute;
    overflow: hidden;
    visibility: hidden;
    margin: -1px;
    padding: 0;
    width: 1px;
    height: 1px;
    line-height: 1px;
    font-size: 1px;
    border: 0;
    clip: rect(0 0 0 0);
    clip: rect(0, 0, 0, 0);
    pointer-events: none;
}

.page-head .page-side .section-body {
    position: relative;
    width: 1170rem;
    margin: 0 auto;
    height: 350rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.page-head .page-side .section-body .lnb-list {
    margin: 0;
    padding: 48rem 0;
}

.page-head .page-side .section-body .lnb-list::after {
    content: "";
    display: block;
    clear: both;
}

.page-head .page-side .section-body .lnb-list .lnb-item {
    display: none;
    list-style: none;
}

.page-head .page-side .section-body .lnb-list .lnb-item.current, .page-head .page-side .section-body .lnb-list .lnb-item.active {
    display: block;
}

.page-head .page-side .section-body .lnb-list .lnb-item .lnb-name {
    display: inline-block;
    vertical-align: top;
    color: #333333;
    text-decoration: none;
    font-size: 24rem;
    line-height: 32rem;
    font-weight: 600;
    font-family: 'roboto','notokr', sans-serif;
}

.page-head .page-side .section-body .lnb-list .lnb-item .snb-list {
    position: relative;
    margin: 24rem 0 0 0;
    padding: 0;
}

.page-head .page-side .section-body .lnb-list .lnb-item .snb-list .snb-item {
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 18rem;
    line-height: 28rem;
}

.page-head .page-side .section-body .lnb-list .lnb-item .snb-list .snb-item::after {
    content: "";
    display: block;
    width: 1.5em;
    height: 1.5em;
    margin-left: 3em;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 60% 60%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' style='fill: rgba(187,187,187,1)'%3E%3Cpath d='M6.2,20.2L8,22l10-10L8,2L6.2,3.8l8.2,8.2L6.2,20.2z'/%3E%3C/svg%3E");
}

.page-head .page-side .section-body .lnb-list .lnb-item .snb-list .snb-item + .snb-item {
    margin-top: 12rem;
}

.page-head .page-side .section-body .lnb-list .lnb-item .snb-list .snb-item .snb-name {
    display: block;
    color: #666666;
}

.page-head .page-side .section-body .lnb-list .lnb-item .snb-list .snb-item .snb-name:not(:hover) {
    text-decoration: none;
}

.page-head .page-side .section-body .lnb-list .lnb-item .snb-list .snb-item .snb-name:hover {
    text-decoration: underline;
}

.page-head .page-side .section-body .lnb-list .lnb-item .snb-list .snb-item.current .snb-name {
    color: #4130df;
    font-weight: 600;
}

.page-head .page-side .section-body .lnb-list .lnb-item .snb-list .snb-item.current::after {
    content: "";
    display: block;
    width: 1.5em;
    height: 1.5em;
    margin-left: 3em;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 60% 60%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' style='fill: rgba(65,48,223,1)'%3E%3Cpath d='M6.2,20.2L8,22l10-10L8,2L6.2,3.8l8.2,8.2L6.2,20.2z'/%3E%3C/svg%3E");
}

.page-head .page-side .section-body .subsection {
    padding-left: 50rem;
    width: 535rem;
    border-left: 1rem solid #eeecea;
}

.page-head .page-side .section-body .subsection .subsection-head {
    display: block;
    position: absolute;
    overflow: hidden;
    visibility: hidden;
    margin: -1px;
    padding: 0;
    width: 1px;
    height: 1px;
    line-height: 1px;
    font-size: 1px;
    border: 0;
    clip: rect(0 0 0 0);
    clip: rect(0, 0, 0, 0);
    pointer-events: none;
}

.page-head .page-side .section-body .subsection .subsection-body {
    padding: 42rem 0;
}

.page-head .page-side .section-body .subsection .subsection-body .submit-form {
    width: 485rem;
}

.page-head .page-side .section-body .subsection .subsection-body .submit-form .option-select .option-head .option-name .form.checkbox {
    font-size: 16rem;
    line-height: 24rem;
}

.page-head .page-side .section-body .subsection .subsection-body .submit-form .option-select .option-head .option-name .form.checkbox .form-text {
    text-decoration: underline;
}

.page-head .page-side .section-body .subsection .subsection-body .submit-form .option-select .option-util {
    margin-left: 20rem;
}

.page-head .page-side .section-body .subsection .subsection-body .submit-form .form-list ~ .button-area {
    margin-top: 24rem;
}

.page-head .page-util {
    position: relative;
}

.page-head .page-util .section-head {
    display: block;
    position: absolute;
    overflow: hidden;
    visibility: hidden;
    margin: -1px;
    padding: 0;
    width: 1px;
    height: 1px;
    line-height: 1px;
    font-size: 1px;
    border: 0;
    clip: rect(0 0 0 0);
    clip: rect(0, 0, 0, 0);
    pointer-events: none;
}

.page-head .page-util .section-body .em {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0;
    padding: 0 30rem;
    height: 44rem;
    font-size: 20rem;
    line-height: 30rem;
    color: #4130df;
    font-weight: 700;
    border: 2rem solid #4130df;
    border-radius: 10em;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.page-head .page-util .section-body .em::before {
    content: "";
    display: block;
    margin-right: 10rem;
    width: 24rem;
    height: 24rem;
    background-repeat: no-repeat;
    background-position: center center;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' style='fill: rgba(255,127,0,1)'%3E%3Cpath d='M19.81,17.74a1.41,1.41,0,0,1-.17,2c-.45.46-.93.89-1.36,1.37A2.64,2.64,0,0,1,16,22a9.32,9.32,0,0,1-3.65-1.06,19.78,19.78,0,0,1-6.58-5.15,17.88,17.88,0,0,1-3.22-5.34,6.91,6.91,0,0,1-.53-3,2.36,2.36,0,0,1,.76-1.63c.51-.49,1-1,1.49-1.49l.12-.12a1.42,1.42,0,0,1,2,.12l1.21,1.2L8.76,6.7A1.7,1.7,0,0,1,9,6.89a1.41,1.41,0,0,1-.19,2c-.49.49-1,1-1.47,1.47a.31.31,0,0,0-.08.39,8.59,8.59,0,0,0,1.34,2.13,15.17,15.17,0,0,0,3.72,3.38c.3.19.65.33,1,.51h0a.29.29,0,0,0,.41-.08l1.48-1.48a1,1,0,0,1,.15-.14,1.4,1.4,0,0,1,2,.14l2.39,2.38C19.71,17.63,19.76,17.69,19.81,17.74Zm-3.41-6,1.48-.25a6.65,6.65,0,0,0-5.62-5.46l-.21,1.49A5.15,5.15,0,0,1,16.4,11.76Zm2.52-6.64A11,11,0,0,0,12.65,2l-.21,1.49a9.53,9.53,0,0,1,8.08,7.81L22,11.05A11,11,0,0,0,18.92,5.12Z'/%3E%3C/svg%3E");
}

/* page-body */
.page-body {
    position: relative;
    z-index: 10;
}

.page-body .local-path {
    position: relative;
    -webkit-box-shadow: inset 0 -2rem 0 0 #eeecea;
    box-shadow: inset 0 -2rem 0 0 #eeecea;
}

.page-body .local-path::before {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 100vw;
    min-width: calc(100% + 128rem);
    bottom: 0;
    height: 2rem;
    background-color: #eeecea;
}

.page-body .local-path .data-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0;
    height: 62rem;
}

.page-body .local-path .data-list .data-flow {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0 4rem;
}

.page-body .local-path .data-list .data-flow svg {
    display: block;
    fill: #999999;
}

.page-body .local-path .data-list .data-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #333333;
    font-size: 18rem;
    line-height: 28rem;
    font-weight: 300;
    font-family: 'roboto','notokr', sans-serif;
}

.page-body .local-path .data-list .data-item svg {
    display: block;
    fill: #333333;
}

.page-body .local-path .data-list a.data-item:not(:hover) {
    text-decoration: none;
}

.page-body .local-path .data-list a.data-item:hover {
    text-decoration: underline;
}

.page-body .local-path .data-list .data-item.current {
    font-weight: 600;
    font-family: 'roboto','notokr', sans-serif;
}

/* page-foot */
.page-foot {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: relative;
    margin: 0 auto;
    padding: 0 0 50rem 0;
    width: 1170rem;
    min-width: inherit;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    /* border-top: 1rem solid #dddddd; */ 
}

/* .page-foot::before {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 100vw;
    min-width: calc(100% + 128rem);
    top: -1rem;
    height: 1rem;
    background-color: #dddddd;
} */

.page-foot .info-board {
    margin-bottom: 48rem;
    position: relative;
    height: 206rem;
    width: 100%;
}

.page-foot .info-board:before {
    content: '';
    position: absolute;
    width: 100vw;
    height: 100%;
    left: 50%;
    background-color: #555555;
    z-index: -10;
    min-width: calc(100% + 128rem);
    transform: translateX(-50%);
}

.page-foot .info-board .board-list {
    display: flex;
    justify-content: center;
    padding: 30rem 0;
}

.page-foot .info-board .board-list .board-item {
    flex: 1 1 100%;
    display: flex;
}

.page-foot .info-board .board-list .board-item:last-child::before {
    content: '';
    display: block;
    width: 1rem;
    height: 100%;
    background-color: #fff;
    opacity: 0.2;
    margin-right: 74rem;
}

.page-foot .info-board .board-list .board-item .board-wrap {
    width: 100%;
}

.page-foot .info-board .board-list .board-item .board-wrap .board-head {
    color: #fff;
}

.page-foot .info-board .board-list .board-item .board-wrap .board-head .head-list {
    display: flex;
    gap: 10rem;
}

.page-foot .info-board .board-list .board-item .board-wrap .board-head .head-list .head-item {
    flex: 1 1 100%;
}

.page-foot .info-board .board-list .board-item .board-wrap .board-head .board-subject {
    font-weight: 500;
    font-size: 20rem;
}

.page-foot .info-board .board-list .board-item .board-wrap .board-head .board-summary {
    font-size: 15rem;
    font-weight: 200;
    opacity: 0.5;
    margin-top: 2rem;
}

.page-foot .info-board .board-body .button-area {
    margin-top: 20rem;
    height: 75rem;
    display: flex;
}

.page-foot .info-board .board-body .button-area .btn + .btn {
    margin-left: 10rem;
}

.page-foot .info-board .board-body .button-area .btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-basis: 250rem;
    flex-shrink: 0;
    border: 1rem solid rgba(255, 255, 255, 0.2);
    color: #fff;
    line-height: 17rem;
}

.page-foot .info-board .board-body .button-area .btn.disabled {
    pointer-events: none;
}

.page-foot .info-board .board-body .button-area .btn .btn-caption {
    opacity: 0.5;
    font-size: 15rem;
    font-weight: 200;
}

.page-foot .info-board .board-body .button-area .btn .btn-title {
    font-weight: 700;
    font-size: 20rem;
    margin-top: 6rem;
    display: flex;
}

.page-foot .info-board .board-body .button-area .btn:first-child .btn-title::before {
    content: '';
    display: block;
    width: 16rem;
    height: 16rem;
    background: url(./../../assets/images/direct_main/call.png) no-repeat center;
    background-size: 16rem 16rem;
    margin-right: 2rem;
}

/* .page-foot .company-name {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    margin: 0;
    width: 186rem;
    height: 60rem;
} */

/* .page-foot .company-name::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: url("./../../assets/images/layout/footer_logo.png");
} */

.page-foot .section.site-policy {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    /* margin-top: 38rem; */
}

.page-foot .section.site-policy .section-head {
    display: block;
    position: absolute;
    overflow: hidden;
    visibility: hidden;
    margin: -1px;
    padding: 0;
    width: 1px;
    height: 1px;
    line-height: 1px;
    font-size: 1px;
    border: 0;
    clip: rect(0 0 0 0);
    clip: rect(0, 0, 0, 0);
    pointer-events: none;
}

.page-foot .section.site-policy .section-body .navi-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0;
    padding: 0;
}

.page-foot .section.site-policy .section-body .navi-list .navi-item {
    list-style: none;
}

.page-foot .section.site-policy .section-body .navi-list .navi-item + .navi-item {
    position: relative;
    margin-left: 14rem;
    padding-left: 16rem;
}

.page-foot .section.site-policy .section-body .navi-list .navi-item + .navi-item::before {
    content: "";
    display: block;
    position: absolute;
    top: 8rem;
    left: 0;
    width: 2rem;
    height: 10rem;
    background-color: #c1c1c1;
}

.page-foot .section.site-policy .section-body .navi-list .navi-item .navi-name {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 16rem;
    line-height: 24rem;
    color: #999999;
}

.page-foot .section.site-policy .section-body .navi-list .navi-item .navi-name:not(:hover) {
    text-decoration: none;
}

.page-foot .section.site-policy .section-body .navi-list .navi-item .navi-name .em {
    text-decoration: inherit;
}

.page-foot .section.customer-service {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
    position: absolute;
    top: calc(206rem + 38rem);
    right: 0;
}

.page-foot .section.customer-service .section-head {
    display: block;
    position: absolute;
    overflow: hidden;
    visibility: hidden;
    margin: -1px;
    padding: 0;
    width: 1px;
    height: 1px;
    line-height: 1px;
    font-size: 1px;
    border: 0;
    clip: rect(0 0 0 0);
    clip: rect(0, 0, 0, 0);
    pointer-events: none;
}

.page-foot .section.customer-service .section-body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.page-foot .section.customer-service .section-body .button-area {
    display: flex;
}

.page-foot .section.customer-service .section-body .button-area .btn + .btn {
    margin-left: 10rem;
}

.page-foot .section.customer-service .section-body .button-area .btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 44rem;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 15rem;
    color: white;
    font-size: 16rem;
    line-height: 26rem;
    background-color: #555;
}

.page-foot .section.company-info {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
    margin-top: 30rem;
}

.page-foot .section.company-info .section-head {
    display: block;
    position: absolute;
    overflow: hidden;
    visibility: hidden;
    margin: -1px;
    padding: 0;
    width: 1px;
    height: 1px;
    line-height: 1px;
    font-size: 1px;
    border: 0;
    clip: rect(0 0 0 0);
    clip: rect(0, 0, 0, 0);
    pointer-events: none;
}

.page-foot .section.company-info .section-body .data-list {
    margin: 0;
    padding: 0;
}

.page-foot .section.company-info .section-body .data-list:after {
    content: "";
    display: block;
    clear: both;
}

.page-foot .section.company-info .section-body .data-list .data-item {
    list-style: none;
    float: left;
    font-size: 16rem;
    line-height: 24rem;
    color: #999999;
}

.page-foot .section.company-info .section-body .data-list .data-item + .data-item:not(.examined, .consulting) {
    position: relative;
    margin: 0 0 0 10rem;
    padding: 0 0 0 12rem;
}

.page-foot .section.company-info .section-body .data-list .data-item + .data-item:not(.examined, .consulting)::before {
    content: "";
    display: block;
    position: absolute;
    top: 8rem;
    left: 0;
    width: 2rem;
    height: 10rem;
    background-color: #c1c1c1;
}

.page-foot .section.company-info .section-body .data-list .data-item.examined {
    width: 100%;
}

.page-foot .section.family-site {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
    position: absolute;
    right: 0;
    bottom: 56rem;
    min-width: 292rem;
}

.page-foot .section.family-site .section-head {
    position: relative;
}

.page-foot .section.family-site .section-head .section-title {
    margin: 0;
    font-size: 16rem;
    line-height: 24rem;
    font-weight: 400;
}

.page-foot .section.family-site .section-head .section-title .section-name {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    z-index: 1;
    padding: 0 40rem 0 30rem;
    height: 44rem;
    color: #bbbbbb;
    text-decoration: none;
    border: 1rem solid #bbbbbb;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.page-foot .section.family-site .section-head .section-title .section-name::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: 20rem;
    width: 24rem;
    height: 24rem;
    -webkit-transform: translateY(-50%) rotate(180deg);
    -ms-transform: translateY(-50%) rotate(180deg);
    transform: translateY(-50%) rotate(180deg);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' style='fill: rgba(153,153,153,1)'%3E%3Cpath d='M15.89,9.45a.77.77,0,0,0-.66-1.16H8.77a.77.77,0,0,0-.66,1.16l3.24,5.89a.76.76,0,0,0,1.3,0Z'/%3E%3C/svg%3E");
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: center center;
}

.page-foot .section.family-site .section-body {
    position: absolute;
    right: 0;
    left: 0;
    bottom: calc(100% - 1rem);
    overflow: hidden;
    max-height: 0;
    -webkit-transition: max-height 0.25s cubic-bezier(0.2, 0, 0, 1);
    -o-transition: max-height 0.25s cubic-bezier(0.2, 0, 0, 1);
    transition: max-height 0.25s cubic-bezier(0.2, 0, 0, 1);
    background-color: #fff;
}

.page-foot .section.family-site .section-body .navi-list {
    margin: 0;
    padding: 20rem 30rem;
    border: 1rem solid #bbbbbb;
}

.page-foot .section.family-site .section-body .navi-list .navi-item {
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 16rem;
    line-height: 24rem;
}

.page-foot .section.family-site .section-body .navi-list .navi-item + .navi-item {
    margin-top: 10rem;
}

.page-foot .section.family-site .section-body .navi-list .navi-item .navi-name {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    color: #bbbbbb;
    text-decoration: none;
}

.page-foot .section.family-site.active .section-body {
    max-height: 100vh;
    -webkit-transition: max-height 0.25s ease-in;
    -o-transition: max-height 0.25s ease-in;
    transition: max-height 0.25s ease-in;
}

.page-foot .section.family-site.active .section-head .section-name.active::after {
    -webkit-transform: translateY(-50%) rotate(0deg);
    -ms-transform: translateY(-50%) rotate(0deg);
    transform: translateY(-50%) rotate(0deg);
}

.page-foot .section.awards {
    -webkit-box-ordinal-group: 8;
    -ms-flex-order: 7;
    order: 7;
    margin-top: 52rem;
}

.page-foot .section.awards .section-head {
    display: block;
    position: absolute;
    overflow: hidden;
    visibility: hidden;
    margin: -1px;
    padding: 0;
    width: 1px;
    height: 1px;
    line-height: 1px;
    font-size: 1px;
    border: 0;
    clip: rect(0 0 0 0);
    clip: rect(0, 0, 0, 0);
    pointer-events: none;
}

.page-foot .section.awards .section-body .data-list {
    margin: 0;
    padding: 0;
}

.page-foot .section.awards .section-body .data-list:after {
    content: "";
    display: block;
    clear: both;
}

.page-foot .section.awards .section-body .data-list .data-item {
    list-style: none;
    float: left;
    font-size: 10rem;
    line-height: 12rem;
    letter-spacing: -0.03em;
}

.page-foot .section.awards .section-body .data-list .data-item + .data-item {
    margin-left: 30rem;
}

.page-foot .section.awards .section-body .data-list .data-item .data-name {
    display: block;
    position: relative;
    color: #999999;
    text-decoration: none;
}

.page-foot .section.awards .section-body .data-list .data-item .data-name:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    height: 35rem;
    background-image: url("./../../assets/images/layout/footer_awards.png");
    background-repeat: no-repeat;
}

.page-foot .section.awards .section-body .data-list .data-item .data-name .wbr {
    display: block;
}

.page-foot .section.awards .section-body .data-list .data-item.ncsi .data-name {
    padding-left: 64rem;
}

.page-foot .section.awards .section-body .data-list .data-item.ncsi .data-name:before {
    width: 56rem;
    background-position: 0 0rem;
}

.page-foot .section.awards .section-body .data-list .data-item.kssqi .data-name {
    padding-left: 59rem;
}

.page-foot .section.awards .section-body .data-list .data-item.kssqi .data-name:before {
    width: 51rem;
    background-position: 0 -35rem;
}

.page-foot .section.awards .section-body .data-list .data-item.kcc .data-name {
    padding-left: 43rem;
}

.page-foot .section.awards .section-body .data-list .data-item.kcc .data-name:before {
    width: 35rem;
    background-position: 0 -70rem;
}

.page-foot .copyright {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6;
    font-size: 16rem;
    line-height: 24rem;
    margin: 20rem 0 0 0;
    color: #999999;
    text-transform: uppercase;
}