정수빈 정수빈 2 days ago
오가시스 서브페이지 수정
@42ae7976ba0ac589ff2d392e6d9099b994401f6a
src/main/java/kcc/web/MainController.java
--- src/main/java/kcc/web/MainController.java
+++ src/main/java/kcc/web/MainController.java
@@ -714,52 +714,72 @@
 	@ResponseBody
 	@RequestMapping(value = "/web/com/subMenu.do")
 	public ResponseEntity<RestResponse> webCommonSubMenu(
-			@RequestBody Map<String, Object> paramMap) throws Exception {
-		// 1. 파라미터 추출
-		String depth1MenuNm = (String) paramMap.get("depth1MenuNm");
-		String depth2MenuNm = (String) paramMap.get("depth2MenuNm");
-	
-		// 2. 전체 메뉴 조회 및 1Depth 리스트 생성 (URL 세팅 포함)
-		List<MenuManageJTreeVO> menuResultList = menuCreateManageService.selectMenuListJtree(new MenuManageJTreeVO());
-	
-		List<MenuManageJTreeVO> depth1List = menuResultList.stream()
-				.filter(menu -> "1".equals(menu.getUpperMenuId()))
-				.peek(menu -> menu.setUrl("/web/content.do?proFn=" + menu.getMenuNo())) // 스트림 안에서 URL 세팅
-				.collect(Collectors.toList());
-	
-		// 3. 현재 선택된 1Depth 찾기 (이미 필터링된 depth1List에서 찾음)
-		MenuManageJTreeVO selectedDepth1 = depth1List.stream()
-				.filter(menu -> depth1MenuNm != null && depth1MenuNm.equalsIgnoreCase(menu.getMenuNm()))
-				.findFirst()
-				.orElse(null);
-	
-		// 4. 2Depth 리스트 생성 (selectedDepth1이 있을 때만 진행)
-		List<MenuManageJTreeVO> depth2List = new ArrayList<>();
-		MenuManageJTreeVO selectedDepth2 = null;
-	
-		if (selectedDepth1 != null) {
-			depth2List = menuResultList.stream()
-				.filter(menu -> selectedDepth1.getMenuNo().equals(menu.getUpperMenuId()))
-				.peek(menu -> menu.setUrl("/web/content.do?proFn=" + menu.getMenuNo()))
-				.collect(Collectors.toList());
-		
-			// 5. 현재 선택된 2Depth 찾기
-			selectedDepth2 = depth2List.stream()
-				.filter(menu -> depth2MenuNm != null && depth2MenuNm.equalsIgnoreCase(menu.getMenuNm()))
-				.findFirst()
-				.orElse(null);
-		}
-	
-		// 6. 결과 맵 구성 및 반환
-		Map<String, Object> resultMap = new HashMap<>();
-		resultMap.put("depth1List", depth1List);
-		resultMap.put("selectedDepth1", selectedDepth1);
-		resultMap.put("depth2List", depth2List);
-		resultMap.put("selectedDepth2", selectedDepth2);
-	
-		RestResponse restResponse = new RestResponse(HttpStatus.OK, "", resultMap);
-		return ResponseEntity.ok(restResponse);
+	        @RequestBody Map<String, Object> paramMap) throws Exception {
 
+	    // 1. 파라미터
+	    String depth1MenuNm = (String) paramMap.get("depth1MenuNm");
+	    String depth2MenuNm = (String) paramMap.get("depth2MenuNm");
+	    String depth3MenuNm = (String) paramMap.get("depth3MenuNm");
+
+	    // 2. 전체 메뉴 조회
+	    List<MenuManageJTreeVO> menuResultList =
+	            menuCreateManageService.selectMenuListJtree(new MenuManageJTreeVO());
+
+	    // 3. depth1
+	    List<MenuManageJTreeVO> depth1List = menuResultList.stream()
+	            .filter(menu -> "1".equals(menu.getUpperMenuId()))
+	            .peek(menu -> menu.setUrl("/web/content.do?proFn=" + menu.getMenuNo()))
+	            .collect(Collectors.toList());
+
+	    MenuManageJTreeVO selectedDepth1 = depth1List.stream()
+	            .filter(menu -> depth1MenuNm != null &&
+	                    depth1MenuNm.equalsIgnoreCase(menu.getMenuNm()))
+	            .findFirst()
+	            .orElse(null);
+
+	    // 4. depth2
+	    List<MenuManageJTreeVO> depth2List = new ArrayList<>();
+
+	    if (selectedDepth1 != null) {
+	        depth2List = menuResultList.stream()
+	                .filter(menu -> selectedDepth1.getMenuNo().equals(menu.getUpperMenuId()))
+	                .peek(menu -> menu.setUrl("/web/content.do?proFn=" + menu.getMenuNo()))
+	                .collect(Collectors.toList());
+	    }
+
+	    MenuManageJTreeVO selectedDepth2 = depth2List.stream()
+	            .filter(menu -> depth2MenuNm != null &&
+	                    depth2MenuNm.equalsIgnoreCase(menu.getMenuNm()))
+	            .findFirst()
+	            .orElse(null);
+
+	    // 5. depth3
+	    List<MenuManageJTreeVO> depth3List = new ArrayList<>();
+
+	    if (selectedDepth2 != null) {
+	        depth3List = menuResultList.stream()
+	                .filter(menu -> selectedDepth2.getMenuNo().equals(menu.getUpperMenuId()))
+	                .peek(menu -> menu.setUrl("/web/content.do?proFn=" + menu.getMenuNo()))
+	                .collect(Collectors.toList());
+	    }
+
+	    MenuManageJTreeVO selectedDepth3 = depth3List.stream()
+	            .filter(menu -> depth3MenuNm != null &&
+	                    depth3MenuNm.equalsIgnoreCase(menu.getMenuNm()))
+	            .findFirst()
+	            .orElse(null);
+
+	    // 6. 결과
+	    Map<String, Object> resultMap = new HashMap<>();
+	    resultMap.put("depth1List", depth1List);
+	    resultMap.put("selectedDepth1", selectedDepth1);
+	    resultMap.put("depth2List", depth2List);
+	    resultMap.put("selectedDepth2", selectedDepth2);
+	    resultMap.put("depth3List", depth3List);
+	    resultMap.put("selectedDepth3", selectedDepth3);
+
+	    RestResponse restResponse = new RestResponse(HttpStatus.OK, "", resultMap);
+	    return ResponseEntity.ok(restResponse);
 	}
 	
 
src/main/webapp/WEB-INF/jsp/web/com/webCommonHeader.jsp
--- src/main/webapp/WEB-INF/jsp/web/com/webCommonHeader.jsp
+++ src/main/webapp/WEB-INF/jsp/web/com/webCommonHeader.jsp
@@ -114,7 +114,21 @@
 													class="depth02"
 													${menu2.menuType eq 'O' ? 'target="_blank"' : '' }> <c:out
 															value="${menu2.menuNm}" />
-												</a></li>
+												</a>
+												
+												<ul class="depth03_ul">
+													<c:forEach var="menu3" items="${menuResultList}">
+														<c:if test="${menu3.depths eq '3' && menu3.upperMenuId eq menu2.menuNo}">
+															<li>
+																<a href="${menu3.menuType ne 'M' ? menu3.url : '#'}" class="depth03" ${menu3.menuType eq 'O' ? 'target="_blank"' : '' }> 
+																<c:out value="${menu3.menuNm}" />
+																</a>
+															</li>
+														</c:if>
+													</c:forEach>
+												</ul>
+												
+												</li>
 											</c:if>
 										</c:forEach>
 									</ul>
@@ -217,7 +231,21 @@
 										${menu2.menuType
                                 eq 'O' ? 'target="_blank"' : '' }>
 											<c:out value="${menu2.menuNm}" />
-									</a></li>
+									</a>
+									
+									<ul class="depth03_ul">
+										<c:forEach var="menu3" items="${menuResultList}">
+											<c:if test="${menu3.depths eq '3' && menu3.upperMenuId eq menu2.menuNo}">
+												<li>
+													<a href="${menu3.menuType ne 'M' ? menu3.url : '#'}" class="depth03" ${menu3.menuType eq 'O' ? 'target="_blank"' : '' }> 
+													<c:out value="${menu3.menuNm}" />
+													</a>
+												</li>
+											</c:if>
+										</c:forEach>
+									</ul>
+									
+									</li>
 								</c:if>
 							</c:forEach>
 						</ul>
@@ -253,7 +281,21 @@
 											${menu2.menuType
                                   eq 'O' ? 'target="_blank"' : '' }>
 												<c:out value="${menu2.menuNm}" />
-										</a></li>
+										</a>
+										
+										<ul class="depth03_ul">
+											<c:forEach var="menu3" items="${menuResultList}">
+												<c:if test="${menu3.depths eq '3' && menu3.upperMenuId eq menu2.menuNo}">
+													<li>
+														<a href="${menu3.menuType ne 'M' ? menu3.url : '#'}" class="depth03" ${menu3.menuType eq 'O' ? 'target="_blank"' : '' }> 
+														<c:out value="${menu3.menuNm}" />
+														</a>
+													</li>
+												</c:if>
+											</c:forEach>
+										</ul>
+										
+										</li>
 									</c:if>
 								</c:forEach>
 							</ul></li>
src/main/webapp/publish/adm/css/popup.css
--- src/main/webapp/publish/adm/css/popup.css
+++ src/main/webapp/publish/adm/css/popup.css
@@ -32,8 +32,8 @@
 .popup .page a{width:32px;height:32px;}
 
 /* 레이어 */
-.popup:not(.popup_window){position:absolute;display:none;min-width:200px;min-height:200px;border-radius:12px;overflow:hidden;opacity:0;transition:all 0.3s;left:50%;top:50%;transform:translate(-50%,-50%);}
-.popup.active:not(.popup_window){display:block;opacity:1;z-index:11;}
+.popup:not(.popup_window,.table){position:absolute;display:none;min-width:200px;min-height:200px;border-radius:12px;overflow:hidden;opacity:0;transition:all 0.3s;left:50%;top:50%;transform:translate(-50%,-50%);}
+.popup.active:not(.popup_window,.table){display:block;opacity:1;z-index:11;}
 
 
 /* 새창팝업 */
src/main/webapp/publish/usr/achievement/award.html (copied from src/main/webapp/publish/usr/major_result/anticancer.html)
--- src/main/webapp/publish/usr/major_result/anticancer.html
+++ src/main/webapp/publish/usr/achievement/award.html
@@ -0,0 +1,86 @@
+<!DOCTYPE html>
+<html lang="ko">
+
+<head>
+  <meta charset="UTF-8">
+  <meta name="viewport" content="width=device-width, initial-scale=1.0">
+  <title>Achievement > Papers</title>
+
+  <!-- css -->
+  <link rel="stylesheet" href="../../../css/reset.css">
+  <link rel="stylesheet" href="../../../css/font.css">
+  <link rel="stylesheet" href="../layout/layout.css">
+  <link rel="stylesheet" href="../css/common.css">
+  <link rel="stylesheet" href="../css/style.css">
+  <link rel="stylesheet" href="../css/button.css">
+  <link rel="stylesheet" href="../css/tab.css">
+  <link rel="stylesheet" href="../css/table.css">
+  <link rel="stylesheet" href="../css/calendar.css">
+  <link rel="stylesheet" href="../css/popup.css">
+  <link rel="stylesheet" href="../css/content.css">
+  <!-- //css -->
+
+  <!-- script -->
+  <script src="../../../js/jquery-3.5.0.js"></script>
+  <script src="../script/common.js"></script>
+  <script src="../layout/layout.js"></script>
+  <!-- //script -->
+
+</head>
+
+<body data-section="achievement">
+
+
+  <div class="wrap">
+    <div data-include-path="../layout/_header.html"></div>
+
+    <div id="container" class="container sub achievement">
+      <div class="sub_visual">
+        <div class="inner">
+          <h2 class="sub_title" data-section="achievement">ACHIEVEMENT</h2>
+          <div class="sub_visual_nav">
+            <a href="../index.html"><i class="icon home"></i></a>
+            <div class="snb_wrap">
+              <button type="button" class="snb_title">메뉴</button>
+              <ul class="snb_select">
+                <li><a href="#">COMPANY</a></li>
+                <li><a href="#">Platform Tech</a></li>
+                <li><a href="#">Major Result</a></li>
+              </ul>
+            </div>
+            <div class="snb_wrap">
+              <button type="button" class="snb_title">메뉴</button>
+              <ul class="snb_select">
+                <li><a href="#">1depth</a></li>
+                <li><a href="#">1depth</a></li>
+                <li><a href="#">1depth</a></li>
+              </ul>
+            </div>
+          </div>
+        </div>
+      </div>
+      <div class="inner">
+        <div class="content_wrap">
+
+          <div class="content_title">
+            <h3>Award & Contract(준비중)</h3>
+          </div>
+          
+          <div class="contents">
+
+
+
+          </div>
+        </div>
+      </div>
+    </div>
+
+
+
+    <div data-include-path="../layout/_footer.html"></div>
+  </div>
+
+
+</body>
+
+</html>(No newline at end of file)
src/main/webapp/publish/usr/achievement/ip.html (Renamed from src/main/webapp/publish/usr/major_result/anticancer.html)
--- src/main/webapp/publish/usr/major_result/anticancer.html
+++ src/main/webapp/publish/usr/achievement/ip.html
@@ -4,7 +4,7 @@
 <head>
   <meta charset="UTF-8">
   <meta name="viewport" content="width=device-width, initial-scale=1.0">
-  <title>major result > Anti Cancer</title>
+  <title>Achievement > Papers</title>
 
   <!-- css -->
   <link rel="stylesheet" href="../../../css/reset.css">
@@ -12,6 +12,11 @@
   <link rel="stylesheet" href="../layout/layout.css">
   <link rel="stylesheet" href="../css/common.css">
   <link rel="stylesheet" href="../css/style.css">
+  <link rel="stylesheet" href="../css/button.css">
+  <link rel="stylesheet" href="../css/tab.css">
+  <link rel="stylesheet" href="../css/table.css">
+  <link rel="stylesheet" href="../css/calendar.css">
+  <link rel="stylesheet" href="../css/popup.css">
   <link rel="stylesheet" href="../css/content.css">
   <!-- //css -->
 
@@ -21,24 +26,18 @@
   <script src="../layout/layout.js"></script>
   <!-- //script -->
 
-  <!-- 캘린더 -->
-  <script type="module" src="../../../js/plugin/datapicker/duet.esm.js"></script>
-  <script nomodule src="../../../js/plugin/datapicker/duet.js"></script>
-  <link rel="stylesheet" href="../../../js/plugin/datapicker/default.css">
-
-
 </head>
 
-<body data-section="major_result">
+<body data-section="achievement">
 
 
   <div class="wrap">
     <div data-include-path="../layout/_header.html"></div>
 
-    <div id="container" class="container sub major_result">
+    <div id="container" class="container sub achievement">
       <div class="sub_visual">
         <div class="inner">
-          <h2 class="sub_title" data-section="major_result">MAJOR RESULT</h2>
+          <h2 class="sub_title" data-section="achievement">ACHIEVEMENT</h2>
           <div class="sub_visual_nav">
             <a href="../index.html"><i class="icon home"></i></a>
             <div class="snb_wrap">
@@ -61,34 +60,17 @@
         </div>
       </div>
       <div class="inner">
-        <div class="content_wrap cancer">
+        <div class="content_wrap">
 
+          <div class="content_title">
+            <h3>IP(준비중)</h3>
+          </div>
+          
           <div class="contents">
 
-            <div class="content_title">
-              <h3>Anti Cancer</h3>
-            </div>
-
-            <div class="con_title">
-              <strong class="title">비소세포폐암 (NSCLC)_ EGFR TKI 임상 치료전략 및 오토파지 표적</strong>
-            </div>
-            
-            <div class="figure_content column">
-              <div class="box">
-                <img src="../images/major_result/cancer_1.png" alt="">
-              </div>
-              <div class="box">
-                <img src="../images/major_result/cancer_2.png" alt="">
-              </div>
-
-              
-
-            </div>
 
 
           </div>
-
-
         </div>
       </div>
     </div>
 
src/main/webapp/publish/usr/achievement/papers.html (added)
+++ src/main/webapp/publish/usr/achievement/papers.html
@@ -0,0 +1,297 @@
+<!DOCTYPE html>
+<html lang="ko">
+
+<head>
+  <meta charset="UTF-8">
+  <meta name="viewport" content="width=device-width, initial-scale=1.0">
+  <title>Achievement > Papers</title>
+
+  <!-- css -->
+  <link rel="stylesheet" href="../../../css/reset.css">
+  <link rel="stylesheet" href="../../../css/font.css">
+  <link rel="stylesheet" href="../layout/layout.css">
+  <link rel="stylesheet" href="../css/common.css">
+  <link rel="stylesheet" href="../css/style.css">
+  <link rel="stylesheet" href="../css/button.css">
+  <link rel="stylesheet" href="../css/tab.css">
+  <link rel="stylesheet" href="../css/table.css">
+  <link rel="stylesheet" href="../css/calendar.css">
+  <link rel="stylesheet" href="../css/popup.css">
+  <link rel="stylesheet" href="../css/content.css">
+  <!-- //css -->
+
+  <!-- script -->
+  <script src="../../../js/jquery-3.5.0.js"></script>
+  <script src="../script/common.js"></script>
+  <script src="../layout/layout.js"></script>
+  <!-- //script -->
+
+</head>
+
+<body data-section="achievement">
+
+
+  <div class="wrap">
+    <div data-include-path="../layout/_header.html"></div>
+
+    <div id="container" class="container sub achievement">
+      <div class="sub_visual">
+        <div class="inner">
+          <h2 class="sub_title" data-section="achievement">ACHIEVEMENT</h2>
+          <div class="sub_visual_nav">
+            <a href="../index.html"><i class="icon home"></i></a>
+            <div class="snb_wrap">
+              <button type="button" class="snb_title">메뉴</button>
+              <ul class="snb_select">
+                <li><a href="#">COMPANY</a></li>
+                <li><a href="#">Platform Tech</a></li>
+                <li><a href="#">Major Result</a></li>
+              </ul>
+            </div>
+            <div class="snb_wrap">
+              <button type="button" class="snb_title">메뉴</button>
+              <ul class="snb_select">
+                <li><a href="#">1depth</a></li>
+                <li><a href="#">1depth</a></li>
+                <li><a href="#">1depth</a></li>
+              </ul>
+            </div>
+          </div>
+        </div>
+      </div>
+      <div class="inner">
+        <div class="content_wrap">
+
+          <div class="content_title">
+            <h3>Papers</h3>
+          </div>
+          
+          <div class="contents">
+            <div class="con_title" data-aos="fade-down">
+              <strong class="title">세포소기관 선택적 자가포식 및 관련 논문 분류 정리</strong>
+            </div>
+              <div class="table table_type_cols">
+                <table>
+                  <!-- *caption은 스크립트 -->
+                  <colgroup>
+                    <col style="width:10%;">
+                    <col style="width:auto;">
+                    <col style="width:20%;">
+                    <col style="width:8%;">
+                  </colgroup>
+                  <thead>
+                    <tr>
+                      <th>분류</th>
+                      <th>논문제목</th>
+                      <th>저널명</th>
+                      <th>발표년도</th>
+                    </tr>
+                  </thead>
+                  <tbody>
+                    <tr>
+                      <td><span class="mobile_show">분류</span>Pexophagy</td>
+                      <td class="text_left"><span class="mobile_hide">논문제목</span>PINK1 and STUB1 pathway orchestrates peroxisomal selective autophagy by PEX13 depletion</td>
+                      <td class="text_left"><span class="mobile_show">저널명</span>Experimental and Molecular Medicine</td>
+                      <td><span class="mobile_show">발표년도</span>2026</td>
+                    </tr>
+                    <tr>
+                      <td><span class="mobile_show">분류</span>Pexophagy</td>
+                      <td class="text_left"><span class="mobile_hide">논문제목</span>Regulation of pexophagy by a novel TBK1-MARCHF7-PXMP4-NBR1 axis in pex1-depleted HeLa cells</td>
+                      <td class="text_left"><span class="mobile_show">저널명</span>Autophagy</td>
+                      <td><span class="mobile_show">발표년도</span>2026</td>
+                    </tr>
+                    <tr>
+                      <td><span class="mobile_show">분류</span>기타</td>
+                      <td class="text_left"><span class="mobile_hide">논문제목</span>Crucial role of PTRH2 in mitochondrial dynamics and infantile-onset multisystem neurologic, endocrine, and pancreatic disease (IMNEPD) pathogenesis</td>
+                      <td class="text_left"><span class="mobile_show">저널명</span>Molecular Medicine</td>
+                      <td><span class="mobile_show">발표년도</span>2026</td>
+                    </tr>
+                    <tr>
+                      <td><span class="mobile_show">분류</span>Stress Granule</td>
+                      <td class="text_left"><span class="mobile_hide">논문제목</span>Proteasome inhibition by VR23 enhances autophagy clearance of FUSP525L-mediated persistent stress granule in SH-SY5Y cells</td>
+                      <td class="text_left"><span class="mobile_show">저널명</span>Molecular Brain</td>
+                      <td><span class="mobile_show">발표년도</span>2026</td>
+                    </tr>
+                    <tr>
+                      <td><span class="mobile_show">분류</span>Lysophagy</td>
+                      <td class="text_left"><span class="mobile_hide">논문제목</span>Activation of lysophagy by a novel TBK1-SCFFBXO3-TMEM192-TAX1BP1 axis in response to lysosome damage</td>
+                      <td class="text_left"><span class="mobile_show">저널명</span>Nature Communications</td>
+                      <td><span class="mobile_show">발표년도</span>2025</td>
+                    </tr>
+                    <tr>
+                      <td><span class="mobile_show">분류</span>Lysophagy</td>
+                      <td class="text_left"><span class="mobile_hide">논문제목</span>TBK1-SCFFBXO3-TMEM192-TAX1BP1 axis: novel regulatory mechanism for lysophagy</td>
+                      <td class="text_left"><span class="mobile_show">저널명</span>Autophagy</td>
+                      <td><span class="mobile_show">발표년도</span>2025</td>
+                    </tr>
+                    <tr>
+                      <td><span class="mobile_show">분류</span>Melanophagy</td>
+                      <td class="text_left"><span class="mobile_hide">논문제목</span>Deciphering melanophagy: Role of the PTK2-ITCH-MLANA-OPTN Axis on melanophagy in melanocytes</td>
+                      <td class="text_left"><span class="mobile_show">저널명</span>Autophagy</td>
+                      <td><span class="mobile_show">발표년도</span>2025</td>
+                    </tr>
+                    <tr>
+                      <td><span class="mobile_show">분류</span>Melanophagy</td>
+                      <td class="text_left"><span class="mobile_hide">논문제목</span>Emerging Perspectives on the Selective Autophagy of Melanosomes: Melanophagy</td>
+                      <td class="text_left"><span class="mobile_show">저널명</span>Experimental and Molecular Medicine</td>
+                      <td><span class="mobile_show">발표년도</span>2025</td>
+                    </tr>
+                    <tr>
+                      <td><span class="mobile_show">분류</span>Pexophagy</td>
+                      <td class="text_left"><span class="mobile_hide">논문제목</span>ZLDI-8 facilitates pexophagy by ROS-mediated activation of TFEB and ATM in HeLa cells</td>
+                      <td class="text_left"><span class="mobile_show">저널명</span>Bioorg. Med. Chem. Lett.</td>
+                      <td><span class="mobile_show">발표년도</span>2025</td>
+                    </tr>
+                    <tr>
+                      <td><span class="mobile_show">분류</span>기타</td>
+                      <td class="text_left"><span class="mobile_hide">논문제목</span>Down-regulation of Hspa9 reduces tyrosine hydroxylase-positive neurons in mouse substantia nigra and induces Parkinson’s disease-like motor impairments</td>
+                      <td class="text_left"><span class="mobile_show">저널명</span>Animal Cells and Systems</td>
+                      <td><span class="mobile_show">발표년도</span>2025</td>
+                    </tr>
+                    <tr>
+                      <td><span class="mobile_show">분류</span>Stress Granule</td>
+                      <td class="text_left"><span class="mobile_hide">논문제목</span>Suppression of stress granule assembly by pyridoxal hydrochloride attenuates oxidative damage in skin fibroblasts</td>
+                      <td class="text_left"><span class="mobile_show">저널명</span>Bioorg. Med. Chem. Lett.</td>
+                      <td><span class="mobile_show">발표년도</span>2025</td>
+                    </tr>
+                    <tr>
+                      <td><span class="mobile_show">분류</span>일차섬모</td>
+                      <td class="text_left"><span class="mobile_hide">논문제목</span>Defect of HSD17B cause dysregulation of primary cilia and is alleviated by acetyl-CoA</td>
+                      <td class="text_left"><span class="mobile_show">저널명</span>Nature Communications</td>
+                      <td><span class="mobile_show">발표년도</span>2025</td>
+                    </tr>
+                    <tr>
+                      <td><span class="mobile_show">분류</span>일차섬모</td>
+                      <td class="text_left"><span class="mobile_hide">논문제목</span>Disrupting Mitochondrial β-oxidation by Depletion of HADHA Impairs Primary Ciliogenesis</td>
+                      <td class="text_left"><span class="mobile_show">저널명</span>Scientific Reports</td>
+                      <td><span class="mobile_show">발표년도</span>2025</td>
+                    </tr>
+                    <tr>
+                      <td><span class="mobile_show">분류</span>Melanophagy</td>
+                      <td class="text_left"><span class="mobile_hide">논문제목</span>Evaluation of teneligliptin and retabliptin on the clearance of melanosome by melanophagy in B16F1 cells</td>
+                      <td class="text_left"><span class="mobile_show">저널명</span>Cosmetics</td>
+                      <td><span class="mobile_show">발표년도</span>2024</td>
+                    </tr>
+                    <tr>
+                      <td><span class="mobile_show">분류</span>Pexophagy</td>
+                      <td class="text_left"><span class="mobile_hide">논문제목</span>Inhibition of VHL by VH298 accelerates pexophagy by activation of HIF-1α in HeLa cells</td>
+                      <td class="text_left"><span class="mobile_show">저널명</span>Molecules</td>
+                      <td><span class="mobile_show">발표년도</span>2024</td>
+                    </tr>
+                    <tr>
+                      <td><span class="mobile_show">분류</span>기타</td>
+                      <td class="text_left"><span class="mobile_hide">논문제목</span>HSPA9 reduction exacerbates symptoms and cell death in DSS-induced inflammatory colitis</td>
+                      <td class="text_left"><span class="mobile_show">저널명</span>Scientific Reports</td>
+                      <td><span class="mobile_show">발표년도</span>2024</td>
+                    </tr>
+                    <tr>
+                      <td><span class="mobile_show">분류</span>기타</td>
+                      <td class="text_left"><span class="mobile_hide">논문제목</span>TAAR8 mediates increased migrasome formation by cadaverine in RPE cells</td>
+                      <td class="text_left"><span class="mobile_show">저널명</span>Curr Issue MolBiol</td>
+                      <td><span class="mobile_show">발표년도</span>2024</td>
+                    </tr>
+                    <tr>
+                      <td><span class="mobile_show">분류</span>일차섬모</td>
+                      <td class="text_left"><span class="mobile_hide">논문제목</span>Increased ER stress by depletion of PDIA6 impairs primary ciliogenesis and enhances sensitivity to ferroptosis in kidney cells</td>
+                      <td class="text_left"><span class="mobile_show">저널명</span>BMB Reports</td>
+                      <td><span class="mobile_show">발표년도</span>2024</td>
+                    </tr>
+                    <tr>
+                      <td><span class="mobile_show">분류</span>ER-phagy</td>
+                      <td class="text_left"><span class="mobile_hide">논문제목</span>Inhibition of ubiquitin specific peptidase 14 (USP14) promotes ER-phagy by inducing ER stress in human hepatoma HepG2 cells</td>
+                      <td class="text_left"><span class="mobile_show">저널명</span>Animal Cells and Systems</td>
+                      <td><span class="mobile_show">발표년도</span>2023</td>
+                    </tr>
+                    <tr>
+                      <td><span class="mobile_show">분류</span>Pexophagy</td>
+                      <td class="text_left"><span class="mobile_hide">논문제목</span>PEX13 prevents pexophagy by promoting the removal of ubiquitinated PEX5 from the peroxisomal membrane</td>
+                      <td class="text_left"><span class="mobile_show">저널명</span>Autophagy</td>
+                      <td><span class="mobile_show">발표년도</span>2023</td>
+                    </tr>
+                    <tr>
+                      <td><span class="mobile_show">분류</span>일차섬모</td>
+                      <td class="text_left"><span class="mobile_hide">논문제목</span>Enhanced primary ciliogenesis via mitochondrial oxidative stress activates AKT to prevent neurotoxicity in HSPA9/mortalin-depleted SH-SY5Y cells</td>
+                      <td class="text_left"><span class="mobile_show">저널명</span>Molecular Brain</td>
+                      <td><span class="mobile_show">발표년도</span>2023</td>
+                    </tr>
+
+                    <tr>
+                      <td><span class="mobile_show">분류</span>Melanophagy</td>
+                      <td class="text_left"><span class="mobile_hide">논문제목</span>Nalfurafine Hydrochloride, a κ-Opioid Receptor Agonist, Induces Melanophagy via PKA Inhibition in B16F1 Cells</td>
+                      <td class="text_left"><span class="mobile_show">저널명</span>Cells</td>
+                      <td><span class="mobile_show">발표년도</span>2022</td>
+                    </tr>
+                    <tr>
+                      <td><span class="mobile_show">분류</span>Pexophagy</td>
+                      <td class="text_left"><span class="mobile_hide">논문제목</span>Inhibition of BRD4 promotes pexophagy by increasing ROS and ATM activation</td>
+                      <td class="text_left"><span class="mobile_show">저널명</span>Cells</td>
+                      <td><span class="mobile_show">발표년도</span>2022</td>
+                    </tr>
+                    <tr>
+                      <td><span class="mobile_show">분류</span>일차섬모</td>
+                      <td class="text_left"><span class="mobile_hide">논문제목</span>Carnitines protect against MPP+-induced neurotoxicity and inflammation by promoting primary ciliogenesis in SH-SY5Y cells</td>
+                      <td class="text_left"><span class="mobile_show">저널명</span>Cells</td>
+                      <td><span class="mobile_show">발표년도</span>2022</td>
+                    </tr>
+                    <tr>
+                      <td><span class="mobile_show">분류</span>Autophagy</td>
+                      <td class="text_left"><span class="mobile_hide">논문제목</span>Post-translational modifications of ATG4B in the regulation of autopahgy</td>
+                      <td class="text_left"><span class="mobile_show">저널명</span>Cells</td>
+                      <td><span class="mobile_show">발표년도</span>2022</td>
+                    </tr>
+                    <tr>
+                      <td><span class="mobile_show">분류</span>Autophagy</td>
+                      <td class="text_left"><span class="mobile_hide">논문제목</span>Zinc enhances autophagic flux and lysosomal function through transcription factor EB activation and V-ATPase assembly</td>
+                      <td class="text_left"><span class="mobile_show">저널명</span>Frontiers in Cellular Neuroscience</td>
+                      <td><span class="mobile_show">발표년도</span>2022</td>
+                    </tr>
+                    <tr>
+                      <td><span class="mobile_show">분류</span>Lysophagy</td>
+                      <td class="text_left"><span class="mobile_hide">논문제목</span>Triamterene induces autophagic degradation of lysosome by exacerbating lysosomal integrity</td>
+                      <td class="text_left"><span class="mobile_show">저널명</span>Archives of Pharmacal Research</td>
+                      <td><span class="mobile_show">발표년도</span>2021</td>
+                    </tr>
+                    <tr>
+                      <td><span class="mobile_show">분류</span>Pexophagy</td>
+                      <td class="text_left"><span class="mobile_hide">논문제목</span>Depletion of HNRNPA1 induces peroxisomal autophagy by regulating PEX1 expression</td>
+                      <td class="text_left"><span class="mobile_show">저널명</span>Biochem Biophys Res Commun</td>
+                      <td><span class="mobile_show">발표년도</span>2021</td>
+                    </tr>
+                    <tr>
+                      <td><span class="mobile_show">분류</span>기타</td>
+                      <td class="text_left"><span class="mobile_hide">논문제목</span>Increased O-GlcNAcylation of Drp1 by amyloid-beta promotes mitochondrial fission and dysfunction in neuronal cells</td>
+                      <td class="text_left"><span class="mobile_show">저널명</span>Molecular Brain</td>
+                      <td><span class="mobile_show">발표년도</span>2021</td>
+                    </tr>
+                    <tr>
+                      <td><span class="mobile_show">분류</span>일차섬모</td>
+                      <td class="text_left"><span class="mobile_hide">논문제목</span>2-IPMA ameliorates PM2.5-induced inflammation by promoting primary ciliogenesis in RPE cells</td>
+                      <td class="text_left"><span class="mobile_show">저널명</span>Molecules</td>
+                      <td><span class="mobile_show">발표년도</span>2021</td>
+                    </tr>
+                    <tr>
+                      <td><span class="mobile_show">분류</span>일차섬모</td>
+                      <td class="text_left"><span class="mobile_hide">논문제목</span>Primary ciliogenesis by 2-isopropylmalic acid prevents PM2.5-induced inflammatory response and MMP-1 activation in human dermal fibroblast and 3D-skin model</td>
+                      <td class="text_left"><span class="mobile_show">저널명</span>Int J Mol Sci</td>
+                      <td><span class="mobile_show">발표년도</span>2021</td>
+                    </tr>
+                  </tbody>
+                </table>
+              </div>
+
+
+
+          </div>
+        </div>
+      </div>
+    </div>
+
+
+
+    <div data-include-path="../layout/_footer.html"></div>
+  </div>
+
+
+</body>
+
+</html>(No newline at end of file)
src/main/webapp/publish/usr/css/content.css
--- src/main/webapp/publish/usr/css/content.css
+++ src/main/webapp/publish/usr/css/content.css
@@ -6,15 +6,15 @@
 .skip_menu a:link,.skip_menu a:visited,.skip_menu a:active {top: -10000px;}
 .skip_menu a:hover,.skip_menu a:focus {top: 3px;}
 .sub_visual{position:relative;width:100%;height:615px;border-radius:0 0 80px 80px;background-position:center;}
-.sub_title{display:flex;height:100%;font-family:var(--secondary-title-font);font-size:60px;font-weight:bold;color:#fff;letter-spacing:1px;text-shadow:0 0 20px rgba(0,0,0,.3);align-items:center;justify-content:center;}
-.sub_visual_nav{position:relative;display:flex;width:45%;border-radius:38px 38px 0 0;background:#fff;padding:0 20px;bottom:66px;left:50%;transform:translateX(-50%);align-items:center;}
+.sub_title{display:flex;height:100%;font-family:var(--secondary-title-font);font-size:60px;font-weight:bold;color:#fff;letter-spacing:1px;text-shadow:0 0 20px rgba(0,0,0,.3);align-items:center;justify-content:center;text-transform:uppercase;}
+.sub_visual_nav{position:relative;display:flex;width:70%;border-radius:38px 38px 0 0;background:#fff;padding:0 20px;bottom:66px;left:50%;transform:translateX(-50%);align-items:center;}
 .sub_visual_nav a,.sub_visual_nav .snb_wrap{position:relative;height:66px;}
 .sub_visual_nav>a::after,.sub_visual_nav .snb_wrap::after{position:absolute;display:inline-block;content:"";width:1px;height:20px;background:#d9d9d9;right:0;top:50%;transform:translateY(-50%);}
 .sub_visual_nav .snb_wrap:last-child::after{display:none;}
 .sub_visual_nav::before,.sub_visual_nav::after{position:absolute;content:"";width:41px;height:41px;bottom:0;}
 .sub_visual_nav::before{background:url(/publish/usr/images/common/sub_visual_nav_left.png);left:-40px;}
 .sub_visual_nav::after{background:url(/publish/usr/images/common/sub_visual_nav_right.png);right:-40px;}
-.sub_visual_nav .snb_wrap{width:calc((100% - 66px)/2);}
+.sub_visual_nav .snb_wrap{min-width:calc((100% - 66px)/3);max-width:calc((100% - 66px)/2);flex:1;}
 .snb_title{width:100%;height:100%;font-size:20px;font-weight:500;text-align:left;white-space:nowrap;text-overflow:ellipsis;overflow:hidden;padding:0 60px 0 20px;border:none;background:url(/publish/usr/images/component/icon_select.png) no-repeat calc(100% - 20px) center;}
 .snb_select{position:absolute;display:none;width:100%;background:#fff;padding:10px;overflow:hidden;top:calc(100% + 4px);border-radius:8px;box-shadow:2px 3px 4px 0 rgba(0, 0, 0, .08);}
 .snb_select a{display:flex;height:40px;font-size:16px;padding:0 20px;justify-content:flex-start;align-items:center;}
@@ -22,9 +22,9 @@
 .active .snb_select{width:100%;height:auto;left:0;border:1px solid #f0f0f0;}
 
 .company .sub_visual{background:url(/publish/usr/images/company/visual.jpg) center;}
-.major_result .sub_visual{background:url(/publish/usr/images/major_result/visual.jpg) center;}
-.platform_tech .sub_visual{background:url(/publish/usr/images/platform_tech/visual.jpg) center;}
-.community .sub_visual{background:url(/publish/usr/images/community/visual.jpg) center;}
+.platform_tech .sub_visual{background:url(/publish/usr/images/platform-tech/visual.jpg) center;}
+.pipeline .sub_visual{background:url(/publish/usr/images/pipeline/visual.jpg) center;}
+.achievement .sub_visual{background:url(/publish/usr/images/achievement/visual.jpg) center;}
 
 .con_title{display:flex;margin:80px 0 36px 0;flex-direction:column;}
 .con_title .summary{font-family:var(--secondary-title-font);font-size:24px;margin:0 0 12px 0;}
@@ -35,8 +35,8 @@
 
 
 /* ==================================================
-     Company
-  ================================================== */
+       Company
+ ================================================== */
 
 /* 설립배경 */
 .overview{text-align:center;}
@@ -122,8 +122,10 @@
 
 
 /* ==================================================
-     Major Result
+     Platform Technologies
   ================================================== */
+.autophagy_common{padding:40px 20px;}
+.autophagy_common img{margin:0 auto;}
 
 .figure_content{display:flex;gap:65px;align-items:center;}
 .figure_content.column{flex-direction:column;align-items:flex-start;}
@@ -169,9 +171,9 @@
 .pipeline .graph5 span{width:calc((100% / 6)*5 - 100px);}
 
 
-.pipeline ul{display:flex;}
-.pipeline ul li{height:42px;border-right:1px dashed #bbc8ea;font-size:16px;font-weight:bold;flex-grow:1;}
-.pipeline ul li:last-child{border:0;}
+.pipeline table ul{display:flex;}
+.pipeline table ul li{height:42px;border-right:1px dashed #bbc8ea;font-size:16px;font-weight:bold;flex-grow:1;}
+.pipeline table ul li:last-child{border:0;}
 .pipeline tr:first-child ul li:nth-child(5){flex-grow:0.5;color:#3b5bb0;}
 
 .pipeline .purple+ul li{color:#5F48B0;}
@@ -179,22 +181,31 @@
 .pipeline .orange+ul li{color:#FF8748;}
 .pipeline .orange+ul li:nth-child(5){flex-grow:1.2;}
 
-
-
-
-/* ==================================================
-     Platform Tech
-  ================================================== */
 .dl_wrap{display:flex;width:100%;gap:32px;}
 .dl_wrap dl{width:50%;}
 .dl_wrap dt{font-size:20px;font-weight:700;text-align:center;padding:11px 36px;background:var(--secondary-light-color);border-radius:8px;}
 .dl_wrap dt span{display:block;font-size:16px;font-weight:400;}
 .dl_wrap dd{display:flex;height:calc(100% - 100px);background:#f2f4f6;border-radius:8px;margin:36px 0 0 0;justify-content:center;align-items:center;}
+.dl_wrap dd.dd_table{background:none;display:block;}
 .dl_wrap dd img{mix-blend-mode:darken;}
 
+.hts_system dt{display:flex;height:80px;font-size:24px;align-items:center;justify-content:center;}
+.hts_system table{table-layout:fixed;width:calc(100% + 24px);border-spacing:12px;border-collapse:separate;margin:0 0 0 -12px;}
+.hts_system thead th{font-family:var(--primary-title-font);font-size:20px;font-weight:500;padding:10px 0;background:#AFBCDF;border-radius:8px;word-break:break-all;}
+.hts_system thead th img{margin:0 auto;}
 
-/* background */
-.background .figure_content .box img{mix-blend-mode:normal;}
+.hts_system tr>th,.hts_system tr>td{height:84px;padding:10px 0;border-radius:8px;font-size:20px;font-weight:500;line-height:1.2;text-align:center;word-break:break-all;}
+.hts_system tbody th{background:#f4f4f4;}
+.hts_system tbody td{position:relative;background:#fff;}
+
+.hts_system .blue{background:#deebf7;}
+.hts_system .orange{background:#FBE5D6;}
+.hts_system .gray{background:#F2F2F2;}
+.hts_system .green{background:#DEE8DB;}
+
+.hts_system .legend{display:flex;font-size:18px;font-weight:500;margin:10px 0 0 0;align-items:center;gap:20px;justify-content:center;}
+.hts_system .legend i{display:inline-block;width:12px;height:12px;margin:0 6px 0 0;border-radius:100%;}
+
 
 /* autophagy */
 .step_ul{display:flex;width:100%;align-items:center;gap:12px;}
@@ -210,18 +221,18 @@
 @media (max-width: 1400px){
 
   /* ==================================================
-     공통레이아웃
-  ================================================== */
-  .sub_visual_nav{width:80%;}
+    공통레이아웃
+ ================================================== */
+ .sub_visual_nav{width:80%;}
 
-  /* ==================================================
-     Company
-  ================================================== */
+ /* ==================================================
+    Company
+ ================================================== */
 
-  /* 설립배경 */
-  .overview .card li{width:calc((100% / 4) - 60px);}
+ /* 설립배경 */
+ .overview .card li{width:calc((100% / 4) - 60px);}
 
-  /* 오시는 길 */
+ /* 오시는 길 */
   .location_area{width:660px;}
 
 
@@ -231,71 +242,66 @@
 @media (max-width: 1280px){
 
    /* ==================================================
-     공통레이아웃
-  ================================================== */
-  .sub_title{font-size:40px;}
-  .sub_visual{height:480px;}
-  .sub_visual_nav{width:65%;}
-  .sub_visual_nav .snb_wrap{width:calc(100% - 66px);}
-  .con_title{margin:80px 0 16px 0;}
-  .con_title .title{font-size:28px;}
-  .con_title .summary{font-size:20px;}
+    공통레이아웃
+ ================================================== */
+ .sub_title{font-size:40px;}
+ .sub_visual{height:480px;}
+ .sub_visual_nav{width:65%;}
+ .sub_visual_nav .snb_wrap{width:calc(100% - 66px);}
+ .con_title{margin:80px 0 16px 0;}
+ .con_title .title{font-size:28px;}
+ .con_title .summary{font-size:20px;}
 
-  .platform_tech .sub_visual{background-position:75% center;}
+ .platform_tech .sub_visual{background-position:75% center;}
 
-  /* ==================================================
-     Company
-  ================================================== */
+ /* ==================================================
+    Company
+ ================================================== */
 
-  /* 설립배경 */
-  .overview .card{flex-wrap:wrap;}
-  .overview .card li{width:calc((100% / 2) - 60px);height:485px;}
-  .overview .card li:nth-child(1),.overview .card li:nth-child(2),.overview .card li:nth-child(3),.overview .card li:nth-child(4){background-size:cover;}
+ /* 설립배경 */
+ .overview .card{flex-wrap:wrap;}
+ .overview .card li{width:calc((100% / 2) - 60px);height:485px;}
+ .overview .card li:nth-child(1),.overview .card li:nth-child(2),.overview .card li:nth-child(3),.overview .card li:nth-child(4){background-size:cover;}
 
-  .overview .circles, .overview .circles .left{flex-direction:column;}
-  .overview .circles{gap:120px;}
-  .overview .circles::after{width:1px;height:45%;right:50%;bottom:0;transform:translateX(-50%);}
-  .overview .circles .left::after{left:50%;bottom:-8px;top:auto;transform:translateX(-50%);}
-  .overview .circles .right::after{left:50%;top:-8px;transform:translateX(-50%);}
-  .overview .circle.line:last-child{margin:-60px 0 0 0;}
-  .overview .circle.line:first-child::after{bottom:10px;right:45%;transform:translateX(-50%);}
+ .overview .circles, .overview .circles .left{flex-direction:column;}
+ .overview .circles{gap:120px;}
+ .overview .circles::after{width:1px;height:45%;right:50%;bottom:0;transform:translateX(-50%);}
+ .overview .circles .left::after{left:50%;bottom:-8px;top:auto;transform:translateX(-50%);}
+ .overview .circles .right::after{left:50%;top:-8px;transform:translateX(-50%);}
+ .overview .circle.line:last-child{margin:-60px 0 0 0;}
+ .overview .circle.line:first-child::after{bottom:10px;right:45%;transform:translateX(-50%);}
 
-  /* 오시는 길 */
-  .location_list>li{flex-wrap:wrap;gap:30px}
-  .location_area{width:100%;}
-  .location_list .info{width:100%;}
-  .location_list .boxs{flex-direction:row;}
-  .location_list .boxs li{width:50%;}
-  .location_list .boxs li:only-child{width:100%;}
-  
-  /* 연혁 */
-  .history_area{flex-direction:column;}
-  .history_year{display:none;}
-  .month_ul{position:relative;width:90%;padding:100px 0 0 0;margin:0 auto;}
-  .month_ul::after{position:absolute;content:"";width:100%;height:70px;top:0;font-family:var(--secondary-title-font);font-size:52px;font-weight:bold;}
-  .month_ul:last-child{margin:160px auto 0 auto;}
-  #year_2023::after{content:"2023";}
-  #year_2022::after{content:"2022";}
+ /* 오시는 길 */
+ .location_list>li{flex-wrap:wrap;gap:30px}
+ .location_area{width:100%;}
+ .location_list .info{width:100%;}
+ .location_list .boxs{flex-direction:row;}
+ .location_list .boxs li{width:50%;}
+ .location_list .boxs li:only-child{width:100%;}
+ 
+ /* 연혁 */
+ .history_area{flex-direction:column;}
+ .history_year{display:none;}
+ .month_ul{position:relative;width:90%;padding:100px 0 0 0;margin:0 auto;}
+ .month_ul::after{position:absolute;content:"";width:100%;height:70px;top:0;font-family:var(--secondary-title-font);font-size:52px;font-weight:bold;}
+ .month_ul:last-child{margin:160px auto 0 auto;}
+ #year_2023::after{content:"2023";}
+ #year_2022::after{content:"2022";}
 
-  /* ==================================================
-     Platform Tech
-  ================================================== */
+ /* ==================================================
+    Platform Tech
+ ================================================== */
 
-  /* autophagy */
+ /* autophagy */
   .step_ul{flex-wrap:wrap;}
   .step_ul li:not(.next){width:calc((100%/3) - 40px);}
   .step_ul li:nth-child(6){display:none;}
-
-  /* ==================================================
-     Major Result
-  ================================================== */
 
   .figure_desc{gap:12px;}
   .figure_desc li{font-size:20px;}
 
   .figure_content.column .box{margin:20px 0;}
 
-  /* Pipeline Summary */
   .pipeline .table_wrap{width:100%;overflow:auto;}
   .pipeline table{width:1024px;border-spacing:6px;}
   .pipeline tr>th, .pipeline tr>td{height:60px;font-size:14px;}
@@ -312,6 +318,11 @@
   .pipeline .graph4 span{width:calc((100% / 6)*4 - 60px);}
   .pipeline .graph5 span{width:calc((100% / 6)*5 - 60px);}
 
+  .hts_system .table_wrap{width:100%;overflow:auto;}
+  .hts_system table{width:1400px;}
+  .hts_system table th,.hts_system table td{font-size:16px;}
+  .hts_system .legend{font-size:16px;margin:26px 0 0 0;}
+
   .rd .figure_content.column{gap:0;}
 
 }
@@ -320,56 +331,56 @@
 @media (max-width: 768px){
 
   /* ==================================================
-     공통레이아웃
-  ================================================== */
-  .sub_visual{height:500px;border-radius:0 0 40px 40px;;}
-  .sub_visual_nav{height:66px;}
-  .sub_visual_nav>a{display:none;}
-  .sub_visual_nav .snb_wrap{width:calc(100% / 2);}
+    공통레이아웃
+ ================================================== */
+ .sub_visual{height:500px;border-radius:0 0 40px 40px;;}
+ .sub_visual_nav{height:66px;}
+ .sub_visual_nav>a{display:none;}
+ .sub_visual_nav .snb_wrap{width:calc(100% / 2);}
 
-  .con_title .title{font-size:28px;}
+ .con_title .title{font-size:28px;}
 
 
-  /* ==================================================
-     Company
-  ================================================== */
+ /* ==================================================
+    Company
+ ================================================== */
 
-  /* 설립배경 */
-  .overview .txt strong{font-size:40px;line-height:1.4;}
-  .overview .txt strong span{display:block;}
-  .overview .card{gap:20px;}
-  .overview .card li{width:calc((100% / 2) - 20px);height:400px;}
+ /* 설립배경 */
+ .overview .txt strong{font-size:40px;line-height:1.4;}
+ .overview .txt strong span{display:block;}
+ .overview .card{gap:20px;}
+ .overview .card li{width:calc((100% / 2) - 20px);height:400px;}
 
-  .figure_content.row{flex-direction:column;gap:20px;}
-  .figure_content.row .box{width:100%;}
+ .figure_content.row{flex-direction:column;gap:20px;}
+ .figure_content.row .box{width:100%;}
 
-  .figure_desc{width:100%;gap:12px;}
-  .figure_desc li{font-size:18px;}
-  .figure_desc.square li{text-indent:26px;background:url(/publish/usr/images/component/list_square.png) no-repeat left 4px;}
-  .figure_desc.circle li{text-indent:26px;background:url(/publish/usr/images/component/list_circle.png) no-repeat left 4px;background-size:auto 20px;}
+ .figure_desc{width:100%;gap:12px;}
+ .figure_desc li{font-size:18px;}
+ .figure_desc.square li{text-indent:26px;background:url(/publish/usr/images/component/list_square.png) no-repeat left 4px;}
+ .figure_desc.circle li{text-indent:26px;background:url(/publish/usr/images/component/list_circle.png) no-repeat left 4px;background-size:auto 20px;}
 
-  /* 조직도 */
-  .org_list{gap:20px}
-  .org_list>li{width:100%;}
+ /* 조직도 */
+ .org_list{gap:20px}
+ .org_list>li{width:100%;}
 
-  /* 오시는 길 */
-  .location_list .boxs{flex-direction:column;}
-  .location_list .boxs li{width:100%;}
-  
-  /* 연혁 */
-  .month_ul{padding:80px 0 0 0;}
-  .month_ul::after{font-size:36px;}
+ /* 오시는 길 */
+ .location_list .boxs{flex-direction:column;}
+ .location_list .boxs li{width:100%;}
+ 
+ /* 연혁 */
+ .month_ul{padding:80px 0 0 0;}
+ .month_ul::after{font-size:36px;}
 
-  .month_ul .month{width:60px;font-size:20px;}
-  .month_ul dl{padding:20px 0;gap:20px;}
-  .month_ul dt{padding:2px 0 0 0;}
-  .month_ul dd p:nth-child(n+2){margin:18px 0 0 0;}
-  .month_ul strong{font-size:18px;}
-  .month_ul .summary{font-size:16px;}
+ .month_ul .month{width:60px;font-size:20px;}
+ .month_ul dl{padding:20px 0;gap:20px;}
+ .month_ul dt{padding:2px 0 0 0;}
+ .month_ul dd p:nth-child(n+2){margin:18px 0 0 0;}
+ .month_ul strong{font-size:18px;}
+ .month_ul .summary{font-size:16px;}
 
-  /* ==================================================
-     Platform Tech
-  ================================================== */
+ /* ==================================================
+    Platform Tech
+ ================================================== */
   .dl_wrap{flex-direction:column;gap:60px;}
   .dl_wrap dl{width:100%;}
   .dl_wrap dd{margin:20px 0 0 0;;}
@@ -379,46 +390,47 @@
 
 
   /* ==================================================
-     공통레이아웃
-  ================================================== */
-  .sub_visual_nav .snb_wrap{width:100%;}
-  .sub_visual_nav .snb_wrap:nth-child(2){display:none;}
-  .content_title h3{font-size:40px;}
+    공통레이아웃
+ ================================================== */
+ .sub_visual_nav .snb_wrap{max-width:100%;}
+ .sub_visual_nav .snb_wrap:not(:last-child){display:none;}
+ .content_title h3{font-size:32px;}
+ .con_title .title{font-size:20px;}
 
 
-  /* ==================================================
-     Company
-  ================================================== */
+ /* ==================================================
+    Company
+ ================================================== */
 
-  /* 설립배경 */
-  .overview .txt strong{font-size:28px;}
-  .overview .txt p{font-size:18px;margin:8px 0 0 0;}
-  .overview .card{gap:36px;padding:90px 0 120px 0;}
-  .overview .card li{width:100%;}
-  .overview .card li:nth-child(2n){transform:none;;}
-  .overview .card .title br{display:none;}
+ /* 설립배경 */
+ .overview .txt strong{font-size:28px;}
+ .overview .txt p{font-size:18px;margin:8px 0 0 0;}
+ .overview .card{gap:36px;padding:90px 0 120px 0;}
+ .overview .card li{width:100%;}
+ .overview .card li:nth-child(2n){transform:none;;}
+ .overview .card .title br{display:none;}
 
-  .overview .circles{padding:0;margin:40px 0 80px 0;gap:60px;}
-  .overview .circles::after{height:50%;right:49.5%;}
-  .overview .circle.line{width:200px;height:200px;font-size:18px;}
-  .overview .circle.line:last-child{margin:-40px 0 0 0;}
-  .overview .circle.line:first-child::after{height:20px;font-size:24px;bottom:14px;right:40%;}
-  .overview .circle.fill{width:260px;height:260px;font-size:20px;;}
-  .overview .circle.fill::after{width:calc(100% + 20px);height:calc(100% + 20px);left:-10px;top:-10px;background-size:100% auto;}
-  .overview .circles .left::after, .overview .circles .right::after{width:12px;height:12px;}
-  .overview .circles .left::after{bottom:-5px;}
-  
-  /* 오시는 길 */
-  .location_list .title{font-size:20px;margin:0 0 10px 0;gap:8px;}
-  .location_list .info p{font-size:16px;}
-  .location_list .btn_map,.location_list .boxs li{height:60px;font-size:16px;}
-  .location_list .location{width:22px;height:22px;background-size:contain;}
+ .overview .circles{padding:0;margin:40px 0 80px 0;gap:60px;}
+ .overview .circles::after{height:50%;right:49.5%;}
+ .overview .circle.line{width:200px;height:200px;font-size:18px;}
+ .overview .circle.line:last-child{margin:-40px 0 0 0;}
+ .overview .circle.line:first-child::after{height:20px;font-size:24px;bottom:14px;right:40%;}
+ .overview .circle.fill{width:260px;height:260px;font-size:20px;;}
+ .overview .circle.fill::after{width:calc(100% + 20px);height:calc(100% + 20px);left:-10px;top:-10px;background-size:100% auto;}
+ .overview .circles .left::after, .overview .circles .right::after{width:12px;height:12px;}
+ .overview .circles .left::after{bottom:-5px;}
+ 
+ /* 오시는 길 */
+ .location_list .title{font-size:20px;margin:0 0 10px 0;gap:8px;}
+ .location_list .info p{font-size:16px;}
+ .location_list .btn_map,.location_list .boxs li{height:60px;font-size:16px;}
+ .location_list .location{width:22px;height:22px;background-size:contain;}
 
-  /* ==================================================
-     Platform Tech
-  ================================================== */
+ /* ==================================================
+    Platform Tech
+ ================================================== */
 
-  /* autophagy */
+ /* autophagy */
   .step_ul{flex-direction:column;}
   .step_ul li:not(.next){width:100%;}
   .step_ul li.next img{transform:rotate(90deg);}
@@ -426,12 +438,12 @@
 }
 
 @media (max-width: 500px){
-	
+   
  /* ==================================================
-    Company
- ================================================== */
- 
- /* 연혁 */
+   Company
+================================================== */
+
+/* 연혁 */
  .month_ul dl{flex-direction:column;gap:12px;}
  .month_ul dd{width:100%;}
 }
(No newline at end of file)
 
src/main/webapp/publish/usr/images/achievement/visual.jpg (Binary) (added)
+++ src/main/webapp/publish/usr/images/achievement/visual.jpg
Binary file is not shown
 
src/main/webapp/publish/usr/images/pipeline/polygon_blue.png (Binary) (added)
+++ src/main/webapp/publish/usr/images/pipeline/polygon_blue.png
Binary file is not shown
 
src/main/webapp/publish/usr/images/pipeline/polygon_orange.png (Binary) (added)
+++ src/main/webapp/publish/usr/images/pipeline/polygon_orange.png
Binary file is not shown
 
src/main/webapp/publish/usr/images/pipeline/polygon_purple.png (Binary) (added)
+++ src/main/webapp/publish/usr/images/pipeline/polygon_purple.png
Binary file is not shown
 
src/main/webapp/publish/usr/images/pipeline/visual.jpg (Binary) (added)
+++ src/main/webapp/publish/usr/images/pipeline/visual.jpg
Binary file is not shown
 
src/main/webapp/publish/usr/images/pipeline/visual_mobile.jpg (Binary) (added)
+++ src/main/webapp/publish/usr/images/pipeline/visual_mobile.jpg
Binary file is not shown
 
src/main/webapp/publish/usr/images/platform-tech/ahr_1.png (Binary) (added)
+++ src/main/webapp/publish/usr/images/platform-tech/ahr_1.png
Binary file is not shown
 
src/main/webapp/publish/usr/images/platform-tech/ahr_2.png (Binary) (added)
+++ src/main/webapp/publish/usr/images/platform-tech/ahr_2.png
Binary file is not shown
 
src/main/webapp/publish/usr/images/platform-tech/autophagy_common.png (Binary) (added)
+++ src/main/webapp/publish/usr/images/platform-tech/autophagy_common.png
Binary file is not shown
 
src/main/webapp/publish/usr/images/platform-tech/autophagy_images.jpg (Binary) (added)
+++ src/main/webapp/publish/usr/images/platform-tech/autophagy_images.jpg
Binary file is not shown
 
src/main/webapp/publish/usr/images/platform-tech/ciliogenesis_1.png (Binary) (added)
+++ src/main/webapp/publish/usr/images/platform-tech/ciliogenesis_1.png
Binary file is not shown
 
src/main/webapp/publish/usr/images/platform-tech/ciliogenesis_2.png (Binary) (added)
+++ src/main/webapp/publish/usr/images/platform-tech/ciliogenesis_2.png
Binary file is not shown
 
src/main/webapp/publish/usr/images/platform-tech/ciliogenesis_3.png (Binary) (added)
+++ src/main/webapp/publish/usr/images/platform-tech/ciliogenesis_3.png
Binary file is not shown
 
src/main/webapp/publish/usr/images/platform-tech/ciliogenesis_4.png (Binary) (added)
+++ src/main/webapp/publish/usr/images/platform-tech/ciliogenesis_4.png
Binary file is not shown
 
src/main/webapp/publish/usr/images/platform-tech/hts_1.png (Binary) (added)
+++ src/main/webapp/publish/usr/images/platform-tech/hts_1.png
Binary file is not shown
 
src/main/webapp/publish/usr/images/platform-tech/hts_table_1.png (Binary) (added)
+++ src/main/webapp/publish/usr/images/platform-tech/hts_table_1.png
Binary file is not shown
 
src/main/webapp/publish/usr/images/platform-tech/hts_table_2.png (Binary) (added)
+++ src/main/webapp/publish/usr/images/platform-tech/hts_table_2.png
Binary file is not shown
 
src/main/webapp/publish/usr/images/platform-tech/hts_table_3.png (Binary) (added)
+++ src/main/webapp/publish/usr/images/platform-tech/hts_table_3.png
Binary file is not shown
 
src/main/webapp/publish/usr/images/platform-tech/hts_table_4.png (Binary) (added)
+++ src/main/webapp/publish/usr/images/platform-tech/hts_table_4.png
Binary file is not shown
 
src/main/webapp/publish/usr/images/platform-tech/hts_table_5.png (Binary) (added)
+++ src/main/webapp/publish/usr/images/platform-tech/hts_table_5.png
Binary file is not shown
 
src/main/webapp/publish/usr/images/platform-tech/hts_table_6.png (Binary) (added)
+++ src/main/webapp/publish/usr/images/platform-tech/hts_table_6.png
Binary file is not shown
 
src/main/webapp/publish/usr/images/platform-tech/hts_table_7.png (Binary) (added)
+++ src/main/webapp/publish/usr/images/platform-tech/hts_table_7.png
Binary file is not shown
 
src/main/webapp/publish/usr/images/platform-tech/melanophagy_1.png (Binary) (added)
+++ src/main/webapp/publish/usr/images/platform-tech/melanophagy_1.png
Binary file is not shown
 
src/main/webapp/publish/usr/images/platform-tech/melanophagy_2.png (Binary) (added)
+++ src/main/webapp/publish/usr/images/platform-tech/melanophagy_2.png
Binary file is not shown
 
src/main/webapp/publish/usr/images/platform-tech/melanophagy_3.png (Binary) (added)
+++ src/main/webapp/publish/usr/images/platform-tech/melanophagy_3.png
Binary file is not shown
 
src/main/webapp/publish/usr/images/platform-tech/melanophagy_4.png (Binary) (added)
+++ src/main/webapp/publish/usr/images/platform-tech/melanophagy_4.png
Binary file is not shown
 
src/main/webapp/publish/usr/images/platform-tech/mitophagy_1.png (Binary) (added)
+++ src/main/webapp/publish/usr/images/platform-tech/mitophagy_1.png
Binary file is not shown
 
src/main/webapp/publish/usr/images/platform-tech/mitophagy_2.png (Binary) (added)
+++ src/main/webapp/publish/usr/images/platform-tech/mitophagy_2.png
Binary file is not shown
 
src/main/webapp/publish/usr/images/platform-tech/mitophagy_3.png (Binary) (added)
+++ src/main/webapp/publish/usr/images/platform-tech/mitophagy_3.png
Binary file is not shown
 
src/main/webapp/publish/usr/images/platform-tech/mitophagy_4.png (Binary) (added)
+++ src/main/webapp/publish/usr/images/platform-tech/mitophagy_4.png
Binary file is not shown
 
src/main/webapp/publish/usr/images/platform-tech/mitophagy_5.png (Binary) (added)
+++ src/main/webapp/publish/usr/images/platform-tech/mitophagy_5.png
Binary file is not shown
 
src/main/webapp/publish/usr/images/platform-tech/pexophagy_1.png (Binary) (added)
+++ src/main/webapp/publish/usr/images/platform-tech/pexophagy_1.png
Binary file is not shown
 
src/main/webapp/publish/usr/images/platform-tech/pexophagy_2.png (Binary) (added)
+++ src/main/webapp/publish/usr/images/platform-tech/pexophagy_2.png
Binary file is not shown
 
src/main/webapp/publish/usr/images/platform-tech/pexophagy_3.png (Binary) (added)
+++ src/main/webapp/publish/usr/images/platform-tech/pexophagy_3.png
Binary file is not shown
 
src/main/webapp/publish/usr/images/platform-tech/polygon_blue.png (Binary) (added)
+++ src/main/webapp/publish/usr/images/platform-tech/polygon_blue.png
Binary file is not shown
 
src/main/webapp/publish/usr/images/platform-tech/polygon_orange.png (Binary) (added)
+++ src/main/webapp/publish/usr/images/platform-tech/polygon_orange.png
Binary file is not shown
 
src/main/webapp/publish/usr/images/platform-tech/polygon_purple.png (Binary) (added)
+++ src/main/webapp/publish/usr/images/platform-tech/polygon_purple.png
Binary file is not shown
 
src/main/webapp/publish/usr/images/platform-tech/visual.jpg (Binary) (added)
+++ src/main/webapp/publish/usr/images/platform-tech/visual.jpg
Binary file is not shown
 
src/main/webapp/publish/usr/images/platform-tech/visual_mobile.jpg (Binary) (added)
+++ src/main/webapp/publish/usr/images/platform-tech/visual_mobile.jpg
Binary file is not shown
src/main/webapp/publish/usr/layout/layout.css
--- src/main/webapp/publish/usr/layout/layout.css
+++ src/main/webapp/publish/usr/layout/layout.css
@@ -25,10 +25,11 @@
 .header_container .active .depth02_container{max-height:100vh;opacity:1;visibility:visible;}
 .header_container .depth02_ul{display:flex;max-width:1440px;margin:0 auto;padding:16px 0;gap:30px;justify-content:center;}
 .header_container .depth02_ul>li{width:auto;}
-.header_container .gnb a.depth02{display:flex;width:100%;height:50px;font-size:18px;font-weight:400;color:#222;text-align:center;padding:0 18px;border-radius:8px;justify-content:center;align-items:center;}
+.header_container .gnb a.depth02{display:flex;width:100%;height:50px;font-size:18px;font-weight:500;color:#222;text-align:center;padding:0 18px;border-radius:8px;justify-content:center;align-items:center;}
 .header_container .gnb a.depth02:hover{color:var(--primary-color);background:var(--primary-light-color);}
 .header_container .depth03_ul{display:flex;margin:8px 0 0 0;flex-direction:column;gap:8px;text-align:center;}
 .header_container .depth03_ul a.depth03{font-size:16px;font-weight:300;}
+.header_container .depth03_ul a.depth03:hover{color:var(--primary-color);}
 
 
 .header_util{display:flex;gap:12px;align-items:center;}
@@ -61,11 +62,13 @@
 .mobile_nav .depth02_ul{display:flex;padding:20px;background:#f2f4f6;flex-direction:column;gap:8px;}
 .mobile_nav .depth02_ul li{width:100%;}
 .mobile_nav a.depth02{border:0;justify-content:flex-start;}
+.mobile_nav .depth03_ul{display:flex;background:#fff;border-radius:8px;padding:12px 24px;margin:8px 0;gap:4px;flex-direction:column;}
+.mobile_nav .depth03_ul:not(:has(li)){display:none;}
 
 
 
 /* footer */
-.footer{position:relative;width:100%;padding:60px 0;margin:0 0 0 0;background:#222427;border-radius:30px 30px 0 0;box-sizing:border-box;bottom:0;z-index:1;}
+.footer{position:relative;width:100%;padding:60px 0;margin:80px 0 0 0;background:#222427;border-radius:30px 30px 0 0;box-sizing:border-box;bottom:0;z-index:1;}
 .footer .inner{position:relative;display:flex;margin:0 auto;justify-content:flex-start;align-items:center;gap:32px;}
 .footer .footer_left{display:flex;flex-direction:column;gap:50px;}
 .footer .footer_logo{mix-blend-mode:luminosity;}
@@ -90,8 +93,11 @@
 .sitemap .sitemenu .depth01{display:flex;width:100%;height:80px;padding:0 20px;margin:0;font-family:var(--secondary-title-font);font-size:32px;font-weight:bold;color:var(--primary-color);align-items:center;}
 .sitemap .depth02_ul{display:flex;flex-direction:column;gap:12px;}
 .sitemap .depth02_ul li{width:100%;font-size:20px;text-align:center;}
-.sitemap a.depth02{display:flex;width:100%;padding:8px 0;border:0;border-radius:8px;justify-content:center;align-items:center;}
+.sitemap a.depth02{display:flex;width:100%;font-weight:600;padding:8px 0;border:0;border-radius:8px;justify-content:center;align-items:center;}
 .sitemap a.depth02:hover{color:var(--primary-color);background:var(--primary-light-color);}
+.sitemap .depth03_ul{display:flex;margin:8px 0 10px 0;flex-direction:column;gap:8px;}
+.sitemap .depth03_ul a{font-size:16px;}
+.sitemap .depth03_ul a:hover{color:var(--primary-color);}
 
 
 
 
src/main/webapp/publish/usr/major_result/ciliogenesis.html (deleted)
--- src/main/webapp/publish/usr/major_result/ciliogenesis.html
@@ -1,120 +0,0 @@
-<!DOCTYPE html>
-<html lang="ko">
-
-<head>
-  <meta charset="UTF-8">
-  <meta name="viewport" content="width=device-width, initial-scale=1.0">
-  <title>major result > Ciliogenesis</title>
-
-  <!-- css -->
-  <link rel="stylesheet" href="../../../css/reset.css">
-  <link rel="stylesheet" href="../../../css/font.css">
-  <link rel="stylesheet" href="../layout/layout.css">
-  <link rel="stylesheet" href="../css/common.css">
-  <link rel="stylesheet" href="../css/style.css">
-  <link rel="stylesheet" href="../css/content.css">
-  <!-- //css -->
-
-  <!-- script -->
-  <script src="../../../js/jquery-3.5.0.js"></script>
-  <script src="../script/common.js"></script>
-  <script src="../layout/layout.js"></script>
-  <!-- //script -->
-
-  <!-- 캘린더 -->
-  <script type="module" src="../../../js/plugin/datapicker/duet.esm.js"></script>
-  <script nomodule src="../../../js/plugin/datapicker/duet.js"></script>
-  <link rel="stylesheet" href="../../../js/plugin/datapicker/default.css">
-
-
-</head>
-
-<body data-section="major_result">
-
-
-  <div class="wrap">
-    <div data-include-path="../layout/_header.html"></div>
-
-    <div id="container" class="container sub major_result">
-      <div class="sub_visual">
-        <div class="inner">
-          <h2 class="sub_title" data-section="major_result">MAJOR RESULT</h2>
-          <div class="sub_visual_nav">
-            <a href="../index.html"><i class="icon home"></i></a>
-            <div class="snb_wrap">
-              <button type="button" class="snb_title">메뉴</button>
-              <ul class="snb_select">
-                <li><a href="#">COMPANY</a></li>
-                <li><a href="#">Platform Tech</a></li>
-                <li><a href="#">Major Result</a></li>
-              </ul>
-            </div>
-            <div class="snb_wrap">
-              <button type="button" class="snb_title">메뉴</button>
-              <ul class="snb_select">
-                <li><a href="#">1depth</a></li>
-                <li><a href="#">1depth</a></li>
-                <li><a href="#">1depth</a></li>
-              </ul>
-            </div>
-          </div>
-        </div>
-      </div>
-      <div class="inner">
-        <div class="content_wrap mitophagy">
-
-          <div class="contents">
-
-            <div class="content_title">
-              <h3>Ciliogenesis</h3>
-            </div>
-
-            <div class="con_title">
-              <strong class="title">Ciliogenesis inducer screening platforms</strong>
-            </div>
-            
-            <div class="figure_content column">
-              
-              <ul class="figure_desc square">
-                <li>Global first target & M.O.A</li>
-                <li>Pharma : first reveal the relationship of target gene 8 ciliogenesis</li>
-                <li>Cosmetic : first define the effect P.M of through cilia</li>
-                <li>
-                  Molecules (2021), Sci Rep (2019), PLoS One (2016)
-                  <div class="box">
-                    <img src="../images/major_result/ciliogenesis_1.png" alt="">
-                  </div>
-                  <div class="box">
-                    <img src="../images/major_result/ciliogenesis_2.png" alt="">
-                  </div>
-                </li>
-                <li>
-                  SH-SY5Y 신경세포주에서 primary cilia (일차섬모) 유도인자 처리에 따른 섬모형성 증가
-                  <div class="box">
-                    <img src="../images/major_result/ciliogenesis_3.png" alt="">
-                  </div>
-                </li>
-                
-              </ul>
-
-              
-
-            </div>
-
-
-          </div>
-
-
-        </div>
-      </div>
-    </div>
-
-
-
-    <div data-include-path="../layout/_footer.html"></div>
-  </div>
-
-
-</body>
-
-</html>(No newline at end of file)
 
src/main/webapp/publish/usr/major_result/melanophagy.html (deleted)
--- src/main/webapp/publish/usr/major_result/melanophagy.html
@@ -1,135 +0,0 @@
-<!DOCTYPE html>
-<html lang="ko">
-
-<head>
-  <meta charset="UTF-8">
-  <meta name="viewport" content="width=device-width, initial-scale=1.0">
-  <title>major result > melanophagy</title>
-
-  <!-- css -->
-  <link rel="stylesheet" href="../../../css/reset.css">
-  <link rel="stylesheet" href="../../../css/font.css">
-  <link rel="stylesheet" href="../layout/layout.css">
-  <link rel="stylesheet" href="../css/common.css">
-  <link rel="stylesheet" href="../css/style.css">
-  <link rel="stylesheet" href="../css/content.css">
-  <!-- //css -->
-
-  <!-- script -->
-  <script src="../../../js/jquery-3.5.0.js"></script>
-  <script src="../script/common.js"></script>
-  <script src="../layout/layout.js"></script>
-  <!-- //script -->
-
-  <!-- 캘린더 -->
-  <script type="module" src="../../../js/plugin/datapicker/duet.esm.js"></script>
-  <script nomodule src="../../../js/plugin/datapicker/duet.js"></script>
-  <link rel="stylesheet" href="../../../js/plugin/datapicker/default.css">
-
-
-</head>
-
-<body data-section="major_result">
-
-
-  <div class="wrap">
-    <div data-include-path="../layout/_header.html"></div>
-
-    <div id="container" class="container sub major_result">
-      <div class="sub_visual">
-        <div class="inner">
-          <h2 class="sub_title" data-section="major_result">MAJOR RESULT</h2>
-          <div class="sub_visual_nav">
-            <a href="../index.html"><i class="icon home"></i></a>
-            <div class="snb_wrap">
-              <button type="button" class="snb_title">메뉴</button>
-              <ul class="snb_select">
-                <li><a href="#">COMPANY</a></li>
-                <li><a href="#">Platform Tech</a></li>
-                <li><a href="#">Major Result</a></li>
-              </ul>
-            </div>
-            <div class="snb_wrap">
-              <button type="button" class="snb_title">메뉴</button>
-              <ul class="snb_select">
-                <li><a href="#">1depth</a></li>
-                <li><a href="#">1depth</a></li>
-                <li><a href="#">1depth</a></li>
-              </ul>
-            </div>
-          </div>
-        </div>
-      </div>
-      <div class="inner">
-        <div class="content_wrap mitophagy">
-
-          <div class="contents">
-
-            <div class="content_title">
-              <h3>Melanophagy</h3>
-            </div>
-
-            <div class="con_title">
-              <span class="text_primary summary">Melanophagy Inducer</span>
-              <strong class="title">Melanophagy Disease</strong>
-            </div>
-            
-            <div class="figure_content row">
-              <div class="box">
-                <img src="../images/major_result/melanophagy_1.png" alt="">
-              </div>
-              <ul class="figure_desc circle">
-                <li>Vitiligo</li>
-                <li>Melanoma</li>
-                <li>Freckles</li>
-              </ul>
-            </div>
-            
-            <div class="con_title">
-              <strong class="title">Melaophagy inducer screening platforms</strong>
-            </div>
-
-            <div class="figure_content column">
-              
-              <ul class="figure_desc square">
-                <li>Selective melanin modulator I.D</li>
-                <li>Nomenclature ‘melanophagy& co-Research with major comp.</li>
-                <li>
-                  PLoS One (2020) BBRC (2019)
-                  <div class="box">
-                    <img src="../images/major_result/melanophagy_2.png" alt="">
-                  </div>
-                </li>
-                <li>
-                  멜라노파지 모니터링 플랫폼 (B16F1/mRFP-EGFP 세포주)에서 melanophagy inducer 처리에 따른 멜라노파지 증가와 멜라닌 감소
-                  <div class="box">
-                    <img src="../images/major_result/melanophagy_3.png" alt="">
-                  </div>
-                  <div class="box">
-                    <img src="../images/major_result/melanophagy_4.png" alt="">
-                  </div>
-                </li>
-                
-              </ul>
-
-              
-
-            </div>
-
-
-          </div>
-
-
-        </div>
-      </div>
-    </div>
-
-
-
-    <div data-include-path="../layout/_footer.html"></div>
-  </div>
-
-
-</body>
-
-</html>(No newline at end of file)
 
src/main/webapp/publish/usr/major_result/mitophagy.html (deleted)
--- src/main/webapp/publish/usr/major_result/mitophagy.html
@@ -1,145 +0,0 @@
-<!DOCTYPE html>
-<html lang="ko">
-
-<head>
-  <meta charset="UTF-8">
-  <meta name="viewport" content="width=device-width, initial-scale=1.0">
-  <title>major result > mitophagy</title>
-
-  <!-- css -->
-  <link rel="stylesheet" href="../../../css/reset.css">
-  <link rel="stylesheet" href="../../../css/font.css">
-  <link rel="stylesheet" href="../layout/layout.css">
-  <link rel="stylesheet" href="../css/common.css">
-  <link rel="stylesheet" href="../css/style.css">
-  <link rel="stylesheet" href="../css/content.css">
-  <!-- //css -->
-
-  <!-- script -->
-  <script src="../../../js/jquery-3.5.0.js"></script>
-  <script src="../script/common.js"></script>
-  <script src="../layout/layout.js"></script>
-  <!-- //script -->
-
-  <!-- 캘린더 -->
-  <script type="module" src="../../../js/plugin/datapicker/duet.esm.js"></script>
-  <script nomodule src="../../../js/plugin/datapicker/duet.js"></script>
-  <link rel="stylesheet" href="../../../js/plugin/datapicker/default.css">
-
-
-</head>
-
-<body data-section="major_result">
-
-
-  <div class="wrap">
-    <div data-include-path="../layout/_header.html"></div>
-
-    <div id="container" class="container sub major_result">
-      <div class="sub_visual">
-        <div class="inner">
-          <h2 class="sub_title" data-section="major_result">MAJOR RESULT</h2>
-          <div class="sub_visual_nav">
-            <a href="../index.html"><i class="icon home"></i></a>
-            <div class="snb_wrap">
-              <button type="button" class="snb_title">메뉴</button>
-              <ul class="snb_select">
-                <li><a href="#">COMPANY</a></li>
-                <li><a href="#">Platform Tech</a></li>
-                <li><a href="#">Major Result</a></li>
-              </ul>
-            </div>
-            <div class="snb_wrap">
-              <button type="button" class="snb_title">메뉴</button>
-              <ul class="snb_select">
-                <li><a href="#">1depth</a></li>
-                <li><a href="#">1depth</a></li>
-                <li><a href="#">1depth</a></li>
-              </ul>
-            </div>
-          </div>
-        </div>
-      </div>
-      <div class="inner">
-        <div class="content_wrap mitophagy">
-
-          <div class="contents">
-
-            <div class="content_title">
-              <h3>Mitophagy</h3>
-            </div>
-
-            <div class="con_title">
-              <span class="text_primary summary">Mitophagy Inducer</span>
-              <strong class="title">Mitophagy : Not only Parkinson's disease</strong>
-            </div>
-            
-            <div class="figure_content row">
-              <div class="box">
-                <img src="../images/major_result/mitophagy_1.png" alt="">
-              </div>
-              <ul class="figure_desc circle">
-                <li>Alzheimer’s disease</li>
-                <li>Autism spectrum disorder</li>
-                <li>Alcoholic Liver Disease</li>
-                <li>Diabetic Kidney Disease (DKD)...</li>
-              </ul>
-            </div>
-            
-            <div class="con_title">
-              <strong class="title">Mitophagy inducer screening for various library</strong>
-            </div>
-
-            <div class="figure_content column">
-              
-              <ul class="figure_desc square">
-                <li>’20yr research (Science 2009 외 30여편)</li>
-                <li>Selective mitophagy modulator I.D</li>
-                <li>
-                  Global R&D Project / lead comp. I.D
-                  <div class="box">
-                    <img src="../images/major_result/mitophagy_2.png" alt="">
-                  </div>
-                </li>
-                <li>
-                  신경세포주 SH-SY5Y/GFP-Parkin 세포주에 mitophagy inducer 처리에 따른 Parkin 의존적 mitophagy 증가
-                  <div class="box">
-                    <img src="../images/major_result/mitophagy_3.png" alt="">
-                  </div>
-                </li>
-                <li>
-                  마이토파지 모니터링 플랫폼 (HeLa/mCherry-Hluorin-Fis1세포주)에서 mitophagy inducer 처리에 따른 마이토파지 증가
-                  <div class="box">
-                    <img src="../images/major_result/mitophagy_4.png" alt="">
-                  </div>
-                </li>
-                <li>
-                  마이토파지 모니터링 플랫폼 (SH-SY5Y/mKeima) 세포주)에서 mitophagy Inducer 처리에 따른 마이토파지 증가
-                  <div class="box">
-                    <img src="../images/major_result/mitophagy_5.png" alt="">
-                  </div>
-                </li>
-                
-              </ul>
-
-              
-
-            </div>
-
-
-          </div>
-
-
-        </div>
-      </div>
-    </div>
-
-
-
-    <div data-include-path="../layout/_footer.html"></div>
-  </div>
-
-
-</body>
-
-</html>(No newline at end of file)
 
src/main/webapp/publish/usr/major_result/rd.html (deleted)
--- src/main/webapp/publish/usr/major_result/rd.html
@@ -1,107 +0,0 @@
-<!DOCTYPE html>
-<html lang="ko">
-
-<head>
-  <meta charset="UTF-8">
-  <meta name="viewport" content="width=device-width, initial-scale=1.0">
-  <title>major result > R&D</title>
-
-  <!-- css -->
-  <link rel="stylesheet" href="../../../css/reset.css">
-  <link rel="stylesheet" href="../../../css/font.css">
-  <link rel="stylesheet" href="../layout/layout.css">
-  <link rel="stylesheet" href="../css/common.css">
-  <link rel="stylesheet" href="../css/style.css">
-  <link rel="stylesheet" href="../css/content.css">
-  <!-- //css -->
-
-  <!-- script -->
-  <script src="../../../js/jquery-3.5.0.js"></script>
-  <script src="../script/common.js"></script>
-  <script src="../layout/layout.js"></script>
-  <!-- //script -->
-
-  <!-- 캘린더 -->
-  <script type="module" src="../../../js/plugin/datapicker/duet.esm.js"></script>
-  <script nomodule src="../../../js/plugin/datapicker/duet.js"></script>
-  <link rel="stylesheet" href="../../../js/plugin/datapicker/default.css">
-
-
-</head>
-
-<body data-section="major_result">
-
-
-  <div class="wrap">
-    <div data-include-path="../layout/_header.html"></div>
-
-    <div id="container" class="container sub major_result">
-      <div class="sub_visual">
-        <div class="inner">
-          <h2 class="sub_title" data-section="major_result">MAJOR RESULT</h2>
-          <div class="sub_visual_nav">
-            <a href="../index.html"><i class="icon home"></i></a>
-            <div class="snb_wrap">
-              <button type="button" class="snb_title">메뉴</button>
-              <ul class="snb_select">
-                <li><a href="#">COMPANY</a></li>
-                <li><a href="#">Platform Tech</a></li>
-                <li><a href="#">Major Result</a></li>
-              </ul>
-            </div>
-            <div class="snb_wrap">
-              <button type="button" class="snb_title">메뉴</button>
-              <ul class="snb_select">
-                <li><a href="#">1depth</a></li>
-                <li><a href="#">1depth</a></li>
-                <li><a href="#">1depth</a></li>
-              </ul>
-            </div>
-          </div>
-        </div>
-      </div>
-      <div class="inner">
-        <div class="content_wrap rd">
-
-          <div class="contents">
-
-            <div class="content_title">
-              <h3>R&D (OGS-101)</h3>
-            </div>
-
-            <div class="con_title">
-              <strong class="title">Mitophagy Inducer Screening _ Hit compound & Lead Optimization</strong>
-            </div>
-            
-            <div class="figure_content column">
-              <div class="box">
-                <img src="../images/major_result/rd_1.png" alt="">
-              </div>
-              <div class="box">
-                <img src="../images/major_result/rd_2.png" alt="">
-              </div>
-              <div class="box">
-                <img src="../images/major_result/rd_3.png" alt="">
-              </div>
-              <div class="box">
-                <img src="../images/major_result/rd_4.png" alt="">
-              </div>
-            </div>
-
-
-          </div>
-
-
-        </div>
-      </div>
-    </div>
-
-
-
-    <div data-include-path="../layout/_footer.html"></div>
-  </div>
-
-
-</body>
-
-</html>(No newline at end of file)
 
src/main/webapp/publish/usr/pipeline/active-ingredient/cosmetics.html (added)
+++ src/main/webapp/publish/usr/pipeline/active-ingredient/cosmetics.html
@@ -0,0 +1,85 @@
+<!DOCTYPE html>
+<html lang="ko">
+
+<head>
+  <meta charset="UTF-8">
+  <meta name="viewport" content="width=device-width, initial-scale=1.0">
+  <title>Pipeline > Active Ingredient > Cosmetics</title>
+
+  <!-- css -->
+  <link rel="stylesheet" href="../../../../css/reset.css">
+  <link rel="stylesheet" href="../../../../css/font.css">
+  <link rel="stylesheet" href="../../layout/layout.css">
+  <link rel="stylesheet" href="../../css/common.css">
+  <link rel="stylesheet" href="../../css/style.css">
+  <link rel="stylesheet" href="../../css/content.css">
+  <!-- //css -->
+
+  <!-- script -->
+  <script src="../../../../js/jquery-3.5.0.js"></script>
+  <script src="../../script/common.js"></script>
+  <script src="../../layout/layout.js"></script>
+  <!-- //script -->
+
+
+
+</head>
+
+<body data-section="pipeline">
+
+
+  <div class="wrap">
+    <div data-include-path="../layout/_header.html"></div>
+
+    <div id="container" class="container sub pipeline">
+      <div class="sub_visual">
+        <div class="inner">
+          <h2 class="sub_title" data-section="pipeline">Pipeline</h2>
+          <div class="sub_visual_nav">
+            <a href="../index.html"><i class="icon home"></i></a>
+            <div class="snb_wrap">
+              <button type="button" class="snb_title">메뉴</button>
+              <ul class="snb_select">
+                <li><a href="#">COMPANY</a></li>
+                <li><a href="#">Platform Tech</a></li>
+                <li><a href="#">Major Result</a></li>
+              </ul>
+            </div>
+            <div class="snb_wrap">
+              <button type="button" class="snb_title">메뉴</button>
+              <ul class="snb_select">
+                <li><a href="#">1depth</a></li>
+                <li><a href="#">1depth</a></li>
+                <li><a href="#">1depth</a></li>
+              </ul>
+            </div>
+          </div>
+        </div>
+      </div>
+      <div class="inner">
+        <div class="content_wrap pipeline">
+
+          <div class="contents">
+
+            <div class="content_title">
+              <h3>Cosmetics (준비중)</h3>
+            </div>
+
+            
+          </div>
+        </div>
+      </div>
+
+
+
+    </div>
+
+
+
+    <div data-include-path="../layout/_footer.html"></div>
+  </div>
+
+
+</body>
+
+</html>(No newline at end of file)
 
src/main/webapp/publish/usr/pipeline/active-ingredient/food.html (added)
+++ src/main/webapp/publish/usr/pipeline/active-ingredient/food.html
@@ -0,0 +1,85 @@
+<!DOCTYPE html>
+<html lang="ko">
+
+<head>
+  <meta charset="UTF-8">
+  <meta name="viewport" content="width=device-width, initial-scale=1.0">
+  <title>Pipeline > Active Ingredient > Health Food</title>
+
+  <!-- css -->
+  <link rel="stylesheet" href="../../../../css/reset.css">
+  <link rel="stylesheet" href="../../../../css/font.css">
+  <link rel="stylesheet" href="../../layout/layout.css">
+  <link rel="stylesheet" href="../../css/common.css">
+  <link rel="stylesheet" href="../../css/style.css">
+  <link rel="stylesheet" href="../../css/content.css">
+  <!-- //css -->
+
+  <!-- script -->
+  <script src="../../../../js/jquery-3.5.0.js"></script>
+  <script src="../../script/common.js"></script>
+  <script src="../../layout/layout.js"></script>
+  <!-- //script -->
+
+
+
+</head>
+
+<body data-section="pipeline">
+
+
+  <div class="wrap">
+    <div data-include-path="../layout/_header.html"></div>
+
+    <div id="container" class="container sub pipeline">
+      <div class="sub_visual">
+        <div class="inner">
+          <h2 class="sub_title" data-section="pipeline">PIPELINE</h2>
+          <div class="sub_visual_nav">
+            <a href="../index.html"><i class="icon home"></i></a>
+            <div class="snb_wrap">
+              <button type="button" class="snb_title">메뉴</button>
+              <ul class="snb_select">
+                <li><a href="#">COMPANY</a></li>
+                <li><a href="#">Platform Tech</a></li>
+                <li><a href="#">Major Result</a></li>
+              </ul>
+            </div>
+            <div class="snb_wrap">
+              <button type="button" class="snb_title">메뉴</button>
+              <ul class="snb_select">
+                <li><a href="#">1depth</a></li>
+                <li><a href="#">1depth</a></li>
+                <li><a href="#">1depth</a></li>
+              </ul>
+            </div>
+          </div>
+        </div>
+      </div>
+      <div class="inner">
+        <div class="content_wrap pipeline">
+
+          <div class="contents">
+
+            <div class="content_title">
+              <h3>Health Food(준비중)</h3>
+            </div>
+
+            
+          </div>
+        </div>
+      </div>
+
+
+
+    </div>
+
+
+
+    <div data-include-path="../layout/_footer.html"></div>
+  </div>
+
+
+</body>
+
+</html>(No newline at end of file)
src/main/webapp/publish/usr/pipeline/new-drugs/pipeline.html (Renamed from src/main/webapp/publish/usr/major_result/pipeline.html)
--- src/main/webapp/publish/usr/major_result/pipeline.html
+++ src/main/webapp/publish/usr/pipeline/new-drugs/pipeline.html
@@ -4,41 +4,37 @@
 <head>
   <meta charset="UTF-8">
   <meta name="viewport" content="width=device-width, initial-scale=1.0">
-  <title>major result > Pipeline Summary</title>
+  <title>Pipeline > New drugs > 퇴행성 뇌질환</title>
 
   <!-- css -->
-  <link rel="stylesheet" href="../../../css/reset.css">
-  <link rel="stylesheet" href="../../../css/font.css">
-  <link rel="stylesheet" href="../layout/layout.css">
-  <link rel="stylesheet" href="../css/common.css">
-  <link rel="stylesheet" href="../css/style.css">
-  <link rel="stylesheet" href="../css/content.css">
+  <link rel="stylesheet" href="../../../../css/reset.css">
+  <link rel="stylesheet" href="../../../../css/font.css">
+  <link rel="stylesheet" href="../../layout/layout.css">
+  <link rel="stylesheet" href="../../css/common.css">
+  <link rel="stylesheet" href="../../css/style.css">
+  <link rel="stylesheet" href="../../css/content.css">
   <!-- //css -->
 
   <!-- script -->
-  <script src="../../../js/jquery-3.5.0.js"></script>
-  <script src="../script/common.js"></script>
-  <script src="../layout/layout.js"></script>
+  <script src="../../../../js/jquery-3.5.0.js"></script>
+  <script src="../../script/common.js"></script>
+  <script src="../../layout/layout.js"></script>
   <!-- //script -->
 
-  <!-- 캘린더 -->
-  <script type="module" src="../../../js/plugin/datapicker/duet.esm.js"></script>
-  <script nomodule src="../../../js/plugin/datapicker/duet.js"></script>
-  <link rel="stylesheet" href="../../../js/plugin/datapicker/default.css">
 
 
 </head>
 
-<body data-section="major_result">
+<body data-section="pipeline">
 
 
   <div class="wrap">
     <div data-include-path="../layout/_header.html"></div>
 
-    <div id="container" class="container sub major_result">
+    <div id="container" class="container sub pipeline">
       <div class="sub_visual">
         <div class="inner">
-          <h2 class="sub_title" data-section="major_result">MAJOR RESULT</h2>
+          <h2 class="sub_title" data-section="pipeline">PIPELINE</h2>
           <div class="sub_visual_nav">
             <a href="../index.html"><i class="icon home"></i></a>
             <div class="snb_wrap">
@@ -69,11 +65,11 @@
               <h3>Pipeline Summary</h3>
             </div>
 
-            <div class="con_title">
+            <div class="con_title" data-aos="fade-down">
               <strong class="title">Pipeline Summary _ Current status</strong>
             </div>
             
-            <div class="table_wrap">
+            <div class="table_wrap" data-aos="fade-down">
               <table>
                 <colgroup>
                   <col style="width:5%;">
@@ -211,13 +207,13 @@
               </table>
             </div>
 
-
-
+            <p class="input_desc">*OGS-101-1&2, etc : 공동개발을 통해 적응증 확장(퇴행성뇌질환; AD, ALS / 난청 / 녹내장 / Myopathy(근질환) 등)</p>
           </div>
-
-
         </div>
       </div>
+
+
+
     </div>
 
 
 
src/main/webapp/publish/usr/pipeline/new-drugs/skin.html (added)
+++ src/main/webapp/publish/usr/pipeline/new-drugs/skin.html
@@ -0,0 +1,85 @@
+<!DOCTYPE html>
+<html lang="ko">
+
+<head>
+  <meta charset="UTF-8">
+  <meta name="viewport" content="width=device-width, initial-scale=1.0">
+  <title>Pipeline > New drugs > 피부질환</title>
+
+  <!-- css -->
+  <link rel="stylesheet" href="../../../../css/reset.css">
+  <link rel="stylesheet" href="../../../../css/font.css">
+  <link rel="stylesheet" href="../../layout/layout.css">
+  <link rel="stylesheet" href="../../css/common.css">
+  <link rel="stylesheet" href="../../css/style.css">
+  <link rel="stylesheet" href="../../css/content.css">
+  <!-- //css -->
+
+  <!-- script -->
+  <script src="../../../../js/jquery-3.5.0.js"></script>
+  <script src="../../script/common.js"></script>
+  <script src="../../layout/layout.js"></script>
+  <!-- //script -->
+
+
+
+</head>
+
+<body data-section="pipeline">
+
+
+  <div class="wrap">
+    <div data-include-path="../layout/_header.html"></div>
+
+    <div id="container" class="container sub pipeline">
+      <div class="sub_visual">
+        <div class="inner">
+          <h2 class="sub_title" data-section="pipeline">PIPELINE</h2>
+          <div class="sub_visual_nav">
+            <a href="../index.html"><i class="icon home"></i></a>
+            <div class="snb_wrap">
+              <button type="button" class="snb_title">메뉴</button>
+              <ul class="snb_select">
+                <li><a href="#">COMPANY</a></li>
+                <li><a href="#">Platform Tech</a></li>
+                <li><a href="#">Major Result</a></li>
+              </ul>
+            </div>
+            <div class="snb_wrap">
+              <button type="button" class="snb_title">메뉴</button>
+              <ul class="snb_select">
+                <li><a href="#">1depth</a></li>
+                <li><a href="#">1depth</a></li>
+                <li><a href="#">1depth</a></li>
+              </ul>
+            </div>
+          </div>
+        </div>
+      </div>
+      <div class="inner">
+        <div class="content_wrap pipeline">
+
+          <div class="contents">
+
+            <div class="content_title">
+              <h3>피부질환(준비중)</h3>
+            </div>
+
+            
+          </div>
+        </div>
+      </div>
+
+
+
+    </div>
+
+
+
+    <div data-include-path="../layout/_footer.html"></div>
+  </div>
+
+
+</body>
+
+</html>(No newline at end of file)
 
src/main/webapp/publish/usr/platform-tech/ai/ai_organelle.html (added)
+++ src/main/webapp/publish/usr/platform-tech/ai/ai_organelle.html
@@ -0,0 +1,99 @@
+<!DOCTYPE html>
+<html lang="ko">
+
+<head>
+  <meta charset="UTF-8">
+  <meta name="viewport" content="width=device-width, initial-scale=1.0">
+  <title>Platform Technologies > AI co-scientist > AI-assisted Organelle homeostasis</title>
+
+  <!-- css -->
+  <link rel="stylesheet" href="../../../../css/reset.css">
+  <link rel="stylesheet" href="../../../css/font.css">
+  <link rel="stylesheet" href="../../layout/layout.css">
+  <link rel="stylesheet" href="../../css/common.css">
+  <link rel="stylesheet" href="../../css/style.css">
+  <link rel="stylesheet" href="../../css/content.css">
+  <!-- //css -->
+
+  <!-- script -->
+  <script src="../../../../js/jquery-3.5.0.js"></script>
+  <script src="../../script/common.js"></script>
+  <script src="../../layout/layout.js"></script>
+  <!-- //script -->
+
+  <!-- 캘린더 -->
+  <script type="module" src="../../../js/plugin/datapicker/duet.esm.js"></script>
+  <script nomodule src="../../../js/plugin/datapicker/duet.js"></script>
+  <link rel="stylesheet" href="../../../js/plugin/datapicker/default.css">
+
+  <link rel="stylesheet" href="/publish/common/script/plugin/aos-next/aos.css" />
+  	<script src="/publish/common/script/plugin/aos-next/aos.js"></script>
+  	<script>
+  		$(function(){
+  			AOS.init();	
+  		})
+  		
+  	</script>
+
+
+</head>
+
+<body data-section="platform-tech">
+
+
+  <div class="wrap">
+    <div data-include-path="../layout/_header.html"></div>
+
+    <div id="container" class="container sub platform_tech">
+      <div class="sub_visual">
+        <div class="inner">
+          <h2 class="sub_title" data-section="platform-tech">Platform Technologies</h2>
+          <div class="sub_visual_nav">
+            <a href="../index.html"><i class="icon home"></i></a>
+            <div class="snb_wrap">
+              <button type="button" class="snb_title">메뉴</button>
+              <ul class="snb_select">
+                <li><a href="#">COMPANY</a></li>
+                <li><a href="#">Platform Tech</a></li>
+                <li><a href="#">Major Result</a></li>
+              </ul>
+            </div>
+            <div class="snb_wrap">
+              <button type="button" class="snb_title">메뉴</button>
+              <ul class="snb_select">
+                <li><a href="#">1depth</a></li>
+                <li><a href="#">1depth</a></li>
+                <li><a href="#">1depth</a></li>
+              </ul>
+            </div>
+          </div>
+        </div>
+      </div>
+      <div class="inner">
+        <div class="content_wrap mitophagy">
+
+          <div class="contents">
+
+            <div class="content_title">
+              <h3>AI-assisted Organelle homeostasis(준비중)</h3>
+            </div>
+
+          </div>
+        </div>
+
+        <div data-include-path="./autophagy-common.html"></div>
+
+      </div>
+
+
+    </div>
+
+
+
+    <div data-include-path="../layout/_footer.html"></div>
+  </div>
+
+
+</body>
+
+</html>(No newline at end of file)
 
src/main/webapp/publish/usr/platform-tech/autophagy/autophagy-common.html (added)
+++ src/main/webapp/publish/usr/platform-tech/autophagy/autophagy-common.html
@@ -0,0 +1,4 @@
+
+<div class="box autophagy_common">
+  <img src="/publish/usr/images/platform-tech/autophagy_common.png" alt="">
+</div>(No newline at end of file)
 
src/main/webapp/publish/usr/platform-tech/autophagy/erphagy.html (added)
+++ src/main/webapp/publish/usr/platform-tech/autophagy/erphagy.html
@@ -0,0 +1,99 @@
+<!DOCTYPE html>
+<html lang="ko">
+
+<head>
+  <meta charset="UTF-8">
+  <meta name="viewport" content="width=device-width, initial-scale=1.0">
+  <title>Platform Technologies > Selective Autophagy > Erphagy</title>
+
+  <!-- css -->
+  <link rel="stylesheet" href="../../../../css/reset.css">
+  <link rel="stylesheet" href="../../../css/font.css">
+  <link rel="stylesheet" href="../../layout/layout.css">
+  <link rel="stylesheet" href="../../css/common.css">
+  <link rel="stylesheet" href="../../css/style.css">
+  <link rel="stylesheet" href="../../css/content.css">
+  <!-- //css -->
+
+  <!-- script -->
+  <script src="../../../../js/jquery-3.5.0.js"></script>
+  <script src="../../script/common.js"></script>
+  <script src="../../layout/layout.js"></script>
+  <!-- //script -->
+
+  <!-- 캘린더 -->
+  <script type="module" src="../../../js/plugin/datapicker/duet.esm.js"></script>
+  <script nomodule src="../../../js/plugin/datapicker/duet.js"></script>
+  <link rel="stylesheet" href="../../../js/plugin/datapicker/default.css">
+
+  <link rel="stylesheet" href="/publish/common/script/plugin/aos-next/aos.css" />
+  	<script src="/publish/common/script/plugin/aos-next/aos.js"></script>
+  	<script>
+  		$(function(){
+  			AOS.init();	
+  		})
+  		
+  	</script>
+
+
+</head>
+
+<body data-section="platform-tech">
+
+
+  <div class="wrap">
+    <div data-include-path="../layout/_header.html"></div>
+
+    <div id="container" class="container sub platform_tech">
+      <div class="sub_visual">
+        <div class="inner">
+          <h2 class="sub_title" data-section="platform-tech">Platform Technologies</h2>
+          <div class="sub_visual_nav">
+            <a href="../index.html"><i class="icon home"></i></a>
+            <div class="snb_wrap">
+              <button type="button" class="snb_title">메뉴</button>
+              <ul class="snb_select">
+                <li><a href="#">COMPANY</a></li>
+                <li><a href="#">Platform Tech</a></li>
+                <li><a href="#">Major Result</a></li>
+              </ul>
+            </div>
+            <div class="snb_wrap">
+              <button type="button" class="snb_title">메뉴</button>
+              <ul class="snb_select">
+                <li><a href="#">1depth</a></li>
+                <li><a href="#">1depth</a></li>
+                <li><a href="#">1depth</a></li>
+              </ul>
+            </div>
+          </div>
+        </div>
+      </div>
+      <div class="inner">
+        <div class="content_wrap mitophagy">
+
+          <div class="contents">
+
+            <div class="content_title">
+              <h3>Erphagy(대기중)</h3>
+            </div>
+
+          </div>
+        </div>
+
+        <div data-include-path="./autophagy-common.html"></div>
+
+      </div>
+
+
+    </div>
+
+
+
+    <div data-include-path="../layout/_footer.html"></div>
+  </div>
+
+
+</body>
+
+</html>(No newline at end of file)
 
src/main/webapp/publish/usr/platform-tech/autophagy/golgiphagy.html (added)
+++ src/main/webapp/publish/usr/platform-tech/autophagy/golgiphagy.html
@@ -0,0 +1,100 @@
+<!DOCTYPE html>
+<html lang="ko">
+
+<head>
+  <meta charset="UTF-8">
+  <meta name="viewport" content="width=device-width, initial-scale=1.0">
+  <title>Platform Technologies > Selective Autophagy > Golgiphagy</title>
+
+  <!-- css -->
+  <link rel="stylesheet" href="../../../../css/reset.css">
+  <link rel="stylesheet" href="../../../css/font.css">
+  <link rel="stylesheet" href="../../layout/layout.css">
+  <link rel="stylesheet" href="../../css/common.css">
+  <link rel="stylesheet" href="../../css/style.css">
+  <link rel="stylesheet" href="../../css/content.css">
+  <!-- //css -->
+
+  <!-- script -->
+  <script src="../../../../js/jquery-3.5.0.js"></script>
+  <script src="../../script/common.js"></script>
+  <script src="../../layout/layout.js"></script>
+  <!-- //script -->
+
+  <!-- 캘린더 -->
+  <script type="module" src="../../../js/plugin/datapicker/duet.esm.js"></script>
+  <script nomodule src="../../../js/plugin/datapicker/duet.js"></script>
+  <link rel="stylesheet" href="../../../js/plugin/datapicker/default.css">
+
+  <link rel="stylesheet" href="/publish/common/script/plugin/aos-next/aos.css" />
+  	<script src="/publish/common/script/plugin/aos-next/aos.js"></script>
+  	<script>
+  		$(function(){
+  			AOS.init();	
+  		})
+  		
+  	</script>
+
+
+</head>
+
+<body data-section="platform-tech">
+
+
+  <div class="wrap">
+    <div data-include-path="../layout/_header.html"></div>
+
+    <div id="container" class="container sub platform_tech">
+      <div class="sub_visual">
+        <div class="inner">
+          <h2 class="sub_title" data-section="platform-tech">Platform Technologies</h2>
+          <div class="sub_visual_nav">
+            <a href="../index.html"><i class="icon home"></i></a>
+            <div class="snb_wrap">
+              <button type="button" class="snb_title">메뉴</button>
+              <ul class="snb_select">
+                <li><a href="#">COMPANY</a></li>
+                <li><a href="#">Platform Tech</a></li>
+                <li><a href="#">Major Result</a></li>
+              </ul>
+            </div>
+            <div class="snb_wrap">
+              <button type="button" class="snb_title">메뉴</button>
+              <ul class="snb_select">
+                <li><a href="#">1depth</a></li>
+                <li><a href="#">1depth</a></li>
+                <li><a href="#">1depth</a></li>
+              </ul>
+            </div>
+          </div>
+        </div>
+      </div>
+      <div class="inner">
+        <div class="content_wrap mitophagy">
+
+          <div class="contents">
+
+            <div class="content_title">
+              <h3>Golgiphagy(준비중)</h3>
+            </div>
+
+
+          </div>
+        </div>
+
+        <div data-include-path="./autophagy-common.html"></div>
+
+      </div>
+
+
+    </div>
+
+
+
+    <div data-include-path="../layout/_footer.html"></div>
+  </div>
+
+
+</body>
+
+</html>(No newline at end of file)
 
src/main/webapp/publish/usr/platform-tech/autophagy/lysophagy.html (added)
+++ src/main/webapp/publish/usr/platform-tech/autophagy/lysophagy.html
@@ -0,0 +1,99 @@
+<!DOCTYPE html>
+<html lang="ko">
+
+<head>
+  <meta charset="UTF-8">
+  <meta name="viewport" content="width=device-width, initial-scale=1.0">
+  <title>Platform Technologies > Selective Autophagy > Lysophagy</title>
+
+  <!-- css -->
+  <link rel="stylesheet" href="../../../../css/reset.css">
+  <link rel="stylesheet" href="../../../css/font.css">
+  <link rel="stylesheet" href="../../layout/layout.css">
+  <link rel="stylesheet" href="../../css/common.css">
+  <link rel="stylesheet" href="../../css/style.css">
+  <link rel="stylesheet" href="../../css/content.css">
+  <!-- //css -->
+
+  <!-- script -->
+  <script src="../../../../js/jquery-3.5.0.js"></script>
+  <script src="../../script/common.js"></script>
+  <script src="../../layout/layout.js"></script>
+  <!-- //script -->
+
+  <!-- 캘린더 -->
+  <script type="module" src="../../../js/plugin/datapicker/duet.esm.js"></script>
+  <script nomodule src="../../../js/plugin/datapicker/duet.js"></script>
+  <link rel="stylesheet" href="../../../js/plugin/datapicker/default.css">
+
+  <link rel="stylesheet" href="/publish/common/script/plugin/aos-next/aos.css" />
+  	<script src="/publish/common/script/plugin/aos-next/aos.js"></script>
+  	<script>
+  		$(function(){
+  			AOS.init();	
+  		})
+  		
+  	</script>
+
+
+</head>
+
+<body data-section="platform-tech">
+
+
+  <div class="wrap">
+    <div data-include-path="../layout/_header.html"></div>
+
+    <div id="container" class="container sub platform_tech">
+      <div class="sub_visual">
+        <div class="inner">
+          <h2 class="sub_title" data-section="platform-tech">Platform Technologies</h2>
+          <div class="sub_visual_nav">
+            <a href="../index.html"><i class="icon home"></i></a>
+            <div class="snb_wrap">
+              <button type="button" class="snb_title">메뉴</button>
+              <ul class="snb_select">
+                <li><a href="#">COMPANY</a></li>
+                <li><a href="#">Platform Tech</a></li>
+                <li><a href="#">Major Result</a></li>
+              </ul>
+            </div>
+            <div class="snb_wrap">
+              <button type="button" class="snb_title">메뉴</button>
+              <ul class="snb_select">
+                <li><a href="#">1depth</a></li>
+                <li><a href="#">1depth</a></li>
+                <li><a href="#">1depth</a></li>
+              </ul>
+            </div>
+          </div>
+        </div>
+      </div>
+      <div class="inner">
+        <div class="content_wrap mitophagy">
+
+          <div class="contents">
+
+            <div class="content_title">
+              <h3>Lysophagy(준비중)</h3>
+            </div>
+
+          </div>
+        </div>
+
+        <div data-include-path="./autophagy-common.html"></div>
+
+      </div>
+
+
+    </div>
+
+
+
+    <div data-include-path="../layout/_footer.html"></div>
+  </div>
+
+
+</body>
+
+</html>(No newline at end of file)
 
src/main/webapp/publish/usr/platform-tech/autophagy/melanophagy.html (added)
+++ src/main/webapp/publish/usr/platform-tech/autophagy/melanophagy.html
@@ -0,0 +1,136 @@
+<!DOCTYPE html>
+<html lang="ko">
+
+<head>
+  <meta charset="UTF-8">
+  <meta name="viewport" content="width=device-width, initial-scale=1.0">
+  <title>Platform Technologies > Selective Autophagy > Melanophagy</title>
+
+  <!-- css -->
+  <link rel="stylesheet" href="../../../../css/reset.css">
+  <link rel="stylesheet" href="../../../../css/font.css">
+  <link rel="stylesheet" href="../../layout/layout.css">
+  <link rel="stylesheet" href="../../css/common.css">
+  <link rel="stylesheet" href="../../css/style.css">
+  <link rel="stylesheet" href="../../css/content.css">
+  <!-- //css -->
+
+  <!-- script -->
+  <script src="../../../js/jquery-3.5.0.js"></script>
+  <script src="../../script/common.js"></script>
+  <script src="../../layout/layout.js"></script>
+  <!-- //script -->
+
+
+  <link rel="stylesheet" href="/publish/common/script/plugin/aos-next/aos.css" />
+  <script src="/publish/common/script/plugin/aos-next/aos.js"></script>
+  <script>
+    $(function(){
+      AOS.init();	
+    })
+    
+  </script>
+
+
+</head>
+
+<body data-section="platform-tech">
+
+
+  <div class="wrap">
+    <div data-include-path="../../layout/_header.html"></div>
+
+    <div id="container" class="container sub platform_tech">
+      <div class="sub_visual">
+        <div class="inner">
+          <h2 class="sub_title" data-section="platform-tech">Platform Technologies</h2>
+          <div class="sub_visual_nav">
+            <a href="../index.html"><i class="icon home"></i></a>
+            <div class="snb_wrap">
+              <button type="button" class="snb_title">메뉴</button>
+              <ul class="snb_select">
+                <li><a href="#">COMPANY</a></li>
+                <li><a href="#">Platform Tech</a></li>
+                <li><a href="#">Major Result</a></li>
+              </ul>
+            </div>
+            <div class="snb_wrap">
+              <button type="button" class="snb_title">메뉴</button>
+              <ul class="snb_select">
+                <li><a href="#">1depth</a></li>
+                <li><a href="#">1depth</a></li>
+                <li><a href="#">1depth</a></li>
+              </ul>
+            </div>
+          </div>
+        </div>
+      </div>
+      <div class="inner">
+        <div class="content_wrap mitophagy">
+
+          <div class="contents">
+
+            <div class="content_title">
+              <h3>Melanophagy</h3>
+            </div>
+
+            <div class="con_title" data-aos="fade-down">
+              <span class="text_primary summary">Melanophagy Inducer</span>
+              <strong class="title">Melanophagy Disease</strong>
+            </div>
+            
+            <div class="figure_content row">
+              <div class="box" data-aos="fade-right">
+                <img src="../../images/platform-tech/melanophagy_1.png" alt="">
+              </div>
+              <ul class="figure_desc circle" data-aos="fade-left">
+                <li>Vitiligo</li>
+                <li>Melanoma</li>
+                <li>Freckles</li>
+              </ul>
+            </div>
+            
+            <div class="con_title" data-aos="fade-down">
+              <strong class="title">Melaophagy inducer screening platforms</strong>
+            </div>
+
+            <div class="figure_content column">
+              
+              <ul class="figure_desc square" data-aos="fade-down">
+                <li>Selective melanin modulator I.D</li>
+                <li>Nomenclature ‘melanophagy& co-Research with major comp.</li>
+                <li>
+                  PLoS One (2020) BBRC (2019)
+                  <div class="box" data-aos="fade-down">
+                    <img src="../../images/platform-tech/melanophagy_2.png" alt="">
+                  </div>
+                </li>
+                <li>
+                  멜라노파지 모니터링 플랫폼 (B16F1/mRFP-EGFP 세포주)에서 melanophagy inducer 처리에 따른 멜라노파지 증가와 멜라닌 감소
+                  <div class="box" data-aos="fade-down">
+                    <img src="../../images/platform-tech/melanophagy_3.png" alt="">
+                  </div>
+                  <div class="box" data-aos="fade-down">
+                    <img src="../../images/platform-tech/melanophagy_4.png" alt="">
+                  </div>
+                </li>
+                
+              </ul>
+            </div>
+          </div>
+          <div data-include-path="./autophagy-common.html"></div>
+        </div>
+      </div>
+
+
+    </div>
+
+
+
+    <div data-include-path="../../layout/_footer.html"></div>
+  </div>
+
+
+</body>
+
+</html>(No newline at end of file)
 
src/main/webapp/publish/usr/platform-tech/autophagy/mitophagy.html (added)
+++ src/main/webapp/publish/usr/platform-tech/autophagy/mitophagy.html
@@ -0,0 +1,148 @@
+<!DOCTYPE html>
+<html lang="ko">
+
+<head>
+  <meta charset="UTF-8">
+  <meta name="viewport" content="width=device-width, initial-scale=1.0">
+  <title>Platform Technologies > Selective Autophagy > Mitophagy</title>
+
+  <!-- css -->
+  <link rel="stylesheet" href="../../../../css/reset.css">
+  <link rel="stylesheet" href="../../../../css/font.css">
+  <link rel="stylesheet" href="../../layout/layout.css">
+  <link rel="stylesheet" href="../../css/common.css">
+  <link rel="stylesheet" href="../../css/style.css">
+  <link rel="stylesheet" href="../../css/content.css">
+  <!-- //css -->
+
+  <!-- script -->
+  <script src="../../../js/jquery-3.5.0.js"></script>
+  <script src="../../script/common.js"></script>
+  <script src="../../layout/layout.js"></script>
+  <!-- //script -->
+
+
+  <link rel="stylesheet" href="/publish/common/script/plugin/aos-next/aos.css" />
+  	<script src="/publish/common/script/plugin/aos-next/aos.js"></script>
+  	<script>
+  		$(function(){
+  			AOS.init();	
+  		})
+  		
+  	</script>
+
+
+</head>
+
+<body data-section="platform-tech">
+
+
+  <div class="wrap">
+    <div data-include-path="../../layout/_header.html"></div>
+
+    <div id="container" class="container sub platform_tech">
+      <div class="sub_visual">
+        <div class="inner">
+          <h2 class="sub_title" data-section="platform-tech">PLATFORM TECHNOLOGIES</h2>
+          <div class="sub_visual_nav">
+            <a href="../index.html"><i class="icon home"></i></a>
+            <div class="snb_wrap">
+              <button type="button" class="snb_title">메뉴</button>
+              <ul class="snb_select">
+                <li><a href="#">COMPANY</a></li>
+                <li><a href="#">Platform Tech</a></li>
+                <li><a href="#">Major Result</a></li>
+              </ul>
+            </div>
+            <div class="snb_wrap">
+              <button type="button" class="snb_title">메뉴</button>
+              <ul class="snb_select">
+                <li><a href="#">1depth</a></li>
+                <li><a href="#">1depth</a></li>
+                <li><a href="#">1depth</a></li>
+              </ul>
+            </div>
+          </div>
+        </div>
+      </div>
+      <div class="inner">
+        <div class="content_wrap">
+
+          <div class="contents">
+
+            <div class="content_title">
+              <h3>Mitophagy</h3>
+            </div>
+
+            <div class="con_title" data-aos="fade-down">
+              <span class="text_primary summary">Mitophagy Inducer</span>
+              <strong class="title">Mitophagy : Not only Parkinson's disease</strong>
+            </div>
+            
+            <div class="figure_content row">
+              <div class="box" data-aos="fade-right">
+                <img src="../../images/platform-tech/mitophagy_1.png" alt="">
+              </div>
+              <ul class="figure_desc circle" data-aos="fade-left">
+                <li>Alzheimer’s disease</li>
+                <li>Autism spectrum disorder</li>
+                <li>Alcoholic Liver Disease</li>
+                <li>Diabetic Kidney Disease (DKD)...</li>
+              </ul>
+            </div>
+            
+            <div class="con_title" data-aos="fade-down">
+              <strong class="title">Mitophagy inducer screening for various library</strong>
+            </div>
+
+            <div class="figure_content column">
+              
+              <ul class="figure_desc square" data-aos="fade-down">
+                <li>’20yr research (Science 2009 외 30여편)</li>
+                <li>Selective mitophagy modulator I.D</li>
+                <li>
+                  Global R&D Project / lead comp. I.D
+                  <div class="box" data-aos="fade-down">
+                    <img src="../../images/platform-tech/mitophagy_2.png" alt="">
+                  </div>
+                </li>
+                <li>
+                  신경세포주 SH-SY5Y/GFP-Parkin 세포주에 mitophagy inducer 처리에 따른 Parkin 의존적 mitophagy 증가
+                  <div class="box" data-aos="fade-down">
+                    <img src="../../images/platform-tech/mitophagy_3.png" alt="">
+                  </div>
+                </li>
+                <li>
+                  마이토파지 모니터링 플랫폼 (HeLa/mCherry-Hluorin-Fis1세포주)에서 mitophagy inducer 처리에 따른 마이토파지 증가
+                  <div class="box" data-aos="fade-down">
+                    <img src="../../images/platform-tech/mitophagy_4.png" alt="">
+                  </div>
+                </li>
+                <li>
+                  마이토파지 모니터링 플랫폼 (SH-SY5Y/mKeima) 세포주)에서 mitophagy Inducer 처리에 따른 마이토파지 증가
+                  <div class="box" data-aos="fade-down">
+                    <img src="../../images/platform-tech/mitophagy_5.png" alt="">
+                  </div>
+                </li>
+                
+              </ul>
+            </div>
+          </div>
+          <div data-include-path="./autophagy-common.html"></div>
+        </div>
+        
+      </div>
+
+
+
+    </div>
+
+
+
+    <div data-include-path="../../layout/_footer.html"></div>
+  </div>
+
+
+</body>
+
+</html>(No newline at end of file)
src/main/webapp/publish/usr/platform-tech/autophagy/pexophagy.html (Renamed from src/main/webapp/publish/usr/major_result/pexophagy.html)
--- src/main/webapp/publish/usr/major_result/pexophagy.html
+++ src/main/webapp/publish/usr/platform-tech/autophagy/pexophagy.html
@@ -4,21 +4,21 @@
 <head>
   <meta charset="UTF-8">
   <meta name="viewport" content="width=device-width, initial-scale=1.0">
-  <title>major result > Pexophagy</title>
+  <title>Platform Technologies > Selective Autophagy > Pexophagy</title>
 
   <!-- css -->
-  <link rel="stylesheet" href="../../../css/reset.css">
+  <link rel="stylesheet" href="../../../../css/reset.css">
   <link rel="stylesheet" href="../../../css/font.css">
-  <link rel="stylesheet" href="../layout/layout.css">
-  <link rel="stylesheet" href="../css/common.css">
-  <link rel="stylesheet" href="../css/style.css">
-  <link rel="stylesheet" href="../css/content.css">
+  <link rel="stylesheet" href="../../layout/layout.css">
+  <link rel="stylesheet" href="../../css/common.css">
+  <link rel="stylesheet" href="../../css/style.css">
+  <link rel="stylesheet" href="../../css/content.css">
   <!-- //css -->
 
   <!-- script -->
-  <script src="../../../js/jquery-3.5.0.js"></script>
-  <script src="../script/common.js"></script>
-  <script src="../layout/layout.js"></script>
+  <script src="../../../../js/jquery-3.5.0.js"></script>
+  <script src="../../script/common.js"></script>
+  <script src="../../layout/layout.js"></script>
   <!-- //script -->
 
   <!-- 캘린더 -->
@@ -26,19 +26,28 @@
   <script nomodule src="../../../js/plugin/datapicker/duet.js"></script>
   <link rel="stylesheet" href="../../../js/plugin/datapicker/default.css">
 
+  <link rel="stylesheet" href="/publish/common/script/plugin/aos-next/aos.css" />
+  	<script src="/publish/common/script/plugin/aos-next/aos.js"></script>
+  	<script>
+  		$(function(){
+  			AOS.init();	
+  		})
+  		
+  	</script>
+
 
 </head>
 
-<body data-section="major_result">
+<body data-section="platform-tech">
 
 
   <div class="wrap">
     <div data-include-path="../layout/_header.html"></div>
 
-    <div id="container" class="container sub major_result">
+    <div id="container" class="container sub platform_tech">
       <div class="sub_visual">
         <div class="inner">
-          <h2 class="sub_title" data-section="major_result">MAJOR RESULT</h2>
+          <h2 class="sub_title" data-section="platform-tech">Platform Technologies</h2>
           <div class="sub_visual_nav">
             <a href="../index.html"><i class="icon home"></i></a>
             <div class="snb_wrap">
@@ -69,16 +78,16 @@
               <h3>Pexophagy</h3>
             </div>
 
-            <div class="con_title">
+            <div class="con_title" data-aos="fade-down">
               <span class="text_primary summary">Pexophagy Inducer</span>
               <strong class="title">Peroxisome dysfunction in disease</strong>
             </div>
             
             <div class="figure_content row">
-              <div class="box">
+              <div class="box" data-aos="fade-right">
                 <img src="../images/major_result/pexophagy_1.png" alt="">
               </div>
-              <ul class="figure_desc circle">
+              <ul class="figure_desc circle" data-aos="fade-left">
                 <li>X-linked adrenoleukodystrophy</li>
                 <li>Skeletal abnormalities</li>
                 <li>Alzheimer’s disease</li>
@@ -89,41 +98,39 @@
               </ul>
             </div>
             
-            <div class="con_title">
+            <div class="con_title" data-aos="fade-down">
               <strong class="title">Pexophagy inducer screening for various library</strong>
             </div>
 
             <div class="figure_content column">
               
-              <ul class="figure_desc square">
+              <ul class="figure_desc square" data-aos="fade-down">
                 <li>Global first target & M.O.A</li>
                 <li>Novel target I.D</li>
                 <li>1st in class : First I.D Mecham.</li>
                 <li>
                   Autophagy (2020), BBRC (2021)
-                  <div class="box">
+                  <div class="box" data-aos="fade-down">
                     <img src="../images/major_result/pexophagy_2.png" alt="">
                   </div>
                 </li>
                 <li>
                   펙소파지 모니터링 플랫폼 (HeLa/mCherry-Hluorin-PTS1 세포주)에서 pexophagy inducer 처리에 따른 펙소파지 증가
-                  <div class="box">
+                  <div class="box" data-aos="fade-down">
                     <img src="../images/major_result/pexophagy_3.png" alt="">
                   </div>
                 </li>
                 
               </ul>
-
-              
-
             </div>
-
-
           </div>
-
-
         </div>
+
+        <div data-include-path="./autophagy-common.html"></div>
+
       </div>
+
+
     </div>
 
 
 
src/main/webapp/publish/usr/platform-tech/autophagy/selective-autophagy.html (added)
+++ src/main/webapp/publish/usr/platform-tech/autophagy/selective-autophagy.html
@@ -0,0 +1,95 @@
+<!DOCTYPE html>
+<html lang="ko">
+
+<head>
+  <meta charset="UTF-8">
+  <meta name="viewport" content="width=device-width, initial-scale=1.0">
+  <title>Platform Technologies > Selective Autophagy</title>
+
+  <!-- css -->
+  <link rel="stylesheet" href="../../../../css/reset.css">
+  <link rel="stylesheet" href="../../../../css/font.css">
+  <link rel="stylesheet" href="../../layout/layout.css">
+  <link rel="stylesheet" href="../../css/common.css">
+  <link rel="stylesheet" href="../../css/style.css">
+  <link rel="stylesheet" href="../../css/content.css">
+  <!-- //css -->
+
+  <!-- script -->
+  <script src="../../../../js/jquery-3.5.0.js"></script>
+  <script src="../../script/common.js"></script>
+  <script src="../../layout/layout.js"></script>
+  <!-- //script -->
+
+
+  <link rel="stylesheet" href="/publish/common/script/plugin/aos-next/aos.css" />
+  <script src="/publish/common/script/plugin/aos-next/aos.js"></script>
+  <script>
+    $(function(){
+      AOS.init();	
+    })
+    
+  </script>
+
+
+</head>
+
+<body data-section="platform-tech">
+
+
+  <div class="wrap">
+    <div data-include-path="../../layout/_header.html"></div>
+
+    <div id="container" class="container sub platform_tech">
+      <div class="sub_visual">
+        <div class="inner">
+          <h2 class="sub_title" data-section="platform-tech">Platform Technologies</h2>
+          <div class="sub_visual_nav">
+            <a href="../index.html"><i class="icon home"></i></a>
+            <div class="snb_wrap">
+              <button type="button" class="snb_title">메뉴</button>
+              <ul class="snb_select">
+                <li><a href="#">COMPANY</a></li>
+                <li><a href="#">Platform Technologies</a></li>
+                <li><a href="#">Pipeline</a></li>
+                <li><a href="#">Achievement</a></li>
+              </ul>
+            </div>
+            <div class="snb_wrap">
+              <button type="button" class="snb_title">메뉴</button>
+              <ul class="snb_select">
+                <li><a href="#">1depth</a></li>
+                <li><a href="#">1depth</a></li>
+                <li><a href="#">1depth</a></li>
+              </ul>
+            </div>
+          </div>
+        </div>
+      </div>
+      <div class="inner">
+        <div class="content_wrap">
+
+          <div class="contents">
+
+            <div class="content_title">
+              <h3>Selective Autophagy</h3>
+            </div>
+
+            <img src="../../images/platform-tech/autophagy_images.jpg" alt="" style="margin:0 auto;">
+
+          </div>
+        </div>
+      </div>
+
+
+    </div>
+
+
+
+    <div data-include-path="../../layout/_footer.html"></div>
+  </div>
+
+
+</body>
+
+</html>(No newline at end of file)
 
src/main/webapp/publish/usr/platform-tech/organelle/ahr.html (added)
+++ src/main/webapp/publish/usr/platform-tech/organelle/ahr.html
@@ -0,0 +1,123 @@
+<!DOCTYPE html>
+<html lang="ko">
+
+<head>
+  <meta charset="UTF-8">
+  <meta name="viewport" content="width=device-width, initial-scale=1.0">
+  <title>Platform Technologies > Organelle Homeostasis > Ciliogenesis</title>
+
+  <!-- css -->
+  <link rel="stylesheet" href="../../../../css/reset.css">
+  <link rel="stylesheet" href="../../../../css/font.css">
+  <link rel="stylesheet" href="../../layout/layout.css">
+  <link rel="stylesheet" href="../../css/common.css">
+  <link rel="stylesheet" href="../../css/style.css">
+  <link rel="stylesheet" href="../../css/content.css">
+  <!-- //css -->
+
+  <!-- script -->
+  <script src="../../../../js/jquery-3.5.0.js"></script>
+  <script src="../../script/common.js"></script>
+  <script src="../../layout/layout.js"></script>
+  <!-- //script -->
+
+
+  <link rel="stylesheet" href="/publish/common/script/plugin/aos-next/aos.css" />
+  	<script src="/publish/common/script/plugin/aos-next/aos.js"></script>
+  	<script>
+  		$(function(){
+  			AOS.init();	
+  		})
+  		
+  	</script>
+
+
+</head>
+
+<body data-section="platform-tech">
+
+
+  <div class="wrap">
+    <div data-include-path="../../layout/_header.html"></div>
+
+    <div id="container" class="container sub platform_tech">
+      <div class="sub_visual">
+        <div class="inner">
+          <h2 class="sub_title" data-section="platform-tech">Platform Technologies</h2>
+          <div class="sub_visual_nav">
+            <a href="../index.html"><i class="icon home"></i></a>
+            <div class="snb_wrap">
+              <button type="button" class="snb_title">메뉴</button>
+              <ul class="snb_select">
+                <li><a href="#">COMPANY</a></li>
+                <li><a href="#">Platform Tech</a></li>
+                <li><a href="#">Major Result</a></li>
+              </ul>
+            </div>
+            <div class="snb_wrap">
+              <button type="button" class="snb_title">메뉴</button>
+              <ul class="snb_select">
+                <li><a href="#">1depth</a></li>
+                <li><a href="#">1depth</a></li>
+                <li><a href="#">1depth</a></li>
+              </ul>
+            </div>
+          </div>
+        </div>
+      </div>
+      <div class="inner">
+        <div class="content_wrap">
+
+          <div class="contents">
+
+            <div class="content_title">
+              <h3>AHR mechanism</h3>
+            </div>
+
+            <div class="con_title" data-aos="fade-down">
+              <strong class="title">Arylhydrocarbon Receptor(AhR, 아릴탄화수소 수용체)는 외부 및 내부의 리간드(ligands)에 의해 활성의 변화에 따라 관련 target gene 을 조절하는 전사인자로 기존에 잘 알려져 있음</strong>
+            </div>
+            
+            <div class="figure_content column">
+              <ul class="figure_desc square" data-aos="fade-down">
+                <li>
+                  AhR signaling pathway(Nature Reviews Immunology)
+                  <div class="box" data-aos="fade-down">
+                    <img src="../../images/platform-tech/ahr_1.png" alt="">
+                  </div>
+                </li>
+              </ul>
+            </div>
+
+            <div class="con_title" data-aos="fade-down">
+              <strong class="title">AhR을 활성을 높이는 작용제는 특히, 건선과 같은 피부질환에서 중요한 역할을 하는데 면역 및 염증 반응과 관련된, 특히 높은 발현률을 보이는 Th17나 Treg 세포에서 IL-4/IL-13 및 IL-17/IL-22와 같은 염증성 사이토카인 분비 조절 작용을 통해 각각 건선이나 아토피 치료에 유효한 효과를 나타내는 것이 밝혀졌음</strong>
+            </div>
+            
+            <div class="figure_content column">
+              <ul class="figure_desc square" data-aos="fade-down">
+                <li>
+                  AhR signal and action points of tapinarof(Int. J. Mol. Sci.)
+                  <div class="box" data-aos="fade-down">
+                    <img src="../../images/platform-tech/ahr_2.png" alt="">
+                  </div>
+                </li>
+              </ul>
+            </div>
+
+          </div>
+        </div>
+      </div>
+
+
+
+    </div>
+
+
+
+    <div data-include-path="../../layout/_footer.html"></div>
+  </div>
+
+
+</body>
+
+</html>(No newline at end of file)
 
src/main/webapp/publish/usr/platform-tech/organelle/ciliogenesis.html (added)
+++ src/main/webapp/publish/usr/platform-tech/organelle/ciliogenesis.html
@@ -0,0 +1,121 @@
+<!DOCTYPE html>
+<html lang="ko">
+
+<head>
+  <meta charset="UTF-8">
+  <meta name="viewport" content="width=device-width, initial-scale=1.0">
+  <title>Platform Technologies > Organelle Homeostasis > Ciliogenesis</title>
+
+  <!-- css -->
+  <link rel="stylesheet" href="../../../../css/reset.css">
+  <link rel="stylesheet" href="../../../../css/font.css">
+  <link rel="stylesheet" href="../../layout/layout.css">
+  <link rel="stylesheet" href="../../css/common.css">
+  <link rel="stylesheet" href="../../css/style.css">
+  <link rel="stylesheet" href="../../css/content.css">
+  <!-- //css -->
+
+  <!-- script -->
+  <script src="../../../../js/jquery-3.5.0.js"></script>
+  <script src="../../script/common.js"></script>
+  <script src="../../layout/layout.js"></script>
+  <!-- //script -->
+
+
+  <link rel="stylesheet" href="/publish/common/script/plugin/aos-next/aos.css" />
+  	<script src="/publish/common/script/plugin/aos-next/aos.js"></script>
+  	<script>
+  		$(function(){
+  			AOS.init();	
+  		})
+  		
+  	</script>
+
+
+</head>
+
+<body data-section="platform-tech">
+
+
+  <div class="wrap">
+    <div data-include-path="../../layout/_header.html"></div>
+
+    <div id="container" class="container sub platform_tech">
+      <div class="sub_visual">
+        <div class="inner">
+          <h2 class="sub_title" data-section="platform-tech">Platform Technologies</h2>
+          <div class="sub_visual_nav">
+            <a href="../index.html"><i class="icon home"></i></a>
+            <div class="snb_wrap">
+              <button type="button" class="snb_title">메뉴</button>
+              <ul class="snb_select">
+                <li><a href="#">COMPANY</a></li>
+                <li><a href="#">Platform Tech</a></li>
+                <li><a href="#">Major Result</a></li>
+              </ul>
+            </div>
+            <div class="snb_wrap">
+              <button type="button" class="snb_title">메뉴</button>
+              <ul class="snb_select">
+                <li><a href="#">1depth</a></li>
+                <li><a href="#">1depth</a></li>
+                <li><a href="#">1depth</a></li>
+              </ul>
+            </div>
+          </div>
+        </div>
+      </div>
+      <div class="inner">
+        <div class="content_wrap">
+
+          <div class="contents">
+
+            <div class="content_title">
+              <h3>Ciliogenesis</h3>
+            </div>
+
+            <div class="con_title" data-aos="fade-down">
+              <strong class="title">Ciliogenesis inducer screening platforms</strong>
+            </div>
+            
+            <div class="figure_content column">
+              
+              <ul class="figure_desc square" data-aos="fade-down">
+                <li>Global first target & M.O.A</li>
+                <li>Pharma : first reveal the relationship of target gene 8 ciliogenesis</li>
+                <li>Cosmetic : first define the effect P.M of through cilia</li>
+                <li>
+                  Molecules (2021), Sci Rep (2019), PLoS One (2016)
+                  <div class="box" data-aos="fade-down">
+                    <img src="../../images/platform-tech/ciliogenesis_1.png" alt="">
+                  </div>
+                  <div class="box" data-aos="fade-down">
+                    <img src="../../images/platform-tech/ciliogenesis_2.png" alt="">
+                  </div>
+                </li>
+                <li>
+                  SH-SY5Y 신경세포주에서 primary cilia (일차섬모) 유도인자 처리에 따른 섬모형성 증가
+                  <div class="box" data-aos="fade-down">
+                    <img src="../../images/platform-tech/ciliogenesis_3.png" alt="">
+                  </div>
+                </li>
+              </ul>
+              <img src="../../images/platform-tech/ciliogenesis_4.png" alt="" style="margin: 0 auto;">
+            </div>
+          </div>
+        </div>
+      </div>
+
+
+
+    </div>
+
+
+
+    <div data-include-path="../../layout/_footer.html"></div>
+  </div>
+
+
+</body>
+
+</html>(No newline at end of file)
 
src/main/webapp/publish/usr/platform-tech/screening/animal_model.html (added)
+++ src/main/webapp/publish/usr/platform-tech/screening/animal_model.html
@@ -0,0 +1,99 @@
+<!DOCTYPE html>
+<html lang="ko">
+
+<head>
+  <meta charset="UTF-8">
+  <meta name="viewport" content="width=device-width, initial-scale=1.0">
+  <title>Platform Technologies > Screening > Animal model</title>
+
+  <!-- css -->
+  <link rel="stylesheet" href="../../../../css/reset.css">
+  <link rel="stylesheet" href="../../../css/font.css">
+  <link rel="stylesheet" href="../../layout/layout.css">
+  <link rel="stylesheet" href="../../css/common.css">
+  <link rel="stylesheet" href="../../css/style.css">
+  <link rel="stylesheet" href="../../css/content.css">
+  <!-- //css -->
+
+  <!-- script -->
+  <script src="../../../../js/jquery-3.5.0.js"></script>
+  <script src="../../script/common.js"></script>
+  <script src="../../layout/layout.js"></script>
+  <!-- //script -->
+
+  <!-- 캘린더 -->
+  <script type="module" src="../../../js/plugin/datapicker/duet.esm.js"></script>
+  <script nomodule src="../../../js/plugin/datapicker/duet.js"></script>
+  <link rel="stylesheet" href="../../../js/plugin/datapicker/default.css">
+
+  <link rel="stylesheet" href="/publish/common/script/plugin/aos-next/aos.css" />
+  	<script src="/publish/common/script/plugin/aos-next/aos.js"></script>
+  	<script>
+  		$(function(){
+  			AOS.init();	
+  		})
+  		
+  	</script>
+
+
+</head>
+
+<body data-section="platform-tech">
+
+
+  <div class="wrap">
+    <div data-include-path="../layout/_header.html"></div>
+
+    <div id="container" class="container sub platform_tech">
+      <div class="sub_visual">
+        <div class="inner">
+          <h2 class="sub_title" data-section="platform_tech">PLATFORM TECHNOLOGIES</h2>
+          <div class="sub_visual_nav">
+            <a href="../index.html"><i class="icon home"></i></a>
+            <div class="snb_wrap">
+              <button type="button" class="snb_title">메뉴</button>
+              <ul class="snb_select">
+                <li><a href="#">COMPANY</a></li>
+                <li><a href="#">Platform Tech</a></li>
+                <li><a href="#">Major Result</a></li>
+              </ul>
+            </div>
+            <div class="snb_wrap">
+              <button type="button" class="snb_title">메뉴</button>
+              <ul class="snb_select">
+                <li><a href="#">1depth</a></li>
+                <li><a href="#">1depth</a></li>
+                <li><a href="#">1depth</a></li>
+              </ul>
+            </div>
+          </div>
+        </div>
+      </div>
+      <div class="inner">
+        <div class="content_wrap mitophagy">
+
+          <div class="contents">
+
+            <div class="content_title">
+              <h3>Animal model(준비중)</h3>
+            </div>
+
+          </div>
+        </div>
+
+        <div data-include-path="./autophagy-common.html"></div>
+
+      </div>
+
+
+    </div>
+
+
+
+    <div data-include-path="../layout/_footer.html"></div>
+  </div>
+
+
+</body>
+
+</html>(No newline at end of file)
 
src/main/webapp/publish/usr/platform-tech/screening/hts_system.html (added)
+++ src/main/webapp/publish/usr/platform-tech/screening/hts_system.html
@@ -0,0 +1,186 @@
+<!DOCTYPE html>
+<html lang="ko">
+
+<head>
+  <meta charset="UTF-8">
+  <meta name="viewport" content="width=device-width, initial-scale=1.0">
+  <title>Platform Tech > Screening > Imaging-based HTS system</title>
+
+  <!-- css -->
+  <link rel="stylesheet" href="../../../../css/reset.css">
+  <link rel="stylesheet" href="../../../../css/font.css">
+  <link rel="stylesheet" href="../../layout/layout.css">
+  <link rel="stylesheet" href="../../css/common.css">
+  <link rel="stylesheet" href="../../css/style.css">
+  <link rel="stylesheet" href="../../css/content.css">
+  <!-- //css -->
+
+  <!-- script -->
+  <script src="../../../../js/jquery-3.5.0.js"></script>
+  <script src="../../script/common.js"></script>
+  <script src="../../layout/layout.js"></script>
+  <!-- //script -->
+
+  <!-- 캘린더 -->
+  <script type="module" src="../../../js/plugin/datapicker/duet.esm.js"></script>
+  <script nomodule src="../../../js/plugin/datapicker/duet.js"></script>
+  <link rel="stylesheet" href="../../../js/plugin/datapicker/default.css">
+
+
+</head>
+
+<body data-section="platform_tech">
+
+
+  <div class="wrap">
+    <div data-include-path="../../layout/_header.html"></div>
+
+    <div id="container" class="container sub platform_tech">
+      <div class="sub_visual">
+        <div class="inner">
+          <h2 class="sub_title" data-section="platform_tech">PLATFORM TECHNOLOGIES</h2>
+          <div class="sub_visual_nav">
+            <a href="../index.html"><i class="icon home"></i></a>
+            <div class="snb_wrap">
+              <button type="button" class="snb_title">메뉴</button>
+              <ul class="snb_select">
+                <li><a href="#">COMPANY</a></li>
+                <li><a href="#">Platform Tech</a></li>
+                <li><a href="#">Major Result</a></li>
+              </ul>
+            </div>
+            <div class="snb_wrap">
+              <button type="button" class="snb_title">메뉴</button>
+              <ul class="snb_select">
+                <li><a href="#">1depth</a></li>
+                <li><a href="#">1depth</a></li>
+                <li><a href="#">1depth</a></li>
+              </ul>
+            </div>
+          </div>
+        </div>
+      </div>
+      <div class="inner">
+        <div class="content_wrap hts_system">
+
+          <div class="contents">
+
+            <div class="content_title" data-aos="fade-down">
+              <h3>Imaging-based HTS system</h3>
+            </div>
+
+            <div class="con_title" data-aos="fade-down">
+              <strong class="title">Core Technology _ ORAUTACTM screening platform ( in vitro & in vivo)</strong>
+            </div>
+
+            <div class="dl_wrap">
+              <dl class="w100per">
+                <dt>
+                  <b>HCS & General Assay for Organelles</b>
+                </dt>
+                <dd>
+                  <img src="../../images/platform-tech/hts_1.png" alt="">
+                </dd>
+              </dl>
+            </div>
+            <div class="dl_wrap mt60">
+              <dl class="w100per">
+                <dt>
+                  <b>ORAUTACTM platform: In vitro & In vivo (Fly, Fish & Mouse)</b>
+                </dt>
+                <dd class="dd_table">
+                  <div class="table_wrap" data-aos="fade-down">
+                    <table>
+                      <colgroup>
+                        <col style="width:calc(100%/8);">
+                        <col style="width:calc(100%/8);">
+                        <col style="width:calc(100%/8);">
+                        <col style="width:calc(100%/8);">
+                        <col style="width:calc(100%/8);">
+                        <col style="width:calc(100%/8);">
+                        <col style="width:calc(100%/8);">
+                        <col style="width:calc(100%/8);">
+                      </colgroup>
+                      <thead>
+                        <tr>
+                          <th></th>
+                          <th><img src="../../images/platform-tech/hts_table_1.png" alt=""></th>
+                          <th><img src="../../images/platform-tech/hts_table_2.png" alt=""></th>
+                          <th><img src="../../images/platform-tech/hts_table_3.png" alt=""></th>
+                          <th><img src="../../images/platform-tech/hts_table_4.png" alt=""></th>
+                          <th><img src="../../images/platform-tech/hts_table_5.png" alt=""></th>
+                          <th><img src="../../images/platform-tech/hts_table_6.png" alt=""></th>
+                          <th><img src="../../images/platform-tech/hts_table_7.png" alt=""></th>
+                        </tr>
+                      </thead>
+                      <tbody>
+                        <tr>
+                          <th>Cell system</th>
+                          <td class="blue">Mitophagy</td>
+                          <td class="blue">Lysophagy</td>
+                          <td class="blue">Pexophagy</td>
+                          <td class="blue">ER-phagy</td>
+                          <td class="blue">Golgiphagy</td>
+                          <td class="blue">Melanophagy</td>
+                          <td class="blue">Granulophagy</td>
+                        </tr>
+                        <tr>
+                          <th>Fly</th>
+                          <td class="blue">Mitophagy</td>
+                          <td class="blue">Lysophagy</td>
+                          <td class="blue">Pexophagy</td>
+                          <td class="blue">ER-phagy</td>
+                          <td class="blue">Golgiphagy</td>
+                          <td class="gray">Melanophagy</td>
+                          <td class="blue">Granulophagy</td>
+                        </tr>
+                        <tr>
+                          <th>Fish</th>
+                          <td class="orange">Mitophagy</td>
+                          <td class="orange">Lysophagy</td>
+                          <td class="blue">Pexophagy</td>
+                          <td class="green">ER-phagy</td>
+                          <td class="gray">Golgiphagy</td>
+                          <td class="gray">Melanophagy</td>
+                          <td class="gray">Granulophagy</td>
+                        </tr>
+                        <tr>
+                          <th>Mouse</th>
+                          <td class="blue">Mitophagy</td>
+                          <td class="blue">Lysophagy</td>
+                          <td class="gray">Pexophagy</td>
+                          <td class="gray">ER-phagy</td>
+                          <td class="gray">Golgiphagy</td>
+                          <td class="gray">Melanophagy</td>
+                          <td class="gray">Granulophagy</td>
+                        </tr>
+                      </tbody>
+                    </table>
+                  </div>
+                  <ul class="legend">
+                    <li><i class="blue"></i>Established</li>
+                    <li><i class="orange"></i>Developing</li>
+                    <li><i class="gray"></i>Planed</li>
+                  </ul>
+                </dd>
+              </dl>
+            </div>
+            
+          </div>
+        </div>
+      </div>
+
+
+
+
+    </div>
+
+
+
+    <div data-include-path="../../layout/_footer.html"></div>
+  </div>
+
+
+</body>
+
+</html>(No newline at end of file)
 
src/main/webapp/publish/usr/platform_tech/autophagy.html (deleted)
--- src/main/webapp/publish/usr/platform_tech/autophagy.html
@@ -1,116 +0,0 @@
-<!DOCTYPE html>
-<html lang="ko">
-
-<head>
-  <meta charset="UTF-8">
-  <meta name="viewport" content="width=device-width, initial-scale=1.0">
-  <title>Platform Tech > Organelle Selective Autophagy</title>
-
-  <!-- css -->
-  <link rel="stylesheet" href="../../../css/reset.css">
-  <link rel="stylesheet" href="../../../css/font.css">
-  <link rel="stylesheet" href="../layout/layout.css">
-  <link rel="stylesheet" href="../css/common.css">
-  <link rel="stylesheet" href="../css/style.css">
-  <link rel="stylesheet" href="../css/content.css">
-  <!-- //css -->
-
-  <!-- script -->
-  <script src="../../../js/jquery-3.5.0.js"></script>
-  <script src="../script/common.js"></script>
-  <script src="../layout/layout.js"></script>
-  <!-- //script -->
-
-  <!-- 캘린더 -->
-  <script type="module" src="../../../js/plugin/datapicker/duet.esm.js"></script>
-  <script nomodule src="../../../js/plugin/datapicker/duet.js"></script>
-  <link rel="stylesheet" href="../../../js/plugin/datapicker/default.css">
-
-
-</head>
-
-<body data-section="platform_tech">
-
-
-  <div class="wrap">
-    <div data-include-path="../layout/_header.html"></div>
-
-    <div id="container" class="container sub platform_tech">
-      <div class="sub_visual">
-        <div class="inner">
-          <h2 class="sub_title" data-section="platform_tech">PLATFORM TECH</h2>
-          <div class="sub_visual_nav">
-            <a href="../index.html"><i class="icon home"></i></a>
-            <div class="snb_wrap">
-              <button type="button" class="snb_title">메뉴</button>
-              <ul class="snb_select">
-                <li><a href="#">COMPANY</a></li>
-                <li><a href="#">Platform Tech</a></li>
-                <li><a href="#">Major Result</a></li>
-              </ul>
-            </div>
-            <div class="snb_wrap">
-              <button type="button" class="snb_title">메뉴</button>
-              <ul class="snb_select">
-                <li><a href="#">1depth</a></li>
-                <li><a href="#">1depth</a></li>
-                <li><a href="#">1depth</a></li>
-              </ul>
-            </div>
-          </div>
-        </div>
-      </div>
-      <div class="inner">
-        <div class="content_wrap autophagy">
-
-          <div class="contents">
-
-            <div class="content_title">
-              <h3>Organelle Selective Autophagy<br><span>(세포소기관 선택적 자가포식작용)</span></h3>
-            </div>
-
-            <div class="con_title">
-              <strong class="title">선택적 자가포식의 개념</strong>
-            </div>
-            
-            <div class="figure_content column">
-              <div class="box">
-                <img src="../images/platform_tech/autophagy_1.png" alt="">
-              </div>
-              <div class="box">
-                <img src="../images/platform_tech/autophagy_2.png" alt="">
-              </div>
-
-              <ul class="step_ul">
-                <li>Ogarnelle Damage</li>
-                <li class="next"><img src="../images/component/step_next.png" alt=""></li>
-                <li>Sensor / Kinase</li>
-                <li class="next"><img src="../images/component/step_next.png" alt=""></li>
-                <li>Effector / E3 ligase</li>
-                <li class="next"><img src="../images/component/step_next.png" alt=""></li>
-                <li>Membrane Uniquitination</li>
-                <li class="next"><img src="../images/component/step_next.png" alt=""></li>
-                <li>Recruitment of Adaptors</li>
-                <li class="next"><img src="../images/component/step_next.png" alt=""></li>
-                <li>Engulfment by Autophagosome</li>
-              </ul>
-            </div>
-            
-
-
-          </div>
-
-
-        </div>
-      </div>
-    </div>
-
-
-
-    <div data-include-path="../layout/_footer.html"></div>
-  </div>
-
-
-</body>
-
-</html>(No newline at end of file)
 
src/main/webapp/publish/usr/platform_tech/background.html (deleted)
--- src/main/webapp/publish/usr/platform_tech/background.html
@@ -1,134 +0,0 @@
-<!DOCTYPE html>
-<html lang="ko">
-
-<head>
-  <meta charset="UTF-8">
-  <meta name="viewport" content="width=device-width, initial-scale=1.0">
-  <title>Platform Tech > Background</title>
-
-  <!-- css -->
-  <link rel="stylesheet" href="../../../css/reset.css">
-  <link rel="stylesheet" href="../../../css/font.css">
-  <link rel="stylesheet" href="../layout/layout.css">
-  <link rel="stylesheet" href="../css/common.css">
-  <link rel="stylesheet" href="../css/style.css">
-  <link rel="stylesheet" href="../css/content.css">
-  <!-- //css -->
-
-  <!-- script -->
-  <script src="../../../js/jquery-3.5.0.js"></script>
-  <script src="../script/common.js"></script>
-  <script src="../layout/layout.js"></script>
-  <!-- //script -->
-
-  <!-- 캘린더 -->
-  <script type="module" src="../../../js/plugin/datapicker/duet.esm.js"></script>
-  <script nomodule src="../../../js/plugin/datapicker/duet.js"></script>
-  <link rel="stylesheet" href="../../../js/plugin/datapicker/default.css">
-
-
-</head>
-
-<body data-section="platform_tech">
-
-
-  <div class="wrap">
-    <div data-include-path="../layout/_header.html"></div>
-
-    <div id="container" class="container sub platform_tech">
-      <div class="sub_visual">
-        <div class="inner">
-          <h2 class="sub_title" data-section="platform_tech">PLATFORM TECH</h2>
-          <div class="sub_visual_nav">
-            <a href="../index.html"><i class="icon home"></i></a>
-            <div class="snb_wrap">
-              <button type="button" class="snb_title">메뉴</button>
-              <ul class="snb_select">
-                <li><a href="#">COMPANY</a></li>
-                <li><a href="#">Platform Tech</a></li>
-                <li><a href="#">Major Result</a></li>
-              </ul>
-            </div>
-            <div class="snb_wrap">
-              <button type="button" class="snb_title">메뉴</button>
-              <ul class="snb_select">
-                <li><a href="#">1depth</a></li>
-                <li><a href="#">1depth</a></li>
-                <li><a href="#">1depth</a></li>
-              </ul>
-            </div>
-          </div>
-        </div>
-      </div>
-      <div class="inner">
-        <div class="content_wrap background">
-
-          <div class="contents">
-
-            <div class="content_title">
-              <h3>Background <span>(연구배경)</span></h3>
-            </div>
-
-            <div class="con_title">
-              <strong class="title">Emerging therapeutic target : cellular organelle & homeostasis</strong>
-            </div>
-            
-            <div class="figure_content column">
-              <div class="box">
-                <img src="../images/platform_tech/background_1.png" alt="">
-              </div>
-            </div>
-            
-            <div class="con_title">
-              <strong class="title">자가포식작용 (Autophagy)과 세포의 항상성</strong>
-              <span class="summary black">Life is an “Equilibrium State” between synthesis and degradation of proteins/organelles<br>
-                (Yoshinori Oshuma, 2016 Nobel Prizer)</span>
-            </div>
-
-            <div class="figure_content column">
-              <div class="box">
-                <img src="../images/platform_tech/background_2.png" alt="">
-              </div>
-
-              <div class="dl_wrap">
-                <dl>
-                  <dt>
-                    <b>Normal cellualr health</b>
-                    <span>Balanced state of cellualr protein<br>generation and recycling</span>
-                  </dt>
-                  <dd>
-                    <img src="../images/platform_tech/background_3.png" alt="">
-                  </dd>
-                </dl>
-                <dl>
-                  <dt>
-                    <b>Disease</b>
-                    <span>Imbalanced state of cellular<br>protein generation and recycling</span>
-                  </dt>
-                  <dd>
-                    <img src="../images/platform_tech/background_4.png" alt="">
-                  </dd>
-                </dl>
-              </div>
-
-              
-
-            </div>
-
-
-          </div>
-
-
-        </div>
-      </div>
-    </div>
-
-
-
-    <div data-include-path="../layout/_footer.html"></div>
-  </div>
-
-
-</body>
-
-</html>(No newline at end of file)
src/main/webapp/publish/usr/script/content.js
--- src/main/webapp/publish/usr/script/content.js
+++ src/main/webapp/publish/usr/script/content.js
@@ -1,168 +1,131 @@
-/*$(function () {
+/**
+ * 공통 UI 및 메뉴 로직 제어
+ */
+$(function () {
+    // 0. 메뉴 링크 자동 매핑 실행 (하위 첫 번째 메뉴 연결)
+    updateMenuLinks();
 
-   ==================================================
-     container.sub 클래스 (있을 때만)
-  ================================================== 
-  const $container = $(".container.sub");
-  const section = $("h2.sub_title").data("section");
+    // 1. 페이지 타이틀에 따른 컨테이너 레이아웃 클래스 제어
+    const pageTitle = $(".sub_title").text().trim().toUpperCase();
+    const $container = $("#container");
 
-  if ($container.length && section) {
-    $container
-      .removeClass("company major_result platform_tech")
-      .addClass(section);
-  }
-
-   ==================================================
-     src 경로 보정
-  ================================================== 
-  $("[src]").each(function () {
-    const src = $(this).attr("src");
-    if (src && src.startsWith("../")) {
-      $(this).attr("src", src.replace(/^\.\.\//, "/publish/usr/"));
-    }
-  });
-
-   ==================================================
-     Sub Visual SNB 기본 세팅
-  ================================================== 
-  $(".icon.home").closest("a").attr("href", "/web/main/mainPage.do");
-
-  const $wraps = $(".sub_visual_nav .snb_wrap");
-  if ($wraps.length < 2) return;
-
-  const $snbDepth01 = $wraps.eq(0).find(".snb_select");
-  const $snbDepth02 = $wraps.eq(1).find(".snb_select");
-
-  if ($snbDepth01.data("init")) return;
-  $snbDepth01.data("init", true);
-
-  const params = new URLSearchParams(location.search);
-  const proFn = params.get("proFn");
-  const bbsId = params.get("bbsId");
-  const pathname = location.pathname;
-
-  const isCommunity = pathname.includes("/bbsWeb/");
-  const isCommunityDetail = pathname.includes("selectBoardDetail.do");
-
-  const $gnb = $(".gnb").first();
-
-   ==================================================
-     현재 depth01 / depth02 결정
-  ================================================== 
-  let $currentDepth01Li = $();
-  let $currentDepth02 = $();
-
-  if (isCommunity) {
-    $currentDepth01Li = $gnb.find("> li").filter(function () {
-      return $(this).find("> .depth01").text().trim().toLowerCase() === "community";
-    }).first();
-  } else if (proFn) {
-    $currentDepth02 = $gnb.find(`.depth02[href*="proFn=${proFn}"]`).first();
-    $currentDepth01Li = $currentDepth02.closest(".depth02_container").closest("li");
-  }
-
-  if (!$currentDepth01Li.length) {
-    $currentDepth01Li = $gnb.find("> li").first();
-  }
-
-  const currentDepth01Text =
-    $currentDepth01Li.find("> .depth01").text().trim();
-
-   ==================================================
-     SNB depth01 생성 (대표 링크 = 첫 depth02)
-  ================================================== 
-  $snbDepth01.empty();
-
-  $gnb.find("> li").each(function () {
-    const text = $(this).find("> .depth01").text().trim();
-    if (!text) return;
-
-    const firstHref = $(this).find(".depth02").first().attr("href") || "#";
-    const isActive = text === currentDepth01Text;
-
-    $snbDepth01.append(`
-      <li class="${isActive ? "active" : ""}">
-        <a href="${firstHref}">${text}</a>
-      </li>
-    `);
-  });
-
-   ==================================================
-     SNB depth02 생성 + active 처리
-  ================================================== 
-  $snbDepth02.empty();
-
-  $currentDepth01Li.find(".depth02").each(function (index) {
-    const href = $(this).attr("href");
-    const text = $(this).text().trim();
-
-    let isActive = false;
-
-    if (!isCommunity && proFn) {
-      isActive = href.includes(`proFn=${proFn}`);
+    if (pageTitle === "COMPANY") {
+        $container.addClass("company");
+    } else if (pageTitle === "PIPELINE") {
+        $container.addClass("pipeline");
+    } else if (pageTitle === "PLATFORM TECHNOLOGIES") {
+        $container.addClass("platform_tech");
+    } else {
+        $container.addClass("achievement");
     }
 
-    if (isCommunity && bbsId) {
-      isActive = href.includes(`bbsId=${bbsId}`);
+    // 2. 상대 경로 이미지 주소 치환 (../ -> /publish/usr/)
+    $('[src]').each(function () {
+        const src = $(this).attr('src');
+        if (src && src.indexOf('../') === 0) {
+            $(this).attr('src', src.replace(/^\.\.\//, '/publish/usr/'));
+        }
+    });
+
+    /**
+     * ==========================================
+     * 연혁(History) 스크롤 인터랙션
+     * ==========================================
+     */
+    const BREAKPOINT = 1280;
+
+    function bindHistoryScroll() {
+        // 기존 이벤트 해제 (리사이즈 시 중복 방지)
+        $('.history_month').off('scroll.history');
+        $(window).off('scroll.history');
+
+        // 모바일/태블릿 구간에서는 실행 안 함
+        if ($(window).width() < BREAKPOINT) return;
+
+        /**
+         * 1) 연혁 영역 내부 스크롤 시 연도(Year) 활성화
+         */
+        $('.history_month').on('scroll.history', function () {
+            let currentId = null;
+
+            $('.month_ul').each(function () {
+                // 상단 위치를 계산하여 현재 활성화된 영역 감지
+                if ($(this).position().top <= 1) {
+                    currentId = this.id;
+                }
+            });
+
+            if (currentId) {
+                $('.year_item, .month_ul').removeClass('active');
+                $('#' + currentId).addClass('active'); // 월 리스트 활성화
+                $('#' + currentId.replace('year_', 'year')).addClass('active'); // 연도 버튼 활성화
+            }
+        });
+
+        /**
+         * 2) 윈도우 스크롤 시 연혁 영역 활성화 제어 (스티키 효과 등)
+         */
+        const TARGET = 719; // 활성화 기준 좌표
+        const RANGE = 20;  // 감지 허용 오차 범위
+        const $history = $('.history_month');
+
+        $(window).on('scroll.history', function () {
+            const scrollTop = $(this).scrollTop();
+
+            // 특정 스크롤 위치에 도달했을 때 클래스 부여
+            if (scrollTop >= TARGET - RANGE && scrollTop <= TARGET + RANGE) {
+                $history.addClass('active');
+            } else {
+                $history.removeClass('active');
+            }
+        });
     }
 
-    if (isCommunityDetail) {
-      isActive = index === 1;
-    }
+    // 연혁 스크롤 이벤트 초기화
+    bindHistoryScroll();
 
-    $snbDepth02.append(`
-      <li class="${isActive ? "active" : ""}">
-        <a href="${href}">${text}</a>
-      </li>
-    `);
-  });
-
-   ==================================================
-     SNB 타이틀
-  ================================================== 
-  $wraps.eq(0).find(".snb_title").text(currentDepth01Text || "메뉴");
-
-  if (isCommunityDetail) {
-    const firstText = $currentDepth01Li.find(".depth02").first().text().trim();
-    $wraps.eq(1).find(".snb_title").text(firstText || "메뉴");
-  } else {
-    const activeText = $snbDepth02.find("li.active a").text();
-    $wraps.eq(1).find(".snb_title").text(activeText || "메뉴");
-  }
-
-   ==================================================
-     SNB 토글
-  ================================================== 
-  $(".snb_title").on("click", function () {
-    const $wrap = $(this).closest(".snb_wrap");
-
-    $(".snb_wrap").not($wrap)
-      .removeClass("active")
-      .find(".snb_select").slideUp(200);
-
-    $wrap.toggleClass("active")
-      .find(".snb_select").stop(true, true).slideToggle(250);
-  });
-
-   ==================================================
-     depth01 클릭 시 첫 depth02 이동
-  ================================================== 
-  $snbDepth01.on("click", "a", function (e) {
-    e.preventDefault();
-    location.href = $(this).attr("href");
-  });
-
-   ==================================================
-     외부 클릭 시 닫기
-  ================================================== 
-  $(document).on("click", function (e) {
-    if (!$(e.target).closest(".snb_wrap").length) {
-      $(".snb_wrap")
-        .removeClass("active")
-        .find(".snb_select")
-        .slideUp(200);
-    }
-  });
-
+    // 브라우저 리사이즈 시 대응
+    $(window).on('resize', function() {
+        bindHistoryScroll();
+    });
 });
-*/
(No newline at end of file)
+
+/**
+ * 하위 메뉴 구조를 분석하여 상위 메뉴의 href 링크를 자동으로 설정
+ */
+function updateMenuLinks() {
+    // 1. 2Depth 메뉴 링크 업데이트
+    $('.depth02').each(function () {
+        const $this = $(this);
+        const menuText = $.trim($this.text());
+
+        // Selective Autophagy: 하위 메뉴가 아닌 고정 경로로 이동
+        if (menuText === "Selective Autophagy") {
+            $this.attr('href', '/web/content.do?proFn=999314000');
+            return true; // continue
+        }
+
+        // 하위 3Depth 중 첫 번째 유효한 링크 탐색
+        const firstDepth03Href = $this.closest('li').find('.depth03').filter(function () {
+            const href = $(this).attr('href');
+            return href && href !== '#' && href !== '';
+        }).first().attr('href');
+
+        if (firstDepth03Href) {
+            $this.attr('href', firstDepth03Href);
+        }
+    });
+
+    // 2. 1Depth 메뉴 링크 업데이트
+    $('.depth01').each(function () {
+        // 하위에 업데이트된 2Depth 또는 존재하는 3Depth 중 첫 번째 유효한 링크 탐색
+        const firstChildHref = $(this).closest('li').find('.depth02, .depth03').filter(function () {
+            const href = $(this).attr('href');
+            return href && href !== '#' && href !== '';
+        }).first().attr('href');
+
+        if (firstChildHref) {
+            $(this).attr('href', firstChildHref);
+        }
+    });
+}
(No newline at end of file)
src/main/webapp/publish/usr/script/submenu.js
--- src/main/webapp/publish/usr/script/submenu.js
+++ src/main/webapp/publish/usr/script/submenu.js
@@ -9,22 +9,60 @@
 			fn_getSubMenu();
 		}
 	}
+	
+	$(document).on("click", ".snb_title", function() {
+	    const $wrap = $(this).closest(".snb_wrap");
+
+	    // 다른 열려있는 메뉴 닫기
+	    $(".snb_wrap").not($wrap)
+	      .removeClass("active")
+	      .find(".snb_select").slideUp(200);
+
+	    // 클릭한 메뉴 토글
+	    $wrap.toggleClass("active")
+	      .find(".snb_select").stop(true, true).slideToggle(250);
+	});
+
+	$(document).on("click", function (e) {
+	    if (!$(e.target).closest(".snb_wrap").length) {
+	        $(".snb_wrap")
+	            .removeClass("active")
+	            .find(".snb_select")
+	            .slideUp(200);
+	    }
+	});
+	
+	
 });
 
 function fn_getSubMenu(){
-
-	
 	
 	var title = $('#container .sub_title').text();
-	var subTitle = $.trim($('.content_title').text());
-
-	console.log('title ::', title);
-	console.log('subTitle ::', subTitle);
+	var subTitle;
+	var depth3Title = $.trim($('.content_title').text());
+	
+	$(".header_container .depth03").each(function(idx, itm){
+	    let text = $.trim($(itm).text());
+	    
+	    if(depth3Title === text){
+	        subTitle = $(itm).closest(".depth03_ul").siblings(".depth02").text();
+	        subTitle = $.trim(subTitle);
+	        return false;
+	    }else{
+	    	subTitle = depth3Title;
+	    }
+	});
+	
 
 	var sendData = {
-			"depth1MenuNm" :  title
-			, "depth2MenuNm" : subTitle
+			"depth1MenuNm" :  title,
+			"depth2MenuNm" : subTitle,
+			"depth3MenuNm" : depth3Title
 		}
+	
+	console.log('title ::', title);
+	console.log('subTitle ::', subTitle);
+	console.log('depth3Title ::', depth3Title);
 	
 	$.ajax({
 		type: 'POST',
@@ -43,6 +81,17 @@
 		}
 	});
 	
+		
+	setTimeout(function(){
+    	$(".snb_select li a").each(function(idx,itm){
+    		$(".header_container .gnb a").each(function(index,item){
+    			var itemUrl = $(item).attr("href");
+    			if($(itm).text().trim() == $(item).text().trim()){
+    				$(itm).attr("href",itemUrl);
+    			}
+    		})
+    	})
+    },1000)
 }
 
 
@@ -52,8 +101,10 @@
     
     const depth1List = result.depth1List || []; // 데이터가 없으면 빈 배열로 초기화
     const depth2List = result.depth2List || [];
+    const depth3List = result.depth3List || [];
     const selected1 = result.selectedDepth1;
     const selected2 = result.selectedDepth2;
+    const selected3 = result.selectedDepth3;
 
     let html = '';
 
@@ -83,6 +134,18 @@
         html += '  </ul>';
         html += '</div>';
     }
+    
+    if (depth3List.length > 0) {
+        html += '<div class="snb_wrap snb_depth03">';
+        html += `  <button type="button" class="snb_title">${selected3 ? selected3.text : '메뉴'}</button>`;
+        html += '  <ul class="snb_select">';
+        depth3List.forEach(item => {
+            html += `    <li><a href="${item.url || '#'}">${item.text}</a></li>`;
+        });
+        html += '  </ul>';
+        html += '</div>';
+    }
 
     document.querySelector('.sub_visual_nav').innerHTML = html;
+    
 }
Add a comment
List