@charset "utf-8";

.others__wrap {
  margin-top: 87px;
  display:flex;
  flex-direction: column;
  gap: 80px;  
}
@media (min-width: 900px) {
  .others__wrap {
    margin-top: 137px;
    gap: 155px;  
  }
}

.others__item {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 40px;
  padding: 50px 25px;
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 10px;
}
@media (min-width: 900px) {
  .others__item {
    position: relative;
    height: 443px;
    display: grid;
    place-items: center;
    padding: 20px min(calc(564 / 1366 * 100vw), 564px) 20px min(calc(91 / 1366 * 100vw), 91px);
  }
}

.others__img {
  aspect-ratio: 420 / 520;
  width: min(100%, 420px);
  height: auto;
  border-radius: 10px;
  overflow: hidden;
  object-fit: cover;
}
@media (min-width: 900px) {
  .others__img {
    position: absolute;
    bottom: 0;
    right: 60px;
    width: min(calc(420 / 1366 * 100vw), 420px);
  }
}

@media (min-width: 900px) {
  .others__item:nth-of-type(2n) {
    padding: 20px min(calc(91 / 1366 * 100vw), 91px) 20px min(calc(564 / 1366 * 100vw), 564px);
  }
}

@media (min-width: 900px) {
  .others__item:nth-of-type(2n) .others__img {
    left: 60px;
  }
}