/* 넓이가 1300픽셀 이상일 때 기존 PC 화면 스타일 유지 */
@media screen and (min-width: 1300px) {
  .gnb {
    display: flex;
    /* 기존 PC 메뉴 스타일 */
  }

  .gnb_menu_list a {
    font-size: 기존 폰트 크기; /* 예: 16px */
  }

  .logo_web {
    width: 기존 로고 크기; /* 예: 200px */
    height: auto;
  }

  /* 필요한 다른 요소들에 대한 기존 스타일 */
}

/* 넓이가 1300픽셀 미만일 때 비율에 맞게 조정 */
@media screen and (max-width: 1299px) {
  .gnb_menu_list a {
    font-size: 1.5vw;
  }

  .logo_web {
    width: 15vw;
    height: auto;
  }

  /* 필요한 다른 요소들에 대한 비율 조정 스타일 */
}