/* -------------- footer -------------- */
.footerContentWrapper{
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 80px;
  margin-top: 60px;
  margin-bottom: 70px;
}
.footerContentBlock p{
  display: block;
  color: #fff;
  font-weight: 600;
  font-size: 13px;
  margin-bottom: 12px;
}
.footerContentBlock iframe{
  width: 100%;
  height: 240px;
}
.footerContentBlockImage{
  width: 100%;
  height: 240px;
  background-size: cover;
  background-position: center;
  background-color: #fff;
}
.footerContentBlockImage.deli{
  background-image: url(/images/topimages/20220731/pc/topimage.jpg);
}
.footerContainer.-mode_d .footer p{
  color: #fff;
  margin-bottom: 0;
}
@media screen and (max-width:1024px){
  .footerContentWrapper {
    column-gap: 40px;
  }
}
@media screen and (max-width:768px){
  .footerContentWrapper {
    grid-template-columns: 1fr;
    row-gap: 48px;
  }
  .footerContentBlock iframe,.footerContentBlockImage {
    height: 320px;
  }
}
@media screen and (max-width:524px){
  .footerContentWrapper{
    margin-top: 0;
  }
}
@media screen and (max-width:414px){
  .footerContentBlock iframe,.footerContentBlockImage {
      height: 240px;
  }
}
