.footer {
  position: sticky;
  top: 100vh;
  width: 100%;
}

.colophon {
  padding: 70px 0px;
  background-color: var(--color-yellow-brown);
}

.colophon-2 {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 80px;
}

.message {
  width: 300px;
  font-size: .875em;
  color: var(--color-green-black);
  text-align: right;
  line-height: 1.8;
}

.footer-company {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.footer .company-name {
  font-size: 2em;
  white-space: nowrap;
  color: var(--color-green-black);
}

.address {
  display: block;
}

.vertical-align {
  vertical-align: 10%;
}

.zip {
  color: var(--color-green-black);
  padding-bottom: 4px;
}

.address-1,
.phone {
  margin: 6px 0;
  font-size: 1.25em;
  font-weight: 400;
  white-space: nowrap;
  color: var(--color-green-black);
}

.SNS {
  display: flex;
  width: 300px;
  align-items: center;
}

.instagram {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex: 0 0 auto;
}

.instagram-icon {
  position: relative;
  width: 30px;
  aspect-ratio: 1 / 1;
  background-image: url(../img/icon_instagram.svg);
  background-size: cover;
  background-position: 50% 50%;
}

.instagram-icon-white {
  position: relative;
  width: 30px;
  height: 30px;
  background-image: url(../img/icon_instagram_white.svg);
  background-size: cover;
  background-position: 50% 50%;
}

.instagram-sans {
  position: relative;
  width: 140px;
  /* height: 35px; */
  aspect-ratio: 70 / 18;
  background-image: url(../img/instagram-sans.svg);
  background-size: cover;
  background-position: 50% 50%;
}

.note {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  position: relative;
  flex: 0 0 auto;
  margin-right: -5.4px;
}

.note-icon-s {
  position: relative;
  width: 30px;
  height: 30px;
  background-image: url(../img/icon_note.svg);
  background-size: cover;
  background-position: 50% 50%;
}

.note-logo-s {
  position: relative;
  width: 79.4px;
  height: 30px;
  background-image: url(../img/note_logo.svg);
  background-size: cover;
  background-position: 50% 50%;
}

.credit {
  display: flex;
  justify-content: center;
  padding: 22px 0px;
  background-color: var(--color-green-black);
}

.text-wrapper-35 {
  font-size: 0.8125em;
  white-space: nowrap;
  color: white;
}


/* ============================================================
   Responsive design: 1440px / 1024px / 768px / 432px
   ============================================================ */
@media (max-width: 1024px) {
  .colophon-2 {
    gap: 40px;
    padding: 0 20px;
  }
}

@media (max-width: 768px) {
  .colophon {
    height: auto;
    padding: 40px 20px;
  }

  .colophon-2 {
    flex-direction: column;
    align-items: center;
    gap: 40px;
    padding: 0;
  }

  .message {
    width: fit-content;
    text-align: left;
  }

  .text-wrapper-30 {
    text-align: center;
  }

  .footer-company {
    align-items: center;
  }

  .address {
    align-items: center;
  }

  .SNS {
    width: 100%;
    justify-content: center;
  }

  .credit {
    padding: 16px 20px;
  }

  .text-wrapper-35 {
    white-space: normal;
    text-align: center;
  }
}

@media (max-width: 432px) {
  .message {
    font-size: .75em;
  }
  .footer .company-name {
    font-size: 1.75em;
  }
  .zip {
    font-size: .875em;
  }
  .address-1,
  .phone {
    font-size: 1.05em;
  }

}