/* top */
.top-company-bottom {
  width: 90%;
  max-width: max-content;
  margin: 100px auto 0;
  transition: .5s;
}

.top-company-bottom:hover {
  opacity: .7;
}

@media print,
screen and (max-width: 1023px) {
  .top-company-bottom {
    margin-top: 40px;
  }
}

/* sdgs */
.andyou-project {
  padding-top: 80px;
}

.andyou-project h3 {
  color: #00439c;
  font-size: min(6vw, 4rem);
  font-weight: bold;
  text-align: center;
  line-height: 1.3;
}

.andyou-project p {
  margin-top: 70px;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
}

.andyou-project .with-banner {
  margin-top: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 80px;
}

.andyou-project .with-banner .banner {
  width: 12.5rem;
}

.andyou-project .with-banner dl {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.andyou-project .with-banner dl dt {
  color: #10264d;
  font-size: min(8vw, 5.3rem);
  font-weight: bold;
  line-height: 1.3;
  text-box: trim-both cap alphabetic;
}

.andyou-project .with-banner dl dd {
  font-size: 2rem;
  font-weight: bold;
  text-box: trim-both cap alphabetic
}

.andyou-project .with-banner dl dd span {
  display: inline-block;
}

.andyou-project ul.activities {
  margin-top: 64px;
  display: flex;
  justify-content: space-between;
}

.andyou-project ul.activities li {
  width: calc((100% - 80px) / 3);
}

.andyou-project ul.activities li .number {
  width: 35%;
  max-width: max-content;
}

.andyou-project ul.activities li .img {
  margin-top: -25px;
  position: relative;
}

.andyou-project ul.activities li .img::before,
.andyou-project ul.activities li .img::after {
  content: "";
  width: 50%;
  height: 10px;
  background-color: #00439c;
  position: absolute;
  z-index: -1;
  transform: translateY(-50%);
}

.andyou-project ul.activities li .img::before {
  top: calc(50% - 30%);
  left: 0;
}

.andyou-project ul.activities li .img::after {
  top: calc(50% + 30%);
  right: 0;
}

.andyou-project ul.activities dl {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px 0;
}

.andyou-project ul.activities dl dt {
  color: #00439c;
  font-size: min(3vw, 2.8rem);
  font-weight: bold;
}

.andyou-project ul.activities dl dd {
  font-size: min(1.8vw, 1.6rem);
  font-weight: bold;
  text-align: center;
}

.andyou-project .btn_area {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.andyou-project .btn_area p {
  margin-top: 0;
  color: #ff1d25;
  font-weight: bold;
}

.andyou-project .btn_area .btn {
  width: 100%;
  max-width: 480px;
}

.andyou-project .btn_area .btn a {
  position: relative;
  color: #fff;
  font-weight: bold;
  text-align: center;
  background-color: #00439c;
  border-radius: 9999px;
  padding: 1em 0;
}

.andyou-project .btn_area .btn a::after {
  content: "";
  width: 1em;
  aspect-ratio: 1 / 1;
  background: url(../img/icon_window.png) center / contain no-repeat;
  position: absolute;
  top: 45%;
  right: 20px;
  transform: translateY(-50%);
}

.andyou-project .btn_area .btn a br {
  display: none;
}

@media print,
screen and (max-width: 767px) {
  .andyou-project {
    padding-top: 40px;
  }

  .andyou-project p {
    margin-top: 20px;
  }

  .andyou-project .with-banner {
    flex-direction: column;
    gap: 40px 0;
  }

  .andyou-project .with-banner dl {
    gap: 40px 0;
  }

  .andyou-project .with-banner dl dt {
    text-align: center;
  }

  .andyou-project .with-banner dl dd {
    text-align: center;
  }

  .andyou-project ul.activities {
    flex-direction: column;
    align-items: center;
    gap: 40px 0;
  }

  .andyou-project ul.activities li {
    width: 80%;
    max-width: 320px;
  }

  .andyou-project ul.activities dl dt {
    font-size: 2.8rem;
  }

  .andyou-project ul.activities dl dd {
    font-size: 1.6rem;
  }

  .andyou-project .btn_area .btn a br {
    display: block;
  }
}