/* ÀüÃ¼ ·¹ÀÌ¾Æ¿ô */

a {text-decoration:none;}

@font-face {
    font-family: 'SBAggroB';
    src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_2108@1.1/SBAggroB.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}


body {
    margin: 0;
    font-family: 'Noto Sans KR','Arial', 'Nanum Gothic', 'Malgun Gothic', 'Apple SD Gothic Neo', sans-serif;
    padding: 0;
	background:#f6f7fb
}
.displaynone {display:none;}

.main {
    width: 100%;
}

/* Çì´õ ½ºÅ¸ÀÏ */
.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #001eff;
    padding: 0px 40px;
    flex-wrap: wrap;
    position: fixed; /* °íÁ¤ */
    top: 0; /* »ó´Ü¿¡ °íÁ¤ */
    left: 0; /* ÁÂÃø¿¡ °íÁ¤ */
    width: 100%; /* È­¸é ³Êºñ ÀüÃ¼ */
    z-index: 1000; /* ´Ù¸¥ ¿ä¼Òµéº¸´Ù À§¿¡ À§Ä¡ */
    box-sizing: border-box;
    height: 70px;
    line-height: 70px;
}

.logo {
    font-family: 'SBAggroB';
    font-size: 28px;
    color: #fff;
    height: 70px;
    line-height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.logo a {color:#fff; font-family: 'SBAggroB'; font-size: 28px;}
.logo img {
    max-width: 300px;
	display:block;
}

.hamburger {
    display: none;
    font-size: 24px;
    cursor: pointer;
	color:#eee
}

.main-nav {
    display: flex;
}


.main-nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 40px;
}

.main-nav ul li {
    position: relative;
    line-height: 70px;
}

.main-nav ul li a {
    color: #eee;
    text-decoration: none;
    font-size: 18px;
	font-weight:600;
}

.main-nav ul li a img {max-height:30px; padding-top:19px;}

/* ¼­ºê¸Þ´º */
.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #f9f9f9;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.has-submenu:hover .submenu {
    max-height: 200px;
}

.submenu li {
    padding: 10px 20px;
    white-space: nowrap;
}

.submenu li a {
    font-size: 16px;
    color: #001eff;
    font-family: 'SBAggroB';
}

/* ¸ÞÀÎ ºñÁÖ¾ó */
.main-visual {
    width: 100%;
    height: 100vh;
    background-image: url('../img/main.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
	
}

.main-visual h1 {font-family:'SBAggroB';}

/* ÄÜÅÙÃ÷ ¿µ¿ª */
.content {
    padding: 0px;
    padding-top: 70px; /* Çì´õ ³ôÀÌ¸¸Å­ ¿©¹é Ãß°¡ */
}

.no-scroll {
    overflow: hidden;
    height: 100vh;
}

.footer {width:100%; background:#1a1a1a; text-align:center;padding:100px 0; box-sizing:border-box; color:#aaa; font-size:11px;}
.footer img {max-width:200px; margin:0px auto; display:block}

/* ¹ÝÀÀÇü */
@media (max-width: 1100px) {

	.site-header{
		padding:0 20px;
	}
	
	.logo img {
		max-width:220px;
	}
    .hamburger {
        display: block;
    }

    .main-nav {
        position: fixed;
        top: 70px; /* Çì´õ ¾Æ·¡ */
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: rgb(0 30 255 / 79%);
        transition: right 0.3s ease;
        z-index: 999;
        padding: 40px 20px;
        box-sizing: border-box;
        display: block; /* flex ¡æ block À¸·Î º¯°æ */
    }

    .site-header.active .main-nav {
        right: 0;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 20px;
    }

    .main-nav ul li {
        margin: 0;
        line-height: 1.6;
    }

    .site-header.active .main-nav {
        display: block;
    }
}
