/* 언어설정 */
@charset 'utf-8';

@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;
}

@font-face {
    font-family: 'KCCHyerim-Regular';
    src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/2411-3@1.0/KCCHyerim-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

/* 전체설정 */
* {
    margin: 0;
    padding: 0;
    font-family: 'SUIT-Regular';
}

ul,
ol {
    list-style: none;
}

a {
    text-decoration: none;
    color: #333;
}

img {
    vertical-align: bottom;
}


/* 수정 후 */
html, body {
    overflow-x: hidden;
    overflow-y: auto; /* ✅ 세로 스크롤 허용 */
    height: auto;
}

.body {
    max-width: 100%;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
    /* 스크롤 막기 */
    touch-action: none;
    /* 터치 시 흔들림 방지 (모바일 UX 향상) */
}

/* 색상설정 */
:root {
  --main-navi: #204B62;
  --main-text: #333;
  --main-white: #fff;
}


/* 상세설정 */

.footer {
    background-color: var(--main-navi);
    padding: 40px 20px 25px;
    font-size: 16px;
    color: var(--main-white);
    line-height: 1.6;
  }
  
  .footer_tx {
    max-width: 1800px;
    margin: 0 auto;
  }
  
  .footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
  }
  
  .footer-logo-area {
    display: flex;
    align-items: center;
    gap: 15px;
  }
  
  .footer_logo {
    height: 40px;
  }
  
  .footer-link {
    font-size: 15px;
    color: var(--main-white);
    text-decoration: underline;
      margin-left: 40px;
      margin-top: 17px;
  }
  
  .footer ul {
    margin-top: 35px;
    padding-left: 0;
  }
  
  .footer ul li {
    margin-bottom: 5px;
  }
  
  .footer ul li span {
    font-weight: bold;
  }
  
  .footer p {
    margin-top: 20px;
    font-size: 16px;
    color: var(--main-text-Light);
    text-align: center;
    border-top: 1px solid #ddd;
    padding-top: 15px;
  }
  






/* 미디어 쿼리 구간------------------------------------------------------------------------------------- */


/* PC 전용 */
@media screen and (min-width: 1440px) {}

/* 노트북 전용 */
@media screen and (min-width: 1025px) and (max-width: 1439px) {}

/* 태블릿 전용 */
@media screen and (min-width: 768px) and (max-width: 1024px) {}

/* 모바일 전용 */
@media screen and (max-width: 767px) {


    .footer-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
      }
    
      .footer-logo-area {
        align-items: flex-start;
        gap: 5px;
      }

      .footer-logo-area .footer-link {
        font-size: 13px;
        margin-left: 20px;
        margin-top: 10px;
      }

      .footer .footer_tx ul {
        font-size: 16px;
        margin-top: 35px;
      }
    
      .footer .footer_tx p {
        text-align: left;
        font-size: 14px;
      }
}