@charset "utf-8";

header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  overflow: hidden;
  transition: height 0.5s, background-color 0.5s, opacity 0.5s 0.5s;
}
header.display {
  opacity: 1;
  height: 110px;
  transition: height 0.5s, background-color 0.5s, opacity 0.5s 0.5s;
}
header.hidden {
  opacity: 0;
  height: 0;
  transition: height 0.5s 0.5s, background-color 0.5s, opacity 0.5s;
}
header h1 {
  height: 100%;
}
header h1 a {
  display: flex;
  justify-content: start;
  align-items: center;
  width: 280px;
  height: 75px;
  padding-left: 70px;
  opacity: 0;
  position: relative;
  transition: opacity 0.5s;
}
header h1 .logoMark {
  position: absolute;
  top: 40%;
  left: 0;
  transform: translate(0, -50%);
  width: 60px;
  height: 60px;
}
header h1 .salonName {
  width: 210px;
  height: 50px;
  object-fit: cover;
}