.site-footer {
  width: 100%;
  padding: 0;
  background: #fff;
  color: #111111;
  border-top: 1px solid #c2bdb5;
}

.site-footer a {
  color: inherit;
  text-decoration: none;
}

.site-footer__main {
  width: 100%;
  background: #fff;
  padding: 42px 40px 46px;
}

.site-footer__inner {
  width: min(100%, 1415px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(220px, 1fr) minmax(180px, 0.9fr) minmax(260px, 0.95fr);
  -moz-column-gap: 60px;
       column-gap: 60px;
  align-items: start;
}

.site-footer__heading {
  position: relative;
  margin: 0 0 22px;
  padding: 0 0 11px;
  font-size: 17px;
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.site-footer__heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 22px;
  height: 2px;
  background: #c88250;
}

.site-footer__nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.site-footer__link,
.site-footer__product-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: opacity 0.2s ease;
}

.site-footer__link:hover,
.site-footer__product-link:hover,
.site-footer__instagram:hover {
  opacity: 0.6;
}

.site-footer__product-link {
  padding-left: 0;
}

.site-footer__instagram {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: Arial, "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.045em;
  transition: opacity 0.2s ease;
}

.site-footer__instagram svg {
  display: block;
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.site-footer__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 0;
}

.site-footer__brand-logo {
  display: block;
  width: min(100%, 260px);
  margin: 0 auto 18px;
}

.site-footer__brand-logo img {
  display: block;
  width: 100%;
  height: auto;
}

.site-footer__support {
  width: min(100%, 290px);
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  background: #c88250;
  color: #fff !important;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.site-footer__support > span:first-child {
  grid-column: 2;
  text-align: center;
}

.site-footer__support-arrow {
  grid-column: 3;
  justify-self: end;
  font-family: Arial, sans-serif;
  font-size: 23px;
  font-weight: 300;
  line-height: 1;
}

.site-footer__support:hover {
  opacity: 0.86;
}

.site-footer__bottom {
  width: 100%;
  padding: 0;
  background: #fff;
  border-top: 1px solid #c2bdb5;
  color: #111111;
}

.site-footer__bottom-inner {
  width: min(100% - 80px, 1415px);
  min-height: 76px;
  margin: 0 auto;
  padding: 10px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.site-footer__bottom-left {
  display: flex;
  align-items: center;
  gap: 28px;
  min-width: 0;
}

.site-footer__company-logo {
  display: block;
  width: 40px;
  flex: 0 0 40px;
}

.site-footer__company-logo img {
  display: block;
  width: 100%;
  height: auto;
}

.site-footer__legal {
  display: flex;
  align-items: center;
  min-width: 0;
}

.site-footer__legal a {
  display: flex;
  align-items: center;
  min-height: 20px;
  padding: 0 24px;
  border-left: 1px solid #ddcfc5;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: 0.025em;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}

.site-footer__legal a:first-child {
  border-left: 0;
  padding-left: 0;
}

.site-footer__legal a:hover {
  opacity: 0.6;
}

.site-footer__copyright {
  margin: 0;
  flex: 0 0 auto;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  line-height: 1.4;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

@media (max-width: 1180px) {
  .site-footer__main {
    padding: 42px 32px 46px;
  }
  .site-footer__link,
  .site-footer__product-link {
    font-size: 13px;
    line-height: 1.5;
    font-weight: 600;
  }
  .site-footer__instagram {
    font-size: 13px;
  }
  .site-footer__inner {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 42px 34px;
  }
  .site-footer__brand {
    grid-column: 1/-1;
    padding-top: 6px;
  }
  .site-footer__brand-logo {
    width: min(100%, 250px);
  }
  .site-footer__support {
    width: min(100%, 285px);
    min-height: 46px;
    font-size: 14px;
  }
  .site-footer__bottom-inner {
    width: calc(100% - 64px);
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 0;
  }
  .site-footer__bottom-left {
    width: 100%;
  }
  .site-footer__copyright {
    align-self: flex-end;
  }
}

@media (max-width: 767px) {
  .site-footer__main {
    padding: 38px 24px 40px;
  }
  .site-footer__inner {
    grid-template-columns: 1fr 1fr;
    -moz-column-gap: 28px;
         column-gap: 28px;
    row-gap: 38px;
  }
  .site-footer__heading {
    margin-bottom: 19px;
    font-size: 15px;
  }
  .site-footer__nav {
    gap: 12px;
  }
  .site-footer__link,
  .site-footer__product-link {
    font-size: 13px;
    line-height: 1.55;
    font-weight: 600;
  }
  .site-footer__product-link {
    padding-left: 0;
  }
  .site-footer__sns {
    grid-column: 1/-1;
  }
  .site-footer__instagram {
    font-size: 13px;
  }
  .site-footer__brand {
    grid-column: 1/-1;
    width: 100%;
  }
  .site-footer__brand-logo {
    width: min(70%, 240px);
    margin-bottom: 20px;
  }
  .site-footer__support {
    width: 100%;
    max-width: 360px;
    min-height: 52px;
    padding: 0 22px;
    font-size: 14px;
  }
  .site-footer__support-arrow {
    font-size: 23px;
  }
  .site-footer__bottom-inner {
    width: calc(100% - 48px);
    padding: 22px 0;
    gap: 18px;
  }
  .site-footer__bottom-left {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .site-footer__company-logo {
    width: 38px;
    flex-basis: 38px;
  }
  .site-footer__legal {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .site-footer__legal a {
    min-height: auto;
    padding: 7px 12px 7px 0;
    border-left: 0;
    font-size: 11px;
    white-space: normal;
  }
  .site-footer__copyright {
    align-self: flex-start;
    font-size: 10px;
  }
}

@media (max-width: 460px) {
  .site-footer__main {
    padding-left: 20px;
    padding-right: 20px;
  }
  .site-footer__inner {
    grid-template-columns: 1fr;
  }
  .site-footer__sns,
  .site-footer__brand {
    grid-column: auto;
  }
  .site-footer__bottom-inner {
    width: calc(100% - 40px);
  }
  .site-footer__legal {
    grid-template-columns: 1fr;
  }
}

.site-footer,
.site-footer__inner,
.site-footer__bottom-inner {
  min-width: 0;
  max-width: 100%;
}

.site-footer a {
  overflow-wrap: break-word;
  word-break: normal;
}

@media (min-width: 768px) and (max-width: 1180px) {
  .site-footer__main {
    padding: 38px 28px 36px;
  }
  .site-footer__inner {
    width: min(100%, 1080px);
    grid-template-columns: repeat(3, minmax(0, 1fr));
    -moz-column-gap: clamp(28px, 5vw, 56px);
         column-gap: clamp(28px, 5vw, 56px);
    row-gap: 30px;
  }
  .site-footer__brand {
    grid-column: 1/-1;
    width: 100%;
    padding-top: 4px;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 28px;
  }
  .site-footer__brand-logo {
    width: min(100%, 220px);
    margin: 0;
  }
  .site-footer__support {
    width: 270px;
    min-height: 46px;
  }
  .site-footer__bottom-inner {
    width: calc(100% - 56px);
    min-height: 66px;
    padding: 9px 0;
    flex-direction: row;
    align-items: center;
    gap: 20px;
  }
  .site-footer__bottom-left {
    gap: 20px;
  }
  .site-footer__company-logo {
    width: 38px;
    flex-basis: 38px;
  }
  .site-footer__legal a {
    padding: 0 13px;
    font-size: 11px;
  }
  .site-footer__copyright {
    margin-left: auto;
    font-size: 10px;
  }
}

@media (min-width: 768px) and (max-width: 900px) {
  .site-footer__bottom-inner {
    flex-wrap: wrap;
    row-gap: 8px;
  }
  .site-footer__bottom-left {
    width: 100%;
  }
  .site-footer__copyright {
    width: 100%;
    margin-left: 0;
    text-align: right;
  }
}

@media (max-width: 767px) {
  .site-footer__main {
    padding: 34px 20px 34px;
  }
  .site-footer__inner {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    -moz-column-gap: 24px;
         column-gap: 24px;
    row-gap: 32px;
  }
  .site-footer__heading {
    margin-bottom: 17px;
    padding-bottom: 9px;
    font-size: 15px;
  }
  .site-footer__nav {
    gap: 10px;
  }
  .site-footer__link,
  .site-footer__product-link {
    min-height: 24px;
    font-size: 13px;
    line-height: 1.5;
    font-weight: 600;
  }
  .site-footer__sns {
    grid-column: 1/-1;
  }
  .site-footer__instagram {
    min-height: 40px;
    font-size: 13px;
  }
  .site-footer__brand {
    grid-column: 1/-1;
    width: 100%;
    padding-top: 0;
    align-items: center;
  }
  .site-footer__brand-logo {
    width: min(58vw, 205px);
    margin-bottom: 16px;
  }
  .site-footer__support {
    width: min(100%, 330px);
    min-height: 48px;
    font-size: 13px;
  }
  .site-footer__bottom-inner {
    width: calc(100% - 40px);
    min-height: 0;
    padding: 18px 0 calc(18px + env(safe-area-inset-bottom));
    gap: 14px;
    flex-direction: column;
    align-items: flex-start;
  }
  .site-footer__bottom-left {
    width: 100%;
    gap: 14px;
    flex-direction: column;
    align-items: flex-start;
  }
  .site-footer__company-logo {
    width: 36px;
    flex-basis: 36px;
  }
  .site-footer__legal {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 16px;
  }
  .site-footer__legal a,
  .site-footer__legal a:first-child {
    min-height: 34px;
    padding: 7px 0;
    border-left: 0;
    border-bottom: 1px solid rgba(221, 207, 197, 0.58);
    font-size: 10.5px;
    line-height: 1.45;
    white-space: normal;
  }
  .site-footer__copyright {
    align-self: flex-start;
    font-size: 9.5px;
    white-space: normal;
  }
}

@media (max-width: 520px) {
  .site-footer__inner {
    grid-template-columns: minmax(0, 1fr);
    row-gap: 30px;
  }
  .site-footer__sns,
  .site-footer__brand {
    grid-column: 1;
  }
  .site-footer__brand {
    padding-top: 2px;
  }
}

@media (max-width: 380px) {
  .site-footer__main {
    padding-left: 16px;
    padding-right: 16px;
  }
  .site-footer__bottom-inner {
    width: calc(100% - 32px);
  }
}

@media (max-width: 340px) {
  .site-footer__legal {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 767px) {
  .site-footer__nav a,
  .site-footer__legal a,
  .site-footer__legal a:first-child {
    display: flex;
    min-height: 44px;
    align-items: center;
  }
  .site-footer__instagram {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
  }
  .site-footer__company-logo {
    display: flex;
    min-height: 44px;
    align-items: center;
  }
  .site-footer__nav {
    gap: 0;
  }
  .site-footer__legal {
    row-gap: 0;
  }
}

.site-footer__support {
  background: transparent !important;
  color: #111111 !important;
  border: 1.5px solid #111111;
  transition: background-color 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}

.site-footer__support:hover {
  opacity: 1;
  background: #c39d4a !important;
  border-color: #c39d4a;
  color: #fff !important;
}

.site-footer__heading::after {
  background: #c39d4a;
}

.site-footer__link,
.site-footer__product-link {
  font-weight: 500;
}

.site-footer__instagram {
  font-weight: 500;
}

.site-footer {
  border-top-color: #d2cec8;
}

.site-footer__bottom {
  border-top-color: #d2cec8;
}

.site-footer__legal a {
  border-left-color: #d2cec8;
}