@charset "UTF-8";
.footer {
  display: -ms-grid;
  display: grid;
  justify-items: center;
  gap: 1rem;
  background-color: var(--color-base-gray, #f5f5f5);
  padding: 6vw var(--side-spacing, 1.5rem);
  text-align: center;
}

.footer__logo {
  display: block;
}

.footer__logo img {
  width: 11rem;
  height: auto;
}

.footer__social a {
  display: inline-block;
}

.footer__social a svg {
  width: 3rem;
  height: 3rem;
  fill: var(--color-body, #222);
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.footer__social a svg:hover {
  opacity: 0.7;
}

.footer__nav, .footer__subnav {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5rem;
}

.footer__nav li a, .footer__subnav li a {
  display: block;
  padding: 0.5rem 0;
  text-decoration: none;
  color: var(--color-body, #222);
  font-weight: 400;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}

.footer__nav li a:hover, .footer__subnav li a:hover {
  text-decoration: underline;
}

@media (min-width: 768px) {
  .footer__nav, .footer__subnav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 1.5rem;
  }
}

.footer__subnav {
  font-size: 0.875rem;
}

/* *****************************************************************

Stylesheet: ベーススタイル（全て）に適応

******************************************************************/
@media (max-width: 1023px) {
  /******************************************************************

Stylesheet: 1023px以下（タブレット）で適用

******************************************************************/
}

@media (max-width: 639px) {
  /******************************************************************

Stylesheet: 639px以下(スマホ)で適用

******************************************************************/
}
/*# sourceMappingURL=style.css.map */