#footer {
  position: relative;
}

#footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--color-accent-orangered);
  color: var(--color-white);
  padding: 80px 20px 120px;
}

#footer .logo {
  width: 220px;
  margin-bottom: var(--space-l);
}

#footer .address {
  line-height: 1.8;
  margin-bottom: var(--space-m);
}

#footer .container .text-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: var(--space-l);
}

#footer .container .text-wrapper:hover {
  color: var(--color-yellow-light);
  transition: all 0.2s ease;
}

#footer .text-wrapper .text {
  font-size: 18px;
}

#footer .text-wrapper .text_02 {
  font-size: 34px;
}

.footer-btm {
  display: flex;
  justify-content: center;
  position: relative;
  padding: 21px 0 40px;
  background-color: var(--color-yellow-light);
  color: var(--color-accent-orangered);
}

.footer-btm small {
  font-size: 14px;
}

.footer-btm::before {
  content: "";
  display: block;
  background: url(http://h-ajisai.jp/wp-content/uploads/line-yellow.png) repeat-x center top;
  background-size: contain;
  position: absolute;
  top: -18px;
  height: 40px;
  width: 100%;
}

#footer .btn-wrapper {
  display: flex;
  flex-direction: column;
  row-gap: var(--space-m);
  width: 240px;
}

#footer .btn-wrapper .btn {
  width: 100%;
}

@media screen and (max-width: 767px) {
  #footer .text-wrapper .text_02 {
    font-size: 28px;
  }
}