/* ------------------------------
  footer 
------------------------------*/
.site-footer {
  width: 100%;
  background: #141414;
}

/*------------------------------
  footer top
------------------------------*/
.site-footer__top {
  max-width: 960px;
  margin: 0 auto;
  padding: 100px 20px;
}

.site-footer__link-list{
  display: flex;
  justify-content: space-between;
}

.site-footer__link-item{
  width: 32%;
}

.site-footer__link-item a{
  width: 100%;
  display: inline-block;
  text-align: center;
}

.site-footer__link-item a img{
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.site-footer__link-item a span {
  display: block;
  font-size: 1.4rem;
  font-weight: bold;
  color: #FFF;
  padding-top: 10px;
}

@media screen and (max-width: 600px) {
  .site-footer__link-list {
    max-width: 300px;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
  }

  .site-footer__link-item{
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
  }

  .site-footer__link-item:last-of-type {
    margin-bottom: 0;
  }
}

/*------------------------------
  footer mid
------------------------------*/
.site-footer__mid{
  font-family: "Hiragino Mincho ProN", "游明朝", "Yu Mincho", "MS PMincho", serif;
  width: 100%;
  position: relative;
  padding: 150px 0;
  overflow: hidden;
  z-index: 0;
}

.site-footer__mid::before {
  content: "";
  position: absolute;
  top: -10px;
  bottom: -20px;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: -1;

  background-image:
    linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    var(--footer-bg);

  background-size: cover;
  background-position: center;
  filter: blur(10px);
}

.site-footer__mid-inner{
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
}

.site-footer__mid-inner .flex-wrapper{
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}

.site-footer__mid-inner .flex-wrapper .footer-info{
  width: 45%;
}

.footer-info__logo {
  width: 50%;
  max-width: 200px;
  margin: 0 auto;
}

.footer-info__contact{
  width: 100%;
  text-align: center;
  color: #FFF;
  margin: 15px 0 20px;
}

.footer-info__contact a {
  font-size: 2.4rem;
  font-weight: bold;
  color: #FFF;
}

.footer-info__contact a span {
  font-size: 1.8rem;
}

.footer-info__contact p {
  font-size: 1.1rem;
  font-weight: 600;
}

.footer-info__sns-list {
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer-info__sns-list li{
  width: 30px;
  margin: 10px;
}

.site-footer__mid-inner .flex-wrapper .shop-info {
  width: 50%;
}

.shop-data {
  display: flex;
  font-size: 1.4rem;
  color: #FFF;
  text-shadow: #141414 0 0 5px;
  margin: 20px 0;
}

.shop-data dt {
  width: 25%;
  font-weight: bold;
}

.shop-data dd {
  width: 75%;
}

.google-map iframe {
  width: 100%;
  height: 350px;
  border: 0;
  display: block;
  /* filter: grayscale(100%); */
}

@media screen and (max-width: 768px) {
  .site-footer__mid-inner .flex-wrapper {
    flex-direction: column;
  }

  .site-footer__mid-inner .flex-wrapper .footer-info {
    width: 100%;
  }

  .site-footer__mid-inner .flex-wrapper .shop-info {
    width: 100%;
  }
}

/*------------------------------
  footer btm
------------------------------*/
.site-footer__btm {
  max-width: 960px;
  margin: 0 auto;
  padding: 20px 0;
}

.site-footer__nav-list {
  display: flex;
  justify-content: center;
}

.site-footer__nav-item {
  font-weight: bold;
  padding: 0 10px;
  margin: 0 5px;
}

.site-footer__nav-item a {
  font-family: "Hiragino Mincho ProN", "游明朝", "Yu Mincho", "MS PMincho", serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: #FFF;
}

@media screen and (max-width: 768px) {
  .site-footer__nav-list {
    flex-direction: column;
    align-items: center;
  }

  .site-footer__nav-item {
    margin: 10px 0;
  }
}