/* SP Banner */

.footerBanner {
  bottom: 0;
  left: 0;
  position: fixed;
  transition: .3s;
  width: 100%;
  z-index: 100;
}

.footerBannerHidden {
  bottom: -10%;
  transition: .3s;
}

.footerBanner__list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.footerBanner__item a {
  align-items: center;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 67px;
  justify-content: center;
}

.footerBanner__item:first-child a {
  gap: 8px;
}

.footerBanner__item:last-child a {
  gap: 5px;
}

.footerBanner__item.darkItem a {
  background: #353436;
}

.footerBanner__text {
  color: #353436;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 12px;
  line-height: 1.2;
  text-align: center;
}

.footerBanner__text.darkItem {
  color: #fff;
}

#container .footerBanner__icon--phone,
.footerBanner__icon--phone {
  height: auto;
  margin-top: 3px;
  max-width: 14px;
  width: 100%;
}

#container .footerBanner__icon--doc,
.footerBanner__icon--doc {
  height: auto;
  margin-top: 3px;
  max-width: 14px;
  width: 100%;
}

#container .footerBanner__icon--pin,
.footerBanner__icon--pin {
  height: auto;
  margin-top: 3px;
  max-width: 13px;
  width: 100%;
}

#container .footerBanner__icon--tick,
.footerBanner__icon--tick {
  height: auto;
  margin-top: 3px;
  max-width: 21px;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .footerBanner {
    display: none;
  }
}
/* 0610追記 */
#container .footerBanner__icon--pen,
.footerBanner__icon--pen {
  height: auto;
  max-width: 16px;
  width: 100%;
}
/* 0610追記 ここまで*/
