.arshine2-foot_top {
  position: relative;
  height: 300px;
}

.arshine2-foot_top .background {
  width: 100%;
  aspect-ratio: 5;
  object-fit: cover;
}

.arshine2-foot_top .container {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
  gap: 2%;
}

.arshine2-foot_top .tit {
  flex: 1;
}

.arshine2-foot_top .tit h5 {
  font-size: clamp(24px, 1.88vw, 36px);
  color: #fff;
  line-height: 1;
  font-weight: 600;
}

.arshine2-foot_top .tit p {
  font-size: clamp(14px, 1.15vw, 22px);
  color: #fff;
  margin: 18px 0 0;
}

.arshine2-foot_top a {
  width: 258px;
  height: 50px;
  line-height: 50px;
  background: var(--color-primary);
  color: #fff;
  border-radius: var(--button-radius);
  font-size: 24px;
  color: #fff;
  display: inline-block;
  text-align: center;
}

.arshine2-foot_top a:hover {
  background: none;
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
}

@media(max-width:1280px){
  .arshine2-foot_top a {
    width: 190px;
    height: 50px;
    line-height: 50px;
    font-size: 20px;
  }
}

@media(max-width:991px){
  .arshine2-foot_top a {
    width: 150px;
    height: 45px;
    line-height: 45px;
    font-size: 16px;
  }
  .arshine2-foot_top {
    height: 220px;
    background-size: cover;
    background-position: 50% 10%;
  }
}

@media screen and (max-width:768px) {

  .arshine2-foot_top .background {
    width: 100%;
    aspect-ratio: 3;
  }

  .arshine2-foot_top .container {
    flex-direction: column;
  }

  .arshine2-foot_top a {
    width: 160px;
    height: 36px;
    line-height: 36px;
    font-size: 14px;
    margin-top: 20px;
  }
}

