@charset "utf-8";

.footer {
  margin-top: 0 !important;
  position: relative;
}

.footer__top {
  position: absolute !important;
  width: min(calc(1200 / 1366 * 100vw), 1200px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 15;
  aspect-ratio: 1200 / 476;
  display: grid;
  place-items: center;
  border-radius: 10px;
  overflow: hidden;
}

.footer.is-start {
  padding-top: 600px !important;
}
.footer.is-show {
  padding-top: 472px !important;
}
@media screen and (min-width: 768px) {
  .footer.is-show {
    padding-top: 313px !important;
  }
}
.footer__top.is-start {
  top: 0 !important;
}
.footer__top.is-show {
  top: -124px !important;
  height: 45%;
}
@media screen and (min-width: 1100px) {
  .footer__top.is-show {
    top: -324px !important;
    height: auto;
  }
}

.footer__top-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.footer__top-img::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: #3f4d41;
  opacity: 0.8;
  top: 0;
  left: 0;
  pointer-events: none;
}
.footer__top-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer__top-item {
  position: relative;
  z-index: 10;
}
.c2312 {
  width: fit-content;
}

.footer {
  position: relative;
  z-index: 10;
}

.footer__bottom {
  padding-block: 0 170px;
  display: flex;
  gap: 60px;
  justify-content: space-between;
  flex-direction: column-reverse;
}
@media screen and (min-width: 768px) {
  .footer__bottom {
    flex-direction: row;
  }
}

.footer__bottom-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 80px;
}
@media screen and (min-width: 768px) {
  .footer__bottom-links {
    gap: 0 70px;
  }
}

.footer__bottom-link {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
}
.footer__bottom-link p {
  width: fit-content;
  color: #3F4D41;
  position: relative;
  display: inline-block;
}
.footer__bottom-link p::after {
  background-color: #3F4D41;
  bottom: 0px;
  content: "";
  height: 1px;
  left: 0;
  opacity: 0;
  position: absolute;
  transition: all .3s;
  width: 100%;
}
.footer__bottom-link p:hover::after {
  bottom: -4px;
  opacity: 1;
}

.footer__sns {
  border-top: 1px solid rgba(63, 77, 65, 0.2);
}

.footer__copyright {
  padding: 10px 0 60px;
  font-size: 12px;
  line-height: calc(17 / 12);
  letter-spacing: 0.08em;
  color: #3F4D41;
  text-align: center;
  border-top: 1px solid rgba(63, 77, 65, 0.2);
}