/* 헤더 스타일 */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 128px;
  background-color: white;
  z-index: 999;
  border-bottom: 1px solid #ddd;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
}

.header {
  height: 100%;
  display: flex;
  align-items: center;
  flex-direction: row; 
}

/* 로고 */
.logo-div{
  width: 250px;
  height: 100%;
  display: flex;
  align-items: center;
}

.logo {
  width: 164px;
  height: 67px;
  margin-left: 87px;
  user-select: none;
  vertical-align: middle;
}

/* 메뉴 */
#menu {
  width: calc(100% - 300px);
  height: 100%;
  justify-content: center;
  display: flex;
  align-items: center;
}

#menu > ul {
  display: flex;
  flex-direction: row;
  gap: 127px;
}

#menu > ul > li {
  list-style: none;
  font-family: 'Paperlogy-Regular';
  color: #666666;
  font-size: 2.25rem;
  width: 127px;
  cursor: pointer;
}

.active {
  font-family: 'Paperlogy-Medium' !important;
  color: #000000 !important;
}

.system-go{
  font-family: 'Paperlogy-Regular';
}

.system-go > a{
  color: #606060;
  font-size: 1.25rem;
}

@media (max-width: 1000px){
  header {
    height: 150px;
  }

  .logo{
    width: 180px;
    height: unset;
    margin-left: 40px;
  }

  .header{
    box-shadow: 0px 4px 14.5px 0px #C4C4C440;
  }
}

.hamburger {
  cursor: pointer;
  padding-right: 30px;
  width: calc(100% - 250px);
}

.mobile-menu-icon {
  width: 60px;
  height: 60px;
  background-image: url('/images/icon/mobile/menu.svg'); /* 닫혀 있을 때 */
  background-size: 60px;
  background-repeat: no-repeat;
  float: right;
}

/* 메뉴 열렸을 때의 상태 */
.mobile-menu-icon.open {
  background-image: url('/images/icon/mobile/x-close.svg'); /* 예: 닫기 아이콘 */
}

.mobile-menu {
  position: fixed;
  top: 152px;
  left: 0;
  width: 100%;
  background-color: #FFFFFF;
  color: white;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  overflow-y: auto;
  padding-bottom: 40px;
}

.mobile-menu ul {
  list-style: none;
  padding: 0;
  padding: 40px 40px 0px 40px;
}

.mobile-menu > ul > li {
  margin: 0px 60px 0px 40px;
  padding: 45px 0px;
  font-family: 'Paperlogy-Semibold';
  font-size: 4rem;
  color: #000000;
  cursor: pointer;
}

.mobile-menu > ul > li > img {
  width: 60px;
  height: 60px;
  float: right;
  vertical-align: middle;
}

.sub-menu {
  list-style: none;
  padding-left: 90px;
}

.sub-menu > li {
  margin-bottom: 80px;
  font-family: 'Paperlogy-Medium';
  font-size: 3.25rem;
  color: #898989;
  cursor: pointer;
}

.hidden {
  display: none;
}

.custom-toast{
  font-size: 2.25rem;
  font-family: 'Paperlogy-Medium';
  padding: 16px 24px;
  line-height: 1.4;
}