.honjo-logo{
  background-color: inherit;
  border-bottom:1px solid #666;
  height: 112px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  svg{
    width: 108px;
    height: 24px;
    color: white;
    margin-bottom: 5px;
    transition: .3s all ease-in-out;
    transform-origin: center center;
  }
  g{
    fill: currentColor;
    transition: .3s all ease-in-out;
    transform-origin: center center;
  }

  .honjo-logo__text{
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    margin: 0;
    padding: 0;
    letter-spacing: 4px;
    width: 110px;
    height: 20px;
    white-space: nowrap;
    transition: .3s all ease-in-out;
    transform-origin: center center;
  }

  &.honjo-logo--collpase {
    svg{
      width:64px;
    }
    .honjo-logo__t1{
      transform:scale(.8);
    }
    .honjo-logo__t0{
      opacity: 0;
    }
    .honjo-logo__text {
      opacity: 0;
      width: 0;
      height: 0;
    }
  }
}