.frame {
  position: fixed;
  top: 3rem;
  left: 0;
  width: calc(100% - 3rem);
  height: calc(100% - 6rem);
  z-index: -10;
  border: solid #000000;
  border-width: 0 1px 1px 0;
  pointer-events: none;
}
.frame.is-open {
  z-index: 2000;
  height: calc(100% - 6rem) !important;
}
.frame__top {
  display: flex;
}
.frame__top::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #000000;
}
.frame__title {
  line-height: 0;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  transform: translateY(-50%);
  margin: 0 2.5em;
  flex-shrink: 0;
  max-width: 70%;
  font-size: 1.2rem;
}
.frame__title li {
  margin-right: 1.5em;
}
.frame__title li img {
  max-height: 1em;
}
@media screen and (max-width: 999px) {
  .frame__title {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 600px) {
  .frame {
    top: 2rem;
    left: 0;
    width: calc(100% - 1rem);
    height: calc(100% - 3rem);
  }
  .frame.is-open {
    height: calc(100% - 3rem) !important;
  }
  .frame__title {
    font-size: 1.5vw;
    margin: 0 2.5vw;
  }
}

.contBg {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: url(../../images/main/tz/bg.png) top center repeat;
  z-index: -100;
}
