/* gird layout */


.grid-layout-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 2%;
}

.grid-layout-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 2%;
}

.grid-layout-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px 2%;
}

.grid-layout-5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px 2%;
}

.grid-layout-6 {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px 1%;
}

.grid-layout .grid-item {
    display: block;
    width: 100%;
    height: 100%;
    aspect-ratio: 16 / 9;
}

.main_product .grid-layout .grid-item {
    aspect-ratio: 16 / 9;
}


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

    .grid-layout-5 {
        gap: 30px 2%;
        grid-template-columns: repeat(4, 1fr);
    }

    .grid-layout-6 {
        gap: 30px 2%;
        grid-template-columns: repeat(4, 1fr);
    }


}

@media screen and (max-width:1024px) {
    .grid-layout-4 {
        gap: 20px 2%;
        grid-template-columns: repeat(3, 1fr);
    }

    .grid-layout-5 {
        gap: 20px 2%;
        grid-template-columns: repeat(3, 1fr);
    }

    .grid-layout-6 {
        gap: 20px 2%;
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width:768px) {
    .grid-layout-2 {
        gap: 10px 1%;
    }

    .grid-layout-3 {
        gap: 10px 1%;
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-layout-4 {
        gap: 10px 1%;
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-layout-5 {
        gap: 10px 1%;
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-layout-6 {
        gap: 10px 1%;
        grid-template-columns: repeat(2, 1fr);
    }
}

/* gird layout */


/* ****************** 공통 :: SEARCH BOX ********************** */
.board-search-box {
    text-align: center;
    padding: 30px 0;
}

.board-search-box .board-search-inner {
    display: flex;
    align-items: center;
    max-width: 500px;
    height: 50px;
    margin: 0px auto;
    box-sizing: border-box;
    border: 1px solid #ddd;
    background-color: #fff;
}

.board-search-box .board-search-inner:after {
    display: none;
}

.board-search-box .search-subject-select,
.board-search-box .search-word {
    height: 100%;
    background-color: transparent;
    border: 0;
    padding: 0 15px;
    font-size: 15px;
    color: #333;
    letter-spacing: -0.3px;
    box-sizing: border-box;
}

.board-search-box .search-subject-select {
    width: 120px;
}

.board-search-box .search-subject-select:not(.custom-select) {
    padding-left: 1em;
}

.board-search-box .search-word {
    width: 100%;
    border-right: 0;
}

.board-search-box .search-subject-select+.search-word,
.board-search-box .board-custom-select-box+.search-word {
    width: calc(100% - 170px);
    border-left: 1px solid #ddd;
}

.board-search-box .search-subject-select:focus,
.board-search-box .search-word:focus {
    color: #333;
    outline: none;
    background-color: transparent;
}

.board-search-box .search-word::placeholder {
    color: #333;
}

.board-search-box .search-word::-webkit-search-cancel-button {
    display: none;
}

.board-search-box .bbs-search-btn {
    margin: 0px;
    border: 0;
    width: 50px;
    height: 100%;
    font-size: 15px;
    letter-spacing: -0.5px;
    color: #333;
    cursor: pointer;
    vertical-align: top;
}

.board-search-box .bbs-search-btn i {
    line-height: 40px;
    font-size: 20px;
}

/* Search Select Custom */
.board-search-box .board-custom-select-box {
    width: 120px;
    height: 100%;
}

.board-custom-select-box .custom-select-wrapper {
    height: 100%;
}

.board-custom-select-box .search-subject-select {
    padding: 0;
}

.board-custom-select-box .custom-select-trigger {
    border: 0;
    height: 100%;
    display: flex;
    align-items: center;
}

.board-custom-select-box .custom-option-drop-list {
    border-color: #ddd;
    left: -1px;
    right: -1px;
}

.board-custom-select-box .custom-option-item {
    text-align: left;
    font-size: 0.8666em;
    font-weight: 400;
    padding: 8px 15px;
}

.board-custom-select-box .custom-option-item.selection {
    background-color: #eee;
}


/* -------- 공통 :: Custom Select -------- */
.custom-select-box {
    display: block;
    width: 100%;
}

.custom-select-box select {
    display: none;
}

.custom-select-wrapper {
    position: relative;
    user-select: none;
    -webkit-user-select: none;
    cursor: pointer;
    width: 100%;
}

.custom-select-wrapper .custom-select {
    position: relative;
    display: block;
    padding: 0 10px;
    -webkit-appearance: auto;
}

.custom-select-trigger {
    position: relative;
    display: block;
    width: 100%;
    padding: 0 15px;
    color: #333;
    line-height: 40px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    font-size: 15px;
    border: 1px solid #ccc;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.custom-select-trigger:after {
    font-family: 'xeicon';
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    content: "\e942";
    font-size: 18px;
}

.custom-select.opened .custom-select-trigger:after {
    content: "\e945";
}

/* Custom Select :: Option Drop List */
.custom-option-drop-list {
    position: absolute;
    display: none;
    top: 100%;
    left: 0%;
    right: 0;
    z-index: 11;
    overflow-y: auto;
    max-height: 200px;
    background: #fff;
    border: 1px solid #ccc;
    border-top: 0;
    pointer-events: none;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.custom-option-drop-list::-webkit-scrollbar {
    width: 5px;
}

.custom-option-drop-list::-webkit-scrollbar-thumb {
    background-color: #333;
    border-radius: 5px;
    transition: all 0.5s;
}

.custom-option-drop-list::-webkit-scrollbar-track {
    background-color: #f2f2f2;
    border-radius: 0;
}

.custom-select.opened .custom-option-drop-list {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.custom-option-item {
    position: relative;
    display: block;
    padding: 15px;
    font-size: 13px;
    font-weight: 500;
    color: #555;
    line-height: 1.5;
    cursor: pointer;
    transition: all 0.05s ease-in-out;
}

.custom-option-item:hover {
    background: #f2f2f2;
}

.custom-option-item.selection {
    color: #000;
}

@media all and (max-width:800px) {

    /* 공통 :: 체크박스, 라디오*/
    .custom-checkbox-item-box,
    .custom-radio-item {
        font-size: 13px;
    }
}

/* ****************** 공통 :: BUTTON ********************** */
.cm-btn-controls {
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 50px;
}

.cm-btn-controls.cm-btn-align-left {
    justify-content: flex-start;
}

.cm-btn-controls.cm-btn-align-right {
    justify-content: flex-end;
}

.cm-btn-controls .left-btn-controls {}

.cm-btn-controls .right-btn-controls {
    margin-left: auto;
}

.cm-btn-controls button,
.cm-btn-controls a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 170px;
    height: 50px;
    border: 0;
    color: #fff;
    background-color: #000;
    font-size: 17px;
    margin: 0 2px 5px 2px;
    cursor: pointer;
    vertical-align: top;
    text-align: center;
    font-weight: 400;
    box-sizing: border-box;
}

.cm-btn-controls.cm-btn-long-controls button,
.cm-btn-controls.cm-btn-long-controls a {
    width: 100%;
    margin: 0px;
    margin-bottom: 5px;
}

.cm-btn-controls .btn-style01 {
    background-color: #333;
}

.cm-btn-controls .btn-style02 {
    background-color: #8c8c8c;
}

.cm-btn-controls .btn-style03 {
    background: #fff;
    border: 1px solid #888;
    color: #222;
}

@media all and (max-width:800px) {
    .cm-btn-controls {
        margin-top: 30px;
    }

    .cm-btn-controls button,
    .cm-btn-controls a {
        width: 100px;
        height: 35px;
        font-size: 14px;
    }
}

@media all and (max-width:359px) {

    .cm-btn-controls button,
    .cm-btn-controls a {
        width: 80px;
        height: 35px;
        font-size: 14px;
    }
}


/* ****************** 공통 :: PAGING ********************** */
.paging {
    display: flex;
    justify-content: center;
    width: 100%;
    text-align: center;
    margin: 30px 0;
    flex-wrap: wrap;
    align-items: center;
    gap: 5px;
}

.paging .paging_ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.paging a {
    position: relative;
    display: flex;
    width: 30px;
    height: 30px;
    margin: 0 2px;
    border: 1px solid #ddd;
    text-align: center;
    font-size: 13px;
    color: #868686;
    letter-spacing: -0.25px;
    background-color: #fff;
    align-items: center;
    justify-content: center;
}

.paging a img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.paging a.prev_btn,
.paging a.next_btn {
    opacity: 0.7;
    border: none;
    width: 16px;
    height: 16px;
}

.paging a:hover {
    color: #222;
}

.paging a.prev_btn:hover,
.paging a.next_btn:hover {
    opacity: 1;
}

.paging a.cur {
    border-color: #333;
    background-color: #333;
    color: #fff;
}

.paging a.paging-arrow i {
    position: relative;
    top: -1px;
    vertical-align: middle;
    color: inherit;
    font-size: 24px;
}

/* .paging:not(.no-margin) a.paging-prev{margin-right:15px}
.paging:not(.no-margin) a.paging-next{margin-left:15px} */
.paging .paging-first i,
.paging .paging-last i {
    transform: translateX(-8px)
}

.paging .paging-first i:before,
.paging .paging-last i:before {
    display: block;
    width: 7px
}

/* Style02(네모-라인형)  */
.paging.no-margin a {
    margin: 0;
    margin-left: -1px
}

.paging.no-margin a.cur {
    position: relative;
    z-index: 1;
    background-color: transparent;
    color: #333;
}

.paging.no-margin a:first-child {
    margin-left: 0;
}

/* Style02(원형) */
.paging-style02 a {
    border-radius: 50%;
}

/* Style02(라인) */
.paging-style03 a {
    width: auto;
    padding: 0 7px 3px;
    margin: 0 5px;
    border: 0;
    font-size: 16px
}

.paging-style03 a.cur {
    background-color: transparent;
    color: #333;
}

.paging-style03 a.cur:after {
    position: absolute;
    bottom: 0px;
    left: 50%;
    width: 100%;
    margin-left: -50%;
    height: 2px;
    background-color: #333;
    content: "";
}

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

    /* 공통 :: PAGING */
    .paging:not(.no-margin) a.paging-prev {
        margin-right: 2px
    }

    .paging:not(.no-margin) a.paging-next {
        margin-left: 2px
    }
}

@media all and (max-width:359px) {

    /* 공통 :: PAGING */
    .paging a {
        margin: 0 0 0 -1px
    }

    .paging:not(.no-margin) a.paging-prev {
        margin-right: 0
    }

    .paging:not(.no-margin) a.paging-next {
        margin-left: -1px
    }
}

/* ****************** 공통 :: 게시판 상단 TOTAL 및 카테고리 검색 ********************** */

.category-cont {
    margin-bottom: 50px;
}

.category-cont .category-tit {
    text-align: center;
    margin-bottom: 40px;
}

.category-cont .category-tit h2 {
    font-size: 48px;
    font-weight: bold;
}

.category-cont .category_ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px 2%;
    flex-wrap: wrap;

}

.category-cont .category_ul .category_li a {
    padding: 0 0 5px;
    position: relative;
    display: block;
    letter-spacing: -1px;
}

.category-cont .category_ul .category_li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: block;
    width: 0%;
    height: 1px;
    background-color: #004386;
    transition: all 0.3s;
}

.category-cont .category_ul .category_li.on a {
    font-weight: bold;
    color: #004386;
}

.category-cont .category_ul .category_li.on a::after {
    width: 100%;
}

.category-cont .category_ul .category_li a:hover {
    color: #004386;
}

.category-cont .category_ul .category_li a:hover::after {
    width: 100%;
}


@media screen and (max-width:768px) {
    .category-cont {
        margin-bottom: 30px;
    }

    .category-cont .category-tit {
        margin-bottom: 20px;
    }

    .category-cont .category_ul {
        gap: 10px 5%;
    }
}

/* 상단 카테고리 이동 버튼 */

.bbs-gallery-list-con {
    padding: 100px 0;
}

.bbs-top-list-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row-reverse;
    flex-wrap: wrap;
    margin-bottom: 30px
}

/* -------- 리스트 Total 갯수 -------- */
.total-list-con {
    color: #333;
    font-size: 15px;
    letter-spacing: -0.25px;
}

.total-list-con b {
    color: #58595B;
}

.total-list-con i {
    font-size: 16px;
    margin-right: 2px;
    position: relative;
    top: 1px;
}

/* ****************** News, Download ********************** */
.gallery-list-ul {
    display: flex;
    flex-wrap: wrap;
    /* margin: -2rem -1.5rem; */
}

.gallery-list-ul li {
    margin: 2rem 1.5rem;
    width: calc(25% - 3rem);
}

.gallery-list-ul li a {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    /* background: #fff;
    box-shadow: 1rem 2rem 2rem rgba(0, 0, 0, 0.051); */
    transition: all 0.5s;
}

/* .gallery-list-ul li a:hover {
    box-shadow: 1rem 2rem 2rem rgba(0, 0, 0, 0.1);
} */

.gallery-list-ul li a .gallery-list-ul-txt {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: space-between;
    padding: 2rem;
    box-sizing: border-box;
    width: 100%;
}

.gallery-list-ul li a .gallery-list-ul-txt .categoty {
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: #004386;
    line-height: 1.3;
}

.gallery-list-ul li a .gallery-list-ul-txt .tit {
    /* margin-top: 10px; */
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: #1f1f1f;
    line-height: 1.54;
    /* height: 4.62em; */
    /* word-break: break-word; */
    display: block;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    width: 100%;
}

.gallery-list-ul li.has-file a .gallery-list-ul-txt .tit:after {
    margin-left: 1rem;
    position: relative;
    top: 0.2rem;
    display: inline-block;
    font-weight: 400;
    color: #BBBBBB;
    content: "\eb74";
    font-family: xeicon;
}

.gallery-list-ul li a .gallery-list-ul-txt .date {
    font-size: 1.6rem;
    font-weight: 500;
    letter-spacing: -0.02em;
    color: #58595B;
    display: inline-block;
    padding-top: 3.5rem;
}

.gallery-list-ul li a .gallery-list-ul-img {
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 71.42%;
    overflow: hidden;
}

.gallery-list-ul li a .gallery-list-ul-img span {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    transition: all 2s ease-in-out;
}

.gallery-list-ul li a:hover .gallery-list-ul-img span {
    transform: scale(1.1);
}

@media all and (max-width:800px) {
    .board-search-box {
        padding: 0;
        border: 0
    }

    .board-search-box .board-search-inner {
        max-width: none;
    }

    /* -------- SEARCH BOX 상단 일때  -------- */
    .bbs-top-list-box .board-search-box {
        width: 100%;
        margin-bottom: 5%;
    }

    /* 센터정렬 */
    .bbs-top-list-box.top-search-center {
        justify-content: flex-start;
    }

    .bbs-top-list-box.top-search-center .board-search-box {
        margin-bottom: 5%;
    }

    .custom-select-wrapper .custom-select {
        font-size: 13px;
    }

    .board-search-box .search-word {
        font-size: 13px;
    }
}

@media all and (max-width:480px) {
    .board-search-box .board-search-inner {
        height: 40px;
    }

    .board-search-box .search-subject-select,
    .board-search-box .search-word {
        font-size: 13px;
    }

    .board-search-box .search-subject-select {
        width: 100px
    }

    .board-search-box .search-subject-select+.search-word,
    .board-search-box .board-custom-select-box+.search-word {
        width: calc(100% - 150px);
    }

    .board-search-box .board-custom-select-box {
        width: 100px;
    }

    .board-custom-select-box .custom-select-trigger {
        font-size: 13px;
    }
}

/* ******************  News, Download ****************** */

@media screen and (max-width:1280px) {
    .gallery-list-ul li {
        width: calc(33.33% - 2rem);
        margin: 1rem;
    }
}

@media screen and (max-width:800px) {
    .gallery-list-ul {
        margin: -1rem;
    }

    .gallery-list-ul li {
        width: calc(50% - 2rem);
        margin: 1rem;
    }

    .gallery-list-ul li a .gallery-list-ul-txt {
        padding: 1.5rem 1rem;
    }

    .gallery-list-ul li a .gallery-list-ul-txt .categoty {
        font-size: 1.6rem;
        line-height: 1.3;
    }

    .gallery-list-ul li a .gallery-list-ul-txt .tit {
        margin-top: 1rem;
        font-size: 1.5rem;
        line-height: 1.54;
        /* height: 4.62em; */
        word-break: break-all;
    }

    .gallery-list-ul li.has-file a .gallery-list-ul-txt .tit:after {
        margin-left: 1rem;
        top: 0.2rem;
    }

    .gallery-list-ul li a .gallery-list-ul-txt .date {
        font-size: 1.3rem;
        padding-top: 1.5rem;
    }
}

@media screen and (max-width:480px) {
    .gallery-list-ul {
        margin: -1rem 0;
    }

    /* .gallery-list-ul li {width: 100%; margin: 1rem 0;} */

}




/* product */

.product .product-mainTit {
    margin-bottom: 50px;
}

.product .product-mainTit h2 {
    font-size: 48px;
    padding-bottom: 20px;
    position: relative;
    text-align: center;
    font-weight: bold;
    text-transform: uppercase;
}

.product .product-mainTit h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    display: block;
    width: 30px;
    height: 1px;
    background-color: #000;
}

.product-list-li a {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
}


.grid-item.product-list-li a::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, .2);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
}


.product-list-li a .product-thumnail {
    width: 100%;
    height: 100%;
}

.product-list-li a .product-thumnail img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-list-li a .product-title {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-list-li a .product-title h3 {
    font-size: 32px;
    font-weight: bold;
    color: #fff;
}


/* hover */


.grid-item.product-list-li a:hover::after {
    opacity: 1;
    visibility: visible;
}

/* hover */

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

    .product .product-mainTit h2 {
        font-size: 28px;
    }

    .product-list-li a .product-title h3 {
        font-size: 16px;
    }

}

/* product */



/* detail */
.detail-list .detail-list-item {
    position: relative;
    display: grid;
    place-items: center;
    /* 중간에 배치 */
}

.detail-list .detail-list-item::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 1);
    opacity: 0.2;
    top: 0;
    transition: all 0.3s;
}

.detail_cont .detail-list-item .detail-list-img {
    width: 100%;
    height: 100%;
    transition: all 0.3s;
    grid-area: 1 / 1;
}

.detail_cont .detail-list-item .detail-list-img img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.detail_cont .detail-list-item .detail-list-txt {
    grid-area: 1 / 1;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    position: relative;
    z-index: 1;
}

.detail_cont .detail-list-item .detail-list-txt .tit {
    font-size: 20px;
    font-weight: bold;
    color: #fff;
}

@media not all and (min-resolution:.001dpcm) {
    @supports (-webkit-appearance:none) {}
}

/* hover */

.detail_cont .detail-list-item:hover::after {
    opacity: 0;

}

.detail_cont .detail-list-item:hover .detail-list-img {
    filter: grayscale(0.8);
}

/* hover */


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

    .detail_cont .detail-list-item .detail-list-txt .tit {
        font-size: 16px;
    }
}

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

    .detail_cont .detail-list-item .detail-list-txt .tit {
        font-size: 14px;
    }
}

/* detail */



/* ******************   게시판 :: 뷰페이지  ********************** */
.bbs-view-con {
    border-top: 1px solid #333;
    margin: 100px 0;
}

/* 게시판 :: 뷰 :: 상단 타이틀 정보 */
.bbs-view-top {
    padding: 20px;
    border-bottom: 1px solid #eee;
    position: relative;
}

.bbs-view-top .event-date {
    color: #888;
    padding-bottom: 10px;
}

.bbs-view-top .event-date dt,
.bbs-view-top .event-date dd {
    display: inline-block;
    letter-spacing: -0.5px;
}

.bbs-view-top .event-date dt {
    margin-right: 10px;
    color: #333;
}

.bbs-view-top .event-date dt:before {
    position: relative;
    top: -1px;
    font-family: "xeicon";
    content: "\e9a0";
    font-size: 16px;
    margin-right: 3px;
    vertical-align: middle;
}

.bbs-view-top .bbs-state-box {
    margin-bottom: 10px
}

.bbs-view-top .bbs-state {
    display: inline-block;
    min-width: 50px;
    padding: 0 10px;
    height: 30px;
    line-height: 30px;
    background-color: #888;
    font-size: 13px;
    border: 1px solid #888;
    color: #fff;
    text-align: center;
}

.bbs-view-top .bbs-state.ing {
    border-color: #5997bb;
    background-color: #5997bb;
}

.bbs-view-top .bbs-state.end {
    background-color: #fff;
    color: #999
}

.bbs-view-top .bbs-category {
    display: block;
    margin-bottom: 10px;
}

.bbs-view-top .bbs-tit {
    color: #282828;
    font-size: 28px;
    letter-spacing: -0.0333em;
    font-weight: 500;
    line-height: 1.25;
    word-break: keep-all;
}

.bbs-view-top .bbs-write-info {
    margin-top: 20px;
}

.bbs-view-top .bbs-write-info dt,
.bbs-view-top .bbs-write-info dd {
    display: inline-block;
    color: #777;
    vertical-align: middle;
    font-weight: 500;
}

.bbs-view-top .bbs-write-info dd {
    margin: 0 20px 0 5px;
    color: #888;
    font-weight: 400
}

.bbs-view-content {
    padding: 30px 20px 0;
    /* border-bottom:1px solid #eee; */
}


/* 공유하기 */

.bbs-view-top .share .btn {
    display: inline-flex;
    border: 0;
    font-size: 20px;
    padding: 0;
    margin: 0;
    height: auto;
    outline: none;
    vertical-align: top;
}

/* product */

.product .bbs-view-product-cont {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    gap: 50px;
}


.product .bbs-view-content img {
    max-width: 100%;
    display: block;
    margin: 0 auto 30px;
}

.bbs-view-product-cont .product-box {
    width: 60%;
}

.bbs-view-product-cont .product_view_listWrap {
    width: 40%;
}

.bbs-view-product-cont .product_view_listWrap .product_view_list {
    background-color: #fff;
    border: 1px solid #ccc;
}

.bbs-view-product-cont .product_view_listWrap .product_view_list .product_view_list_box {
    border-bottom: 1px solid #ccc;
    display: grid;
    grid-template-columns: 1fr 2fr;
    box-sizing: border-box;
    gap: 1px;
    align-items: center;
}

.bbs-view-product-cont .product_view_listWrap .product_view_list .product_view_list_box:last-child {
    border-bottom: none;
}

.bbs-view-product-cont .product_view_listWrap .product_view_list .product_view_list_box dt,
.bbs-view-product-cont .product_view_listWrap .product_view_list .product_view_list_box dd {
    padding: 8px;
    height: 100%;
}

.bbs-view-product-cont .product_view_listWrap .product_view_list .product_view_list_box dt {
    /* font-weight: bold;
    background-color: #f7f7f7; */
    border-right: 1px solid #ccc;
    box-sizing: border-box;
    display: flex;
    align-items: center;

}

.bbs-view-product-cont .view_spec_cont {
    font-size: 16px;
    padding: 30px 0;
}

.bbs-view-product-cont .view_spec_cont p {
    position: relative;
    line-height: 1.6;
    display: flex;
    gap: 10px;
}

.bbs-view-product-cont .view_spec_cont p::before {
    content: '';
    background: url(/images/sub/ico_check.svg)no-repeat center center;
    background-size: 100% auto;
    width: 15px;
}


.bbs-view-product-cont .view_contact p {
    margin-bottom: 5px;
    color: #444;
    display: flex;
    gap: 10px;
    font-size: 20px;
}

.bbs-view-product-cont .view_contact p::before {
    content: '';
    background: url(/images/sub/ico_phone.svg)no-repeat center center;
    background-size: 100% auto;
    width: 15px;
}

.bbs-view-product-cont .view_contact .view_contact_btn {
    color: #444;
    font-size: 15px;
    letter-spacing: -1px;
}

.bbs-view-product-cont .view_contact .view_contact_btn a:hover {
    text-decoration: underline;
    color: #7c3a3a;
}


.bbs-view-content .editor-box {
    padding: 40px 0;
    box-sizing: border-box;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    line-height: 1.6;
}

.bbs-view-content .editor-box img {
    display: block;
    margin: 0 auto 30px;
    max-width: 100%;
}

@media screen and (max-width:960px) {
    .bbs-view-product-cont .product_view_listWrap .product_view_list .product_view_list_box dd {
        font-size: 14px;
    }
}


@media screen and (max-width:768px) {
    .bbs-view-product-cont .product_view_listWrap .product_view_list .product_view_list_box {
        grid-template-columns: 1fr;
    }

    .bbs-view-product-cont .product_view_listWrap .product_view_list .product_view_list_box dt {
        border-right: none;
        border-bottom: 1px solid #ddd;
        justify-content: center;
    }
}


/* product */



/* project */

.project .bbs-view-project-cont {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    gap: 50px;
}


.project .bbs-view-content img {
    max-width: 100%;
    display: block;
    margin: 0 auto 30px;
}

.bbs-view-project-cont .project-box {
    width: 60%;
}

.bbs-view-project-cont .project_view_listWrap {
    width: 40%;
}

.bbs-view-project-cont .project_view_listWrap .project_view_list {
    background-color: #fff;
    border: 1px solid #ccc;
}

.bbs-view-project-cont .project_view_listWrap .project_view_list .project_view_list_box {
    border-bottom: 1px solid #ccc;
    display: grid;
    grid-template-columns: 1fr 2fr;
    box-sizing: border-box;
    gap: 1px;
    align-items: center;
}

.bbs-view-project-cont .project_view_listWrap .project_view_list .project_view_list_box:last-child {
    border-bottom: none;
}

.bbs-view-project-cont .project_view_listWrap .project_view_list .project_view_list_box dt,
.bbs-view-project-cont .project_view_listWrap .project_view_list .project_view_list_box dd {
    padding: 8px;
    height: 100%;
}

.bbs-view-project-cont .project_view_listWrap .project_view_list .project_view_list_box dt {
    /* font-weight: bold;
    background-color: #f7f7f7; */
    border-right: 1px solid #ccc;
    box-sizing: border-box;
    display: flex;
    align-items: center;

}

.bbs-view-project-cont .view_spec_cont {
    font-size: 16px;
    padding: 30px 0;
}

.bbs-view-project-cont .view_spec_cont p {
    position: relative;
    line-height: 1.6;
    display: flex;
    gap: 10px;
}

.bbs-view-project-cont .view_spec_cont p::before {
    content: '';
    background: url(/images/sub/ico_check.svg)no-repeat center center;
    background-size: 100% auto;
    width: 15px;
}


.bbs-view-project-cont .view_contact p {
    margin-bottom: 5px;
    color: #444;
    display: flex;
    gap: 10px;
    font-size: 20px;
}

.bbs-view-project-cont .view_contact p::before {
    content: '';
    background: url(/images/sub/ico_phone.svg)no-repeat center center;
    background-size: 100% auto;
    width: 15px;
}

.bbs-view-project-cont .view_contact .view_contact_btn {
    color: #444;
    font-size: 15px;
    letter-spacing: -1px;
}

.bbs-view-project-cont .view_contact .view_contact_btn a:hover {
    text-decoration: underline;
    color: #7c3a3a;
}


@media screen and (max-width:960px) {
    .bbs-view-project-cont .project_view_listWrap .project_view_list .project_view_list_box dd {
        font-size: 14px;
    }
}


@media screen and (max-width:768px) {
    .bbs-view-project-cont .project_view_listWrap .project_view_list .project_view_list_box {
        grid-template-columns: 1fr;
    }

    .bbs-view-project-cont .project_view_listWrap .project_view_list .project_view_list_box dt {
        border-right: none;
        border-bottom: 1px solid #ddd;
        justify-content: center;
    }
}


/* project */



/* brand */
.bbs-view-content .brand_visual {
    width: 100%;

}

.bbs-view-content .brand_visual .brand_visual_cont {
    width: 100%;
    height: 50vh;
}

.bbs-view-content .brand_visual .brand_visual_cont img,
.bbs-view-content .brand_visual .brand_visual_cont iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    object-fit: cover;
}


/* 2 */

.brand .bbs-view-project-cont .project-box {
    width: 100%;
}

.brand .bbs-view-project-cont .project-box img {
    display: block;
    margin: 0 auto;
}

/* 2 */

/* brand */





/* 게시판 :: 뷰 :: 공유아이콘 */
.bbs-view-share-con {
    overflow: hidden;
    padding: 10px 20px;
    border-bottom: 1px solid #eee;
}

.bbs-view-share-con ul {
    float: right;
}

.bbs-view-share-con ul li {
    float: left;
    margin-left: 5px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
}

.bbs-view-share-con ul li:first-child {
    margin-left: 0;
}

.bbs-view-share-con ul li a,
.bbs-view-share-con ul li button {
    display: block;
    width: 34px;
    height: 34px;
    text-align: center;
    line-height: 34px;
}

.bbs-view-share-con ul li img {
    width: 30px;
}

.bbs-view-share-con ul li i {
    font-size: 20px;
    line-height: 34px;
    color: #fff;
}

.bbs-view-share-controls .bbs-button-controls {
    float: left;
}

.bbs-view-share-controls .bbs-hit-good-num-con {
    float: right;
}

/* 게시판 :: 뷰 :: 첨부파일 */
.bbs-view-file-info-box {
    line-height: 20px;
    border-bottom: 1px solid #eee;
    background-color: #f9f9f9;
    padding: 10px 20px;
    margin-bottom: 10px;
}

.bbs-view-share-con+.bbs-view-file-info-box {
    border-top: 0;
}

.bbs-view-file-info-box .bbs-file-list {
    overflow: hidden;
    padding-top: 5px;
    font-size: 13px;
}

.bbs-view-file-info-box .bbs-file-list:first-child {
    padding-top: 0;
}

.bbs-view-file-info-box .bbs-file-list dt {
    float: left;
    width: 100px;
    font-weight: 600;
    color: #333;
}

.bbs-view-file-info-box .bbs-file-list dd {
    float: left;
    width: 70%;
    width: calc(100% - 100px);
}

.bbs-view-file-info-box .bbs-file-list dd a:hover {
    text-decoration: underline;
}

.bbs-view-file-info-box .bbs-file-list dd i {
    vertical-align: middle;
    font-size: 15px;
}

/* 게시판 :: 뷰 :: 이전글,다음글 */
.bbs-view-prev-next-list {
    margin-top: 50px;
}

.bbs-view-prev-next-list li {
    border-bottom: 1px solid #eee;
}

.bbs-view-prev-next-list li:first-child {
    border-top: 1px solid #eee;
}

.bbs-prev-next-tbl {
    width: 100%;
    table-layout: fixed;
}

.bbs-prev-next-tbl th,
.bbs-prev-next-tbl td {
    height: 58px;
    color: #333;
    font-size: 16px;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.bbs-prev-next-tbl th {
    text-align: left;
}

.bbs-prev-next-tbl .bbs-prev-next-tit {
    position: relative;
    display: block;
    padding-left: 25px;
    font-weight: 400;
}

.bbs-prev-next-tbl .bbs-prev-next-tit a {
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: space-around;
}

.bbs-prev-next-tbl .bbs-prev-next-tit:after {
    position: absolute;
    top: 0px;
    bottom: 0px;
    width: 1px;
    right: 0px;
    background-color: #eee;
    content: "";
}

.bbs-prev-next-tbl .bbs-prev-next-tit i {
    /* position:absolute; */
    font-size: 20px;
}

.bbs-prev-next-tbl td {
    padding-left: 20px
}

.bbs-prev-next-tbl td a {
    display: block;
    color: inherit;
}

.bbs-prev-next-tbl td a .bbs-tit {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bbs-prev-next-tbl td a:hover .bbs-tit {
    text-decoration: underline
}

@media all and (max-width:1280px) {
    .bbs-view-product-cont {
        flex-direction: column;
        gap: 30px;
        margin-top: 20px;
    }

    .bbs-view-product-cont .product-box {
        width: 100%;
        padding: 0;
    }

    .bbs-view-product-cont .product_view_listWrap {
        width: 100%;
    }

}

@media all and (max-width:800px) {
    .bbs-view-con {
        margin: 50px 0;
    }

    /* 게시판 :: 뷰 */
    .bbs-view-top {
        padding: 15px 0;
    }

    .bbs-view-top .bbs-tit {}

    .bbs-view-top .bbs-view-info {
        float: none;
        overflow: hidden;
    }

    .bbs-view-top .bbs-write-info {
        margin-top: 10px;
    }

    .bbs-view-top .bbs-write-info dt,
    .bbs-view-top .bbs-write-info dd {
        font-size: 12px;
    }

    .bbs-view-top .bbs-write-info dd {
        margin: 0 7px 0 0
    }

    .bbs-view-content {
        padding: 15px 0
    }

    /* 게시판 :: 뷰 :: 공유아이콘 */
    .bbs-view-share-con {
        padding: 10px 15px
    }

    /* 게시판 :: 뷰 :: 첨부파일 */
    .bbs-view-file-info-box {
        padding: 10px 15px;
    }

    .bbs-view-file-info-box .bbs-file-list {
        font-size: 12px;
    }

    /* 게시판 :: 뷰 :: 이전글,다음글 */
    .bbs-prev-next-tbl colgroup {
        display: none;
    }

    .bbs-prev-next-tbl th {
        width: 80px;
    }

    .bbs-prev-next-tbl th,
    .bbs-prev-next-tbl td {
        height: 34px;
        font-size: 13px;
        padding-left: 10px
    }

    .bbs-prev-next-tbl .bbs-prev-next-tit {
        padding-left: 10px;
    }


    /*  .bbs-prev-next-tbl .bbs-prev-next-tit i{
        right: 5px;
    } */

    /* 게시판 :: 뷰 :: 관리자코멘트 */
    /* .manage-comment-con h2{padding:10px 15px; font-size:13px;}
	.manage-comment-txt{font-size:12px;} */

    /* 게시판 :: 뷰 :: 댓글 */
    /* .cm-write-top{padding:10px 15px;}
	.cm-writer-info{min-height:20px; line-height:20px;}
	.cm-write-top .cm-writer{font-size:14px;}
	.cm-write-top .cm-write-sub-txt{font-size:11px; display:block; line-height:16px;}
	.cm-write-bottom .cm-textarea{width:75%;  height:80px; font-size:12px;}
	.cm-write-bottom .cm-regi-btn{width:25%;  height:80px; font-size:12px;}
	.cm-control-btns a{font-size:11px;}
	.cm-item .cm-content{font-size:12px;}
	.reply-cm-write-con .cm-write-top{padding:10px 15px;} */
}



/* 제품 상세보기 */

.product .bbs-view-content img {
    max-width: 100%;
    display: inline-block;
    margin-bottom: 0;
}

/* 제품상세페이지(공통) */
.pd-list-inside {
    display: flex;
    margin-bottom: 100px;
}

.pd-list-inside-left {
    width: 50%;
    background: #f1f1f1;
    padding: 50px 50px 80px 100px;
    position: relative;
}

.pd-list-inside-right {
    width: 50%;
    position: sticky;
    height: 100%;
    top: 100px;
}

.pd-list-inside-right .thumb {
    position: relative;
    padding-bottom: 90%;
    overflow: hidden;
}

.pd-list-inside-right .thumb img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    width: auto !important;
    height: auto !important;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.pd-list-inside-right .thumb:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.pd-plus-opt {
    display: flex;
    gap: 18px;
    margin-top: 15px;
}

.pd-list-inside-txt {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2em;
    color: #555;
    letter-spacing: -.03em;
}

.pd-list-inside-ttlbox {
    margin-top: 50px;
}

.pd-list-inside-ttlbox>h4 {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -.03em;
    line-height: 1em;
    color: #333;
}

.pd-list-inside-ttlbox>h3 {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    letter-spacing: -.03em;
    line-height: 1.3em;
    margin-top: 10px;
}

.pd-list-inside-textbox {
    margin-top: 30px;
    text-align: center;
    height: 180px;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.pd-list-inside-textbox>p {
    font-size: 16px;
    line-height: 1.556em;
    font-weight: 400;
    letter-spacing: -.03em;
    color: #454545;
    margin-bottom: 30px;
    text-align: left;
}

.pd-list-inside-morebt {
    border: none;
    font-size: 16px;
    font-weight: 700;
    color: #333;
    letter-spacing: -.03em;
    border-bottom: 1px solid #ccc;
    display: block;
    width: 100%;
    padding-bottom: 10px;
}

.pd-inside-kind {
    margin-top: 40px;
}

.pd-inside-kind .tit {
    color: #222;
    font-weight: 600;
    line-height: 1em;
    letter-spacing: -.03em;
    font-size: 20px;
}

.pd-inside-kindlist {
    display: flex;
    gap: 36px;
    margin-top: 15px;
}

.pd-inside-kindlist li {
    width: calc(100%/4);
    background: #fff;
}

.pd-inside-kindlist li .thumb {
    position: relative;
    padding-bottom: 100%;
    overflow: hidden;
}

.pd-inside-kindlist li .thumb img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    width: auto !important;
    height: auto !important;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.pd-inside-kindlist li .thumb:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.pd-plus-opt {
    display: flex;
    gap: 18px;
    margin-top: 15px;
}

.pd-plus-opt>li {
    width: calc(100%/3);
    display: flex;
    border: 1px solid #ddd;
    align-items: center;
    background: #fff;
}

.pd-plus-logo {
    max-width: 51px;
    max-height: 51px;
    width: 100%;
}

.pd-plus-logo img {
    width: 100%;
    display: block;
    object-fit: cover;
}

.pd-plus-text {
    padding: 0 20px;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.25em;
    letter-spacing: -.03em;
    color: #333;
    background: #fff;
}

.pd-inside-mg {
    margin-top: 50px;
}

.pd-inside-download {
    margin-top: 30px;
    display: block;
    padding-bottom: 7px;
    text-align: left;
    font-size: 16px;
    font-weight: 400;
    color: #333;
    letter-spacing: -.03em;
    border-bottom: 1px solid #ccc;
    position: relative;
}

.pd-inside-download::after {
    content: "";
    position: absolute;
    right: 0;
    top: 5px;
    width: 14px;
    height: 17px;
    background: url(/images/board/download.png) center no-repeat;
    background-size: cover;
}

.pd-inside-tech {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    gap: 20px;
}

.pd-inside-tech>li {
    width: calc(100%/5);
    text-align: center;
}

.pd-inside-tech>li>h4 {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5em;
    letter-spacing: -.03em;
    color: #333;
    margin-top: 15px;
}

.pd-inside-tech>li>p {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.5em;
    color: #555;
    letter-spacing: -.03em;
}

.pd-inside-tech>li>p>sup {
    font-size: 8px;
}

.pd-inside-tech>li>.mg0 {
    line-height: 1em;
}

.pd-inside-techtext {
    margin-top: 60px;
}

.pd-inside-techtext .txt {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.556em;
    color: #454545;
    letter-spacing: -.03em;
}

.pd-inside-techtext .txt2 {
    margin-top: 10px;
}

.pd-inside-techtext .txt2 span {
    padding-left: 35px;
}

.pd-inside-more-contact {
    margin-top: 50px;
    font-size: 24px;
    line-height: 1em;
    letter-spacing: -.03em;
    font-weight: 700;
    color: #333;
}

.pd-inside-more-contact a {
    text-decoration: underline;
    text-underline-position: under;
}

.pd-other-bg {
    background: #333 !important;
}


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

    /* 제품상세페이지 공통 */
    .pd-list-inside {
        margin-top: 80px;
    }

    .pd-list-inside {
        flex-wrap: wrap;
        flex-direction: column-reverse;
    }

    .pd-list-inside-left {
        width: 100%;
    }

    .pd-list-inside-right {
        width: 100%;
        position: relative;
        top: 0;
    }

    .pd-list-inside-right .thumb {
        padding-bottom: 75%;
    }
}

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

    /* 제품상세페이지 공통 */
    .pd-list-inside {
        margin-top: 60px;
    }

    .pd-list-inside-left {
        padding: 20px 15px 40px;
    }

    .pd-inside-kindlist {
        flex-wrap: wrap;
        gap: 10px;
    }

    .pd-inside-kindlist li {
        width: calc(100% / 2 - 5px);
    }

    .pd-plus-opt {
        flex-wrap: wrap;
    }

    .pd-plus-opt>li {
        width: 100%;
        margin-bottom: 10px;
    }

    .pd-plus-opt>li:last-child {
        margin-bottom: 0;
    }
}

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

    /* 제품상세페이지 공통 */
    .pd-inside-kindlist li {
        width: 100%;
    }
}

/* 제품 상세보기 */

/* ******************   게시판 :: 뷰페이지  ********************** */






/* 
********************* 신청폼 **********************************
********************* 신청폼 **********************************
*/

.contact {
    padding: 100px 0;
}

.contact select {
    font-size: 16px;
    color: #777;
    -webkit-appearance: none;
    -webkit-border-radius: 0;
    border: 1px solid #ddd;
    padding: 0 15px;
    box-sizing: border-box;
    width: 50%;
    line-height: 52px;
    outline: none;
    letter-spacing: -0.64pt;
    background: url(/images/common/sel_arrow_down.svg) no-repeat right 20px center / 10px auto;
}

.contact .input {
    font-size: 16px;
    color: #777;
    -webkit-appearance: none;
    -webkit-border-radius: 0;
    border: 1px solid #ddd;
    padding: 0 15px;
    box-sizing: border-box;
    width: 50%;
    line-height: 52px;
    outline: none;
    letter-spacing: -0.64pt;
}

.contact .input_file {
    display: block;
    font-size: 16px;
    color: #777;
    -webkit-appearance: none;
    -webkit-border-radius: 0;
    border: 1px solid #ddd;
    padding: 0 15px;
    box-sizing: border-box;
    width: 50%;
    height: 52px;
    line-height: 52px;
    outline: none;
    letter-spacing: -0.64pt;
}

.contact .input.input_l {
    width: 100%;
}

.contact .textarea {
    font-size: 16px;
    color: #777;
    border: 1px solid #ddd;
    padding: 15px;
    box-sizing: border-box;
    width: 100%;
    height: 160px;
    outline: none;
    -webkit-appearance: none;
    -webkit-border-radius: 0;
    letter-spacing: -0.64pt;
}

.blind {
    font-size: 0;
    line-height: 0;
    width: 0px;
    height: 0px;
}

.contact input[type="radio"] {
    width: 18px;
    height: 18px;
    margin: 0 !important;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border: 1px solid #ddd;
    border-radius: 100%;
    margin-right: 5px !important;
    position: relative;
}

.contact input[type="radio"]:checked {
    border: 1px solid #004386;
}

.contact input[type="radio"]:checked::after {
    content: '';
    width: calc(100% - 6px);
    height: calc(100% - 6px);
    background: #0075FF;
    border-radius: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}


/* 입력항목 */
.form_txt {
    text-align: right;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: -0.35pt;
    line-height: 150%;
    word-break: keep-all;
    padding: 0 0 24px;
}

.form_txt font {
    font-weight: 700;
}

.form_table {
    width: 100%;
    text-align: left;
    border-top: 2px solid #004386;
}

.form_table dl {
    display: flex;
    flex-wrap: wrap;
}

.form_table dt {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 200px;
    font-size: 16px;
    color: #000;
    font-weight: 400;
    letter-spacing: -0.64pt;
    padding: 0 25px;
    box-sizing: border-box;
    background: #f5f5f5;
    border-bottom: 1px solid #dddddd;
    display: flex;
    align-items: center;
}

.form_table dt span {
    color: #004386;
    margin-left: 3px;
}

.form_table dd {
    width: calc(100% - 200px);
    font-size: 16px;
    color: #777;
    font-weight: 400;
    letter-spacing: -0.35pt;
    line-height: 150%;
    padding: 15px 25px;
    box-sizing: border-box;
    background: #fff;
    border-bottom: 1px solid #dddddd;
    min-height: 78px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.form_table dd .sub_txt {
    width: 100%;
    display: block;
    text-align: left;
    font-size: 16px;
    padding: 5px 0 0;
    color: #999;
}

.form_table dd .sub_txt a:hover {
    color: #000;
    transition: all .3s linear;
}

.form_table dd label {
    letter-spacing: -0.64pt;
    margin-right: 30px;
}

.form_table dd span.hyp {
    display: inline-block;
    width: 30px;
    text-align: center;
    font-size: 16px;
}

.form_table dd .btn_address {
    -webkit-appearance: none;
    -webkit-border-radius: 0;
    width: 100px;
    margin-left: 5px;
    height: 52px;
    line-height: 52px;
    padding: 0;
    box-sizing: border-box;
    border: 1px solid #000;
    text-align: center;
    color: #fff;
    font-size: 0.938rem;
    font-weight: 500;
    background: #000;
    outline: none;
    cursor: pointer;
    transition: all .3s linear;
}

.form_table dd .btn_address:hover {
    background: #004386;
    border-color: #777;
}

.form_table dd .input_address {
    margin: 5px 0 0;
}

.form_table dd .select_num {
    width: calc((100% - 60px)/3);
    max-width: 280px;
}

.form_table dd .input_num {
    width: calc((100% - 60px)/3);
    max-width: 280px;
}

.form_table dd .input_email {
    width: calc((100% - 35px)/3);
    max-width: 280px;
}

.form_table dd .select_email {
    width: calc((100% - 35px)/3);
    margin-left: 5px;
    max-width: 280px;
}

.form_table dd .norobot_img {
    display: inline-block;
    vertical-align: top;
    padding: 11px 0;
    box-sizing: border-box;
}

.form_table dd .vcode {
    display: inline-block;
    vertical-align: top;
    width: calc(50% - 80px);
}



/* 개인정보 동의 */
.agree_con {
    padding: 50px 0 0;
}

.agree_con h4 {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    line-height: 120%;
    letter-spacing: -0.75pt;
    padding: 0 0 10px;
}

.agree_con .privacy_agree {
    box-sizing: border-box;
    border: 1px solid #777;
    border-top: 0;
}

.agree_con .privacy_agree .textarea {
    border: 0;
    font-size: 15px;
    color: #999;
    padding: 20px;
    line-height: 160%;
}

.agree_con .privacy_head {
    border: 1px solid #777;
    background: #f5f5f5;
    padding: 20px;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -0.35pt;
    line-height: 150%;
    word-break: keep-all;
    text-align: center;
}

.agree_con .privacy_head .agree_checkbox {
    display: inline-block;
    width: 20px;
    height: 20px;
    margin: -2px 7px 0 0;
    vertical-align: middle;
}

.agree_con .privacy_head .checkbox_wrap {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -0.35pt;
    line-height: 150%;
    word-break: keep-all;
    color: #666;
}

.agree_con .privacy_head .option {
    display: inline-block;
    margin-left: 5px;
    cursor: pointer;
    color: #000;
    font-weight: 500;
    text-decoration: underline;
}



/* 확인/취소 버튼 */
.formBtn {
    text-align: center;
    padding: 60px 0 0;
    font-size: 0;
}

.formBtn .btn {
    display: inline-block;
    vertical-align: top;
    padding: 0;
    margin: 0;
    outline: none;
    cursor: pointer;
    width: 210px;
    height: 72px;
    box-sizing: border-box;
    text-align: center;
    transition: all .3s linear;
    border: 1px solid #004386;
    background: #004386;
    position: relative;
    margin: 0 5px 0 0;
    color: #fff;
}

.formBtn .btn:last-child {
    margin: 0;
}

.formBtn .btn span {
    font-size: 1.25rem;
    display: flex;
    justify-content: center;
    align-content: center;
    color: #fff;
    letter-spacing: -0.6pt;
}

.formBtn .btn:hover {
    box-shadow: 0 0 20px rgba(34, 34, 34, .1);
    background: #fff;
}

.formBtn .btn:hover span {
    color: #004386;
}

.formBtn .btn_cancel {
    background: #7E838B;
    border-color: #7E838B;
}

.formBtn .btn_cancel:hover span {
    color: #7E838B;
}






/*******************************************************************************
	@media ~980px
*******************************************************************************/
@media all and (max-width:980px) {

    select {
        padding: 0 10px;
        line-height: 40px;
        width: 100%;
    }

    .input {
        padding: 0 10px;
        line-height: 40px;
        width: 100%;
    }

    .input_file {
        padding: 0 10px;
        height: 40px;
        line-height: 40px;
        width: 100%;
    }

    .textarea {
        padding: 10px;
        height: 150px;
    }



    /* 입력항목 */
    .form_txt {
        font-size: 13px;
        padding: 0 0 18px;
    }

    .form_table {}

    .form_table dt {
        padding: 20px 15px;
        width: 160px;
    }

    .form_table dd {
        width: calc(100% - 160px);
        padding: 20px 15px;
    }

    .form_table dd .sub_txt {
        padding: 5px 0 0;
    }

    .form_table dd .btn_address {
        width: 100px;
        margin-left: 5px;
        height: 40px;
        line-height: 38px;
    }

    .form_table dd .input_address {
        margin: 5px 0 0;
    }

    /* 
.form_table dd .select_num{width:calc((100% - 40px)/3);}
.form_table dd .input_num{width:calc((100% - 40px)/3);}
.form_table dd .input_email{width:calc((100% - 25px)/3);}
.form_table dd .select_email{width:calc((100% - 25px)/3); margin-left: 5px;} */
    .form_table dd .norobot_img {
        padding: 4px 0;
    }

    .form_table dd .vcode {
        width: calc(100% - 80px);
    }

    /* 개인정보 동의 */
    .agree_con {
        padding: 60px 0 0;
    }

    .agree_con h4 {
        font-size: 20px;
        padding: 0 0 8px;
    }

    .agree_con .privacy_agree .textarea {
        padding: 15px;
    }

    .agree_con .privacy_head {
        padding: 15px;
    }

    .agree_con .privacy_head .agree_checkbox {
        width: 18px;
        height: 18px;
        margin: -2px 7px 0 0;
    }


    /* 확인/취소 버튼 */
    .formBtn {
        padding: 40px 0 0;
    }



}

/*******************************************************************************
	@media ~680px
*******************************************************************************/
@media all and (max-width:768px) {

    .contact {
        padding: 50px 0;
    }

    .textarea {
        height: 100px;
    }



    /* 입력항목 */
    .form_txt {
        padding: 0 0 10px;
    }

    .form_table dt {
        padding: 12px 10px;
        width: 100%;
    }

    .form_table dd {
        width: 100%;
        padding: 12px 10px;
    }

    .form_table dd .input_num.input_add {
        width: calc(100% - 105px);
    }

    .form_table dd span.hyp {
        width: 20px;
    }

    .form_table dd .select_num {
        width: calc((100% - 40px)/3);
    }

    .form_table dd .input_num {
        width: calc((100% - 40px)/3);
    }

    .form_table dd .input_email {
        width: calc((100% - 25px)/3);
    }

    .form_table dd .select_email {
        width: calc((100% - 25px)/3);
        margin-left: 5px;
    }


    /* 개인정보 동의 */
    .agree_con {
        padding: 40px 0 0;
    }

    .agree_con h4 {
        font-size: 18px;
    }

    .agree_con .privacy_agree .textarea {
        padding: 12px;
    }

    .agree_con .privacy_head {
        padding: 12px;
    }

    .agree_con .privacy_head .agree_checkbox {
        width: 15px;
        height: 15px;
        margin: -2px 5px 0 0;
    }


    /* 확인/취소 버튼 */
    .formBtn {
        padding: 30px 0 0;
    }

    .formBtn .btn {
        width: 140px;
        height: 50px;
    }

    .formBtn .btn span {
        line-height: 48px;
    }


}


/* 
********************* 신청폼 **********************************
********************* 신청폼 **********************************
*/