@charset "utf-8";

/* css setting start */
.sec-wrap,
.sec-header,
.sec-content,
.sec-footer {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* contents */
.wr {
    max-width: 1280px;
    margin: 0 auto;
}

.mb20 { margin-bottom: 20px!important;
}

.mb30 {
    margin-bottom: 30px;
}

/* css setting end */


/*=================================================================================
* header
=================================================================================*/
.sec-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    height: 100px;
    text-align: center;
    transition: all ease .5s;
    -webkit-transition: all ease .5s;
    -o-transition: all ease .5s;
    -moz-transition: all ease .5s;
    -ms-transition: all ease .5s;
    overflow: hidden;
}

/* mouseover */
.sec-header.on {
    background: #fff;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.05);
}

.sec-header.on .logo {
    background-image: url(../img/logo-d.svg);
}

.sec-header.on .nav:after {
    display: none;
}

.sec-header.on .nav > li > a > h2 {
    color: #121212;
}

.sec-header .logo {
    display: block;
    width: 280px;
    height: 49px;
    background: url(../img/logo.svg) no-repeat 50%;
    position: absolute;
    left: 50px;
    top: 22px;
}

.sec-header:after {
    opacity: 0;
    transition: all ease .6s;
    -webkit-transition: all ease .6s;
    -o-transition: all ease .6s;
    -moz-transition: all ease .6s;
    -ms-transition: all ease .6s;
}

.sec-header:before {
    content: '';
    width: 100%;
    height: 100px;
    background: rgba(0, 0, 0, .3);
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
    opacity: 1;
    transition: all ease .6s;
    -webkit-transition: all ease .6s;
    -o-transition: all ease .6s;
    -moz-transition: all ease .6s;
    -ms-transition: all ease .6s;
}

.sec-header.active:after {
    content: '';
    width: 320px;
    height: 168px;
    position: absolute;
    bottom: 0;
    right: 12%;
    z-index: -2;
    opacity: 1;
}

.sec-header.active:before {
    opacity: 1;
    background: none;
}

.sec-header.on:before {
    opacity: 1;
    background: #fff;
}

/* menu */
.nav {
    display: inline-block;
}

.nav:after {
    content: '';
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.15);
    position: fixed;
    left: 0;
    top: 100px;
}

.nav h2 {
    font-weight: 400;
    cursor: pointer;
}

.nav h3 {
    font-weight: 400;
}

.nav > li {
    float: left;
}

.nav > li h2 {
    color: #fff;
    font-size: 19px;
    padding: 0 21px;
    line-height: 100px;
    font-weight: 900;
}

.nav > li h3 {
    color: #000;
    font-size: 18px;
    font-weight: 500;
}

.nav > li h3 a {
    transition: all ease .3s;
    -webkit-transition: all ease .3s;
    -o-transition: all ease .3s;
    -moz-transition: all ease .3s;
    -ms-transition: all ease .3s;
}

.nav > li h3 a:hover {
    color: #0B3CAC;
}

.nav > li > a {
    color: #121212;
    font-size: 16px;
}

.nav > li > ul {
    width: 100%;
    height: 0;
    padding: 0;
    overflow: hidden;
    position: absolute;
    top: 100px;
    left: 0;
    text-align: center;
}

.nav > li > ul > li {
    display: inline-block;
    text-align: left;
    padding: 0 25px;
    opacity: 0;
    transition: all ease .6s;
    -webkit-transition: all ease .6s;
    -o-transition: all ease .6s;
    -moz-transition: all ease .6s;
    -ms-transition: all ease .6s;
}

.nav > li > ul > li > h3 {
    margin: 0 0 20px;
}

.nav > li > ul > li > a {
    display: block;
    padding: 5px 0;
    transition: all ease .3s;
    -webkit-transition: all ease .3s;
    -o-transition: all ease .3s;
    -moz-transition: all ease .3s;
    -ms-transition: all ease .3s;
    color: #666;
}

.nav > li > ul > li > a:hover {
    color: #0B3CAC;
}

.nav > li.open h2 {
    position: relative;
    color: #0B3CAC !important;
}

.nav > li.open h2:after {
    content: '';
    width: 100%;
    height: 3px;
    background: #0B3CAC;
    position: absolute;
    left: 0;
    bottom: 0;
}

.nav > li.open ul {
    padding: 30px;
    border-top: 1px solid #eee;
}

.nav > li.open ul > li {
    opacity: 1;
}

/* sitemap */
.btn-category {
    position: absolute;
    top: 36px;
    right: 50px;
    width: 40px;
    height: 24px;
    cursor: pointer;
}

.btn-category .bar {
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    border: 0;
    background: #fff;
    transition: opacity 0.3s, top 0.3s, transform 0.5s;
    transition-delay: 0.3s, 0.3s, 0s;
    border-radius: 0 0 0 10px;
}

.on .btn-category .bar {
    background: #000;
}

.btn-category .bar:nth-child(1) {
    top: 0;
    transform: rotate(0);
}

.btn-category .bar:nth-child(2) {
    top: 11px;
    opacity: 1;
}

.btn-category .bar:nth-child(3) {
    top: 22px;
    transform: rotate(0);
}

.btn-category.map {
    right: 67px;
}

.btn-category.map .bar {
    background: #000;
    transition: background 1s, opacity 0.3s, top 0.3s, transform 0.5s;
    transition-delay: 0s, 0s, 0s, 0.3s;
}

.btn-category.map .bar:nth-child(1) {
    top: 11px;
    background: #000;
    transform: rotate(-45deg);
}

.btn-category.map .bar:nth-child(2) {
    opacity: 0;
}

.btn-category.map .bar:nth-child(3) {
    top: 11px;
    background: #000;
    transform: rotate(45deg);
}

#sitemap {
    position: fixed;
    top: 100px;
    right: -100%;
    width: 100%;
    height: calc(100% - 100px);
    background: #fff;
    padding: 50px 20px;
    z-index: 10;
    transition: all ease .5s;
    -webkit-transition: all ease .5s;
    -o-transition: all ease .5s;
    -moz-transition: all ease .5s;
    -ms-transition: all ease .5s;
    overflow: hidden;
    overflow-y: auto;
}

#sitemap > ul {
    max-width: 1200px;
    overflow: hidden;
    margin: 0 auto;
}

#sitemap > ul > li {
    float: left;
    width: 13.9%;
    padding: 0 10px;
    text-align: center;
}

#sitemap > ul > li h2 {
    font-size: 21px;
    color: #333;
}

#sitemap > ul > li h3 {
    font-size: 16px;
    color: #333;
    font-weight: 500;
    margin: 0 0 10px;
}

#sitemap > ul > li > ul > li {
    margin: 30px 0;
}

#sitemap > ul > li > ul > li > a {
    color: #999;
    font-size: 16px;
    padding: 7px 0;
    display: block;
}

#sitemap > ul > li h3 > a:hover {
    color: #0B3CAC;
}

#sitemap > ul > li > ul > li > a:hover {
    color: #0B3CAC;
}

#sitemap.open {
    right: 0;
}

.sec-header.stm-hd {
    background: #fff;
}

.sec-header.stm-hd .logo {
    background-image: url(..//logo-d.svg);
}

.sec-header.stm-hd .nav {
    display: none;
}

.sec-header.stm-hd .join {
    display: none;
}

.scr {
    overflow-y: hidden;
}

.join {
    position: absolute;
    top: 37px;
    right: 7%;
}
.join em { /*margin: 0 10px; display: inline-block; color: #e1e1e1; padding-top: 3px;*/ display: none; }

.join a {
    position: relative;
	color: #121212;
	font-size: 16px;
    background-color: #DAE9FF;
    border-radius: 20px;
    padding: 8px 20px 5px;
    margin-left: 10px;
	font-weight: 700;
}

.join a.active {
    opacity: 1;
}
.sec-header.on .join a {
	color: #fff;
    background-color: #121212;
}

/* quick */
.quick-menu {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 60px;
    opacity: 0;
    transition: all ease .6s;
    z-index: 8;
    visibility: hidden;
}

.quick-menu.on {
    opacity: 1;
    visibility: visible;
}

.quick-menu a {
    cursor: pointer;
    margin: 10px 0 0;
    display: block;
}

.quick-menu .qm-cu {
    background: #dee8fe;
    color: #000;
    border-radius: 50%;
    text-align: center;
    font-size: 13px;
    width: 60px;
    height: 60px;
    padding: 18px 0 0;
    line-height: 1.2;
    font-weight: 500;
}


/*=================================================================================
* main
=================================================================================*/
#main .cont-wr {
    padding: 100px 20px 100px;
}

#main .main-tit {
    font-size: 21px;
    color: #333;
    font-weight: 500;
    text-align: center;
    line-height: 1.5;
    margin: 0 0 60px;
}

#main .main-tit small {
    color: #121212;
    font-size: 36px;
    display: block;
    font-weight: 900;
    margin: 0 0 20px;
}

/* main-visual */
#main .main-slide {
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: block;
    z-index: 0;
    position: relative;
}

#main .main-bg-1 {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    overflow: hidden;
    display: block;
}

#main .main-bg-2 {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    overflow: hidden;
    display: block;
}

/* #main .main-bg-1 .m-bg { background: url(../img/main_visual_01.jpg) no-repeat 50% 50%;  background-size: cover; position: relative; }
#main .main-bg-2 .m-bg { background: url(../img/main_visual_02.jpg) no-repeat 50% 50%;  background-size: cover; position: relative; } */
#main .main-slide .slick-slide .m-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 1;
    -ms-transform: scale(1.2, 1.2);
    -webkit-transform: scale(1.2, 1.2);
    -webkit-transition: transform 3s ease-out, opacity 1s ease 0.3s;
    transition: transform 3s ease-out, opacity 1s ease 0.3s;
}

#main .slide-active.main-bg-1.slick-slide.slick-current.slick-active.active .m-bg {
    opacity: 1;
    -ms-transform: scale(1, 1) rotate(.001deg);
    -webkit-transform: scale(1, 1) rotate(.001deg);
    transform: scale(1, 1) rotate(.001deg);
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
}

#main .slide-active.main-bg-2.slick-slide.slick-current.slick-active.active .m-bg {
    opacity: 1;
    -ms-transform: scale(1, 1) rotate(.001deg);
    -webkit-transform: scale(1, 1) rotate(.001deg);
    transform: scale(1, 1) rotate(.001deg);
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
}

#main .slide-active.slick-slide.slick-current.slick-active.active .cont {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    z-index: 2;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    transform: translate(-50%, -50%);
}

#main .main-slide {
    width: 100%;
    overflow: hidden;
}

#main .main-slide .slick-dots {
    bottom: 100px;
    z-index: 4;
    display: none;
}

@keyframes scale {
    0% {
        background-size: 100%;
        transition: background-size 2s ease-in;
        -moz-transition: background-size 2s ease-in;
        -web-kit-transition: background-size 2s ease-in
    }

    100% {
        background-size: 120%;
        transition: background-size 2s ease-in;
        -moz-transition: background-size 2s ease-in;
        -web-kit-transition: background-size 2s ease-in
    }
}

#main .main-visual {
    position: relative;
    height: 100vh;
    background: url("../img/visual_bg.jpg") center center no-repeat;
    background-size: cover;
}

#main .main-visual .slide-text {
    position: absolute;
    left: 15%;
    top: 200px;
    width: 70%;
    z-index: 2;
    color: #fff;
    text-align: center;
}

#main .main-visual .slide-text h2 {
    margin-bottom: 30px;
}

#main .main-visual .slide-text h3 {
    margin-bottom: 30px;
}

#main .main-visual .slide-text h4 {
    margin-bottom: 15px;
}

#main .main-visual .slide-text p {
    margin-bottom: 15px;
}

#main .main-visual .slide-text span {
    display: block;
    margin-bottom: 15px;
}

#main .main-visual .slide-text em {
    display: block;
}

#main .main-visual .logo-box {
    width: 240px;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 60px;
    padding: 10px 0;
    display: flex;
	justify-content: center;
}

#main .main-visual .logo-box div {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: 10px 0;
    width: 50%;
}

#main .main-visual .logo-box strong {
    color: #121212;
    font-size: 26px;
    font-weight: 700;
    width: 80px;
    position: relative;

}

#main .main-visual .logo-box strong::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 2px;
    width: 42px;
    height: 8px;
    border-radius: 4px;
    background-color: #2C29BA;
    opacity: 0.3;
}

#main .main-visual .logo-box span {
    width: 100%;
    margin-bottom: 0;
}

#main .main-visual .logo-box span img {
    margin-right: 20px;
}

#main .main-slide .slick-arrow {
    content: '';
    width: 40px;
    height: 77px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    opacity: .5;
}

#main .main-slide .slick-arrow:hover {
    opacity: 1;
}

#main .main-slide .slick-next {
    background: url('../img/btn/mv-arr-next.png') no-repeat center center;
    right: 50px;
}

#main .main-slide .slick-prev {
    background: url('../img/btn/mv-arr-prev.png') no-repeat center center;
    left: 50px;
}


#main .bbs-slider {
    padding: 20px;
    float: left;
    width: calc(100% - 130px);
    padding-right: 100px;
}

#main .bbs-slider .slick-arrow {
    width: 9px;
    height: 8px;
    top: 20px;
    right: 0;
    margin-left: 0;
    left: auto;
    transform: none;
    opacity: 0.5;
}

#main .bbs-slider .slick-arrow:hover {
    opacity: 1;
}

#main .bbs-slider .slick-next {
    background: url('../img/btn/tr-arr-down.png') no-repeat center center;
    bottom: 20px;
    top: auto;
}

#main .bbs-slider .slick-prev {
    background: url('../img/btn/tr-arr-up.png') no-repeat center center;
    top: 20px;
}

#main .slick-prev:before,
#main .slick-next:before {
    display: none;
}

/* cont 01 */
#main .cont-01 {
    background: #181662;
}

#main .cont-01 .wr {
    display: flex;
    justify-content: space-between;
}

#main .cont-01 .wr div {
    width: 46%;
}

#main .cont-01 .wr div h3 {
    text-align: left;
}

#main .cont-01 .wr div h3 small {
    color: #fff;
}

#main .cont-01 .wr .review-box {
    position: relative;
}

#main .cont-01 .wr .review-box a {
    position: absolute;
    right: 0;
    top: 8px;
    color: #999;
}

#main .cont-01 .wr .review-box .review {
    position: relative;
}

#main .cont-01 .wr .review-box .review::before {
    content: "";
    position: absolute;
    left: 0;
    top: 165px;
    width: 50%;
    height: 5px;
    background-color: #3051C1;
}

#main .cont-01 .wr .review-box .review h4 {
    font-size: 37px;
    margin-bottom: 50px;
    line-height: 46px;
    color: #fff;
}

#main .cont-01 .wr .review-box .review h4 span {
    font-size: 18px;
    font-weight: normal;
    color: #999;
}

#main .cont-01 .wr .review-box .review .thumb {
    position: absolute;
    right: 0;
    top: 0;
    width: 130px;
    margin: 0;
}

#main .cont-01 .wr .review-box .review span {
    font-size: 21px;
    color: #fff;
    margin-bottom: 10px;
}

#main .cont-01 .wr .review-box .review span em {
    margin-right: 5px;
    font-weight: 700;
}

#main .cont-01 .wr .review-box .review p {
    color: #999;
}

#main .cont-01 .wr .review-box .review {
    width: 100%;
}

#main .cont-01 .wr .mov-box .mov {
    width: 100%;
    height: 330px;
}

/* cont 04 */
#main .cont-04 {
background-color: #f7f7f7;
}

/* cont 02 */
#main .cont-02 {
  background: #f7f7f7;
}

#main .cont-02 ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

#main .cont-02 ul li {
    width: 31%;
    margin: 1%;
}

#main .cont-02 ul li span {
    display: block;
    border-radius: 15px;
    background-color: #C0E0FF;
    overflow: hidden;
    text-align: center;
    height: 180px;
    margin-bottom: 20px;
	position: relative
}
#main .cont-02 ul li span em {
	margin-top: 10px;
    background-color: #121212;
    color: #fff;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    position: absolute;
    right: 15px;
    top: 5px;
}
#main .cont-02 ul li span img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

#main .cont-02 ul li h3 {
    font-size: 21px;
    margin-bottom: 12px;
    color: #121212;
    font-weight: 700;
    position: relative;
}
#main .cont-02 ul li h3 a {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 14px;
    height: 30px;
    line-height: 30px;
    padding: 0 12px;
    border-radius: 4px;
    background: #3051C1;
    color: #fff;

}
#main .cont-02 ul li p {
    font-size: 17px;
    color: #999;
}

/* cont 03 */
#main .cont-03 {
    
}

#main .cont-03 ul {
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
}

#main .cont-03 ul li {
    width: 31%;
    /* background-color: #D8E5FC; */
    border-radius: 15px;
    padding: 30px 20px;
    margin: 1%;
}

#main .cont-03 ul li span {
    /* width: 80%;
    height: 150px;
    margin: 0 auto 30px;
    display: block; */
    width: 100%;
    height: 150px;
    margin: 0 auto 30px;
    display: block;
    background-color: #E5F4FF;
    border-radius: 15px;
}

#main .cont-03 ul li span img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

#main .cont-03 ul li h3 {
    font-size: 21px;
    margin-bottom: 12px;
    color: #121212;
    font-weight: 700;
	text-align: center;
}

#main .cont-03 ul li p {
    font-size: 17px;
    color: #121212;
}

#main .main-bn,
#sub .main-bn {
    background: url('../img/foot_cont_bg.jpg') no-repeat center center / cover;
    padding: 100px 20px;
    text-align: center;
    background-attachment: fixed;
}

.main-bn p {
    color: #fff;
    font-size: 32px;
    margin-bottom: 20px;
}

.main-bn a {
    background: #0B3CAC;
    font-size: 15px;
    display: block;
    max-width: 200px;
    width: 100%;
    margin: 20px auto 0;
    color: #E6FFFE;
    border-radius: 3px;
    padding: 12px 0;
    font-weight: 500;
    transition: all ease .5s;
    -webkit-transition: all ease .5s;
    -ms-transition: all ease .5s;
    -o-transition: all ease .5s;
}

.main-bn a:hover {
    background: #071b49;
    color: #fff;
}

.main-bn span.bn-tit,
.main-bn span.bn-text {
    color: #fff;
    display: block;
}

.main-bn span.bn-tit {
    font-size: 32px;
    margin-bottom: 10px;
}

.main-bn span.bn-text {
    font-size: 16px;
}

/* login */
.login-top {
    height: 200px;
    background: url("../img/sub_visual_01.jpg") no-repeat center center / cover;
}

#login_cnt .cntbox {
    padding: 50px 0;
    border: 1px solid #e1e1e1;
}

#login_cnt .cntbox form {
    margin-bottom: 30px;
    width: 740px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}

#login_cnt .cntbox .form {
    width: 580px;
}

#login_cnt .cntbox .form dl {
    padding: 20px 0;
    border-bottom: solid 1px #e1e1e1;
}

#login_cnt .cntbox .form dl:last-child {
    border-bottom: none;
}

#login_cnt .cntbox .form dt {
    float: left;
    font-size: 16px;
    color: #292929;
    height: 40px;
    line-height: 40px;
}

#login_cnt .cntbox .form dd {
    margin-left: 120px;
}

#login_cnt .cntbox .form dd input {
    border: 1px solid #e1e1e1;
    height: 42px;
    line-height: 42px;
    padding: 0 10px;
    width: 100%;
    font-size: 16px;
}

#login_cnt .cntbox .btn_login {
    width: 126px;
    padding: 20px 0;
}

#login_cnt .cntbox .btn_login a {
    display: flex;
    width: 100%;
    height: 126px;
    background-color: #0B3CAC;
    text-align: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    border-radius: 3px;
    align-items: center;
}

#login_cnt .content_support {
    width: 740px;
    overflow: hidden;
    margin: 0 auto;
    padding: 30px 0 20px;
}

#login_cnt .content_support .box {
    float: left;
    width: 40%;
    text-align: center;
}

#login_cnt .content_support .box p {
    text-align: center;
    font-size: 16px;
    line-height: 1.35em;
    letter-spacing: -0.05em;
    color: #6a6a6a;
    margin-bottom: 20px;
}

#login_cnt .content_support .box a {
    display: inline-block;
    background-color: #0B3CAC;
    color: #fff;
    height: 40px;
    line-height: 40px;
    text-align: center;
    letter-spacing: -0.05em;
    margin-top: 10px;
    padding: 0 25px;
    border-radius: 3px;
}

/*=================================================================================
* 아이디찾기 & 비밀번호찾기
=================================================================================*/
#login_cnt .cntbox .form dd.email_area {
    width: 460px;
    overflow: hidden;
}

#login_cnt .cntbox .form dd.email_area .input {
    float: left;
}

#login_cnt .cntbox .form dd.email_area .input input[type="text"] {
    font-size: 15px;
    width: 145px;
    border: 1px solid #e1e1e1;
    padding: 10px 10px;
    height: 42px;
    line-height: 42px;
}

#login_cnt .cntbox .form dd.email_area span {
    float: left;
    display: block;
    font-size: 15px;
    color: #6a6a6a;
    width: 28px;
    height: 42px;
    line-height: 42px;
    text-align: center;
}

#login_cnt .cntbox .form dd.email_area .select {
    position: relative;
    border: 1px solid #d3d3d3;
    float: right;
    width: 125px;
    height: 42px;
    line-height: 42px;
    background-color: #fff;
    background-repeat: no-repeat;
    background-position: right 50%;
    background-image: url(../img/select_arrow.svg);
}

#login_cnt .cntbox .form dd.email_area .select label {
    position: absolute;
    font-size: 15px;
    color: #343434;
    top: 8px;
    left: 12px;
    line-height: 1.35em;
    color: #a5a5a5;
}

#login_cnt .cntbox .form dd.email_area .select select {
    width: 100%;
    height: 38px;
    min-height: 38px;
    line-height: 38px;
    padding: 0 10px;
    border: 0;
    opacity: 0;
    filter: alpha(opacity=0);
    font-size: 14px;
    color: #343434;
    cursor: pointer;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
}

#login_cnt .cntbox .form dd.email_view {
    height: 40px;
    line-height: 40px;
}

#login_cnt .cntbox .form dd.email_view p {
    font-size: 20px;
    color: #292929;
}

/*=================================================================================
* 회원가입
=================================================================================*/
#register_cnt {
    padding-bottom: 150px;
}

#register_cnt .register_step {
    padding: 20px 0;
    border-top: 1px solid #e1e1e1;
    border-bottom: 1px solid #e1e1e1;
    margin-bottom: 34px;
}

#register_cnt .register_step ul {
    display: flex;
    justify-content: space-around;
}

#register_cnt .register_step ul li {
    display: flex;
    align-items: center;
}

#register_cnt .register_step ul li::after {
    content: "";
    width: 32px;
    height: 57px;
    background: url("../img/arrow_next.svg") no-repeat;
    margin-left: 100px;
}

#register_cnt .register_step ul li:last-child::after {
    display: none;
}

#register_cnt .register_step ul li span {
    margin-right: 20px;
}

#register_cnt .register_step ul li h3 {
    display: flex;
    flex-direction: column;
    font-size: 21px;
    color: #999;
}

#register_cnt .register_step ul li h3 small {
    font-size: 14px;
    font-weight: 500;
}

#register_cnt .register_step ul li h3.active {
    color: #1a1a1a;
}

#register_cnt .temp_box {
    border: 1px solid #e1e1e1;
    padding: 43px;
    margin-bottom: 35px;
}

#register_cnt .temp_box dl {
    background-repeat: repeat-x;
    background-position: left bottom;
    background-image: url(../img/sub/line_dotted.jpg);
    padding-bottom: 35px;
    margin-bottom: 45px;
}

#register_cnt .temp_box dt {
    font-size: 20px;
    height: 40px;
    font-weight: 700;
    color: #292929;
    letter-spacing: -0.025em;
}

#register_cnt .temp_box dd {}

#register_cnt .temp_box dd.textarea {
    border: 1px solid #e1e1e1;
    padding: 18px 25px;
    height: 200px;
    overflow-y: auto;
    font-size: 14px;
    color: #696969;
    line-height: 20px;
    margin-bottom: 20px;
    letter-spacing: -0.005em;
}

#register_cnt .temp_box dd.textarea .textbox {}

#register_cnt .temp_box dd.agree {
    text-align: right;
}

#register_cnt .temp_box dd.agree label {
    display: inline-block;
    font-size: 15px;
    letter-spacing: -0.025em;
    color: #292929;
    height: 35px;
    line-height: 35px;
    background-repeat: no-repeat;
    background-position: right top;
    background-image: url(../img/img_checkbox.svg);
    padding-right: 55px;
    cursor: pointer;
}

#register_cnt .temp_box dd.agree input {
    display: none;
}

#register_cnt .temp_box dd.agree input:checked + label {
    background-image: url(../img/img_checkbox_on.svg);
}

#register_cnt .temp_box dl.last {
    background: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

#register_cnt .button_area {
    text-align: center;
}

#register_cnt .button_area a {
    display: block;
    height: 65px;
    line-height: 65px;
    background-color: #0B3CAC;
    font-size: 18px;
    text-align: center;
    text-decoration: none;
    color: #fff;
    border-radius: 10px;
}

#register_cnt .button_area div.btn_register_ok {
    width: 260px;
    margin: 0 auto;
}

/** formbox **/
#register_cnt .formbox {
    border: 1px solid #e1e1e1;
    padding: 29px 44px;
    margin-bottom: 40px;
}

#register_cnt .formbox dl {
    width: 100%;
    overflow: hidden;
    padding: 22px 0 18px 0;
    border-bottom: solid 1px #e1e1e1;
}

#register_cnt .formbox dl.last {
    background: none;
}

#register_cnt .formbox dl dt,
#register_cnt .formbox dl dd {
    font-size: 15px;
}

#register_cnt .formbox dl dt {
    float: left;
    color: #292929;
    font-weight: 700;
    padding-top: 10px;
}

#register_cnt .formbox dl dt span {
    margin-left: 5px;
    color: #D7092F;
}

#register_cnt .formbox dl dd {
    position: relative;
    margin-left: 177px;
    color: #6a6a6a;
}

#register_cnt .formbox dl dd .notes {
    font-size: 12px;
    color: #696969;
    font-weight: 700;
    padding-top: 7px;
    line-height: 1.5em;
}

#register_cnt .formbox dl dd input[type="text"] {
    font-sizE: 15px;
    border: 1px solid #e1e1e1;
    width: 690px;
    padding: 10px 10px;
    height: 35px;
    line-height: 35px;
    color: #6a6a6a;
}

#register_cnt .formbox dl dd input[type="password"] {
    font-sizE: 15px;
    border: 1px solid #e1e1e1;
    width: 690px;
    padding: 10px 10px;
    height: 35px;
    line-height: 35px;
}

#register_cnt .formbox dl dd input.w180px {
    width: 160px;
}

#register_cnt .formbox dl dd input.w200px {
    width: 180px;
}

#register_cnt .formbox dl dd input.w255px {
    width: 235px;
}

#register_cnt .formbox dl dd input.w260px {
    width: 240px;
}

#register_cnt .formbox dl dd input.w280px {
    width: 260px;
}

#register_cnt .formbox dl dd input.w435px {
    width: 415px;
}

#register_cnt .button_area a.btn_register_ok {
    width: 260px;
    margin: 0 auto;
}

#register_cnt .formbox dl dd #id_check {
    position: absolute;
    right: 0;
    top: 0;
}

/* 이메일주소 */
#register_cnt .formbox dl dd.email_area {}

#register_cnt .formbox dl dd.email_area .inwrap {
    width: 100%;
    overflow: hidden;
}

#register_cnt .formbox dl dd.email_area .input {
    float: left;
}

#register_cnt .formbox dl dd.email_area span {
    float: left;
    display: block;
    width: 28px;
    height: 40px;
    line-height: 40px;
    text-align: center;
}

#register_cnt .formbox dl dd .select {
    position: relative;
    border: 1px solid #d3d3d3;
    float: left;
    width: 182px;
    height: 35px;
    line-height: 35px;
    background-color: #fff;
    background-repeat: no-repeat;
    background-position: right 50%;
    background-image: url(../img/select_arrow.svg);
}

#register_cnt .formbox dl dd .select label {
    position: absolute;
    font-size: 15px;
    color: #343434;
    top: 8px;
    left: 12px;
    line-height: 1.35em;
}

#register_cnt .formbox dl dd .select select {
    width: 100%;
    height: 35px;
    min-height: 35px;
    line-height: 35px;
    padding: 0 10px;
    border: 0;
    opacity: 0;
    filter: alpha(opacity=0);
    font-size: 14px;
    color: #343434;
    cursor: pointer;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
}

#register_cnt .formbox dl dd.email_area .select {
    margin-left: 15px;
}

#register_cnt .formbox dl dd.email_area .btn_check {
    float: right;
}

/* 주소 */
#register_cnt .formbox dl dd.address_area {
    position: relative;
}

#register_cnt .formbox dl dd.address_area .post1 {
    margin-bottom: 10px;
}

#register_cnt .formbox dl dd.address_area .add1 {
    margin-bottom: 10px;
}

#register_cnt .formbox dl dd.address_area .btn_post {
    position: absolute;
    right: 0;
    top: 0px;
}

/* 지역번호 */
#register_cnt .formbox dl dd.p_number_area {}

#register_cnt .formbox dl dd.p_number_area .area_code {
    position: relative;
    border: 1px solid #d3d3d3;
    float: left;
    margin-left: 15px;
    width: 182px;
    height: 38px;
    line-height: 38px;
}

#register_cnt .formbox dl dd.p_number_area .area_code .select {
    width: 198px;
}

#register_cnt .formbox dl dd.p_number_area span {
    float: left;
    display: block;
    width: 31px;
    height: 40px;
    line-height: 40px;
    text-align: center;
}

#register_cnt .formbox dl dd.p_number_area .input {
    float: left;
}

/* 최종학력 */
#register_cnt .formbox dl dd.ac_area {}

#register_cnt .formbox dl dd.ac_area span {
    float: left;
    width: 57px;
    text-align: left;
    height: 40px;
    line-height: 40px;
}

#register_cnt .formbox dl dd.ac_area span.txt2 {
    width: 40px;
    margin-left: 30px;
}

#register_cnt .formbox dl dd.ac_area .input {
    float: left;
}

#register_cnt .formbox dl dd.ac_area .select {
    float: left;
    width: 142px;
    margin-right: 10px;
}

#register_cnt .formbox dl dd.ac_area .info00 {
    overflow: hidden;
    float: left;
}

#register_cnt .formbox dl dd.ac_area .info01,
#register_cnt .formbox dl dd.ac_area .info02,
#register_cnt .formbox dl dd.ac_area .info03 {
    width: 100%;
    overflow: hidden;
}

#register_cnt .formbox dl dd.ac_area .info01 {
    margin-bottom: 12px;
}

#register_cnt .formbox dl dd.ac_area .info02 {
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: solid 1px #e1e1e1;
}

#register_cnt .formbox dl dd.ac_area .info02 input,
#register_cnt .formbox dl dd.ac_area .info00 input {
    display: none;
}

#register_cnt .formbox dl dd.ac_area .info02 label,
#register_cnt .formbox dl dd.ac_area .info00 label {
    float: left;
    display: inline-block;
    margin-right: 25px;
    height: 35px;
    line-height: 35px;
    padding-left: 40px;
    background-repeat: no-repeat;
    background-position: left top;
    background-image: url(../img/img_checkbox.svg);
    cursor: pointer;
}

#register_cnt .formbox dl dd.ac_area .info02 input:checked + label,
#register_cnt .formbox dl dd.ac_area .info00 input:checked + label {
    background-image: url(../img/img_checkbox_on.svg);
}

#register_cnt .formbox dl dd.ac_area .info03 {}

#register_cnt .formbox dl dd.ac_area span.txt3 {
    width: 55px;
}

#register_cnt .formbox dl dd.ac_area .info03 .input {
    margin-right: 18px;
}

#register_cnt .formbox dl dd.ac_area .info03 .select {
    width: 140px;
}

#register_cnt .formbox dl dd.ac_area .info03 .txt_year {
    width: 60px;
    padding-left: 10px;
}

#register_cnt .formbox dl dd.ac_area .info03 .txt_month {
    padding-left: 10px;
}

/** complete_box **/
#register_cnt .complete_box {
    padding: 94px 43px 119px 43px;
    border: 1px solid #e1e1e1;
}

#register_cnt .complete_box .textbox {
    padding: 38px 0 0 0;
    height: 90px;
    margin-bottom: 66px;
    text-align: center;
}

#register_cnt .complete_box .textbox p {
    display: inline-block;
    font-size: 25px;
    color: #292929;
    letter-spacing: -0.025em;
    height: 55px;
    line-height: 55px;
}

#register_cnt .complete_box .button_area {
    width: 100%;
    overflow: hidden;
    text-align: center;
}

#register_cnt .complete_box a.btn_login_move,
#register_cnt .complete_box a.btn_main_move {
    display: inline-block;
    height: 65px;
    line-height: 65px;
    padding: 0 20px;
    background-color: #0B3CAC;
    font-size: 18px;
    text-align: center;
    text-decoration: none;
    color: #fff;
    border-radius: 10px;
    margin: 0 10px;
}

.text-group {
    margin-bottom: 50px;
}

.text-group p strong {
    font-size: 21px;
    font-weight: 500;
    color: #121212;
}

.thumb {
    margin: 40px 0;
}


/*=================================================================================
* footer
=================================================================================*/
.sec-footer {
    background: #222;
    color: #999;
    font-size: 14px;
    padding: 20px 20px 50px;
}

.ft-link {
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ft-link a {
    display: inline-block;
    margin-right: 20px;
    color: #999;
}

.ft-link a:first-child {
    color: #fff;
    font-weight: 400;
}

.ft-info {
    padding: 20px 0;
    position: relative;
    display: flex;
    justify-content: space-between;
}

.ft-info div {
    width: 100%;
}

.ft-info .copy {
    margin: 10px 0 0;
}

.ft-info p span {
    color: #666;
}

.ft-info p strong {
    font-weight: 800 !important;
    margin-bottom: 10px;
}

.ft-info a {
    color: #C3CCFF;
}
.ft-info div .title { background-color: #264AC4; padding: 5px 10px; color: #fff; border-radius: 20px; vertical-align: middle; margin: 3px 0; margin-right: 10px;  }

.family-site {
    position: absolute;
    right: 0;
    top: 20px;
    z-index: 2;
}

.family-site p {
    padding: 15px 100px 15px 15px;
    border: 1px solid #999;
    cursor: pointer;
    background: url(../img/btn/sel-arr.png) no-repeat right 15px center;
}

.family-site u l {
    background: #fff;
    position: absolute;
    bottom: 53px;
    width: 100%;
    padding: 10px 0;
    display: none;
    border: 1px solid #ddd;
}

.family-site ul li a {
    display: block;
    padding: 7px 20px;
    color: #999;
}

.family-site ul li a:hover {
    color: #333;
}


/*=================================================================================
* sub
=================================================================================*/
.sub-visual {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.sub-visual:after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    background-size: cover;
    background-position: center center;
    animation-duration: 3s;
    animation-fill-mode: both;
    animation-iteration-count: 1;
    animation-timing-function: ease;
    -webkit-animation-duration: 3s;
    -webkit-animation-fill-mode: both;
    -webkit-animation-iteration-count: 1;
    -webkit-animation-timing-function: ease;
    animation-delay: 0.4s;
    -webkit-animation-delay: 0.4s;
    animation-name: visual-zoom;
    -webkit-animation-name: visual-zoom;
}

.subv-1:after {
    background-image: url('../img/sub_visual_01.jpg');
}

.subv-2:after {
    background-image: url('../img/sub_visual_02.jpg');
}

.subv-3:after {
    background-image: url('../img/sub_visual_03.jpg');
}

.subv-4:after {
    background-image: url('../img/sub_visual_04.jpg');
}

.subv-5:after {
    background-image: url('../img/sub_visual_05.jpg');
}

.subv-6:after {
    background-image: url('../img/sub_visual_06.jpg');
}

.sub-visual h1 {
    font-size: 32px;
    color: #fff;
    padding: 200px 20px 120px;
    text-align: center;
    font-weight: 500;
}

.sub-visual h1 span,
.sub-visual h1 p {
    animation-duration: 0.7s;
    animation-fill-mode: both;
    animation-iteration-count: 1;
    animation-timing-function: ease;
    -webkit-animation-duration: 0.7s;
    -webkit-animation-fill-mode: both;
    -webkit-animation-iteration-count: 1;
    -webkit-animation-timing-function: ease;
    animation-delay: 0.3s;
    -webkit-animation-delay: 0.3s;
    animation-name: visual-tit;
    -webkit-animation-name: visual-tit;
}

.sub-visual h1 p {
    animation-delay: 0.8s;
    -webkit-animation-delay: 0.8s;
}

.sub-visual h1 p {
    font-size: 21px;
    margin: 10px 0 0;
}

.sub-depth-1 {
    position: absolute;
    bottom: 0;
    left: 0;
    background: rgba(11, 60, 172, 0.6);
    width: 100%;
}

.sub-depth-1 ul {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

.sub-depth-1 li {
    float: left;
}

.sub-depth-1 li:only-child {
    width: 100%;
}

/* 메뉴가 하나일 때 선택 */
.sub-depth-1 li:first-child:nth-last-child(2),
/* 메뉴가 둘 일 때, 1번 메뉴 선택 */
.sub-depth-1 li:first-child:nth-last-child(2) + li {
    width: 50%;
}

/* 메뉴가 둘 일 때, 2번 메뉴 선택 */
.sub-depth-1 li:first-child:nth-last-child(3),
/* 메뉴가 셋 일 때, 1번 메뉴 선택 */
.sub-depth-1 li:first-child:nth-last-child(3) ~ li {
    width: 33.33%;
}

/* 메뉴가 셋 일 때, 2~3번째 메뉴 선택 */
.sub-depth-1 li:first-child:nth-last-child(4),
/* 메뉴가 넷 일 때, 1번 메뉴 선택 */
.sub-depth-1 li:first-child:nth-last-child(4) ~ li {
    width: 25%;
}

/* 메뉴가 넷 일 때, 2~4번째 메뉴 선택 */
.sub-depth-1 li:first-child:nth-last-child(5),
/* 메뉴가 넷 일 때, 1번 메뉴 선택 */
.sub-depth-1 li:first-child:nth-last-child(5) ~ li {
    width: 20%;
}

/* 메뉴가 넷 일 때, 2~4번째 메뉴 선택 */
.sub-depth-1 li a {
    display: block;
    color: #fff;
    text-align: center;
    line-height: 70px;
    position: relative;
    transition: all ease .4s;
    -webkit-transition: all ease .4s;
    -ms-transition: all ease .4s;
    -o-transition: all ease .4s;
    font-size: 19px;
}

.sub-depth-1 li a:hover {
    color: #dee8fe;
}

.sub-depth-1 li.active a {
    background: #fff;
    color: #333;
    font-weight: 700;
    font-size: 20px;
}

.sub-depth-1 li a:before {
    content: '';
    width: 1px;
    height: 12px;
    background: rgba(255, 255, 255, 0.2);
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -6px;
}

.sub-depth-1 li:last-child a:before,
.sub-depth-1 li.active a:before {
    display: none;
}

.sub-depth-2 {
    text-align: center;
    border-bottom: 1px solid #ddd;
}

.sub-depth-2 a {
    display: inline-block;
    line-height: 70px;
    margin: 0 20px;
    padding: 0 10px;
    font-size: 18px;
    color: #666;
    position: relative;
}

.sub-depth-2 a.active {
    color: #333;
}

.sub-depth-2 a.active:after {
    content: '';
    width: 0;
    height: 3px;
    background: #dee8fe;
    position: absolute;
    left: 50%;
    bottom: -1px;
    animation-duration: 0.3s;
    animation-fill-mode: both;
    animation-iteration-count: 1;
    animation-timing-function: ease;
    -webkit-animation-duration: 0.3s;
    -webkit-animation-fill-mode: both;
    -webkit-animation-iteration-count: 1;
    -webkit-animation-timing-function: ease;
    animation-delay: 0.3s;
    -webkit-animation-delay: 0.3s;
    animation-name: sub-tab-line;
    -webkit-animation-name: sub-tab-line;
}

.fair-info {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
}

.fair-info .box {
    background: #f8f8f8;
    padding: 80px 40px;
    width: calc(100% - 600px);
}

.fair-info .box dl {
    margin-bottom: 30px;
    font-size: 24px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}

.fair-info .box dt {
    width: 160px;
    font-weight: bold;
}

.fair-info .box dd {
    flex: 1;
}

.fair-info .box dd a {
    text-decoration: underline;
}

.fair-info .box dd .ico-link {
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 10px;
    background: url(../img/ico-link.svg) center no-repeat;
}

.fair-info .box-poster {
    width: 600px;
    height: 780px;
    background: #333;
    overflow: hidden;
}

.fair-info .box-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/*=================================================================================
* common
=================================================================================*/
.review-slider .slick-slide {
    padding: 5px;
}


/* sub css */
#sub {
    overflow: hidden;
}

#sub .center {
    text-align: center;
}

#sub .sub-text li {
    font-size: 16px;
    color: #666;
    font-weight: 300;
    line-height: 21px;
    margin: 7px 0;
}

#sub .sub-text li {
    padding-left: 20px;
    background: url("../img/list_dot.svg") 0 9px no-repeat;
    vertical-align: top;
}

/* bg */
#sub .bg-navy {
    background: #243a5e;
}

#sub .bg-navy .cont-tit h2 {
    color: #fff;
}

#sub .bg-navy .cont-tit p {
    color: #fff;
}


/* color */
#sub .blue-t {
    color: #0B3CAC;
    vertical-align: baseline;
}

#sub .red-text {
    color: #FF2900;
}

/* margin */
#sub .mt-120 {
    margin-top: 120px;
}

#sub .mb-120 {
    margin-bottom: 120px;
}

#sub .mt-10 {
    margin-top: 10px !important;
}

#sub .pt-0 {
    padding-top: 0;
}

#sub .con-tab.pt-0 {
    padding-top: 0;
}

#sub .pl-10 {
    padding-left: 10px !important;
}

/* btn */
.career-btn {
    display: block;
    margin: 0 auto;
    max-width: 250px;
    text-align: center;
    background: #0B3CAC;
    color: #fff;
    padding: 15px 0;
    font-size: 18px;
}

.btn-view {
    display: inline-block;
    padding: 0 12px;
    border-radius: 5px;
    height: 30px;
    line-height: 30px;
    background-color: #0B3CAC;
    color: #E6FFFE;
    vertical-align: middle
}

.btn-wr {
    margin: 30px 0 50px;
}

.btn-wr a {
    padding: 15px 25px;
    background-color: #0B3CAC;
    color: #E6FFFE;
    font-size: 18px;
    font-weight: 700;
    border-radius: 5px;
    width: 320px;
    display: block;
    margin: 0 auto;
    text-align: center;
}

.btn-wr-inline {
    margin: 50px 0;
    text-align: center;
}

.btn-wr-inline a {
    padding: 15px 25px;
    background-color: #0B3CAC;
    color: #E6FFFE;
    font-size: 18px;
    font-weight: 700;
    border-radius: 5px;
    width: 320px;
    display: inline-block;
}

/* sub title css */
#sub .cont-tit {
    margin: 0 auto 50px;
    overflow: hidden;
}

#sub .cont-tit h2 {
    font-size: 32px;
    color: #333;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 auto;
}

#sub .cont-tit h3 {
    font-size: 24px;
    color: #333;
    font-weight: 500;
    line-height: 1.4;
    margin: 0 auto 20px;
}

#sub .cont-tit p {
    font-size: 17px;
    margin: 25px 0 0;
    color: #666;
}

#sub .cont-tit small {
    font-size: 20px;
    color: #0B3CAC;
    margin: 0 0 15px;
    display: block;
    font-weight: 500;
}

#sub .cont-tit .point {
    font-size: 20px;
    line-height: 34px;
}

#sub .cont-wr {
    padding: 80px 0;
}

#sub .md-tit {
    font-size: 24px;
    color: #333;
    font-weight: 500;
    margin: 0 0 10px;
}

#sub .sm-tit {
    margin: 0 0 40px;
    font-size: 17px;
}

b {
    font-weight: 500;
    color: #333;
}

strong {}

/* contents tabs */
#sub .con-tab-menu {
    text-align: center;
    overflow: hidden;
}

#sub .con-tab-menu li {
    float: left;
    width: 100%;
    border: 1px solid #ddd;
    border-left: 0;
}

#sub .con-tab-menu li a {
    height: 65px;
    position: relative;
    text-align: center;
    display: block;
    cursor: pointer;
    background: #fff;
}

#sub .con-tab-menu li a span {
    position: absolute;
    width: 100%;
    font-size: 16px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    line-height: 1.3;
}

#sub .con-tab-menu li a.active {
    background: #0B3CAC;
    color: #fff;
}

#sub .con-tab-menu li:first-child {
    border-left: 1px solid #ddd;
}

#sub .con-tab {
    display: none;
    padding: 80px 0 0;
}

#sub .con-tab.active {
    display: block;
}

#sub .con-tab-menu li:first-child:nth-last-child(2),
#sub .con-tab-menu li:first-child:nth-last-child(2) ~ li {
    width: 50%;
}

#sub .con-tab-menu li:first-child:nth-last-child(3),
#sub .con-tab-menu li:first-child:nth-last-child(3) ~ li {
    width: 33.333%;
    max-width: none;
}

#sub .con-tab-menu li:first-child:nth-last-child(4),
#sub .con-tab-menu li:first-child:nth-last-child(4) ~ li {
    width: 25%;
}

#sub .con-tab-menu li:first-child:nth-last-child(5),
#sub .con-tab-menu li:first-child:nth-last-child(5) ~ li {
    width: 20%;
}

#sub .con-tab-menu li:first-child:nth-last-child(6),
#sub .con-tab-menu li:first-child:nth-last-child(6) ~ li {
    width: 16.666%;
}

#sub .con-tab-menu li:first-child:nth-last-child(7),
#sub .con-tab-menu li:first-child:nth-last-child(7) ~ li {
    width: 14.285%;
}

#sub .con-tab-menu li:first-child:nth-last-child(8),
#sub .con-tab-menu li:first-child:nth-last-child(8) ~ li {
    width: 12.5%;
}

/* mypage-navi */
.mypage-nav p {
    display: none;
}

.mypage-nav ul li {
    display: inline-block;
    margin-right: 40px;
    padding-right: 40px;
}

.mypage-nav ul li a {
    position: relative;
    font-size: 18px;
}

.mypage-nav ul li a.active {
    font-weight: 700;
    color: #0B3CAC;
}

.mypage-nav ul li a::after {
    content: "ㅣ";
    position: absolute;
    left: -50px;
    font-weight: 300;
    color: #ccc;
}

.mypage-nav .noline a::after {
    display: none;
}

/*=================================================================================
* pages
=================================================================================*/
#sub .about {
    text-align: left;
    margin: 80px 0 0;
}

#sub .about h2 {
    max-width: none;
}

#sub .about .sign {
    color: #333;
    font-weight: 400;
}

#sub .about .sign b {
    font-size: 24px;
    vertical-align: baseline;
    font-weight: 500;
    margin-left: 10px;
}

.wrap_title {
    background: url(../img/main/img_section2_top.png) no-repeat right bottom;
    padding: 0 20px;
    height: 95px;
    position: fixed;
    width: 640px
}

.wrap_title h1 {
    font-size: 18px;
    color: #fff;
    padding-top: 15px
}

.bpouup_contents {
    padding: 115px 20px 20px 20px
}

.openpopup_close {
    background: url(/img/common/icnClose.png) no-repeat left top;
    width: 23px;
    height: 22px;
    overflow: hidden;
    text-indent: -100px;
    display: block;
    position: absolute;
    right: 20px;
    top: 20px
}

.privacy .wrap_agree {}

.privacy .wrap_agree h2 {
    font-size: 16px;
    margin: 30px 0 10px 0;
    font-weight: 500;
    color: #333;
}

.privacy .wrap_agree li {
    padding-left: 15px;
    text-indent: -15px
}

.privacy .wrap_agree li p {
    text-indent: 0px
}

.privacy .wrap_agree dl {
    margin-top: 5px
}

.privacy .wrap_agree .head {
    background-color: #f4f4f4;
    border: solid 1px #f0f0f0;
    padding: 15px;
}

.privacy .wrap_agree .head b {
    color: #333;
    font-weight: 500;
}

.lecture-tit {
    display: block;
    text-align: center;
    font-size: 18px;
    margin: 20px 0 0 0;
    color: #121212;
}


/*=================================================================================
* en
=================================================================================*/
@media screen and (min-width:480px) {
    #en #sub .number-box li {
        min-height: 428px;
    }

    #en #sub .process-box li {
        min-height: 536px;
    }

    #en #sub .ms-pcs li {
        min-height: 165px;
    }

    #en #sub .icon-box2 li {
        height: 398px;
    }

    #en #sub .blt-box.mh li {
        min-height: 538px
    }

    #en #main .main-visual .slide-text p {
        font-size: 24px;
    }

}

/*=================================================================================
* responsive
=================================================================================*/
@media screen and (max-width:1240px) {

    /* layout */
    .nav {
        display: none;
    }

    #sitemap {
        background: rgba(0, 0, 0, 0.5);
    }

    #sitemap > ul > li {
        width: 100%;
        float: none;
        margin: 0 0 30px;
    }

    #sitemap > ul > li h2 {
        color: #0B3CAC;
    }

    #sitemap > ul > li > ul > li {
        height: 46px;
        overflow: hidden;
        padding: 10px 0;
        margin: 0;
        border-bottom: 1px solid #ddd;
    }

    #sitemap > ul > li > ul > li.m-open {
        height: auto;
    }

    #sitemap > ul > li h3 {
        background: url('../img/btn/sel-arr.png') no-repeat center right;
        margin: 0;
    }

    #sitemap > ul > li > ul > li > h3 > a {
        display: block;
        background: #fff;
    }

    #sitemap > ul {
        max-width: 500px;
        padding: 20px;
        background: #fff;
        position: absolute;
        right: 0;
        top: 0;
        width: 100%;
    }

    .wr {
        width: 100%;
        padding: 0 20px;
    }

    #main .cont-02 .alli-slider .slick-slide {
        padding: 0 60px;
    }

    #main .alli-slider .slick-prev {
        left: -20px;
    }

    #main .alli-slider .slick-next {
        right: -20px;
    }

    .sub-depth-1 li a {
        font-size: 14px;
    }

    .sub-depth-2 a {
        font-size: 14px;
        line-height: 60px;
    }

    #sub .review-slider .slick-arrow {
        width: 30px;
        height: 30px;
        border-radius: 100%;
        top: 35%;
    }

    #sub .review-slider .slick-next {
        right: 10px
    }

    #sub .review-slider .slick-prev {
        left: 10px;
    }


}

@media screen and (max-width:1024px) {

    /* layout */
    #main .cont-01 ul li a {
        padding: 50px 10px;
        min-height: 340px;
    }

    #main .cont-01 ul li img {
        max-width: 160px;
    }

    #main .cont-01 ul li h4 {
        font-size: 20px;
    }

    #main .main-tit small {
        font-size: 20px;
    }

    #main .main-tit {
        font-size: 36px;
    }

    #main .cont-01 .ties-group li {
        margin-top: 10px;
        padding: 0;
    }

    .sub-depth-1 li {
        width: 100% !important;
    }

    .sub-depth-1 li a {
        font-size: 18px;
        display: none;
    }

    .sub-depth-1 li.active a {
        display: block;
    }

    /* sub */
    #sub .cont-tit h2 {
        font-size: 30px;
    }

    #sub .cont-tit h2.big {
        font-size: 40px;
    }

    #sub .cont-tit p {
        font-size: 16px;
    }

    #sub .cont-tit p br {
        display: none;
    }

    #sub .fair-intro .right-tit {
        min-height: auto;
    }

    #sub .fair-intro .right-tit p {
        font-size: 16px;
    }

    #sub .fair-intro .right-tit p br {
        display: none;
    }

    #sub .number-box li p {
        font-size: 16px
    }

    #sub .number-box li h3 {
        font-size: 20px;
    }

    #sub .icon-list li h3 {
        font-size: 20px;
    }

    #sub .process-box li h3 {
        font-size: 16px;
    }

    #sub .round-list li {
        width: 49%;
        margin-bottom: 1%;
    }

    #sub .round-list li:nth-child(4n+1) {
        margin-left: 2%;
        clear: none;
    }

    #sub .round-list li:nth-child(2n+1) {
        margin-left: 0;
        clear: both;
    }

    #sub .blt-box li {
        padding: 50px 20px;
        min-height: auto;
    }

    #sub .blt-box li img {
        max-width: 80px;
    }

    #sub .blt-box li:first-child:nth-last-child(7),
    #sub .blt-box li:first-child:nth-last-child(7) ~ li,
    #sub .blt-box li:first-child:nth-last-child(4),
    #sub .blt-box li:first-child:nth-last-child(4) ~ li,
    #sub .blt-box li:first-child:nth-last-child(8),
    #sub .blt-box li:first-child:nth-last-child(8) ~ li {
        width: 48%;
    }

    #sub .blt-box li h3 {
        font-size: 20px;
    }

    #sub .intro-box .tbox h2 {
        font-size: 30px;
    }

    #sub .intro-box .tbox h2 br {
        display: none;
    }

    #sub .intro-box .left {
        padding-right: 20px;
    }

    #sub .intro-box .right {
        padding-left: 20px;
    }

    #sub .intro-box .tbox ul li {
        font-size: 16px;
    }

    #sub .sm-tit {
        font-size: 16px;
    }

    #sub .con-tab-menu li a span {
        font-size: 14px;
    }

    #sub .prd-list strong,
    #sub .adv-list strong,
    #sub .prd-list2 strong,
    #sub .partners dd,
    #sub .img-list strong {
        font-size: 26px;
    }

    #sub .prd-list li h3,
    #sub .adv-list li h3,
    #sub .prd-list2 li h3,
    #sub .img-list li h3 {
        font-size: 16px;
    }

    #sub .img-list li p {
        font-size: 14px
    }

    #sub .prd-list li img {
        max-width: 50px
    }

    #sub .cont-tit small {
        font-size: 15px;
    }

    #sub .icon-box2 li:first-child:nth-last-child(7),
    #sub .icon-box2 li:first-child:nth-last-child(7) ~ li,
    #sub .icon-box2 li:first-child:nth-last-child(4),
    #sub .icon-box2 li:first-child:nth-last-child(4) ~ li,
    #sub .icon-box2 li:first-child:nth-last-child(8),
    #sub .icon-box2 li:first-child:nth-last-child(8) ~ li {
        width: 47%
    }


}

@media screen and (max-width:768px) {

    /* layout */
    html {
        font-size: 14px;
    }

    .sec-header .logo {
        left: 40px;
    }

    .btn-category,
    .btn-category.map {
        right: 40px;
    }

    .join {
        display: none;
    }

    #main .main-slide .slick-prev {
        left: 40px;
    }

    #main .main-slide .slick-next {
        right: 40px;
    }

    #main .main-visual .slide-text p br {
        display: block !important;
    }

    .sub-depth-1 {
        display: none;
    }

    .btn-wr-inline a {
        margin: 10px 0;
    }

    /* main-visual */
    #main .main-bg-2 {
        width: 100%;
        overflow: hidden;
        display: block;
        background: url(../img/visual_bg_m.jpg) center/cover no-repeat;
    }

    /*
	#main .cont-01 ul li{width:49%; margin-bottom:2%;}
	#main .cont-01 ul li:nth-child(2n){margin-right:0;}
	*/
    #main .cont-01 ul {
        flex-direction: column;
    }

    #main .cont-01 ul li {
        margin: 0;
    }

    #main .cont-01 ul li a {
        padding: 50px 20px;
    }

    #main .cont-01 ul li h4 {
        max-width: 200px;
        margin: 20px auto 0;
    }

    #main .main-tit small {
        font-size: 18px;
    }

    #main .main-tit {
        font-size: 30px;
    }

    .main-bn p {
        font-size: 26px;
    }

    .main-bn {
        padding: 50px 20px;
    }

    #main .main-bn,
    #sub .main-bn {
        background-size: cover;
        padding: 50px 0;
    }

    #sub .main-bn {
        padding: 30px 20px;
    }

    #main .cont-wr {
        padding: 80px 0 110px;
    }

    #main .cont-03 .wr {
        flex-direction: column;
    }

    #main .cont-03 .wr div {
        width: 100% !important;
        padding: 0 !important;
    }

    #main .cont-03 .box {
        padding: 20px;
    }

    #main .cont-03 .box h4 {
        font-size: 20px;
        height: 60px;
    }

    .family-site {
        position: relative;
        top: auto;
        margin: 20px 0 0;
        max-width: 250px;
    }

    .sub-visual h1 {
        font-size: 45px;
        padding: 170px 0;
    }

    .sub-depth-2 {
        position: absolute;
        width: 100%;
        left: 0;
        z-index: 2;
        background: #fff;
        display: none;
    }

    .sub-depth-2 a {
        width: 100%;
        display: block;
        margin: 0;
        border-bottom: 1px solid #e8e8e8;
    }

    /* sub */
    #sub .cont-wr {
        padding: 80px 0;
    }

    #sub .mt-120 {
        margin-top: 80px;
    }

    #sub .mb-120 {
        margin-bottom: 80px;
    }

    #sub .fair-intro .left-img {
        width: 94%;
        position: relative;
    }

    #sub .fair-intro .right-tit {
        margin: 0 0 30px;
        padding: 30px;
        width: 100%;
    }

    #sub .fair-intro .right-tit small {
        margin: 10px 0;
    }

    #sub .fair-intro .right-tit h2:before {
        width: 110%;
    }

    #sub .process-box li {
        width: 100%;
        margin: 0 0 10px;
        padding: 70px 20px 20px;
        min-height: auto;
    }

    #sub .process-box li h3 {
        text-align: left;
    }

    #sub .process-box li h3 br {
        display: none;
    }

    #sub .tb-list dt {
        padding: 10px;
        font-size: 16px;
    }

    #sub .tb-list dd {
        padding: 20px;
    }

    #sub .number-box li {
        width: 100%;
        margin: 0 0 10px;
        min-height: auto;
        padding: 50px 20px 40px;
    }

    #sub .number-box strong {
        top: -20px;
    }

    #sub .number-box li h3 br {
        display: none;
    }

    #sub .icon-list {
        border-top: 1px solid #333;
        max-width: 500px;
        margin: 0 auto;
    }

    #sub .icon-list li {
        border: 0;
        border-bottom: 1px solid #e8e8e8 !important;
        padding: 40px 20px;
    }

    #sub .icon-list li:first-child:nth-last-child(1),
    #sub .icon-list li:first-child:nth-last-child(1) ~ li,
    #sub .icon-list li:first-child:nth-last-child(2),
    #sub .icon-list li:first-child:nth-last-child(2) ~ li,
    #sub .icon-list li:first-child:nth-last-child(3),
    #sub .icon-list li:first-child:nth-last-child(3) ~ li,
    #sub .icon-list li:first-child:nth-last-child(4),
    #sub .icon-list li:first-child:nth-last-child(4) ~ li {
        width: 100%;
        margin: 0;
        border: 0;
    }

    #sub .circle-box li {
        width: 49%;
        padding-bottom: 49%;
        margin: -1%;
    }

    #sub .intro-box .left {
        width: 100%;
        padding: 0 10px;
    }

    #sub .intro-box .right {
        width: 100%;
        padding: 0 10px;
    }

    #sub .intro-box .tbox h2 {
        font-size: 24px;
        margin: 30px 0 20px;
    }

    #sub .intro-box .tbox p {
        font-size: 16px;
    }

    #sub .b-line .tbox h2:after {
        width: 30px;
        right: auto;
        left: 0;
        bottom: -10px
    }

    #sub .md-tit {
        font-size: 20px;
    }

    #sub .con-tab {
        padding: 30px 0 0;
    }

    #sub .prd-list strong,
    #sub .adv-list strong,
    #sub .prd-list2 strong,
    #sub .img-list strong {
        top: 30px;
        width: 100%;
        font-size: 20px;
    }

    #sub .prd-list ul,
    #sub .prd-list2 ul,
    #sub .img-list ul {
        padding: 80px 0 30px;
    }


    #sub .adv-list strong {
        top: 30px;
        width: 100%;
        font-size: 20px;
    }

    #sub .adv-list strong br {
        display: none;
    }

    #sub .adv-list li {
        padding: 80px 0 30px;
    }

    #sub .adv-list dt {
        width: 45%;
    }

    #sub .adv-list dd {
        width: 50%;
    }


    #sub .circle-box2 li {
        width: 20%;
        padding-bottom: 20%;
    }

    #sub .circle-box2 li h3 {
        font-size: 16px;
    }

    #sub .partners dd {
        width: 100%;
        padding-right: 0;
        padding: 0 0 20px;
    }

    #sub .partners dt {
        width: 100%;
    }

    #sub .partners dl {
        padding: 50px 0 30px;
    }

    #sub .blt-box li {
        min-height: 232px;
    }


    #sub .prd-list li {
        width: 100%;
        margin: 0 0 10px;
        height: auto;
        padding-bottom: 0;
    }

    #sub .prd-list li .con {
        position: relative;
        left: 0;
        top: 0;
        transform: none;
    }

    #sub .prd-list li h3 {
        margin: 0;
    }

    #sub .prd-list li p {
        margin: 10px 0 0;
    }

    #sub .prd-cc li {
        width: 48%;
        margin: 1%;
        padding-bottom: 48%;
        height: 0;
    }

    #sub .prd-cc li .con {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
    }

    #sub .cont-tit h2 {
        font-size: 26px;
    }

    #sub .cont-tit h2.big {
        font-size: 30px;
    }

    #sub .chk-list li {
        font-size: 16px;
    }

    #sub .img-list li {
        width: 49%;
    }

    #sub .img-list li:nth-child(3n+2) {
        margin-left: 2%;
        clear: none;
    }

    #sub .img-list li:nth-child(2n+2) {
        margin-left: 0;
        clear: both;
    }

    #sub .cc-box li {
        width: 32%;
        padding: 5px;
    }

    #sub .vbr-list.w50 li {
        width: 100%;
        float: none;
        min-height: auto;
    }

    .flex {
        display: flex;
        flex-direction: column;
    }

    .greeting-photo {
        text-align: center;
        margin-bottom: 30px;
    }

    .greeting-text p strong {
        display: inline;
    }

    .mov-01 {
        padding: 40px 0 !important;
    }

    .mov-01 .top-mov {
        padding: 0 !important;
        height: 240px !important;
    }

    .mov-02 ul {
        margin: 0 !important;
    }

    .mov-02 ul li {
        width: 100% !important;
        margin: 0 0 50px 0 !important;
        height: auto !important;
    }

    .line-board2 {
        margin-top: 20px;
    }

}

@media screen and (max-width:480px) {

    /* layout */
    .sec-header .logo {
        width: 130px;
        background-size: 100%;
        left: 20px;
    }

    .btn-category,
    .btn-category.map {
        right: 20px;
    }

    .join {
        display: block;
    }
	.join a { color: #121212; font-size: 14px; padding:  5px 10px; }
    .join a span {
    }

    .btn-category {
        width: 30px;
    }

    .sec-header {
        background: #fff;
        height: 70px;
        box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.05);
    }

    .sec-header .logo {
        background-image: url(../img/logo-d.svg);
        top: 12px;
    }

    .sec-header .nav:after {
        display: none;
    }

    .sec-header .nav > li > h2 {
        color: #333;
    }

    .btn-category .bar {
        background: #000;
    }

    .sec-header:before {
        display: none;
    }

    #sitemap > ul > li {
        padding: 0;
    }

    #sitemap > ul > li h2 {
        font-size: 20px;
    }

    #sitemap > ul > li h3 {
        font-size: 17px;
    }

    #sitemap > ul > li > ul > li > a {
        font-size: 15px;
    }

    #sitemap {
        top: 70px;
        height: calc(100% - 70px);
    }

    .btn-category {
        top: 23px;
    }

    .join {
        top: 26px;
        right: 16%;
    }
	.join em { margin: 0; padding-top: 1px; }

    #main .main-slide .slick-dots {
        bottom: 70px;
    }

    #main .main-visual {
        height: 50vh;
    }

    #main .main-visual .slide-text {
        top: 25%;
        left: 5%;
        width: 90%;
    }

    #main .main-visual .slide-text h2 {
        margin-bottom: 20px;
    }

    #main .main-visual .slide-text h3 {
        margin-bottom: 20px;
    }

    #main .main-visual .slide-text h4 {}

    #main .main-visual .slide-text p {}

    #main .main-visual .slide-text span {
        width: 37%;
    }

    #main .main-visual .slide-text em {
        width: 40%;
    }

    #main .main-visual .logo-box {
        margin-top: 0px;
        padding: 10px 20px;
        width: 100%;
    }

    #main .main-visual .logo-box div {
        flex-direction: column;
        align-items: flex-start;
        margin: 0;
    }

    #main .main-visual .logo-box strong {
        width: 100%;
        font-size: 14px;
        margin-top: 15px;
        text-align: center;
    }

    #main .main-visual .logo-box strong:before {
        left: 50%;
        margin-left: -21px;
    }

    #main .main-visual .logo-box span {
        width: 100%;
    }

    #main .main-visual .logo-box span img {
        max-height: 35px;
        margin-right: 10px;
    }

    #main .main-slide .slick-prev {
        left: 5%;
    }

    #main .main-slide .slick-next {
        right: 5%;
    }

    #main .main-slide .slick-arrow {
        width: 20px;
        background-size: 100%;
    }

    #main .visual-notice h3 {
        padding: 10px;
        max-width: 100px;
        font-size: 14px;
    }

    #main .bbs-slider {
        width: calc(100% - 110px);
        padding: 10px 0;
        font-size: 14px;
    }

    #main .visual-notice .wr {
        padding: 0;
    }

    #main .bbs-slider .slick-arrow {
        display: none !important;
    }

    #main .cont-wr {
        padding: 50px 0;
    }

    #main .main-tit {
        font-size: 16px;
        margin: 0 0 20px;
    }

    #main .main-tit small {
        font-size: 24px;
    }

    #main .cont-01 ul li {
        width: 100%;
    }

    #main .cont-01 ul li a {
        padding: 30px 20px;
        min-height: auto;
    }

    #main .cont-01 ul li h4 {
        font-size: 17px;
        min-height: auto;
        margin: 20px auto 10px;
    }

    #main .cont-01 ul li p {
        font-size: 14px;
    }

    #main .cont-01 ul li img {
        max-width: 240px;
    }

    #main .cont-01 ul li {
        margin-bottom: 2%;
    }

    #main .alli-slider .slick-arrow {
        width: 40px;
        height: 40px;
        background-size: 100%;
    }

    #main .alli-slider .slick-prev {
        left: -10px;
    }

    #main .alli-slider .slick-next {
        right: -10px;
    }

    #main .cont-02 .alli-slider .slick-slide {
        padding: 0 40px
    }

    #main .cont-02 .alli-slider a {
        width: 49%;
        height: auto;
    }

    #main .cont-02 .alli-slider a:nth-child(2n+1) {
        clear: both;
        margin-left: 0;
    }

    #main .cont-03 ul li {
        /*   width: 100%;
        margin-bottom: 15px;*/
    }

    #main .cont-03 .box h4 {
        font-size: 18px;
        height: 54px;
    }

    #main .cont-03 .box strong {
        font-size: 13px
    }

    #main .cont-03 h3 {
        font-size: 21px;
    }

    #main .cont-03 h3 a {
        font-size: 14px;
    }

    #main .cont-03 h3 a::after {
        width: 12px;
        height: 12px;
    }

    #main .cont-03 .wr div:nth-child(1) {
        margin-bottom: 50px;
    }

    .main-bn p {
        font-size: 21px;
    }

    .main-bn span.bn-tit {
        font-size: 16px;
        margin-bottom: 0;
    }

    .main-bn span.bn-text {
        font-size: 14px;
    }

    .quick-menu {
        right: 10px;
        bottom: 10px;
    }

    .sec-footer {
        padding: 20px 0 40px;
        font-size: 13px;
    }

    .ft-link a {
        margin-right: 10px;
    }

    .ft-link a:last-child {
        margin-right: 0;
    }

    .sub-depth-1 li.active a {
        line-height: 50px;
        font-size: 16px;
    }

    .sub-visual {
        height: 320px;
    }

    .sub-visual h1 {
        font-size: 30px;
        position: absolute;
        left: 0;
        width: 100%;
        top: 55%;
        transform: translateY(-50%);
        padding: 0 20px;
    }

    .sub-visual h1 p {
        font-size: 14px;
    }

    .sub-depth-2 a {
        line-height: 50px;
        font-size: 14px;
    }

    #main .cont-01 .wr {
        flex-direction: column;
    }

    #main .cont-01 .wr div {
        width: 100%;
    }

    #main .cont-01 .wr .review-box .review h4 {
        font-size: 21px;
        line-height: 26px;
        margin-bottom: 95px;
    }

    #main .cont-01 .wr .review-box .review h4 span {
        font-size: 15px;
        margin-top: 10px;
    }

    #main .cont-01 .wr .review-box .review span {
        font-size: 16px;
    }

    #main .cont-01 .wr .review-box .review p {
        margin-bottom: 30px;
    }

    #main .cont-01 .wr .mov-box .mov {
        height: 197px;
    }

    #main .cont-02 ul,
    #main .cont-03 ul {
        flex-wrap: wrap;
    }

    #main .cont-02 ul li,
    #main .cont-03 ul li {
        width: 48%;
        /*        margin-bottom: 20px;*/
    }

    #main .cont-02 ul li {
        margin-bottom: 20px;
    }
	#main .cont-02 ul li span em {
		padding: 5px 13px 3px;
		font-size: 11px;
		right: 10px;
    	top: 0px;
	}

    /*    #main .cont-02 ul li:last-child,
    #main .cont-03 ul li:last-child {
        width: 100%;
        margin-bottom: 0;
    }

    #main .cont-02 ul li:last-child span,
    #main .cont-03 ul li:last-child span {
        height: 120px;
        overflow: hidden;
    }*/

    #main .cont-02 ul li span,
    #main .cont-03 ul li span {
        margin-bottom: 15px;
    }

    #main .cont-02 ul li span img,
    #main .cont-03 ul li span img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    #main .cont-02 ul li h3,
    #main .cont-03 ul li h3 {
        font-size: 15px;
        margin-bottom: 7px;
    }

    #main .cont-02 ul li p,
    #main .cont-03 ul li p {
        font-size: 15px;
        line-height: 20px;
    }

    #main .cont-03 ul li span {
        height: inherit;
    }

    /* sub */
/*    .fair-info {
        flex-direction: column;
    }

    .fair-info .box {
        width: 100%;
        padding: 30px 20px;
    }

    .fair-info .box dl {
        flex-direction: column;
    }

    .fair-info .box dt {
        font-size: 17px;
    }

    .fair-info .box dd {
        font-size: 15px;
    }

    .fair-info .box-poster {
        width: 100%;
        height: inherit;
    }*/

    #sub .cont-wr {
        padding: 60px 0;
    }

    #sub .mt-120 {
        margin-top: 60px;
    }

    #sub .mb-120 {
        margin-bottom: 60px;
    }

    #sub .fair-intro .left-img {
        width: 94%;
    }

    #sub .fair-intro .right-tit {
        width: 100%;
        padding-right: 0;
    }

    #sub .fair-intro .right-tit small {
        font-size: 14px;
    }

    #sub .fair-intro .right-tit h2 {
        font-size: 28px;
    }

    #sub .fair-intro .right-tit h2:before {
        width: 40px;
        left: 0;
        right: auto;
    }

    #sub .fair-intro .right-tit p {
        font-size: 15px;
    }

    #sub .fair-intro .right-tit p br {
        display: none;
    }

    #sub .fair-summary li {
        font-size: 14px;
    }

    #sub .fair-summary li .table-tit,
    #sub .fair-summary li .table-info {
        float: none;
        width: 100%;
    }

    #sub .cont-tit {
        margin: 0 auto 30px;
    }

    #sub .cont-tit h2 {
        font-size: 24px
    }

    #sub .cont-tit h3 {
        font-size: 16px
    }

    #sub .cont-tit h2.big {
        font-size: 24px;
    }

    #sub .cont-tit h2 br {
        display: none;
    }

    #sub .cont-tit p {
        font-size: 14px;
    }

    #sub .sub-text li {
        font-size: 14px;
    }

    #sub .poster-wr {
        width: 100%;
    }

    #sub .cont-tit .point {
        font-size: 16px;
        line-height: 21px;
    }

    #sub .process-box li h3 {
        font-size: 16px;
        margin: 15px 0;
    }

    #sub .process-box li p {
        padding: 2px 0 2px 12px;
    }

    #sub .process-box li p:after {
        top: 9px;
    }

    #sub .icon-list li h3 {
        font-size: 16px;
        margin: 20px 0 10px
    }

    #sub .icon-list li {
        padding: 30px 20px 40px;
    }

    #sub .icon-list li img {
        max-height: 80px;
    }

    #sub .circle-box li {
        margin: 0;
    }

    #sub .circle-box li h3 {
        font-size: 16px;
        margin: 0 0 10px
    }

    #sub .circle-box li .con {
        padding: 10px;
    }

    #sub .round-list li {
        width: 100%;
        margin: 0 0 10px;
    }

    #sub .round-list li a > span {
        font-size: 14px;
    }


    #sub .blt-box li {
        width: 100% !important;
        margin: 0 0 5px;
        padding: 30px 20px;
        min-height: auto;
    }

    #sub .blt-box li img {
        max-width: 60px;
    }

    #sub .blt-box li h3 {
        font-size: 16px;
    }

    #sub .img-list2 li {
        width: 47%;
    }

    #sub .img-list2 li img {
        margin: 0 0 10px;
    }

    #sub .img-list2 li h3 {
        font-size: 15px;
        margin: 0 0 5px;
    }


    #sub .img-list2.left li {
        width: 100%;
        padding: 0 0 20px;
    }

    #sub .img-list2.left li img {
        margin: 0 0 20px;
    }

    #sub .intro-box .left {
        margin-bottom: 0;
    }

    #sub .intro-box .tbox h2 {
        font-size: 20px;
        margin: 30px 0 15px;
    }

    #sub .intro-box .tbox h2 br {
        display: none;
    }

    #sub .intro-box .tbox p {
        font-size: 14px;
    }

    #sub .intro-box .tbox ul li {
        font-size: 14px;
        padding: 5px 0 5px 30px;
    }

    #sub .intro-box .tbox ul li:after {
        width: 20px;
        height: 20px;
        background-size: 100%;
    }

    #sub .md-tit {
        font-size: 16px;
    }

    #sub .vbr-list li {
        padding: 20px 0;
        min-height: auto;
    }

    #sub .vbr-list img {
        position: relative;
        top: auto;
        left: auto;
        right: 0;
        max-width: 80px;
        margin: 0 auto 10px;
        display: block;
    }

    #sub .vbr-list li h3 {
        font-size: 16px;
        margin: 0 0 10px;
        text-align: center;
    }

    #sub .prd-cc li {
        width: 48%;
        padding-bottom: 48%;
    }

    #sub .prd-list strong,
    #sub .adv-list strong,
    #sub .prd-list2 strong {
        font-size: 16px;
    }

    #sub .prd-list li h3 {
        font-size: 16px;
    }

    #sub .adv-list li p {
        font-size: 14px;
    }

    #sub .adv-list li p:after {
        top: 12px;
    }

    #sub .adv-list li p small {
        font-size: 14px;
    }

    #sub .b-number .tbox b {
        font-size: 40px;
        margin: 20px 0 -20px;
        line-height: 1;
    }

    #sub .number-box strong {
        font-size: 80px;
    }

    #sub .number-box li h3 {
        font-size: 18px
    }

    #sub .adv-list li p {
        font-size: 14px;
    }

    #sub .sm-tit {
        font-size: 14px;
        margin: 0 0 20px;
    }

    #sub .adv-list dt {
        width: 100%;
        margin: 0 0 20px;
    }

    #sub .adv-list dd {
        width: 100%;
    }

    #sub .adv-list dd h4 {
        font-size: 16px;
    }

    #sub .prd-list2 li img {
        max-width: 80px;
    }

    #sub .prd-list2 li {
        width: 100%;
        margin: 0 0 10px;
        min-height: auto;
        padding: 30px 20px;
    }

    #sub .icon-box li img {
        max-width: 80px;
    }

    #sub .icon-box li {
        width: 100% !important;
        margin: 0 0 5px;
        padding: 30px 20px;
        height: auto;
    }

    #sub .icon-box2 li img {
        max-width: 80px;
    }

    #sub .icon-box2 li {
        width: 100% !important;
        margin: 0 0 5px;
        padding: 30px 20px;
        height: auto;
    }

    #sub .icon-box2 li h3 {
        font-size: 16px;
    }

    #sub .circle-box2 li {
        width: 40%;
        padding-bottom: 40%;
        margin: 2%;
    }

    #sub .circle-box2:after {
        display: none;
    }

    #sub .circle-box2 li h3 {
        font-size: 16px
    }

    #sub .circle-box2 li .con {
        padding: 0;
    }

    #sub .bg-half:after,
    #sub .bg-half-2:after {
        height: calc(100% - 200px);
    }

    #sub .chk-list li {
        width: 100%;
        font-size: 14px;
        padding: 5px 0 5px 30px;
    }

    #sub .chk-list li:after {
        width: 20px;
        height: 20px;
        background-size: cover;
    }


    #sub .about {
        margin: 30px 0 0;
    }

    #sub .img-list li img {
        width: 100%;
    }

    #sub .prd-list li h3,
    #sub .adv-list li h3,
    #sub .prd-list2 li h3,
    #sub .img-list li h3 {
        font-size: 16px;
    }

    /* 회원가입 */
    #login_cnt .cntbox {
        min-height: inherit;
        height: auto !important;
        border: 0;
    }

    #login_cnt .cntbox form {
        margin-bottom: 18px;
        width: 100%;
        margin: 0 auto;
        flex-wrap: wrap;
    }

    #login_cnt .cntbox .form dl {
        padding: 26px 0 22px;
    }

    #login_cnt .cntbox .form dl:last-child {
        border-bottom: none;
    }

    #login_cnt .cntbox .form dt {
        float: inherit;
    }

    #login_cnt .cntbox .form dd {
        margin-left: 0;
    }

    #login_cnt .cntbox .form dd input {
        width: 100%;
        font-size: 15px;
    }

    #login_cnt .cntbox .btn_login {
        margin: 0 auto;
        width: 100%;
    }

    #login_cnt .cntbox .btn_login a {
        height: 52px;
        line-height: 52px;
        font-size: 16px;
    }

    #login_cnt .content_support {
        width: 100%;
    }

    #login_cnt .content_support .box {
        float: inherit;
        width: 100%;
        height: auto;
    }

    #login_cnt .content_support .box p {
        font-size: 15px;
        height: inherit;
        margin: 20px 0;
    }

    #login_cnt .content_support .box p br {
        display: none;
    }

    /*=================================================================================
    * 아이디찾기 & 비밀번호찾기
    =================================================================================*/
    #login_cnt .cntbox .form dd.email_area {
        width: 100%;
        overflow: hidden;
    }

    #login_cnt .cntbox .form dd.email_area .input {
        float: left;
        width: 45%;
    }

    #login_cnt .cntbox .form dd.email_area .input input[type="text"] {
        font-size: 15px;
        width: 100%;
    }

    #login_cnt .cntbox .form dd.email_area span {
        font-size: 15px;
    }

    #login_cnt .cntbox .form dd.email_area .select {
        float: none;
        width: 100%;
        margin-top: 50px;
    }

    #login_cnt .cntbox .form dd.email_area .select label {
        font-size: 15px;
    }

    #login_cnt .cntbox .form dd.email_view {
        height: 40px;
        line-height: 40px;
    }

    #login_cnt .cntbox .form dd.email_view p {
        font-size: 20px;
        color: #292929;
    }

    /*=================================================================================
    * 회원가입
    =================================================================================*/
    #register_cnt {
        padding-bottom: 150px;
    }

    #register_cnt .register_step {
        padding: 20px 0;
        border-top: 1px solid #e1e1e1;
        border-bottom: 1px solid #e1e1e1;
        margin-bottom: 34px;
    }

    #register_cnt .register_step ul {
        width: 100%;
        justify-content: flex-start;
    }

    #register_cnt .register_step ul li {
        flex-direction: column;
        width: 33.33%
    }

    #register_cnt .register_step ul li h3 {
        font-size: 14px;
    }

    #register_cnt .register_step ul li h3 small {
        font-size: 12px;
    }

    #register_cnt .register_step ul li span {
        width: 40%;
        margin: 0 auto;
    }

    #register_cnt .register_step ul li::after {
        display: none;
    }

    #register_cnt .temp_box {
        border: 0;
        padding: 0;
        margin-bottom: 35px;
    }

    #register_cnt .temp_box dl {
        background-repeat: repeat-x;
        background-position: left bottom;
        background-image: url(../img/sub/line_dotted.jpg);
        padding-bottom: 35px;
        margin-bottom: 45px;
    }

    #register_cnt .temp_box dt {
        font-size: 20px;
        height: 40px;
        font-weight: 700;
        color: #292929;
        letter-spacing: -0.025em;
    }

    #register_cnt .temp_box dd {}

    #register_cnt .temp_box dd.textarea {
        border: 1px solid #e1e1e1;
        padding: 18px 25px;
        height: 200px;
        overflow-y: auto;
        font-size: 14px;
        color: #696969;
        line-height: 20px;
        margin-bottom: 20px;
        letter-spacing: -0.005em;
    }

    #register_cnt .temp_box dd.textarea .textbox {}

    #register_cnt .temp_box dd.agree {
        text-align: right;
    }

    #register_cnt .temp_box dd.agree label {
        display: inline-block;
        font-size: 15px;
        letter-spacing: -0.025em;
        color: #292929;
        height: 35px;
        line-height: 35px;
        background-repeat: no-repeat;
        background-position: right top;
        background-image: url(../img/img_checkbox.svg);
        padding-right: 55px;
        cursor: pointer;
    }

    #register_cnt .temp_box dd.agree input {
        display: none;
    }

    #register_cnt .temp_box dd.agree input:checked + label {
        background-image: url(../img/img_checkbox_on.svg);
    }

    #register_cnt .temp_box dl.last {
        background: none;
        margin-bottom: 0;
        padding-bottom: 0;
    }

    #register_cnt .button_area {
        text-align: center;
    }

    #register_cnt .button_area div {
        display: inline-block;
        height: 65px;
        line-height: 65px;
        background-color: #0B3CAC;
        font-size: 18px;
        text-align: center;
        text-decoration: none;
        color: #fff;
        border-radius: 10px;
    }

    #register_cnt .button_area div a {
        display: inline-block;
        height: 65px;
        line-height: 65px;
        background-color: #0B3CAC;
        font-size: 18px;
        text-align: center;
        text-decoration: none;
        color: #fff;
        border-radius: 10px;
    }

    #register_cnt .button_area div.btn_register_ok {
        width: 260px;
    }

    /** formbox **/
    #register_cnt .formbox {
        border: 0;
        padding: 29px 0px;
    }

    #register_cnt .formbox dl {
        width: 100%;
        overflow: hidden;
        padding: 22px 0 18px;
        border-bottom: solid 1px #e1e1e1;
    }

    #register_cnt .formbox dl.last {
        background: none;
    }

    #register_cnt .formbox dl dt,
    #register_cnt .formbox dl dd {
        font-size: 15px;
    }

    #register_cnt .formbox dl dt {
        float: inherit;
        margin-bottom: 5px;
    }

    #register_cnt .formbox dl dd {
        margin-left: 0;
    }

    #register_cnt .formbox dl dd input[type="text"] {
        width: 100%;
    }

    #register_cnt .formbox dl dd input[type="password"] {
        width: 100%;
    }

    #register_cnt .formbox dl dd.ac_area .select {
        width: 100%;
        margin-top: 10px
    }

    #register_cnt .formbox dl dd.ac_area .info00 {
        overflow: hidden;
        float: left;
    }

    #register_cnt .formbox dl dd.ac_area .info01,
    #register_cnt .formbox dl dd.ac_area .info02,
    #register_cnt .formbox dl dd.ac_area .info03 {
        width: 100%;
        overflow: hidden;
    }

    #register_cnt .formbox dl dd.ac_area .info01 {
        margin-bottom: 12px;
    }

    #register_cnt .formbox dl dd.ac_area .info02 {
        margin-bottom: 18px;
        padding-bottom: 18px;
        border-bottom: solid 1px #e1e1e1;
    }

    #register_cnt .formbox dl dd.ac_area .info02 input,
    #register_cnt .formbox dl dd.ac_area .info00 input {
        display: none;
    }

    #register_cnt .formbox dl dd.ac_area .info02 label,
    #register_cnt .formbox dl dd.ac_area .info00 label {
        float: left;
        display: inline-block;
        margin-right: 25px;
        height: 35px;
        line-height: 35px;
        padding-left: 40px;
        background-repeat: no-repeat;
        background-position: left top;
        background-image: url(../img/img_checkbox.svg);
        cursor: pointer;
    }

    #register_cnt .formbox dl dd.ac_area .info02 input:checked + label,
    #register_cnt .formbox dl dd.ac_area .info00 input:checked + label {
        background-image: url(../img/img_checkbox_on.svg);
    }

    #register_cnt .formbox dl dd.ac_area .info03 {}

    #register_cnt .formbox dl dd.ac_area span.txt3 {
        width: 55px;
    }

    #register_cnt .formbox dl dd.ac_area .info03 .input {
        margin-right: 18px;
    }

    #register_cnt .formbox dl dd.ac_area .info03 .select {
        width: 140px;
    }

    #register_cnt .formbox dl dd.ac_area .info03 .txt_year {
        width: 60px;
        padding-left: 10px;
    }

    #register_cnt .formbox dl dd.ac_area .info03 .txt_month {
        padding-left: 10px;
    }

    /** complete_box **/
    #register_cnt .complete_box {
        padding: 50px 10px 50px;
        border: 0;
    }

    #register_cnt .complete_box .textbox {
        padding: 38px 0 0 0;
        height: 90px;
        margin-bottom: 66px;
        text-align: center;
    }

    #register_cnt .complete_box .textbox p {
        display: inline-block;
        font-size: 18px;
        padding: 0 0 0 0;
        line-height: 30px;
    }

    #register_cnt .complete_box .button_area {
        width: 100%;
        overflow: hidden;
        text-align: center;
    }

    #register_cnt .complete_box a.btn_login_move,
    #register_cnt .complete_box a.btn_main_move {
        margin-bottom: 20px;
    }

    /* mypage-navi */
    .mypage-nav {
        position: absolute;
        left: 0;
        top: 20px;
        z-index: 2;
        width: 100%;
    }

    .mypage-nav p {
        display: block;
        padding: 15px;
        border: 1px solid #999;
        cursor: pointer;
        background: url(../img/select_arrow.svg) no-repeat right 5px center;
    }

    .mypage-nav ul {
        background: #fff;
        position: absolute;
        top: 53px;
        width: 100%;
        padding: 10px 0;
        display: none;
        border: 1px solid #ddd;
    }

    .mypage-nav ul li {
        display: block;
        width: 100%;
    }

    .mypage-nav ul li a {
        display: block;
        padding: 10px 20px;
        color: #999;
        font-size: 14px;
    }

    .mypage-nav ul li a:hover {
        color: #333;
    }



}

/* media size setting end */



/* 230215 */
#main .main-visual .slide-text {
    top: 250px;
}

#main .main-visual .slide-text span {
    width: 50%;
}

#main .main-visual .slide-text .logo-box span {
    width: 100%;
}

#main .main-visual .slide-text .logo-box span img {
    width: 90%;
}

#main .main-visual .slide-text h2 {
    width: 100%;
    margin: 0 auto 60px;
}

#main .main-visual .slide-text h3 {
    display: none;
}

#main .main-visual .slide-text p {
    width: 100%;
    margin: 0 auto 50px;
}

#main .main-visual .slide-text p img {
    display: inline-block;
    width: 45%;
    margin-right: 40px;
    vertical-align: middle;
}

#main .main-visual .slide-text em {
    width: 50%;
    margin: 0 auto 50px;
}


/*=================================================================================

* Main 공지사항

=================================================================================*/
.main-section.section04 {
}

.main-section.section04 .notice-wrap {
    width: 100%;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}

.main-section.section04 .box {
    margin-right: 6%;
}

.main-section.section04 .title-area {
    position: relative;
    margin-bottom: 40px;
}

.main-section.section04 .section-title {
    text-align: left;
    margin: 0;
	font-size: 24px;
	font-weight: 900;
}

.main-section.section04 .title-area .button-more {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    font-size: 17px;
    color: #999;
}

.main-section.section04 .box-notice {
    width: 47%;
}

.main-section.section04 .board-list {}

.main-section.section04 .board-list .item {
    margin-bottom: 20px;
}

.main-section.section04 .board-list .item a {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.main-section.section04 .board-list .item .date {
    width: 100px;
    height: 100px;
    margin-right: 20px;
    border-radius: 12px;
    background: #E8E8E8;
    text-align: center;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.main-section.section04 .board-list .item .date p {
    font-size: 17px;
    font-weight: bold;
}

.main-section.section04 .board-list .item .date .day {
    font-size: 37px;
}

.main-section.section04 .board-list .item .text-area {
    flex: 1;
    font-size: 17px;
}

.main-section.section04 .board-list .item .text-area .text01 {
    margin-bottom: 12px;
    font-size: 19px;
    font-weight: 500;
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.main-section.section04 .board-list .item .text-area .text02 {
    color: #999;
    width: 100%;
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.main-section.section04 .event-area {
    width: 47%;
    margin-right: 0;
}

.main-section.section04 .event-slide {
    width: 100%;
    height: 340px;
}
.main-section.section04 .event-slide a {
	width: 95%;
    display: block;
    margin: 0 auto;
    border: solid 1px #e1e1e1;
    border-radius: 10px;
    overflow: hidden;
	box-shadow: 5px 5px 20px rgb(0 0 0 / 30%);
    -webkit-box-shadow: 5px 5px 20px rgb(0 0 0 / 30%);
    -moz-box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.3);
	margin-bottom: 10px;
}
.main-section.section04 .swiper-slide {
    width: 100%;
}

.main-section.section04 .event-thum {
    float: left;
    width: calc(100% - 370px);
    height: 340px;
    overflow: hidden;
    background: #f8f8f8;
}

.main-section.section04 .event-info {
    float: left;
    width: 370px;
    height: 340px;
    padding: 40px 35px;
    background: #000;
    text-align: left;
}

.main-section.section04 .event-info p {

    color: #fff;
    font-size: 19px;
}

.main-section.section04 .event-info .text01 {
    font-size: 21px;
    font-size: bold;
    margin-bottom: 20px;
}

.main-section.section04 .event-info .text02 {
    margin-bottom: 8px;
}

.main-section.section04 .event-info .text03 {
    font-size: 17px;
    color: #999;
    font-weight: 300;
}

.main-section.section04 .event-slide .swiper-button-next,
.main-section.section04 .event-slide .swiper-button-prev {
    width: 40px;
    height: 40px;
    background: #444 url(../img/icon-navi-left.svg) center no-repeat;
    top: 300px;
    right: 290px;
    left: auto;
}

.main-section.section04 .event-slide .swiper-button-next {
    right: 240px;
    background: #444 url(../img/icon-navi-right.svg) center no-repeat;
}

.main-section.section04 .event-slide .swiper-button-next:after,
.main-section.section04 .event-slide .swiper-button-prev:after {
    display: none;
}

.main-section.section04 .event-area ul { display: flex; flex-wrap: wrap; justify-content: center; }
.main-section.section04 .event-area ul li { width: 33%; margin-bottom: 15px; }
.main-section.section04 .event-area ul li a { }
.main-section.section04 .event-area ul li a span { display: block; text-align: center; }
.main-section.section04 .event-area ul li a span:nth-child(1) { margin-bottom: 10px; }

@media screen and (max-width:1240px) {
    #main .main-visual .slide-text {
        top: 22%;
    }

    #main .main-visual .slide-text span {
        width: 30%;
    }

    #main .main-visual .slide-text .logo-box span {
        width: 100%;
    }

    /*    #main .main-visual .slide-text h2 {
        width: 100%;
    }

    #main .main-visual .slide-text h3 {
        display: none;
    }

    #main .main-visual .slide-text p {
        width: 80%;
        margin-bottom: 12px;
    }

    #main .main-visual .slide-text em {
        width: 80%;
    }*/

}
@media screen and (max-width:1028px) {
    #main .main-visual {
        height: 60vh;
    }

 #main .main-visual .slide-text {
        top: 30%;
    }
    #main .main-visual .logo-box {
        width: 80%;
    }
    #main .main-visual .logo-box strong {
        font-size: 21px;
    }
}

@media screen and (max-width:480px) {

    #main .main-visual .slide-text {
        top: 26%;
    }
    #main .main-visual .slide-text h2 {
        margin-bottom: 20px;
    }

    #main .main-visual .slide-text p {
        margin-bottom: 20px;
    }

    #main .main-visual .slide-text p img {
        margin-right: 10px;
		width: 70%;
    }

    #main .main-visual .slide-text em {
        margin-bottom: 20px;
}
        #main .main-visual .logo-box {
        width: 40%;
    }
    #main .main-visual .logo-box strong {
        font-size: 17px;
    }

    .main-section.section04 .notice-wrap {
        flex-wrap: wrap;
    }

    .main-section.section04 .title-area {
        margin-bottom: 20px;
    }

    .main-section.section04 .section-title {
        font-size: 24px;
    }

    .main-section.section04 .box-notice {
        flex: 1;
        width: 100%;
        margin: 0 0 40px 0;
    }

    .main-section.section04 .event-slide {
        height: auto;
    }

    .main-section.section04 .event-area {
        width: 100%;
    }

    .main-section.section04 .event-thum {
        width: 100%;
        float: none;
    }

    .main-section.section04 .event-thum img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .main-section.section04 .event-info {
        height: 240px;
        width: 100%;
    }

    .main-section.section04 .event-slide .swiper-button-next,
    .main-section.section04 .event-slide .swiper-button-prev {
        top: auto;
        bottom: 20px;
        right: auto;
    }

    .main-section.section04 .event-slide .swiper-button-prev {
        left: 40px;
    }

    .main-section.section04 .event-slide .swiper-button-next {
        left: 85px;
    }

    .main-section.section04 .board-list .item .date {
        width: 55px;
        height: 55px;
        margin-right: 10px;
    }

    .main-section.section04 .board-list .item .date .day {
        font-size: 21px;
    }

    .main-section.section04 .board-list .item .date p {
        font-size: 13px;
    }

    .main-section.section04 .board-list .item .text-area .text01 {
        font-size: 16px;
        margin-bottom: 6px;
    }

    .main-section.section04 .board-list .item .text-area .text02 {
        font-size: 12px;
    }
    #main .cont-02 ul li h3 a {

    font-size: 14px;
    height: 25px;
    line-height: 25px;

}
}

.modal-popup { position: fixed; top: 0; bottom: 0; left: 0; right: 0; background-color: rgba(0, 0, 0, 0.6); z-index: 999; display: none; }
.modal-popup h2 { font-size: 21px; margin-bottom: 20px; position: relative; width: 100%; text-align: left; color: #121212; }
.modal-popup p { font-size: 15px; margin: 10px 0; }
.modal-popup button { background-color: #007bff; color: white; padding: 10px 20px; border: none; border-radius: 5px; cursor: pointer; }
.modal-popup button:hover { background-color: #0062cc; }
.modal-popup .popup-content { background-color: white; width: 500px; max-width: 90%; margin: 50px auto; padding: 30px; border-radius: 10px; box-shadow: 0px 0px 10px rgba(0,0,0,0.5); }
.modal-popup .popup-content h2 .close { width: 24px; height: 24px; padding: 0; font-size: 14px; position: absolute; right: 0; }
.modal-popup .popup-content .text-box { text-align: left; width: 100%; height: 100px; overflow-y: scroll; border: solid 1px #e1e1e1; padding: 10px; }
.modal-popup .popup-content .text-box span { font-size: 15px; }
.modal-popup .popup-content select { width: 100%; height: 35px; line-height: 35px; padding: 0 10px; font-size: 15px; }
.modal-popup .popup-content .btn-wrap { text-align: center; }
.modal-popup .popup-content .margin { margin: 20px 0; }

.swiper-wrapper { margin-bottom: 20px!important; }
.swiper-pagination-bullet-active { background-color: #454545!important; }
