@charset "utf-8";
.footer-menu__title {
  display: block;
  font-weight: 700;
}
.footer-menu__content {
  margin: 20px 0 0;
}
.footer-menu__part {
  font-size: 0.8rem;
  max-width: 495px;
}
.footer-menu__list {
  padding: 0;
  margin: 0;
  list-style: none;
}
.footer-menu__item {
  margin-bottom: 7px;
}
.footer-menu__item > a {
  color: inherit;
}
.footer-menu {
  width: 100%;
}
@media (min-width: 500px) {
  .footer-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}
@media (max-width: 499px) {
  .footer-menu__title {
    cursor: pointer;
  }
  .footer-menu__title::before {
    content: '⌄';
    float: right;
    -webkit-transition: -webkit-transform 0.25s;
    transition: transform 0.25s;
    transition:
      transform 0.25s,
      -webkit-transform 0.25s;
    display: block;
  }
  :focus > .footer-menu__title::before {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    display: block;
  }
  .footer-menu__part {
    font-weight: 600;
    line-height: 1.88;
    font-size: 17px;
  }
  .footer-menu__part:last-child {
    margin-bottom: 0;
  }
  .footer-menu__content {
    max-height: 0;
    -webkit-transition: max-height 0.25s;
    transition: max-height 0.25s;
    overflow: hidden;
  }
  .footer-menu__content:hover,
  :focus > .footer-menu__content,
  \:focus-within > .footer-menu__content {
    max-height: var(--full-height, 100vh);
  }
}
