@charset "utf-8";

img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

.footer__wrap {
    width: 100%;
    background: #FFE9F1;
    padding: 14px 0 20px;
}
.footer__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.footer__inner--logo {
    width: 195px;
    margin-bottom: 7px;
}
.footer__inner--copy {
    text-align: center;
    color: #6B6B6B;
    font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
    font-size: 12px;
    font-weight: 400;
}

.footer__inner--link {
  display: none; /* PCでは非表示 */
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, bottom 0.3s ease, position 0.3s ease;
}

@media screen and (max-width: 768px) {
  .footer__inner--link {
    display: block;
    background: #fff;
    text-align: center;
    z-index: 999;
  }
  .footer__inner--link.fixed {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
  }
  .footer__inner--link.absolute {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
  }
  .footer__inner--link.show {
    opacity: 1;
    pointer-events: auto;
  }
  .footer__inner--link img {
    max-width: 100%;
    height: auto;
    display: block;
  }
}
