.footer {
  padding: 3.2rem 8.6rem 2rem 10.5rem;
  background-color: #d7f7fc;
}

.footer__inner {
  display: grid;
  grid-template-columns: 31rem minmax(45rem, 1fr);
  align-items: start;
  gap: 8.8rem;
  max-width: 108rem;
  margin: 0 auto 2.4rem;
}

.footer__info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer__brand {
  display: block;
  width: 15.7rem;
  margin: 0 auto 1.2rem;
}

.footer__brand img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.footer__address {
  margin-bottom: 1.5rem;
  color: #333333;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
  white-space: nowrap;
}

.footer__tel {
  display: block;
  margin-bottom: 1.8rem;
  color: #333333;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 2.7rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
}

.footer__contact-list {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.7rem;
}

.footer__contact-link {
  display: inline-flex;
  align-items: center;
  min-height: 3.2rem;
  color: #333333;
  font-size: 2.3rem;
  font-weight: 500;
  line-height: 1.2;
  gap: 1rem;
}

.footer__contact-icon,
.footer__pin-icon {
  flex: 0 0 2.8rem;
  width: 2.8rem;
  height: 2.8rem;
}

.footer__contact-icon img {
  display: block;
  width: 2.8rem;
  height: 2.8rem;
  object-fit: contain;
}

.footer__pin-icon {
  position: relative;
  display: inline-block;
}

.footer__pin-icon::before {
  position: absolute;
  top: 0.1rem;
  left: 0.3rem;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50% 50% 50% 0;
  background-color: #3f3f3f;
  content: "";
  transform: rotate(-45deg);
}

.footer__pin-icon::after {
  position: absolute;
  top: 0.8rem;
  left: 1rem;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background-color: #ffffff;
  content: "";
}

.footer__button-list {
  display: grid;
  width: 29.6rem;
  gap: 0.8rem;
}

.footer__pill {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  min-height: 5.6rem;
  padding: 0.7rem 1.6rem 0.9rem;
  border-radius: 1.5rem;
  background-color: #f9e9ed;
  color: #333333;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 1.9rem;
  font-weight: 500;
  line-height: 1.05;
  text-align: center;
}

.footer__pill--download {
  background-color: #ffffff;
}

.footer__pill span {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 1.2rem;
  line-height: 1;
}

.footer__nav {
  display: grid;
  grid-template-columns: 10rem 26rem minmax(22rem, 32rem);
  gap: 5rem;
  padding-top: 7.3rem;
}

.footer__home {
  display: block;
}

.footer__main-list {
  display: grid;
  gap: 4.1rem;
}

.footer__main-link {
  display: inline-block;
  color: #00afcc;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1.25;
}

.footer__disclosure {
  width: 100%;
}

.footer__disclosure-title {
  margin-bottom: 0.8rem;
  padding-bottom: 0.7rem;
  border-bottom: 0.1rem solid #00afcc;
  color: #00afcc;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1.25;
}

.footer__disclosure-list {
  display: grid;
  gap: 1.1rem;
  color: #00afcc;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.35;
}

.copyright {
  display: block;
  color: #333333;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  text-align: center;
}

@media screen and (max-width: 699.98px) {
  .footer {
    padding: 4.8rem 4rem 2rem;
  }

  .footer__inner {
    display: flex;
    flex-direction: column;
    margin-bottom: 2.4rem;
    gap:2.8rem;
  }

  .footer__info {
    display: contents;
  }

  .footer__brand {
    order: 1;
    margin: 0 auto 1.2rem;
    width: 13.2rem;
  }

  .footer__address {
    order: 2;
    font-size: 1.4rem;
    white-space: normal;
    text-align: left;
  }

  .footer__tel {
    order: 3;
    font-size: 2.3rem;
  }

  .footer__contact-list {
    order: 4;
    align-self: flex-start;
    margin-left: 0;
  }

  .footer__contact-link {
    font-size: 2.1rem;
  }

  .footer__button-list {
    order: 8;
    width: 100%;
    max-width: 29.6rem;
    margin-top: 1.7rem;
  }

  .footer__nav {
    display: contents;
    padding-top: 0;
  }

  .footer__home {
    order: 5;
    display: grid;
    gap: 0;
    margin: 0 0 -0.6rem;
    text-align: left;
  }

  .footer__main-list {
    order: 6;
    gap: 2.4rem;
    margin-bottom: 2.4rem;
    text-align: left;
  }

  .footer__main-link {
    font-size: 2.3rem;
  }

  .footer__disclosure {
    order: 7;
    max-width: 29.6rem;
    margin: 0;
  }

  .footer__disclosure-title {
    font-size: 2.3rem;
  }
}
