@charset "utf-8";


.newsFlex {
  width: var(--textWidth);
  margin: 0px auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin: 0px auto;
  max-width: var(--minWidth);
  padding: 0px 0px;
}

.newsFlexReverse {
  flex-direction: row-reverse;
}

.news60 {
  width: 60%;
  padding: 60px 0px;
}

.newsImage {
  width: 35%;
  aspect-ratio: 1 / 1;
  background-color: var(--cyan);
  background-position: right center;
  background-size: cover;
  background-repeat: no-repeat;
}

.newsRight {
  margin-left: auto;
}

@media only screen and (max-width: 1250px) {}

@media only screen and (max-width: 1000px) {}

@media only screen and (max-width: 860px) {

  .newsFlex {
    flex-direction: column;
  }

  .newsFlexReverse {
    flex-direction: column;
  }

  .news60 {
    width: 100%;
    padding: 60px 20px;
  }

  .newsRight {
    margin: auto;
  }

  .newsImage {
    width: calc(100% - 40px);
    margin: 0px auto 20px auto;
    aspect-ratio: 1 / 1;
    background-color: var(--cyan);
    background-position: right center;
    background-size: cover;
    background-repeat: no-repeat;
  }
}