.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;
  -webkit-align-items: center;
  gap: 2%;
  flex-direction: column;
  text-align: left;
  align-items: flex-start;
  justify-content: space-between;
}

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

.arshine2-foot_top .tit h5 {
  font-size: clamp(18px, 1.4vw, 26px);
  color: #fff;
  line-height: 1;
}

.arshine2-foot_top .tit p {
  font-size: clamp(14px, 0.95vw, 18px);
  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, 0.95vw, 18px);
  color: #000;
  display: inline-block;
  text-align: center;
  margin-top: 30px;
  font-weight: 700;
  padding: 10px 20px;
}

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

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

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

  .arshine2-foot_top {
    height: 400px;
  }
}

