@charset "UTF-8";

/*--フッターロゴ追加--*/
footer .logo{
  position: relative;
}
footer .logo:before{
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  aspect-ratio: 17 / 3;
  width: 150px;
  height: auto;
  transform: translate(100%, 0);
  display: block;
  background-image:url(/common/upload_data/hareruya-ashimomi-etccom/image/20241114174158.jpg);
  background-repeat:no-repeat;
  background-position: center center;
  background-size:cover;
}
@media screen and (max-width: 600px) {
    footer .logo {
        transform: translate(-75px, 0);
    }
}
@media screen and (max-width: 400px) {
    footer .logo {
        transform: translate(-60px, 0);
    }
    footer .logo:before{
        width: 120px;
    }
}