@charset "UTF-8";

#header {
  background: rgb(230, 21, 23);
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 99;
}

#header a.header-logo {
  height: 100%;
}

#header .header-logo img {
  height: 100%;
  border-right: solid white;
  border-width: clamp(3px, 0.6vw, 7px);
}


#header nav.header-nav {
  height: clamp(48px, 9.6vw, 72px);
  display: flex;
  justify-content: space-between;
  align-items: center;
}


#header li.header-nav-item {
  list-style-type: none;
  display: inline-flex;
  align-items: center;
}

#header .header-nav-list {
  display: flex;
  align-items: center;
  gap: 0 15px;
}



/* nav */
.menu-trigger {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  outline: none;
  margin-right: 20px;
}

.menu-line {
  display: block;
  width: 30px;
  height: 3px;
  margin: 5px 0;
  background-color: white;
}

.menu {
  position: fixed;
  top: 0;
  right: -380px;
  width: 160px;
  background-color: white;
  color: #fff;
  transition: right 0.3s ease-in-out;
  z-index: 999;
  padding: 30px;
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {

  .menu-trigger,
  .menu {
    display: none;
  }
}


.menu-close {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0px;
  right: 20px;
  font-size: 44px;
  color: #707070;
  cursor: pointer;
}

.menu-list {
  margin-top: 50px;
  text-align: right;
  padding-left: 0;
}

.menu-item {
  margin-bottom: 30px;
}

.menu.open {
  right: 0;
}

.menu .login-btn-r {
  height: 46px;
  font-size: 24px;
}

.menu a {
  font-size: 24px;
  color: #000000;
  border-bottom: 1px solid #707070;
  text-decoration: none;
}