footer{
  width: 100%;
  padding-top: calc(var(--section-margin) / 2);
  background: var(--brand-color);
}

footer h2.title{
  color: #FFF;
}

/* お問い合わせボタン */
footer ul.contact_list {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 80px;
}

footer ul.contact_list li {
  width: 300px;
}

footer ul.contact_list li a {
  display: block;
  width: 100%;
  padding: 25px 0;
  background: #FFF;
  color: var(--brand-color);
  text-align: center;
  font-size: var(--font-l);
  font-weight: 700;
  transition: all 0.3s;
  position: relative;
}

footer ul.contact_list li a:hover {
  opacity: 1;
  background: var(--brand-color);
  color: #FFF;
  outline: 2px solid #FFF;
  outline-offset: -2px;
}

/* 会社情報とマップ */
footer .box_wrap {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 4%;
}

footer .box_wrap .box_01 {
  width: 40%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

footer .box_wrap .box_01 h3.title {
  color: #FFF;
  font-size: var(--font-l);
  margin-bottom: 20px;
}

footer .box_wrap .box_01 p{
  color: #FFF;
  font-size: var(--font-m);
  margin-bottom: 20px;
}

footer .box_wrap .box_02 {
  width: 60%;
}

footer .box_wrap .box_02 iframe {
  width: 100%;
  height: 400px;
  border-radius: 10px;
}

.copyright{
  text-align: center;
  color: #FFF;
  font-size: 1.2rem;
  margin-top:60px;
  padding:20px;
}

@media screen and (max-width: 750px) {
  footer ul.contact_list {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 60px;
  }

  footer ul.contact_list li {
    width: 90%;
  }

  footer ul.contact_list li a {
    padding: 20px 0;
  }

  footer .box_wrap {
    flex-direction: column;
    gap: 30px;
  }

  footer .box_wrap .box_01,
  footer .box_wrap .box_02 {
    width: 100%;
  }

  footer .box_wrap .box_02 iframe {
    height: 300px;
  }
}

