:root {
  --primary-color: #61402A;
}

.header-nav__container {
  padding: 15px;
}
.header-nav__wrap {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 15px;
  background-color: #EEE6D6;
  font-size: 18px;
  font-weight: 700;
  padding: 14px 20px;
  border-radius: 10px;
  font-family: "noto serif";
  color: #61402A;
}
.header-nav__wrap::before {
  content: "";
  display: block;
  background: #fff url("../img/ico-arrow--down.svg") no-repeat center 13px;
  background-size: 15px 11px;
  width: 33px;
  height: 33px;
  transform: rotate(90deg);
  border-radius: 50%;
}

.main__container {
  padding: 0 15px 150px 15px;
}
.main__wrap {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.main__logo-img {
  max-width: 170px;
  width: 100%;
  margin-top: 40px;
}

.sns__container {
  max-width: 267px;
  width: 100%;
  border-radius: 10px;
  background-color: var(--primary-color);
  padding: 16px 13px;
  margin-top: 23px;
}
.sns__wrap {
  background-color: white;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.sns__name {
  font-size: 19px;
  font-family: "noto sans";
  font-weight: 700;
  margin-top: 15px;
}
.sns__qr {
  display: block;
  width: calc(100% - 30px);
  margin-top: 10px;
  margin-bottom: 8px;
}
.sns__desc {
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  line-height: 120%;
  margin-top: 40px;
}
.sns__bottom-btn {
  max-width: 267px;
  width: 100%;
  padding: 16px 0;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  border: 1px solid #BDBDBD;
  color: #424242;
  border-radius: 6px;
  margin-top: 40px;
}

.footer-container {
  background-color: #EEE6D6;
}
.footer-container .footer-wrap {
  padding: 30px 15px;
  max-width: 1277px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}
.footer-container .footer-wrap__img {
  width: 119px;
}
.footer-container .footer-wrap__txt {
  font-size: 13px;
  font-weight: 700;
  color: #9E7E68;
  margin-top: 15px;
}

@media (max-width: 768px) {
  .header-nav__wrap {
    padding: 15px 10px;
    font-size: 16px;
    gap: 10px;
  }
  .header-nav__wrap::before {
    background: #fff url(../img/ico-arrow--down.svg) no-repeat center 11px;
    background-size: 15px 11px;
    width: 30px;
    height: 30px;
  }
  .main__container {
    padding: 0 15px 130px 15px;
  }
  .main__logo-img {
    max-width: 150px;
    margin-top: 24px;
  }
}/*# sourceMappingURL=messenger.css.map */