.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, 2.50vw, 48px);
  color: #fff;
  line-height: 1;
}

.arshine2-foot_top .tit p {
  font-size: clamp(16px, 1.2vw, 20px);
  color: #fff;
  margin: 17px 0 0;
}

.arshine2-foot_top a {
  background: var(--color-primary);
  color: #fff;
  border-radius: var(--button-radius);
  font-size: clamp(14px, 1.25vw, 24px);
  display: inline-block;
  text-align: center;
  padding: 10px 45px;
}


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

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


}

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

  .arshine2-foot_top a {
  padding: 5px 25px;
  }

  .arshine2-foot_top {
    height: 250px;
  }

  .arshine2-foot_top .container {
    flex-direction: column;
    gap: 25px;
    text-align: center;
  }
}