.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  height: 80px;
  width: 100%;
  background-color: #fff;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.4);
}
.header__inner {
  padding-left: 32px;
  padding-right: 32px;
  height: 100%;
}
.header__inner .lr {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
.header__inner .lr .left {
  display: flex;
  align-items: center;
  gap: 16px;
}
.header__inner .lr .left .logo {
  width: 160px;
}
.header__inner .lr .left .logo img {
  width: 100%;
  height: auto;
}
.header__inner .lr .left .head-copy h1, .header__inner .lr .left .head-copy p {
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.5;
  color: #000;
  letter-spacing: 0.1em;
}
.header__inner .lr .right nav ul {
  display: flex;
  justify-content: right;
  align-items: center;
  gap: 24px;
}
.header__inner .lr .right nav ul li {
  position: relative;
}
.header__inner .lr .right nav ul li::after {
  position: absolute;
  right: 0%;
  bottom: 0px;
  transform: translateX(200%);
  font-family: "Font Awesome 6 Free";
  content: "/";
  font-weight: 400;
  font-size: 1.5rem;
  color: #000;
}
.header__inner .lr .right nav ul li a {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.5;
  color: #000;
  letter-spacing: 0.1em;
}
.header__inner .lr .right nav ul li:last-of-type::after {
  display: none;
}

@media screen and (max-width: 768px) {
  .header {
    height: 56px;
    position: fixed;
    background-color: #fff;
  }
  .header__inner {
    padding-left: 12px;
    padding-right: 0;
    background-color: #fff;
  }
  .header__inner .lr .left {
    gap: 8px;
  }
  .header__inner .lr .left .logo {
    width: 120px;
    transform: translateY(1px);
  }
  .header__inner .lr .left .head-copy h1, .header__inner .lr .left .head-copy p {
    font-size: 1rem;
    letter-spacing: 0.05em;
  }
  .header__inner .lr .right .ham {
    display: block;
    width: 56px;
    height: 56px;
    background-color: #000;
    position: relative;
  }
  .header__inner .lr .right .ham span {
    position: absolute;
    display: block;
    width: 24px;
    height: 1px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
  }
  .header__inner .lr .right .ham span:nth-of-type(1) {
    top: 30%;
  }
  .header__inner .lr .right .ham span:nth-of-type(2) {
    top: 50%;
  }
  .header__inner .lr .right .ham span:nth-of-type(3) {
    top: 70%;
  }
  .header__inner .lr .right .ham.cross {
    background-color: #555;
    transition-duration: 0.5s;
  }
  .header__inner .lr .right .ham.cross span:nth-of-type(1) {
    transform: translateX(-50%) rotate(45deg);
    top: 50%;
    left: 50%;
    transition-duration: 0.5s;
  }
  .header__inner .lr .right .ham.cross span:nth-of-type(2) {
    opacity: 0;
    transition-duration: 0.7s;
  }
  .header__inner .lr .right .ham.cross span:nth-of-type(3) {
    transform: translateX(-50%) rotate(-45deg);
    top: 50%;
    left: 50%;
    transition-duration: 0.5s;
  }
  .header__inner .lr .right nav {
    background-color: #000;
    padding: 24px;
    position: fixed;
    top: 56px;
    left: 0;
    width: 100%;
    height: auto;
    z-index: -1;
    transform: translateY(-100%);
    transition: all 0.3s ease-in-out;
    opacity: 0;
  }
  .header__inner .lr .right nav ul {
    flex-wrap: wrap;
    gap: 16px;
  }
  .header__inner .lr .right nav ul li {
    width: 100%;
    padding-top: 0px;
    text-align: center;
    transform: translateY(20px);
    transition: all 0.4s ease-in-out;
    opacity: 0;
  }
  .header__inner .lr .right nav ul li::after {
    display: none;
  }
  .header__inner .lr .right nav ul li a {
    font-size: 1.4rem;
    color: #fff;
  }
  .header__inner .lr .right nav ul li:last-of-type::after {
    display: none;
  }
  .header__inner .lr .right nav.active {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease-in-out;
  }
  .header__inner .lr .right nav.active ul {
    flex-wrap: wrap;
    gap: 16px;
  }
  .header__inner .lr .right nav.active ul li {
    width: 100%;
    padding-top: 0px;
    text-align: center;
    transform: translateY(0px);
    transition: all 0.4s ease-in-out;
    opacity: 1;
  }
  .header__inner .lr .right nav.active ul li:nth-of-type(1) {
    transition-delay: 0.5s;
  }
  .header__inner .lr .right nav.active ul li:nth-of-type(2) {
    transition-delay: 0.6s;
  }
  .header__inner .lr .right nav.active ul li:nth-of-type(3) {
    transition-delay: 0.7s;
  }
  .header__inner .lr .right nav.active ul li:nth-of-type(4) {
    transition-delay: 0.8s;
  }
  .header__inner .lr .right nav.active ul li:nth-of-type(5) {
    transition-delay: 0.9s;
  }
  .header__inner .lr .right nav.active ul li:nth-of-type(6) {
    transition-delay: 1s;
  }
  .header__inner .lr .right nav.active ul li:nth-of-type(7) {
    transition-delay: 1.1s;
  }
  .header__inner .lr .right nav.active ul li:nth-of-type(8) {
    transition-delay: 1.2s;
  }
}/*# sourceMappingURL=header.css.map */