/* 기본 PC 설정 */
.company_menu {
  position: relative;
  height: 400px;
  background: url('../사진/회사소개배너.png') no-repeat center 80% / cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  margin-top: 120px;
  overflow: hidden;
}

.inside_menu_home {
  width: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-right: 2px solid #bbb; 
  cursor: pointer;
}

/* 모바일 전용 설정 (화면 너비 768px 이하) */
@media (max-width: 768px) {
  .company_menu {
    background-size: contain; 
    height: 250px; 
    background-position: center; 
    margin-top: 80px;
    background-color: #000; /* 사진이 줄어들 때 생기는 여백을 검정색으로 처리 */
  }

  .inside_menu_home {
    width: 50px;
    border-right: 1px solid #bbb;
  }

  /* 홈 아이콘이 세로로 늘어나지 않게 고정 */
  .inside_menu_home img {
    width: 30px !important;
    height: 30px !important;
    object-fit: contain !important;
  }
}