﻿
.footer__info{
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 20px;
  align-items: center;
  border-bottom: solid 1px rgba(255, 255, 255, 0.1);
  margin-bottom: 20px;
  padding-bottom: 20px;
}
.footer__link-arw {
  position: relative;
}
.footer__link {
  display: block;
  font-size: min(3.2vw, 15px);
  color: #fff;
  font-weight: 500;
  padding-block: 4px;
  width: fit-content;
  text-decoration: none;
  font-size: 12px;
}
.footer__link-arw::before {
  content: "";
  width: 8px;
  height: 8px;
  display: inline-block;
  border-top: 1.5px solid #fff;
  border-right: 1.5px solid #fff;
  transform: rotate(45deg);
  margin-right: 6px;
  vertical-align: middle;
  margin-top: -3px;
}
.footer-btn01 {
  font-size: 16px;
  display: block;
  width: 220px;
  font-weight: bold;
  line-height: 1.5;
  border: 2px solid transparent;
  background-image: linear-gradient(#fff, #fff), linear-gradient(to right, #F1A3AC, #F2C18C, #D2D072, #A4CF9A, #9BBADA);
  background-clip: padding-box, border-box;
  background-origin: padding-box, border-box;
  border-radius: 5px;
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 10px;
}
.footer-btn01__txt {
  font-size: clamp(1.1rem, 0.7rem + 0.667vw, 1.5rem);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: -0.03em;
  display: block;
  padding-block: 16px;
  padding-inline: 3px 32px;
  background-position: bottom right;
  background-image: url(../images/footer-btn-bg.jpg);
  background-size: 100%;
  border-radius: 5px;
  width: 100%;
  height: 100%;
  position: relative;
  color: #175890;
}
.footer-btn01__txt::before {
  content: "";
  width: 8px;
  height: 8px;
  display: inline-block;
  border-top: 1.5px solid #175890;
  border-right: 1.5px solid #175890;
  transform: rotate(45deg);
  margin-right: 6px;
  vertical-align: middle;
  margin-top: -3px;
}
@media screen and (min-width: 769px) {
  .footer__info{
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
  .footer__link {
    padding-right: 10px;
    font-size: 15px;
  }
  .footer-btn01 {
    width: 326px;
  }
  .footer-btn01__txt {
    padding-block: 26px;
    font-size: 15px;
  }
}