.l-hdr-owner .c-inner{
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px 20px;
}
.l-hdr-owner .c-inner>**:nth-of-type(1){
  margin-right: auto;
}
.l-hdr-owner .c-inner>**:nth-of-type(2),.l-hdr-owner>**:last-of-type{
  margin: 0 0 0 auto;
}

.l-hdr-owner .bland{
  height: clamp(45px, 6.5vw, 65px);
  margin: 5px 0;
}
.l-hdr-owner .bland img{
  width: auto;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.l-hdr-owner .hhp{
  display: none;
}

.border_btn{
    position: relative;
    display: block;
    width: fit-content;
    padding: .75em 2.25em .75em 1.25em;
    /* background: rgba(255,255,255,.5); */
    border: 1px solid #B89535;
    color: #B89535;
    font-weight: 400;
    font-size: clamp(12px,1.4vw,14px);
    letter-spacing: 0.7px;
    line-height: 1;
    text-align: center;
    transition: 0.3s;
}

.border_btn:hover{
  background: #B89535;
  color: #FFF;
}

.border_btn::after{
    position: absolute;
    top: 50%;
    right: 1em;
    transform: translate(-25%, -50%) rotate(45deg);
    width: 6px;
    aspect-ratio: 1;
    border-top: 1px solid #B89535;
    border-right: 1px solid #B89535;
    box-sizing: border-box;
    transition: 0.3s;
    content: "";
}

.border_btn:hover::after{
  border-top: 1px solid #FFF;
    border-right: 1px solid #FFF;
}

@media screen and (max-width: 1080px) {
  .l-hdr-owner .hhp{
    display: block;
  }
  .l-hdr-spgnav {
    min-height: 100dvh;
    background: #000;
  }
  .l-hdr-gnav__page a{
    display: block;
    margin-top: 15px;
    color: #FFF;
    font-size: clamp(10px,1.2vw,12px);
  }
  .l-hdr-spgnav__footer .logo{
    margin-top: 3rem;
  }
}