#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%;
}
footer {
  background-color: var(--primary-color);
  color: var(--color-black);
  padding: 20px;
  font-size: 14px;
}
.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  padding-bottom: 15px;
  margin-bottom: 15px;
}
.footer-info {
  text-align: center;
  line-height: 1.8;
}
.footer-info strong {
  font-size: 16px;
}
.footer-icons {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}
.footer-icons button {
  background: white;
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 18px;
  color: #002366;
}
@media screen and (max-width: 768px) {
  #footer .text-wrapper .text_02 {
    font-size: 28px;
  }
  .footer-info {
    text-align: left;
    padding-left: 15px;
  }
  .footer-links {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 15px;
  }

}