.header {
  height: 70px;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.8);
}
.header__inner {
  padding-left: 32px;
}
.header__inner .lr {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__inner .lr .left .logo {
  width: 208.65px;
}
.header__inner .lr .left .logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.header__inner .lr .right {
  display: flex;
  justify-content: right;
  align-items: center;
  gap: 24px;
}
.header__inner .lr .right nav ul {
  display: flex;
  justify-content: right;
}
.header__inner .lr .right nav ul li {
  font-size: 1.6rem;
  line-height: 1.8;
  letter-spacing: 0.075em;
  font-weight: 700;
  color: #000;
  text-align: center;
}
.header__inner .lr .right nav ul li a {
  color: #000;
}
.header__inner .lr .right nav ul li a:after {
  display: block;
  font-family: "Orbitron", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 1.3rem;
  letter-spacing: 0.074em;
  color: #089C7E;
}
.header__inner .lr .right nav ul li a[href*=business]::after {
  content: "BUSINESS";
}
.header__inner .lr .right nav ul li a[href*=products]::after {
  content: "PRODUCTS";
}
.header__inner .lr .right nav ul li a[href*=works]::after {
  content: "WORKS";
}
.header__inner .lr .right nav ul li a[href*=company]::after {
  content: "COMPANY";
}
.header__inner .lr .right nav ul li a[href*=recruit]::after {
  content: "RECRUIT";
}
.header__inner .lr .right nav ul li:not(:last-child) {
  margin-right: 40px;
}
.header__inner .lr .right .tel a {
  width: 220px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.header__inner .lr .right .tel a .image {
  display: block;
  width: 100%;
  height: 100%;
}
.header__inner .lr .right .tel a .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.header__inner .lr .right .tel a .lower {
  margin-top: 2px;
  font-size: 1.2rem;
  line-height: 1.8;
  font-weight: 600;
  text-align: center;
  color: #000;
  display: block;
}

@media screen and (max-width: 768px) {
  .header {
    height: 48px;
  }
  .header__inner {
    height: 100%;
    padding-left: 12px;
  }
  .header__inner .lr {
    height: 100%;
  }
  .header__inner .lr .left {
    display: flex;
    align-items: center;
    height: 100%;
  }
  .header__inner .lr .left .logo {
    width: 64%;
    transform: translateY(4px);
  }
  .header__inner .lr .right {
    display: flex;
    height: 100%;
    gap: 0px;
  }
  .header__inner .lr .right nav {
    opacity: 0;
    visibility: hidden;
    position: fixed;
    top: 48px;
    left: 0;
    width: 100%;
    height: auto;
    background-color: #089C7E;
    transition-duration: 0.5s;
  }
  .header__inner .lr .right nav.active {
    opacity: 1;
    visibility: visible;
    transition-duration: 0.5s;
  }
  .header__inner .lr .right nav.active ul li a span {
    opacity: 1;
  }
  .header__inner .lr .right nav.active ul li a:after {
    opacity: 0.5;
    transform: translateY(-50%);
    transition-duration: 0.5s;
  }
  .header__inner .lr .right nav.active ul li:nth-of-type(1) a span {
    transition-delay: 0.1s;
  }
  .header__inner .lr .right nav.active ul li:nth-of-type(1) a:after {
    transition-delay: 0.1s;
  }
  .header__inner .lr .right nav.active ul li:nth-of-type(2) a span {
    transition-delay: 0.25s;
  }
  .header__inner .lr .right nav.active ul li:nth-of-type(2) a:after {
    transition-delay: 0.25s;
  }
  .header__inner .lr .right nav.active ul li:nth-of-type(3) a span {
    transition-delay: 0.5s;
  }
  .header__inner .lr .right nav.active ul li:nth-of-type(3) a:after {
    transition-delay: 0.5s;
  }
  .header__inner .lr .right nav.active ul li:nth-of-type(4) a span {
    transition-delay: 0.75s;
  }
  .header__inner .lr .right nav.active ul li:nth-of-type(4) a:after {
    transition-delay: 0.75s;
  }
  .header__inner .lr .right nav.active ul li:nth-of-type(5) a span {
    transition-delay: 1s;
  }
  .header__inner .lr .right nav.active ul li:nth-of-type(5) a:after {
    transition-delay: 1s;
  }
  .header__inner .lr .right nav ul {
    display: flex;
    justify-content: left;
    flex-direction: column;
  }
  .header__inner .lr .right nav ul li {
    font-size: 1.4rem;
    text-align: left;
  }
  .header__inner .lr .right nav ul li a {
    position: relative;
    padding: 12px 8px;
    display: flex;
    align-items: center;
    border-bottom: solid 1px #fff;
    color: #fff;
  }
  .header__inner .lr .right nav ul li a span {
    opacity: 0;
    transition-duration: 0.5s;
  }
  .header__inner .lr .right nav ul li a:after {
    position: absolute;
    right: 0;
    top: 50%;
    font-size: 1.9rem;
    color: #fff;
    opacity: 0;
    transform: translateY(-50%) translateX(50%);
  }
  .header__inner .lr .right nav ul li:last-of-type a {
    border-bottom: none;
  }
  .header__inner .lr .right nav ul li:not(:last-child) {
    margin-right: 0px;
  }
  .header__inner .lr .right .tel {
    position: absolute;
    right: 48px;
    width: 48px;
    height: 48px;
  }
  .header__inner .lr .right .tel a {
    width: 48px;
    height: 48px;
  }
  .header__inner .lr .right .tel a .image {
    width: 100%;
    height: 100%;
  }
  .header__inner .lr .right .tel a .image img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .header__inner .lr .right .tel a .lower {
    display: none;
  }
  .header__inner .lr .right .contact {
    position: absolute;
    right: 48px;
    width: 48px;
    height: 48px;
  }
  .header__inner .lr .right .ham {
    position: absolute;
    right: 0;
    top: 0;
    display: block;
    width: 48px;
    height: 48px;
    background-color: #eaf5f2;
  }
  .header__inner .lr .right .ham span {
    position: absolute;
    left: 25%;
    display: block;
    width: 50%;
    height: 2px;
    background-color: #089C7E;
  }
  .header__inner .lr .right .ham span:nth-of-type(1) {
    top: 35%;
  }
  .header__inner .lr .right .ham span:nth-of-type(2) {
    top: 50%;
  }
  .header__inner .lr .right .ham span:nth-of-type(3) {
    top: 65%;
  }
  .header__inner .lr .right .ham.cross span:nth-of-type(1) {
    transform: rotate(45deg);
    top: 50%;
  }
  .header__inner .lr .right .ham.cross span:nth-of-type(2) {
    display: none;
  }
  .header__inner .lr .right .ham.cross span:nth-of-type(3) {
    transform: rotate(-45deg);
    top: 50%;
  }
}/*# sourceMappingURL=header.css.map */