@charset "utf-8";

h1, h2, h3, h4, h5, div, p, span, strong, b, ul, li {word-break: keep-all;}
img {max-width: 100%;}

.arrow .color {
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.5px;
}
.more-btn {
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    height: 48px;
}
.more-btn b {
    font-size: 15px;
    color: #fff;
    padding-right: 15px;
}
.more-btn .arrow {transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);}
.more-btn .color {stroke: #fff;}
.more-btn:hover .arrow {transform: translateX(6px);}
.arrow-btn {
    display: flex;
    align-items: center;
    gap: 10px;
}
.arrow-btn b {
    font-size: 12px;
    font-weight: 600;
}
.no-link {pointer-events: none;}
@media all and (max-width: 767px) {
    .more-btn {
        height: 42px;
        padding: 0 15px;
    }
    .more-btn b {font-size: 13px;}
    .arrow-btn {gap: 6px;}
}

/*main*/
.main .slider-controls > div {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    background: rgba(0,0,0,0.3);
    width: 50px;
    aspect-ratio: 1 / 1;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transition: all .2s;
}
.main .slider-controls .prev-btn {left: 15px;}
.main .slider-controls .prev-btn img {transform: rotate(90deg)}
.main .slider-controls .next-btn {right: 15px;}
.main .slider-controls .next-btn img {transform: rotate(-90deg)}

.main .product .product-slider .slider-controls > div {top: 35%;}
.main .banner .banner-slider:hover .slider-controls > div,
.main .product .product-slider:hover .slider-controls > div {opacity: 1;}

.main .banner ul {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}
.main .banner ul li {width: calc((100% - 30px)/3);}
.main .banner .banner-slider {
    overflow: hidden;
    position: relative;
}
.main .banner .banner-slider .swiper-slide a {
    display: block;
    aspect-ratio: 476 / 340;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.main .banner .banner-slider .swiper-slide a::after {
    content: "";
    background: linear-gradient(to top, #111, transparent);
    height: 75%;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
}
.main .banner .banner-slider > a {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 2;
    color: #fff;
    display: flex;
    align-items: end;
    justify-content: space-between;
    width: 100%;
    padding: 0 25px 25px;
}
.main .banner .banner-slider .txt {
    width: calc(100% - 42px);
    padding-right: 10px;
}
.main .banner .banner-slider .txt p {font-size: 13px;}
.main .banner .banner-slider .txt h3 {
    font-size: 24px;
    margin-top: 10px;
}
.main .banner .banner-slider .plus {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}
.main .product {margin: 40px 0;}
.main .product .title {
    display: flex;
    align-items: end;
    justify-content: space-between;
    margin-bottom: 20px;
}
.main .product .title h2 {
    font-size: 17px;
    font-weight: bold;
}
.main .product .product-slider a {
    display: block;
    text-align: center;
}
.main .product .product-slider .img {
    overflow: hidden;
    aspect-ratio: 1 / 1;
    background: #f5f5f5;
}
.main .product .product-slider .img span {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: block;
    width: 100%;
    height: 100%;
    transition: all .2s;
}
.main .product .product-slider .txt {padding: 0 20px;}
.main .product .product-slider p {
    font-size: 13px;
    color: #666;
    margin: 12px 0 8px;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    word-wrap:break-word;
    line-height: 1.4em;
    max-height: 2.8em;
    overflow: hidden;
    font-weight: 500;
}
.main .product .product-slider .subject {
    font-size: 15px;
    font-weight: bold;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    word-wrap:break-word;
    line-height: 1.4em;
    max-height: 2.8em;
    overflow: hidden;
}
.main .product .product-slider a:hover .img span {transform: scale(1.1)}
.main .contact {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.main .contact .img {
    width: 55%;
    height: 380px;
    overflow: hidden;
}
.main .contact .img .root_daum_roughmap {width: 100% !important;}
.main .contact .img .wrap_map {height: 380px !important;}
.main .contact .txt {
    width: 45%;
    padding-left: 60px;
}
.main .contact .txt h3 {
    font-size: 24px;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    padding-bottom: 18px;
    margin-bottom: 30px;
}
.main .contact .txt .inner {
    font-size: 15px;
    display: flex;
    flex-wrap: wrap;
    align-items: end;
    position: relative;
}
.main .contact .txt .inner .info {width: calc(100% - 160px)}
.main .contact .txt .inner .info ul li {margin-top: 25px;}
.main .contact .txt .inner .info ul li h4 {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 10px;
}
.main .contact .txt .inner .info ul li h4 b {font-weight: 600;}
.main .contact .txt .inner .info ul li.tel p b {
    font-weight: 800;
    margin-right: 10px;
}
.main .contact .txt .inner .map-btn li {margin-bottom: 10px;}
.main .contact .txt .inner .map-btn li:last-child {margin-bottom: 0;}
.main .contact .txt .inner .map-btn li a {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    border-width: 1px;
    border-style: solid;
    font-size: 15px;
    font-weight: bold;
    text-align: center;
    width: 160px;
    height: 48px;
    transition: all .2s;
}
.main .contact .txt .inner .map-btn li a:hover {opacity: 0.8;}
.main .contact .txt .symbol {
    position: absolute;
    top: 0;
    right: 0;
    width: 70px;
    height: 70px;
}
@media all and (max-width: 1024px) {
    .main .banner .banner-slider > a {padding: 0 20px 20px;}
    .main .banner .banner-slider .txt {width: calc(100% - 40px);}
    .main .contact .img {width: 100%;}
    .main .contact .txt {
        width: 100%;
        padding: 50px 0 0;
    }
}
@media all and (max-width: 991px) {
    .main .banner ul li {width: 100%;}
    .main .banner .banner-slider .swiper-slide a {aspect-ratio: 5 / 3}
}
@media all and (max-width: 767px) {
    .main .banner ul {gap: 10px;}
    .main .banner .banner-slider .txt h3 {
        font-size: 20px;
        margin-top: 0
    }
    .main .banner .banner-slider .plus {
        width: 28px;
        height: 28px;
    }
    .main .product .title {margin-bottom: 15px;}
    .main .product .product-slider .txt {padding: 0 10px;}
    .main .product .product-slider p {
        font-size: 12px;
    }
    .main .product .product-slider .subject {font-size: 15px;}
    .main .contact .img {height: 250px;}
    .main .contact .txt {padding-top: 20px;}
    .main .contact .txt h3 {
        font-size: 20px;
        padding-bottom: 8px;
        margin-bottom: 20px;
    }
    .main .contact .txt .inner {font-size: 13px;}
    .main .contact .txt .inner .info {width: 100%;}
    .main .contact .txt .inner .info ul li {margin-top: 20px;}
    .main .contact .txt .inner .info ul li h4 {margin-bottom: 5px;}
    .main .contact .txt .inner .info ul li.tel p b {
        font-size: 16px;
        margin-right: 5px;
    }
    .main .contact .txt .inner .map-btn {
        width: 100%;
        margin-top: 20px;
        display: flex;
        gap: 10px;
    }
    .main .contact .txt .inner .map-btn li {flex: 1;}
    .main .contact .txt .inner .map-btn li a {
        font-size: 13px;
        height: 40px;
        width: 100%;
    }
    .main .contact .txt .symbol {
        width: 40px;
        height: 40px;
    }
}
@media all and (max-width: 500px) {
    .main .banner .banner-slider .swiper-slide a {
        aspect-ratio: auto;
        height: 160px;
    }
}