@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100;300;400;500;700;900&display=swap");

/* =========================================
   COMFORT KANG 브랜드 커스텀
   ========================================= */

/* 로고 텍스트 폴백 (이미지 없을 때) */
/* 로고 — 레퍼런스 실측: cap 17.3px / 전체폭 215px */
.logo_txt {
    font-family: 'Pretendard', sans-serif;
    font-size: 24px;
    font-weight: 300;
    letter-spacing: 0.07em;
    color: #fff;
    white-space: nowrap;
    display: block;
    line-height: 1;
}
#hd_wrapper.sub_header .logo_txt { color: #fff; }

/* -----------------------------------------------------------------
   Family Site — 헤더와 분리된 플로팅, 모든 페이지 공통 노출
   화면 우측 세로 중앙 고정 배치
   바 #8A8987 h30 / 항목 #EEEEEE h28 / 항목 사이 2px 투명 간격
   ----------------------------------------------------------------- */
.family_site_wrap {
    position: fixed;
    top: 50%;                        /* 화면 세로 중앙 */
    right: 40px;                     /* 우측 고정 */
    transform: translateY(-50%);
    width: 130px;
    z-index: 900;
    font-family: 'Pretendard', sans-serif;
}
.family_site_btn {
    display: block;
    width: 100%;
    height: 30px;
    line-height: 30px;
    padding: 0;
    background: #a7a7a7;
    border: 0;
    color: #fff;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.01em;
    text-align: center;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.2s;
}
.family_site_btn:hover { background: #7c7b79; }

.family_site_list {
    list-style: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.family_site_list.is-open { max-height: 120px; }

.family_site_list li + li { margin-top: 2px; }   /* 항목 사이 2px 투명 간격 */
.family_site_list li a {
    display: block;
    height: 28px;
    line-height: 28px;
    background: #EEEEEE;
    color: #111;
    text-align: center;
    transition: background 0.15s;
}
.family_site_list li a:hover { background: #e2e2e2; }

/* 로고체(세리프) 사용하지 않고 일반 영문 텍스트로 통일 */
.family_site_list .fs_maru,
.family_site_list .fs_sangjae {
    font-family: inherit;
    font-weight: 400;
    font-size: 11px;
    letter-spacing: 0.035em;
}

@media screen and (max-width: 1200px) {
    .family_site_wrap { right: 16px; width: 110px; }
    .family_site_btn { font-size: 12px; height: 26px; line-height: 26px; }
    .family_site_list li a { height: 24px; line-height: 24px; }
}

/* =========================================
   1. 초기화 및 공통 설정
   ========================================= */
html, body {

   line-height: 1.3;
    font-family: "pretendard", "Noto Sans KR", sans-serif;
    color: #333;
    margin: 0 !important;
    padding: 0 !important;
    background-color: #fff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
    justify-content: space-between;
}

ul, li { list-style:none; margin:0; padding:0; }
a { text-decoration:none; color:inherit; }

#wrapper { margin: 0 !important; padding: 0 !important; position: relative; }
#container { width: 100% !important; padding: 0 !important; }

/* =========================================
   2. 헤더 디자인
   ========================================= */
#hd_wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 85px;                                 /* 거대마루 원본 기준으로 축소 */
    background-color: #a7a7a7a7;                  /* 회색 반투명 */
    z-index: 1000;
    border-bottom: 0;
    display: flex;
    justify-content: center;
    transition: all 0.3s;
}

/* 거대마루 원본과 동일: 로고 좌측 / 메뉴 화면 중앙 / SNS 우측 */
.hd_inner {
    width: 100%;
    max-width: 95%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}

.logo { margin: 0; }
.logo a {display: block;width: 140px;}
.logo img {
    width: 100%; height: auto; display: block;
    filter: brightness(0) invert(1);
}

.gnb_wrap {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
}
.gnb_ul {display: flex;align-items: center;justify-content: center;width: 100%;gap: 60px;}
.gnb_ul li a {
    font-size: 15px;           /* 거대마루 원본 기준으로 축소 */
    color: #fff;
    font-weight: 200;
    text-transform: uppercase;
    letter-spacing: -0.1px;
    transition: opacity 0.3s;
}
.gnb_ul li a:hover { opacity: 0.7; }

.sns_wrap {display: flex;gap: 20px;align-items: center;}   /* 실측 아이콘 간격 20px */
.sns_icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;               /* 거대마루 원본 기준으로 축소 */
    height: 24px;
    color: #fff;
    font-weight: bold;
    font-size: 14px;
    transition: opacity 0.3s;
}
.sns_icon:hover { opacity: 0.7; }
.sns_icon img { width: 100%; height: 100%; object-fit: contain; }

.btn_mobile_menu { display: none; }

/* 서브 페이지용 헤더 스타일 */
#hd_wrapper.sub_header {background-color: #afafaf;}
/* 컴포트강: 서브페이지도 헤더 텍스트/아이콘 흰색 유지 (레퍼런스 004/007/013/016) */
#hd_wrapper.sub_header .logo img { filter: brightness(0) invert(1); }
#hd_wrapper.sub_header .gnb_ul li a {color: #fff !important;font-weight: 400;}   /* 굵기는 거대마루 원본과 동일 */
#hd_wrapper.sub_header .sns_icon { color: #fff !important; }
#hd_wrapper.sub_header .btn_mobile_menu span { background: #fff !important; }
@media (min-width: 768px) {
    .pc_n {display: none;}
}
@media (max-width: 768px) {
    .mn {display: none;}
}
/* =========================================
   3. 메인 페이지 전용 콘텐츠 (Visual)
   ========================================= */
.m_main_visual {
    width: 100%;
    
    /* 구형 브라우저를 위한 안전 장치 */
    height: 100vh; 
    
    /* ▼ 핵심 수정: 모바일 실제 화면 높이에 딱 맞춤 (주소창 제외) */
    height: 100vh; 
    
    position: relative;
    overflow: hidden;
    background-color: #333;
    margin-top: 0;
}

/* 슬라이드 내부 이미지도 부모 높이를 꽉 채우도록 설정 */
.m_main_visual .swiper-slide {
    background-position: center center;
    background-size: cover; /* 이미지를 화면 꽉 차게 조절 (비율 유지) */
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
}
.m_main_visual::after {
    content: ''; position: absolute; top:0; left:0; width:100%; height:100%;
    background: rgba(0,0,0,0.15); z-index: 1; 
	pointer-events: none;
}

/* .news_box / .main_copy 스타일은 index.php 의 <style> 에서
   레퍼런스 001 실측값으로 정의합니다. (중복 규칙 제거) */
/* =========================================
   4. About Page
   ========================================= */
.about_wrapper {
    width: 100%;
    max-width: 1920px;       /* 거대마루 원본 기준 */
    margin: 0 auto;
    padding-top: 180px;
    padding-bottom: 180px;
    box-sizing: border-box;
}

/* 3-1. 타이틀 & 라인 — 거대마루 원본과 동일화 */
.page_header_title {
    max-width: 1400px;
    margin: 0 auto 80px;
    width: 95%;
}
.page_header_title h2 {
    font-size: 22px;
    font-weight: 400;
    color: #111;
    margin-bottom: 15px;
    letter-spacing: -1.2px;
	margin-left: 15px;
}
.title_line {
    width: 100%;
    height: 1.5px;
    background: #a7a7a7;
}

/* 3-2. 인트로 텍스트 */
.intro_section {
    max-width: 1040px;
    margin: 0 auto 80px;
    text-align: center;
    width: 95%;
}
.intro_section .sub_tit {
    display: block;
    font-size: 16px; /* 서브 타이틀 작게 */
    color: #666;
    margin-bottom: 4px;
    font-weight: 300;
    letter-spacing: -0.2px;
}
.intro_section .main_tit {
    font-size: 28px; /* 메인 타이틀 강조 */
    font-weight: 600;
    color: #222;
    margin-bottom: 70px;
    letter-spacing: 0.2px;
}
.intro_section .desc_box p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 34px;
    word-break: keep-all;
    text-align: center;
    letter-spacing: -0.3px;
}

/* 3-3. QUALIFICATION (좌우 분할 섹션) */
.qual_section {
    display: flex;
    width: 95%;
    height: 540px;
    margin: 0 auto 200px;
    max-width: 1280px;
}

.qual_box {
    flex: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
    background-size: cover;
    background-position: center;
    color: #fff;
}

.qual_box::before {
    content: '';
    position: absolute;
    top:0;
    left:0;
    right:0;
    bottom:0;
    background: rgba(0,0,0,0.6);
    z-index: 1;
}
.qual_content {
    position: relative;
    z-index: 2;
}

.qual_left {
    background-image: url('/img/sub/qual_left_bg.jpg'); 
    align-items: flex-end;
    text-align: right;
}
.qual_right {
    background-image: url('/img/sub/qual_right_bg.jpg'); 
    align-items: flex-start;
    text-align: left;
}

.qual_left .label {
    display: block;
    font-size: 18px;
    letter-spacing: 2px;
    opacity: 1;
    margin-bottom: 4px;
    font-weight: 200;
}
.qual_left .tit {
    font-size: 30px; /* 제목 조금 더 키움 */
    font-weight: 500;
    margin: 0;
    letter-spacing: -1px;
}
.qual_right .text {
    font-size: 15px;
    line-height: 1.6;
    opacity: 1;
    max-width: 500px;
    font-weight: 300;
    letter-spacing: -0.2px;
}


/* 3-4. INFO 섹션 (폰트 사이즈 정밀 조정) */
.info_section_wrapper {
    max-width: 1280px;
    margin-bottom: 200px;
    margin-top: 120px;
    margin-left: auto;
    margin-right: auto;
}

/* INFO 타이틀: 작고 깔끔하게 */
.info_outer_title {
    text-align: center;
    font-size: 20px; /* 너무 크지 않게 */
    font-weight: 500;
    color: #222;
    letter-spacing: 2px; /* 자간 넓게 */
    margin-bottom: 24px;
}

.info_banner {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    height: 540px;
    background-image: url('/img/sub/info_bg.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-end;
}

.info_banner::before {
    content: '';
    position: absolute;
    top:0; left:0; width:100%; height:100%;
    background: rgba(0,0,0,0.45);
}

.info_inner {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 0 60px 60px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.info_left_group {
    display: flex;
    gap: 100px; /* 간격 넓게 */
    text-align: left;
}

/* 배너 내부 소제목 (Opening Hour 등) */
.info_col h4 {
    color: #fff;
    font-size: 15px; /* 작고 심플하게 */
    font-weight: 200;
    margin-bottom: 20px;
    opacity: 0.9;
}

/* 배너 내부 본문 텍스트 */
.info_col p {
    font-size: 15px; /* 본문 사이즈 13px */
    line-height: 1.6;
    margin: 0;
    color: #bbb;
    font-weight: 300; /* 얇은 폰트 */
}

/* 지역명 (BUSAN/DAEGU) */
.info_col .loc {
    color: #bbb;
    font-weight: 200;
    font-size: 14px; /* 지역명은 약간 강조 */
    /* margin-bottom: 6px; */
}
.info_col .mt-20 { margin-top: 30px; } /* 지역 간격 벌림 */
.info_col .sub_txt { font-size: 11px; opacity: 0.7; font-weight: 300; }
.info_col .contact_txt {color: #ddd;font-weight: 100;}

.info_right_group {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.down_label {
    display: block;
    color: #fff;
    font-size: 14px;
    margin-bottom: 20px;
}
.btn_catalog_outline {
    display: inline-block;
    border: 1px solid rgba(255,255,255,0.6);
    color: #fff;
    padding: 10px 35px; /* 버튼 내부 여백 조정 */
    font-size: 13px;
    font-weight: 100;
    transition: 0.3s;
}
.btn_catalog_outline:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
}


/* 3-5. 하단 카드 섹션 (폰트 사이즈 조정) */
.bottom_cards {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    width: 95%;
}
.card_item {
    text-align: center;
}

/* 카드 제목 (BUSAN, DAEGU...) */
.card_tit {
    display: block;
    font-size: 18px; /* 적당한 크기 */
    font-weight: 300;
    color: #222;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.card_item .img_w {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    margin-bottom: 15px;
}
.card_item .img_w img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
    display: block;
}


/* 카드 주소 */
.card_addr {
    font-size: 16px; /* 작고 깔끔하게 */
    color: #555; /* 연한 회색 */
    font-weight: 200;
    letter-spacing: -0.5px;
}


/* =========================================
   4. 반응형 (Mobile / Tablet)
   ========================================= */
@media screen and (max-width: 1200px) {
    .hd_inner {padding: 0;height: 80px;max-width: 95%;}
    #hd_wrapper {height: 80px;background-color: #a7a7a7a7;}
    .logo a { width: 140px; }
    .logo_txt { font-size: 19px; }
    .gnb_wrap, .sns_wrap { display: none; }
    .btn_mobile_menu { display: block; width: 24px; height: 24px; position: relative; cursor: pointer; }
    .btn_mobile_menu span { display: block; width: 100%; height: 2px; background: #fff; position: absolute; left: 0; transition: 0.3s; }
    .btn_mobile_menu span:nth-child(1) { top: 6px; }
    .btn_mobile_menu span:nth-child(2) { top: 11px; }
    .btn_mobile_menu span:nth-child(3) { top: 16px; }
}

@media screen and (max-width: 768px) {
    .about_wrapper {padding-top: 160px;padding-bottom: 120px;}
    .info_section_wrapper {margin-bottom: 120px;}
    .intro_section {margin-bottom: 60px;}
    .intro_section .main_tit {font-size: 22px;margin-bottom: 50px;} /* 모바일 타이틀 줄임 */
    
    .qual_section {
        flex-direction: column;
        height: auto;
        width: 100%;
		margin-bottom: 120px;
    }
    .qual_box {
        padding: 40px 20px;
        min-height: 400px;
        align-items: center;
        text-align: center;
        max-width: 90%;
        margin: 0 auto;
        width: 100%;
    }
    .qual_left .tit { font-size: 24px; } /* 모바일 폰트 조정 */
    .qual_right .text { text-align: center; -ms-word-break: keep-all;
    word-break: keep-all;}
    
    .info_banner {
        height: auto;
        width: 90%;
    }
    .info_inner {
        flex-direction: column;
        padding: 40px 20px;
        align-items: center;
        text-align: center;
    }
    .info_left_group {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 40px;
        width: 100%;
    }
    .info_col p span {
        display: block;
        width: auto;
        margin-bottom: 5px;
    }
    .info_right_group {
        width: 100%;
        align-items: center;
        border-top: 1px solid rgba(255,255,255,0.1);
        padding-top: 30px;
    }
    
    .bottom_cards {
        grid-template-columns: 1fr;
        gap: 50px;
        max-width: 90%;
    }
	.intro_section .desc_box p {text-align: center;font-size: 13.5px;line-height: 1.7 !important;}
}

/*모바일 헤드 /*

/* =========================================
   5. 모바일 메뉴 (Mobile Header & Menu) - 고급형 애니메이션 적용
   ========================================= */

/* 5-1. 모바일 메뉴 전체 래퍼 (기본 숨김) */
.mobile_menu_wrap {
    visibility: hidden; /* display:none 대신 visibility 사용 (애니메이션 위해) */
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 9999;
    transition: visibility 0.4s; /* 닫힐 때 자연스럽게 사라지도록 딜레이 */
}

/* 활성화 클래스 (.on) */
.mobile_menu_wrap.on {
    visibility: visible;
}

/* 5-2. 배경 (Dim 처리) - 부드러운 페이드 인/아웃 */
.mobile_bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(3px); /* 배경 블러 효과 */
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
}
.mobile_menu_wrap.on .mobile_bg {
    opacity: 1;
}

/* 5-3. 실제 메뉴 박스 (슬라이드 애니메이션) */
.mobile_menu_inner {
    position: absolute;
    top: 0; right: 0;
    width: 85%; /* 화면의 85% */
    max-width: 400px;
    height: 100%;
    background: #fff;
    z-index: 2;
    padding: 0; /* 패딩 제거 (상단 버튼 위치 정밀 제어 위해) */
    box-shadow: -5px 0 20px rgba(0,0,0,0.1);
    
    /* 슬라이드 효과: 처음엔 오른쪽 화면 밖에 위치 */
    transform: translateX(100%);
    /* 가속도 곡선 (cubic-bezier)를 사용하여 쫀득한 느낌 */
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
}
.mobile_menu_wrap.on .mobile_menu_inner {
    transform: translateX(0);
}

/* 5-4. 상단 영역 & 닫기 버튼 (햄버거 버튼과 위치 1:1 매칭) */
.mobile_top {
    height: 60px; /* 모바일 헤더 높이와 동일하게 설정 */
    display: flex;
    align-items: center; /* 수직 중앙 정렬 */
    justify-content: flex-end; /* 오른쪽 정렬 */
    padding-right: 5%; /* 헤더의 95% 너비 설정과 맞춤 (2.5% 좌우 여백이면 2.5%로 설정) */
    /* 만약 헤더가 max-width 95%라면 여기도 우측 여백을 맞춰야 함 */
    box-sizing: border-box;
    margin-bottom: 20px;
}

/* 닫기 버튼 스타일 */
.btn_close_menu {
    border: none;
    background: none;
    width: 24px; height: 24px; /* 햄버거 버튼 사이즈와 동일 */
    position: relative;
    cursor: pointer;
    padding: 0;
    z-index: 10;
    /* 햄버거 버튼 위치 보정 (필요시 top/right 미세 조정) */
    margin-right: 0; 
}

/* X 아이콘 애니메이션 */
.btn_close_menu span {
    display: block;
    width: 100%; height: 2px;
    background: #111;
    position: absolute;
    top: 50%; left: 0;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* 초기 상태 (닫힘 모양 준비) */
.btn_close_menu span:nth-child(1) { transform: translateY(-50%) rotate(0); }
.btn_close_menu span:nth-child(2) { transform: translateY(-50%) rotate(0); }

/* 메뉴가 열렸을 때 X로 변신 */
.mobile_menu_wrap.on .btn_close_menu span:nth-child(1) { transform: translateY(-50%) rotate(45deg); }
.mobile_menu_wrap.on .btn_close_menu span:nth-child(2) { transform: translateY(-50%) rotate(-45deg); }


/* 5-5. GNB 리스트 디자인 */
.mobile_gnb {
    flex: 1;
    overflow-y: auto;
    padding: 0 30px; /* 내부 여백 */
}
.mobile_gnb ul {
    padding-top: 10px;
}
.mobile_gnb li a {
    display: block;
    padding: 22px 0;
    border-bottom: 1px solid #f5f5f5;
    font-size: 20px;
    color: #111;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    transition: 0.3s;
    font-family: "pretendard", sans-serif;
}
/* 호버 효과 */
.mobile_gnb li a:hover {
    color: #d1b38c;
    padding-left: 10px;
    border-bottom-color: #d1b38c;
}

/* 5-6. 하단 SNS 영역 */
.mobile_sns_wrap {
    padding: 30px;
    border-top: 1px solid #eee;
    background: #fbfbfb;
    display: flex;
    gap: 15px;
    justify-content: center;
}
.mobile_sns_icon {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}
.mobile_sns_icon img {
    width: 20px; height: auto;
    transition: 0.3s;
}
.mobile_sns_icon:hover {
    background: #d1b38c;
    border-color: #d1b38c;
}
.mobile_sns_icon:hover img {
    filter: brightness(0) invert(1); /* 아이콘 흰색으로 변경 */
}

/* 반응형 위치 보정 (화면 크기에 따라 햄버거 버튼 위치가 달라질 수 있으므로) */
@media screen and (max-width: 1200px) {
    .mobile_top {
        padding-right: 2.5%; /* 헤더의 max-width: 95% 일 때 우측 여백 계산 (100-95)/2 */
        /* 만약 헤더가 padding: 0 20px 이라면 여기도 padding-right: 20px 로 변경 */
    }

}
/* =================================================================
   헤더 색상 제어 (CSS Filter 사용)
   ================================================================= */

/* -----------------------------------------------------------------
   1. 메인 페이지 (기본 상태) -> 흰색(White)
   ----------------------------------------------------------------- */
   
/* 로고 및 SNS 아이콘 이미지: 강제로 흰색으로 변경 */
#hd_wrapper .logo img,
#hd_wrapper .sns_icon img {
    /* 이미지를 검게 만듦(0) -> 색상 반전(invert 1) = 흰색 */
    filter: brightness(0) invert(1); 
    -webkit-filter: brightness(0) invert(1); /* 크롬/사파리 호환 */
}

/* 텍스트 메뉴 색상: 흰색 */
#hd_wrapper .gnb_ul li a {
    color: #fff;
    width: 100px;   /* 거대마루 원본과 동일 */
}

/* 모바일 메뉴 버튼(선 3개): 흰색 배경 */
#hd_wrapper .btn_mobile_menu span {
    background-color: #fff;
}


/* -----------------------------------------------------------------
   2. 서브/게시판 페이지 (.sub_header 클래스가 있을 때) -> 검은색(Black)
   ----------------------------------------------------------------- */

/* 컴포트강: 서브페이지도 흰색 유지 */
#hd_wrapper.sub_header .logo img,
#hd_wrapper.sub_header .sns_icon img {
    filter: brightness(0) invert(1);
    -webkit-filter: brightness(0) invert(1);
}

#hd_wrapper.sub_header .gnb_ul li a {
    color: #fff;
    font-weight: 400;   /* 거대마루 원본과 동일 */
}

#hd_wrapper.sub_header .btn_mobile_menu span {
    background-color: #fff;
}

#hd_wrapper.sub_header {
    border-bottom: 0;
}


.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}



/* =========================================================
   About 2분할 패널 — 거대마루(.qual_box)와 동일하게 세로 가운데 정렬,
   좌우 라벨/제목/본문 높이를 고정해 시작 위치까지 일치시킴
   (about.php 인라인 <style> 보다 뒤에 적용되도록 특이성을 높임)
   ========================================================= */
.about_wrapper .ck_split_box {
    justify-content: center;          /* 거대마루 원본과 동일: 세로 가운데 */
    padding: 60px;                    /* 거대마루 .qual_box 와 동일 */
}
.about_wrapper .ck_split .label {
    display: block;
    height: 26px;                     /* 영문/한글 라벨 높이 통일 */
    line-height: 26px;
    margin-bottom: 4px;
}
.about_wrapper .ck_split .tit {
    line-height: 1.25;
    min-height: 75px;                 /* 제목 2줄 높이 고정 */
    margin: 0 0 60px;
}
.about_wrapper .ck_split .text {
    min-height: 120px;                /* 좌우 본문 높이 통일 → 가운데 정렬해도 위치 일치 */
}

@media screen and (max-width: 1200px) {
    /* 세로로 쌓이는 구간에서는 정렬용 고정값 해제 */
    .about_wrapper .ck_split_box { padding: 40px 20px; }
    .about_wrapper .ck_split .label { height: auto; line-height: 1.4; }
    .about_wrapper .ck_split .tit { min-height: 0; margin-bottom: 24px; }
    .about_wrapper .ck_split .text { min-height: 0; }
}