@charset "utf-8";

.c2235 {
  width: fit-content !important;
}
.c2235:hover {
  opacity: 0.8;
}
.c22355 {
  pointer-events: none;
}

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

.footer__top-wrap {
  margin-top: 35px;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 30px;
  max-width: 600px;
  margin-inline: auto;
}
@media screen and (min-width: 1100px) {
  .footer__top-wrap {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1122px;
    margin-inline: auto;
  }
}

.footer__top-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 1px solid #F4812D;
  background: rgba(247, 147, 74, 0.7);
  border-radius: 20px;
  gap: 18px;
  padding: 35px 43px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}

.footer__top-img {
  width: 64px;
  height: auto;
  margin-inline: auto;
}
.footer__top-link {
  width: 100%;
  max-width: 267px;
  border: 1px solid #FFFFFF;
  border-radius: 5px;
  padding: 3px 10px 5px;
}

.footer__top-mail {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 28px 40px 28px 20px;
  position: relative;
  border: 1px solid #F4812D;
  background: rgba(247, 147, 74, 0.7);
  border-radius: 20px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
@media screen and (min-width: 768px) {
  .footer__top-mail {
    padding: 38px 45px;
    gap: 22px;
  } 
}
.footer__top-mail::before {
  content: "";
  background: url('../images/icon-mail-circle.svg') center / contain no-repeat;
  width: 34px;
  height: 34px;
}
@media screen and (min-width: 768px) {
 .footer__top-mail::before {
    width: 64px;
  height: 64px;
  } 
}
.footer__top-mail::after {
  content: "";
  position: absolute;
  background: url('../images/button-arrow-white.svg') center / contain no-repeat;
  width: 18px;
  height: 15px;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
}
@media screen and (min-width: 768px) {
 .footer__top-mail::after {
     width: 23px;
  height: 18px;
     right: 45px;
  } 
}
.footer__top-mail:hover {
  opacity: 0.7;
}

.footer__bottom-wrap {
  position: relative;
  z-index: -1;
}

.footer__bottom {
  max-width: calc(977px + 52px + 43px);
  margin-inline: auto;
  padding: 60px 20px;
  display: flex;
  flex-direction: column;
  gap: 116px;
  justify-content: space-between;
  align-items: center;
  z-index: 5;
  position: relative;
}
@media screen and (min-width: 768px) {
  .footer__bottom {
    padding: 134px 52px 160px 33px;
    flex-direction: row;
    align-items: start;
  }
}
.footer-bototm__img {
  object-fit: cover;
}

.footer__sns {
  display: flex;
  flex-direction: column;
    gap: 20px;
  margin-top: 40px;
}
.footer__sns-item {
  display: flex;
  align-items: center;
  gap: 15px;
}
.footer__sns-item::before {
  content: "";
  width: 1px;
  height: 25px;
  background: #655542;
}
.footer__sns a:hover {
  opacity: 0.7;
}

.footer__bottom-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
 gap: 35px 26px;
}

.footer__bottom-link {
  font-size: 15px;
  letter-spacing: 0;
  font-weight: 500;
  line-height: 1;
}
.footer__bottom-link p {
  width: fit-content;
  color: #655542;
  position: relative;
  display: inline-block;
}
.footer__bottom-link p::after {
  background-color: #655542;
  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__bottom-link-sub {
  margin-top: 19px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(101, 85, 66, 0.8) !important;
}
.footer__bottom-link-sub::before {
  content: "";
  width: 10px;
  height: 1px;
  background: rgba(101, 85, 66, 0.8);
}
.footer__bottom-link-sub + .footer__bottom-link-sub {
  margin-top: 12px;
}
.footer__bottom-link-sub:hover {
  opacity: 0.7;
}

.footer__bottom-logo {
  aspect-ratio: 156 / 175;
  max-width: 156px;
  height: auto;
}
.footer__bottom-logo:hover {
  opacity: 0.7;
}

.footer__copyright {
  padding: 0 0 19px;
  font-size: 11px;
  font-weight: 500;
  line-height: calc(24 / 11);
  letter-spacing: 0.1em;
  text-align: center;
  position: relative;
}