@charset "utf-8";

html,
body {
    -webkit-overflow-scrolling: touch;
}

body {
    font-size: 13px;
    font-family: AppleSDGothicNeo, 'Spoqa Han Sans', 'Malgun Gothic', sans-serif;
    -webkit-font-smoothing: antialiased;
}

@media screen and (min-width: 1024px) {
    body {
        font-size: 18px;
    }
}

a {
    text-decoration: none;
    color: #000;
}

img {
    width: 100%;
    vertical-align: top;
}

@media screen and (min-width: 1024px) {
    .show-mobile {
        display: none;
    }
}

.show-pc {
    display: none;
}

@media screen and (min-width: 1024px) {
    .show-pc {
        display: block;
    }
}

@media screen and (min-width: 1024px) {
    .linebreak-mobile {
        display: none;
    }
}

.linebreak-pc {
    display: none;
}

@media screen and (min-width: 1024px) {
    .linebreak-pc {
        display: inline;
    }
}

/*
.contents p {
    margin-bottom: 30px;
}
*/

.pull-left {
    float: left;
}

.pull-right {
    float: right;
}

.clearfix:before {
    content: '';
    display: table;
}

.clearfix:after {
    content: '';
    display: table;
    clear: both;
}

.invisible {
    position: absolute;
    top: auto;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    font-size: 0;
}

.title {
    margin-bottom: 20px;
    font-size: 25px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.4;
    word-break: keep-all;
}





.hidden-title {
    display: none;
}

.title-topic {
    display: block;
    margin-bottom: 20px;
    font-size: 11px;
    font-weight: 400;
    /*font-family: AppleSDGothicNeo, 'Titillium Web', 'NanumSquare', 'Malgun Gothic', sans-serif;*/
    letter-spacing: 0;
    line-height: 1;
    text-transform: uppercase;

}

@media screen and (min-width: 1024px) {
    .title-topic {
        margin-bottom: 40px;
        font-size: 16px;
    }
}

.subtitle {
    margin-top: 50px;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1.4;
    word-break: keep-all;
}

.contents .headline .subtitle {
    margin-top: 30px;
    margin-bottom: 20px;
    font-size: 20px;
}

@media screen and (min-width: 1024px) {

    .contents .headline .subtitle,
    .subtitle {
        margin-top: 100px;
        margin-bottom: 30px;
        font-size: 20px;
    }

    .contents .headline .subtitle {
        margin-top: 70px;
        font-size: 30px;
        font-weight: 800;
    }

}

.title+.subtitle {
    margin-top: 0;
}

.contents .headline p {
    line-height: 1.8;
}

.has-background {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 50%;
}

.font-white {
    color: #fff;
}

@media screen and (min-width: 1024px) {
    .columns-contents {
        display: flex;
        justify-content: space-around;
    }

    .columns-contents>* {
        width: 50%;
        padding-left: 20px;
        padding-right: 20px;
        box-sizing: border-box;
    }

    .columns-contents>*:first-child {
        padding-left: 0;
    }

    .columns-contents>*:last-child {
        padding-right: 0;
    }
}

.tab-nav {
    display: none;
    overflow: hidden;
    margin-top: 50px;
    margin-bottom: 25px;
}

.tab-nav li {
    float: left;
    width: 50%;
}

.tab-nav a {
    display: block;
    line-height: 1;
    padding: 10px 0;
    font-size: 18px;
    font-weight: 700;
    color: #bfbfbf;
    border-bottom: 2px solid #d4d4d4;
}

.tab-nav .active a {
    border-color: #000;
    color: #000;
}

.tab-content {
    margin-top: 50px;
}

.tab-content>div {
    display: none;
}

@media screen and (min-width: 1024px) {
    .tab-nav {
        width: 300px;
        margin-top: 20px;
        margin-bottom: 30px;
    }

    .tab-nav a {
        padding: 20px 0;
        font-size: 20px;
        border-bottom: 3px solid #b7b7b7;
    }
}

.text-menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.contents-inner.headline .text-menu {
    margin-bottom: 80px;
}

.text-menu li {
    padding-right: 20px;
    /* margin-bottom: 10px; */
}

.text-menu li:last-child {
    padding-right: 0;
}

.text-menu a {
    display: inline-block;
    font-weight: 700;
    font-size: 14px;
    color: #bfbfbf;
}

.text-menu .actived a {
    color: #000;
}

@media screen and (min-width: 1024px) {
    .text-menu li {
        padding-right: 25px;
    }

    .text-menu a {
        font-size: 20px;
    }
}

/*button*/
.btn {
    background-color: #000;
    color: #fff;
}

/* input */
.input-file {
    position: relative;
}

.input-file input[type="file"] {
    display: none;
}

.input-file label {
    position: absolute;
    right: -7px;
    top: 0;
    width: 63px;
    line-height: 30px;
    background-color: #4c4c4c;
    color: #fff;
    text-align: center;
    font-size: 11px;
}

.input-file .list {
    min-height: 30px;
    box-sizing: border-box;
    width: 195px;
}

.input-file .list>div {
    height: 30px;
    line-height: 30px;
    padding-left: 10px;
    color: #7d7d7d;
}

@media screen and (max-width: 320px) {
    .input-file .list>div {
        padding-left: 0;
    }
}

input::placeholder {
    font-size: 11px;
    padding-top: 5px;
    color: #7d7d7d;
}

textarea::placeholder {
    font-size: 11px;
    color: #7d7d7d;
}

.input-wrap input[type="text"] {
    width: 100%;
    font-size: 14px;
    border: 1px solid #d4d4d4;
    color: #000;
    padding: 0px 15px;
    box-sizing: border-box;
    height: 42px;
    margin-bottom: 10px;
    background-color: #fff;
}

.input-wrap input[type="text"]:last-child {
    margin-bottom: 0;
}

.text-wrap {
    font-size: 0;
}

textarea {
    padding: 15px;
    border: 1px solid #d4d4d4;
    resize: none;
    width: 100%;
    box-sizing: border-box;
    min-height: 175px;
    font-size: 14px;
    color: #000;
}

.file-wrap {
    height: 50px;
    padding: 10px 15px;
    box-sizing: border-box;
    border-bottom: 1px solid #d4d4d4;
}

@media screen and (max-width: 320px) {
    .file-wrap {
        height: auto;
        padding-left: 0;
        padding-right: 0;
    }
}

.file-wrap>span {
    display: inline-block;
    vertical-align: middle;
    font-size: 11px;
}

.input-file {
    display: inline-block;
    vertical-align: middle;
    font-size: 11px;
}

.btn-wrap .btn {
    display: block;
    width: 100%;
    height: 48px;
    line-height: 48px;
    text-align: center;
    background-color: #000;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
}

input,
textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0;
}

/*selectbox*/
.ui-select {
    display: inline-block;
    position: relative;
    z-index: 1;
    font-size: 11px;
    width: 100%;
    height: 43px;
    vertical-align: top;
    margin-bottom: 10px;
}

.ui-select.active {
    z-index: 2;
}

.ui-select.active>ul {
    visibility: visible;
}

.ui-select>button {
    width: 100%;
    background: #fff;
    border: 1px solid #d4d4d4;
    height: 43px;
    font-size: 11px;
    color: #000;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 15px;
    text-align: left;
    position: relative;
}

.ui-select>button:after {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    right: 10px;
    width: 7px;
    height: 4px;
    transform: translateY(-50%);
    background: url('/ko/images/m-sprite.png') no-repeat -50px 0;
    background-size: 300px auto;
}

.ui-select>ul {
    visibility: hidden;
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    border: 1px solid #ccc;
    border-top: 0;
    box-sizing: border-box;
    overflow-y: auto;
    background-color: #fff;
}

.ui-select>ul>li {
    cursor: default;
    border-bottom: 1px solid #d4d4d4;
    height: 43px;
    line-height: 43px;
    font-size: 11px;
    padding: 0 15px;
}

.ui-select>ul>li.active {
    background-color: #ccc;
}

.ui-select>ul>li:last-child {
    border-bottom: 0;
}

.ui-select>ul.above {
    top: auto !important;
    bottom: 100%;
    border-bottom: 0
}

.ui-select>ul.above>li {
    border-bottom: 0;
    border-top: 1px solid #ccc;
}

.ui-select.disabled:before {
    content: "비 활성화된 항목입니다";
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px)
}

.ui-select.disabled>button {
    background-color: #ccc;
    color: #444;
}

.ui-select.variable {
    width: auto;
}

.ui-select.variable>ul {
    width: auto;
    white-space: nowrap
}

.ui-select select {
    position: absolute;
    visibility: hidden;
}

/* checkbox */
.checkbox {
    display: block;
    cursor: pointer;
    line-height: 1;
    margin: 25px 0;
}

.checkbox.inline {
    display: inline-block;
}

.checkbox>span {
    position: relative;
    display: inline-block;
    padding-left: 20px;
    color: #7d7d7d;
    font-size: 11px;
}

input[type='checkbox'] {
    opacity: 0;
    border: 0;
    background: none;
    zoom: 1;
}

.checkbox>span:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 12px;
    height: 12px;
    background: url('/ko/images/m-sprite.png') no-repeat 0 -10px;
    background-size: 300px auto;
}

.checkbox>input[type='checkbox']:checked+span {
    color: #000;
}

.checkbox>input[type='checkbox']:checked+span:before {
    background-position: -15px -10px;
}

/* layerPop */
.ui-popup {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.5);
    text-align: center;
    white-space: nowrap;
    font-size: 0;
}

.ui-popup.on {
    display: block;
}

.ui-popup:before {
    content: "";
    display: inline-block;
    height: 100%;
    vertical-align: middle;
}

.ui-popup .content {
    width: 100%;
    display: inline-block;
    position: relative;
    /*overflow:hidden;*/
    background-color: #fff;
    text-align: left;
    vertical-align: middle;
    white-space: initial
}

.ui-popup .body {
    padding: 40px 25px 25px 25px;
    box-sizing: border-box;
    -webkit-overflow-scrolling: touch;
    word-break: break-all;
    overflow-x: hidden;
    overflow-y: auto;
    font-size: 13px;
    color: #000;
    position: relative;
}

.ui-popup .body p {
    line-height: 23px;
}

.ui-popup .cls {
    position: absolute;
    right: 25px;
    top: 40px;
    width: 16px;
    height: 16px;
    background: url('/ko/images/m-sprite.png') no-repeat -30px 0;
    background-size: 300px auto;
    border: 0;
}

@media screen and (min-width: 1024px) {
    button {
        cursor: pointer;
    }

    input::placeholder {
        font-size: 16px;
        color: #7d7d7d;
        line-height: 68px;
    }

    textarea::placeholder {
        font-size: 16px;
        color: #7d7d7d;
    }

    .checkbox {
        font-size: 16px;
        margin-bottom: 50px;
        margin-top: 10px;
    }

    .checkbox>span {
        font-size: 16px;
        padding-left: 34px;
    }

    .checkbox>span:before {
        content: '';
        position: absolute;
        top: -3px;
        left: 0;
        width: 25px;
        height: 24px;
        background: url('/ko/images/pc-sprite.png') no-repeat 0 -10px;
    }

    .checkbox>input[type='checkbox']:checked+span:before {
        background-position: -30px -10px;
    }

    .input-file label {
        width: 96px;
        height: 40px;
        font-size: 16px;
        line-height: 40px;
        right: 0;
    }

    .input-file .list {
        width: 85%;
    }

    .input-file .list>div {
        height: 40px;
        line-height: 40px;
        padding-left: 30px;
    }

    .input-wrap {
        font-size: 0;
    }

    .input-wrap input[type="text"] {
        display: inline-block;
        width: calc(50% - 5px);
        margin-left: 10px;
        font-size: 20px;
        color: #000;
        padding: 0 25px 2px 25px;
        height: 70px;
    }

    .input-wrap input[type="text"]:nth-child(odd) {
        margin-left: 0;
    }

    .input-wrap input[type="text"]:last-child {
        margin-bottom: 10px;
    }

    textarea {
        padding: 30px;
        font-size: 20px;
        /*        min-height: 350px;*/
        color: #000;
    }

    .file-wrap {
        padding: 14px 20px;
        height: 70px;
    }

    .file-wrap>span {
        font-size: 16px;
    }

    .input-file {
        font-size: 16px;
        width: calc(100% - 63px);
    }

    .btn-wrap .btn {
        width: 220px;
        height: 70px;
        line-height: 70px;
        margin: 0 auto;
        font-size: 20px;
    }

    /*selectbox*/
    .ui-select {
        display: inline-block;
        position: relative;
        z-index: 1;
        font-size: 16px;
        width: 100%;
        height: 70px;
        vertical-align: top;
        margin-bottom: 10px;
    }

    .ui-select.active {
        z-index: 2;
    }

    .ui-select.active>ul {
        visibility: visible;
    }

    .ui-select>button {
        width: 100%;
        background: #fff;
        border: 1px solid #d4d4d4;
        height: 70px;
        font-size: 16px;
        color: #000;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        padding: 0 25px;
        text-align: left;
        position: relative;
    }

    .ui-select>button:after {
        content: '';
        display: block;
        position: absolute;
        top: 50%;
        right: 30px;
        width: 14px;
        height: 7px;
        transform: translateY(-50%);
        background: url('/ko/images/pc-sprite.png') no-repeat -30px 0;
    }

    .ui-select>ul {
        visibility: hidden;
        position: absolute;
        left: 0;
        top: 100%;
        width: 100%;
        border: 1px solid #ccc;
        border-top: 0;
        box-sizing: border-box;
        overflow-y: auto;
        background-color: #fff;
    }

    .ui-select>ul>li {
        cursor: default;
        border-bottom: 1px solid #d4d4d4;
        height: 70px;
        line-height: 70px;
        font-size: 16px;
        padding: 0 15px;
    }

    .ui-select>ul>li.active {
        background-color: #ccc;
    }

    .ui-select>ul>li:last-child {
        border-bottom: 0;
    }

    .ui-select>ul.above {
        top: auto !important;
        bottom: 100%;
        border-bottom: 0
    }

    .ui-select>ul.above>li {
        border-bottom: 0;
        border-top: 1px solid #ccc;
    }

    .ui-select.disabled:before {
        content: "비 활성화된 항목입니다";
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(1px, 1px, 1px, 1px)
    }

    .ui-select.disabled>button {
        background-color: #ccc;
        color: #444;
    }

    .ui-select.variable {
        width: auto;
    }

    .ui-select.variable>ul {
        width: auto;
        white-space: nowrap
    }

    .ui-select select {
        position: absolute;
        visibility: hidden;
    }

    /*poopup*/
    .ui-popup .content {
        width: auto;
        max-width: 1200px;
        margin: 0 10%;
    }

    .ui-popup .body {
        font-size: 20px;
    }

    .ui-popup .body p {
        line-height: 36px;
    }

    .ui-popup .cls {
        top: -60px;
        right: 0;
        width: 31px;
        height: 31px;
        background: url('/ko/images/pc-sprite.png') no-repeat -60px 0;
    }
}

.tooltip {
    position: absolute;
    bottom: 5px;
    left: 40px;
    max-width: 100px;
    padding: 15px 15px 12px;
    border-radius: 20px 20px 20px 0;
    background: #ffe362;
    font-size: 14px;
    line-height: 1.4;
    word-break: keep-all;
}

@media screen and (min-width: 1024px) {
    .tooltip {
        position: relative;
        left: auto;
        bottom: 3px;
        display: inline-block;
        margin-right: 5px;
        max-width: none;
        border-radius: 20px 20px 0 20px;
        vertical-align: top;
    }
}

.avatar {
    position: fixed;
    top: 253px;
    left: 26px;
    z-index: 50;
}

.avatar.down-zindex {
    z-index: 50;
}

.avatar li {
    position: relative;
    margin-bottom: 10px;
    height: auto;
}

.avatar-image {
    display: inline-block;
    width: 30px;
    height: 30px;
    text-align: center;
}

.avatar>.word-badge,
.avatar li:first-child .avatar-image .word-badge {
    position: absolute;
    top: -6px;
    right: -8px;
    z-index: 20;
    width: 22px;
    height: 17px;
    background: url(/ko/images/ico_word_badge.png) no-repeat;
    background-size: cover;
    text-align: center;
}

.avatar>.word-badge i,
.avatar li:first-child .avatar-image .word-badge i {
    display: inline-block;
    width: 2px;
    height: 2px;
    background: #000;
    border-radius: 2px;
    margin: 0 1px;
    line-height: 1;
    vertical-align: 4px;
}

.avatar>.word-badge {
    display: none;
}

.avatar-face {
    display: block;
    width: 30px;
    height: 30px;
    overflow: hidden;
    border-radius: 50%;
    position: relative;
    z-index: 10;
}

.avatar .swiper-pagination {
    display: none;
}

@media screen and (min-width: 1024px) {
    .avatar {
        top: 90px;
        left: auto;
        right: 70px;
        width: 130px;
        overflow: visible;
        z-index: 100;
    }

    .avatar.swiper-container {
        position: fixed;
        /*width: 130px;*/
        height: auto;
        overflow: visible;
    }

    .avatar-image:before {
        display: none;
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        z-index: 20;
        width: 60px;
        height: 60px;
        background: url(/ko/images/ico_avatar_cover.png) no-repeat 50% 50%;
        transform: translate(-50%, -50%);
        animation-name: rotateIn;
        animation-duration: 0.7s;
        animation-timing-function: ease;
        animation-fill-mode: both;
    }

    .avatar-image:hover:before {
        display: block;
    }

    .avatar li:first-child .avatar-image .word-badge {
        display: none;
    }

    .avatar>.word-badge {
        display: block;
        top: -12px;
        right: -16px;
        width: 43px;
        height: 34px;
    }

    .avatar>.word-badge i {
        width: 4px;
        height: 4px;
        margin: 0 2px;
        vertical-align: 2px;
    }

    .avatar-face {
        width: 100%;
        height: 100%;
        border: 1px solid transparent;
        box-sizing: border-box;
    }

    @keyframes rotateIn {
        0% {
            transform-origin: center;
            /*transform: rotate(0deg) scale(0.8) translate(-50%, -50%);*/
            opacity: 0;
        }

        100% {
            transform-origin: center;
            /*transform: rotate(360deg) scale(1) translate(-50%, -50%);*/
            opacity: 1;
        }
    }

    .avatar li {
        display: inline-block;
        margin-bottom: 0;
        text-align: right;
        overflow: hidden;
    }

    .avatar-image {
        position: relative;
        width: 60px;
        height: 60px;
        overflow: hidden;
        border-radius: 50%;
    }


    .avatar-image:after {
        /*
        content: '';
        display: inline-block;
        width: 20px;
        height: 20px;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translateX(-50%);
        box-shadow: 0 14px 21px 0 rgba(0, 0, 0, 0.7);*/
    }

    .avatar.swiper-container:after {
        content: '';
        display: inline-block;
        width: 1px;
        height: 1px;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translateX(-50%);
        box-shadow: 0 20px 21px 14px rgba(0, 0, 0, 0.7);
    }

    .avatar .swiper-pagination {
        display: none;
        position: absolute;
        top: 66px;
        right: 0;
        left: auto;
        bottom: auto;
        width: 58px;
    }

    .avatar .swiper-pagination-bullet {
        width: 4px;
        height: 4px;
        background: #060504;
    }

    .avatar.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
        margin: 0 2px;
    }
}

.speech-bubble {
    display: none;
    background-color: #ffe362;
    position: absolute;
    top: 0;
    left: 40px;
    z-index: 9;
    font-size: 13px;
    line-height: 20px;
    color: #000;
    border-radius: 0 20px 20px 20px;
    box-sizing: border-box;
    padding: 13px 20px;
    word-break: keep-all;
    box-shadow: 0 20px 40px 0 rgba(0, 0, 0, 0.25);
    opacity: 0;
    width: 0;
    overflow: hidden;
}

.speech-bubble-detail-wrap {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 101;
    display: none;
}

.speech-bubble p {
    white-space: nowrap;
}

.speech-bubble-detail {
    width: 100%;
    overflow: hidden;
    overflow-y: auto;
    border-radius: 20px 0 20px 20px;
    background-color: #ffe362;
    padding: 13px 20px;
}

@media screen and (min-width: 1024px) {
    .speech-bubble {
        /*display: inline-block;*/
        position: relative;
        left: auto;
        line-height: 20px;
        color: #000;
        padding: 10px 0 0;
        border-radius: 0;
        width: 100%;
        vertical-align: top;
        overflow: hidden;
        opacity: 1;
        box-shadow: none;
        background: none;
    }

    .speech-bubble.active {
        /*padding: 13px 20px;*/
        /*transition:width .7s ease-in-out;*/
    }

    .speech-bubble p {
        padding: 0;
        font-size: 14px;
        white-space: pre-line;
    }

    .speech-bubble.active p {
        /*opacity:1;
        transition:opacity .7s ease-in-out;*/
    }

    .speech-bubble-detail-wrap {
        z-index: 10;
        position: absolute;
        top: auto;
        bottom: -1px;
        left: auto;
        right: -1px;
    }

    .speech-bubble-detail-wrap .btn-cls {
        width: 48px;
        height: 48px;
    }

    .speech-bubble-detail {
        width: 375px;
        overflow: hidden;
        overflow-y: auto;
        border-radius: 20px 0 20px 20px;
        position: absolute;
        top: 50px;
        right: 3px;
        padding: 13px 20px;
    }
}

.avatar .mCSB_scrollTools .mCSB_draggerContainer {
    top: 30px;
    right: 10px;
}

.swiper-button-prev,
.swiper-button-next {
    width: 18px;
    height: 12px;
    background: url('../../images/m-sprite.png');
    margin: 0;
    top: 84.5%;
    transform: translateY(-84.5%);
    background-size: 300px auto;
}

.swiper-button-prev {
    background-position: -30px -40px;
    left: 35px;
}

.swiper-button-next {
    background-position: 0 -40px;
    right: 35px;
}

.ico-mouse {
    display: none;
    position: absolute;
    z-index: 1;
    top: 85%;
    left: 50%;
    transform: translate(-50%, -85%);
}

/*.ico-mouse img{
    width:20px;
    animation: pulsate-bck 1s ease-in-out infinite both;
}
@keyframes pulsate-bck {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(0.9);
    }
    100% {
        transform: scale(1);
    }
}*/
@-webkit-keyframes ani-mouse {
    0% {
        opacity: 1;
        top: 29%;
    }

    15% {
        opacity: 1;
        top: 50%;
    }

    50% {
        opacity: 0;
        top: 50%;
    }

    100% {
        opacity: 0;
        top: 29%;
    }
}

@-moz-keyframes ani-mouse {
    0% {
        opacity: 1;
        top: 29%;
    }

    15% {
        opacity: 1;
        top: 50%;
    }

    50% {
        opacity: 0;
        top: 50%;
    }

    100% {
        opacity: 0;
        top: 29%;
    }
}

@keyframes ani-mouse {
    0% {
        opacity: 1;
        top: 29%;
    }

    15% {
        opacity: 1;
        top: 50%;
    }

    50% {
        opacity: 0;
        top: 50%;
    }

    100% {
        opacity: 0;
        top: 29%;
    }
}

.scroll-btn {
    display: none;
    position: absolute;
    top: 85%;
    left: 50%;
    transform: translate(-50%, -85%);
    text-align: center;
    width: 20px;
    height: 27px;
    z-index: 1;
}

.scroll-btn>* {
    display: inline-block;
    line-height: 18px;
    font-size: 13px;
    font-weight: normal;
    color: #7f8c8d;
    color: #ffffff;
    font-family: "proxima-nova", "Helvetica Neue", Helvetica, Arial, sans-serif;
    letter-spacing: 2px;
}

.scroll-btn>*:hover,
.scroll-btn>*:focus,
.scroll-btn>*.active {
    color: #ffffff;
}

.scroll-btn>*:hover,
.scroll-btn>*:focus,
.scroll-btn>*:active,
.scroll-btn>*.active {
    opacity: 0.8;
    filter: alpha(opacity=80);
}

.scroll-btn .mouse {
    position: relative;
    display: block;
    width: 20px;
    height: 27px;
    margin: 0 auto;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border: 2px solid white;
    border-radius: 23px;
}

.scroll-btn .mouse>* {
    position: absolute;
    display: block;
    top: 29%;
    left: 50%;
    width: 4px;
    height: 4px;
    margin: -2px 0 0 -2px;
    background: white;
    border-radius: 50%;
    -webkit-animation: ani-mouse 2.5s linear infinite;
    -moz-animation: ani-mouse 2.5s linear infinite;
    animation: ani-mouse 2.5s linear infinite;
}

@media screen and (min-width: 1024px) {

    .swiper-button-prev,
    .swiper-button-next {
        width: 32px;
        height: 20px;
        background: url('../../images/pc-sprite.png');
        margin: 0;
        top: 89%;
        transform: translateY(-89%);
    }

    .swiper-button-prev {
        background-position: -95px -20px;
        left: 45%;
        transform: translate(-45%, -89%);
    }

    .swiper-button-next {
        background-position: -95px 0;
        left: 55%;
        right: auto;
        transform: translate(-55%, -89%);
    }

    .scroll-btn {
        display: block;
        position: absolute;
        top: 89.5%;
        left: 50%;
        transform: translate(-50%, -89.5%);
        text-align: center;
        width: 31px;
        height: 42px;
        z-index: 1;
    }

    .scroll-btn>* {
        display: inline-block;
        line-height: 18px;
        font-size: 13px;
        font-weight: normal;
        color: #7f8c8d;
        color: #ffffff;
        font-family: "proxima-nova", "Helvetica Neue", Helvetica, Arial, sans-serif;
        letter-spacing: 2px;
    }

    .scroll-btn>*:hover,
    .scroll-btn>*:focus,
    .scroll-btn>*.active {
        color: #ffffff;
    }

    .scroll-btn>*:hover,
    .scroll-btn>*:focus,
    .scroll-btn>*:active,
    .scroll-btn>*.active {
        opacity: 0.8;
        filter: alpha(opacity=80);
    }

    .scroll-btn .mouse {
        position: relative;
        display: block;
        width: 31px;
        height: 42px;
        margin: 0 auto;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        border: 3px solid white;
        border-radius: 23px;
    }

    .scroll-btn .mouse>* {
        position: absolute;
        display: block;
        top: 29%;
        left: 50%;
        width: 6px;
        height: 6px;
        margin: -3px 0 0 -3px;
        background: white;
        border-radius: 50%;
        -webkit-animation: ani-mouse 2.5s linear infinite;
        -moz-animation: ani-mouse 2.5s linear infinite;
        animation: ani-mouse 2.5s linear infinite;
    }

    /*.ico-mouse{
        display: block;
        position:absolute;
        z-index:1;
        top:90%;
        left:50%;
        transform: translate(-50%,-90%);
    }    
    .ico-mouse img{
        width:auto;
    }*/
}

.return-top {
    display: none;
    width: 30px;
    height: 30px;
    background: white;
    border-radius: 50%;
    text-align: center;
    line-height: 30px;
    font-size: 11px;
    font-weight: 600;
    left: 25px;
    bottom: 30px;
    position: fixed;
    z-index: 90;
    text-transform: uppercase;
}

@media screen and (min-width: 1024px) {
    .return-top {
        display: block;
        width: 42px;
        height: 42px;
        line-height: 42px;
        font-size: 12px;
        left: auto;
        right: 70px;
        bottom: 58px;
    }
}

/* 더보기 버튼 */
.more {
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
}

button.fast {
    --duration: .32s;
}

button {
    --background: black;
    --text: #fff;
    --font-size: 20px;
    --duration: .44s;
    --move-hover: -4px;
    --shadow: 0 2px 8px -1px rgba(38, 40, 47, 0.32);
    --shadow-hover: 0 4px 20px -2px rgba(37, 37, 38, 0.5);
    --font-shadow: var(--font-size);
    padding: 16px 32px;
    font-family: 'Roboto';
    font-weight: 700;
    line-height: var(--font-size);
    border-radius: 24px;
    display: block;
    outline: none;
    appearance: none;
    border: none;
    text-decoration: none;
    font-size: var(--font-size);
    letter-spacing: .5px;
    background: var(--background);
    color: var(--text);
    box-shadow: var(--shadow);
    transform: translateY(var(--y)) translateZ(0);
    transition: transform var(--duration) ease, box-shadow var(--duration) ease;
    width: 200px;
    height: 50px;
    cursor: pointer;
}

button div {
    display: flex;
    overflow: hidden;
    text-shadow: 0 var(--font-shadow) 0 var(--text);
}

button div span {
    display: block;
    backface-visibility: hidden;
    font-style: normal;
    transition: transform var(--duration) ease;
    transform: translateY(var(--m)) translateZ(0);
}

button:hover {
    --y: var(--move-hover);
    --shadow: var(--shadow-hover);
}

button:hover span {
    --m: calc(var(--font-size) * -1);
}

button.reverse {
    --font-shadow: calc(var(--font-size) * -1);
}

button.reverse:hover span {
    --m: calc(var(--font-size));
}

/* 반응형 */
@media screen and (max-width: 1024px) {
    button {
        width: 19.53vw;
        margin-top: 60px;
    }
}

@media screen and (max-width: 768px) {
    button {
        font-size: 2.60vw;
        padding: 0px;
    }
}

@media screen and (max-width: 630px) {
    button {
        font-size: 16.38px;
        width: 123.03px;
    }
}

/* 반응형 끝 */
/* 더보기 버튼 끝 */