 /* ---pc버전------ */
.box_01 { width: 90%; border: 1px solid #06C; }

.box_02 {
    width: 900px;
    /* [disabled]height: 450px; */
    display: block;
}

.box_03 { width: 900px;  }

.box_04 { width: 900px; display: block; }

.neo_info_img { background-image: url(../images/info_img01.jpg); background-repeat: no-repeat; height: 458px; width: 900px; }

.neo_sitemap_img { background-image: url(../images/sitemap_img01.jpg); background-repeat: no-repeat; height: 366px; width: 900px; }

.middle_title { font-size: 24px; font-weight: bold; font-family: "돋움체", "돋움", "바탕체", "바탕", "맑은 고딕", Arial; font-style: normal; color: #F60; }

.neo_info_txt { font-family: "돋움체", "돋움", "바탕체", "바탕", "맑은 고딕", Arial; font-size: 14px; padding: 0 0 0 10px; }
.neo_info_txt p { font-size: 16px; color: #F00; margin: 0; }

.neo_info_txt ul li { list-style-type: disc; margin: 0 0 0 15px; padding: 0; }

.bottom_logo { background-image: url(../images/low_logo.jpg); float: left; height: 69px; width: 182px; }

.neo_direction { font-family: "돋움체", "돋움", "바탕체", "바탕", "맑은 고딕", Arial; font-size: 14px; color: #666; }

.neo_gallery_ct {

}

.low_banners { background-image: url(../images/low_etc_banners.gif); height: 92px; width: 960px; }

 /* ---모바일버전------ */


/* 기본 리셋 */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

m_body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    /* body에 flexbox를 제거하여 wrapper가 자신의 margin: auto로 중앙 정렬되도록 함 */
    /* display: flex; */
    /* justify-content: center; */
    /* align-items: flex-start; */
    min-height: 100vh; /* 최소 높이를 뷰포트 전체로 설정 */
    overflow-y: auto; /* 내용이 넘칠 경우 스크롤 허용 */
}

/* 가장 바깥쪽 래퍼 */
.m_wrapper {
    width: 100%;
    max-width: 100%; /* 모바일 최대 너비 설정 (원하는 값으로 조절) */
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column; /* 세로 3단 구성을 위해 컬럼 방향으로 설정 */ 
    min-height: 100vh; /* 래퍼도 뷰포트 전체 높이를 차지하도록 */
    
    /* 여기서 가로 중앙 정렬 */
    margin: 0 auto; 
}

/* 상단 섹션 */
.m_header {
    background-color: #333;
    color: #fff;
    padding: 15px 0;
    text-align: center;
    flex-shrink: 0; 
}

.m_menu-container {
    display: flex;
    justify-content: space-around;
    padding: 0 10px;
}

.m_menu-item {
    color: #fff;
    text-decoration: none;
    padding: 5px 10px;
    font-weight: bold;
    flex-grow: 1;
    text-align: center;
}

.m_menu-item:hover {
    background-color: #555;
    border-radius: 5px;
}

/* 중간 섹션 */
.m_content {
    flex-grow: 1;
    padding: 20px;
    overflow-y: auto;
}

/* 하단 섹션 */
.m_footer {
    background-color: #333;
    color: #fff;
    padding: 15px;
    text-align: center;
    font-size: 0.9em;
    flex-shrink: 0;
}
