*,::before, ::after {
  box-sizing: border-box;
  background-repeat: no-repeat;
}

footer {
    height: 200px;
    background-color: #a56238;
    color:#fff;
  }
  
  .footer_inner {
    margin: 0 auto;
    height: 100%;
    padding: 22px 0px 0px 20px;
    width: 100%;
    position: relative;
  }
  
  .inner1 {
    width:100%;
    display: flex;
  }
  
  .footer_image_logo{
    height: 100%;
    width: 10%;
  }
  
  .company_name{
    display: flex;
    align-items: end;
    justify-content:center;
    padding-top: 5px;
    text-align: center;
    font-size: 30px;
  }
  
  .inner2 {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 30px;
    margin-top: 10px;
    width: 100%;
  }
  
  .opening_time {
    height: 40px;
    line-height: 40px;
  }
  
  .copy_right {
    text-align: center;
    position: absolute;
    bottom: 3px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
  }
  @media screen and (min-width : 420px) and (max-width : 820px){
  
    .inner1{
      height: 60px;
    }
  
    .footer_image_logo{
      width: 15%;
    }
  
    .company_name{
      font-size: 14px;
    }
  }
  
  @media screen and (max-width : 820px) {
  
    .company_name {
      display: flex;
      align-items: end;
      justify-content:center;
    }
  
    .company_name{
      font-size: 30px;
    }
  }
  
  @media screen and (max-width : 420px) {
  
    .inner1 {
      height: 40px;
    }
  
    .inner2 {
      margin-top: 30px;
    }
    
    .footer_image_logo{
      width: 25%;
    }
  
    .company_name{
      font-size: 20px;
    }
  
    .copy_right {
      margin-top: 35px;
      font-size: 12px
    }
  }