@charset "UTF-8";

/** 媒体查询 */

/** 布局 */

.bg {
  /**height: 93.75rem;
  max-height: 93.75rem;*/
  background-image: url("../assets/bg3.png");
  background-color: #F5F5F5;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 0 0;
  display: flex;
  align-items: center;
}

.bg .mt {
  margin-top: 12.5rem;
}

.bg .image {
  width: 60% !important;
}

.sustainable-list {
  display: flex;
  flex-direction: column;
  gap: 6.25rem;
  padding: 6.25rem 0;
}

.sustainable-list .item {
  display: flex;
  align-items: center;
  gap: 6.25rem;
}

.sustainable-list .image {
  width: 50%;
  flex-shrink: 0;
}

.sustainable-list .text {
  width: 0;
  flex-grow: 1;
}

.sustainable-list .text .t1 {
  font-weight: bold;
  font-size: 1.875rem;
}

.sustainable-list .text .t2 {
  color: #000;
  font-size: 1.125rem;
}

.sustainable-list .text .br {
  width: 9.375rem;
  height: 1px;
  background: #00A7E1;
  margin: 0.9375rem 0 1.375rem;
}

.sustainable-list .text .line1 {
  width: 6.25rem;
  height: 0.375rem;
  background: #707070;
}

.sustainable-list .text .line2 {
  width: 80%;
  height: 0.0625rem;
  background: #707070;
}

@media (min-width: 800px) {
  .sustainable-list .item:nth-child(even) {
    flex-direction: row-reverse;
  }
}

@media (max-width: 800px) {
  .sustainable-list {
    gap: 6.25rem;
    padding: 3.125rem 0;
  }

  .sustainable-list .mt {
    margin-top: 1.25rem !important;
  }

  .sustainable-list .item {
    gap: 1.25rem;
    flex-direction: column;
  }

  .sustainable-list .image,
  .sustainable-list .text {
    width: 100% !important;
  }

  .sustainable-list .text .t1 {
    font-size: 1.5rem;
  }

  .sustainable-list .text .t2 {
    color: #000;
    font-size: 1rem;
  }
}