@charset "utf-8";

/* 디폴트 */
img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    vertical-align:middle;
}
button{
    border: 0;
}

.material-icons {
    line-height: 1;
}
.cont_mg{margin-bottom: 12.0rem;}
.cont_title{
    text-align: center;
    font-size: 5.0rem; 
	font-weight: 600;
    margin-bottom: 6.0rem;
}
@media( max-width: 768px ) {
    .cont_title{
        font-size: 4.2rem; 
        font-weight: 600;
        margin-bottom: 4.2.0rem;
    }
}
.wrap_1600{
    max-width: 160.0rem;
    margin: 0 auto;
}

/* pc 모바일 none */
.only_pc{}
.only_mob{display: none !important;}
@media( max-width: 768px ) {
    .only_pc{display: none !important;}
    .only_mob{display: initial !important;}
}


/* 공통 css */
.flex_box { display: flex; }
.grid_box { display: grid; }
.gap_24 { gap: 2.4rem; }
.gap_32 { gap: 3.2rem; }
.gap_40 { gap: 4rem; }
.gap_62 { gap: 6.2rem; }
.gap_100 { gap: 10.0rem; }
.cols_2 { grid-template-columns: repeat(2, 1fr); }
.cols_3 { grid-template-columns: repeat(3, 1fr); }
.cols_4 { grid-template-columns: repeat(4, 1fr); }
.cols_5 { grid-template-columns: repeat(5, 1fr); }
@media( max-width: 1200px ) {
    .cols_2 { grid-template-columns: repeat(1, 1fr);}
    .cols_3 { grid-template-columns: repeat(2, 1fr);}
    .cols_4  { grid-template-columns: repeat(2, 1fr);}
    .cols_5 { grid-template-columns: repeat(3, 1fr); }
}
@media( max-width: 768px ) {
    .gap_24 { gap: 2.0rem }
    .gap_32 { gap: 2.8rem; }
    .gap_40 { gap: 3.6rem; }
    .gap_62 { gap: 5.0rem; }
    .gap_100 { gap: 7.0rem; }
    .cols_2 { grid-template-columns: repeat(1, 1fr);}
    .cols_3 { grid-template-columns: repeat(1, 1fr);}
    .cols_4  { grid-template-columns: repeat(2, 1fr);}
    .cols_5 { grid-template-columns: repeat(3, 1fr); }
}


.pd_12 { padding: 1.2rem; }
.pd_16 { padding: 1.6rem; }
.pd_20 { padding: 2.0rem; }
.pd_24 { padding: 2.4rem; }
.pd_28 { padding: 2.8rem; }
.pd_32 { padding: 3.2rem; }
.pd_40 { padding: 4.0rem; }
.pd_60 { padding: 6.0rem; }
.pd_100 { padding: 10.0rem; }
@media( max-width: 768px ) {
    .pd_16 { padding: 1.2rem; }
    .pd_20 { padding: 1.6rem; }
    .pd_24 { padding: 2.2rem; }
    .pd_28 { padding: 2.4rem; }
    .pd_32 { padding: 2.8rem; }
    .pd_40 { padding: 3.6rem; }
    .pd_60 { padding: 4.6rem; }
    .pd_100 { padding: 3.6rem; }
}

.txt_l {text-align:left !important;}
.txt_c {text-align:center !important;}
.txt_r {text-align:right !important;}

/* radius */
.rd_8 { border-radius: 0.8rem; overflow: hidden;}
.rd_16 { border-radius: 1.6rem; overflow: hidden;}
.rd_20 { border-radius: 2.0rem; overflow: hidden;}
.rd_24 { border-radius: 2.4rem; overflow: hidden;}
@media( max-width: 768px ) {
    .rd_8 { border-radius: 0.8rem; }
    .rd_16 { border-radius: 1.2rem; }
    .rd_20 { border-radius: 1.6rem; }
    .rd_24 { border-radius: 2.0rem; }
}




/* 회사개요 */
.company .box_wrap .box{
    background-color: #eee;
    margin-bottom: 4.6rem;
}
.company .box_wrap .box .content{
    position: relative;
    padding: 6.0rem;
    box-sizing: border-box;
}
.company .box_wrap .box .content .name{
    font-size: 4.0rem;
    border-bottom: 1px solid #000;
    padding-bottom: 2.4rem;
    margin-bottom: 2.4rem;
}
.company .box_wrap .box .content ul{
    display: grid;
    grid-template-columns: 1fr 4fr;
    gap: 2.4rem;
    font-size: 2.2rem;
    margin-bottom: 2.4rem;
}
.company .box_wrap .box .content ul:last-child{
    margin-bottom: 6.0rem;
}
.company .box_wrap .box .content ul .sort{
    font-weight: 800;
}
.company .box_wrap .box .mapBtn{
    float: right;
    right: 0;
    bottom: 0;
}
.company .box_wrap .box  .mapBtn button{
    align-items: center;
    font-size: 2.0rem;
    background-color: transparent;
    border: 1px solid #666;
    transition: all ease 0.5s;
}
.company .box_wrap .box .mapBtn span{
    margin-left: 1.2rem;
}
.company .box_wrap .box  .mapBtn:hover button{
    background-color: #000;
    border-color: #000;
}
.company .box_wrap .box .mapBtn:hover button{
    color: #fff;
    fill: #fff;
}
.company .mapPopup {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 1000;
}
.company .mapOverlay {
    position: absolute;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
}
.company .mapContent {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(60% - 6.0rem);
    height: calc(60% - 6.0rem);
    margin: 50px auto;
    background: #fff;
    padding: 6.0rem 2.0rem 2.0rem 2.0rem;
    z-index: 1010;
}
.company .mapContent iframe {
    width: 100%;
    height: 100%;
    border: 0;
}
.company .mapContent .kakaoMapWrap {
    width: 100% !important;
    height: 100% !important;
    position: relative !important;
}
.company .mapContent .kakaoMapWrap > div {
    width: 100% !important;
    height: 100% !important;
}
.company .closeMap {
    position: absolute;
    top: 2.0rem;
    right: 2.0rem;
    font-size: 18px;
    cursor: pointer;
    background: none;
    border: none;
}
.company_cont .brand .grid_box{
    max-width: 1000px;
    margin: 0 auto;
}
.company_cont .brand .box .img{
    border: 1px solid #ccc;
    padding: 6.0rem;
    margin-bottom: 2.4rem;
}
.company_cont .brand .box .name{
    background-color: #000;
    color: #fff;
    text-align: center;
    font-size: 3.2rem;
}
@media( max-width: 1600px ) {
    .box_wrap{
        overflow-x: hidden; /* 추가 */
    }
}
@media( max-width: 768px ) {
    .company .box_wrap .box .content{
        position: relative;
        padding: 3.2rem;
    }
    .company .mapContent {
        width: calc(90% - 4.8rem);
        max-height: calc(90% - 12.0rem);
        margin: 50px auto;
        background: #fff;
        padding: 6.0rem 2.0rem 2.0rem 2.0rem;
        z-index: 1010;
    }
}






.esg_cont .message {
    background-color: #eee;
    padding: 14.0rem 0;
}
.esg_cont .message .grid_box{
    grid-template-columns: 1.2fr 1fr;
    gap: 7.0rem;
}
.esg_cont .message .img{
    margin-bottom: 3.6rem;
    overflow: hidden;
}
.esg_cont .sign{
    align-items: center;
}
.esg_cont .message .sign span{
    font-weight: 800;
}
.esg_cont .sign p{
    font-size: 2.0rem;
    margin-right: 2.4rem;
}
.esg_cont .message .text{
    flex-direction: column;
    justify-content: space-between;
}
.esg_cont .message .text .txt01{
    font-size: 5.2rem;
    font-weight: 600;
    margin-bottom: 3.6rem;
}
.esg_cont .message .text .txt02{
    font-size: 2.2rem;
    line-height: 2;
}
.esg_cont .slide div{
    width: 20.0rem;
}
.esg .declaration .list{
    box-shadow: 0 0 20px rgba(0,0,0,0.4);
    padding: 1.2rem;
}
.esg .declaration .list .img{
    margin-bottom: 2.4rem;
    height: 22.4rem;
}
.esg .declaration .list .txt{
    padding: 1.2rem;
}
.esg .declaration .list .txt .title{
    margin-bottom: 1.6rem;
    font-size: 3.0rem;
    font-weight: 600;
}
.esg .declaration .list .txt .tt{
    font-size: 2.0rem;
}
@media( max-width: 1600px ) {
    .esg_cont .message {
        background-color: #eee;
        padding: 14.0rem 4.0rem;
    }
}
@media( max-width: 1400px ) {
    .esg_cont .message .grid_box{
        gap: 5.2rem;
    }
}
@media( max-width: 1200px ) {
    .esg_cont .message .grid_box{
        gap: 4.0rem;
    }
    .esg_cont .message .text .txt01{
        font-size: 3.6rem;
    }
    .esg_cont .message .text .txt02{
        font-size: 2.0rem;
        line-height: 1.5;
    }
}
@media( max-width: 768px ) {
    .esg_cont .message .grid_box{
        grid-template-columns: 1fr;
        gap: 3.2rem;
    }
    .only_mob .sign{
        float: right;
    }
}










/* 연혁 */
/* 연혁 */
/* 연혁 */
.history .img{
    height: 26.0rem;
    overflow: hidden;
    position: sticky;
    top: calc(10.0rem + 4.0rem);
}
.history .img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1; /* 기본값 1로 변경 */
    transition: opacity 2s ease;
}
.history .img img.hidden {
    opacity: 0;
}
.history_cont{
    position: relative;
    align-items: flex-start;
}
.history .list_wrap {
    position: relative;
}
.history .list_wrap::before {
    content: '';
    position: absolute;
    left: calc(100px / -2);
    top: 0;
    bottom: 0;
    width: 1px;
    background-color: #ccc;
    z-index: 0;
    margin-top: calc(1.6em + 0.5em);
    margin-bottom: calc(11em + 0.5em);
}
.history .list{
    margin-bottom: 10.9rem;
    position: relative;
}
.history .list:last-child,
.history .list:last-child .text{
    margin-bottom: 0;
}
.history .list .year{
    font-size: 4.8rem;
    font-weight: 800;
    margin-bottom: 4.0rem;
    position: relative;
}
.history .list .year::before {
    content: '';
    position: absolute;
    left: calc(100px / -2 - 8px);
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background-color: #fff;
    border: 4px solid #f2b016;
    box-sizing: border-box;
    border-radius: 50%;
    z-index: 2;
}
.history .list .title{
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 1.2rem;
}
.history .list .text{
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
}
@media( max-width: 1200px ) {
    .history_cont.cols_2{
        grid-template-columns: repeat(2, 1fr);
    }
}
@media( max-width: 768px ) {
    .history_cont.cols_2{
        grid-template-columns: repeat(1, 1fr);
    }
    .history .img{
        height: 26.0rem;
        position: relative;
        top: 0;
    }
    .history .list_wrap {
        margin-left: 6.0rem;
    }
    .history .list_wrap::before {
        left: -3.0rem; /* 6.0rem의 절반 */
        margin-top: calc(1em + 0.5em);
        margin-bottom: calc(10em + 0.5em);
    }
    .history .list .year::before {
        left: calc(-3.0rem - 8px); /* 라인 중앙에서 원 반지름만큼 빼기 */
    }
    .history .list{
        margin-bottom: 6.0rem;
    }
    .history .list .year{
        font-size: 3.2rem;
        font-weight: 800;
        margin-bottom: 3.2rem;
    }
    .history .list .title{
        font-size: 2.0rem;
    }
    .history .list .text{
        font-size: 1.6rem;
    }
}



.organization_cont .organigram{
    padding: 8.2rem;
    background-image: url('../../pages/images//organization_bg.png');
    background-repeat: no-repeat;
    background-position: center;
    justify-content: center;
}
.organization_cont .organigram img{
    width: calc(100%);
    max-width: 1200px;
    height: 100%;
    object-fit: contain;
}
@media( max-width: 1200px ) {
    .organization_cont .organigram{
        padding: 6.0rem;
    }
}
@media( max-width: 768px ) {
    .organization_cont .organigram{
        padding: 4.0rem;
    }
}



/* 슈레이스 */
.product_cont{
    margin: 0 auto;
    max-width: 1180px;
}

/* 슬라이드 기본 */
.product_cont .slide_wrap {
    width: 100%;
    position: relative;
    box-sizing: border-box;
}
.product_cont .slides {
    position: relative;
    width: 100%;
    height: 62.3rem;
    box-shadow: 0 0 12px rgba(0,0,0,0.2);
    margin-bottom: 4.0rem;
}
.product_cont .slides div{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: opacity 0.6s ease;
}
/* 페이지네이션 */
.product_cont .pagination {
    position: absolute;
    bottom: 3.6rem;
    right: 3.6rem;
    display: flex;
    gap: 1.0rem;
    z-index: 10;
}
.product_cont .pagination span {
    width: 1.2rem;
    height: 1.2rem;
    background-color: #ccc;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.product_cont .pagination span.active {
    background-color: #f2b016;
}
/* 프리뷰 */
.product_cont .preview {
    display: flex;
    gap: 3.0rem;
    justify-content: end;
}
.product_cont .preview > div {
    position: relative;
    width: 16.0rem;
    height: 10.0rem;
    cursor: pointer;
    transition: border-color 0.3s ease;
    overflow: hidden;
    border-radius: 1.6rem;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
}
.product_cont .preview > .active::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    border-radius: 1.6rem;
    border: 3px solid #f2b016;
}
.product_cont .preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* 좌우버튼 */
.product_cont .slide_btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    padding: 1.2rem;
    cursor: pointer;
    font-size: 2.4rem;
    z-index: 10;
    width: 8.0rem;
    display: flex;
    justify-content: center;
    background-color: transparent;
}
.product_cont .slide_btn.prev {
    left: calc(-8.0rem - 3.2rem);
}
.product_cont .slide_btn.next {
    right: calc(-8.0rem - 3.2rem);
}
/* 제품 인트로 */
.product_intro .text{
    font-size: 2.5rem;
    background-color: #eee;
    text-align: center;
    line-height: 1.3;
}
.product_intro .slide_wrap {
    width: 100%;
    position: relative;
}
/* 제품 갤러리 */
.products_galley{
    position: relative;
}
.products_galley .slide_wrap .slides{
    border: 4px solid #f2b016;
}
@media( max-width: 1600px ) {
    .product_cont .slide_btn {
        height: 8.0rem;
        background-color: #fff;
        border-radius: 50%;
        padding: 2.0rem;
    }
    .product_cont .slide_btn img {
        object-fit: contain;
    }
    .product_cont .slide_btn.prev {
        left: 3.2rem;
        padding-right: 2.6rem;
    }
    .product_cont .slide_btn.next {
        right: 3.2rem;
        padding-left: 2.6rem;
    }
}
@media( max-width: 1200px ) {
    .product_cont .slides {
        height: 50.0rem;
        margin-bottom: 3.0rem;
    }
    .product_cont .preview {
        gap: 2.4rem;
    }
}
@media( max-width: 768px ) {
    .product_cont .slides {
        height: 30.0rem;
    }
    .product_cont .preview {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
    }
    .product_cont .preview > div {
        width: auto;
    }
    .product_cont .slide_btn {
        width: 4.0rem;
        height: 4.0rem;
        padding: 0rem;
        display: flex;
        align-items: center;
        justify-content: center; 
    }    
    .product_cont .slide_btn.prev {
        left: 2.4rem;
        padding-right: 0rem;
    }
    .product_cont .slide_btn.next {
        right: 2.4rem;
        padding-left: 0rem;
    }
}




/* mes 시스템 */
/* mes 시스템 */
/* mes 시스템 */
.mes .intro .bg{
    max-height: 44.0rem;
    overflow: hidden;
}
.mes .intro .txt{
    max-width: 1600px;
    margin: 0 auto;
    background-color: #fff;
    padding: 8.0rem;
    border-radius: 3.2rem;
    line-height: 2;
    
    position: relative;
    top: -6.2rem;
    font-size: 2.4rem;
}
.mes .intro .txt p{
    border-top: 1px solid #f2b016;
    border-bottom: 1px solid #f2b016;
    padding: 7.0rem 3.2rem;
}
.mes .sys_img{
    background-color: #eee;
    padding: 4.8rem;
    margin-bottom: 6.0rem;
}
.mes .sys_img > div{
    max-width: calc(100% - 12.0rem);
    margin: 0 auto;
}
.mes .sys_functions {
    background-color: #fef7e5;
    padding: 5.0rem 5.0rem 7.0rem;
    border-radius: 4.0rem;
    overflow: hidden;
}
.mes .sys_functions .func_list {
    max-width: 1200px;
    margin: 0 auto;
}
.mes .sys_functions .func_list li{
    border-bottom: 1px solid #ccc;
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 2.4rem;
    padding: 2.0rem 0;
    font-size: 2.0rem;
}
.mes .sys_functions .func_list .num{
    width: 3.6rem;
    height: 3.6rem;
    background-color: #f2b016;
    border-radius: 1.2rem;
    flex-shrink: 0;

    font-size: 2.4rem;
    font-weight: 800;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}
.mes .sys_functions .func_list .title{
    font-weight: 800;
    width: 15.6rem;
}
.mes .sys_functions .func_list li:last-child{
    border: 0;
    background-color: #fff;
    border-radius: 2.4rem;
    justify-content: center;
    text-align: center;
}
.mes .sys_functions .func_list li:last-child .last{
    background-color: #fff;
    
}
@media( max-width: 768px ) {
    .mes .intro .txt{
        padding: 5.2rem 3.2rem;
        line-height: 2;
        top: -5.2rem;
    }
    .mes .intro .txt p{
        padding: 4.0rem 0rem;
    }
    .mes .sys_img{
        padding: 2.4rem;
    }
    .mes .sys_img > div {
        max-width: calc(100% - 4.0rem);
    }
    .mes .sys_functions {
        padding: 5.2rem 3.2rem 3.2rem;
        border-radius: 3.2rem;
    }
    .mes .sys_functions .func_list li{
        gap: 2.0rem;
        padding: 2.0rem 0;
        font-size: 2.2rem;
        flex-wrap: wrap;
    }
    .mes .sys_functions .func_list .title{
        width: 80%;
    }
    .mes .sys_functions .func_list .num{
        font-size: 2.0rem;
        width: 2.8rem;
        height: 2.8rem;
        border-radius: 0.6rem;
    }
    .mes .sys_functions .func_list .txt{
        margin-left: 5.0rem;
    }
    .mes .sys_functions .func_list li:last-child{
        padding: 2.0rem;
        border-radius: 2.0rem;
    }
}




.production .intro .bg{
    max-height: 44.0rem;
    overflow: hidden;
}
.production .intro .korea{
    margin-bottom: 10.0rem;
}
.production .intro .korea .txt{
    position: relative;
    top: -6.2rem;
    text-align: center;
    background-color: #fff;
    border-radius: 3.2rem;
}
.production .intro .txt{
    padding: 8.0rem;
    max-width: 1600px;
    margin: 0 auto;
    line-height: 2;
}
.production .intro .txt p{
    display: inline-block;
    border-bottom: 1px solid #000;
    padding: 2.4rem 0.8rem;
}
.production .intro .list .box .img{
    height: 17.6rem;
    overflow: hidden;
    border: 1px solid #ccc;
    margin-bottom: 1.0rem;
}
.production .intro .list .box .img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.production .intro .list .box .name{
    background-color: #000;
    color: #fff;
    padding: 2.0rem;
    text-align: center;
}
.production .intro .table {
    margin-top: 7rem;
}
.production .intro .table table {
    width: 100%;
    border-collapse: collapse;
    border: none;
    border-bottom: 1px solid #ccc;
}
.production .intro .table thead th {
    background-color: #f2af16;
    color: #fff;
    font-weight: 700;
    padding: 2.8rem;
    text-align: center;
    border-right: 1px solid #fff;
}
.production .intro .table thead th:last-child {
    border-right: none;
}
.production .intro .table tbody td {
    padding: 2.8rem;
    text-align: center;
    border-right: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    font-weight: 500;
}
.production .intro .table tbody td:last-child {
    border-right: 0px;
}

.production .intro .table tbody tr.capacity td {
    background-color: #f2f2f2;
    font-weight: 600;
}

.production .intro .table tbody tr.capacity td:first-child {
    font-weight: 700;
}
@media( max-width: 1200px ) {
    .production .intro .list{
        gap: 3.2rem;
    }
}
@media( max-width: 768px ) {
    .production .intro .list{
        grid-template-columns: repeat(2, 1fr);
        gap: 2.4rem;
    }
    .table_scroll {
        overflow-x: auto;           /* 표 가로 스크롤 */
        -webkit-overflow-scrolling: touch; /* 모바일에서 부드럽게 */
    }
}


.equip_cont .line{
    background-color: #ccc;
    width: 100%;
    height: 1px;
    margin-bottom: 7.0rem;
}
.equip_cont .list{
    background-color: #eee;
}
.equip_cont .list .img{
    max-height: 54.0rem;
    background-color: #fff;
    overflow: hidden;
    margin-bottom: 2.4rem;
    box-shadow: 0 0 1.6rem rgba(0, 0, 0, 0.2);
}
.equip_cont .list .img img{
    object-fit: contain !important;
}
.equip_cont .list .name{
    background-color: #000;
    color: #fff;
    padding: 2.0rem;
    font-size: 2.0rem;
    border-radius: 1.0rem;
    text-align: center;
}


.certification .line{
    background-color: #ccc;
    width: 100%;
    height: 1px;
    margin-bottom: 7.0rem;
}
.certification .list{
    background-color: #eee;
}
.certification .list .box{
    background-color: #fff;
    overflow: hidden;
    padding: 5.0rem 7.4rem;
}
.certification .list .img{
    margin-bottom: 3.2rem;
    box-shadow: 0 0 1.6rem rgba(0, 0, 0, 0.2);
}
.certification .list .img img{
    object-fit: contain !important;
}
.certification .list .name{
    font-size: 2.0rem;
    text-align: center;
    border-top: 1px solid #ccc;
    padding-top: 1.8rem;
}
@media( max-width: 1400px ) {
    .certification .list .box{
        padding: 5.0rem;
    }
}
@media( max-width: 768px ) {
    .certification .list .box{
        padding: 4.0rem;
    }
}





/* 샘플북 */
/* 샘플북 */
.sample_book {
    position: relative;
}
.sample_book .list{
    background-color: #eee;
    padding-top: 10.0rem;
    padding-bottom: 10.0rem;
}
.sample_book .list .book {
    cursor: pointer;
}
.sample_book .list .book .cover{
    height: 44.0rem;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8.0rem;
    box-shadow: 0 0 16px rgba(0,0,0,0.1);
    border: 2px solid transparent;
    transition: all .4s ease-out; 
}
.sample_book .list .book:hover {
    border-color: #f2b016;
}
.sample_book .list .book .cover img{
    object-fit: contain;
}
.sample_book .list .book .titleBtn{
    grid-template-columns: 4fr 2fr;
    margin-top: 2.4rem;
    text-align: center;
    font-size: 1.8rem;
    align-items: stretch;
}
.sample_book .list .book .titleBtn div{
    display: flex;
    justify-content: center;
    align-items: center;
}
.sample_book .list .book .titleBtn .text{
    color: #fff;
    background-color: #000;
    transition: all .4s ease-out;
    word-break: keep-all;
    padding: 1.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;

    min-height: 8.0rem;
}
.sample_book .list .book .titleBtn .text:hover{
    background-color: #f2b016;
    color: #fff;
}
.sample_book .list .book .titleBtn .download{
    gap: 1.2rem;
    align-items: center;
    justify-content: center;
}
.sample_book .list .book .titleBtn .download a{
    width: 100%;
    height: 100%; /* 유지 - 부모인 .download의 높이에 맞춤 */
    border: 2px solid #666;
    background-color: #fff;
    transition: all .4s ease-out;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sample_book .list .book .titleBtn .download:hover a{
    border: 2px solid #f2b016;
    background-color: #f2b016;
    color: #fff;
}
@media( max-width: 1600px ) {
    .sample_book .list .book .cover {
        padding: 5.2rem;
    }
}
@media( max-width: 1200px ) {
    .sample_book .list{
        padding-top: 6.0rem;
        padding-bottom: 6.0rem;
    }
    .sample_book .list .book .cover{
        min-height: 24.0rem;
        padding: 3.2em;
    }
    .sample_book .list .book .cover img{
        max-width: 100%;
    }

}


/* 팝업 */
.bookPopup {
    display: none;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    position: fixed !important;
    z-index: 99999 !important;
}
.bookPopup.active {
    display: block;
}
.bookOverlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
}
.bookContent {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 85%;
    max-width: 1200px;
    height: 90%;
    background: #fff;
    padding: 6.0rem 3.2rem 3.2rem;
    border-radius: 2.4rem;
    z-index: 1010;
    display: flex;
    flex-direction: column;
}
.closeBook {
    position: absolute;
    top: 2.0rem;
    right: 2.0rem;
    font-size: 3.0rem;
    cursor: pointer;
    background: none;
    border: none;
    z-index: 1020;
}
/* 슬라이더 */
.bookSlider {
    position: relative;
    flex: 1;
    overflow: hidden;
    margin-bottom: 2.4rem;
}
.bookSlides {
    position: relative;
    width: 100%;
    height: 100%;
}
.bookSlides > div {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.bookSlides > div.active {
    opacity: 1;
}
.bookSlides img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
/* 슬라이드 버튼 */
.bookSlideBtn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    width: 5.0rem;
    height: 5.0rem;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
}
.bookSlideBtn.prev {
    left: 2.0rem;
}
.bookSlideBtn.next {
    right: 2.0rem;
}
.bookSlideBtn span {
    font-size: 3.0rem;
}

/* 프리뷰 */
.bookPreview {
    display: flex;
    gap: 1.6rem;
    justify-content: center;
    overflow-x: auto;
    padding: 1.0rem 0;
}
.bookPreview > div {
    width: 9.0rem;
    height: 6.0rem;
    cursor: pointer;
    border: 3px solid transparent;
    border-radius: 0.8rem;
    overflow: hidden;
    transition: border-color 0.3s ease;
    flex-shrink: 0;
}
.bookPreview > div.active {
    border-color: #f2b016;
}
.bookPreview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media( max-width: 1200px ) {

}
@media( max-width: 768px ) {
    .bookContent {
        width: calc(100% - 4.8rem);
        height: 60%;
        padding: 6.0rem 2.8rem 2.8rem;
    }
    .bookSlideBtn.prev {
        left: 0;
    }
    .bookSlideBtn.next {
        right: 0;
    }
}

.location_cont{
    padding: 0 6.0rem;
}
.location .map .wrap_controllers,
.location .map .cont {
    display: none;
}
.location .map_box .map #daumRoughmapContainer1764918711052 {
    width: 100% !important;
    height: 100% !important;
}
.location .map_box .map .map_border{
    border: 0;
    background-color: transparent;
}
.location .map_box .map{
    margin-bottom: 6.8rem;
    height: 50.0rem;
    overflow: hidden;
    box-sizing: border-box;
}
.location .map_box iframe{
    height: 100% !important;
}
.location .map_box .info .list{
    padding: 3.2rem;
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 3.6rem;
    box-shadow: 0 0 1.6rem rgba(0, 0, 0, 0.1);
}
.location .map_box .info .list .icon{
    width: 9.0rem;
    height: 9.0rem;
    border: 1px solid #f2af16;
    border-radius: 50%;
    padding: 2.2rem;
}
.location .map_box .info .list .txt{
    padding: 1.2rem 0;    
    flex: 1;
}
.location .map_box .info .list .name{
    font-size: 2.4rem;
    margin-bottom: 1.6rem;
}
.location .map_box .info .list .address{
    font-size: 2.0rem;
}
.location .vina .info .list .name,
.location .indo .info .list .name{
    font-size: 2.0rem;
}
.location .vina .info .list .address,
.location .indo .info .list .address{
    font-size: 1.8rem;
}
.location .vina .info .list .icon,
.location .indo .info .list .icon{
    width: 8.0rem;
    height: 8.0rem;
    padding: 2.0rem;
}
@media ( max-width: 768px ) {
    .location_cont{
        padding: 0 2.0rem;
    }
    .location .vina{
        margin-bottom: 8.0rem;
    }
    .location .map_box .map{
        margin-bottom: 2.4rem;
        height: 30.0rem;
    }
    .location .map_box .info .list{
        padding: 2.4rem;
    }
    .location .map_box .info .list .icon{
        width: 6.0rem;
        height: 6.0rem;
        padding: 1.2rem;
    }
}