.fv {
  width: 100%;
  height: 42vw;
}
.fv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news--list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
}
@media (max-width: 768px) {
  .news--list {
    flex-wrap: wrap;
    gap: 1rem;
  }
}
.news--item {
  width: 33%;
  padding: 2rem 1rem;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  gap: 1rem;
  flex-wrap: wrap;
  flex-direction: column;
  background-color: var(--white);
  border-radius: 1.6rem;
  box-sizing: border-box;
}
.news--item:hover {
  background-color: var(--light-green);
}
@media (max-width: 768px) {
  .news--item {
    width: 100%;
  }
}
.news--thumbnail {
  width: 100%;
  flex-grow: 1;
  object-fit: contain;
}
.news--date {
  margin-bottom: 1rem;
  font-size: 1.6rem;
  display: inline-block;
}
.news--title {
  height: 3em;
  margin-bottom: 0;
  font-size: 2.3rem;
}
@media (max-width: 768px) {
  .news--title {
    height: auto;
  }
}

.future--wrap {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}
@media (max-width: 768px) {
  .future--wrap {
    flex-direction: column;
    gap: 1rem;
  }
}
.future--box {
  width: 32%;
  padding: 2rem 3rem;
  border: solid 1px var(--light-gray);
  border-radius: 1.6rem;
  background-color: var(--white);
}
@media (max-width: 768px) {
  .future--box {
    width: 100%;
  }
}
.future--inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.future--head {
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1.5rem;
}
.future--head .icon {
  width: 4.5rem;
  height: 4.5rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--deep-brown);
}
.future--head h3 {
  margin-bottom: 0;
  font-size: 2.3rem;
}
.future--content {
  margin-top: auto;
  flex-grow: 1;
}

.activity--wrap {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}
@media (max-width: 768px) {
  .activity--wrap {
    flex-direction: column;
    gap: 1rem;
  }
}
.activity--box {
  width: 32%;
  border: solid 1px var(--light-gray);
  border-radius: 1.6rem;
  background-color: var(--light-brown);
}
@media (max-width: 768px) {
  .activity--box {
    width: 100%;
  }
}
.activity--head {
  margin-bottom: 2rem;
  padding: 6rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  border-radius: 1.6rem 1.6rem 0 0;
  background-color: var(--deep-brown);
}
.activity--head .icon {
  width: 4.5rem;
  height: 4.5rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--deep-brown);
}
.activity--content {
  margin-top: auto;
  padding: 2rem 3rem;
  flex-grow: 1;
}
.activity--content h3 {
  font-size: 2.3rem;
}

.message--wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}
@media (max-width: 768px) {
  .message--wrap {
    flex-direction: column;
    gap: 1rem;
  }
}
.message--content {
  width: 65%;
  flex-grow: 1;
}
@media (max-width: 768px) {
  .message--content {
    width: 100%;
  }
}
.message--image {
  width: 35%;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .message--image {
    width: 100%;
  }
}