@charset "utf-8";

/* CSS Document */
/*=================================================================================

* Main

=================================================================================*/
#wrap {
    width: 100%;
    min-height: 100%;
    scroll-behavior: smooth;
    overflow: hidden;
}

@media (max-width: 768px) {
    /* 모바일 레이아웃 */
    #wrap {
        font-size: 11px;
    }
}

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

* 오픈예정

=================================================================================*/
#open-bg {
    position: relative;
    width: 100%;
    height: 100vh;
    background: #efe7d5 url(../img/open-bg.jpg) center no-repeat;
    background-size: cover;
}

#open-bg .text-area {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-60%);
    width: 40%;
}

#open-bg .open-text {
    font-size: 42px;
    font-weight: bold;
    padding: 20px 30px;
    border-radius: 100px;
    background: #f9bc17;
    text-align: center;
    position: absolute;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
}

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

* Main - popup

=================================================================================*/
.popup-layer {
    position: absolute;
    top: 15%;
    right: 5%;
    line-height: 0;
}

.popup-layer .img-area {
    position: relative;
}

.popup-layer .img-area a.btn01 {
    position: absolute;
    top: 265px;
    left: 50%;

    margin-left: -149px;
    display: block;
    width: 298px;
    height: 54px;
}

.popup-layer .img-area a.btn02 {
    position: absolute;
    bottom: 46px;
    left: 50%;

    margin-left: -149px;
    display: block;
    width: 298px;
    height: 54px;
}

.popup-layer .btn-close {
    display: block;
    width: 100%;
    height: 30px;
    line-height: 30px;
    text-align: center;
    background: #fff;
    cursor: pointer;
}

.popup-layer.disable {
    display: none;
}

#popup-wrap {
    width: 500px;
    position: absolute;
    top: 200px;
    left: 100px;
    z-index: 100;
}

#popup-wrap .pop-body {
    position: relative;
    overflow: hidden;
    line-height: 0;
}

#popup-wrap .pop-body a {
    display: block;
    witdh: 100%;
}

#popup-wrap .pop-body img {
    width: 100%;
    max-width: 100%;
}

#popup-wrap .pop-close {
    position: absolute;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
    height: 30px;
    width: 100%;
    z-index: 101;
}

#popup-wrap .pop-close a {
    display: block;
    text-align: center;
    color: #fff;
    line-height: 30px;
    text-decoration: none;
}

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

* flex

=================================================================================*/
.flex {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
}

.justify-center {
    justify-content: center;
}

.justify-flex-start {
    justify-content: flex-start;
}

.justify-flex-end {
    justify-content: flex-end;
}

.space-between {
    justify-content: space-between;
}

.align-start {
    align-items: flex-start;
}

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

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

* text

=================================================================================*/
.text-center {
    text-align: center;
}

.text-left {
    text-align: left !important;
}

.text-right {
    text-align: right;
}

.vertical-bottom {
    vertical-align: bottom;
}

.text-small {
    font-size: 0.857em;
}

.tip-text {
    padding: 8px 0;
    color: #999;
}

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

* Accordion Style

=================================================================================*/
.accordion {
    width: 100%;
    margin: 0 auto;
}

.accordion-header,
.accordion-body {
}

.accordion-header {
    padding: 1.5em 1.5em;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s;
    text-transform: uppercase;
    border-bottom: 1px solid #3a4ba4;
    font-weight: 500;
}

.accordion-header .accor-que {
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px;
}

.accordion__item {
}

.accordion-header:hover {
    color: #2d3d99;
    position: relative;
    z-index: 5;
}

.accordion-body {
    display: none;
    background: #f1f1f1;
}

.accordion-body__contents {
    padding: 2em;
    font-size: 18px;
}

.accordion:first-child > .accordion__item > .accordion-header {
    border-bottom: 1px solid transparent;
}

.accordion__item > .accordion-header:after {
    content: '+';
    font-size: 1.2em;
    float: right;
    position: relative;
    top: -2px;
    transition: 0.3s all;
    transform: rotate(0deg);
}

.accordion__item.active > .accordion-header:after {
    content: '-';
    transform: rotate(-180deg);
}

.accordion__item.active .accordion-header {
    color: #2d3d99;
}

.accordion__item .accordion__item .accordion-header {
    background: #f1f1f1;
    color: #353535;
}

@media (max-width: 1200px) {
    /* 1200px 레이아웃 */
}

@media (max-width: 768px) {
    /* 768px 레이아웃 */
    .accordion-header {
        padding: 1em;
        font-size: 14px;
    }

    .accordion-body {
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    /* 767px 이하  레이아웃 */
}

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

* tab

=================================================================================*/
#tab-menu {
}

#tab-tit {
}

#tab-btn {
    overflow: hidden;
}

#tab-btn ul {
}

#tab-btn li {
    position: relative;
    flex: 1;
    width: 1%;
    text-align: center;
    padding: 0;
}

#tab-btn li a {
    display: block;
    height: 70px;
    line-height: 70px;
    color: #ccc;
    font-weight: 600;
    box-sizing: border-box;
    background: #fff;
    border: 1px solid #ccc;
    border-bottom: 1px solid #58a3bc;
    font-size: 20px;
}

#tab-btn li {
    z-index: 1;
}

#tab-btn li.active a {
    color: #58a3bc;
    border-bottom: 0;
    border-color: #58a3bc;
}

#tab-btn li:hover a {
    color: #58a3bc;
}

#tab-cont {
    width: 100%;
    box-sizing: border-box;
    padding-top: 80px;
}

@media (max-width: 1200px) {
    /* 1200px 레이아웃 */
}

@media (max-width: 768px) {
    /* 768px 레이아웃 */
}

@media (max-width: 767px) {
    /* 767px 이하  레이아웃 */
}

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

* button

=================================================================================*/
.button-wrap {
    text-align: center;
    margin: 8px 0;
}

.btn {
    display: block;
    min-width: 120px;
    max-width: 500px;
    margin: 0 auto;
    padding: 0 32px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    border-radius: 10px;
}

.btn span {
    font-size: 14px;
}

.btn-small {
    display: inline-block;
    min-width: 50px;
    padding: 4px 16px;
    text-align: center;
    font-size: 13px;
    margin: 2px;
    font-weight: 400;
}

.btn-basic {
    background: #58a3bc;
    color: #fff;
}

.btn-basic:hover {
    background: #3e83a8;
    color: #fff;
}

.btn-secondary {
    background: #22a486;
    color: #fff;
}

.btn-secondary:hover {
    background: #038063;
}

.btn-gray {
    background: #ccc;
}

.btn-end {
    background: #666 !important;
}

.i-download {
    display: inline-block;
    vertical-align: text-bottom;
    width: 25px;
    height: 30px;
    margin-left: 4px;
    background: url(../img/i-download.svg) center no-repeat;
}

@media (max-width: 1200px) {
    /* 1200px 레이아웃 */
}

@media (max-width: 768px) {
    /* 768px 레이아웃 */
}

@media (max-width: 767px) {
    /* 767px 이하  레이아웃 */
    .button-wrap {
        flex-direction: column;
    }

    .btn {
        display: block;
        max-width: 100%;
        height: 40px;
        line-height: 40px;
        font-size: 14px;
        margin: 0 0 8px 0;
    }

    .btn-small {
        font-size: 12px;
        padding: 4px 8px;
    }
}

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

* search

=================================================================================*/
.search-window {
    margin-bottom: 16px;
    padding: 16px 0;
}

.search-window div {
    margin-right: 4px;
}

.search-window .search-wrap {
    position: relative;
}

.search-window .search-wrap input {
    width: 230px;
    font-size: 16px;
}

.search-window .select-wrap select {
    min-width: 120px;
    height: 40px;
    line-height: 40px;
}

.search-window .search-wrap .btn-small {
    height: 40px;
}

@media (max-width: 1200px) {
    /* 1200px 레이아웃 */
}

@media (max-width: 768px) {
    /* 768px 레이아웃 */
}

@media (max-width: 767px) {
    /* 767px 이하  레이아웃 */
    .search-window form {
        flex-wrap: wrap;
    }

    .search-window .select-wrap {
        width: 50%;
        margin: 0 0 4px 0;
        padding: 0 4px;
    }

    .search-window .search-wrap input {
        flex: 1;
    }
}

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

* popup

=================================================================================*/
.popop__trigger {
    display: block;
    text-align: center;
}

.popup__container {
    margin: 25rem auto;
    padding: 2rem;
    width: 350px;
    text-align: center;
}

.popup-lg .popup__container {
    width: 100%;
    min-width: 350px;
    max-width: 1024px;
    margin: 15rem auto;
}

.popup__message {
    padding: 1rem 1rem 2rem;
    line-height: 1.4;
    font-size: 16px;
}

.popup {
    background: rgba(34, 34, 34, 0.65);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.4s, visibility 0.4s;
    z-index: 100;
}

.popup--is-visible {
    visibility: visible;
    opacity: 1;
}

.popup__container {
    background: #fff;
    position: relative;
    transform: translate(0, -2.5rem);
    /* transform: translate3d(0, -2.5rem, 0);		/* Use this declaration if you want to force hardware acceleration */
    /* backface-visibility: hidden;  			      /* Use this declaration if you want to force hardware acceleration */
    transition: transform 0.4s;
}

.popup__container iframe {
    width: 100%;
    height: 500px;
}

.popup__container-is-lower {
    transform: translate(0, 0);
    /* transform: translate3d(0, 0, 0);					/* Use this declaration if you want to force hardware acceleration */
    /* backface-visibility: hidden;  			  		/* Use this declaration if you want to force hardware acceleration */
}

.popup__close {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    width: 1.875rem;
    height: 1.875rem;
}

.popup__close::before,
.popup__close::after {
    background: #222;
    content: '';
    position: absolute;
    top: 0.875rem;
    width: 1.625rem;
    height: 0.1875rem;
    /* Thickness of lines. 3px / 16 = 0.1875rem */
}

.popup__close::before {
    transform: rotate(45deg);
    left: 0.125rem;
}

.popup__close::after {
    transform: rotate(-45deg);
    right: 0.125rem;
}

/* Make text invisible but allow screen readers to know it exists */
.invisible-text {
    display: inline-block;
    overflow: hidden;
    text-indent: 100%;
    color: transparent;
    white-space: nowrap;
}

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

* INPUT - FILE

=================================================================================*/
.file-input {
    display: inline-block;
    text-align: left;
    padding: 0 10px;
    width: 100%;
    height: 50px;
    line-height: 50px;
    position: relative;
    border-radius: 0;
    cursor: pointer;
}

.file-input > [type='file'] {
    /*position: absolute;
	top: 0;
	left: 0;*/
    width: 98%;
    height: 100%;
    opacity: 1;
    z-index: 10;
    cursor: pointer;
}

/*.file-input > .label {
	color: #232323;
	white-space: nowrap;
	opacity: .3;
	font-size: 16px;
	font-weight: normal;
}
.file-input.-chosen > .label {
	opacity: 1;
}*/
@media (max-width: 1200px) {
    /* 1200px 레이아웃 */
}

@media (max-width: 768px) {
    /* 768px 레이아웃 */
}

@media (max-width: 767px) {
    /* 767px 이하  레이아웃 */
    .file-input > .label {
        font-size: 14px;
    }
}

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

* table

=================================================================================*/
/* ul table */
.table-wrap {
    width: 100%;
}

.table01,
.table02,
.table03 {
    width: 100%;
    table-layout: fixed;
}

.table01 li {
    width: 100%;
    font-size: 16px;
    display: table;
    margin-top: -1px;
}

.table01 .li-th,
.table01 .li-td,
.table01 .li-td-last {
    display: table-cell;
    vertical-align: middle;
    border: 1px solid #f1f1f1;
    padding: 12px;
    border-collapse: collapse;
    line-height: 1.6;
}

.table01 .li-th {
    width: 200px;
    background: #f6f6f6;
    text-align: center;
}

.table01 .li-td {
    /*width: calc(100% - 200px);*/
    font-weight: 400;
}

.table01 .li-td.table-wrap {
    width: auto;
}

.table01 .li-td span {
    display: block;
}

/* basic table */
.table02 {
    border-top: 1px solid #58a3bc;
}

.table02 th,
.table02 td {
    font-size: 16px;
    padding: 12px;
    border-bottom: 1px solid #e1e1e1;
    text-align: center;
}

.table02.all-line th,
.table02.all-line td {
    border: 1px solid #e1e1e1;
}

.table02 th {
    color: #58a3bc;
}

.table02 .time {
    background: #dbe7f3;
}

.table02 .close {
    background: #efefef;
    color: #666;
}

.table02 .info-mobile {
    display: none;
}

.table02 .info-mobile li {
    font-size: 12px;
    float: left;
    margin-right: 4px;
    padding-right: 4px;
    color: #666;
    font-weight: 400;
    border-right: 1px solid #999;
}

.table02 .info-mobile li:last-child {
    border-right: 0;
}

/* table 03 */
.table03 th,
.table03 td {
    padding: 12px;
    font-size: 16px;
    border: 1px solid #f1f1f1;
    line-height: 1.6;
}

.table03 th {
    width: 200px;
    background: #f6f6f6;
    text-align: center;
    font-weight: bold;
}

.table03 td {
    width: calc(100% - 200px);
    font-weight: 400;
}

.table03 td span {
    display: block;
}

.table03 td div {
    margin: 0;
}

.i-lock {
    display: inline-block;
    vertical-align: text-bottom;
    margin-right: 4px;
    width: 16px;
    height: 22px;
    background: url(../img/i-lock.svg) center no-repeat;
}

.reply {
    display: inline-block;
    vertical-align: middle;
    background: #999;
    text-align: center;
    padding: 4px;
    border-radius: 4px;
    margin: 0 8px 0 8px;
    font-size: 12px;
    color: #fff;
}

@media (max-width: 1200px) {
    /* 1200px 레이아웃 */
}

@media (max-width: 768px) {
    /* 768px 레이아웃 */
    .table-wrap.table-scroll {
        width: 100%;
        overflow-x: scroll;
    }

    .table-wrap.table-scroll .table02 {
        width: 600px;
    }
}

@media (max-width: 767px) {
    /* 767px 이하  레이아웃 */
    .table01 li {
        font-size: 14px;
        display: block;
    }

    .table01 {
    }

    .table01 .li-th,
    .table01 .li-td {
        display: block;
        width: 100%;
    }

    .table02.board th,
    .table02.board td {
        display: none;
    }

    .table02.board .title {
        text-align: left;
        display: block;
        font-size: 14px;
    }

    .table02.board .title a {
        display: block;
        margin-bottom: 8px;
    }

    .table02.board .info-mobile {
        display: block;
    }

    .table02 th,
    .table02 td {
        max-width: 160px;
        min-width: 120px;
        font-size: 13px;
        padding: 8px;
    }

    .table02.board th,
    .table02.board td {
        max-width: 100%;
        min-width: 100%;
        font-size: 13px;
        padding: 8px;
    }

    .table03 th,
    .table03 td {
        padding: 8px;
        font-size: 13px;
    }

    .table03 th {
        width: 80px;
    }

    .table03 td {
        width: calc(100% - 80px);
    }
}

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

 ** Pagination

========================================================================================*/
#pagination {
    display: flex;
    justify-content: center;
    margin: 32px 0 12px;
}

.blocks {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    display: inline-block;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
}

.blocks:not(:first-child) {
    margin-left: 4px;
}

.blocks:last-child img {
    transform: rotate(-180deg);
}

.blocks:hover {
    background-color: #58a3bc;
    color: #fff;
}

#pagination a.active {
    background-color: #58a3bc;
    color: #fff;
}

@media screen and (max-width: 768px) {
    .blocks {
        width: 25px;
        height: 25px;
        line-height: 25px;
        font-size: 11px;
    }
}

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

* Header

=================================================================================*/
.top_fix {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
}

.header {
    position: relative;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    z-index: 99;
    height: 100px;
    line-height: 100px;
    border-bottom: 1px solid #f1f1f1;
    background: #fff;
}

.header .logo {
    position: relative;
    width: 210px;
    height: 50px;
    background: url('../img/h1-logo.svg') 0 0 no-repeat;
    background-size: contain;
}

.header .logo a {
    display: block;
    width: 100%;
    height: 100%;
}

.header .gnb_links {
    width: 100%;
}

.header .gnb_links .link a {
    display: block;
    padding: 0 2rem;
    font-size: 18px;
    font-weight: 800;
    text-align: center;
    color: #232323;
}

.header .gnb_links .link-home a {
    display: block;
    width: 50px;
    height: 60px;
    background: url(../img/ico-home.svg) center no-repeat;
    background-size: 40px;
}

.header .gnb_links .link a:hover,
.header .gnb_links .link a.active {
    color: #1A53B1;
}

.header .user-menu {
    padding-right: 52px;
}

.header .user-menu-link {
    font-size: 14px;
    margin-right: 12px;
    padding-right: 12px;
    color: #666;
}

@media (max-width: 1439px) {
    /* 1440px 레이아웃 */
    .header .logo {
        width: 200px;
    }

    .header .gnb_links .link a {
        font-size: 15px;
        padding: 0 1rem;
    }

    .header .user-menu-link {
        font-size: 13px;
        margin-right: 4px;
        padding-right: 4px;
    }
}

@media (max-width: 1200px) {
    /* 1200px 레이아웃 */
    .header .logo {
        width: 280px;
    }

    .header .header_menu {
        display: none;
    }

    .header {
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    /* 768px 레이아웃 */
    #Header {
        height: 80px;
        line-height: 80px;
    }

    .header .logo {
        width: 280px;
        height: 80px;
    }
}

@media (max-width: 480px) {
    /* 480px 레이아웃 */
    #Header {
        height: 60px;
        line-height: 60px;
    }

    .header .logo {
        width: 180px;
        height: 40px;
    }

    .header .user-menu {
        display: none;
    }
}

/* ----------------------------------------- Hamburger Menu */
/* hamburger icon */
.hamburger {
    width: 40px;
    height: 40px;
}

.hamburger .line {
    width: 100%;
    height: 5px;
    background-color: #232323;
    display: block;
    margin: 8px auto;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.hamburger:hover {
    cursor: pointer;
}

#nav_trigger {
    position: absolute;
    top: 50%;
    margin-top: -25px;
    right: 40px;
}

/* close */
#hamburger-2 {
    margin: 16px;
}

#hamburger-2 .line:nth-child(2) {
    opacity: 0;
}

#hamburger-2 .line:nth-child(1) {
    -webkit-transform: translateY(13px) rotate(45deg);
    -ms-transform: translateY(13px) rotate(45deg);
    -o-transform: translateY(13px) rotate(45deg);
    transform: translateY(13px) rotate(45deg);
}

#hamburger-2 .line:nth-child(3) {
    -webkit-transform: translateY(-13px) rotate(-45deg);
    -ms-transform: translateY(-13px) rotate(-45deg);
    -o-transform: translateY(-13px) rotate(-45deg);
    transform: translateY(-13px) rotate(-45deg);
}

/* menu pannel */
.mask {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.slide-menu-right {
    right: -100%;
    top: 0;
    width: 100%;
    max-width: 600px;
    height: 100%;
    position: fixed;
    z-index: 1000;
    background-color: #fff;
    overflow: hidden;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

body.smr-open .slide-menu-right {
    right: 0;
}

.slide-menu-right .gnb_links {
    padding-top: 50px;
}

.slide-menu-right .gnb_links .link a {
    display: block;
    height: 40px;
    line-height: 40px;
    margin-bottom: 8px;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
}

.user-menu-pan {
    text-align: center;
}

.user-menu-pan .user-menu-link {
    font-size: 16px;
    margin: 8px;
    padding: 8px;
    color: #666;
}

@media (max-width: 1200px) {
    /* 1200px 레이아웃 */
    #nav_trigger {
        right: 20px;
    }

    .slide-menu-right .gnb_links {
        padding-top: 20px;
        flex-wrap: wrap;
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .hamburger {
        width: 35px;
        height: 35px;
    }

    .hamburger .line {
        height: 4px;
        margin: 6px auto;
    }

    #nav_trigger {
        margin-top: -17px;
    }

    #hamburger-2 .line:nth-child(3) {
        -webkit-transform: translateY(-7px) rotate(-45deg);
        -ms-transform: translateY(-7px) rotate(-45deg);
        -o-transform: translateY(-7px) rotate(-45deg);
        transform: translateY(-7px) rotate(-45deg);
    }
}

@media (max-width: 767px) {
}

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

* Footer

=================================================================================*/
#Footer {
    padding: 40px 0;
    background: #444;
}

#Footer .inner {
    width: 1200px;
    margin: 0 auto;
    text-align: left;
}

.footer-logo {
    width: 210px;
    margin-bottom: 16px;
}

.footer-logo img {
    filter: brightness(0) invert(1);
}

.footer .link {
    margin-bottom: 30px;
}

.footer .link a {
    float: left;
    display: block;
    margin-right: 12px;
    padding-right: 12px;
    line-height: 1;
    border-right: 1px solid #ccc;
    font-size: 16px;
    color: #fff;
}

.footer .link a:last-of-type {
    border-right: 0;
}

.footer p {
    font-size: 15px;
    margin-bottom: 8px;
    color: #b4b4b4;
}

.footer .contact {
    margin-bottom: 2px;
}

.footer .contact span {
    display: inline-block;
    vertical-align: text-bottom;
    line-height: 1;
    margin-right: 10px;
    margin-bottom: 2px;
    padding-right: 10px;
    border-right: 1px solid #b4b4b4;
}

.footer p span:last-of-type,
.footer p span:nth-of-type(3) {
    border-right: 0;
}

.footer .copyright {
    margin-top: 16px;
    color: #b4b4b4;
    font-weight: normal;
    font-size: 13px;
}

#GoTop {
    display: none;
    position: fixed;
    bottom: 40px;
    right: 10px;
    width: 60px;
    height: 60px;
    border: 1px solid #58a3bc;
    border-radius: 60px;
}

.long-arrow-top {
    display: block;
    margin: 0 auto;
    width: 20px;
    height: 20px;
    border-top: 2px solid #58a3bc;
    border-left: 2px solid #58a3bc;
    transform: rotate(45deg);
}

.long-arrow-top::after {
    content: '';
    display: block;
    width: 2px;
    height: 30px;
    background-color: #58a3bc;
    transform: rotate(-45deg) translate(10px, 4px);
    left: 0;
    top: 0;
}

@media (min-width: 1025px) {
    #GoTop {
        bottom: 50px;
        right: 50px;
    }
}

@media (max-width: 768px) {
    /* 모바일 레이아웃 */
    #Footer .inner {
        width: 95%;
        text-align: center;
    }

    .footer-logo {
        width: 130px;
        margin: 0 auto 16px;
    }

    .footer p {
        font-size: 11px;
        margin-bottom: 4px;
    }

    .footer .link {
        display: inline-block;
    }

    .footer .link a {
        margin-right: 4px;
        padding-right: 4px;
        font-size: 12px;
    }

    .footer .copyright {
        font-size: 11px;
    }
}

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

* Radio Style
<div class="radio">
	<input id="radio-2" name="radio" type="radio">
	<label  for="radio-2" class="radio-label">Unchecked</label>
</div>
=================================================================================*/
.radio {
    margin: 8px 8px 0 0;
}

.radio input[type='radio'] {
    position: absolute;
    opacity: 0;
}

.radio .radio-label {
    cursor: pointer;
}

.radio input[type='radio'] + .radio-label:before {
    content: '';
    background: #fff;
    border-radius: 100%;
    border: 1px solid #ddd;
    display: inline-block;
    width: 14px;
    height: 14px;
    position: relative;
    top: 4px;
    margin-right: 0.5em;
    vertical-align: top;
    cursor: pointer;
    text-align: center;
    transition: all 250ms ease;
}

.radio input[type='radio']:checked + .radio-label:before {
    background-color: #58a3bc;
    box-shadow: inset 0 0 0 4px #fff;
}

.radio input[type='radio']:focus + .radio-label:before {
    outline: none;
    border-color: #444;
}

.radio input[type='radio']:disabled + .radio-label:before {
    box-shadow: inset 0 0 0 4px #f4f4f4;
    border-color: #b4b4b4;
    background: #b4b4b4;
}

.radio input[type='radio'] + .radio-label:empty:before {
    margin-right: 0;
}

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

* checkbox

=================================================================================*/
.checkbox-area {
    position: relative;
    flex: 1;
}

.checkbox-area .label-text {
    font-size: 14px;
    cursor: pointer;
    font-weight: 300;
}

.checkboxField:before {
    transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
    border: 2px solid;
    border-radius: 0;
    background-color: white;
    border-color: transparent;
    box-sizing: border-box;
    color: #58a3bc;
    content: close-quote;
    display: inline-block;
    width: 14px;
    height: 14px;
    margin-right: 4px;
    outline: 1px solid #58a3bc;
    transition-duration: 0.5s;
    transition-property: background-color, border-color;
    cursor: pointer;
}

.checkboxField:checked:before {
    background-color: #58a3bc;
    border-color: white;
}

.checkbox-area .label-text span,
.big-label span {
    color: #f82225;
}

.input-box .check-wrap {
    flex-wrap: wrap;
}

.input-box .checkbox-area {
    width: 200px;
    margin: 0 8px 8px 0;
    flex: none;
}

.input-box .checkbox-area.full-width {
    width: 100%;
    margin: 0 8px 8px 0;
    flex: none;
}

@media (max-width: 1200px) {
    /* 1200px 레이아웃 */
}

@media (max-width: 768px) {
}

@media (max-width: 767px) {
    .checkbox-area .label-text {
        font-size: 13px;
    }

    .checkboxField:before {
        width: 14px;
        height: 14px;
    }
}

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

* form

=================================================================================*/
.form-wrap {
    width: 100%;
    min-height: 65vh;
    flex-direction: column;
}

.form-wrap .img-area {
    width: 300px;
    text-align: center;
}
.form-wrap .img-area img {
    width: 70%;
}
.form-wrap h2 {
    margin-bottom: 50px;
    font-size: 24px;
    font-weight: bold;
}

.form-wrap form {
    width: 100%;
    max-width: 650px;
}

.form-wrap .input-box-area {
    margin-bottom: 32px;
}

.form-wrap .input-box {
    margin-bottom: 8px;
}

.form-wrap .input-box input[type='text'],
.form-wrap .input-box input[type='password'],
select {
    width: 100%;
    max-width: 100%;
    height: 50px;
    padding-left: 14px;
    line-height: 50px;
    font-size: 14px;
    font-weight: 300;
    border: 1px solid #e1e1e1;
    text-indent: 0;
}

.form-wrap .input-box.both input[type='text'] {
    flex: 2;
}

.form-wrap .input-box.both select,
.form-wrap .input-box.both .btn {
    flex: 1;
    margin-left: 8px;
}

.form-wrap .input-box.three input[type='text']:nth-child(3) {
    margin: 0 4px;
}

.form-wrap input[type='submit'],
.form-wrap .btn {
    width: 100%;
    max-width: 100%;
    border: 0;
    cursor: pointer;
    /*	margin: 0;*/
}

.form-wrap .help-box {
    margin-top: 16px;
}

.find-user {
    flex: 1;
    text-align: right;
}

.find-user a {
    position: relative;
    display: inline-block;
    font-size: 16px;
    margin-right: 8px;
    padding-right: 8px;
    color: #666;
}

.find-user a:after {
    position: absolute;
    top: 0;
    right: -8px;
    display: block;
    clear: both;
    content: '｜';
    color: #666;
}

.find-user a:last-of-type {
    margin-right: 0;
    padding-right: 0;
}

.find-user a:last-of-type::after {
    content: '';
}

.form-wrap .textfiled {
    width: 100%;
    height: 140px;
    border: 1px solid #e1e1e1;
    overflow-y: auto;
    padding: 16px;
}

.big-label {
    margin-bottom: 8px;
    font-size: 15px;
    padding-bottom: 8px;
    border-bottom: 1px solid #ccc;
    font-weight: 500;
}

.progressbar {
    width: 100%;
    max-width: 520px;
    margin: 0 0 50px 0;
    counter-reset: step;
}

.progressbar li {
    list-style-type: none;
    width: 50%;
    float: left;
    font-weight: 500;
    font-size: 18px;
    position: relative;
    text-align: center;
    text-transform: uppercase;
    color: #999;
}

.progressbar li:before {
    width: 20px;
    height: 20px;
    content: '';
    line-height: 30px;
    border: 4px solid #ccc;
    background-color: #fff;
    display: block;
    text-align: center;
    margin: 0 auto 10px auto;
    border-radius: 50%;
    transition: all 0.8s;
    box-sizing: border-box;
}

.progressbar li:after {
    width: 100%;
    height: 2px;
    content: '';
    position: absolute;
    background-color: #ccc;
    top: 10px;
    left: 0;
    z-index: -1;
    transition: all 0.8s;
}

.progressbar li:first-child:after {
    /*content: none;*/
}

.progressbar li.active {
    color: #58a3bc;
}

.progressbar li.active:before {
    border-color: #58a3bc;
    background-color: #fff;
    transition: all 0.8s;
}

.progressbar li.active:after {
    background-color: #58a3bc;
    transition: all 0.8s;
}

@media (max-width: 1200px) {
    /* 1200px 레이아웃 */
    .form-wrap .input-box input[type='text'],
    .form-wrap .input-box input[type='password'],
    select {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
}

@media (max-width: 767px) {
    .form-wrap {
        width: 100%;
        margin: 0 auto;
    }

    .form-wrap .input-box input[type='text'],
    .form-wrap .input-box input[type='password'],
    select {
        height: 50px;
        line-height: 50px;
        font-size: 14px;
        padding-left: 8px;
    }

    .big-label {
        font-size: 14px;
    }

    .find-user a {
        font-size: 12px;
    }

    .progressbar li {
        font-size: 15px;
    }
}

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

* Container

=================================================================================*/
#Container {
    overflow: hidden;
}

.section {
    position: relative;
    scroll-behavior: smooth;
}

.section .inner {
    position: relative;
    width: 1200px;
    margin: 0 auto;
    padding: 50px 0 120px;
}

.title-wrap {
    margin-bottom: 60px;
    text-align: center;
    line-height: 1.2;
}

.title-wrap .sub-title {
    display: none;
    margin-bottom: 8px;
    font-size: 16px;
    font-weight: 600;
    color: #58a3bc;
    text-transform: uppercase;
}

.title-wrap .box-title {
    font-size: 34px;
    font-weight: 800;
}

@media (max-width: 1200px) {
    /* 1200px 레이아웃 */
    .section .inner {
        width: 95%;
        padding: 60px 20px;
    }
}

@media (max-width: 768px) {
    /* 768px 레이아웃 */
}

@media (max-width: 767px) {
    /* 767px 이하  레이아웃 */
    .section .inner {
        padding: 40px 20px;
    }

    .title-wrap {
        margin-bottom: 30px;
    }
}

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

* Main - page

=================================================================================*/
.main_section01 {
    height: 800px;
    overflow: hidden;
    background: #1953B1 url(../img/main-bg.jpg) center/cover no-repeat;
    -webkit-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    -webkit-animation: KEYFRAME 3s both;
    -moz-animation: KEYFRAME 3s both;
    -o-animation: KEYFRAME 3s both;
    animation: KEYFRAME 3s both;
}

@-webkit-keyframes KEYFRAME {
    0% {
        -webkit-transform: scale(1.4);
        transform: scale(1.4);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@-moz-keyframes KEYFRAME {
    0% {
        -webkit-transform: scale(1.4);
        transform: scale(1.4);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@-o-keyframes KEYFRAME {
    0% {
        -webkit-transform: scale(1.4);
        transform: scale(1.4);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes KEYFRAME {
    0% {
        -webkit-transform: scale(1.4);
        transform: scale(1.4);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

.main_section01 .inner {
    height: 800px;
}

.main_section01 .social-area {
    position: absolute;
    bottom: 40px;
    right: 0;
}

.main_section01 .social-area a {
    display: block;
    margin-left: 8px;
    height: 50px;
    padding: 5px 20px 10px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 32px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main_section01 .social-area a img {
    width: 100px;
}

.main_section01 .social-area a:first-of-type {
    margin-left: 0;
}

.main_section01 .text-wrap {
    width: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
	text-align: center;
}

.main_section01 .img-area {
    position: relative;
    width: 50%;
    float: left;
    height: 800px;
}

.main_section01 .img-item {
    position: absolute;
    z-index: 1;
    top: 80px;
}

.main_section01 .video-item {
    position: absolute;
    top: 90px;
    left: 125px;
    z-index: 2;
}

.main_section01 .video-item iframe {
    width: 375px;
    height: 238px;
}

@media (max-width: 1200px) {
    /* 1200px 레이아웃 */
    .main_section01 {
        height: 530px;
    }

    .main_section01 .inner,
    .main_section01 .img-area {
        height: 530px;
    }

    .main_section01 .video-item {
        position: absolute;
        top: 90px;
        left: 112px;
        z-index: 2;
    }

    .main_section01 .video-item iframe {
        width: 315px;
        height: 201px;
    }
}

@media (max-width: 768px) {
    /* 768px 레이아웃 */
    .main_section01 {
        background: url(../img/main_visual_.png) center no-repeat;
    }

    .main_section01,
    .main_section01 .img-area {
        height: 800px;
    }

    .main_section01 .inner {
        height: 830px;
        padding: 60px 0 0;
    }

    .main_section01 .text-wrap {
        width: 60%;
        margin: 0 auto;
        float: none;
    }

    .main_section01 .img-area {
        width: 70%;
        margin: 0 auto;
        float: none;
    }

    .main_section01 .img-item {
        top: 20px;
    }

    .main_section01 .video-item {
        top: 20px;
        left: 50%;
        margin-left: -50%;
    }

    .main_section01 .video-item iframe {
        width: 280px;
        height: 183px;
    }
}

@media (max-width: 480px) {
    /* 480px 레이아웃 */
    .main_section01,
    .main_section01 .img-area {
        height: 630px;
    }

    .main_section01 .inner {
        height: 630px;
        padding: 60px 0 0;
    }

    .main_section01 .social-area {
        right: 20px;
    }
}

/* ----------------------------------------- main_section02 */
.main_section02 {
    background: #fff;
}

.img-btn-wrap {
}

.img-btn-wrap .btn-item {
    flex: 1;
    margin-left: 8px;
    padding: 32px 16px;
    box-sizing: inherit;
    background: #fff;
    text-align: center;
    overflow: hidden;
    border-radius: 4px;
}

.img-btn-wrap .btn-item:first-of-type {
    margin-left: 0;
}

.img-btn-wrap .btn-item .img-area {
    width: 100%;
    height: 200px;
    margin-bottom: 10px;
    border: solid 1px #e1e1e1;
    padding: 20px;
    border-radius: 20px;
}

.img-btn-wrap .btn-item .img01 {
    background: #fff url(../img/btn-img01.png) center no-repeat;
    background-size: contain;
}

.img-btn-wrap .btn-item .img02 {
    background: #fff url(../img/btn-img02.png) center no-repeat;
    background-size: contain;
}

.img-btn-wrap .btn-item .img03 {
    background: #fff url(../img/btn-img03.png) center no-repeat;
    background-size: contain;
}

.img-btn-wrap .btn-item .img04 {
    background: #fff url(../img/btn-img04.png) center no-repeat;
    background-size: contain;
}

.img-btn-wrap .btn-item .title-area {
    margin-bottom: 16px;
    text-align: center;
}

.img-btn-wrap .btn-item .title-area .text01 {
    margin-bottom: 12px;
    font-size: 21px;
    font-weight: 700;
    color: #1A53B1;
	line-height: 28px;
}

.img-btn-wrap .btn-item .title-area .text02 {
    font-size: 15px;
    line-height: 1.4;
    font-weight: 400;
    color: #999;
}

.img-btn-wrap .btn-item .btn-area a {
    display: block;
    height: 50px;
    line-height: 50px;
    font-size: 16px;
    font-weight: 300;
    border-radius: 10px;
}

@media (max-width: 1200px) {
    /* 1200px 레이아웃 */
}

@media (max-width: 768px) {
    /* 768px 레이아웃 */
}

@media (max-width: 767px) {
    /* 767px 레이아웃 */
    .img-btn-wrap {
        flex-direction: column;
    }

    .img-btn-wrap .btn-item {
        width: 100%;
        flex: 1;
        height: 240px;
        margin-left: 0;
        margin-bottom: 16px;
        padding: 20px;
    }

    .img-btn-wrap .btn-item .img-area {
        height: 120px;
        margin-bottom: 16px;
        background-size: contain;
    }

    .img-btn-wrap .btn-item .text-area {
        font-size: 18px;
        font-weight: bold;
    }
}

/* ----------------------------------------- main_section03 */
.main_section04 {
    background: #f9f9f9;
}

.main_section04 .cmp-list {
    height: auto;
}

.cmp-list .item {
    width: calc(100% / 4);
    float: left;
    padding: 8px;
}

.cmp-list .item a {
    height: 80px;
    line-height: 80px;
    text-align: center;
    border: 1px solid #f1f1f1;
    background: #fff;
    overflow: hidden;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cmp-list .item a img {
    width: 70%;
    margin: 0 auto;
}

@media (max-width: 1200px) {
    /* 1200px 레이아웃 */
}

@media (max-width: 768px) {
    /* 768px 레이아웃 */
    .cmp-list .item {
        width: calc(100% / 2);
    }

    .cmp-list .item a {
        height: 50px;
        line-height: 50px;
    }
}

@media (max-width: 480px) {
    /* 480px 레이아웃 */
}

/* ----------------------------------------- main_section04 */
@media (max-width: 1200px) {
    /* 1200px 레이아웃 */
}

@media (max-width: 768px) {
    /* 768px 레이아웃 */
}

@media (max-width: 480px) {
    /* 480px 레이아웃 */
}

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

* Sub - page

=================================================================================*/
#sub_page .inner {
    padding: 80px 0 80px 0;
}

#sub_visual {
    position: relative;
    width: 100%;
    height: 300px;
    color: #fff;
    text-align: center;
    background: #4062e9 center no-repeat;
    background-size: cover;
}

#sub_visual.visual01 {
    background-image: url('../img/visual01.jpg');
}

#sub_visual.visual02 {
    background-image: url('../img/visual02.jpg');
}

#sub_visual.visual03 {
    background-image: url('../img/visual03.jpg');
}

#sub_visual.visual04 {
    background-image: url('../img/visual07.jpg');
}

#sub_visual.visual05 {
    background-image: url('../img/visual06.jpg');
}

#sub_visual.visual06 {
    background-image: url('../img/visual05.png');
}

#sub_visual.visual07 {
    background-image: url('../img/visual04.jpg');
}
#sub_visual.visual08 {
    background-image: url('../img/visual08.jpg');
}

#sub_visual h2 {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 300px;
    line-height: 300px;
}

#sub_visual h2 .text {
    font-size: 30px;
    font-weight: bold;
    color: #fff;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
}

#sub-category {
    background: #f9f9f9;
    border-bottom: 1px solid #f1f1f1;
}

#sub-category ul {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 1200px;
    margin: 0 auto;
}

#sub-category li {
    flex: 1;
}

#sub-category li a {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1.2;
    font-size: 17px;
    height: 60px;
}

#sub-category li a:hover {
    color: #58a3bc;
}

#sub-category li a.active {
    background: #58a3bc;
    color: #fff;
}

.sub-cont-wrap .box {
    padding: 40px 0;
    border-bottom: 1px solid #e1e1e1;
}

.sub-cont-wrap .box:first-of-type {
    padding-top: 0;
}

.sub-cont-wrap .box-title {
    margin-bottom: 16px;
    padding: 16px;
    font-size: 20px;
    background: rgba(88, 163, 188, 0.1);
    color: #58a3bc;
    font-weight: 500;
}

.sub-title-area {
}

.sub-title-area .title {    
    font-size: 30px;
    font-weight: 700;
	margin-bottom: 20px;
}

.sub-title-area .desc {
    font-size: 18px;
    line-height: 1.4;
    color: #333;
    font-weight: 300;
}

.box_al .list-dot {
    margin-bottom: 0;
}

.list-dot,
.list-basic {
    margin-bottom: 50px;
}

.list-dot p,
.list-basic p {
    position: relative;
    margin-bottom: 8px;
    padding-left: 16px;
    font-size: 16px;
    line-height: 1.6;
    font-weight: 400;
}

.line-dashed {
    background: transparent;
    border-top: 1px dashed #f1f1f1;
    margin: 20px 0;
}

.list-dot p:before {
    display: block;
    content: '·';
    clear: both;
    position: absolute;
    top: -2px;
    left: 4px;
    font-size: 18px;
    font-weight: bold;
}

.list-dot .dot-none:before {
    display: none;
}

@media (max-width: 1200px) {
    /* 1200px 레이아웃 */
    #sub-category ul {
        width: 100%;
    }

    .sub-cont-wrap .box {
        padding: 40px 0;
        border-bottom: 1px solid #e1e1e1;
    }
}

@media (max-width: 768px) {
    /* 768px 레이아웃 */
    #sub_page .inner {
        padding: 60px 0;
    }

    #sub_visual {
        height: 200px;
    }

    .sub-cont-wrap .box {
        flex-direction: column;
    }
}

@media (max-width: 767px) {
    /* 767px 레이아웃 */
    #sub_page .inner {
        padding: 40px 0;
    }

    #sub_visual {
        height: 140px;
    }

    #sub_visual h2 {
        bottom: 50%;
        height: 60px;
        line-height: 60px;
        margin-bottom: -30px;
    }

    #sub_visual h2 .text {
        font-size: 24px;
    }

    .sub-cont-wrap .box {
        padding: 20px 0;
        flex-direction: column;
    }

    .title-bar {
        font-size: 20px;
    }

    .s-title {
        font-size: 16px;
    }

    .list-dot p,
    .list-basic p {
        font-size: 13px;
        padding-left: 12px;
    }

    #sub-category li a {
        padding: 12px 4px;
        line-height: 1.2;
        font-size: 12px;
        /*height: 50px;
        line-height: 50px;
        font-size: 12px;*/
    }

    #sub-category li a span {
        height: auto;
        line-height: 14px;
    }

    .sub-cont-wrap .box-title {
        padding: 8px;
        font-size: 16px;
    }

    .sub-title-area .title {
        margin-bottom: 24px;
        font-size: 20px;
    }

    .sub-title-area .title:after {
        width: 60px;
        height: 4px;
        margin: 8px 0;
    }

    .sub-title-area .desc {
        font-size: 15px;
    }
}

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

* Sub - 박람회 소개

=================================================================================*/
/* 행사개요 및 구성  */
.info-detail-wrap { }
.info-detail-wrap h3 { font-size: 21px; margin: 50px 0 10px; }
.info-summary { border-top: solid 1px #e1e1e1; }
.info-summary dd { border-bottom: solid 1px #e1e1e1; padding: 10px 0; display: flex; justify-content: space-between; font-size: 16px; }
.info-summary dd div:nth-child(1) { width: 20%; }
.info-summary dd div:nth-child(2) { width: 75%; }
.info-summary dd div:nth-child(2) span { margin-right: 10px; }
.info-summary dd div:nth-child(2) table { width: 100%; }
.info-summary dd div:nth-child(2) table th { background-color: #DDEAFF; font-size: 16px; font-weight: 800; padding: 7px 0; }
.info-summary dd div:nth-child(2) table td { font-size: 16px; padding: 7px 0; border-bottom: solid 1px #e1e1e1; text-align: center; }
.text-list li { list-style: circle; margin-left: 20px; margin-bottom: 10px; font-size: 16px; }
.info-flex, .info-flex2 { display: flex; justify-content: space-between; margin: 30px 20px; }
.info-flex span, .info-flex2 span { display: block; background-color: #DDEAFF; border-radius: 10px; width: 18%; text-align: center; padding: 20px 0; font-size: 16px; font-weight: 700; line-height: 20px; position: relative; }
.info-flex span em, .info-flex2 span em { font-size: 14px; font-weight: 500; }
.info-flex span::after { content: ""; position: absolute; right: -19px; top: 40%; width: 0px; height: 0px; border-style: solid; border-width: 10px 0 10px 20px; border-color: transparent transparent transparent #DDEAFF; transform: rotate(0deg); }
.info-flex span:last-child::after { display: none; }
.info-flex2 span::after { content: ""; position: absolute; right: 46%; bottom: -20px; width: 0px; height: 0px; border-style: solid; border-width: 20px 10px 0 10px; border-color: #DDEAFF transparent transparent transparent; transform: rotate(0deg); }
.btn-wrap { display: flex; justify-content: center; }
.btn-wrap a { padding: 10px 20px; display: block; background-color: #1953B1; color: #fff; font-size: 18px; font-weight: 700; border-radius: 10px; }
.tip-box { padding: 15px; text-align: center; font-size: 16px; background-color: #248FDE; color: #fff; margin: 0 20px 30px; border-radius: 10px; }
.info-event { display: flex; flex-wrap: wrap; }
.info-event li { width: 49%; margin-right: 2%; display: flex; margin-bottom: 20px; }
.info-event li:nth-child(2n) { margin-right: 0; }
.info-event li:last-child { margin-bottom: 0; }
.info-event li div:nth-child(1) { width: 25%; margin-right: 5%; }
.info-event li div:nth-child(2) { width: 66%; }
.info-event li div:nth-child(2) strong { font-size: 16px; font-weight: 800; margin-bottom: 10px; display: block; color: #1953B1; }
.info-event li div:nth-child(2) table { width: 100%; border-top: solid 1px #e1e1e1; border-left: solid 1px #e1e1e1; }
.info-event li div:nth-child(2) table th { text-align: center; padding: 5px 0; border-bottom: solid 1px #e1e1e1; border-right: solid 1px #e1e1e1; font-weight: 700; }
.info-event li div:nth-child(2) table td { text-align: center; padding: 5px 0; border-bottom: solid 1px #e1e1e1; border-right: solid 1px #e1e1e1; }


.info-detail-wrap .box .text-area {
    margin-right: 60px;
}

.info-detail-wrap .box .text-area .title {
    margin-bottom: 16px;
}

.info-detail-wrap .box .text-area .title .text {
    font-size: 24px;
    font-weight: bold;
    color: #232323;
}

.info-detail-wrap .box .text-area .desc {
}

.info-detail-wrap .box .text-area .desc {
    color: #666;
    line-height: 1.6;
    font-size: 18px;
    font-weight: 300;
}

.info-detail-wrap .box .img-area {
    width: 240px;
    margin-right: 30px;
    padding: 16px;
    border: 1px solid #e1e1e1;
    cursor: pointer;
}

.info-detail-wrap .box .img-box {
}

.show,
.show02 {
    z-index: 999;
    display: none;
}

.show .overlay,
.show02 .overlay {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.46);
    position: fixed;
    top: 0;
    left: 0;
}

.show .img-show,
.show02 .img-show02 {
    width: 90%;
    max-width: 500px;
    height: 780px;
    background: #fff;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.img-show .pop-close,
.img-show02 .pop-close {
    position: absolute;
    top: 0;
    right: -30px;
    z-index: 99;
    cursor: pointer;
    width: 30px;
    height: 30px;
    background: #fff;
    text-align: center;
    line-height: 30px;
}

.img-show .pop-close span,
.img-show02 .pop-close span {
    display: block;
    font-weight: bold;
    font-size: 20px;
    transform: rotate(45deg);
}

.img-show img,
.img-show02 img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.video-wrap {
    position: relative;
    height: 100%;
    min-height: 480px;
    margin-bottom: 32px;
}

.video-wrap .video-item {
    /* width: 100%; */
    margin: 10px auto 10px;
}

.video-wrap .video-thum {
    width: 100%;
    min-height: 100%;
    background: #f1f1f1;
    overflow: hidden;
}

.video-wrap iframe,
.video-wrap object,
.video-wrap embed {
    width: 100%;
    /* min-width: 560px; */
}

.table-wrap .video-wrap {
    min-height: 315px;
}

.table-wrap .video-wrap iframe,
.table-wrap .video-wrap object,
.table-wrap .video-wrap embed {
    /* width: auto; */
}

.promo-wrap .box-btn-wrap .btn-item {
    width: 100%;
    margin: 0 10px;
    max-width: 580px;
}

/* 지난행사 소개  */
.info-past-wrap .table-wrap {
    width: 100%;
    margin-right: 60px;
}

.info-past-wrap .img-area {
    flex-basis: 400px;
    flex-grow: 0;
    flex-shrink: 0;
}

@media (max-width: 1200px) {
    /* 1200px 레이아웃 */
}

@media (max-width: 768px) {
    /* 768px 레이아웃 */
}

@media (max-width: 767px) {
    /* 767px 레이아웃 */
    .list-wrap .list-item {
        width: calc(97% / 2);
    }

    .promo-wrap .box-btn-wrap .btn-item {
        width: 100%;
        margin: 10px 0;
        max-width: 100%;
    }

    .info-detail-wrap .box .logo-area {
        width: 100%;
        margin-right: 0;
        margin-bottom: 16px;
    }

    .info-detail-wrap .box .text-area {
        width: 100%;
    }

    .info-detail-wrap .box .text-area .title .text {
        font-size: 20px;
    }

    .info-detail-wrap .box .text-area .desc span {
        display: block;
        border-right: 0;
        margin-bottom: 8px;
        font-size: 12px;
    }

    .video-wrap {
        flex-direction: column;
    }

    .video-wrap .video-item {
        width: 100%;
        margin-bottom: 8px;
    }

    .video-wrap .video-thum {
        min-height: 240px;
    }

    .info-past-wrap .box {
        flex-direction: column-reverse;
    }

    .info-past-wrap .img-area {
        flex-basis: 100%;
        margin-bottom: 16px;
    }
}

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

* 참가안내

=================================================================================*/
.process-item {
    flex-wrap: wrap;
    justify-content: center;
}

.process-item .item {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 50px 50px 0;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #ececec;
    text-align: center;
    flex-direction: column;
}

.process-item .item:first-of-type::after {
    display: none;
}

.process-item .item:nth-of-type(5) {
    margin-right: 0;
}

.process-item .item:after {
    position: absolute;
    top: 42%;
    left: -45px;
    display: block;
    content: '';
    clear: both;
    width: 40px;
    height: 40px;
    background: url(../img/icon-process-arrow.png) 0 0 no-repeat;
}

.process-item .item div {
}

.process-item .item .img-area {
    margin-bottom: 16px;
}

.process-item .item .text-area {
    font-size: 16px;
    font-weight: 500;
}

@media (max-width: 768px) {
    /* 768px 레이아웃 */
    .process-item .item {
        width: 120px;
        height: 120px;
        margin: 0 16px 16px 0;
    }
}

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

* 글작성 폼

=================================================================================*/
.board-write.form-wrap form {
    max-width: 100%;
}

.board-write.form-wrap ul {
    border-top: 1px solid #232323;
}

.board-write.form-wrap li {
    display: table;
    width: 100%;
    margin-bottom: 0;
    padding: 8px;
    border-bottom: 1px solid #e1e1e1;
}

.board-write.form-wrap li .label-text,
.board-write.form-wrap li .input-area {
    display: table-cell;
    vertical-align: middle;
}

.board-write.form-wrap .input-area textarea {
    height: 300px;
}

.board-write .label-text {
    display: block;
    width: 120px;
    font-size: 16px;
}

.board-write .label-text span {
    color: #f82225;
}

.board-write .input-box input[type='text'],
.board-write .input-box input[type='password'] {
    border: 0;
    height: 50px;
    line-height: 50px;
}

.board-write .input-box select {
    width: 300px;
    height: 50px;
    line-height: 50px;
    font-size: 16px;
}

.board-write .input-box .tip {
    padding-left: 16px;
    color: #999;
}

.board-write .button-wrap a {
    width: 200px;
}

@media (max-width: 1200px) {
    /* 1200px 레이아웃 */
}

@media (max-width: 768px) {
}

@media (max-width: 767px) {
    .board-write.form-wrap li {
        padding: 4px;
    }

    .board-write.form-wrap li .label-text,
    .board-write.form-wrap li .input-area {
    }

    .board-write .label-text {
        width: 75px;
        font-size: 12px;
    }

    .board-write .input-box select {
        width: 100%;
        font-size: 14px;
    }

    .board-write .input-box .tip {
        padding-left: 8px;
    }
}

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

* 뷰페이지

=================================================================================*/
.view-area {
    width: 100%;
}

.view-area .view-title {
    width: 100%;
    border-top: 1px solid #232323;
}

.view-area .view-title h4 {
    line-height: 1.6;
    padding: 20px;
    font-size: 20px;
    color: #232323;
    margin-bottom: 0;
    word-wrap: break-word;
    font-weight: 500;
}

.view-area .view-title .view-info {
    border-top: 1px solid #f1f1f1;
    padding: 20px 0;
}

.view-area .view-title .view-info ul {
    display: inline-block;
    overflow: hidden;
}

.view-area .view-title .view-info ul li {
    float: left;
    padding: 0 16px;
    font-size: 13px;
    line-height: 1.6;
}

.view-area .view-title .view-info ul li + li {
    border-left: 1px solid #ccc;
}

.view-area .view-title span {
    float: left;
    padding-right: 8px;
}

.view-area .view-title .text {
    color: #707070;
    float: left;
}

.view-area .view-title .text:before {
    content: ':';
    padding-right: 8px;
}

.view-area .view-cont {
    min-height: 350px;
    padding: 20px 20px 40px;
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    word-wrap: break-word;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
}

@media (max-width: 1200px) {
    /* 1200px 레이아웃 */
}

@media (max-width: 768px) {
}

@media (max-width: 767px) {
    .view-area .view-title h4 {
        font-size: 16px;
        padding: 16px 10px;
    }

    .view-area .view-title .view-info ul li {
        padding: 0 8px;
        font-size: 12px;
        line-height: 1.4;
    }
}

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

* Tab

=================================================================================*/
.tabs {
    width: 100%;
    margin-top: 50px;
    display: flex;
    flex-direction: column;
}

#tab-links {
    width: 100%;
    list-style-type: none;
    padding: 0;
}

.tabs .tab-link {
    display: block;
    text-align: center;
    /*width: calc(100%/3);*/
    flex: 1;
}

.tabs .tab-link a {
    display: block;
    height: 80px;
    line-height: 80px;
    text-decoration: none;
    background: #fff;
    transition: all 0.2s ease-in-out;
    border: 1px solid #e1e1e1;
    border-bottom-color: #58a3bc;
}

.tabs .tab-link a.active {
    border-color: #58a3bc;
    color: #58a3bc;
    border-bottom: 0;
}

.tabs .tab-link a:hover:not(.active) {
    color: #232323;
}

.tabs .tab-link a span {
    line-height: 1.2;
    font-size: 20px;
}

.tabs section {
    width: 100%;
    background: #fff;
    padding: 40px 0;
    display: none;
}

.tabs section.active {
    display: block;
}

@media (max-width: 1200px) {
    /* 1200px 레이아웃 */
}

@media (max-width: 768px) {
    .tabs .tab-link a {
        height: 60px;
        line-height: 60px;
    }

    .tabs .tab-link a span {
        font-size: 15px;
    }
}

@media (max-width: 767px) {
}

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

* 강사 리스트

=================================================================================*/
.mentor-list {
    margin-bottom: 30px;
}

.mentor-list-item {
    float: left;
    width: calc(98% / 3);
    margin-right: 1%;
    margin-bottom: 1%;
    padding: 16px;
    border: 1px solid #e1e1e1;
}

.mentor-list-item:nth-of-type(3n) {
    margin-right: 0;
}

.mentor-list-item .item {
    padding: 8px 0;
}

.mentor-list-item .item01 {
    border-bottom: 2px solid #58a3bc;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
}

.mentor-list-item .item01 span {
    margin-right: 12px;
    padding-right: 12px;
    border-right: 1px solid #999;
}

.mentor-list-item .item02 {
}

.mentor-list-item .item02 .thum {
    padding-top: 16px;
}

.mentor-list-item .item03 .list-dot {
    height: 100px;
    margin-bottom: 0;
}

.mentor-list-item .item03 .list-dot p {
}

.mentor-list-item .item03 p {
    margin-bottom: 0;
}

.mentor-list-item .item03 .info {
    margin-bottom: 8px;
    padding: 8px;
    background: #f1f1f1;
}

.mentor-list-item .item03 .info p {
    margin-bottom: 2px;
    font-size: 14px;
}

.mentor-list-item .item03 .info .text02 {
    font-size: 18px;
}

.mentor-list-item .item05 p {
    padding: 0;
}

.mentor-list-item .item04 {
    height: 195px;
    overflow: hidden;
}

.seminar-item {
}

.seminar-item .box-right {
    padding: 16px;
}

.seminar-item .item01 {
    margin-bottom: 12px;
    padding: 8px 0 8px 16px;
    font-size: 18px;
    font-weight: 500;
    border-bottom: 2px solid #58a3bc;
}

.seminar-item .item02 {
    padding: 16px;
    border-bottom: 1px solid #58a3bc;
}

.seminar-item .item03 {
    padding-right: 24px;
}

.seminar-item .item04 .info {
    margin-bottom: 12px;
}

.seminar-item .item04 .info .text02 {
    font-size: 24px;
}

.seminar-item .item04 .info .text03 {
    font-size: 18px;
}

.seminar-item .item04 .text04 {
    margin-bottom: 8px;
    font-size: 18px;
    font-weight: 400;
}

.consult-item {
}

.consult-item .item01 {
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid #58a3bc;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
}

.consult-item .left {
    width: 200px;
    margin-right: 24px;
}

.consult-item .right {
    flex: 1;
}

.consult-item .right .text01 {
    margin-bottom: 8px;
    padding: 8px;
    background: #f1f1f1;
    font-size: 18px;
}

@media (max-width: 1200px) {
    /* 1200px 레이아웃 */
    .mentor-list-item {
        width: calc(98% / 2);
    }

    .mentor-list-item:nth-of-type(2n) {
        margin-right: 0;
    }
}

@media (max-width: 768px) {
    .consult-item .flex {
        flex-wrap: wrap;
        /* flex-direction: column; */
    }
}

@media (max-width: 767px) {
    .mentor-list-item {
        width: 100%;
        margin-right: 0;
        padding: 8px;
    }

    .mentor-list-item .item03 .list-dot {
        height: 80px;
    }

    .seminar-item .item02 {
        padding: 8px;
        flex-direction: column;
    }

    .consult-item .left {
        width: 80px;
        margin-right: 8px;
    }

    .consult-item .item01 {
        font-size: 14px;
    }

    .consult-item .right .text01 {
        font-size: 14px;
    }
}

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

* 온라인 채용관

=================================================================================*/
.search_pannel-wrap {
    padding: 20px;
    background: rgba(88, 163, 188, 0.1);
}

.search_pannel-wrap .search-window {
    padding: 0;
}

.search_pannel-wrap .search-window input {
    width: 450px;
}

.search_pannel {
    margin-bottom: 16px;
}

.search_item-tit {
    font-size: 18px;
    font-weight: 500;
    flex-basis: 180px;
    flex-grow: 0;
    flex-shrink: 0;
}

.search_item-jobs {
    width: 100%;
}

.search_item-jobs .jobs-button {
    width: 25%;
    float: left;
    height: 50px;
    border-right: 1px solid #e6e9ea;
    border-bottom: 1px solid #e6e9ea;
    box-sizing: border-box;
    color: #222;
    font-size: 15px;
    letter-spacing: -1px;
    background: #fff;
}

.search_item-jobs .jobs-button:hover {
    color: #58a3bc;
}

.search_item-jobs .jobs-button.active {
    background: #58a3bc;
    color: #fff;
}

.search_pannel-wrap.line-center {
    margin-bottom: 50px;
}

.search_pannel-wrap.line-center .search_pannel {
    margin-bottom: 0;
    align-items: center !important;
    justify-content: center;
}

.search_pannel-wrap.line-center .search_pannel .search_item-jobs {
    width: auto;
}

.search_pannel-wrap.line-center .search_pannel .search-window {
    margin-bottom: 0;
}

/*-----------------------------------------기업리스트 */
.list-wrap {
    margin: 50px 0;
}

.list-wrap .list-item {
    float: left;
    width: calc(97% / 4);
    margin: 0 1% 1% 0;
    background: #f5f5f5;
    border: 1px solid #f1f1f1;
    flex-direction: column;
    padding: 16px;
}

.list-wrap .list-item a {
    display: block;
    flex-direction: column;
}

.list-wrap .list-item:nth-of-type(4n) {
    margin-right: 0;
}

.list-wrap .list-item div {
    width: 100%;
    padding: 8px 0;
    text-align: center;
}

.list-wrap .list-item .logo-area {
    width: 100%;
    height: 120px;
    background: #fff;
}

.list-wrap .list-item .logo-area img {
    width: 80%;
}

.companyicon-area {
}

.companyicon-area li {
    float: left;
    width: 60px;
    height: 60px;
    margin: 0 2px;
    background: #fff;
    overflow: hidden;
}

.companyicon-area li img {
    width: 100%;
    height: 100%;
    border: 0;
}

.list-wrap .list-item .text-area {
    text-align: left;
    border-top: 1px solid #f1f1f1;
}

.list-wrap .list-item .text-area p {
    margin-bottom: 8px;
    font-size: 16px;
    line-height: 1.4;
    text-align: center;
}

.list-wrap .list-item .text-area .text-name {
    font-size: 20px;
    font-weight: 500;
}

.list-wrap .list-item .text-area .text-type {
    margin-bottom: 24px;
    font-size: 16px;
    font-weight: 300;
    color: #58a3bc;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.list-wrap .list-item .text-area .text-loca {
    text-align: left;
    height: 40px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.list-wrap .list-item .text-area .tip {
    display: inline-block;
    width: 45px;
    text-align: center;
    margin-right: 12px;
    padding: 2px 8px;
    border: 1px solid #e1e1e1;
    background: #fff;
    border-radius: 30px;
    font-size: 12px;
}

.list-wrap .list-item .button-wrap {
    margin: 0;
}

.list-wrap .list-item .button-wrap a {
    max-width: 100%;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0 8px;
}
@media (max-width: 1200px) {
    /* 1200px 레이아웃 */
}

@media (max-width: 768px) {
    .search_pannel-wrap {
        padding: 12px;
    }

    .search_pannel {
        flex-direction: column;
    }

    .search_item-tit {
        flex-basis: 100%;
        margin-bottom: 16px;
    }

    .search_item-jobs .jobs-button {
        font-size: 12px;
    }

    .search_pannel-wrap .search-window input {
        width: 80%;
    }

    .list-wrap .list-item {
        width: calc(98% / 2);
        margin: 0 1% 1% 0;
        padding: 8px;
    }

    .companyicon-area li {
        width: 30px;
        height: 30px;
    }

    .list-wrap .list-item .text-area p {
        margin-bottom: 4px;
        font-size: 13px;
    }

    .list-wrap .list-item .text-area .text-name {
        font-size: 15px;
        width: 100%;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .list-wrap .list-item .text-area .text-type {
        font-size: 12px;
    }

    .list-wrap .list-item div {
        padding: 4px 0;
    }

    .list-wrap .list-item .text-area .tip {
        width: 40px;
        margin-right: 6px;
        padding: 2px 4px;
        font-size: 11px;
    }
    .list-wrap .list-item .text-area .text-loca {
        height: 36px;
    }
}

/*----------------------------------------- 기업 상세 */
.company-detail {
}
.company-detail .box-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.company-detail .comp-top {
    align-items: flex-start;
}

.company-detail .sub-title {
    font-size: 16px;
    font-weight: bold;
}

.company-detail .tip-text {
    width: auto !important;
    font-size: 12px;
    color: #dd393c;
}

.company-detail .logo-area {
    flex-basis: 400px;
    flex-grow: 0;
    flex-shrink: 0;
    margin-right: 32px;
}

.company-detail .logo-area .thum {
    height: 150px;
    padding: 16px;
    margin-bottom: 20px;
    border: 1px solid #e1e1e1;
}

.company-detail .text-area {
}

.company-detail .text-area .title {
    margin-bottom: 24px;
    font-size: 30px;
    font-weight: 600;
}

.company-detail .text-area .desc p {
    font-size: 18px;
    line-height: 28px;
}

.company-detail .text-area .desc p span {
    display: inline-block;
    width: 100px;
}

.company-detail .text-area .desc .btn-small {
    display: inline-block;
}

.company-detail .video-wrap {
    min-height: 180px;
    margin-bottom: 0;
}

.company-detail .button-wrap a {
    display: inline-block;
    width: 240px;
}

.hashtag-area {
    margin: 12px;
    padding: 20px;
}

.hashtag-area h3 {
    font-size: 20px;
    margin-bottom: 24px;
}

.hashtag-area .tags {
}

.hashtag-area .tag {
    display: inline-block;
    font-size: 17px;
    font-weight: 300;
    margin: 4px;
    padding: 4px 12px;
    border: 1px solid #ff9600;
    border-radius: 30px;
}

.hashtag-area .style01 {
    border-color: #58a3bc;
}

.hashtag02 .tags {
    width: 100%;
    position: relative;
}

.hashtag02 .tags .tag {
    font-size: 18px;
    border: none;
    opacity: 1;
}

.hashtag02 .tags .tag:nth-child(2n) {
    font-size: 24px;
    opacity: 0.7;
}

.hashtag02 .tags .tag:nth-child(3n) {
    font-size: 48px;
    opacity: 0.5;
}

.hashtag02 .tags .tag:nth-child(4n) {
    font-size: 28px;
}

.hashtag02 .tags .tag:nth-child(5n) {
    font-size: 20px;
}

.hashtag02 .tags .tag:nth-child(6n) {
    font-size: 34px;
    opacity: 0.6;
}

.hashtag02 .tags .tag:nth-child(7n) {
    font-size: 22px;
}

.hashtag02 .tags .tag:nth-child(8n) {
    font-size: 17px;
    opacity: 0.4;
}

.cifo-detail {
}

.cifo-detail .table01 li {
    display: flex;
}

.cifo-detail .table01 .li-th {
    width: 200px;
}

.cifo-detail .table01 .li-td {
    -webkit-flex: 1;
    flex: 1;
}

.cifo-detail .table01 .li-td-last {
    width: 200px;
    flex: initial;
    -webkit-flex: initial;
}

.cifo-detail .button-wrap a {
    width: 180px;
}

@media (max-width: 1200px) {
    /* 1200px 레이아웃 */
    .company-detail .logo-area {
        flex-basis: 280px;
        height: 150px;
        margin-right: 32px;
    }

    .company-detail .text-area {
    }

    .company-detail .text-area .title {
        font-size: 26px;
    }

    .company-detail .text-area .desc p {
        font-size: 16px;
        line-height: 26px;
    }

    .company-detail .text-area .desc p span {
        width: 80px;
    }

    .hashtag-area {
        margin: 12px;
        padding: 20px;
    }

    .hashtag-area h3 {
        font-size: 20px;
        margin-bottom: 24px;
    }

    .hashtag-area .tags {
    }

    .hashtag-area .tag {
        display: inline-block;
        font-size: 17px;
        font-weight: 300;
        margin: 4px;
        padding: 4px 12px;
        border: 1px solid #ff9600;
        border-radius: 30px;
    }

    .hashtag-area .style01 {
        border-color: #58a3bc;
    }
}

@media (max-width: 768px) {
    .company-detail .logo-area {
        width: 90%;
        flex-basis: 100%;

        margin-right: 0;

        padding: 24px;
    }

    .company-detail .logo-area .thum {
        height: 80px;
        margin-bottom: 16px;
    }

    .company-detail .text-area .desc p {
        font-size: 13px;
        line-height: 23px;
    }

    .company-detail .text-area .desc p span {
        width: 60px;
    }

    .hashtag-area {
        margin: 12px 0;
        padding: 0px;
    }

    .hashtag-area h3 {
        font-size: 16px;
        margin-bottom: 16px;
    }

    .hashtag-area .tag {
        font-size: 12px;
        padding: 2px 8px;
    }

    .cifo-detail .table01 li {
        display: block;
    }

    .cifo-detail .table01 .li-th {
        width: 100%;
    }

    .cifo-detail .table01 .li-td {
        -webkit-flex: inherit;
        flex: inherit;
    }

    .cifo-detail .table01 .li-td:last-of-type {
        width: 100%;
        /*  flex: initial;
        -webkit-flex: initial;*/
    }

    .cifo-detail .button-wrap a {
        width: 180px;
    }
}

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

* 이벤트

=================================================================================*/
.event-box {
    align-items: flex-start;
}

.event-box p {
    margin-bottom: 24px;
}

.event-box p strong {
    font-size: 16px;
}

.event-box .event-item {
    flex-basis: 300px;
    padding: 8px;
}

.event-box02 .event-item {
    flex-basis: 400px;
}

.event-box .event-item .item {
    padding: 16px;
}

.event-box .event-item .img {
    width: 100%;
    height: 125px;
    margin-bottom: 12px;
    overflow: hidden;
}
.event-box02 .event-item .img {
    height: 200px;
}

.event-box .event-item .title {
    height: 50px;
}

.event-box .event-item .text span {
    display: block;
    margin-left: 4px;
}

.event-box .event-item .text .tip {
    display: inline-block;
    margin-left: 0;
    padding: 0 12px;
    background: #58a3bc;
    color: #fff;
    font-size: 13px;
    border-radius: 30px;
    margin-bottom: 8px;
}

@media (max-width: 1200px) {
    /* 1200px 레이아웃 */
    .event-box {
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    /* 1200px 레이아웃 */
    .event-box .event-item,
    .event-box02 .event-item {
        flex-basis: auto;
    }
}

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

* 취업동영상

=================================================================================*/
.video-list {
}

.video-list ul {
    width: 100%;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
}

.video-list .video-item {
    width: 33.333%;
    padding: 10px;
}

.video-list .video-item .sort {
    display: inline-block;
    height: 24px;
    line-height: 24px;
    text-align: center;
    border-radius: 30px;
    margin-bottom: 10px;
    padding: 0 8px;
    color: #fff;
    font-size: 12px;
}

.video-list .video-item .sort01 {
    background: #334eac;
}

.video-list .video-item .sort02 {
    background: #7096d1;
}

.video-list .video-item .sort03 {
    background: #081f5c;
}

.video-list .video-item .sort04 {
    background: #dde3ff;
    color: #334eac;
}

.video-list .video-item .sort05 {
    background: #bad6eb;
    color: #334eac;
}

.video-list .video-item .desc {
    margin-bottom: 20px;
    font-size: 17px;
    font-weight: 500;
    line-height: 21px;
    min-height: 50px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.video-list .video-item .thum {
    width: 100%;
    height: 180px;
    background: #000;
    margin-bottom: 4px;
    border-radius: 20px;
    overflow: hidden;
}

.video-list .video-item .source {
    width: 100%;
    margin-bottom: 12px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 0 10px;
    box-sizing: border-box;
}

.video-list .video-item .source .text01 {
    font-size: 11px;
    color: #ccc;
    font-weight: 300;
    text-align: right;
}

@media (max-width: 1200px) {
    /* 1200px 레이아웃 */
    .video-list .video-item {
        flex-basis: 300px;
    }
}

@media (max-width: 768px) {
    /* 1200px 레이아웃 */
    .video-list .video-item {
        flex-basis: 100%;
    }
}

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

* 2022-09-15

=================================================================================*/
.condition-btn {
}

.condition-btn .cdn-item {
    width: 100%;
    margin-bottom: 20px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    border-bottom: 1px solid #f1f1f1;
    padding: 0 20px;
}

.condition-btn .cdn-item dt {
    width: 240px;
    font-size: 19px;
    font-weight: 500;
}

.condition-btn .cdn-item dd {
    flex: 1;
}

.condition-btn .cdn-item dd:after {
    display: block;
    clear: both;
    content: '';
}

.condition-btn .cdn-item .btn {
    float: left;
    display: block;
    width: 200px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    background: #f1f1f1;
    color: #333;
    margin: 0 8px 8px 0;
}

.condition-btn .cdn-item .btn.active {
    background: #22a486;
    color: #fff;
}

.live-consult {
    width: 100%;
}

.live-consult .live-item {
    width: calc(96% / 2);
    float: left;
    margin: 1%;
    padding: 20px;
    border: 1px solid #f1f1f1;
}

.live-consult .live-item .logo-area {
    width: 100%;
    height: 100px;
    padding: 12px;
    margin-bottom: 20px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
}

.live-consult .live-item .logo-area img {
    height: 100%;
}

.live-consult .live-item .icon-area {
    margin-bottom: 20px;
}

.live-consult .live-item .icon-area ul {
    width: 100%;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: center;
    align-items: center;
}

.live-consult .live-item .icon-area ul .icon {
    width: 55px;
    height: 55px;
    border-radius: 4px;
    overflow: hidden;
    margin: 4px;
    background: #f5f5f5;
}

.live-consult .live-item .icon-area ul .icon img {
}

.live-consult .live-item .company-name {
}

.live-consult .live-item .company-name p {
    text-align: center;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 20px;
}

.live-consult .live-item .video-area {
    width: 100%;
    height: 280px;
    background: #f9f9f9;
}

@media (max-width: 1200px) {
    /* 1200px 레이아웃 */
}

@media (max-width: 768px) {
    /* 768px 레이아웃 */
    .live-consult .live-item {
        width: 100%;
        float: none;
    }
}

.rp-list {
    width: 100%;
}

.rp-list .item {
    float: left;
    width: 23%;
    margin: 1%;
    border: 1px solid #f1f1f1;
    text-align: center;
    padding: 20px;
}

.rp-list .item .icon {
    width: 100%;
    height: 80px;
    margin-bottom: 12px;
    background: #f8f8f8;
}

.rp-list .item .text_area {
}

.rp-list .item .text_area p {
}

.rp-list .item .text_area .text01 {
    margin-bottom: 4px;
    font-size: 14px;
    color: #999;
}

.rp-list .item .text_area .text02 {
    width: 100%;
    height: 60px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 17px;
    line-height: 1.2;
}

.comp-serv {
    padding-top: 40px;
}

.comp-serv .icon_area {
    margin-bottom: 40px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
}

.comp-serv .icon_area .item {
    width: 20%;
    padding: 20px;
}

.comp-serv .icon_area .item .icon {
    width: 100%;
    height: 140px;
    margin-bottom: 12px;
    background: #fff;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #f1f1f1;
    overflow: hidden;
}

.comp-serv .icon_area .item .icon img {
    width: 120px;
    height: 120px;
}

.comp-serv .icon_area .item .text_area {
}

.comp-serv .icon_area .item .text_area p {
}

.comp-serv .icon_area .item .text_area .text01 {
    margin-bottom: 4px;
    font-size: 14px;
    color: #999;
}

.comp-serv .icon_area .item .text_area .text02 {
    font-weight: bold;
    font-size: 17px;
    line-height: 1.6;
}

.company-detail .table03 {
    text-align: center;
}

.company-detail .ended {
    background: #f1f1f1;
    color: #666;
}

.comp-serv .icon_area.promo-video .item {
    width: 100%;
    height: 690px;
}

.comp-serv .icon_area.promo-video .item iframe {
    width: 100% !important;
    height: 100% !important;
}

.vibt-area {
    text-align: center;
}

.vibt-area .vid-area {
    width: 100%;
    padding: 30px 0;
}

.vibt-area .vid-area iframe {
    width: 100%;
    margin: 0 auto;
}

@media (max-width: 1200px) {
    /* 1200px 레이아웃 */
}

@media (max-width: 768px) {
    /* 768px 레이아웃 */
    .company-detail .box {
        flex-direction: row;
    }

    .company-detail .logo-area {
        flex-basis: 240px;
    }

    .company-detail .text-area .title {
        font-size: 19px;
    }

    .company-detail .text-area .title02 {
        font-size: 25px;
    }

    .company-detail .text-area .desc p {
        font-size: 16px;
    }

    #tab-links {
        flex-direction: row;
    }

    .academy_form .three {
        flex-direction: row;
    }

    .academy_form .three input {
        width: 25%;
    }

    .academy_form .three select {
        width: 31%;
        font-size: 12px;
    }
}

@media (max-width: 767px) {
    /* 767px 이하  레이아웃 */
}

@media (max-width: 480px) {
    /* 480px 이하  레이아웃 */

    .rp-list .item {
        width: 48%;
    }

    .comp-serv .icon_area {
        flex-wrap: wrap;
    }

    .comp-serv .icon_area .item {
        width: 100%;
        height: 210px !important;
        padding: 12px;
    }

    .comp-serv .icon_area .item .icon {
        height: 80px;
    }

    .comp-serv .icon_area .item .icon img {
        width: 80px;
        height: 80px;
    }

    .comp-serv .icon_area .item .text_area .text01,
    .rp-list .item .text_area .text01 {
        font-size: 12px;
    }

    .comp-serv .icon_area .item .text_area .text02,
    .rp-list .item .text_area .text02 {
        height: 50px;
        font-size: 14px;
    }

    .rc-box h4 {
        font-size: 17px;
    }

    .rc-box .desc {
        font-size: 12px;
    }
}
