@charset "utf-8";

body.is-checked {
  overflow: hidden;
}

.fixed__btns {
  position: fixed;
  bottom: 0;
  right: 0;
  width: 100px;
  display: flex;
  flex-direction: column;
  z-index: 50;
}
@media screen and (min-width: 768px) {
  .fixed__btns {
    width: 120px;
  }
}
.c2148:hover {
  opacity: 0.8;
}

.header__logo {
  position: fixed;
  top: 20px;
  left: 20px;
  aspect-ratio: 134/51;
  width: 100px;
  height: auto;
  transition: opacity 0.3s;
  z-index: 50;
}
@media screen and (min-width: 768px) {
  .header__logo {
    top: 30px;
    left: 28px;
    width: 127px;
  }
}

.header__logo:hover {
  opacity: 0.8;
}

.header__open {
  position: relative;
  width: 80px;
  height: 49px;
  cursor: pointer;
  background: #E5E5E5;
  position: fixed;
  top: 20px;
  right: 20px;
  border-radius: 5px;
  z-index: 999999997;
  transition: opacity 0.3s;
}
.header__open.is-checked {
  z-index: 1000000000;
}

.header__bar {
  position: absolute;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: auto;
}

.header__open-text {
  position: absolute;
  bottom: 8px;
  left: 52%;
  transform: translateX(-50%);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1;
  color: #363636;
  width: max-content;
}

.header__content {
  width: 100%;
  max-width: 400px;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  padding: 100px 50px 80px;
  background: #fff;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s linear;
  overflow: auto;
  z-index: 999999999;
}
.header__content.is-checked {
  opacity: 1;
  pointer-events: auto;
}

.header__content-menu {
  display: flex;
  flex-direction: column;
}

.header__content-link {
  font-size: 14px;
  padding-block: 17px;
  border-bottom: 1px dotted #EFF0EF;
  text-align: center;
}
.header__content-link div p {
  color: #363636;
}
.header__content-link:hover {
  background: #F8F8F8;
}
