* { box-sizing: border-box; margin: 0; padding: 0; }
		
		
@font-face {
    font-family: 'GMarketSans';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansLight.woff') format('woff');
    font-weight: 300;
    font-display: swap;
}

@font-face {
    font-family: 'GMarketSans';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansMedium.woff') format('woff');
    font-weight: 500;
    font-display: swap;
}

@font-face {
    font-family: 'GMarketSans';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansBold.woff') format('woff');
    font-weight: 700;
    font-display: swap;
}


        body {
            font-family: 'Noto Sans KR', sans-serif;
            color: #333;
            line-height: 1.5;
            overflow-x: hidden;
        }
        ul, li { list-style: none; }
        a { text-decoration: none; color: inherit; }
        img { max-width: 100%;   }
        .inner { max-width: 1400px; margin: 0 auto; position: relative; padding-bottom:0px; } /* --- 풀다운 배경 하단 여백 --- */

        /* ---   Header --- */
        header {
            position: fixed; top: 0; left: 0; width: 100%; height: 80px;
            background: #fff; z-index: 1000; border-bottom: 1px solid #eee;
		transition: top 0.05s;
        }
		
		
		
		
		header.up{ 
		top:-90px;
		}
		
		
        .header-container {
            display: flex; align-items: center; justify-content: space-between;
            height: 100%; padding: 0 20px;
        }
        .logo img { margin-top: 5px; height: 30px; }

        .pc-nav ul { display: flex; height: 100%; }
        .pc-nav ul li { margin-left: 40px; font-weight: 700; font-size: 15px; position: relative; }
        .pc-nav ul li > a { display: block; height: 80px; line-height: 80px; padding: 0 10px; transition: color 0.3s; }
        .pc-nav ul li.active > a { color: #005eb8; }

  

        /* [NEW] Header Right (Language) */
        .header-right { display: flex; align-items: center; }
        
        .lang-box {
            position: relative;
            margin-left: 20px;
            font-size: 13px;
            color: #666;
            cursor: pointer;
            z-index: 1001;
        }
        .lang-btn {
            display: flex; align-items: center; gap: 6px;
            border: 1px solid #ddd;
            border-radius: 4px;
            padding: 6px 12px;
            background: #fff;
            transition: 0.3s;
        }
        .lang-btn:hover { border-color: #aaa; color: #333; }
        .globe-icon {filter:grayscale(100); font-size: 16px; } /* 지구본 아이콘 대체 텍스트/이모지 */
        
        /* Language Dropdown */
        .lang-dropdown {
            position: absolute;
            top: 100%; right: 0;
            width: 100%;
            background: #fff;
            border: 1px solid #ddd;
            border-top: none;
            display: none; /* Hidden by default */
            box-shadow: 0 3px 6px rgba(0,0,0,0.05);
        }
        .lang-dropdown li a {
            display: block;
            padding: 8px 10px;
            text-align: center;
            font-size: 12px;
            color: #666;
        }
        .lang-dropdown li a:hover {
            background: #f5f5f5;
            color: #005eb8;
        }
        
        /* Hover to show Dropdown */
        .lang-box:hover .lang-dropdown { display: block; }
		

        /* Mega Menu (PC) */
        .megamenu-dark {
            position: fixed; top: 80px; left: 0; width: 100%;
            background: rgba(0,0,0,0.9); padding:  0px 0; z-index: 999; display: none;
            border-top: 1px solid #333; color: #fff;
        }
        .megamenu-bg {
            position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
            font-size: 120px; font-weight: 900; color: rgba(255,255,255,0.03);
            pointer-events: none; letter-spacing: 10px;
        }
        .mega-grid { display: flex; position: relative; z-index: 1; padding-left:220px; }
        .mega-col { flex: 0 0 220px; padding: 50px 30px; border-right: 1px solid #444; }
        .mega-col:last-child { border-right: none; }
        .mega-col h3 { font-size: 18px; font-weight: 700; color: #0085ca; margin-bottom: 25px; }
        .mega-col ul li { margin-bottom: 12px; }
        .mega-col ul li a { font-size: 14px; color: #aaa; transition: 0.3s; }
        .mega-col ul li a:hover { color: #e60012; padding-left: 5px; }

        .mobile-btn { display: none; font-size: 24px; cursor: pointer; }
 
		.btn_top{ position:fixed; right:50px;bottom:50px; z-index:11; }
 

 
        footer {
            background: #fff;
            padding: 30px 0;
            border-top: 0px solid #e5e5e5;
            font-family: 'Noto Sans KR', sans-serif;
            color: #666;
        }

        .footer-inner {
            max-width: 1400px; /* 메인 컨텐츠와 동일한 폭 */
            margin: 0 auto;
            padding: 0 20px;
        }

        /* 1단: 주소 영역 (상단) */
        .footer-top {
            display: flex;
            margin-bottom: 30px;
        }

        .addr-box {
            flex: 1; /* 1:1 비율 분할 */
        }
        
        /* 두 번째 박스(Factory)에 왼쪽 여백과 세로 선 추가 */
        .addr-box:last-child {
            margin-left: 40px;
            padding-left: 40px;
            border-left: 1px solid #e0e0e0;
        }

        .addr-box strong {
            display: block;
            color: #222;
            font-size: 14px;
            font-weight: 700;
            margin-bottom: 12px;
        }

        .addr-box p {
            font-size: 13px;
            line-height: 1.6;
            color: #777;
            margin: 0;
        }

        /* 가로 구분선 */
        .footer-divider {
            width: 100%;
            height: 1px;
            background-color: #e0e0e0;
            margin-bottom: 25px;
        }

        /*   카피라이트  */
        .footer-btm {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .copyright {
            font-size: 13px;
            color: #333;
            font-weight: 500;
        }

        .btm-right {
            display: flex;
            align-items: center;
            gap: 25px; /* 요소 간 간격 */
        }

        .footer-link {
            font-size: 12px;
            font-weight: 700;
            color: #0085ca; /*  파란색 계열 */
            cursor: pointer;
            transition: color 0.3s;
        }
        .footer-link:hover {
            color: #005eb8;
            text-decoration: underline;
        }

        .cert-imgs {
            display: flex;
            gap: 10px;
        }
        .cert-imgs img {
            height: 40px; /* 인증마크 높이 고정 */
            width: auto;
        }
		

        /* --- Mobile Side   --- */
        .dimmed {
            position: fixed; top:0; left:0; width:100%; height:100%;
            background: rgba(0,0,0,0.7); z-index: 1100; display: none;
        }
        .mobile-panel {
            position: fixed; top:0; right:-100%; width:80%; max-width:320px; height:100%;
            background: #fff; z-index: 1200; transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
            padding-top: 60px;
			overflow-y:auto; 
        }
        .mobile-panel.active { right: 0; }
        .close-btn { position: absolute; top: 20px; right: 20px; font-size: 28px; cursor: pointer; }
        
        .m-menu > li { border-bottom: 1px solid #f1f1f1; }
        .m-menu > li > a {
            display: flex; justify-content: space-between; padding: 16px 24px;
            font-weight: 700; font-size: 16px; color: #333;
        }
        .m-submenu { display: none; background: #f9f9f9; padding: 15px 0 15px 30px;; }
        .m-group { padding: 0 24px; margin-bottom: 15px; }
        .m-group h4 { font-size: 14px; color: #005eb8; margin-bottom: 6px; }
        .m-group ul li a { display: block; padding: 6px 0; font-size: 14px; color: #666; font-weight: 400; }

        /* --- Responsive --- */
        @media (max-width: 768px) {
		
			.btn_top{ position:fixed; right:20px;bottom:20px; z-index:11; }
 .lang-box {  display:none;}
		 
        .m-lang-box {
            background: #f8f8f8;
            padding: 20px;
            display: flex;
            justify-content: center;
            gap: 20px;
            border-top: 1px solid #eee;
            margin-top: auto; /* 상단 내용과 분리하여 바닥에 붙임 */
        }
        .m-lang-btn {
            font-size: 14px;
            color: #999;
            font-weight: 500;
            padding: 5px 10px;
        }
        .m-lang-btn.active {
            color: #005eb8;
            font-weight: 700;
            border-bottom: 2px solid #005eb8;
        }		
		
            header { height: 60px; padding: 0; }
            .logo img { height: 30px; }
            .pc-nav, .megamenu-dark { display: none !important; }
            .mobile-btn { display: block; margin-right: 5px; }

            .hero { margin-top:  0px; height: 100%;  padding-top:80px}
            .hero img{ width:100px;}			
            .content-section { margin-top: 0; padding-top: 130px; }
            
            .grid-row {
                grid-template-columns: 1fr; /* 1열 변경 */
                gap: 20px;
            }
			 footer { padding: 40px 0; }
            
            /* 1단: 세로 배치로 변경 */
            .footer-top {
                flex-direction: column;
                gap: 30px;
                margin-bottom: 30px;
            }

            .addr-box:last-child {
                margin-left: 0;
                padding-left: 0;
                border-left: none; /* 세로선 제거 */
            }

            .addr-box { text-align: center; } /* 모바일은 가운데 정렬 권장 */

            /* 2단: 세로 배치로 변경 */
            .footer-btm {
                flex-direction: column-reverse; /* 링크가 위, 카피라이트가 아래로 오게 하려면 column-reverse, 순서대로면 column */
                gap: 20px;
                text-align: center;
            }

            .btm-right {
                flex-direction: column; /* 링크와 이미지를 세로로 쌓음 */
                gap: 15px;
            }
            
            /* 모바일에서 링크들을 가로로 유지하고 싶다면 아래 주석 해제 */
            /* .btm-right { flex-direction: row; flex-wrap: wrap; justify-content: center; } */
        }
		