@charset "UTF-8";


footer p, li ,th ,td, a {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1rem;
  line-height: 1.8;
  color: #404040;
}

footer {
  position: relative;
  padding: 3rem 0 .5rem;
  background-color: #faecb6;
}

footer .footer_main {
  position: relative;
  padding-top: 3rem;
}

footer h1 {
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-size: 3rem;
  text-align: center;
}

footer .footer_logo img {
  height: 60px;
  width: auto;
  padding-bottom: 1rem;
}

footer .address {
  margin-bottom: 1rem;
}

footer .fa-envelope,
footer .fa-phone {
  background-color: #952223;
  border-radius: 50%;
  padding: .5rem;
  color: #fff;
  margin-right: .5rem;
}

footer .tel,
footer .mail {
  display: flex;
  align-items: center;
  margin-bottom: .5rem;
}

/* SNS box */
footer .sns_box {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border-radius: 1rem;
  margin-top: 2rem;
  padding: 1.5rem 2rem 1rem 2rem;
}
footer .sns_box p {
  margin-bottom: 0;
  padding-right: 2rem;
}
footer .sns_box_inner a {
  font-size: 2rem;
  margin-right: .8rem;
}

/* コピーライト */
footer .copyright {
  padding-top: 3rem;
  font-size: .8rem;
  text-align: center;
}

/* back to top ボタン */
footer .back_to_top {
  position: absolute;
  right: .5rem;
  bottom: .5rem;
  width: 8rem;
  height: auto;
}
footer .back_to_top img {
  transition-duration: 0.5s;
}
footer .back_to_top:hover img {
  transform: scale(1.1);
  transition-duration: 0.5s;
}



/* タブレット（pro横向き以外） */
/* タブレット縦 */
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  /* SNS box */
  footer .sns_box {
    margin-top: 2rem;
    padding: 1rem .2rem 1rem 1rem;
  }
  footer .sns_box p {
    padding-right: 1.2rem;
  }
  footer .sns_box_inner a {
    font-size: 1.8rem;
    margin-right: .8rem;
  }
}

/* スマートフォン */
@media (max-width: 767px) {
  /* ロゴ */
  footer .footer_logo img {
    height: 50px;
  }
  footer h1 {
    font-size: clamp(1.5rem, 7vw, 2.6rem);
    text-align: center;
  }
  .footer_company {
    text-align: center;
  }
  footer .tel,
  footer .mail {
    justify-content: center;
    margin-bottom: .5rem;
  }
  .footer_sitemenu {
    padding-top: 1.5rem;
  }
  .footer_sitemenu .row {
    width: 90%;
    margin: 0 auto;
  }
  .footer_sitemenu .row > div:nth-of-type(1),
  .footer_sitemenu .row > div:nth-of-type(2) {
    padding: 0;
  }
  /* back to top ボタン */
  footer .back_to_top {
    position: absolute;
    right: .5rem;
    bottom: 2.5rem;
    width: 5rem;
    height: auto;
  }
}