/*sub-common*/
.sub-container {
    color: #111;
}
.title .tit {
    font-size: 4rem;
    font-weight: 700;
}
.title .txt {
    font-size: 6.5rem;
    font-weight: 800;
    color: #111;
    text-align: center;
    margin-bottom: 8rem;
    line-height: 1.3;
}
.title .txt span {
    color: var(--main-color);
    line-height: 1.6;
}
.txt-dot {
    padding-left: 1rem;
    position: relative;
}
.txt-dot::after {
    display: block;
    content: "";
    position: absolute;
    left: 0;
    top: 12px;
    width: 3px;
    height: 3px;
    background-color: var(--main-color);
    border-radius: 100%;
    transition: all 0.4s ease;
}

.bg-gray {
    background-color: var(--gray-color);
}

.sub-content {
    padding: 15rem 0 17rem;
}

.sub-content.bg-gray {
    padding: 14rem 0 20rem;
}

.sub-sec {
    margin-bottom: 16rem;
}

.title-box .tit {
    font-size: 6rem;
    line-height: 1.3;
    font-family: "Poppins", serif;
    color: #fff;
    font-weight: 900;
    text-transform: uppercase;
}

.title-box .tit span {
    color: var(--main-color);
}

.title-box .txt {
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.6;
    color: #fff;
}

.btn-box * {
    transition: all 0.4s ease;
}

.btn-box {
    display: inline-block;
    background-color: #171717;
    border-radius: 50px;
    font-size: 1.6rem;
    color: #fff;
    line-height: 1.6rem;
}

.btn-box a {
    display: inline-block;
    width: 100%;
    height: 100%;
    padding: 1.8rem 4.7rem;
    border-radius: 50px;
    font-size: 1.6rem;
    line-height: 1.6rem;
    color: #fff;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.list-btn {
    width: auto;
    margin: 0 auto;
    display: inline-block;
    background-color: #171717;
    border-radius: 50px;
    font-size: 1.6rem;
    color: #fff;
}

.list-btn a {
    display: inline-block;
    width: 100%;
    height: 100%;
    padding: 1.8rem 4.7rem;
    border-radius: 50px;
    font-size: 1.6rem;
    color: #fff;
    position: relative;
    text-decoration: none;
}

.list-btn a .f-box {
    gap: 2.5rem;
    align-items: center;
}


.btn-box a .f-box {
    gap: 2.5rem;
    align-items: center;
}

/* 가상요소: hover 시 채워질 레이어 */
.btn-box a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%; /* 처음에 왼쪽 바깥에 위치 */
  width: 100%;
  height: 100%;
  background:#FFCB04; /* hover 시 보일 색상 */
  z-index: 0;
  transition: left 0.4s ease;
}

/* 텍스트가 가상요소 위에 보이게 */
.btn-box a .btn-txt {
  position: relative;
  z-index: 1;
}

/* hover 시 가상요소가 왼쪽→오른쪽으로 이동 */
.btn-box a:hover::before {
  left: 0;
}

.ellipsis-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /* 보여줄 줄 수 */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/*sub-common//*/

/*breadcrumbs*/
.breadcrumbs {
    margin-bottom: 1rem;
}

.breadcrumbs .t-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transform: translate(0px, 0px);
    opacity: 1;
}

.breadcrumbs .t-nav li {
    display: flex;
    align-items: center;
    font-size: 1.6rem;
    color: #fff;
}

.breadcrumbs .t-nav li a {
    line-height: 1;
    font-weight: 600;
}

.breadcrumbs .t-nav li.active {
    color: #fff;
    font-weight: 500;
}
/*breadcrumbs//*/

/*sub-top*/
.sub-top {
    width: 100%;
    height: var(--sub-top-height);
    position: relative;
    overflow: hidden;
}
/*sub-top//*/

/*sub-visual*/
.sub-visual {
    height: 100%;
    width: 100%;
    position: relative;
}

.sub-visual .bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-size: cover !important;
    background-position: center;
    transform: scale(1.3, 1.3);
    transition: all 0.4s ease;
    animation: image-zoom-out02 4s 0.4s forwards;
    z-index: -1;
}

@keyframes image-zoom-out02 {
    0% {
        transform: scale(1.3, 1.3);
    }
    100% {
        transform: scale(1, 1);
    }
}

.sub-visual .info {
    align-items: center;
    justify-content: center;
    height: 100%;
}

.sub-visual .info .info-wrap .tit {
    font-size: 8rem;
    font-weight: 800;
    color: #ffffff;
    text-align: center;
    font-family: "Poppins", serif;
}

.sub-visual .sub-nav-wrap {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
}

.sub-visual .sub-nav-wrap .sub-nav {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(2px);
    z-index: 2;
    position: relative;
}

.sub-visual .sub-nav-wrap .sub-nav .menu {
    gap: 10rem;
    align-items: center;
    justify-content: center;
    transition: all 0.6s ease;
}

.sub-visual .sub-nav-wrap .sub-nav .menu li {
    color: #ffffff80;
    font-size: 2rem;
    font-weight: 600;
    transition: all 0.2s ease;
    padding: 1.9rem 0;
}

.sub-visual .sub-nav-wrap .sub-nav .menu li:hover {
    color: #ffffff;
}

.sub-visual .sub-nav-wrap .sub-nav .menu li.on {
    color: #ffffff;
}

.company .sub-visual .bg {
    background-image: url("../img/sub01-bg.jpg");
}

.ceo .sub-visual .bg {
    background-image: url("../img/ceo-bg.jpg");
}

.history-wrap .sub-visual .bg {
    background-image: url("../img/history-bg.jpg");
}

.certificate .sub-visual .bg {
    background-image: url("../img/certificate-bg.jpg");
}
.organization .sub-visual .bg {
    background-image: url("../img/organization-bg.jpg");
}

.location .sub-visual .bg {
    background-image: url("../img/location-bg.jpg");
}

.products .sub-visual .bg {
    background-image: url("../img/products-bg.jpg");
}
.news .sub-visual .bg {
    background-image: url("../img/news-bg.jpg");
}
.support .sub-visual .bg {
    background-image: url("../img/support-bg.jpg");
}

.technicalservice .sub-visual .bg {
    background-image: url("../img/technicalservice-bg.jpg");
}
/*sub-visual//*/

/*overview*/

.company .sub-content {
    padding: 14rem 0 0;
}

.overview .info-box {
   gap: 80px;
}

.overview .info-box .left h4 {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    line-height: 1.3;
}

.overview .info-box .left h5 {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.6;
}

.overview .info-box .right .txt {
    color: #666;
    font-size: 1.8rem;
    margin-bottom: 3rem;
}

.overview .info-box .right .txt:last-child {
    margin-bottom: 0;
}

.overview .overview_img {
    position: relative;
    margin-bottom: 5rem;
}

.overview .bg_logo {
    position: absolute;
    top: 0;
    left: 0;
    height: 17.3rem;
}

.overview .btn-row {
    width: 100%;
    display: flex;
    gap: 10px;
    margin-top: 5rem;
}

.overview .btn-row .btn {
    padding: 15px 20px;
    background-color: #FFCB04;
    border-radius: 10px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 11rem;
    font-weight: 700;
    font-size: 1.8rem;
}

.overview .btn__icon img {
    height: 2.4rem;
}

.overview .btn-row .btn--black {
    background-color: #000000;
}

.overview-info {
    background-color: #f5f5f5;
    padding: 17rem;
}

.overview-info .sub-title h4 {
    font-size: 5rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 8rem;
}

.overview-info .sub-title h4 span {
    color: #FFCB04;
}

.overview-info .sub-title p {
    float: right;
    color: #B7B7B7;
    font-weight: 300;
    font-size: 1.8rem;
}

.overview-info .stats-grid{
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 2.5rem;
    width: 100%;
}

.overview-info .stats-grid > .card{
    width: calc((100% - 12rem) / 3);
    min-width: 45rem;             
}


.overview-info .card{
    position: relative;
    min-height: 380px;
    padding: 34px 40px;
    border-radius: 1rem;
    display:flex;
    flex-direction: column;
    gap: 12px;
}

.overview-info .card__icon img{
  width: 48px; 
  height: 48px; 
  display:block;
}

.overview-info .card__body{ 
    margin-top: auto; 
}

.overview-info .card__body .label{
    font-size: 2rem !important;
    letter-spacing: .02em;
    margin-bottom: 8px;
    float: left !important;
    color: #FFCB04 !important;
    font-weight: 700 !important;
    display: contents !important;
}
.overview-info .value{
  font-size: 32px;
  font-weight: 800;
  color: var(--text);
  line-height: 1.1;
}
.overview-info .value--wrap{ word-break: keep-all; }
.overview-info .unit{
  font-size: 12px; font-weight:600; color:#666; margin-left: 6px;
}

.overview-info .card--feature{
  background:#fff;

}
.overview-info .card--feature .card__icon img{ 
}

.overview-info .card--feature .title-row{
  display:flex; 
  align-items: baseline; 
  gap:12px;
  margin-top: 2rem;
}
.overview-info .card--feature .big{
  font-size: 56px; 
  font-weight: 700; 
  line-height:1.05; 
  margin:0; 
}
.overview-info .card--feature .suffix{
  font-size: 18px; 
  font-weight: 700; 
  opacity: .9; 
  white-space: nowrap;
}

.overview-info .info-box .card {
    transition: background-color 0.4s ease;
}

.overview-info .info-box .card .card__icon img:nth-child(1) {
    display: inline-block;
}
.overview-info .info-box .card .card__icon img:nth-child(2) {
    display: none;
}

.overview-info .info-box .card.active {
    background: linear-gradient(126.57deg, #FFCB04 14.73%, #D7AA00 97.46%);
    color: #fff; 
}
.overview-info .info-box .card.active .label,
.overview-info .info-box .card.active .title-row .suffix {
    color: #fff !important;
}

.overview-info .info-box .card.active .card__icon img:nth-child(1) {
    display: none;
}
.overview-info .info-box .card.active .card__icon img:nth-child(2) {
    display: inline-block;
}

/*ceo*/
.ceo_wrap .title h4 {
    margin-bottom: 22.2rem;
}
.ceo-hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-around;
    border-radius: 200px;
    height: 314px;
    background: #f9f9f9;
    overflow: visible; 
    margin-top: 5rem;
    gap: 15rem;
}

.ceo-hero__bg {
    position: absolute;
    inset: 0;
    background: url(../img/ceo-img-bg.png) no-repeat center / cover;
    z-index: 0;
    height: 314px;
    border-radius: 19rem;
}

.ceo-hero__col {
    position: relative;
    z-index: 1; 
}

.ceo-hero__since {
    font-size: 5rem;
    font-weight: 600;
    margin: 0;
}

.ceo-hero__role {
    font-size: 1.8rem;
    color: #666;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.ceo-hero__title {
    font-size: 2.4rem;
    color: #FFCB04;
    margin: 0;
    font-weight: 600;
}

.ceo-hero__title strong {
    color: #111;
    font-weight: 600;
}

.ceo-hero__photo {
    position: absolute;
    left: 50%;
    bottom: 0; 
    transform: translateX(-50%) translateY(0); 
    z-index: 2; 
}

.ceo-hero__photo img {
    display: block;
    height: 45.6rem; 
    width: auto;
    object-fit: contain;
}

.ceo .info-box {
    text-align: center;
    margin-top: 10rem;
}

.ceo .info-box .tit {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 5rem;
}


.ceo .info-box .txt {
    font-size: 2rem;
    line-height: 1.6;
    margin-bottom: 4rem;
}


/*ceo//*/

/*overview//*/

/*history*/
.history .history_bg {
    position: relative;
    margin-bottom: 8rem;
}
.history .history_bg .history_bg_txt {
    font-weight: 500;
    font-size: 25px;
    line-height: 140%;
    letter-spacing: 0.5em;
    color: rgba(255, 255, 255, 0.5);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.history-style02 {
    padding-top: 5rem;
}
.history-style02 .history-year-group-box{
    position:relative; 
    display:flex; 
    justify-content:space-between;
}
.history-style02 .history-year-group-box .history-year-group-tit-box{
    width:59rem; 
}
.history-style02 .history-year-group-box .history-year-group-tit{
    position:relative; 
    color:rgba(0, 0, 0, 0.2); 
    font-size:8rem; 
    font-weight:700; 
    letter-spacing:-0.055em; 
    bottom: 1rem; 
    transition: var(--transition-custom);
}
.history-style02 .history-year-group-box .history-year-group-tit-box.active .history-year-group-tit {
    color: rgba(0, 0, 0, 1);
}

.history-style02 .history-year-item {
    position: relative;
    display: flex;
    justify-content: space-between;
    padding-bottom: 5.5rem;
}

.history-style02 .history-year-group-tit-box + .history-year-list-box {
    width: calc(100% - 59rem);
    padding-top: 1rem;
}

.history-style02 .history-year-list-box {
    width: 100%;
    position: relative;
}

.history-style02 .history-year-list-box:before {
    position: absolute;
    top: 22px;
    left: 11rem;
    width: 1px;
    bottom: -23px;
    background-color: #e1e1e1;
    content: "";
}

.history-style02 .history-year-item {
    position: relative;
    display: flex;
    justify-content: flex-start;
    padding-bottom: 5.5rem;
}

.history-style02 .history-year-item .history-year {
    position: relative;
    z-index: 1;
    color: #444;
    font-weight: 700;
    font-size: 2.4rem;
    letter-spacing: -0.055em;
    line-height: 1.25em;
    transition: var(--transition-custom);
    width: 11rem;
}
    
.history-style02 .history-month-box {
    position: relative;
    width: 100%;
}

.history-style02 .history-month-box .history-month-item {
    position: relative;
    display: flex;
    padding-left: 3rem;
    line-height: 1.4;
}

.history-style02 .history-month-box .history-month-item .history-detail-txt-con {
    width: 100%;
}

.history-style02 .history-month-box .history-month-item .history-detail-txt.only-txt {
    position: relative;
    padding-left: 2.6rem;
    display: flex;
    gap: 2rem;
}

.history-style02 .history-month-box .history-month-item .history-detail-txt {
    font-size: 1.8rem;
    font-weight: 400;
    letter-spacing: -0.055em;
    line-height: 1.66em;
    margin-bottom: 1.7rem;
    word-break: keep-all;
}

.history-style02 .history-month-box .history-month-item .history-detail-txt {
    color: #666;
    font-size: 1.8rem;
    font-weight: 400;
    letter-spacing: -0.055em;
    line-height: 1.66em;
    margin-bottom: 1.7rem;
    word-break: keep-all;
}

.history-style02 .history-month-box .history-month-item .history-detail-txt.only-txt .year {
    font-size: 1.8rem;
    font-weight: 700;
    color: #111;
    width: auto !important;
}

:root{
  --dot-size: 12px;
  --dot-inactive: #cfcfcf;   
  --dot-active: #FFC400;    
}

.history-style02 .history-year-list-box:before{
  position:absolute; 
  top:22px; 
  left:11rem; 
  width:1px; 
  bottom:-23px;
  background:#E2E2E2; 
  content:"";
}

.history-style02 .history-year-item{
  position:relative;
  display:flex; 
  justify-content:flex-start;
  padding-bottom:5.5rem;
}
.history-style02 .history-year-item::before{
  content:"";
  position:absolute;
  left: calc(11rem - var(--dot-size)/2);
  top: 0.9rem;
  width: var(--dot-size);
  height: var(--dot-size);
  background: var(--dot-inactive);
  border-radius: 50%;
  box-shadow: 0 0 0 2px #fff inset; 
  transition: transform .25s ease, background-color .25s ease, box-shadow .25s ease;
}

.history-style02 .history-year-item.is-active::before{
  background: var(--dot-active);
  transform: scale(1.12);
  box-shadow:  0 0 0 4px rgba(255,196,0,.25);
}

.history-style02 .history-year-group-box .history-year-group-tit{
  position:relative;
  color: rgba(0,0,0,.2);
  font-size:8rem; 
  font-weight:700; 
  letter-spacing:-0.055em;
  bottom:1rem; 
  transition: var(--transition-custom, color .3s ease);
  line-height: 1;
}
.history-style02 .history-year-group-box .history-year-group-tit-box.active .history-year-group-tit{
  color:#000;  
}

.history-style02 .list-box2::before {
    bottom: 65px !important;
}
/*history//*/

/*certification*/
.certificate .tit {
    font-size: 4.4rem;
    line-height: 1.4;
}

.certification_con {
    display: flex;
    flex-wrap: wrap;
    gap: 0 40px;
    width: 100%;
}

.certification_con > div {
    min-height: 40rem;
    text-align: center;
    width: calc(25% - 30px);
}

.certification_con h4 {
    text-align: center;
    font-size: 1.8rem;
    margin-top: 2.2rem;
}

.certification_con .certificate_img {
    background-color: #F9F9F9;
    padding: 40px 40px;
    border-radius: 10px;
    display: block;
    border: 3px solid transparent;
    transition: all 0.3s;
}

.certification_con .certificate_img img {
    background: #D8BF6D;
    padding: 8px;
    width: auto;
    display: block;
    margin: 0 auto;
    max-width: 100%;
    object-fit: contain;
}

.certification_con .certificate_img:hover {
    border: 3px solid #FFCB04;

}

/*certification//*/
.organization .sub-sec .title{
    margin-bottom: 9.4rem;
}
.organization .sub-sec .txt {
    margin-bottom: 5rem;
}

.organization .sub-txt {
    font-size: 1.8rem;
    text-transform: none;
    text-align: center;
    color: #666;
    line-height: 1.6;
}

.organization_img {
    max-width: 109.8rem;
    margin: 0 auto;
}

/*location*/
.location_cont {
    border-top: 2px solid #111;
}

.location_cont>.d-flex {
    display: flex;
    justify-content: space-between;
    margin: 7rem 0;
}

.location_cont .d-flex h4 {
    font-size: 5rem;
}

.location_cont .map iframe {
    border-radius: 10px;
}

.location_cont .map_info {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
}

.location_cont .map_info li {
    font-size: 1.8rem;
    color: #666;
    margin-bottom: 5px;
}

.location_cont .map_info li:last-child {
    margin-bottom: 0;
}

.location_cont .map_info .tit {
    min-width: 11rem;
    font-weight: 600;
    color: #111;
}

.location_cont .map_info .d-flex {
    display: flex;
}

.line {
    width: 100%;
    height: 1px;
    background-color: #E2E2E2;
}

/*location//*/


/**pd**/
.product-grid{
  gap: 26px;
  display: flex;
  flex-wrap: wrap;
}

.product-grid .product-card {
    width: calc(33.33333% - 17.5px);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 20px 37px;
    background: #F9F9F9;
    border-radius: 20px;
    transition: transform .2s ease, box-shadow .2s ease;
}

.product-grid .product-media {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    min-height: 23.7rem;
    height: 23.7rem;
    background-color: #fff;
    margin-bottom: 3.4rem;
    border-radius: 20px;
}
.product-grid .product-media img{
    max-width: 100%;
    object-fit: none;   
}

.product-grid .badge{
    display: inline-block;
    padding: 5px 15px;
    margin-bottom: 14px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    background: #FFCB04;           
    border-radius: 999px;
}

.product-grid .title {
    margin: 0;
    text-align: center;
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: .02em;
    color: #111;
    text-transform: uppercase;
}

.product-grid .txt {
    text-align: center;
    padding: 0;
    margin-top: 1rem;
}

.product-grid .txt .dot {
    display: flex; 
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: #666;
    margin: 0 10px; 
}

.product-grid .txt .dot::before {
    content: "";
    display: block;
    width: 4px;
    height: 4px;
    background: #FFCB04;
    border-radius: 50%;
    margin-right: 8px; 
}

.product-grid .br-20 {
    border-radius: 20px;
    object-fit: cover !important;
}

.pd-list .con-box {
    display: block !important;
}


/* ===== Modal Base ===== */

.ui-modal{ 
    position:fixed; 
    inset:0; 
    display:grid; 
    place-items:center; 
    z-index:9999;
    visibility:hidden; 
    opacity:0; 
    transition:opacity .2s ease, visibility .2s ease; 
}
.ui-modal.is-open{ 
    visibility:visible; 
    opacity:1; 
}
.ui-modal__overlay{ 
    position:absolute; 
    inset:0; 
    background:rgba(0,0,0,.45); 
}
.ui-modal__dialog{ 
    position:relative; 
    width:min(560px, 92vw); 
    max-height: 75vh;
    overflow: unset;
    background:#fff; 
    border-radius:2rem; 
    padding:24px; 
    box-shadow:0 20px 60px rgba(0,0,0,.2);
    transform:translateY(12px) scale(.98); 
    transition:transform .2s ease; 
    flex-direction: column;
    display: flex;
}

.ui-modal.is-open .ui-modal__dialog{ 
    transform:translateY(0) scale(1);
}

.ui-modal__close{ 
    position:absolute; 
    top: -17px;
    right: -10px;
    width:36px; 
    height:36px;
    border:0; 
    background:#1a1a1a; 
    border-radius:999px; 
    font-size:20px; 
    cursor:pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ui-modal__close:hover{ 
    background:#FFCB04;
}

.ui-modal-info img {
    border-radius: 2rem;
    margin-bottom: 2rem;
}

.ui-modal-txt h3 {
    background-color:#FFCB04;
    color: #fff;
    font-size: 1.6rem;
    text-align: center;
    text-transform: uppercase;
    padding: 0.7rem;
    border-radius: 2rem;
    margin-bottom: 2rem;
}

.ui-modal-txt ul .dot {
    color: #666;
    font-size: 1.4rem;
    display: flex; 
    align-items: center;
    margin: 0 10px; 
    gap: 5px;
}

.ui-modal-txt ul .dot::before {
    content: "";
    display: block;
    width: 3px;
    height: 3px;
    background: #FFCB04;
    border-radius: 50%;
    margin-right: 8px; 
}

.ui-modal-info {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
}

.ui-modal-txt {
  flex: 1;              
  min-height: 0;      
  overflow-y: auto;     
  padding-right: 8px;  
}

.ui-modal-txt::-webkit-scrollbar { 
    width:6px; 
}

.ui-modal [data-aos] { opacity:1 !important; transform:none !important; }



/* technicalservice */
.technicalservice .sub-content {
    padding-bottom: 0;
}
.technicalservice .small-tit {
    font-size: 2.3rem;
    font-weight: 500;
    color: #FFCB04;
    margin-bottom: 1.5rem;
    text-align: center;
}
.technicalservice .sub-txt {
    font-size: 1.8rem;
    color: #666;
    text-align: center;
    margin-bottom: 8rem;
}

.technicalservice .title .txt {
    margin-bottom: 4rem;
}

.technicalservice .info-box {
    margin: 0 auto;
    width: 125rem;
}

.technicalservice .tech-img {
    justify-content: space-between;
    gap: 142px;
}

.technicalservice .tech-img img {
    width: auto;
}

.technicalservice .tech-img img:first-child {
    height: 541px;
}

.technicalservice .tech-img img:last-child {
    height: 538px;
}

.technicalservice .ts-info {
    background-color: #f5f5f5;
    padding: 17rem 0;
}

.technicalservice .ts-info h4 {
    font-size: 5rem;
    margin-bottom: 8rem;
    text-align: center;
}

.technicalservice .ts-info .ts-box {
    gap: 30px;
    display: flex;
    flex-wrap: wrap;
}

.technicalservice .ts-info .ts-box .ts-card {
    width: calc(33.33333% - 20px);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform .2s ease, box-shadow .2s ease;
}

.technicalservice .ts-info .ts-box .ts-card img {
    border-radius: 2rem;
}

.technicalservice .ts-info .ts-box .ts-card .title {
    font-size: 2rem;
    margin-top: 2.5rem;
    font-weight: 700;
    text-align: center;
}

.technicalservice .pb-170 {
    padding-bottom: 17rem;
}



/*news*/
/* notice */

.notice .board-box {
    border-top: 1px solid #333333;
    margin-bottom: 8rem;
}

.notice .board-box a {
    display: flex;
    align-items: center;
    position: relative;
    padding: 0 3rem;
    height: 10rem;
    line-height: 10rem;
    box-sizing: border-box;
    border-bottom: 1px solid #f1f1f1;
    background-color: #fff;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -ms-transition: all 0.3s;
    transition: all 0.3s;
    gap: 2rem;
}

.notice .board-box a:hover {
    background-color: #f3f3f3;
}

.notice .board-box a .title {
    width: calc(100% - 20rem);
}

.notice .board-box a .title {
    display: inline-block;
    padding-right: 5px;
    overflow: hidden;
    width: 90%;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 1.714em;
    font-weight: 700;
    vertical-align: middle;
    color: #333333;
    letter-spacing: -0.25px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -ms-transition: all 0.3s;
    transition: all 0.3s;
    
}

.notice .board-box a .date {
    text-align: center;
    font-size: 1.5rem;
    color: #888888;
    letter-spacing: -0.025em;
}

.notice .board-box .tit-info {
  width: calc(100% - 14.5rem);
  display: flex;
  justify-content: flex-start;
}

.notice .board-box .tit-info .sub_t04 {
    padding-right: 5rem;
    color: #FFCB04;
    font-weight: 700;
    font-size: 1.4rem;
    opacity: unset !important;
}

.notice .board-box .date-arrow {
    width: 12rem;
    display: flex;
    align-items: center;
    gap: 2.5rem;
    justify-content: flex-end;
}

.view-page .info-box,
.view-page .info-box .info,
.prev-next-box .page-btn a {
    display: flex;
}

.view-page .attachment {
    background-color: #f9f9f9;
}

.view-page .attachment .bbs-file-list {
    padding: 1rem 2rem;
    border-bottom: 1px solid #eeeeee;
    display: flex;
    flex-wrap: wrap;
}

.view-page .attachment .bbs-file-list {
    gap: 1.4rem;
}

.view-page .attachment .bbs-file-list dt {
    font-weight: 600;
}

.view-page .attachment .bbs-file-list dd {
    color: #464646;
}

.view-page .ckeditor_area {
    margin-top: 6rem;
}

/*news//*/

.empty_board {
    background: transparent;
    border-radius: 0;
    text-align: center;
    padding: 10rem 0;
}

.empty_board img {
    width: 10rem;
    height: auto;
    margin: 0 auto 20px;
    min-height: auto;
    max-height: none;
}

.empty_board p {
    color: #888;
}

.view-page-wrap .sub-visual {
    display: none;
}

.view-page-wrap .breadcrumbs {
    margin-bottom: 1rem;
    display: none;
}

.view-page .top-box {
    text-align: center;
    margin-bottom: 6rem;
}

.view-page .top-box .category {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 1.6rem;
}

.view-page .top-box .day {
    font-size: 1.8rem;
    color: var(--color-g-text);
    font-weight: 400;
}

.view-page .tit-info-wrap {
    padding: 2rem;
    border-top: 1px solid #222222;
    border-bottom: 1px solid #eeeeee;
}

.view-page .tit-info-wrap .tit-box {
    margin-bottom: 1.6rem;
}

.view-page .tit-info-wrap .tit-box .tit {
    font-size: 3rem;
}

.view-page .tit-info-wrap .info-box .info {
    margin-right: 2.5rem;
}

/* .view-page .info-box img {
    max-width: 50%;
    margin: auto;
} */

.view-page .tit-info-wrap .info-box .info .txt {
    margin-right: 0.6rem;
}

.view-page .tit-info-wrap .info-box .info .txt span {
    font-weight: 600;
}

.view-page .tit-info-wrap .file-box {
    margin-top: 1rem;
}

.view-page .tit-info-wrap .file-box a {
    gap: 0.6rem;
}

.view-page .tit-info-wrap .file-box img {
    width: 1.4rem;
}

.view-page .list-move-btn {
    margin: auto;
    text-align: center;
}

/* .view-page .list-move-btn .btn-box {
  background-color: #161616;
}

.view-page .list-move-btn .btn-box .txt,
.view-page .list-move-btn .btn-box span {
  color: #ffffff;
} */

.view-page .attachment {
    background-color: #f9f9f9;
}

.view-page .attachment .bbs-file-list {
    padding: 1rem 2rem;
    border-bottom: 1px solid #eeeeee;
}

.view-page .attachment .bbs-file-list {
    gap: 1.4rem;
}

.view-page .attachment .bbs-file-list dt {
    font-weight: 600;
}

.view-page .attachment .bbs-file-list dd {
    color: #464646;
}

.view-page .ckeditor_area {
    margin-top: 6rem;
}

/*page-btn*/

.prev-next-list-wrap {
    margin-top: 6rem;
    margin-bottom: 6rem;
}

.prev-next-box .page-btn {
    border-top: 1px solid #eeeeee;
    border-bottom: 1px solid #eeeeee;
}

.prev-next-box .page-btn:nth-child(even) {
    border-top: 0;
}

.prev-next-box .page-btn a {
    padding: 2rem;
    align-items: center;
}

.prev-next-box .page-btn .txt {
    width: 10rem;
}

.prev-next-box .page-btn .info {
    width: calc(100% - 10rem);
    color: var(--color-text3);
}

.prev-next-box .page-btn a:hover .info {
    color: var(--color-text2);
}

.prev-next-list-wrap .list-box {
    text-align: center;
    margin-top: 4rem;
}
/*page-btn//*/
/*view-page//*/

/*inquiry*/
.inquiry .con-box {
    gap: 4rem;
}

.inquiry .con-box > div {
    width: 50%;
}

.inquiry .con-box .info-box {
    margin-top: 4rem;
}

.inquiry .mail-box {
    margin-top: 5rem;
}

.inquiry .mail-box .tit {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.inquiry .mail-box .info {
    align-items: center;
    gap: 1rem;
}

.inquiry .mail-box .info .txt {
    font-size: 1.8rem;
    color: #4d4d4d;
}

.inquiry .mail-box .info img {
    /* max-height: 2.6rem; */
    width: auto;
}

.inquiry .form-box-wrap .list-wrap {
    flex-direction: column;
    gap: 1.2rem;
}

.inquiry .form-box-wrap .notification {
    text-align: right;
    margin-bottom: 1rem;
}

.inquiry .form-box-wrap .notification .txt {
    font-size: 1.6rem;
}

.inquiry .form-box-wrap .notification .txt span {
    color: var(--main-color);
}

.inquiry .form-box-wrap .form-box {
    background-color: #ffffff;
    border: 1px solid #eeeeee;
    padding: 1rem 2rem;
    width: 100%;
    min-height: 6rem;
}

.inquiry .info-box .tit {
    color: #111;
}

.inquiry .form-box-wrap .info-box > .f-box {
    gap: 2rem;
    flex-wrap: wrap;
}

.inquiry .form-box-wrap .f-box {
    align-items: center;
}

.inquiry .form-box-wrap .f-box.f-start {
    align-items: flex-start;
}

.inquiry .form-box-wrap .f-box.h-auto {
    height: auto;
}

.inquiry .form-box-wrap .form-box .l-box {
    min-width: 18rem;
}

.inquiry .form-box-wrap .form-box .r-box {
    width: calc(100% - 10rem);
}

.inquiry .form-box-wrap .form-box .l-box .txt {
    font-size: 1.6rem;
    font-weight: 500;
}

.inquiry .form-box-wrap .form-box .l-box .essential span {
    color: var(--main-color);
}

.inquiry .form-box-wrap .form-box .r-box input,
.inquiry .form-box-wrap .form-box .r-box textarea {
    width: 100%;
    border: none;
}

.inquiry .form-box-wrap .form-box .r-box textarea {
    height: 12rem;
    resize: vertical;
}

.inquiry .form-box-wrap .nice-select.open .list {
    width: 100%;
}

/* .inquiry .form-box-wrap .nice-select {
    line-height: inherit;
} */

.inquiry .form-box-wrap .nice-select .current {
    font-size: 1.6rem;
    font-weight: 500;
}

.inquiry .form-box-wrap .agree-btn-wrap {
    margin-top: 1.2rem;
    justify-content: space-between;
}

.inquiry .agree-check .checkwrap {
    cursor: pointer;
}
.inquiry .agree-check input {
    -webkit-appearance: none;
    -webkit-border-radius: 0;
}
.inquiry .agree-check .checkwrap .material-icons {
    vertical-align: middle;
    font-size: 2.2rem;
    margin-top: -0.2rem;
}
.inquiry .agree-check .checkwrap > input[type="checkbox"] {
    margin: 0;
}

.inquiry .agree-check .checkwrap > p {
    font-size: 1.6rem;
    display: inline-block;
    margin-left: 0.5rem;
}

.inquiry .agree-check .checkwrap {
    cursor: pointer;
    display: flex;
    align-items: center;
}
.inquiry .agree-check .checkwrap .material-icons {
    vertical-align: middle;
    font-size: 2.6rem;
    margin-top: -0.2rem;
    color: #d3d3d3;
}
.inquiry .agree-check .checkwrap > input[type='checkbox'] {
    margin: 0;
}
.inquiry .agree-check .checkwrap > input[type='checkbox']:checked + .material-icons {
    color: var(--main-color);
}
.inquiry .agree-check .checkwrap > p {
    font-size: 1.6rem;
    display: inline-block;
    margin-left: 0.5rem;
    color: #6E6E6E;
}

.inquiry .btn-box {
    background-color: var(--main-color);
    border: 2px solid var(--main-color);
}

.inquiry .btn-box a {
    overflow: clip;
}

.inquiry .btn-box a::before {
    content: none;
}

.inquiry .btn-box .btn-txt,
.inquiry .btn-box span {
    color: #ffffff;
}

.inquiry .privacy-policy {
    width: 100%;
    background: #ffffff;
    color: #222;
    padding: 1rem 2rem;
    margin-top: 1.2rem;
    border: 1px solid #eeeeee;
}
.inquiry .privacy-policy .a-txt > h4 {
    font-size: 1.6rem;
    font-weight: 700;
    border-bottom: 1px solid #888;
    padding-bottom: 1.5rem;
}

.inquiry .privacy-policy .a-txt .txt-wrap {
    margin: 2rem 0;
    overflow-y: scroll;
    height: 10rem;
}
.inquiry .privacy-policy .a-txt .txt-wrap .txt-box .tit {
    font-size: 1.4rem;
    opacity: 0.8;
    margin-bottom: 0.5rem;
}
.inquiry .privacy-policy .a-txt .txt-wrap .txt-box .sub {
    font-size: 1.4rem;
    opacity: 0.4;
}
.inquiry .privacy-policy .a-txt .txt-wrap .txt-box + .txt-box {
    margin-top: 3rem;
}

.inquiry .privacy-policy .a-txt .txt-wrap {
    overscroll-behavior: contain;
    /* 바깥 페이지 스크롤로 빠져나가는 것을 막음 */
    -webkit-overflow-scrolling: touch;
    /* iOS 부드러운 스크롤 */
}
/*inquiry//*/

/*모바일 드롭다운*/
.mobile-dropdown-toggle {
    display: none;
    padding: 12px 16px;
    backdrop-filter: blur(17px);
    -webkit-backdrop-filter: blur(17px);
    background: rgba(0, 0, 0, 0.15);
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    position: relative;
}

.mobile-dropdown-toggle {
    display: none;
    padding: 12px 16px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: rgba(0, 0, 0, 0.15);
    color: #fff;
    font-weight: 600;
    font-size: 1.8rem;
    border-radius: 0;
    cursor: pointer;
    position: relative;
    user-select: none;
}

.mobile-dropdown-toggle::after {
    content: "";
    position: absolute;
    top: 48%;
    right: 16px;
    transform: translateY(-50%) rotate(45deg);
    width: 8px;
    height: 8px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transition: transform 0.3s ease;
}

.mobile-dropdown-toggle.open::after {
    transform: translateY(-50%) rotate(-135deg);
}
/*모바일 드롭다운//*/
