test / index.html
Wookeun's picture
Add 2 files
fbea5b9 verified
Raw
History Blame Contribute Delete
62.6 kB
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>16S rRNA ์—ผ๊ธฐ์„œ์—ด ๋ถ„์„๋ฒ•: ๋ฏธ์ƒ๋ฌผ ๋™์ •์˜ ํ˜๋ช…</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;500;700;900&display=swap');
body {
font-family: 'Noto Sans KR', sans-serif;
scroll-behavior: smooth;
}
.gradient-bg {
background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
}
.section-card {
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.section-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.highlight-text {
background: linear-gradient(120deg, #93c5fd 0%, #93c5fd 100%);
background-repeat: no-repeat;
background-size: 100% 40%;
background-position: 0 88%;
}
.sticky-nav {
position: sticky;
top: 0;
z-index: 50;
backdrop-filter: blur(10px);
}
.microbe-icon {
animation: float 6s ease-in-out infinite;
}
@keyframes float {
0% { transform: translateY(0px); }
50% { transform: translateY(-15px); }
100% { transform: translateY(0px); }
}
.table-row:hover {
background-color: #f0f9ff;
}
.timeline-item::before {
content: '';
position: absolute;
left: -1.5rem;
top: 0;
height: 100%;
width: 3px;
background: #3b82f6;
}
</style>
</head>
<body class="bg-gray-50 text-gray-800">
<!-- Navigation -->
<nav class="sticky-nav gradient-bg text-white shadow-lg">
<div class="container mx-auto px-4 py-3 flex justify-between items-center">
<div class="flex items-center space-x-2">
<i class="fas fa-dna text-2xl"></i>
<span class="text-xl font-bold">16S rRNA ๋ถ„์„</span>
</div>
<div class="hidden md:flex space-x-6">
<a href="#intro" class="hover:text-blue-200 transition">์†Œ๊ฐœ</a>
<a href="#importance" class="hover:text-blue-200 transition">์ค‘์š”์„ฑ</a>
<a href="#principle" class="hover:text-blue-200 transition">์›๋ฆฌ</a>
<a href="#application" class="hover:text-blue-200 transition">์ ์šฉ</a>
<a href="#advantages" class="hover:text-blue-200 transition">์žฅ๋‹จ์ </a>
</div>
<button class="md:hidden text-xl" id="mobile-menu-button">
<i class="fas fa-bars"></i>
</button>
</div>
<!-- Mobile menu -->
<div class="md:hidden hidden bg-blue-900" id="mobile-menu">
<div class="container mx-auto px-4 py-2 flex flex-col space-y-2">
<a href="#intro" class="py-2 hover:text-blue-200 transition">์†Œ๊ฐœ</a>
<a href="#importance" class="py-2 hover:text-blue-200 transition">์ค‘์š”์„ฑ</a>
<a href="#principle" class="py-2 hover:text-blue-200 transition">์›๋ฆฌ</a>
<a href="#application" class="py-2 hover:text-blue-200 transition">์ ์šฉ</a>
<a href="#advantages" class="py-2 hover:text-blue-200 transition">์žฅ๋‹จ์ </a>
</div>
</div>
</nav>
<!-- Hero Section -->
<header class="gradient-bg text-white py-20">
<div class="container mx-auto px-4 flex flex-col md:flex-row items-center">
<div class="md:w-1/2 mb-10 md:mb-0">
<h1 class="text-4xl md:text-5xl font-bold mb-6">16S rRNA ์—ผ๊ธฐ์„œ์—ด ๋ถ„์„๋ฒ•</h1>
<p class="text-xl mb-8 text-blue-100">๋ฏธ์ƒ๋ฌผ ๋™์ •์˜ ํ˜๋ช…์  ๋ฐฉ๋ฒ•๋ก </p>
<p class="mb-8 text-blue-100">๋ˆˆ์— ๋ณด์ด์ง€ ์•Š๋Š” ๋ฏธ์ƒ๋ฌผ ์„ธ๊ณ„๋ฅผ ํ•ด์„ํ•˜๋Š” ๊ฐ•๋ ฅํ•œ ๋„๊ตฌ</p>
<div class="flex space-x-4">
<a href="#intro" class="bg-white text-blue-800 px-6 py-3 rounded-lg font-medium hover:bg-blue-100 transition">์‹œ์ž‘ํ•˜๊ธฐ</a>
<a href="#application" class="border border-white text-white px-6 py-3 rounded-lg font-medium hover:bg-blue-700 transition">์ ์šฉ ์‚ฌ๋ก€</a>
</div>
</div>
<div class="md:w-1/2 flex justify-center">
<div class="relative w-64 h-64">
<img src="https://img.icons8.com/color/96/000000/bacteria.png" class="absolute top-0 left-0 microbe-icon" style="animation-delay: 0s;">
<img src="https://img.icons8.com/color/96/000000/virus.png" class="absolute top-10 right-0 microbe-icon" style="animation-delay: 1s;">
<img src="https://img.icons8.com/color/96/000000/microscope.png" class="absolute bottom-0 left-1/4 microbe-icon" style="animation-delay: 2s;">
</div>
</div>
</div>
</header>
<!-- Introduction Section -->
<section id="intro" class="py-16 bg-white">
<div class="container mx-auto px-4">
<div class="text-center mb-12">
<h2 class="text-3xl font-bold text-blue-900 mb-4">๋ฏธ์ƒ๋ฌผ ๋™์ •์˜ ํ˜๋ช…</h2>
<div class="w-20 h-1 bg-blue-500 mx-auto mb-6"></div>
<p class="text-lg text-gray-600 max-w-3xl mx-auto">16S rRNA ์—ผ๊ธฐ์„œ์—ด ๋ถ„์„๋ฒ•์€ ํ˜„๋Œ€ ๋ฏธ์ƒ๋ฌผํ•™์˜ ํŒจ๋Ÿฌ๋‹ค์ž„์„ ๋ฐ”๊พผ ํ˜์‹ ์ ์ธ ๊ธฐ์ˆ ์ž…๋‹ˆ๋‹ค.</p>
</div>
<div class="grid md:grid-cols-2 gap-8 items-center">
<div>
<p class="mb-6 text-gray-700 leading-relaxed">์šฐ๋ฆฌ ์ฃผ๋ณ€ ์„ธ์ƒ์€ ๋ˆˆ์— ๋ณด์ด์ง€ ์•Š๋Š” ์ž‘์€ ์ƒ๋ช…์ฒด, ๋ฐ”๋กœ <span class="highlight-text font-medium">๋ฏธ์ƒ๋ฌผ</span>๋กœ ๊ฐ€๋“ ์ฐจ ์žˆ์Šต๋‹ˆ๋‹ค. ํ™ ํ•œ ์คŒ์—๋Š” ์ˆ˜์‹ญ์–ต ๋งˆ๋ฆฌ์˜ ์„ธ๊ท ์ด ์‚ด๊ณ  ์žˆ๊ณ , ์šฐ๋ฆฌ ๋ชธ์†, ํŠนํžˆ ์žฅ์—๋Š” ์šฐ๋ฆฌ ๋ชธ ์„ธํฌ ์ˆ˜๋ณด๋‹ค ํ›จ์”ฌ ๋งŽ์€ ๋ฏธ์ƒ๋ฌผ์ด ๊ณต์กดํ•˜๋ฉฐ ๊ฑด๊ฐ•์— ์ง€๋Œ€ํ•œ ์˜ํ–ฅ์„ ๋ฏธ์น˜์ง€์š”.</p>
<p class="mb-6 text-gray-700 leading-relaxed">๋•Œ๋กœ๋Š” ๊น€์น˜๋‚˜ ์น˜์ฆˆ ๊ฐ™์€ ๋ง›์žˆ๋Š” ๋ฐœํšจ ์‹ํ’ˆ์„ ๋งŒ๋“ค์–ด์ฃผ๊ธฐ๋„ ํ•˜๊ณ , ๋•Œ๋กœ๋Š” ๋ฌด์„œ์šด ๊ฐ์—ผ๋ณ‘์„ ์ผ์œผํ‚ค๊ธฐ๋„ ํ•˜๋Š” ์ด ๋ฏธ์ƒ๋ฌผ๋“ค์˜ ์ •์ฒด๋ฅผ ์ •ํ™•ํžˆ ์•„๋Š” ๊ฒƒ์€ ๊ทธ๋ž˜์„œ ๋งค์šฐ ์ค‘์š”ํ•ฉ๋‹ˆ๋‹ค.</p>
<div class="bg-blue-50 border-l-4 border-blue-500 p-4 mb-6">
<p class="text-blue-800 italic">"์ด ๋ฏธ์ƒ๋ฌผ์€ ๋ˆ„๊ตฌ์ธ๊ฐ€?"๋ฅผ ๋ฐํžˆ๋Š” <span class="font-bold">๋™์ •(Identification)</span> ๊ณผ์ •์€ ํ•„์ˆ˜์ ์ž…๋‹ˆ๋‹ค. ๊ทธ๋Ÿฐ๋ฐ ์ˆ˜๋งŽ์€ ์ข…๋ฅ˜์˜ ๋ฏธ์ƒ๋ฌผ์„ ์–ด๋–ป๊ฒŒ ์ •ํ™•ํ•˜๊ฒŒ ๊ตฌ๋ณ„ํ•  ์ˆ˜ ์žˆ์„๊นŒ์š”?</p>
</div>
</div>
<div class="bg-blue-50 rounded-xl p-6 section-card">
<h3 class="text-xl font-bold text-blue-800 mb-4">16S rRNA ๋ถ„์„์˜ ํ•ต์‹ฌ</h3>
<p class="mb-4 text-gray-700">๋ชจ๋“  ์„ธ๊ท ์ด ๊ฐ€์ง€๊ณ  ์žˆ๋Š” ํŠน์ • ์œ ์ „์ž, ์ฆ‰ <span class="font-medium text-blue-700">16S rRNA ์œ ์ „์ž์˜ ์—ผ๊ธฐ์„œ์—ด</span>์„ ์ฝ์–ด๋‚ด๊ณ , ์ด ์ •๋ณด๋ฅผ ๊ฑฐ๋Œ€ํ•œ ๋ฐ์ดํ„ฐ๋ฒ ์ด์Šค์™€ ๋น„๊ตํ•˜์—ฌ ํ•ด๋‹น ์„ธ๊ท ์˜ '์‹ ๋ถ„์ฆ'์„ ํ™•์ธํ•˜๋Š” ๋ฐฉ๋ฒ•์ž…๋‹ˆ๋‹ค.</p>
<p class="text-gray-700">์‚ฌ๋žŒ๋งˆ๋‹ค ๊ณ ์œ ํ•œ ์ง€๋ฌธ์ด ์žˆ๋“ฏ์ด, ์„ธ๊ท ๋“ค๋„ ์ข…๋ฅ˜๋งˆ๋‹ค ์กฐ๊ธˆ์”ฉ ๋‹ค๋ฅธ 16S rRNA ์—ผ๊ธฐ์„œ์—ด '์ง€๋ฌธ'์„ ๊ฐ€์ง€๊ณ  ์žˆ์Šต๋‹ˆ๋‹ค.</p>
<div class="mt-6 bg-white p-4 rounded-lg shadow-inner">
<div class="flex items-center mb-2">
<div class="w-4 h-4 bg-blue-500 rounded-full mr-2"></div>
<span class="text-sm font-medium">๋ฐฐ์–‘์ด ์–ด๋ ค์šด ์„ธ๊ท ๊นŒ์ง€๋„ ์ •ํ™•ํ•˜๊ฒŒ ๋™์ •</span>
</div>
<div class="flex items-center">
<div class="w-4 h-4 bg-blue-500 rounded-full mr-2"></div>
<span class="text-sm font-medium">์งˆ๋ณ‘ ์ง„๋‹จ๋ถ€ํ„ฐ ์‹ํ’ˆ ์•ˆ์ „, ํ™˜๊ฒฝ ๋ณดํ˜ธ๊นŒ์ง€ ๋‹ค์–‘ํ•œ ๋ถ„์•ผ ์ ์šฉ</span>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Importance Section -->
<section id="importance" class="py-16 bg-gray-50">
<div class="container mx-auto px-4">
<div class="text-center mb-12">
<h2 class="text-3xl font-bold text-blue-900 mb-4">๋ฏธ์ƒ๋ฌผ ๋™์ •, ์™œ ์ค‘์š”ํ• ๊นŒ์š”?</h2>
<div class="w-20 h-1 bg-blue-500 mx-auto mb-6"></div>
<p class="text-lg text-gray-600 max-w-3xl mx-auto">์„ธ๊ท  ์‹๋ณ„์˜ ํ•„์š”์„ฑ๊ณผ ์ „ํ†ต์  ๋ฐฉ๋ฒ•์˜ ํ•œ๊ณ„</p>
</div>
<div class="grid md:grid-cols-3 gap-8 mb-12">
<div class="bg-white p-6 rounded-xl shadow-md section-card">
<div class="text-blue-600 mb-4">
<i class="fas fa-hospital text-3xl"></i>
</div>
<h3 class="text-xl font-bold mb-3">์ž„์ƒ ์ง„๋‹จ</h3>
<p class="text-gray-600">์ •ํ™•ํ•œ ์›์ธ๊ท  ๋™์ •์€ ํšจ๊ณผ์ ์ธ ํ•ญ์ƒ์ œ ์„ ํƒ๊ณผ ์น˜๋ฃŒ ๊ณ„ํš ์ˆ˜๋ฆฝ์— ํ•„์ˆ˜์ ์ž…๋‹ˆ๋‹ค.</p>
</div>
<div class="bg-white p-6 rounded-xl shadow-md section-card">
<div class="text-blue-600 mb-4">
<i class="fas fa-utensils text-3xl"></i>
</div>
<h3 class="text-xl font-bold mb-3">์‹ํ’ˆ ์•ˆ์ „</h3>
<p class="text-gray-600">์‹์ค‘๋… ์›์ธ๊ท  ๊ฒ€์ถœ๊ณผ ๋ฐœํšจ ์‹ํ’ˆ ํ’ˆ์งˆ ๊ด€๋ฆฌ๋ฅผ ์œ„ํ•ด ๋ฏธ์ƒ๋ฌผ ๋™์ •์ด ํ•„์š”ํ•ฉ๋‹ˆ๋‹ค.</p>
</div>
<div class="bg-white p-6 rounded-xl shadow-md section-card">
<div class="text-blue-600 mb-4">
<i class="fas fa-leaf text-3xl"></i>
</div>
<h3 class="text-xl font-bold mb-3">ํ™˜๊ฒฝ ์—ฐ๊ตฌ</h3>
<p class="text-gray-600">์ƒํƒœ๊ณ„ ๊ฑด๊ฐ• ํ‰๊ฐ€์™€ ํ™˜๊ฒฝ ๋ณ€ํ™” ์˜ํ–ฅ ์ดํ•ด๋ฅผ ์œ„ํ•ด ๋ฏธ์ƒ๋ฌผ ๊ตฐ์ง‘ ๋ถ„์„์ด ์ค‘์š”ํ•ฉ๋‹ˆ๋‹ค.</p>
</div>
</div>
<div class="bg-white rounded-xl shadow-md overflow-hidden">
<div class="md:flex">
<div class="md:w-1/2 p-8 bg-blue-50">
<h3 class="text-2xl font-bold text-blue-800 mb-4">์ „ํ†ต์  ๋™์ •๋ฒ•์˜ ํ•œ๊ณ„</h3>
<ul class="space-y-4">
<li class="flex items-start">
<div class="bg-blue-100 p-1 rounded-full mr-3 mt-1">
<i class="fas fa-times text-blue-600 text-xs"></i>
</div>
<span>์ง€๊ตฌ์ƒ ๋ฏธ์ƒ๋ฌผ์˜ 99% ์ด์ƒ์€ ์‹คํ—˜์‹ค์—์„œ ๋ฐฐ์–‘ ๋ถˆ๊ฐ€๋Šฅ</span>
</li>
<li class="flex items-start">
<div class="bg-blue-100 p-1 rounded-full mr-3 mt-1">
<i class="fas fa-times text-blue-600 text-xs"></i>
</div>
<span>๋ฐฐ์–‘๊ณผ ๊ฒ€์‚ฌ์— ๋ฉฐ์น ์—์„œ ๋ช‡ ์ฃผ ์†Œ์š”</span>
</li>
<li class="flex items-start">
<div class="bg-blue-100 p-1 rounded-full mr-3 mt-1">
<i class="fas fa-times text-blue-600 text-xs"></i>
</div>
<span>์œ ์‚ฌํ•œ ํ‘œํ˜„ํ˜• ํŠน์„ฑ์œผ๋กœ ์ธํ•œ ๊ตฌ๋ถ„ ์–ด๋ ค์›€</span>
</li>
</ul>
</div>
<div class="md:w-1/2 p-8">
<h3 class="text-2xl font-bold text-blue-800 mb-4">๋ถ„์ž์ƒ๋ฌผํ•™์  ๋™์ •๋ฒ•์˜ ํ˜์‹ </h3>
<ul class="space-y-4">
<li class="flex items-start">
<div class="bg-blue-100 p-1 rounded-full mr-3 mt-1">
<i class="fas fa-check text-blue-600 text-xs"></i>
</div>
<span>๋ฐฐ์–‘ ์—†์ด๋„ ์ƒ˜ํ”Œ์—์„œ ์ง์ ‘ ์œ ์ „ ๋ฌผ์งˆ ๋ถ„์„ ๊ฐ€๋Šฅ</span>
</li>
<li class="flex items-start">
<div class="bg-blue-100 p-1 rounded-full mr-3 mt-1">
<i class="fas fa-check text-blue-600 text-xs"></i>
</div>
<span>ํ‘œํ˜„ํ˜•๋ณด๋‹ค ์•ˆ์ •์ ์ด๊ณ  ๊ฐ๊ด€์ ์ธ ์œ ์ „ ์ •๋ณด ํ™œ์šฉ</span>
</li>
<li class="flex items-start">
<div class="bg-blue-100 p-1 rounded-full mr-3 mt-1">
<i class="fas fa-check text-blue-600 text-xs"></i>
</div>
<span>16S rRNA ์—ผ๊ธฐ์„œ์—ด ๋ถ„์„๋ฒ•์ด ๋Œ€ํ‘œ์ </span>
</li>
</ul>
</div>
</div>
</div>
</div>
</section>
<!-- Why 16S Section -->
<section class="py-16 bg-white">
<div class="container mx-auto px-4">
<div class="text-center mb-12">
<h2 class="text-3xl font-bold text-blue-900 mb-4">์™œ ํ•˜ํ•„ 16S rRNA ์œ ์ „์ž์ธ๊ฐ€?</h2>
<div class="w-20 h-1 bg-blue-500 mx-auto mb-6"></div>
<p class="text-lg text-gray-600 max-w-3xl mx-auto">์„ธ๊ท  ๋™์ • ๋งˆ์ปค๋กœ์„œ์˜ ์กฐ๊ฑด</p>
</div>
<div class="grid md:grid-cols-2 gap-8 items-center mb-12">
<div>
<p class="mb-6 text-gray-700 leading-relaxed">์„ธ๊ท ์˜ ์ข…๋ฅ˜๋ฅผ ์ •ํ™•ํ•˜๊ฒŒ ์‹๋ณ„ํ•˜๊ธฐ ์œ„ํ•ด ์‚ฌ์šฉํ•˜๋Š” ์œ ์ „์ž๋Š” ๋งˆ์น˜ ์ œํ’ˆ์— ๋ถ€์ฐฉ๋œ ๋ฐ”์ฝ”๋“œ์™€ ๊ฐ™์€ ์—ญํ• ์„ ํ•ด์•ผ ํ•ฉ๋‹ˆ๋‹ค. ๋ชจ๋“  ์ œํ’ˆ์— ๋ฐ”์ฝ”๋“œ๊ฐ€ ๋ถ™์–ด ์žˆ์–ด์•ผ ํ•˜๊ณ (๋ณดํŽธ์„ฑ), ๋ฐ”์ฝ”๋“œ ์ž์ฒด์˜ ํ˜•์‹์€ ์œ ์ง€๋˜๋ฉด์„œ๋„(๋ณด์กด์„ฑ), ๊ฐ ์ œํ’ˆ๋งˆ๋‹ค ๊ณ ์œ ํ•œ ๋ฒˆํ˜ธ๋ฅผ ๊ฐ€์ ธ ์„œ๋กœ ๊ตฌ๋ณ„๋  ์ˆ˜ ์žˆ์–ด์•ผ(๋ณ€์ด์„ฑ) ํ•ฉ๋‹ˆ๋‹ค.</p>
<p class="mb-6 text-gray-700 leading-relaxed">16S rRNA ์œ ์ „์ž๋Š” ์ด๋Ÿฌํ•œ ๊นŒ๋‹ค๋กœ์šด ์กฐ๊ฑด๋“ค์„ ๊ฑฐ์˜ ์ด์ƒ์ ์œผ๋กœ ์ถฉ์กฑํ•˜๋Š” ๊ฒƒ์œผ๋กœ ๋ฐํ˜€์กŒ์Šต๋‹ˆ๋‹ค. ์ด๊ฒƒ์ด ๋ฐ”๋กœ 16S rRNA ์œ ์ „์ž๊ฐ€ ์„ธ๊ท  ๋ถ„๋ฅ˜ ๋ฐ ๋™์ • ์—ฐ๊ตฌ์—์„œ 'ํ™ฉ๊ธˆ ํ‘œ์ค€(gold standard)'์ฒ˜๋Ÿผ ์—ฌ๊ฒจ์ง€๋Š” ์ด์œ ์ž…๋‹ˆ๋‹ค.</p>
</div>
<div class="bg-blue-50 rounded-xl p-6">
<div class="grid grid-cols-2 gap-4">
<div class="bg-white p-4 rounded-lg shadow-sm">
<div class="text-blue-600 mb-2">
<i class="fas fa-globe text-xl"></i>
</div>
<h4 class="font-bold mb-1">๋ณดํŽธ์„ฑ</h4>
<p class="text-sm text-gray-600">๊ฑฐ์˜ ๋ชจ๋“  ์„ธ๊ท ์— ์กด์žฌ</p>
</div>
<div class="bg-white p-4 rounded-lg shadow-sm">
<div class="text-blue-600 mb-2">
<i class="fas fa-lock text-xl"></i>
</div>
<h4 class="font-bold mb-1">๊ธฐ๋Šฅ์  ์ค‘์š”์„ฑ</h4>
<p class="text-sm text-gray-600">๋‹จ๋ฐฑ์งˆ ํ•ฉ์„ฑ์— ํ•„์ˆ˜์ </p>
</div>
<div class="bg-white p-4 rounded-lg shadow-sm">
<div class="text-blue-600 mb-2">
<i class="fas fa-shield-alt text-xl"></i>
</div>
<h4 class="font-bold mb-1">๋ณด์กด ์˜์—ญ</h4>
<p class="text-sm text-gray-600">์—ผ๊ธฐ์„œ์—ด์ด ์ž˜ ๋ณด์กด๋จ</p>
</div>
<div class="bg-white p-4 rounded-lg shadow-sm">
<div class="text-blue-600 mb-2">
<i class="fas fa-barcode text-xl"></i>
</div>
<h4 class="font-bold mb-1">๊ฐ€๋ณ€ ์˜์—ญ</h4>
<p class="text-sm text-gray-600">์ข… ๊ตฌ๋ณ„ ๊ฐ€๋Šฅํ•œ ๋ณ€์ด</p>
</div>
</div>
</div>
</div>
<div class="overflow-x-auto">
<table class="min-w-full bg-white rounded-lg overflow-hidden">
<thead class="bg-blue-600 text-white">
<tr>
<th class="py-3 px-4 text-left">ํŠน์ง•</th>
<th class="py-3 px-4 text-left">์„ค๋ช…</th>
<th class="py-3 px-4 text-left">๋™์ •์—์„œ์˜ ์ค‘์š”์„ฑ</th>
<th class="py-3 px-4 text-left">๋น„์œ ์  ์„ค๋ช…</th>
</tr>
</thead>
<tbody class="divide-y divide-gray-200">
<tr class="table-row">
<td class="py-3 px-4 font-medium">๋ณดํŽธ์„ฑ</td>
<td class="py-3 px-4">๊ฑฐ์˜ ๋ชจ๋“  ์„ธ๊ท ์— ์กด์žฌ (๋ฆฌ๋ณด์†œ SSU ๊ตฌ์„ฑ RNA ์œ ์ „์ž)</td>
<td class="py-3 px-4">๋‹ค์–‘ํ•œ ์„ธ๊ท ์„ ๋™์ผํ•œ ๋ฐฉ๋ฒ•์œผ๋กœ ๋ถ„์„ ๊ฐ€๋Šฅ</td>
<td class="py-3 px-4">๋ชจ๋“  ๊ตญ๋ฏผ์ด ๊ฐ€์ง„ ์ฃผ๋ฏผ๋“ฑ๋ก์ฆ</td>
</tr>
<tr class="table-row">
<td class="py-3 px-4 font-medium">๊ธฐ๋Šฅ์  ์ค‘์š”์„ฑ</td>
<td class="py-3 px-4">๋‹จ๋ฐฑ์งˆ ํ•ฉ์„ฑ์— ํ•„์ˆ˜ ์—ญํ• </td>
<td class="py-3 px-4">์œ ์ „์ž ๊ตฌ์กฐ๊ฐ€ ๊ธ‰๊ฒฉํžˆ ๋ณ€ํ•˜์ง€ ์•Š์•„ ์•ˆ์ •์ ์ธ ๋น„๊ต ๊ฐ€๋Šฅ</td>
<td class="py-3 px-4">์ƒ๋ช… ์œ ์ง€์— ํ•„์ˆ˜์ ์ธ ์‹ฌ์žฅ</td>
</tr>
<tr class="table-row">
<td class="py-3 px-4 font-medium">๋ณด์กด ์˜์—ญ</td>
<td class="py-3 px-4">์—ผ๊ธฐ์„œ์—ด์ด ์ž˜ ๋ณ€ํ•˜์ง€ ์•Š๋Š” ์˜์—ญ</td>
<td class="py-3 px-4">Universal Primer ๊ฒฐํ•ฉ ๋ถ€์œ„ ์ œ๊ณต โ†’ PCR ์ฆํญ ๊ฐ€๋Šฅ, ๋ถ„์„ ๋Œ€์ƒ ์œ ์ „์ž ์‰ฝ๊ฒŒ ์ฐพ๋„๋ก ํ•จ</td>
<td class="py-3 px-4">์ฃผ๋ฏผ๋“ฑ๋ก์ฆ์˜ ๊ณ ์ •๋œ ํ˜•์‹/ํ‹€</td>
</tr>
<tr class="table-row">
<td class="py-3 px-4 font-medium">๊ฐ€๋ณ€ ์˜์—ญ (V1-V9)</td>
<td class="py-3 px-4">์—ผ๊ธฐ์„œ์—ด ๋ณ€ํ™”๊ฐ€ ๋งŽ์€ ์˜์—ญ</td>
<td class="py-3 px-4">์„ธ๊ท  ์ข…๋ฅ˜(์ข…/์† ์ˆ˜์ค€)๋ฅผ ๊ตฌ๋ณ„ํ•˜๋Š” '์ง€๋ฌธ' ์—ญํ• , ๋™์ •์˜ ํ•ต์‹ฌ ์ •๋ณด ์ œ๊ณต</td>
<td class="py-3 px-4">์ฃผ๋ฏผ๋“ฑ๋ก์ฆ์˜ ๊ณ ์œ ํ•œ ๋ฒˆํ˜ธ/์‚ฌ์ง„</td>
</tr>
<tr class="table-row">
<td class="py-3 px-4 font-medium">์ ์ ˆํ•œ ๊ธธ์ด</td>
<td class="py-3 px-4">์•ฝ 1,500 bp</td>
<td class="py-3 px-4">์—ผ๊ธฐ์„œ์—ด ๋ถ„์„ ๊ธฐ์ˆ (Sanger, NGS) ์ ์šฉ์— ์šฉ์ด, ํšจ์œจ์ ์ธ ๋ถ„์„ ๊ฐ€๋Šฅ</td>
<td class="py-3 px-4">๋ถ„์„/๋ณด๊ด€ํ•˜๊ธฐ ์ ๋‹นํ•œ ํฌ๊ธฐ</td>
</tr>
</tbody>
</table>
</div>
</div>
</section>
<!-- Principle Section -->
<section id="principle" class="py-16 bg-gray-50">
<div class="container mx-auto px-4">
<div class="text-center mb-12">
<h2 class="text-3xl font-bold text-blue-900 mb-4">16S rRNA ์—ผ๊ธฐ์„œ์—ด ๋ถ„์„์˜ ์›๋ฆฌ</h2>
<div class="w-20 h-1 bg-blue-500 mx-auto mb-6"></div>
<p class="text-lg text-gray-600 max-w-3xl mx-auto">์„ธ๊ท ์˜ ์œ ์ „ ์•”ํ˜ธ ํ•ด๋…ํ•˜๊ธฐ</p>
</div>
<div class="mb-12">
<div class="bg-white rounded-xl shadow-md p-6 mb-8 section-card">
<p class="text-lg font-medium text-blue-800 mb-4">16S rRNA ์—ผ๊ธฐ์„œ์—ด ๋ถ„์„์˜ ํ•ต์‹ฌ ์›๋ฆฌ๋Š” ์•„์ฃผ ๋ช…๋ฃŒํ•ฉ๋‹ˆ๋‹ค.</p>
<p class="text-gray-700">๋จผ์ € ๋ถ„์„ํ•˜๊ณ ์ž ํ•˜๋Š” ์„ธ๊ท  ์ƒ˜ํ”Œ์—์„œ 16S rRNA ์œ ์ „์ž๋ฅผ ํฌํ•จํ•œ ์ „์ฒด DNA๋ฅผ ์ถ”์ถœํ•ฉ๋‹ˆ๋‹ค. ๊ทธ๋Ÿฐ ๋‹ค์Œ, ์ถ”์ถœ๋œ DNA ์ค‘์—์„œ 16S rRNA ์œ ์ „์ž ๋ถ€๋ถ„๋งŒ์„ PCR์ด๋ผ๋Š” ๊ธฐ์ˆ ์„ ์ด์šฉํ•ด ๋Œ€๋Ÿ‰์œผ๋กœ ๋ณต์ œ(์ฆํญ)ํ•ฉ๋‹ˆ๋‹ค. ์ด๋ ‡๊ฒŒ ์–ป์–ด์ง„ ์ˆœ์ˆ˜ํ•œ 16S rRNA ์œ ์ „์ž ์กฐ๊ฐ์˜ ์—ผ๊ธฐ์„œ์—ด, ์ฆ‰ A(์•„๋ฐ๋‹Œ), T(ํ‹ฐ๋ฏผ), G(๊ตฌ์•„๋‹Œ), C(์‚ฌ์ดํ† ์‹ )๋ผ๋Š” ๋„ค ๊ฐ€์ง€ ์—ผ๊ธฐ๊ฐ€ ์–ด๋–ค ์ˆœ์„œ๋กœ ๋ฐฐ์—ด๋˜์–ด ์žˆ๋Š”์ง€๋ฅผ ์ •ํ™•ํ•˜๊ฒŒ ์ฝ์–ด๋ƒ…๋‹ˆ๋‹ค.</p>
</div>
<div class="relative">
<!-- Timeline -->
<div class="space-y-8">
<!-- Step 1 -->
<div class="relative pl-8 timeline-item">
<div class="bg-white p-6 rounded-xl shadow-md section-card">
<div class="absolute -left-3 top-6 w-6 h-6 bg-blue-600 rounded-full flex items-center justify-center text-white">
<span class="font-bold">1</span>
</div>
<h3 class="text-xl font-bold text-blue-800 mb-3">DNA ์ถ”์ถœ</h3>
<p class="text-gray-700 mb-2">๋ถ„์„ํ•˜๊ณ ์ž ํ•˜๋Š” ์ƒ˜ํ”Œ๋กœ๋ถ€ํ„ฐ ์„ธ๊ท ์˜ ์œ ์ „ ์ •๋ณด๋ฅผ ๋‹ด๊ณ  ์žˆ๋Š” DNA๋ฅผ ์˜จ์ „ํ•˜๊ฒŒ ๋ถ„๋ฆฌํ•˜๊ณ  ์ตœ๋Œ€ํ•œ ์ˆœ์ˆ˜ํ•˜๊ฒŒ ์ •์ œํ•ฉ๋‹ˆ๋‹ค.</p>
<div class="bg-blue-50 p-3 rounded-lg">
<p class="text-sm text-blue-800 font-medium">ํ•ต์‹ฌ: DNA ์†์ƒ์„ ์ตœ์†Œํ™”ํ•˜๋ฉด์„œ ์ถฉ๋ถ„ํ•œ ์–‘์˜ ๊ณ ํ’ˆ์งˆ DNA ํ™•๋ณด, PCR ์ €ํ•ด ๋ฌผ์งˆ ์ œ๊ฑฐ</p>
</div>
</div>
</div>
<!-- Step 2 -->
<div class="relative pl-8 timeline-item">
<div class="bg-white p-6 rounded-xl shadow-md section-card">
<div class="absolute -left-3 top-6 w-6 h-6 bg-blue-600 rounded-full flex items-center justify-center text-white">
<span class="font-bold">2</span>
</div>
<h3 class="text-xl font-bold text-blue-800 mb-3">PCR ์ฆํญ</h3>
<p class="text-gray-700 mb-2">์ถ”์ถœ๋œ DNA ์ค‘์—์„œ 16S rRNA ์œ ์ „์ž ๋ถ€๋ถ„๋งŒ์„ ์„ ํƒ์ ์œผ๋กœ ๋ณต์ œํ•˜์—ฌ ๊ทธ ์–‘์„ ์—„์ฒญ๋‚˜๊ฒŒ ๋Š˜๋ฆฌ๋Š” ๊ณผ์ •์ž…๋‹ˆ๋‹ค.</p>
<div class="bg-blue-50 p-3 rounded-lg">
<p class="text-sm text-blue-800 font-medium">์ค‘ํ•ฉํšจ์†Œ ์—ฐ์‡„ ๋ฐ˜์‘(Polymerase Chain Reaction, PCR) ๊ธฐ์ˆ  ์‚ฌ์šฉ</p>
</div>
</div>
</div>
<!-- Step 3 -->
<div class="relative pl-8 timeline-item">
<div class="bg-white p-6 rounded-xl shadow-md section-card">
<div class="absolute -left-3 top-6 w-6 h-6 bg-blue-600 rounded-full flex items-center justify-center text-white">
<span class="font-bold">3</span>
</div>
<h3 class="text-xl font-bold text-blue-800 mb-3">PCR ์‚ฐ๋ฌผ ์ •์ œ</h3>
<p class="text-gray-700 mb-2">PCR ๋ฐ˜์‘์ด ์„ฑ๊ณต์ ์œผ๋กœ ๋๋‚˜๋ฉด, ๋ฐ˜์‘ ์šฉ์•ก ์•ˆ์—๋Š” ์šฐ๋ฆฌ๊ฐ€ ์›ํ•˜๋Š” ์ฆํญ๋œ 16S rRNA ์œ ์ „์ž DNA ์กฐ๊ฐ ์™ธ์—๋„ ์—ฌ๋Ÿฌ ๊ฐ€์ง€ ๋ถˆํ•„์š”ํ•œ ๋ฌผ์งˆ๋“ค์ด ๋‚จ์•„์žˆ๊ฒŒ ๋ฉ๋‹ˆ๋‹ค.</p>
<div class="bg-blue-50 p-3 rounded-lg">
<p class="text-sm text-blue-800 font-medium">์ˆœ์ˆ˜ํ•œ 16S rRNA ์œ ์ „์ž DNA ์กฐ๊ฐ๋งŒ์„ ๋ถ„๋ฆฌํ•ด๋‚ด๋Š” ๊ณผ์ •์ด ํ•„์ˆ˜์ </p>
</div>
</div>
</div>
<!-- Step 4 -->
<div class="relative pl-8 timeline-item">
<div class="bg-white p-6 rounded-xl shadow-md section-card">
<div class="absolute -left-3 top-6 w-6 h-6 bg-blue-600 rounded-full flex items-center justify-center text-white">
<span class="font-bold">4</span>
</div>
<h3 class="text-xl font-bold text-blue-800 mb-3">์—ผ๊ธฐ์„œ์—ด ๋ถ„์„</h3>
<p class="text-gray-700 mb-2">์ •์ œ๋œ 16S rRNA ์œ ์ „์ž PCR ์‚ฐ๋ฌผ์˜ ์—ผ๊ธฐ์„œ์—ด, ์ฆ‰ A, T, G, C ์—ผ๊ธฐ๊ฐ€ ์–ด๋–ค ์ˆœ์„œ๋กœ ๋ฐฐ์—ด๋˜์–ด ์žˆ๋Š”์ง€๋ฅผ ์ง์ ‘ ์ฝ์–ด๋‚ด๋Š” ๋‹จ๊ณ„์ž…๋‹ˆ๋‹ค.</p>
<div class="bg-blue-50 p-3 rounded-lg">
<p class="text-sm text-blue-800 font-medium">์ƒ์–ด ์—ผ๊ธฐ์„œ์—ด ๋ถ„์„๋ฒ•(Sanger sequencing) ๋˜๋Š” ์ฐจ์„ธ๋Œ€ ์—ผ๊ธฐ์„œ์—ด ๋ถ„์„(NGS) ๊ธฐ์ˆ  ์‚ฌ์šฉ</p>
</div>
</div>
</div>
<!-- Step 5 -->
<div class="relative pl-8 timeline-item">
<div class="bg-white p-6 rounded-xl shadow-md section-card">
<div class="absolute -left-3 top-6 w-6 h-6 bg-blue-600 rounded-full flex items-center justify-center text-white">
<span class="font-bold">5</span>
</div>
<h3 class="text-xl font-bold text-blue-800 mb-3">์—ผ๊ธฐ์„œ์—ด ๋น„๊ต ๋ฐ ๋™์ •</h3>
<p class="text-gray-700 mb-2">์šฐ๋ฆฌ๊ฐ€ ์–ป์€ ์ด ์—ผ๊ธฐ์„œ์—ด์„, ์ด๋ฏธ ์•Œ๋ ค์ง„ ์ˆ˜๋งŽ์€ ์„ธ๊ท ๋“ค์˜ 16S rRNA ์—ผ๊ธฐ์„œ์—ด ์ •๋ณด๊ฐ€ ์ €์žฅ๋˜์–ด ์žˆ๋Š” ๊ฑฐ๋Œ€ํ•œ ๋ฐ์ดํ„ฐ๋ฒ ์ด์Šค์™€ ๋น„๊ตํ•˜์—ฌ, ์–ด๋–ค ์„ธ๊ท ์˜ ๊ฒƒ๊ณผ ๊ฐ€์žฅ ์œ ์‚ฌํ•œ์ง€๋ฅผ ์ฐพ์•„๋‚ด๋Š” ๊ฒƒ์ž…๋‹ˆ๋‹ค.</p>
<div class="bg-blue-50 p-3 rounded-lg">
<p class="text-sm text-blue-800 font-medium">BLAST (Basic Local Alignment Search Tool) ๋„๊ตฌ ์‚ฌ์šฉ</p>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="bg-white rounded-xl shadow-md overflow-hidden">
<div class="md:flex">
<div class="md:w-1/2 p-8">
<h3 class="text-2xl font-bold text-blue-800 mb-4">์ƒ์–ด ์‹œํ€€์‹ฑ ์›๋ฆฌ</h3>
<p class="mb-4 text-gray-700">์ƒ์–ด ์‹œํ€€์‹ฑ์€ PCR๊ณผ ์œ ์‚ฌํ•œ ์›๋ฆฌ๋ฅผ ์ด์šฉํ•˜์ง€๋งŒ, ํŠน๋ณ„ํ•œ ์ข…๋ฅ˜์˜ ๋‰ดํด๋ ˆ์˜คํƒ€์ด๋“œ์ธ '๋‹ค์ด๋””์˜ฅ์‹œ๋‰ดํด๋ ˆ์˜คํƒ€์ด๋“œ ์‚ผ์ธ์‚ฐ(dideoxynucleotide triphosphate, ddNTP)'์„ ์‚ฌ์šฉํ•ฉ๋‹ˆ๋‹ค.</p>
<div class="mb-6">
<div class="flex items-center mb-2">
<div class="w-4 h-4 bg-red-500 rounded-full mr-2"></div>
<span class="text-sm font-medium">ddATP (๋นจ๊ฐ„์ƒ‰)</span>
</div>
<div class="flex items-center mb-2">
<div class="w-4 h-4 bg-green-500 rounded-full mr-2"></div>
<span class="text-sm font-medium">ddTTP (์ดˆ๋ก์ƒ‰)</span>
</div>
<div class="flex items-center mb-2">
<div class="w-4 h-4 bg-yellow-500 rounded-full mr-2"></div>
<span class="text-sm font-medium">ddGTP (๋…ธ๋ž€์ƒ‰)</span>
</div>
<div class="flex items-center">
<div class="w-4 h-4 bg-blue-500 rounded-full mr-2"></div>
<span class="text-sm font-medium">ddCTP (ํŒŒ๋ž€์ƒ‰)</span>
</div>
</div>
<p class="text-gray-700">๊ฐ ddNTP๋Š” ์„œ๋กœ ๋‹ค๋ฅธ ์ƒ‰๊น”์˜ ํ˜•๊ด‘ ์—ผ๋ฃŒ๋กœ ํ‘œ์ง€๋˜์–ด ์žˆ์œผ๋ฉฐ, DNA ํ•ฉ์„ฑ ์ค‘์— ddNTP๊ฐ€ ๋ผ์–ด๋“ค๋ฉด ๊ทธ ์ž๋ฆฌ์—์„œ ํ•ฉ์„ฑ์ด ์ข…๊ฒฐ๋ฉ๋‹ˆ๋‹ค. ๋‹ค์–‘ํ•œ ๊ธธ์ด์˜ DNA ์กฐ๊ฐ๋“ค์ด ๋งŒ๋“ค์–ด์ง€๊ณ , ์ด๋“ค์„ ํฌ๊ธฐ๋ณ„๋กœ ๋ถ„๋ฆฌํ•˜์—ฌ ๊ฐ ์กฐ๊ฐ ๋์— ๋‹ฌ๋ฆฐ ํ˜•๊ด‘์ƒ‰์„ ์ˆœ์„œ๋Œ€๋กœ ์ฝ์–ด๋‚ด๋ฉด ์›๋ž˜ DNA์˜ ์—ผ๊ธฐ์„œ์—ด์„ ๊ฒฐ์ •ํ•  ์ˆ˜ ์žˆ์Šต๋‹ˆ๋‹ค.</p>
</div>
<div class="md:w-1/2 bg-blue-50 flex items-center justify-center p-8">
<div class="text-center">
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/7/7d/Sanger-sequencing.svg/1200px-Sanger-sequencing.svg.png" alt="Sanger Sequencing" class="max-w-full h-auto rounded-lg shadow-sm">
<p class="mt-3 text-sm text-gray-600">์ƒ์–ด ์—ผ๊ธฐ์„œ์—ด ๋ถ„์„๋ฒ•์˜ ์›๋ฆฌ</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Application Section -->
<section id="application" class="py-16 bg-white">
<div class="container mx-auto px-4">
<div class="text-center mb-12">
<h2 class="text-3xl font-bold text-blue-900 mb-4">16S rRNA ์—ผ๊ธฐ์„œ์—ด ๋ถ„์„์˜ ์ ์šฉ</h2>
<div class="w-20 h-1 bg-blue-500 mx-auto mb-6"></div>
<p class="text-lg text-gray-600 max-w-3xl mx-auto">๋ฏธ์ƒ๋ฌผ ์„ธ๊ณ„๋ฅผ ๋ฐํžˆ๋Š” ๋“ฑ๋Œ€</p>
</div>
<div class="grid md:grid-cols-2 lg:grid-cols-3 gap-8 mb-12">
<div class="bg-blue-50 rounded-xl p-6 section-card">
<div class="text-blue-600 mb-4">
<i class="fas fa-hospital text-3xl"></i>
</div>
<h3 class="text-xl font-bold mb-3">์ž„์ƒ ๋ฏธ์ƒ๋ฌผํ•™ ๋ฐ ๊ฐ์—ผ๋ณ‘ ์ง„๋‹จ</h3>
<p class="text-gray-700 mb-4">๋ฐฐ์–‘์ด ์–ด๋ ค์šด ์„ธ๊ท  ๋™์ •, ํ•ญ์ƒ์ œ ์น˜๋ฃŒ ํ›„ ์›์ธ๊ท  ์ถ”์ •, ๋ณตํ•ฉ ๊ฐ์—ผ ๋ถ„์„ ๋“ฑ์— ํ™œ์šฉ๋ฉ๋‹ˆ๋‹ค.</p>
<ul class="space-y-2 text-sm text-gray-600">
<li class="flex items-start">
<i class="fas fa-check text-blue-500 mr-2 mt-1"></i>
<span>๋ฐฐ์–‘ ์–ด๋ ค์šด ๊ท (Fastidious or Unculturable Bacteria)์— ์˜ํ•œ ๊ฐ์—ผ ์ง„๋‹จ</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-blue-500 mr-2 mt-1"></i>
<span>๋น„์ •ํ˜•์ ์ธ ์ƒํ™”ํ•™์  ํŠน์„ฑ์„ ๋ณด์ด๋Š” ์„ธ๊ท  ๋™์ •</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-blue-500 mr-2 mt-1"></i>
<span>ํ•ญ์ƒ์ œ ์น˜๋ฃŒ ํ›„ ๊ฒ€์ฒด ๋ถ„์„</span>
</li>
</ul>
</div>
<div class="bg-blue-50 rounded-xl p-6 section-card">
<div class="text-blue-600 mb-4">
<i class="fas fa-utensils text-3xl"></i>
</div>
<h3 class="text-xl font-bold mb-3">์‹ํ’ˆ ๋ฏธ์ƒ๋ฌผํ•™ ๋ฐ ์•ˆ์ „ ๊ด€๋ฆฌ</h3>
<p class="text-gray-700 mb-4">์‹ํ’ˆ ๋งค๊ฐœ ๋ณ‘์›๊ท  ๊ฒ€์ถœ ๋ฐ ๋™์ •, ๋ฐœํšจ ์‹ํ’ˆ ๋ฏธ์ƒ๋ฌผ ๊ตฐ์ง‘ ๋ถ„์„, ์‹ํ’ˆ ๋ถ€ํŒจ ์›์ธ ๊ทœ๋ช… ๋“ฑ์— ํ™œ์šฉ๋ฉ๋‹ˆ๋‹ค.</p>
<ul class="space-y-2 text-sm text-gray-600">
<li class="flex items-start">
<i class="fas fa-check text-blue-500 mr-2 mt-1"></i>
<span>Salmonella, Listeria ๋“ฑ ์‹์ค‘๋… ์›์ธ๊ท  ๊ฒ€์ถœ</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-blue-500 mr-2 mt-1"></i>
<span>๊น€์น˜, ์š”๊ตฌ๋ฅดํŠธ ๋“ฑ ๋ฐœํšจ ์‹ํ’ˆ์˜ ๋ฏธ์ƒ๋ฌผ ๊ตฐ์ง‘ ๋ถ„์„</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-blue-500 mr-2 mt-1"></i>
<span>์‹ํ’ˆ ๋ถ€ํŒจ ๊ณผ์ •์— ๊ด€์—ฌํ•˜๋Š” ๋ฏธ์ƒ๋ฌผ ๊ทœ๋ช…</span>
</li>
</ul>
</div>
<div class="bg-blue-50 rounded-xl p-6 section-card">
<div class="text-blue-600 mb-4">
<i class="fas fa-leaf text-3xl"></i>
</div>
<h3 class="text-xl font-bold mb-3">ํ™˜๊ฒฝ ๋ฏธ์ƒ๋ฌผํ•™ ๋ฐ ์ƒํƒœ ์—ฐ๊ตฌ</h3>
<p class="text-gray-700 mb-4">๋ฏธ์ƒ๋ฌผ ๋‹ค์–‘์„ฑ ํƒ๊ตฌ, ํ™˜๊ฒฝ ๋ณ€ํ™”์— ๋”ฐ๋ฅธ ๋ฏธ์ƒ๋ฌผ ๊ตฐ์ง‘ ๋ณ€ํ™” ๋ชจ๋‹ˆํ„ฐ๋ง, ์ƒ๋ฌผ ์ •ํ™” ๋“ฑ์— ํ™œ์šฉ๋ฉ๋‹ˆ๋‹ค.</p>
<ul class="space-y-2 text-sm text-gray-600">
<li class="flex items-start">
<i class="fas fa-check text-blue-500 mr-2 mt-1"></i>
<span>ํ† ์–‘, ํ•ด์ˆ˜ ๋“ฑ ํ™˜๊ฒฝ ์ƒ˜ํ”Œ์˜ ๋ฏธ์ƒ๋ฌผ ๊ตฐ์ง‘ ๊ตฌ์กฐ ๋ถ„์„</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-blue-500 mr-2 mt-1"></i>
<span>๊ธฐํ›„ ๋ณ€ํ™”, ์˜ค์—ผ ๋ฌผ์งˆ์ด ๋ฏธ์ƒ๋ฌผ ์ƒํƒœ๊ณ„์— ๋ฏธ์น˜๋Š” ์˜ํ–ฅ ์—ฐ๊ตฌ</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-blue-500 mr-2 mt-1"></i>
<span>์˜ค์—ผ ๋ฌผ์งˆ ๋ถ„ํ•ด ๋Šฅ๋ ฅ์„ ๊ฐ€์ง„ ๋ฏธ์ƒ๋ฌผ ํƒ์ƒ‰</span>
</li>
</ul>
</div>
<div class="bg-blue-50 rounded-xl p-6 section-card">
<div class="text-blue-600 mb-4">
<i class="fas fa-dna text-3xl"></i>
</div>
<h3 class="text-xl font-bold mb-3">๋ฏธ์ƒ๋ฌผ ๋ถ„๋ฅ˜ํ•™ ๋ฐ ๊ณ„ํ†ต ์—ฐ๊ตฌ</h3>
<p class="text-gray-700 mb-4">์‹ ์ข… ๋ฏธ์ƒ๋ฌผ ๋™์ • ๋ฐ ๋ถ„๋ฅ˜, ๊ณ„ํ†ต์ˆ˜ ๊ตฌ์ถ•, ์ƒ๋ช…์˜ ๋‚˜๋ฌด ์žฌ๊ตฌ์„ฑ ๋“ฑ์— ํ™œ์šฉ๋ฉ๋‹ˆ๋‹ค.</p>
<ul class="space-y-2 text-sm text-gray-600">
<li class="flex items-start">
<i class="fas fa-check text-blue-500 mr-2 mt-1"></i>
<span>์ƒˆ๋กœ์šด ์„ธ๊ท ์ด๋‚˜ ๊ณ ์„ธ๊ท  ๋ฐœ๊ฒฌ ๋ฐ ๋ถ„๋ฅ˜</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-blue-500 mr-2 mt-1"></i>
<span>๋ฏธ์ƒ๋ฌผ๋“ค ๊ฐ„์˜ ์ง„ํ™”์ ์ธ ๊ด€๊ณ„ ์—ฐ๊ตฌ</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-blue-500 mr-2 mt-1"></i>
<span>์ƒ๋ช…์˜ ๋‚˜๋ฌด(Tree of Life) ํ™•์žฅ</span>
</li>
</ul>
</div>
<div class="bg-blue-50 rounded-xl p-6 section-card">
<div class="text-blue-600 mb-4">
<i class="fas fa-industry text-3xl"></i>
</div>
<h3 class="text-xl font-bold mb-3">์‚ฐ์—… ๋ฏธ์ƒ๋ฌผํ•™ ๋ฐ ์ƒ๋ช…๊ณตํ•™</h3>
<p class="text-gray-700 mb-4">์œ ์šฉ ๋ฏธ์ƒ๋ฌผ ํƒ์ƒ‰ ๋ฐ ๋™์ •, ์‚ฐ์—… ๊ท ์ฃผ ๊ด€๋ฆฌ, ๋ฐœํšจ ๊ณต์ • ๋ชจ๋‹ˆํ„ฐ๋ง ๋“ฑ์— ํ™œ์šฉ๋ฉ๋‹ˆ๋‹ค.</p>
<ul class="space-y-2 text-sm text-gray-600">
<li class="flex items-start">
<i class="fas fa-check text-blue-500 mr-2 mt-1"></i>
<span>ํ•ญ์ƒ์ œ, ํšจ์†Œ ๋“ฑ ์œ ์šฉ ๋ฌผ์งˆ ์ƒ์‚ฐ ๋ฏธ์ƒ๋ฌผ ํƒ์ƒ‰</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-blue-500 mr-2 mt-1"></i>
<span>์‚ฐ์—…์šฉ ๊ท ์ฃผ์˜ ์œ ์ „์  ์•ˆ์ •์„ฑ ํ™•์ธ</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-blue-500 mr-2 mt-1"></i>
<span>๋ฐœํšจ์กฐ ๋‚ด ๋ฏธ์ƒ๋ฌผ ๊ตฐ์ง‘ ๋™ํƒœ ๋ชจ๋‹ˆํ„ฐ๋ง</span>
</li>
</ul>
</div>
<div class="bg-blue-50 rounded-xl p-6 section-card">
<div class="text-blue-600 mb-4">
<i class="fas fa-user-md text-3xl"></i>
</div>
<h3 class="text-xl font-bold mb-3">์ธ์ฒด ๋งˆ์ดํฌ๋กœ๋ฐ”์ด์˜ด ์—ฐ๊ตฌ</h3>
<p class="text-gray-700 mb-4">์žฅ๋‚ด ๋ฏธ์ƒ๋ฌผ ๊ตฐ์ง‘ ๋ถ„์„, ์งˆ๋ณ‘๊ณผ ๋งˆ์ดํฌ๋กœ๋ฐ”์ด์˜ด์˜ ์—ฐ๊ด€์„ฑ ์—ฐ๊ตฌ ๋“ฑ์— ํ™œ์šฉ๋ฉ๋‹ˆ๋‹ค.</p>
<ul class="space-y-2 text-sm text-gray-600">
<li class="flex items-start">
<i class="fas fa-check text-blue-500 mr-2 mt-1"></i>
<span>๊ฑด๊ฐ•ํ•œ ์‚ฌ๋žŒ๊ณผ ํ™˜์ž ๊ฐ„ ๋งˆ์ดํฌ๋กœ๋ฐ”์ด์˜ด ์ฐจ์ด ๋น„๊ต</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-blue-500 mr-2 mt-1"></i>
<span>๋น„๋งŒ, ์—ผ์ฆ์„ฑ ์žฅ ์งˆํ™˜ ๋“ฑ๊ณผ ๊ด€๋ จ๋œ ๋ฏธ์ƒ๋ฌผ ๊ทœ๋ช…</span>
</li>
<li class="flex items-start">
<i class="fas fa-check text-blue-500 mr-2 mt-1"></i>
<span>ํ”„๋กœ๋ฐ”์ด์˜คํ‹ฑ์Šค, ํ”„๋ฆฌ๋ฐ”์ด์˜คํ‹ฑ์Šค ํšจ๊ณผ ์—ฐ๊ตฌ</span>
</li>
</ul>
</div>
</div>
<div class="overflow-x-auto">
<table class="min-w-full bg-white rounded-lg overflow-hidden shadow-md">
<thead class="bg-blue-600 text-white">
<tr>
<th class="py-3 px-4 text-left">๋ถ„์•ผ</th>
<th class="py-3 px-4 text-left">์ฃผ์š” ํ™œ์šฉ ๋‚ด์šฉ</th>
<th class="py-3 px-4 text-left">๊ธฐ๋Œ€ ํšจ๊ณผ / ๊ธฐ์—ฌ</th>
</tr>
</thead>
<tbody class="divide-y divide-gray-200">
<tr class="table-row">
<td class="py-3 px-4 font-medium">์ž„์ƒ ๋ฏธ์ƒ๋ฌผํ•™/์ง„๋‹จ</td>
<td class="py-3 px-4">๋ฐฐ์–‘ ์–ด๋ ค์šด/๋น„์ •ํ˜• ์„ธ๊ท  ๋™์ •, ํ•ญ์ƒ์ œ ์น˜๋ฃŒ ํ›„ ์›์ธ๊ท  ์ถ”์ •, ๋ณตํ•ฉ ๊ฐ์—ผ ๋ถ„์„ (๋ณด์กฐ ์ง„๋‹จ)</td>
<td class="py-3 px-4">์ •ํ™•ํ•œ ์›์ธ๊ท  ๊ทœ๋ช…๋ฅ  ํ–ฅ์ƒ, ์‹ ์†ํ•œ ์น˜๋ฃŒ ๊ฒฐ์ • ์ง€์›, ๊ฐ์—ผ ๊ด€๋ฆฌ ๊ฐœ์„  ๊ธฐ์—ฌ</td>
</tr>
<tr class="table-row">
<td class="py-3 px-4 font-medium">์‹ํ’ˆ ๋ฏธ์ƒ๋ฌผํ•™/์•ˆ์ „</td>
<td class="py-3 px-4">์‹์ค‘๋…๊ท  ์‹ ์† ๊ฒ€์ถœ/๋™์ •, ๋ฐœํšจ ๋ฏธ์ƒ๋ฌผ ๊ตฐ์ง‘ ๋ถ„์„ ๋ฐ ํ’ˆ์งˆ ๊ด€๋ฆฌ, ๋ถ€ํŒจ ์›์ธ๊ท  ๊ทœ๋ช…</td>
<td class="py-3 px-4">์‹ํ’ˆ ์•ˆ์ „์„ฑ ๊ฐ•ํ™”, ์‹์ค‘๋… ์˜ˆ๋ฐฉ, ๋ฐœํšจ ์‹ํ’ˆ ํ’ˆ์งˆ ๊ฐœ์„  ๋ฐ ํ‘œ์ค€ํ™”, ์œ ํ†ต ๊ธฐํ•œ ์„ค์ • ๊ณผํ•™ํ™”</td>
</tr>
<tr class="table-row">
<td class="py-3 px-4 font-medium">ํ™˜๊ฒฝ ๋ฏธ์ƒ๋ฌผํ•™/์ƒํƒœ</td>
<td class="py-3 px-4">๋ฏธ์ƒ๋ฌผ ๊ตฐ์ง‘ ๊ตฌ์กฐ ๋ถ„์„ (๋ฉ”ํƒ€๊ฒŒ๋†ˆ), ๋ฏธ๋ฐฐ์–‘ ๋ฏธ์ƒ๋ฌผ ํƒ๊ตฌ, ํ™˜๊ฒฝ ๋ณ€ํ™” ์˜ํ–ฅ ํ‰๊ฐ€, ์ƒ์ง€ํ™”ํ•™์  ์ˆœํ™˜ ์—ฐ๊ตฌ, ์œ ์šฉ/์œ ํ•ด ๋ฏธ์ƒ๋ฌผ ํƒ์ƒ‰</td>
<td class="py-3 px-4">๋ฏธ์ƒ๋ฌผ ๋‹ค์–‘์„ฑ ๋ฐ ์ƒํƒœ๊ณ„ ๊ธฐ๋Šฅ ์ดํ•ด ์ฆ์ง„, ํ™˜๊ฒฝ ๋ชจ๋‹ˆํ„ฐ๋ง ๋ฐ ๋ณต์› ์ „๋žต ๊ฐœ๋ฐœ, ์ƒˆ๋กœ์šด ์ƒ๋ฌผ ์ž์› ๋ฐœ๊ตด</td>
</tr>
<tr class="table-row">
<td class="py-3 px-4 font-medium">๋ฏธ์ƒ๋ฌผ ๋ถ„๋ฅ˜ํ•™/๊ณ„ํ†ต</td>
<td class="py-3 px-4">์‹ ์ข… ์„ธ๊ท  ๋™์ • ๋ฐ ๋ถ„๋ฅ˜ํ•™์  ์œ„์น˜ ๊ฒฐ์ •, ๊ณ„ํ†ต ๋ฐœ์ƒํ•™์  ์œ ์—ฐ๊ด€๊ณ„ ๊ทœ๋ช…, ์ƒ๋ช…์˜ ๋‚˜๋ฌด ์žฌ๊ตฌ์„ฑ ๋ฐ ํ™•์žฅ</td>
<td class="py-3 px-4">์ •ํ™•ํ•˜๊ณ  ์ฒด๊ณ„์ ์ธ ๋ฏธ์ƒ๋ฌผ ๋ถ„๋ฅ˜ ์ฒด๊ณ„ ํ™•๋ฆฝ, ์ƒ๋ช…์˜ ์ง„ํ™” ๊ณผ์ • ์ดํ•ด ์‹ฌํ™”</td>
</tr>
<tr class="table-row">
<td class="py-3 px-4 font-medium">์‚ฐ์—… ๋ฏธ์ƒ๋ฌผํ•™/์ƒ๋ช…๊ณตํ•™</td>
<td class="py-3 px-4">์œ ์šฉ ๋ฏธ์ƒ๋ฌผ ํƒ์ƒ‰/๋™์ •, ์‚ฐ์—… ๊ท ์ฃผ ๊ด€๋ฆฌ ๋ฐ ์˜ค์—ผ ๋ชจ๋‹ˆํ„ฐ๋ง, ๋ฐœํšจ/๋ฐฐ์–‘ ๊ณต์ • ์ตœ์ ํ™” ๋ฐ ์•ˆ์ •ํ™”</td>
<td class="py-3 px-4">์‚ฐ์—… ๊ณต์ • ํšจ์œจ์„ฑ ๋ฐ ์ƒ์‚ฐ์„ฑ ์ฆ๋Œ€, ์‹ ๊ทœ ์ƒ๋ฌผ ์†Œ์žฌ ๋ฐ ์ œํ’ˆ ๊ฐœ๋ฐœ ์ด‰์ง„, ์ƒ๋ช…๊ณตํ•™ ๊ธฐ์ˆ  ๋ฐœ์ „ ๊ธฐ์—ฌ</td>
</tr>
</tbody>
</table>
</div>
</div>
</section>
<!-- Advantages Section -->
<section id="advantages" class="py-16 bg-gray-50">
<div class="container mx-auto px-4">
<div class="text-center mb-12">
<h2 class="text-3xl font-bold text-blue-900 mb-4">16S rRNA ์—ผ๊ธฐ์„œ์—ด ๋ถ„์„์˜ ์žฅ๋‹จ์ </h2>
<div class="w-20 h-1 bg-blue-500 mx-auto mb-6"></div>
<p class="text-lg text-gray-600 max-w-3xl mx-auto">๋ชจ๋“  ๊ธฐ์ˆ ์—๋Š” ์žฅ์ ๊ณผ ํ•œ๊ณ„๊ฐ€ ์กด์žฌํ•ฉ๋‹ˆ๋‹ค</p>
</div>
<div class="grid md:grid-cols-2 gap-8 mb-12">
<div class="bg-white p-8 rounded-xl shadow-md section-card">
<h3 class="text-2xl font-bold text-blue-800 mb-6 flex items-center">
<i class="fas fa-thumbs-up text-blue-500 mr-3"></i>
์žฅ์  (Advantages)
</h3>
<ul class="space-y-4">
<li class="flex items-start">
<div class="bg-blue-100 p-1 rounded-full mr-3 mt-1">
<i class="fas fa-check text-blue-600 text-xs"></i>
</div>
<div>
<h4 class="font-bold mb-1">๋ณดํŽธ์„ฑ ๋ฐ ํ‘œ์ค€ํ™”</h4>
<p class="text-gray-600 text-sm">๊ฑฐ์˜ ๋ชจ๋“  ์„ธ๊ท ์— ์ ์šฉ ๊ฐ€๋Šฅํ•˜๋ฉฐ, ๋ถ„์„ ๊ณผ์ •๊ณผ ๋ฐ์ดํ„ฐ๋ฒ ์ด์Šค๊ฐ€ ์ž˜ ํ‘œ์ค€ํ™”๋˜์–ด ๊ฒฐ๊ณผ ๋น„๊ต๊ฐ€ ์šฉ์ดํ•ฉ๋‹ˆ๋‹ค.</p>
</div>
</li>
<li class="flex items-start">
<div class="bg-blue-100 p-1 rounded-full mr-3 mt-1">
<i class="fas fa-check text-blue-600 text-xs"></i>
</div>
<div>
<h4 class="font-bold mb-1">๋ฐฐ์–‘ ๋น„์˜์กด์„ฑ</h4>
<p class="text-gray-600 text-sm">์‹คํ—˜์‹ค์—์„œ ๋ฐฐ์–‘ํ•  ์ˆ˜ ์—†๋Š” ๋ฏธ์ƒ๋ฌผ(99% ์ด์ƒ)๋„ ์—ฐ๊ตฌํ•  ์ˆ˜ ์žˆ์–ด ๋ฏธ์ƒ๋ฌผ ์ƒํƒœ ์—ฐ๊ตฌ์— ํ˜์‹ ์„ ๊ฐ€์ ธ์™”์Šต๋‹ˆ๋‹ค.</p>
</div>
</li>
<li class="flex items-start">
<div class="bg-blue-100 p-1 rounded-full mr-3 mt-1">
<i class="fas fa-check text-blue-600 text-xs"></i>
</div>
<div>
<h4 class="font-bold mb-1">๋†’์€ ์ •ํ™•์„ฑ ๋ฐ ์žฌํ˜„์„ฑ</h4>
<p class="text-gray-600 text-sm">๊ฐ๊ด€์ ์ธ ์œ ์ „ ์ •๋ณด๋ฅผ ๊ธฐ๋ฐ˜์œผ๋กœ ํ•˜๋ฏ€๋กœ ์ผ๋ฐ˜์ ์œผ๋กœ ์ „ํ†ต์  ๋ฐฉ๋ฒ•๋ณด๋‹ค ๋” ๋†’์€ ์ •ํ™•์„ฑ๊ณผ ์žฌํ˜„์„ฑ์„ ์ œ๊ณตํ•ฉ๋‹ˆ๋‹ค.</p>
</div>
</li>
<li class="flex items-start">
<div class="bg-blue-100 p-1 rounded-full mr-3 mt-1">
<i class="fas fa-check text-blue-600 text-xs"></i>
</div>
<div>
<h4 class="font-bold mb-1">์ƒ๋Œ€์ ์ธ ์‹ ์†์„ฑ</h4>
<p class="text-gray-600 text-sm">์ „ํ†ต์ ์ธ ๋ฐฐ์–‘ ๋ฐ ์ƒํ™”ํ•™ ๊ฒ€์‚ฌ๋ณด๋‹ค ํ›จ์”ฌ ๋น ๋ฅด๊ฒŒ ๊ฒฐ๊ณผ๋ฅผ ์–ป์„ ์ˆ˜ ์žˆ์Šต๋‹ˆ๋‹ค.</p>
</div>
</li>
<li class="flex items-start">
<div class="bg-blue-100 p-1 rounded-full mr-3 mt-1">
<i class="fas fa-check text-blue-600 text-xs"></i>
</div>
<div>
<h4 class="font-bold mb-1">๋น„์šฉ ํšจ์œจ์„ฑ (์ƒ๋Œ€์ )</h4>
<p class="text-gray-600 text-sm">๋‹จ์ผ ์„ธ๊ท  ๊ท ์ฃผ๋ฅผ ๋™์ •ํ•˜๋Š” ๊ฒฝ์šฐ, ์ „์žฅ ์œ ์ „์ฒด ๋ถ„์„(WGS)๊ณผ ๊ฐ™์€ ๋‹ค๋ฅธ ๊ณ ๋„ ๋ถ„์ž์ƒ๋ฌผํ•™์  ๊ธฐ๋ฒ•์— ๋น„ํ•ด ์ƒ๋Œ€์ ์œผ๋กœ ๋น„์šฉ์ด ์ €๋ ดํ•ฉ๋‹ˆ๋‹ค.</p>
</div>
</li>
</ul>
</div>
<div class="bg-white p-8 rounded-xl shadow-md section-card">
<h3 class="text-2xl font-bold text-blue-800 mb-6 flex items-center">
<i class="fas fa-exclamation-triangle text-yellow-500 mr-3"></i>
๋‹จ์  (Disadvantages)
</h3>
<ul class="space-y-4">
<li class="flex items-start">
<div class="bg-blue-100 p-1 rounded-full mr-3 mt-1">
<i class="fas fa-times text-red-500 text-xs"></i>
</div>
<div>
<h4 class="font-bold mb-1">์ข… ์ˆ˜์ค€ ์ดํ•˜ ํ•ด์ƒ๋„ ํ•œ๊ณ„</h4>
<p class="text-gray-600 text-sm">๋งค์šฐ ๊ฐ€๊นŒ์šด ์ข…(closely related species)์ด๋‚˜ ๊ฐ™์€ ์ข… ๋‚ด์˜ ๋‹ค๋ฅธ ๊ท ์ฃผ(strains)๋ฅผ ๊ตฌ๋ณ„ํ•˜๋Š” ๋ฐ๋Š” ์ถฉ๋ถ„ํ•œ ์—ผ๊ธฐ์„œ์—ด ๋ณ€์ด๋ฅผ ์ œ๊ณตํ•˜์ง€ ๋ชปํ•ฉ๋‹ˆ๋‹ค.</p>
</div>
</li>
<li class="flex items-start">
<div class="bg-blue-100 p-1 rounded-full mr-3 mt-1">
<i class="fas fa-times text-red-500 text-xs"></i>
</div>
<div>
<h4 class="font-bold mb-1">๋‹ค์ค‘ ๋ณต์ œ ์œ ์ „์ž ๋ฌธ์ œ</h4>
<p class="text-gray-600 text-sm">ํ•˜๋‚˜์˜ ์„ธ๊ท  ๊ฒŒ๋†ˆ ๋‚ด์—๋„ 16S rRNA ์œ ์ „์ž๊ฐ€ ์—ฌ๋Ÿฌ ๊ฐœ ์กด์žฌํ•  ์ˆ˜ ์žˆ๊ณ , ์ด ๋ณต์ œ๋ณธ๋“ค ์‚ฌ์ด์— ์—ผ๊ธฐ์„œ์—ด์ด ์•ฝ๊ฐ„ ๋‹ค๋ฅผ ์ˆ˜ ์žˆ์Šต๋‹ˆ๋‹ค.</p>
</div>
</li>
<li class="flex items-start">
<div class="bg-blue-100 p-1 rounded-full mr-3 mt-1">
<i class="fas fa-times text-red-500 text-xs"></i>
</div>
<div>
<h4 class="font-bold mb-1">ํ”„๋ผ์ด๋จธ ํŽธํ–ฅ</h4>
<p class="text-gray-600 text-sm">'๋ณดํŽธ ํ”„๋ผ์ด๋จธ'๊ฐ€ ํŠน์ • ์„ธ๊ท  ๊ทธ๋ฃน์˜ DNA์— ๋” ์ž˜ ๊ฒฐํ•ฉํ•˜๋Š” ๊ฒฝํ–ฅ์ด ์žˆ์–ด, ์‹ค์ œ ๋ฏธ์ƒ๋ฌผ ๊ตฐ์ง‘ ๋น„์œจ์ด ์™œ๊ณก๋  ์ˆ˜ ์žˆ์Šต๋‹ˆ๋‹ค.</p>
</div>
</li>
<li class="flex items-start">
<div class="bg-blue-100 p-1 rounded-full mr-3 mt-1">
<i class="fas fa-times text-red-500 text-xs"></i>
</div>
<div>
<h4 class="font-bold mb-1">๊ธฐ๋Šฅ ์ •๋ณด ๋ถ€์žฌ</h4>
<p class="text-gray-600 text-sm">'๋ˆ„๊ตฌ์ธ์ง€'๋Š” ์•Œ ์ˆ˜ ์žˆ์ง€๋งŒ, '๋ฌด์—‡์„ ํ•  ์ˆ˜ ์žˆ๋Š”์ง€'์— ๋Œ€ํ•œ ์ง์ ‘์ ์ธ ์ •๋ณด๋Š” ์ œ๊ณตํ•˜์ง€ ๋ชปํ•ฉ๋‹ˆ๋‹ค.</p>
</div>
</li>
<li class="flex items-start">
<div class="bg-blue-100 p-1 rounded-full mr-3 mt-1">
<i class="fas fa-times text-red-500 text-xs"></i>
</div>
<div>
<h4 class="font-bold mb-1">๋ฐ์ดํ„ฐ๋ฒ ์ด์Šค ์˜์กด์„ฑ ๋ฐ ํ’ˆ์งˆ ๋ฌธ์ œ</h4>
<p class="text-gray-600 text-sm">๋™์ •์˜ ์ •ํ™•์„ฑ์€ ์ฐธ์กฐ ๋ฐ์ดํ„ฐ๋ฒ ์ด์Šค์˜ ์™„์ „์„ฑ๊ณผ ์ •ํ™•์„ฑ์— ํฌ๊ฒŒ ์ขŒ์šฐ๋ฉ๋‹ˆ๋‹ค.</p>
</div>
</li>
</ul>
</div>
</div>
<div class="bg-white rounded-xl shadow-md overflow-hidden">
<div class="md:flex">
<div class="md:w-1/2 p-8">
<h3 class="text-2xl font-bold text-blue-800 mb-4">16S rRNA ๋ถ„์„์˜ ๋ฏธ๋ž˜</h3>
<p class="mb-4 text-gray-700">16S rRNA ์—ผ๊ธฐ์„œ์—ด ๋ถ„์„์€ ์ง€๋‚œ ์ˆ˜์‹ญ ๋…„๊ฐ„ ๋ฏธ์ƒ๋ฌผํ•™์˜ ๋ฐœ์ „์„ ์ด๋Œ์–ด ์˜จ ํ˜์‹ ์ ์ธ ๊ธฐ์ˆ ์ด๋ฉฐ, ์•ž์œผ๋กœ๋„ ๋ฏธ์ƒ๋ฌผ ์—ฐ๊ตฌ์™€ ์‘์šฉ ๋ถ„์•ผ์—์„œ ์ค‘์š”ํ•œ ๊ธฐ๋ฐ˜ ๊ธฐ์ˆ ๋กœ์„œ ๊ทธ ๊ฐ€์น˜๋ฅผ ์ด์–ด๋‚˜๊ฐˆ ๊ฒƒ์ž…๋‹ˆ๋‹ค.</p>
<p class="mb-6 text-gray-700">๋ฌผ๋ก  ์™„๋ฒฝํ•œ ๋งŒ๋Šฅ ์—ด์‡ ๋Š” ์•„๋‹ˆ๊ธฐ์—, ๊ทธ ํ•œ๊ณ„๋ฅผ ๋ช…ํ™•ํžˆ ์ธ์‹ํ•˜๊ณ  ๋‹ค๋ฅธ ์ตœ์‹  ๊ธฐ์ˆ ๋“ค๊ณผ ํ˜„๋ช…ํ•˜๊ฒŒ ์กฐํ•ฉํ•˜์—ฌ ํ™œ์šฉํ•˜๋Š” ์ง€ํ˜œ๊ฐ€ ํ•„์š”ํ•ฉ๋‹ˆ๋‹ค.</p>
<div class="bg-blue-50 p-4 rounded-lg">
<h4 class="font-bold text-blue-800 mb-2">๋‹ค๋ฅธ ๊ธฐ์ˆ ๊ณผ์˜ ์œตํ•ฉ</h4>
<div class="grid grid-cols-2 gap-4">
<div class="flex items-center">
<i class="fas fa-dna text-blue-500 mr-2"></i>
<span class="text-sm">์ „์žฅ ์œ ์ „์ฒด ๋ถ„์„(WGS)</span>
</div>
<div class="flex items-center">
<i class="fas fa-layer-group text-blue-500 mr-2"></i>
<span class="text-sm">๋ฉ”ํƒ€๊ฒŒ๋†ˆ ๋ถ„์„</span>
</div>
<div class="flex items-center">
<i class="fas fa-long-arrow-alt-right text-blue-500 mr-2"></i>
<span class="text-sm">๋กฑ๋ฆฌ๋“œ ์‹œํ€€์‹ฑ</span>
</div>
<div class="flex items-center">
<i class="fas fa-laptop-code text-blue-500 mr-2"></i>
<span class="text-sm">์ƒ๋ฌผ์ •๋ณดํ•™</span>
</div>
</div>
</div>
</div>
<div class="md:w-1/2 bg-blue-50 flex items-center justify-center p-8">
<div class="text-center">
<img src="https://img.icons8.com/color/240/000000/future.png" alt="Future" class="w-48 h-48 mx-auto">
<p class="mt-3 text-gray-600">๊ธฐ์ˆ ์˜ ์œตํ•ฉ์„ ํ†ตํ•œ ๋ฏธ์ƒ๋ฌผ ์—ฐ๊ตฌ์˜ ๋ฏธ๋ž˜</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Conclusion Section -->
<section class="py-16 gradient-bg text-white">
<div class="container mx-auto px-4">
<div class="text-center mb-12">
<h2 class="text-3xl font-bold mb-4">๊ฒฐ๋ก </h2>
<div class="w-20 h-1 bg-white mx-auto mb-6"></div>
<p class="text-lg max-w-3xl mx-auto">16S rRNA ์—ผ๊ธฐ์„œ์—ด ๋ถ„์„์€ ๋ฏธ์ƒ๋ฌผ ์—ฐ๊ตฌ์˜ ํŒจ๋Ÿฌ๋‹ค์ž„์„ ๋ฐ”๊พผ ํ˜์‹ ์ ์ธ ๊ธฐ์ˆ ์ž…๋‹ˆ๋‹ค</p>
</div>
<div class="max-w-4xl mx-auto">
<p class="mb-6 text-blue-100 leading-relaxed">16S rRNA ์—ผ๊ธฐ์„œ์—ด ๋ถ„์„๋ฒ•์€ ํ˜„๋Œ€ ๋ฏธ์ƒ๋ฌผํ•™ ์—ฐ๊ตฌ์— ํ˜๋ช…์ ์ธ ๋ณ€ํ™”๋ฅผ ๊ฐ€์ ธ์™”์Šต๋‹ˆ๋‹ค. ๋ฐฐ์–‘์ด๋ผ๋Š” ์ „ํ†ต์ ์ธ ๋ฐฉ๋ฒ•์˜ ํ•œ๊ณ„๋ฅผ ๊ทน๋ณตํ•˜๊ณ , ๋ฏธ์ƒ๋ฌผ ๋‹ค์–‘์„ฑ ์—ฐ๊ตฌ์˜ ์ง€ํ‰์„ ๋„“ํžˆ๋ฉฐ, ์ž„์ƒ ์ง„๋‹จ, ์‹ํ’ˆ ์•ˆ์ „, ํ™˜๊ฒฝ ๋ณดํ˜ธ ๋“ฑ ๋‹ค์–‘ํ•œ ๋ถ„์•ผ์—์„œ ํ•ต์‹ฌ์ ์ธ ์—ญํ• ์„ ์ˆ˜ํ–‰ํ•˜๊ณ  ์žˆ์Šต๋‹ˆ๋‹ค.</p>
<p class="mb-6 text-blue-100 leading-relaxed">์ด ๊ธฐ์ˆ ์€ ์„ธ๊ท ์˜ ๋ณดํŽธ์ ์ธ ์œ ์ „์ž '๋ฐ”์ฝ”๋“œ'์ธ 16S rRNA๋ฅผ ์ฐพ์•„ ์ฆํญํ•˜๊ณ , ๊ทธ ๋ฐ”์ฝ”๋“œ ๋‚ด์šฉ์„ ์ •ํ™•ํžˆ ์ฝ์–ด๋‚ธ ๋’ค, ๊ฑฐ๋Œ€ํ•œ ๋ฐ”์ฝ”๋“œ ๋ผ์ด๋ธŒ๋Ÿฌ๋ฆฌ์™€ ๋น„๊ตํ•˜์—ฌ ์‹ ์›์„ ํ™•์ธํ•˜๋Š” ์ •๊ตํ•œ ๊ณผ์ •์ž…๋‹ˆ๋‹ค. ์ด๋Ÿฌํ•œ ์›๋ฆฌ ๋•๋ถ„์— ๋ฐฐ์–‘์ด ์–ด๋ ค์šด ๋ฏธ์ƒ๋ฌผ๋„ ์—ฐ๊ตฌํ•  ์ˆ˜ ์žˆ๊ฒŒ ๋˜์—ˆ๊ณ , ๋ณต์žกํ•œ ๋ฏธ์ƒ๋ฌผ ๊ตฐ์ง‘์„ ๋ถ„์„ํ•  ์ˆ˜ ์žˆ๋Š” ๊ธธ์ด ์—ด๋ ธ์Šต๋‹ˆ๋‹ค.</p>
<p class="mb-8 text-blue-100 leading-relaxed">์•ž์œผ๋กœ๋„ 16S rRNA ์—ผ๊ธฐ์„œ์—ด ๋ถ„์„์€ ๋ฏธ์ƒ๋ฌผํ•™ ์—ฐ๊ตฌ์˜ ๊ธฐ์ดˆ ๋„๊ตฌ๋กœ์„œ ์ค‘์š”ํ•œ ์—ญํ• ์„ ๊ณ„์†ํ•  ๊ฒƒ์ž…๋‹ˆ๋‹ค. ํ•˜์ง€๋งŒ ๋™์‹œ์— ์ „์žฅ ์œ ์ „์ฒด ๋ถ„์„(WGS), ๋ฉ”ํƒ€๊ฒŒ๋†ˆ ์‹œํ€€์‹ฑ, ๋กฑ๋ฆฌ๋“œ ์‹œํ€€์‹ฑ ๋“ฑ ์ƒˆ๋กœ์šด ๊ธฐ์ˆ ๋“ค๊ณผ์˜ ์œตํ•ฉ์„ ํ†ตํ•ด ๋”์šฑ ๊ฐ•๋ ฅํ•œ ๋ถ„์„ ๋„๊ตฌ๋กœ ๋ฐœ์ „ํ•ด ๋‚˜๊ฐˆ ๊ฒƒ์ž…๋‹ˆ๋‹ค.</p>
<div class="bg-blue-800 bg-opacity-50 rounded-xl p-6">
<p class="italic mb-3">"๋ˆˆ์— ๋ณด์ด์ง€ ์•Š๋Š” ๋ฏธ์ƒ๋ฌผ ์„ธ๊ณ„์˜ ๋ณต์žก์„ฑ๊ณผ ๋‹ค์–‘์„ฑ์„ ์ดํ•ดํ•˜๋Š” ๋ฐ 16S rRNA ์—ผ๊ธฐ์„œ์—ด ๋ถ„์„์€ ์—†์–ด์„œ๋Š” ์•ˆ ๋  ๊ฐ•๋ ฅํ•œ ์ฐฝ์ž…๋‹ˆ๋‹ค."</p>
<p class="text-right text-blue-200">- ๋ฏธ์ƒ๋ฌผ ์—ฐ๊ตฌ์ž</p>
</div>
</div>
</div>
</section>
<!-- References Section -->
<section class="py-12 bg-gray-100">
<div class="container mx-auto px-4">
<h2 class="text-2xl font-bold text-gray-800 mb-6">์ฐธ๊ณ ๋ฌธํ—Œ</h2>
<div class="bg-white rounded-lg shadow-sm p-6">
<ol class="list-decimal list-inside space-y-2 text-sm text-gray-700">
<li>Clinical and Laboratory Standards Institute (CLSI). <em>Principles and Procedures for Blood Cultures; Approved Guideline</em>. CLSI document M47-A. Wayne, PA: Clinical and Laboratory Standards Institute; 2007.</li>
<li>Ranjan R, Rani A, Metwally A, McGee HS, Perkins DL. Analysis of the microbiome: Advantages of whole genome shotgun versus 16S illustrative computational pipelines. <em>Front Microbiol</em>. 2016;6:1514.</li>
<li>Streit WR, Schmitz RA. Metagenomics โ€“ the key to the uncultured microbes. <em>Curr Opin Microbiol</em>. 2004;7(5):492-498.</li>
<li>Woese CR. Bacterial evolution. <em>Microbiol Rev</em>. 1987;51(2):221-271.</li>
<li>Yang B, Wang Y, Qian PY. Sensitivity and correlation of hypervariable regions in 16S rRNA genes in phylogenetic analysis. <em>BMC Bioinformatics</em>. 2016;17:135.</li>
<li>Adรฉkambi T, Drancourt M, Raoult D. The rpoB gene as a tool for clinical microbiologists. <em>Trends Microbiol</em>. 2009;17(1):37-45.</li>
<li>Zhou J, Bruns MA, Tiedje JM. DNA recovery from soils of diverse composition. <em>Appl Environ Microbiol</em>. 1996;62(2):316-322.</li>
<li>Saiki RK, Gelfand DH, Stoffel S, et al. Primer-directed enzymatic amplification of DNA with a thermostable DNA polymerase. <em>Science</em>. 1988;239(4839):487-491.</li>
<li>Lane DJ. 16S/23S rRNA sequencing. In: Stackebrandt E, Goodfellow M, eds. <em>Nucleic Acid Techniques in Bacterial Systematics</em>. Chichester: John Wiley & Sons; 1991:115-175.</li>
<li>Sanger F, Nicklen S, Coulson AR. DNA sequencing with chain-terminating inhibitors. <em>Proc Natl Acad Sci U S A</em>. 1977;74(12):5463-5467.</li>
</ol>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-gray-900 text-white py-8">
<div class="container mx-auto px-4">
<div class="flex flex-col md:flex-row justify-between items-center">
<div class="mb-6 md:mb-0">
<div class="flex items-center space-x-2">
<i class="fas fa-dna text-2xl text-blue-400"></i>
<span class="text-xl font-bold">16S rRNA ๋ถ„์„</span>
</div>
<p class="mt-2 text-gray-400 text-sm">๋ฏธ์ƒ๋ฌผ ๋™์ •์˜ ํ˜์‹ ์ ์ธ ๋ฐฉ๋ฒ•๋ก </p>
</div>
<div class="flex space-x-6">
<a href="#" class="text-gray-400 hover:text-white transition">
<i class="fab fa-twitter text-xl"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white transition">
<i class="fab fa-facebook text-xl"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white transition">
<i class="fab fa-linkedin text-xl"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white transition">
<i class="fab fa-github text-xl"></i>
</a>
</div>
</div>
<div class="border-t border-gray-800 mt-8 pt-8 flex flex-col md:flex-row justify-between">
<div class="mb-4 md:mb-0">
<p class="text-gray-400 text-sm">&copy; 2023 16S rRNA ๋ถ„์„ ์—ฐ๊ตฌํŒ€. ๋ชจ๋“  ๊ถŒ๋ฆฌ ๋ณด์œ .</p>
</div>
<div class="flex flex-col md:flex-row space-y-2 md:space-y-0 md:space-x-6 text-sm">
<a href="#" class="text-gray-400 hover:text-white transition">๊ฐœ์ธ์ •๋ณด ์ฒ˜๋ฆฌ๋ฐฉ์นจ</a>
<a href="#" class="text-gray-400 hover:text-white transition">์ด์šฉ ์•ฝ๊ด€</a>
<a href="#" class="text-gray-400 hover:text-white transition">๋ฌธ์˜ํ•˜๊ธฐ</a>
</div>
</div>
</div>
</footer>
<script>
// Mobile menu toggle
document.getElementById('mobile-menu-button').addEventListener('click', function() {
const menu = document.getElementById('mobile-menu');
if (menu.classList.contains('hidden')) {
menu.classList.remove('hidden');
} else {
menu.classList.add('hidden');
}
});
// Smooth scrolling for anchor links
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
const targetId = this.getAttribute('href');
const targetElement = document.querySelector(targetId);
if (targetElement) {
window.scrollTo({
top: targetElement.offsetTop - 80,
behavior: 'smooth'
});
// Close mobile menu if open
const mobileMenu = document.getElementById('mobile-menu');
if (!mobileMenu.classList.contains('hidden')) {
mobileMenu.classList.add('hidden');
}
}
});
});
</script>
<p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - ๐Ÿงฌ <a href="https://enzostvs-deepsite.hf.space?remix=Wookeun/test" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html>