@font-face {
    font-family: 'SUIT-Regular';
    src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_suit@1.0/SUIT-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}
#wrap * {
    font-family: 'SUIT-Regular';
}

.header_mo {
    display: flex;
    justify-content: flex-start;
    height: 6rem;
    padding: 1.5rem;
}
.header_mo img {
    width: 75px;
}
.header_mo .i2 {
    width:100% !important;
    height: auto;
}
.header_mo h1 {
    position: absolute; /* 절대 위치 지정 */
    left: 50%; /* 가로 중앙 */
    transform: translateX( -50%); /* 중앙 정렬 */
    width: auto; /* 너비 자동 조정 */
    margin: 0; /* 기본 여백 제거 */
    padding: 8px 0; /* 필요에 따라 패딩 추가 */
}

.header_mo .right1 {
    text-align: right;
    display: flex;
    justify-content: left;
    width: 8%;
    align-items: center;
}
/* #wrap .left {
    display: none;
}   */

.header_mo .nav_mo  {
    position: fixed;
    top: 0; left: -71%;
    width: 70%; min-height: 100vh;
    background: #fff;
    z-index: 999;
    transition: .3s;
    display: block;
}
.back2 {
    background: #00000014; 
    position: fixed;
    width: 100% !important;
    height: 100%;
    top: 0;
    display: none;
    z-index: 998; 
    left: 0;
}

.nav_mo.open + .back2 {
    display: block;
    
}
.nav_mo.open {
    left: 0;
}
.nav_logo {
    width: 100%; height: 6rem;
    display: flex;
    justify-content: left;
    align-items: center;
    padding: 1.5rem;
}

.nav_menu_mo {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;

}
.nav_menu_mo .has-submenu{
    background-color: #fff;
    
}
.nav_menu_mo li:last-child  {
    border-bottom: none;
    
}
.nav_menu_mo li a {
    display: block;
    /* margin-bottom:3rem; */
    text-align: left;
    font-size: 1.6rem;
    padding: 1rem;
}

.nav_menu_mo li span {
   font-size: 16px;
}
.nav_menu_mo li a span {
    font-size: 1.8rem;
    display: inline-block;
    color: #2c2f2d;
    width: 17rem;
    font-weight: 600;
    white-space: nowrap;
}

.nav_menu_mo li .n {
    padding: 0;
}
.has-submenu li.on a {
    color: #000323; /* 강조할 색상 */
    font-weight: bold; /* 강조할 폰트 두께 */
}

.has-submenu  {
}
.has-submenu .span_mo {
    font-size: 18px;
    cursor: pointer;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    line-height: 1.3;
    padding: 1.5rem;
    padding-right: 3.5rem; 
    background: linear-gradient(to right, #037beb, #17beef);
    color: #fff;
}


.has-submenu:nth-child(1) .span_mo::after, .has-submenu:nth-child(2) .span_mo::after  {
    content: '';
    background-image: url('../img/menu-down.png');
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    width: 2rem;
    height: 2rem;
    right: 1rem;
    top: 50%; 
    transform: translateY(-50%);
}

.has-submenu.on .span_mo::after {
    background-image: url('../img/menu-up.png');
    top: 50%; 
}

.has-submenu.on .submenu{
    display: block;
    padding: 2rem;
}

.has-submenu .submenu{
    display: none;
}

footer {
    background-color: #f4f4f4;
    padding: 20px;
}
footer p{
    line-height: 1.3;
    font-size: 1.4rem;
    font-family: 'SUIT-Regular';
    color: #4f4f4f;
}
footer  span{
    line-height: 1.5;
    font-size: 1.4rem;
    color: #4f4f4f;
    font-family: 'SUIT-Regular';
}


