@font-face {
  font-family: "NotoSansJP";
  src: url("../font/NotoSansJP.ttf") format("truetype");
}
@font-face {
  font-family: "NotoSansJP Medium";
  src: url("../font/NotoSansJP-Medium.ttf") format("truetype");
}
@font-face {
  font-family: "Roboto Medium";
  src: url("../font/Roboto-Medium.ttf") format("truetype");
}
@font-face {
  font-family: "Roboto Regular";
  src: url("../font/Roboto-Regular.ttf") format("truetype");
}
.header {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  padding: 5.3333333333vw;
  z-index: 2;
}
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__logo {
  display: flex;
  flex-direction: column;
}
.header__logo .logo-en {
  opacity: 0.4;
}
.header__logo .logo-jp {
  color: #333333;
}
.header__tel {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 37.3333333333vw;
  height: 8vw;
  background-color: black;
  color: white;
  border-radius: 4vw;
  text-decoration: none;
}
.header__tel:hover {
  opacity: 0.7;
}
@media screen and (min-width: 768px) {
  .header {
    padding: 50px;
  }
  .header__tel {
    width: 300px;
    height: 60px;
    pointer-events: none;
  }
}