:root {
  --inner-scale: 1;
  --vw-base: calc(520 / var(--inner-scale));
  --inner: 410;
  --inner-500: 500;
}
@media screen and (max-width: 999px) {
  :root {
    --inner-scale: calc(0.9 / (410 / 520));
  }
}
@media screen and (max-width: 767px) {
  :root {
    --vw-base: calc(520 * 0.3);
    --inner-scale: 1;
  }
}

/*------------------------------
footer
------------------------------*/
footer {
  background: #4c3456;
  padding: min( 25 * 100vw / var(--vw-base) , 25/var(--vw-base) * 1440px ) 0 min( 60 * 100vw / var(--vw-base) , 60/var(--vw-base) * 1440px );
  color: #fff;
}
@media (max-width: 767px) {
  footer {
    padding: calc(25 / var(--inner) * 100%) 0 calc(60 / var(--inner) * 100%);
  }
}

.footer__wrapper {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .footer__wrapper {
    display: block;
  }
}

.footer__info {
  width: 50%;
  padding-left: 2%;
}
@media (max-width: 767px) {
  .footer__info {
    width: 100%;
  }
}

.footer__address {
  font-size: min( 5 * 100vw / var(--vw-base) , 5/var(--vw-base) * 1440px );
  font-weight: 500;
  line-height: 2;
  margin-top: 4em;
}
@media (max-width: 767px) {
  .footer__address {
    margin-top: 2em;
  }
}

.map-link {
  display: inline-block;
  background: #fff;
  line-height: 1;
  font-size: min( 5 * 100vw / var(--vw-base) , 5/var(--vw-base) * 1440px );
  padding: 0.3em 1.3em;
  border-radius: 0.8em;
  color: #654d9d;
}

.footer__logo {
  font-size: min( 4.5 * 100vw / var(--vw-base) , 4.5/var(--vw-base) * 1440px );
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.1em;
}
.footer__logo img {
  width: min( 95 * 100vw / var(--vw-base) , 95/var(--vw-base) * 1440px );
}

@media (max-width: 767px) {
  .footer__nav {
    padding-right: 0;
    margin-top: 5%;
  }
}

.footer__menu {
  display: flex;
}
.footer__menu li:nth-child(n+2) {
  margin-left: min( 15 * 100vw / var(--vw-base) , 15/var(--vw-base) * 1440px );
}
.footer__menu li:has(.footer-sub) {
  position: relative;
}
.footer__menu li a {
  display: inline-block;
  font-size: min( 5 * 100vw / var(--vw-base) , 5/var(--vw-base) * 1440px );
  font-weight: 400;
  line-height: 3.8;
}
@media (hover: hover) {
  .footer__menu li:hover .footer-sub {
    opacity: 1;
    pointer-events: auto;
  }
}
@media (max-width: 767px) {
  .footer__menu {
    display: block;
  }
  .footer__menu li:nth-child(n+2) {
    margin-left: 0;
  }
}

.footer__group {
  font-size: min( 5 * 100vw / var(--vw-base) , 5/var(--vw-base) * 1440px );
  font-weight: 500;
  line-height: 2;
  margin-top: 2em;
}

.footer-sub[class][class] {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, -1px);
  width: 160%;
  max-width: unset;
  background: rgba(51, 51, 51, 0.8);
  opacity: 0;
  pointer-events: none;
  padding: 15%;
}
.footer-sub[class][class] a {
  line-height: 3;
}
@media (max-width: 767px) {
  .footer-sub[class][class] {
    width: 100%;
    position: relative;
    top: unset;
    left: unset;
    transform: unset;
    background: transparent;
    opacity: 1;
    padding: 0;
    pointer-events: auto;
    margin-top: -3%;
  }
  .footer-sub[class][class] a {
    line-height: 2.5;
  }
}
/*# sourceMappingURL=footer.css.map */