@charset "utf-8";


#site-header .menu_btn
 {
    border-radius: 50%;
    border: 1px #b6b6b6 solid;
    background-color: #fff;
}

html, body { -webkit-text-size-adjust: 100%; }

#site-header .menu_btn
 {
    -webkit-appearance: none;
    appearance: none;
    padding: 0;
    border: 1px solid #000;   /* 기존 스타일 유지 */
    box-sizing: border-box;
  
    /* 정사각형 강제 */
    width: 60px;              /* media query에서 50px로 변경 가능 */
    aspect-ratio: 1 / 1;      /* 네이버 인앱에서도 잘 동작, 정사각형 보장 */
    border-radius: 50%;
  
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;           /* 텍스트 라인박스가 높이 계산에 영향 주지 않게 */
    overflow: hidden;         /* 아이콘이 넘치면 가림 */
    transform: translateZ(0); /* 일부 WebView에서 서브픽셀 왜곡 예방 */
    transition: background .3s ease;
}

@supports not (aspect-ratio: 1 / 1) {
    #site-header .menu_btn { height: 60px; }
}

/* 3) 모바일 전용 사이즈(예: 768px 이하) */
@media screen and (max-width: 768px) {
    :root { --ham-size: 50px; } /* 50px로 바꿔도 됨 */

    /* 1) 우측 래퍼가 25px로 고정된 경우 폭을 강제 확장 */
    #site-header .right {
      width: var(--ham-size) !important;
      min-width: var(--ham-size) !important;
      flex: 0 0 var(--ham-size) !important;   /* 부모가 flex일 때 */
    }
    /* 부모가 grid면 트랙이 픽스일 수 있음 → auto로 */
    #site-header .right {
      grid-auto-columns: auto !important;
    }
  
    /* 2) 버튼 자체를 정사각형으로 고정 */
    #site-header .menu_btn {
      position: relative !important;
      width: var(--ham-size) !important;
      height: var(--ham-size) !important;
      min-width: var(--ham-size) !important;
      min-height: var(--ham-size) !important;
      border-radius: 50% !important;
  
      display: inline-flex !important;
      align-items: center !important;
      justify-content: center !important;
  
      box-sizing: border-box !important;
      padding: 0 !important;
      -webkit-appearance: none !important;
      appearance: none !important;
      transform: none !important; /* 혹시 scale 섞여 있으면 차단 */
    }

    #site-header>.inner>.center {
        width: 50px;
        width: 19.666667vw !important;
    }
}
  

#site-header .menu_btn
 {
    border: 1px #fff solid;
    background-color: transparent;
}

#site-header .menu_btn .line span
 {
    display: inline-block;
    width: 100%;
    height: 2px;
    background-color: #fff;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    border-radius: 5px;
}

#site-header .menu_btn .line {
    width: 40%; /* 버튼(menu_btn) 크기의 절반 비율로 지정 */
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

#site-header .menu_btn .line span:first-child
 {
    margin-top: 0;
}

#site-header .menu_btn .line .line_02 {
    opacity: 0;
	height: 9px;
	width: 60%;
}


#site-header .menu_btn:hover
 {
    border: 1px #005689 solid;
    background-color: #005689;
}