/* Layout.css */
.header {
    width: 100%;
    background: #fff;
	letter-spacing: 0.5px
}

.header-inner {
    width: 1180px;
    margin: 0 auto;
}

/* ·Î°í ¿µ¿ª */
.header-top {
    padding: 30px 0;
    text-align: center;
}

.logo {
    margin: 0;
    line-height: 0;
    display: flex; /* ·Î°í ÀÌ¹ÌÁö Á¤·ÄÀ» À§ÇØ Ãß°¡ */
    justify-content: center;
}

.logo img {
    height: 40px;
    width: auto;
}

/* ºñÁÖ¾ó ¹è³Ê */
.main-banner {
    width: 100%;
    margin-bottom: 0; /* ¸¶Áø Á¦°Å */
	margin-top:10px;
}

.banner-image {
    width: 1180px;
    height: 434px;
    overflow: hidden;
}

.banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ³×ºñ°ÔÀÌ¼Ç */
.main-nav {
    width: 100%;
    height: 60px;
    background: #fff;
    margin-top: 0px;
}

.nav-inner {
    width: 1180px;
    margin: 0 auto;
    height: 100%;
}

.nav-list {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-list li {
    position: relative;
    height: 100%;
}

.nav-list li::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 12px;
    background: #666;
}

.nav-list li:last-child::after {
    display: none;
}

.nav-list li a {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 35px;
    font-size: 18px;
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-list li a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #000;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s;
}

.nav-list li a:hover {
    color: #000;
}

.nav-list li a:hover::before {
    transform: scaleX(1);
}






/* footer */
/* ±âº» ½ºÅ¸ÀÏ ¼³Á¤ */
#footer {
	width:100%;
    background-color: #f5f5f5;
    padding: 20px 0;
    font-size: 14px;
    color: #333;
	margin-top:30px;
	overflow:hidden;
}

.common-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* 1´Ü: fgnb-list ½ºÅ¸ÀÏ ¼³Á¤ */
.fgnb-area {
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.fgnb-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 15px; /* ¸®½ºÆ® °£ °£°Ý */
}

.fgnb-items {
    display: inline-block;
}

.link-fgnb {
    color: #333;
    text-decoration: none;
}

.link-fgnb:hover {
    color: #666;
    text-decoration: underline;
}

/* 2´Ü: ·Î°í¿Í È¸»ç Á¤º¸ ½ºÅ¸ÀÏ */
.corp-area {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
}

.ico-logo {
    opacity: 0.2;
    filter: grayscale(100%) blur(0px);
    width: 80px;
    height: auto;
}

.address {
    font-size: 12px;
    line-height: 1.6;
    color: #555;
    text-align: left;
	margin-left:40px;
}

.address p {
    display: inline-block;
    padding-right: 28px;
    line-height: 1.5;
}

.copy {
    margin-top: 10px;
    font-size: 12px;
    color: #888;
}


