 |
|
 |
|
|
¼½Ä¼³¸í |
|
|
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ºÎµ¿»êÀÓ´ëÂ÷ °è¾à¼ ÀÎÆ÷±×·¡ÇÈ</title>
<style>
#ai_editor {
max-width: 1200px ;
margin: 0 auto ;
font-family: 'Malgun Gothic', 'Noto Sans KR', Arial, sans-serif ;
background: #ffffff ;
color: #333333 ;
padding: 40px ;
line-height: 1.6 ;
}
#ai_editor .header {
text-align: center ;
margin-bottom: 75px ;
padding: 40px 0 ;
background-color: #2c5282 ;
color: white ;
border-radius: 16px ;
}
#ai_editor .header h1 {
font-size: 36px ;
font-weight: bold ;
margin: 0 0 16px 0 ;
}
#ai_editor .header .subtitle {
font-size: 20px ;
opacity: 0.9 ;
margin: 0 ;
}
#ai_editor .section {
margin-bottom: 75px ;
}
#ai_editor .section-title {
font-size: 28px ;
font-weight: bold ;
text-align: center ;
margin-bottom: 40px ;
color: #1a365d ;
position: relative ;
}
#ai_editor .section-title::after {
content: '' ;
width: 80px ;
height: 3px ;
background: #4299e1 ;
display: block ;
margin: 16px auto 0 ;
}
#ai_editor .grid-2x2 {
display: grid ;
grid-template-columns: 1fr 1fr ;
gap: 30px ;
margin: 40px 0 ;
}
#ai_editor .grid-1x3 {
display: grid ;
grid-template-columns: repeat(3, 1fr) ;
gap: 30px ;
margin: 40px 0 ;
}
#ai_editor .grid-3x2 {
display: grid ;
grid-template-columns: 1fr 1fr 1fr ;
gap: 30px ;
margin: 40px 0 ;
}
#ai_editor .grid-1x4 {
display: grid ;
grid-template-columns: repeat(4, 1fr) ;
gap: 30px ;
margin: 40px 0 ;
}
#ai_editor .card {
background: #ffffff ;
border: 2px solid #e2e8f0 ;
border-radius: 12px ;
padding: 30px ;
text-align: center ;
transition: all 0.3s ease ;
position: relative ;
overflow: hidden ;
box-sizing: border-box ;
}
#ai_editor .card:hover {
border-color: #4299e1 ;
box-shadow: 0 8px 25px rgba(66, 153, 225, 0.15) ;
transform: translateY(-5px) ;
}
#ai_editor .card::before {
content: '' ;
position: absolute ;
top: 0 ;
left: 0 ;
right: 0 ;
height: 4px ;
background-color: #4299e1 ;
}
#ai_editor .card-icon {
font-size: 48px ;
margin-bottom: 20px ;
display: block ;
}
#ai_editor .card h3 {
font-size: 22px ;
font-weight: bold ;
margin: 0 0 16px 0 ;
color: #1a365d ;
}
#ai_editor .card p {
font-size: 16px ;
margin: 0 ;
color: #4a5568 ;
}
#ai_editor .highlight-box {
background: #f7fafc ;
border: 2px solid #4299e1 ;
border-radius: 12px ;
padding: 30px ;
margin: 40px 0 ;
text-align: center ;
}
#ai_editor .highlight-box h3 {
font-size: 24px ;
color: #1a365d ;
margin: 0 0 20px 0 ;
font-weight: bold ;
}
#ai_editor .highlight-box p {
font-size: 18px ;
margin: 0 ;
color: #2d3748 ;
}
#ai_editor .process-flow {
display: flex ;
justify-content: space-between ;
align-items: center ;
margin: 40px 0 ;
position: relative ;
}
#ai_editor .process-step {
flex: 1 ;
text-align: center ;
position: relative ;
}
#ai_editor .process-step:not(:last-child)::after {
content: '¡æ' ;
position: absolute ;
right: -20px ;
top: 50% ;
transform: translateY(-50%) ;
font-size: 24px ;
color: #4299e1 ;
font-weight: bold ;
}
#ai_editor .process-circle {
width: 80px ;
height: 80px ;
background: #4299e1 ;
color: white ;
border-radius: 50% ;
display: flex ;
align-items: center ;
justify-content: center ;
font-size: 24px ;
font-weight: bold ;
margin: 0 auto 16px ;
}
#ai_editor .process-title {
font-size: 18px ;
font-weight: bold ;
color: #1a365d ;
margin: 0 0 8px 0 ;
}
#ai_editor .process-desc {
font-size: 16px ;
color: #4a5568 ;
margin: 0 ;
}
#ai_editor .warning-box {
background: #fff5f5 ;
border: 2px solid #fc8181 ;
border-radius: 12px ;
padding: 25px ;
margin: 40px 0 ;
}
#ai_editor .warning-box h4 {
color: #c53030 ;
font-size: 20px ;
margin: 0 0 16px 0 ;
font-weight: bold ;
text-align: center ;
}
#ai_editor .warning-box ul {
margin: 0 ;
padding-left: 20px ;
list-style: none ;
}
#ai_editor .warning-box li {
font-size: 16px ;
color: #2d3748 ;
margin-bottom: 8px ;
text-align: center ;
}
#ai_editor .info-stats {
display: flex ;
justify-content: space-around ;
background: #edf2f7 ;
border-radius: 12px ;
padding: 30px ;
margin: 40px 0 ;
}
#ai_editor .stat-item {
text-align: center ;
}
#ai_editor .stat-number {
font-size: 32px ;
font-weight: bold ;
color: #1a365d ;
display: block ;
}
#ai_editor .stat-label {
font-size: 16px ;
color: #4a5568 ;
margin-top: 8px ;
}
@media (max-width: 992px) {
#ai_editor {
padding: 30px 20px ;
}
#ai_editor .header {
padding: 30px 20px ;
}
#ai_editor .header h1 {
font-size: 32px ;
}
#ai_editor .header .subtitle {
font-size: 18px ;
}
#ai_editor .grid-1x3 {
grid-template-columns: 1fr ;
gap: 25px ;
}
#ai_editor .grid-3x2 {
grid-template-columns: repeat(2, 1fr) ;
gap: 25px ;
}
#ai_editor .grid-1x4 {
grid-template-columns: repeat(2, 1fr) ;
gap: 25px ;
}
#ai_editor .process-flow {
flex-wrap: wrap ;
gap: 30px ;
}
#ai_editor .process-step {
flex-basis: calc(50% - 15px) ;
}
#ai_editor .process-step:nth-child(2)::after {
display: none ;
}
#ai_editor .info-stats {
flex-wrap: wrap ;
gap: 20px ;
}
#ai_editor .stat-item {
flex-basis: calc(50% - 10px) ;
}
}
@media (max-width: 768px) {
#ai_editor {
padding: 25px 15px ;
}
#ai_editor .header {
margin-bottom: 60px ;
padding: 25px 15px ;
}
#ai_editor .header h1 {
font-size: 28px ;
}
#ai_editor .header .subtitle {
font-size: 16px ;
}
#ai_editor .section {
margin-bottom: 60px ;
}
#ai_editor .section-title {
font-size: 24px ;
margin-bottom: 30px ;
}
#ai_editor .grid-2x2 {
grid-template-columns: 1fr ;
gap: 20px ;
}
#ai_editor .grid-1x3 {
grid-template-columns: 1fr ;
gap: 20px ;
}
#ai_editor .grid-3x2 {
grid-template-columns: 1fr ;
gap: 20px ;
}
#ai_editor .grid-1x4 {
grid-template-columns: 1fr ;
gap: 20px ;
}
#ai_editor .card {
padding: 25px 20px ;
}
#ai_editor .card-icon {
font-size: 40px ;
}
#ai_editor .card h3 {
font-size: 20px ;
}
#ai_editor .process-flow {
flex-direction: column ;
gap: 25px ;
}
#ai_editor .process-step {
flex-basis: 100% ;
}
#ai_editor .process-step::after {
content: '¡é' ;
position: static ;
transform: none ;
margin: 10px 0 ;
display: block ;
}
#ai_editor .process-step:last-child::after {
display: none ;
}
#ai_editor .process-circle {
width: 70px ;
height: 70px ;
font-size: 22px ;
}
#ai_editor .highlight-box {
padding: 25px 20px ;
}
#ai_editor .highlight-box h3 {
font-size: 22px ;
}
#ai_editor .highlight-box p {
font-size: 16px ;
}
#ai_editor .warning-box {
padding: 20px 15px ;
}
#ai_editor .info-stats {
flex-direction: column ;
gap: 20px ;
}
#ai_editor .stat-item {
flex-basis: 100% ;
}
}
@media (max-width: 480px) {
#ai_editor {
padding: 20px 10px ;
}
#ai_editor .header {
padding: 20px 12px ;
}
#ai_editor .header h1 {
font-size: 24px ;
}
#ai_editor .section-title {
font-size: 22px ;
}
#ai_editor .card {
padding: 20px 15px ;
}
#ai_editor .card-icon {
font-size: 36px ;
}
#ai_editor .card h3 {
font-size: 18px ;
}
#ai_editor .process-circle {
width: 60px ;
height: 60px ;
font-size: 20px ;
}
#ai_editor .process-title {
font-size: 17px ;
}
#ai_editor .highlight-box {
padding: 20px 15px ;
}
#ai_editor .highlight-box h3 {
font-size: 20px ;
}
#ai_editor .warning-box {
padding: 18px 12px ;
}
#ai_editor .stat-number {
font-size: 28px ;
}
}
</style>
<div id="ai_editor">
<div class="header">
<h1>🏠 ºÎµ¿»ê ÀÓ´ëÂ÷ °è¾à¼</h1>
<p class="subtitle">¿ù¼¼°è¾à¼ ÀÛ¼º °¡À̵å & Çʼö üũÆ÷ÀÎÆ®</p>
</div>
<div class="section">
<h2 class="section-title">°è¾à¼ ±âº» ±¸¼º</h2>
<div class="grid-1x3">
<div class="card">
<span class="card-icon">📋</span>
<h3>ÃÑ Á¶Ç× ¼ö</h3>
<p>7°³ÀÇ ÁÖ¿ä Á¶Ç×À¸·Î ü°èÀûÀ¸·Î ±¸¼º</p>
</div>
<div class="card">
<span class="card-icon">📄</span>
<h3>¹®¼ ÆäÀÌÁö</h3>
<p>ÃÑ 2ÆäÀÌÁö ºÐ·®ÀÇ °£°áÇÑ ¾ç½Ä</p>
</div>
<div class="card">
<span class="card-icon">🎨</span>
<h3>Ä÷¯ ¿É¼Ç</h3>
<p>3°¡Áö Ä÷¯ µðÀÚÀÎ ¼±Åà °¡´É</p>
</div>
</div>
</div>
<div class="section">
<h2 class="section-title">ÇÙ½É °è¾à Á¶°Ç</h2>
<div class="grid-3x2">
<div class="card">
<span class="card-icon">🏘️</span>
<h3>¼ÒÀçÁö</h3>
<p>ÀÓ´ë ºÎµ¿»êÀÇ Á¤È®ÇÑ ÁÖ¼Ò¿Í ÅäÁö¡¤°Ç¹° ¸éÀû ¸í½Ã</p>
</div>
<div class="card">
<span class="card-icon">💰</span>
<h3>º¸Áõ±Ý</h3>
<p>ÀÓ´ëÂ÷ º¸ÁõÀ» À§ÇÑ ±âº» º¸Áõ±Ý¾× ¼³Á¤</p>
</div>
<div class="card">
<span class="card-icon">🏦</span>
<h3>°è¾à±Ý</h3>
<p>°è¾à ü°á½Ã ¿ì¼± Áö±ÞÇÏ´Â ¼±±Þ±Ý¾×</p>
</div>
<div class="card">
<span class="card-icon">📈</span>
<h3>Áßµµ±Ý</h3>
<p>°è¾à±Ý°ú ÀÜ±Ý »çÀÌÀÇ Áß°£ Áö±Þ±Ý¾×</p>
</div>
<div class="card">
<span class="card-icon">✅</span>
<h3>ÀܱÝ</h3>
<p>ÀÔÁֽà ÃÖÁ¾ Áö±ÞÇÏ´Â ³ª¸ÓÁö ±Ý¾×</p>
</div>
<div class="card">
<span class="card-icon">🗓️</span>
<h3>Â÷ÀÓ(¿ù¼¼)</h3>
<p>¸Å¿ù Á¤±âÀûÀ¸·Î Áö±ÞÇÏ´Â ÀÓ´ë·á</p>
</div>
</div>
</div>
<div class="section">
<h2 class="section-title">°è¾à ü°á ÀýÂ÷</h2>
<div class="process-flow">
<div class="process-step">
<div class="process-circle">1</div>
<div class="process-title">ºÎµ¿»ê È®ÀÎ</div>
<div class="process-desc">¼ÒÀçÁö, ¸éÀû µî·Ï È®ÀÎ</div>
</div>
<div class="process-step">
<div class="process-circle">2</div>
<div class="process-title">Á¶°Ç ÇùÀÇ</div>
<div class="process-desc">º¸Áõ±Ý, ¿ù¼¼ ±â°£ ¼³Á¤</div>
</div>
<div class="process-step">
<div class="process-circle">3</div>
<div class="process-title">Ư¾à»çÇ×</div>
<div class="process-desc">Ãß°¡ Á¶°Ç ÇùÀdz»¿ë</div>
</div>
<div class="process-step">
<div class="process-circle">4</div>
<div class="process-title">°è¾à ü°á</div>
<div class="process-desc">¼¸í³¯ÀÎ ¿Ï·á</div>
</div>
</div>
</div>
<div class="section">
<h2 class="section-title">Çʼö È®ÀλçÇ×</h2>
<div class="grid-3x2">
<div class="card">
<span class="card-icon">🔍</span>
<h3>µî±âºÎ È®ÀÎ</h3>
<p>¼ÒÀ¯±Ç, ±ÙÀú´ç±Ç µî ±Ç¸®°ü°è È®ÀÎ</p>
</div>
<div class="card">
<span class="card-icon">🏠</span>
<h3>ÇöÀå Á¡°Ë</h3>
<p>½ÇÁ¦ ºÎµ¿»ê »óÅ Á÷Á¢ È®ÀÎ</p>
</div>
<div class="card">
<span class="card-icon">💳</span>
<h3>º¸Áõº¸Çè</h3>
<p>Àü¼¼º¸Áõ±Ý ¹Ýȯ º¸Áõº¸Çè °¡ÀÔ</p>
</div>
<div class="card">
<span class="card-icon">📋</span>
<h3>Ư¾à»çÇ×</h3>
<p>±¸Ã¼ÀûÀÎ Á¶°Ç ¸íÈ®È÷ ¸í½Ã</p>
</div>
<div class="card">
<span class="card-icon">⏰</span>
<h3>°è¾à±â°£</h3>
<p>ÀÓ´ëÂ÷ ½ÃÀÛÀϰú Á¾·áÀÏ È®Á¤</p>
</div>
<div class="card">
<span class="card-icon">📞</span>
<h3>¿¬¶ôó</h3>
<p>ÀÓ´ëÀÎ, ÀÓÂ÷ÀÎ Á¤È®ÇÑ ¿¬¶ôó</p>
</div>
</div>
</div>
<div class="section">
<div class="warning-box">
<h4>⚠️ °è¾à½Ã ÁÖÀÇ»çÇ×</h4>
<ul>
<li><strong>±Ç¸®°ü°è È®ÀÎ:</strong> µî±âºÎµîº»À» ÅëÇØ ¼ÒÀ¯±ÇÀÚ¿Í ±ÙÀú´ç±Ç ¼³Á¤ ¿©ºÎ¸¦ ¹Ýµå½Ã È®ÀÎ</li>
<li><strong>º¸Áõ±Ý º¸È£:</strong> Àü¼¼º¸Áõ±Ý¹Ýȯº¸Áõº¸Çè °¡ÀÔÀ¸·Î ¾ÈÀüÇÑ °è¾à ÁøÇà</li>
<li><strong>Ư¾à»çÇ× ¸í½Ã:</strong> ±¸µÎ¾à¼ÓÀº ºÐÀïÀÇ ¿øÀÎ, ¸ðµç Á¶°ÇÀ» ¼¸éÀ¸·Î ÀÛ¼º</li>
<li><strong>°è¾à¼ º¸°ü:</strong> ¿øº»Àº °¢ÀÚ º¸°üÇÏ°í »çº»À» º°µµ º¸°ü</li>
</ul>
</div>
</div>
<div class="section">
<h2 class="section-title">»ó¼¼ ±¸¼º ¿ä¼Ò</h2>
<div class="grid-1x4">
<div class="card">
<span class="card-icon">📅</span>
<h3>±â°£</h3>
<p>ÀÓ´ëÂ÷ °è¾à ½ÃÀÛÀÏ ~ Á¾·áÀÏ</p>
</div>
<div class="card">
<span class="card-icon">💬</span>
<h3>ÇùÀdz»¿ë</h3>
<p>´ç»çÀÚ °£ ±¸µÎ ÇÕÀÇ»çÇ×</p>
</div>
<div class="card">
<span class="card-icon">📝</span>
<h3>Ư¾à»çÇ×</h3>
<p>ÀÏ¹Ý Á¶°Ç ¿Ü Ãß°¡ ÇÕÀÇ»çÇ×</p>
</div>
<div class="card">
<span class="card-icon">✍️</span>
<h3>¼¸í³¯ÀÎ</h3>
<p>ÀÓ´ëÀÎ, ÀÓÂ÷ÀÎ ¼¸í ¹× Àΰ¨</p>
</div>
</div>
</div>
<div class="section">
<div class="info-stats">
<div class="stat-item">
<span class="stat-number">7</span>
<div class="stat-label">ÁÖ¿ä Á¶Ç×</div>
</div>
<div class="stat-item">
<span class="stat-number">2</span>
<div class="stat-label">ÆäÀÌÁö ¼ö</div>
</div>
<div class="stat-item">
<span class="stat-number">3</span>
<div class="stat-label">Ä÷¯ ¿É¼Ç</div>
</div>
<div class="stat-item">
<span class="stat-number">100%</span>
<div class="stat-label">¿Ï¼ºµµ</div>
</div>
</div>
</div>
<div class="highlight-box">
<h3>💡 ¾ÈÀüÇÑ ÀÓ´ëÂ÷ °è¾àÀ» À§ÇÑ ÆÁ</h3>
<p>¸ðµç Á¶°ÇÀ» ¸íÈ®È÷ Çϰí, ¼¸éÀ¸·Î ÀÛ¼ºÇÏ¿© ºÐÀïÀ» ¿¹¹æÇϼ¼¿ä. Àü¹®°¡ÀÇ µµ¿òÀ» ¹Þ¾Æ °è¾à¼¸¦ °ËÅä¹Þ´Â °Íµµ ÁÁÀº ¹æ¹ýÀÔ´Ï´Ù.</p>
</div>
</div>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p style="text-align: left;" align="left"><font color="#464646" style="font-family: µ¸¿ò, dotum; font-weight: bold;"><span style="font-size: 10pt;"><br></span></font></p><p style="text-align: left;" align="left"><font color="#464646" style="font-family: µ¸¿ò, dotum; font-weight: bold;"><span style="font-size: 10pt;">[</span></font><font color="#464646" face="µ¸¿ò, dotum"><span style="font-size: 13.3333px;"><b>ºÎµ¿»êÀÓ´ëÂ÷, ¿ù¼¼°è¾à¼</b></span></font><font color="#464646" style="font-family: µ¸¿ò, dotum; font-weight: bold;"><span style="font-size: 10pt;">]</span></font><span style="font-family: µ¸¿ò, dotum; font-weight: bold; color: rgb(70, 70, 70); font-size: 10pt;"> </span></p><p style="text-align: left; line-height: 2;" align="left"><span style="color: rgb(70, 70, 70); font-family: µ¸¿ò, dotum; font-size: 10pt; background-color: rgb(255, 255, 255);"> </span>ºÎµ¿»êÀÓ´ëÂ÷ °è¾à¼ ¶Ç´Â ¿ù¼¼°è¾à¼ ¾ç½ÄÀÔ´Ï´Ù.ÃÑ 7°³ÀÇ Á¶Ç×À¸·Î ±¸¼ºµÇ¾î ÀÖ½À´Ï´Ù. ¼ÒÀçÁö, ÅäÁö¸éÀû, °Ç¹°¸éÀû, ÀÓ´ëºÎºÐµîÀÇ ³»¿ëÀ» ±âÀçÇÕ´Ï´Ù.</p><p style="text-align: left; line-height: 2;" align="left"><span style="color: rgb(70, 70, 70); font-family: µ¸¿ò, dotum; font-size: 10pt;"> </span></p><p style="line-height: 2;"> </p><div style="text-align: left;" align="left"><span style="color: rgb(70, 70, 70); text-indent: -18.24px; font-family: µ¸¿ò, dotum; font-size: 10pt; background-color: rgb(255, 255, 255);">• </span><span style="color: rgb(70, 70, 70); font-family: µ¸¿ò, dotum; font-size: 10pt;">°è¾à¼ »ùÇà > ºÎµ¿»ê > Àü¿ù¼¼</span></div><div style="text-align: left;" align="left"><span style="background-color: rgb(255, 255, 255); color: rgb(70, 70, 70); font-family: µ¸¿ò, dotum; font-size: 10pt; text-indent: -18.24px;">• </span><span style="background-color: rgb(255, 255, 255); color: rgb(70, 70, 70); font-family: µ¸¿ò, dotum; font-size: 10pt; text-indent: -18.24px;">°¢ 2 Page</span></div><div style="text-align: left;" align="left"><span style="background-color: rgb(255, 255, 255); color: rgb(70, 70, 70); font-family: µ¸¿ò, dotum; font-size: 10pt; text-indent: -18.24px;">• </span><span style="background-color: rgb(255, 255, 255); color: rgb(70, 70, 70); font-family: µ¸¿ò, dotum; font-size: 10pt; text-indent: -18.24px;"><font color="#464646">Ä÷¯ </font><span style="color: rgb(120, 32, 185);">¡á</span> <span style="color: rgb(0, 176, 162);">¡á</span><font color="#464646"> </font></span><span style="background-color: rgb(255, 255, 255); color: rgb(70, 70, 70); font-family: µ¸¿ò, dotum; font-size: 10pt; text-indent: -18.24px;">¡à</span></div><p> </p><p style="text-align: left; line-height: 2;" align="left"><span style="color: rgb(70, 70, 70); font-family: µ¸¿ò, dotum; font-size: 10pt;"> Ä÷¯µðÀÚÀÎÀÌ ¾ø´Â ¹«Áö¸¦ ¹ÙÅÁÀ¸·Î ÃÑ 3°¡Áö°¡ Æ÷ÇÔµÈ ¹®¼·Î ¿øÇÏ´Â Ä÷¯µðÀÚÀÎÀ» ¼±ÅÃÇÏ¿© ¹®¼¸¦ ÀÛ¼ºÇÒ ¼ö ÀÖ½À´Ï´Ù.</span></p><p style="text-align: left; line-height: 2;" align="left"><span style="color: rgb(70, 70, 70); font-family: µ¸¿ò, dotum; font-size: 10pt;"> </span></p><p style="text-align: left; line-height: 2;" align="left"><span style="color: rgb(70, 70, 70); font-family: µ¸¿ò, dotum; font-size: 10pt;"><b>[¸ñ Â÷]</b></span></p><p style="text-align: left; line-height: 2;" align="left"><font color="#464646" face="µ¸¿ò, dotum"><span style="font-size: 13.3333px;"> </span></font><span style="background-color: rgb(255, 255, 255); color: rgb(70, 70, 70); font-family: µ¸¿ò, dotum; font-size: 13.3333px; text-indent: -18.24px;">• </span><span style="font-size: 13.3333px; color: rgb(70, 70, 70); font-family: µ¸¿ò, dotum;">¼ÒÀçÁö</span></p><p style="text-align: left; line-height: 2;" align="left"><font color="#464646" face="µ¸¿ò, dotum"><span style="font-size: 13.3333px;"> </span></font><span style="background-color: rgb(255, 255, 255); color: rgb(70, 70, 70); font-family: µ¸¿ò, dotum; font-size: 13.3333px; text-indent: -18.24px;">• </span><span style="font-size: 13.3333px; color: rgb(70, 70, 70); font-family: µ¸¿ò, dotum;">º¸Áõ±Ý</span></p><p style="text-align: left; line-height: 2;" align="left"><font color="#464646" face="µ¸¿ò, dotum"><span style="font-size: 13.3333px;"> </span></font><span style="background-color: rgb(255, 255, 255); color: rgb(70, 70, 70); font-family: µ¸¿ò, dotum; font-size: 13.3333px; text-indent: -18.24px;">• </span><span style="font-size: 13.3333px; color: rgb(70, 70, 70); font-family: µ¸¿ò, dotum;">°è¾à±Ý</span></p><p style="text-align: left; line-height: 2;" align="left"><span style="background-color: rgb(255, 255, 255); color: rgb(70, 70, 70); font-family: µ¸¿ò, dotum; font-size: 13.3333px; text-indent: -18.24px;"> • </span><font color="#464646" face="µ¸¿ò, dotum"><span style="font-size: 13.3333px;">Áßµµ±Ý</span></font></p><p style="text-align: left; line-height: 2;" align="left"><font color="#464646" face="µ¸¿ò, dotum"><span style="font-size: 13.3333px;"> </span></font><span style="background-color: rgb(255, 255, 255); color: rgb(70, 70, 70); font-family: µ¸¿ò, dotum; font-size: 13.3333px; text-indent: -18.24px;">• </span><span style="font-size: 13.3333px; color: rgb(70, 70, 70); font-family: µ¸¿ò, dotum;">ÀÜ ±Ý</span></p><p style="text-align: left; line-height: 2;" align="left"><font color="#464646" face="µ¸¿ò, dotum"><span style="font-size: 13.3333px;"> </span></font><span style="background-color: rgb(255, 255, 255); color: rgb(70, 70, 70); font-family: µ¸¿ò, dotum; font-size: 13.3333px; text-indent: -18.24px;">• </span><span style="font-size: 13.3333px; color: rgb(70, 70, 70); font-family: µ¸¿ò, dotum;">Â÷ÀÓ(¿ù¼¼)</span></p><p style="text-align: left; line-height: 2;" align="left"><font color="#464646" face="µ¸¿ò, dotum"><span style="font-size: 13.3333px;"> </span></font><span style="background-color: rgb(255, 255, 255); color: rgb(70, 70, 70); font-family: µ¸¿ò, dotum; font-size: 13.3333px; text-indent: -18.24px;">• </span><span style="font-size: 13.3333px; color: rgb(70, 70, 70); font-family: µ¸¿ò, dotum;">±â °£</span></p><p style="text-align: left; line-height: 2;" align="left"><font color="#464646" face="µ¸¿ò, dotum"><span style="font-size: 13.3333px;"> </span></font><span style="background-color: rgb(255, 255, 255); color: rgb(70, 70, 70); font-family: µ¸¿ò, dotum; font-size: 13.3333px; text-indent: -18.24px;">• </span><span style="font-size: 13.3333px; color: rgb(70, 70, 70); font-family: µ¸¿ò, dotum;">ÇùÀdz»¿ë</span></p><p style="text-align: left; line-height: 2;" align="left"><font color="#464646" face="µ¸¿ò, dotum"><span style="font-size: 13.3333px;"> </span></font><span style="background-color: rgb(255, 255, 255); color: rgb(70, 70, 70); font-family: µ¸¿ò, dotum; font-size: 13.3333px; text-indent: -18.24px;">• </span><span style="font-size: 13.3333px; color: rgb(70, 70, 70); font-family: µ¸¿ò, dotum;">Ư¾à»çÇ×</span></p><div style="text-align: left;" align="left"><br></div><p style="text-align: left; line-height: 2;" align="left"><span style="color: rgb(70, 70, 70); font-family: µ¸¿ò, dotum; font-size: 10pt;"> </span><span style="color: rgb(70, 70, 70); font-family: µ¸¿ò, dotum; font-size: 10pt;">¡Ø ÇÑ±ÛÆÄÀÏ(.hwp)ÀÇ °æ¿ì ¾ËÁý¿¡ Æ÷ÇԵǾî ÀÖ½À´Ï´Ù.</span></p><div style="text-align: left;"><br></div> |
|
|
 |
|
 |
|