@charset "utf-8";

@import url(/_css/element.css);
@import url(/_css/account.css);
@import url(/_css/board.css);
@import url(/_css/intro.css);

/* ============== 폰트선언 ============== */
@import url(/_css/pretendard.css);
/* ======================================= */

/* root */
:root{
    --color--primary: #14B4AF;
    /* --color--point: #5E95F6; */
    --color--point: #134AA9;
    --color--black: #000000;
    --color--gray: #707070;
}

/* 공통 */
html, body, div, span, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, cite, code, del, em, img, ins, q, small, strong, sub, sup, dl, dt, dd, ol, ul, li, fieldset, form, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, nav, section, summary, time, mark, audio, video, button,textarea,input,select {
    font-family: 'Pretendard', sans-serif;
    font-weight: 400;
    color: var(--color--black);
    letter-spacing: -0.03em;
    word-spacing: -0.03em;
}
body{
    overflow-x: hidden;
}
body.fixed{
    overflow: hidden;
}
.main{
    min-height: calc(100vh - 57px - 164px);
}
.header__inner{
    width: 100%;
    max-width: 1120px;
    height: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
}
.footer__inner{
    width: 100%;
    height: 100%;
    max-width: 1120px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding-top: 33px;
}
.section__inner{
    width: calc(100% - 30px);
    max-width: 1120px;
    margin: 0 auto;
}
.logo-main{
    width: 190px;
    height: 31.3px;
}
.logo-sub{
    width: 218px;
    margin-top: 12px;
}
.logo-main>a,
.logo-sub>a{
    display: block;
}
.logo-main>a>img,
.logo-sub>a>img{
    width: 100%;
}
.screen--out{
    overflow: hidden;
    position: absolute;
    border: 0;
    width: 1px;
    height: 1px;
    clip: rect(1px, 1px, 1px, 1px);
}
.button__wrap{
    display: flex;
    justify-content: center;
}
.input-error__message{
    display: none;
    font-size: 18px;
    line-height: 2;
    color: #E92424;
    position: absolute;
    left: 0;
    top: 0;
}
.input-error__message.on{
    display: block;
}
.p_br{
    display: block;
}
.t_br,
.m_br{
    content: " ";
    display: inline-block;
    padding: 0 0.11em;
}
.tab__content{
    display: none;
}
.tab__content.on{
    display: block;
}
.color--gray{
    color: var(--color--gray);
}
.color--primary{
    font-weight: inherit;
    color: var(--color--primary);
}
.color--point{
    font-weight: inherit;
    color: var(--color--point);
}
.weight-m{
    font-weight: 500;
}
.req-star{
    color: #E92424;
}

.ui-datepicker{
    width: 14em;
}

.mt10{
    margin-top: 10px;
}

.eng-text{
    font-size: 0.5em;
    line-height: inherit;
    font-weight: inherit;
    color: inherit;
    white-space: nowrap;
}
/* =================== header ==================== */
.header{
    width: 100%;
    height: 57px;
    display: flex;
    align-items: center;
    background-color: #fff;
}
.header__menu{
    width: calc(100% - 228px);
    height: 100%;
    margin-left: 38px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.gnb{
    height: 100%;
}
.gnb__list{
    display: flex;
    column-gap: 15px;
    height: 100%;
}
.gnb__item{
    height: 100%;
    font-size: 18px;
    line-height: 1.16;
    text-align: center;
    position: relative;
}
.gnb__item>a{
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 19px 11px;
}
.lnb__list{
    width: 130px;
    height: auto;
    position: absolute;
    left: 50%;
    top: 57px;
    transform: translateX(-50%);
    border-radius: 10px;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.16);
    padding: 12px 14px;
    background-color: #fff;
    z-index: 999;
    display: none;
}
.lnb__list>*+*{
    margin-top: 13px;
}
.lnb__item{
    /* font-size: 18px; */
    font-size: 16px;
    line-height: 1.44;
}
.lnb__item>a:hover{
    color: var(--color--point);
}
.header-login__wrap{
    height: 100%;
    margin-left: 21px;
    display: flex;
    align-items: center;
}
.lang-ch__wrap{
    position: relative;
    margin-right: 20px;
}
.lang-ch__wrap .btn-lang{
    width: 86px;
    line-height: 24px;
    text-align: left;
    font-size: 15px;
    position: relative;
    padding-left: 26px;
    background-image: url(/_img/common/icon_lang.svg);
    background-repeat: no-repeat;
    background-position: left 50%;
    background-size: contain;
}
.lang-ch__wrap .btn-lang::after{
    content: "";
    display: block;
    width: 16px;
    height: 9px;
    background: url(/_img/common/select_lang.svg) no-repeat center center/contain;
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -4.5px;
}
.lang-ch__box{
    display: none;
    width: 105px;
    position: absolute;
    left: -7px;
    top: -5px;
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.16);
    padding: 7px 12px 7px 33px;
    z-index: 100;
}
/* .lang-ch__box::after{
    content:"";
    width: 24px;
    height: 24px;
    background: url(/_img/common/icon_lang.svg) no-repeat center center/contain;
    position: absolute;
    left: 7px;
    top: 5px;
} */
.lang-ch__box>button{
    display: block;
    width: 16px;
    height: 9px;
    background: url(/_img/common/select_lang.svg) no-repeat center center/contain;
    position: absolute;
    right: 12px;
    top: 12px;
}
.lang-ch__box.on{
    display: block;
    animation: scaleRight 0.2s ease-out both;
}
.lang-ch__box>a{
    display: block;
    font-size: 15px;
    line-height: 1.44;
}
.lang-ch__box>a:first-child{
    margin-bottom: 5px;
}
.header-login__box{
    width: 160px;
    height: 100%;
    display: flex;
    justify-content: right;
    align-items: center;
}
.header-login__wrap .login__link{
    width: 80px;
    height: 100%;
    font-size: 18px;
    line-height: 1.44;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}
.header-login__wrap .login__link.header-mypage{
    width: 100px;
}
.header-login__wrap .login__link.header-login,
.header-login__wrap .login__link.header-mypage{
    background-color: var(--color--point);
}
.header-login__wrap .login__link.header-logout,
.header-login__wrap .login__link.header-join{
    background-color: var(--color--primary);
}

.gnb-eng .gnb__item>a{
    display: block;
}
.gnb-eng .gnb__item>a::after {
    content: attr(title);
    display: block;
    font-weight: 500;
    height: 0px;
    visibility: hidden;
}

/* hover */
.gnb__item:hover .lnb__list{
    display: block;
    animation: opcity 0.3s ease-out both;
}
.gnb__item:hover>a{
    color: var(--color--point);
    font-weight: 500;
}

.btn-mobile-menu{
    display: none;
}
.mobile-nav{
    display: none;
}
/* mobile-nav */

.mobile-nav{
    width: 100%;
    height: 100vh;
    background-color: var(--color--primary);
    position: fixed;
    right: -100%;
    top: 50px;
    z-index: 999;
    display: none;
}
.mobile-nav.on{
    display: none;
}
.mobile-nav__inner{
    padding-top: 10px;
}

.mobile-nav__list .mobile-nav__item{
    padding: 12.5px 0px;
    font-size: 24px;
    line-height: 35px;
    color: #fff;
}
.mobile-nav__list .mobile-nav__item>p{
    width: fit-content;
    color: #fff;
    cursor: pointer;
}
.mobile-nav__list .lnb__list{
    width: 100%;
    position: static;
    transform: translate(0);
    box-shadow: none;
    overflow-y: auto;
    max-height: 230px;
}
.mobile-nav .header-login__wrap{
    margin: 0;
    flex-direction: column;
    justify-content: right;
    align-items: flex-end;
}
.mobile-nav .header-login__box{
    column-gap: 20px;
    margin-bottom: 20px;
}
.mobile-nav .header-login__wrap .login__link.header-login,
.mobile-nav .header-login__wrap .login__link.header-join,
.mobile-nav .header-login__wrap .login__link.header-mypage,
.mobile-nav .header-login__wrap .login__link.header-logout{
    width: fit-content;
    background-color: transparent;
}
.mobile-nav .lang-ch__wrap{
    margin-right: 0;
}
.mobile-nav .lang-ch__wrap .btn-lang{
    color: #fff;
}
.mobile-nav .lang-ch__wrap .btn-lang{
    filter: brightness(200);
}
.btn-moblie__wrap{
    display: none;
}
/* ==================================== */

/* ================= footer =================== */
.footer{
    height: 181px;
    background-color: #FAFAFA;
    border-top: 1px solid #E0E0E0;
}

.info-section{
    width: 100%;
    max-width: 750px;
    padding-left: 70px;
    min-height: 95px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.footer__menu{
    display: flex;
    justify-content: left;
    column-gap: 25px;
    margin-top: 10px;
    margin-bottom: 8px;
}
.footer__menu>li{
    font-size: 12px;
    line-height: 1.41;
    font-weight: 500;
    color: #616161;
}
.info-section>.logo-main{
    width: 155.6px;
    height: 25.6px;
}
.info-section>.logo-main>img{
    width: 100%;
}
.footer-info__wrap>address{
    font-style: normal;
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
    row-gap: 7px;
    column-gap: 18px;
}
.footer-info__wrap dl{
    display: flex;
    justify-content: left;
    font-size: 12px;
    line-height: 1.41;
}
.footer-info__wrap dl.address{
    width: 100%;
    display: flex;
    justify-content: left;
    font-size: 12px;
    line-height: 1.41;
}
.sns-section{
    width: 150px;
}
.footer-sns__wrap{
    display: flex;
    justify-content: right;
    column-gap: 10px;
}
.footer-sns__wrap>a{
    display: block;
    width: 36px;
    height: 36px;
}
.footer-sns__wrap>a>img{
    width: 100%;
}
.sns-section .copyright{
    display: none;
}
.copyright{
    text-align: right;
    font-size: 12px;
    line-height: 1.4;
    color: #707070;
    margin-left: 24px;
}

.footer .select-box{
    display: block;
    width: 100%;
    height: 48px;
    position: relative;
    margin-bottom: 20px;
}
.footer .select-box__label{
    width: 100%;
    height: 48px;
    line-height: 46px;
    border: 1px solid #DCDCDC;
    padding-left: 12px;
    padding-right: 35px;
    border-radius: 4px;
    color: #999999;
    font-size: 12px;
    cursor: pointer;
}
.footer .select-box__label:hover{
    border-color: #dbdbdb;
    transition: all .2s ease-in-out;
}
.footer .select-box__label::after{
    content: "";
    display: block;
    width: 12px;
    height: 7px;
    border: none;
    background: url(/_img/common/select_arrow.svg) no-repeat center center/contain;
    margin-top: -3px;
    position: absolute;
    right: 16px;
    top: 50%;
    transform: rotateX(0deg);
    transition: all .15s ease-in-out;
}
.footer .select-box__label.on::after{
    transform: rotateX(180deg);
}
.footer .select-box .select-box__ul{
    position: absolute;
    top:48px;
    background: #fff;
    width: 100%;
    height: 0;
    max-height: 140px;
    overflow-y: auto;
    border-radius: 5px;
    border: 1px solid #DCDCDC;
    margin-top: 0px;
    opacity: 0;
    z-index: 5;
    -webkit-transform-origin: 50% 0;
    -ms-transform-origin: 50% 0;
    transform-origin: 50% 0;
    -webkit-transform: scale(.75) translateY(-21px);
    -ms-transform: scale(.75) translateY(-21px);
    transform: scale(.75) translateY(-21px);
    -webkit-transition: all .2s cubic-bezier(.5,0,0,1.25),opacity .15s ease-out;
    transition: all .2s cubic-bezier(.5,0,0,1.25),opacity .15s ease-out;
}
.footer .select-box .select-box__ul.active{
    height: auto;
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: scale(1) translateY(0);
    -ms-transform: scale(1) translateY(0);
    transform: scale(1) translateY(0);
}
.footer .select-box .select-box__ul li{
    height: 48px;
    line-height: 48px;
    color: #707070;
    font-size: 12px;
    transition: all .2s;
}
.footer .select-box .select-box__ul li:hover,
.footer .select-box .select-box__ul li:active {
    background-color: var(--color--primary);
    color: #fff;
}
.footer .select-box .select-box__ul li>a{
    display: block;
    padding-left: 12px;
    padding-right: 24px;
}
/* ==================================== */

/* =========== main ============== */
.index__container{
    background: #fff;
}
.main-visual{
    width: 100%;
    margin: 0 auto 32px;
    position: relative;
}
.visual-swiper .swiper-wrapper{
    width: 100%;
    height: 600px;
}
.visual-swiper .swiper-slide{
    height: 100%;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}
.visual-swiper .swiper-slide.slide-1{
    background-image: url(/_img/main/main_slide_1.jpg);
}
.visual-swiper .swiper-slide.slide-2{
    background-image: url(/_img/main/main_slide_2.jpg);
}
.visual-swiper .swiper-slide.slide-3{
    background-image: url(/_img/main/main_slide_3.jpg);
}
.visual-swiper .swiper-pagination-bullet{
    width: 8px;
    height: 4px;
    background-color:#BDBDBD;
    border-radius: 5px;
    opacity: 1;
    transition: width 0.3s;
}
.visual-swiper .swiper-pagination-bullet.swiper-pagination-bullet-active{
    width: 86px;
    background-color: #fff;
}
.visual-swiper .swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.visual-swiper .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet{
    margin: 0 3px;
}
.visual-swiper .swiper-horizontal>.swiper-pagination-bullets,
.visual-swiper .swiper-pagination-bullets.swiper-pagination-horizontal{
    top: auto;
    bottom: 166px;
}
.visual-swiper .swiper-button-prev:after, .visual-swiper .swiper-rtl .swiper-button-next:after,
.visual-swiper .swiper-button-next:after, .visual-swiper .swiper-rtl .swiper-button-prev:after{
    display: none;
}
.visual-swiper .swiper-button-prev, .visual-swiper .swiper-rtl .swiper-button-next{
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: url(/_img/common/slide_prev.svg) no-repeat center center/16px rgba(255, 255, 255, 0.06);
    left: calc(50% - 560px);
}
.visual-swiper .swiper-button-next, .visual-swiper .swiper-rtl .swiper-button-prev{
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: url(/_img/common/slide_next.svg) no-repeat center center/16px rgba(255, 255, 255, 0.06);
    right: calc(50% - 560px);
}
.visual__text-wrap{
    width: 100%;
    height: 100%;
    max-width: 1120px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.visual__text-name{
    color: #fff;
    font-size: 28px;
    line-height: 30px;
    margin-bottom: 13px;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.4)
}
.visual__text-title{
    color: #fff;
    font-size: 68px;
    line-height: 1.26;
    font-weight: bold;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.4)
}
.visual__text-sub{
    color: #fff;
    font-size: 28px;
    line-height: 30px;
    margin-top: 17px;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.4)
}
.visual__text-wrap .btn.btn-radius{
    margin-top: 21px;
}

.main-visual .btn-apply{
    max-width: 240px;
    font-size: 18px;
    line-height: 1.28;
    position: absolute;
    right: calc(50% - 560px);
    bottom: 20px;
    z-index: 10;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}

.main-board{
    padding-bottom: 64px;
}
.main-board .section__inner{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: 24px;
}
.main-board__title{
    font-size: 28px;
    line-height: 1.07;
    font-weight: 600;
    margin-bottom: 24px;
}
.main-board__row{
    width: 100%;
    display: flex;
    gap: 20px;
}
.main-board__btn-more{
    display: block;
    width: 74px;
    height: 24px;
    background-image: url(/_img/main/btn-more_w.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
}
.btn-more__wrap{
    height: fit-content;
}
.main-notice, .link-survey, .link-join, .link-intro{
    width: 100%;
    border-radius: 4px;
    border-top-right-radius: 12px;
}
.main-notice{
    max-width: 743px;
    height: 306px;
    background-color: #FAFAFA;
    border: 1px solid #E0E0E0;
    padding: 42px 52px;
}
.main-notice .main-board__btn-more,
.link-intro .main-board__btn-more{
    background-image: url(/_img/main/btn-more_b.svg);
}
.main-notice__header{
    display: flex;
    justify-content: space-between;
}
.main-notice__list>*+*{
    margin-top: 16px;
}
.main-notice__item{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.main-notice__item .notice__title{
    max-width: calc(100% - 120px);
    font-size: 16px;
    line-height: 1.18;
    color: #616161;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}
.main-notice__item .notice__title:hover{
    text-decoration: underline;
    text-decoration-thickness: 1px;
}
.main-notice__item .notice__date{
    font-size: 14px;
    line-height: 1.14;
    color: #9E9E9E;
}
.main-board__row .link-intro{
    max-width: 357px;
    border: 1px solid #E0E0E0;
    background-color: #fff;
    position: relative;
}
.main-board__row .link-intro>a{
    display: block;
    width: 100%;
    height: 100%;
    padding: 42px 48px 48px 42px;
}
.main-board__row .link-survey,
.main-board__row .link-join{
    width: 100%;
    height: 243px;
    position: relative;
}
.main-board__row .link-survey>a,
.main-board__row .link-join>a{
    display: block;
    width: 100%;
    height: 100%;
    padding: 42px 48px 45px 42px;
}
.main-board__row .link-survey{
   background-color: var(--color--point);
}
.main-board__row .link-join{
    background-color:  var(--color--primary);

}
:where(.main-board__row .link-survey, .main-board__row .link-join) .main-board__title,
:where(.main-board__row .link-survey, .main-board__row .link-join) .main-link__text,
:where(.main-board__row .link-survey, .main-board__row .link-join) .main-link__text>em{
    color: #fff;
}

.main-board__row .link-survey,
.main-board__row .link-join{
    display: block;
}
.main-board__row .link-survey .main-board__btn-more,
.main-board__row .link-join .main-board__btn-more{
    position: absolute;
    right: 25px;
    bottom: 45px;
}

.main-link__text{
    font-size: 16px;
    line-height: 1.75;
}
.main-board__row .link-join .main-link__text:last-child{
    margin-top: 11px;
}

.main-board__row .link-intro::after{
    content: "";
    position: absolute;
    right: 48px;
    bottom: 47px;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: url(/_img/main/intro_img.png) no-repeat center center/42px #F5F5F5;
}
.main-board__row .link-survey::after{
    content: "";
    position: absolute;
    right: 25px;
    top: 40px;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: url(/_img/main/survey_img.png) no-repeat center center/42px rgba(255, 255, 255, 0.8);
}
.main-board__row .link-join::after{
    content: "";
    position: absolute;
    right: 25px;
    top: 40px;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: url(/_img/main/join_img.png) no-repeat center center/42px rgba(255, 255, 255, 0.8);
}

/* hover */


.main-board__row .link-survey>a:hover .main-board__btn-more,
.main-board__row .link-join>a:hover .main-board__btn-more,
.main-board__row .link-intro>a:hover .main-board__btn-more,
.main-notice .btn-more__wrap:hover .main-board__btn-more{
    animation: arrow 0.5s ease-out both;
}


/* 영문 메인 */
.main-board__list{
    display: flex;
    column-gap: 25px;
}
.main-board__list>li{
    flex: 1;
    border-radius: 4px 12px 4px 4px;
    overflow: hidden;
    position: relative;
}
.main-board__list>li>a{
    display: block;
    width: 100%;
    height: 100%;
    padding: 45px 11px 76px;
}
.main-board__list>li .main-board__title{
    font-size: 24px;
}
.main-board__list>li:first-child .main-board__title,
.main-board__list>li:nth-child(2) .main-board__title{
    color: #fff;
}
.main-board__list>li:first-child .main-link__text,
.main-board__list>li:nth-child(2) .main-link__text{
    color: #fff;
}

.main-board__list>li:first-child{
    background-color: var(--color--point);
}
.main-board__list>li:nth-child(2){
    background-color: var(--color--primary);
}
.main-board__list>li:nth-child(3){
    background-color: #fff;
    border: 1px solid #E0E0E0;
}

.main-board__list>li .main-board__btn-more {
    position: absolute;
    right: 20px;
    bottom: 20px;
}
.main-board__list>li:nth-child(3) .main-board__btn-more {
    background-image: url(/_img/main/btn-more_b.svg);
}

/* hover */
.main-board__list>li>a:hover .main-board__btn-more{
    animation: arrow 0.5s ease-out both;
}

/* 반응형 기준 - 1200 1024 768 */
@media screen and (max-width:1200px) {
    .main{
        padding-top: 50px;
    }
    .logo-main{
        width: 150px;
    }
    /* header */
    .header{
        position: fixed;
        left: 0;
        top: 0;
        z-index: 999;
        height: 50px;
    }
    .header__menu{
        display: none;
    }
    .header__inner{
        width: calc(100% - 30px);
        justify-content: center;
        position: relative;
    }
    .btn-mobile-menu{
        display: block;
        width: 33px;
        height: 17px;
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
    }
    .btn-mobile-menu>span{
        display: block;
        width: 22px;
        height: 2px;
        background-color:#000;
        position: absolute;
        right: 0;
        transition: 0.3s;
    }
    .btn-mobile-menu>span:first-child{
        top: 4px;
    }
    .btn-mobile-menu>span:nth-child(2){
        width: 16px;
        bottom: 4px;
    }
    .mobile-nav{
        display: block;
    }
    .btn-mobile-menu.on>span:first-child{
        width: 20px;
        height: 1px;
        top: 50%;
        transform: rotate(45deg);
    }

    .btn-mobile-menu.on>span:nth-child(2){
        width: 20px;
        height: 1px;
        top: 50%;
        bottom: auto;
        transform: rotate(-45deg);
    }

    /* footer */
    .footer{
        height: auto;
        background-color: #FAFAFA;
    }
    .footer__inner{
        width: calc(100% - 30px);
        flex-wrap: wrap;
        justify-content: center;
        padding-bottom: 20px;
    }
    .logo-section{
        width: 100%;
        margin-bottom: 20px;
    }
    .logo-sub{
        margin: 0 auto;
    }
    .info-section{
        padding-left: 0;
    }
    .footer-info__wrap{
        max-width: 760px;
    }

    /* main */
    .visual__text-title{
        font-size: clamp(30px,5.6vw,68px);
    }
    .visual__text-sub{
        font-size: clamp(18px,2.3vw,28px);
    }
    .visual__text-name{
        font-size: clamp(20px,2.3vw,28px);
    }
    .visual-swiper .swiper-button-prev, .visual-swiper .swiper-rtl .swiper-button-next{
        left: 15px;
    }
    .visual-swiper .swiper-button-next, .visual-swiper .swiper-rtl .swiper-button-prev{
        right: 15px;
    }

    .main-visual .btn-apply{
        max-width: 200px;
        height: 50px;
        font-size: 14px;
        right: 20px;
    }



}
@media screen and (max-width:1024px) {
    .t_br{
        display: block;
    }
    .footer__inner{
        flex-direction: column;
        align-items: center;
    }
    .logo-sub{
        width: 206px;
    }
    .footer-info__wrap{
        max-width: 360px;
    }
    .footer-info__wrap dl.address .copyright{
        display: none;
    }
    .sns-section .copyright{
        display: block;
        width: 100%;
        margin-left: 0;
        text-align: center;
        margin-top: 15px;
        font-size: 10px;
    }
    .info-section>.logo-main{
        width: 132px;
        margin: 0 auto;
    }
    .footer__menu{
        justify-content: center;
        margin-top: 15px;
        margin-bottom: 20px;
        column-gap: 34px;
    }
    .footer-info__wrap>address{
        column-gap: 20px;
        row-gap: 8px;
    }
    .sns-section{
        width: 100%;
        margin-top: 20px;
    }
    .footer-sns__wrap{
        flex-wrap: wrap;
        justify-content: center;
    }
    .footer .select-box{
        max-width: 200px;
        margin-left: auto;
        margin-right: auto;
    }

    .visual-swiper .swiper-wrapper{
        height: 560px;
    }
    .visual__text-wrap{
        justify-content: flex-start;
        padding-top: 180px;
    }
    .visual-swiper .swiper-horizontal>.swiper-pagination-bullets,
    .visual-swiper .swiper-pagination-bullets.swiper-pagination-horizontal{
        bottom: 80px;
    }
    .main-board__row{
        flex-wrap: wrap;
    }
    .main-notice{
        max-width: initial;
        height: 295px;
    }
    .main-notice__list{
        margin-top: 20px;
    }
    .main-board__row .link-intro{
        max-width: initial;
    }
    .main-board__title{
        font-size: clamp(18px,2.73vw,28px);
        margin-bottom: 8px;
    }
    .main-link__text{
        font-size: 14px;
        line-height: 1.42;
    }
    /* .main-board__row .link-join .main-board__title{
        margin-bottom: 21px;
    } */
    .main-board__row .link-survey::after,
    .main-board__row .link-join::after{
        right:48px;
    }
    .main-board__row .link-survey .main-board__btn-more, .main-board__row .link-join .main-board__btn-more{
        right: 48px;
    }
    .main-board__row .link-intro .main-board__title{
        margin-bottom: 21px;
    }
    .main-board__row .link-intro::after{
        top: 30px;
    }
    .link-intro .main-board__btn-more{
        position: absolute;
        right: 42px;
        bottom: 35px;
    }
}
@media screen and (max-width:768px) {
    /* 공통 */
    .input-error__message{
        font-size: 14px;
    }
    .m_br{
        display: block;
        padding: 0;
    }
    .main{
        min-height: calc(100vh - 50px - 380px);
    }
    .visual-swiper .swiper-slide.slide-1{
        background-position: 70% 0%;
    }
    .visual-swiper .swiper-slide.slide-2{
        background-position: 70% 0%;
    }

    /* main */
    .visual-swiper .swiper-button-prev, .visual-swiper .swiper-rtl .swiper-button-next{
        display: none;
    }
    .visual-swiper .swiper-button-next, .visual-swiper .swiper-rtl .swiper-button-prev{
        display: none;
    }
    .main-board__row .link-survey .main-board__btn-more, .main-board__row .link-join .main-board__btn-more{
        display: none;
    }
    .main-board__row .link-survey, .main-board__row .link-join{
        height: 120px;
    }
    .main-board__row .link-survey>a, .main-board__row .link-join>a{
        padding: 18px 20px;
    }
    .main-board__row .link-survey::after{
        width: 36px;
        height: 36px;
        background-size: 20px;
        right: 20px;
        top: 18px;
    }
    .main-board__row .link-join::after{
        width: 36px;
        height: 36px;
        background-size: 20px;
        right: 20px;
        top: 18px;
    }
    .main-notice{
        padding: 30px 10px;
        height: 249px;
    }
    .main-notice__list>*+*{
        margin-top: 15px;
    }
    .main-notice__item .notice__title{
        max-width: initial;
        font-size: 14px;
        line-height: 1.14;
    }
    .main-notice__item .notice__date{
        display: none;
    }
    .main-board__btn-more{
        width: 54px;
    }
    .main-board__row .link-intro{
        height: 125px;
    }
    .main-board__row .link-intro>a{
        padding: 27px 20px 21px 10px;
    }
    .main-board__row .link-intro::after{
        width: 36px;
        height: 36px;
        background-size: 20px;
        right: 28px;
        top: 26px;
    }
    .link-intro .main-board__btn-more{
        position: absolute;
        right: 10px;
        bottom: 21px;
    }
    .main-link__text{
        font-size: 13px;
    }
    .main-link__text .p_br{
        display: inline;
        padding: 0 0.08em;
    }

    /* 영문 메인 */
    .main-board__list{
        flex-wrap: wrap;
        row-gap: 10px;
    }
    .main-board__list>li{
        flex: none;
        width: 100%;
    }
    .main-board__list>li>a{
        padding: 18px 20px 50px;
    }
}

@media screen and (max-width:500px) {
    .visual-swiper .swiper-slide.slide-1{
        background-image: url(/_img/main/main_slide_1_m.jpg);
    }
    .visual-swiper .swiper-slide.slide-2{
        background-image: url(/_img/main/main_slide_2_m.jpg);
    }
    .visual-swiper .swiper-slide.slide-3{
        background-image: url(/_img/main/main_slide_3_m.jpg);
    }
}

@keyframes arrow{
    0%{
        opacity: 0;
        transform: translateX(-30px);
    }
    100%{
        opacity: 1;
        transform: translateX(0px);
    }
}
@keyframes arrow2{
    0%{
        opacity: 0;
        left: -30px;
    }
    100%{
        opacity: 1;
        left: 0;
    }
}

@keyframes opcity{
    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}

@keyframes scaleRight{
    0%{
        transform: scale(0);
        transform-origin: top right;
    }
    100%{
        transform: scale(1);
        transform-origin: top right;
    }
}