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

.welcome-section {
  padding: 72px 0;
}
.welcome-section p {
  margin: 0;
  font-size: 2.25rem;
  color: #333333;
  line-height: 2em;
}

.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--list > li {
  width: 32%;
  display: flex;
}
@media (max-width: 768px) {
  .news--list > li {
    width: 100%;
  }
}
.news--item {
  width: 100%;
  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);
}
.news--thumbnail {
  width: 100%;
  flex-grow: 1;
  object-fit: contain;
  border-radius: 8px;
}
.news--date {
  margin-bottom: 1rem;
  font-size: 1.6rem;
  display: block;
}
@media (max-width: 768px) {
  .news--date {
    font-size: 1.875rem;
    line-height: 3.125rem;
  }
}
.news--title {
  height: 3em;
  margin-bottom: 0;
  font-size: 2.3rem;
}
@media (max-width: 768px) {
  .news--title {
    height: auto;
  }
}

.about p {
  font-size: 1.9rem;
}

.future--wrap {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.future--box {
  width: 100%;
  padding: 3.5rem;
  border: solid 1px var(--light-gray);
  border-radius: 1.6rem;
  background-color: var(--white);
}
.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: 2rem;
}
.future--head h3 span {
  display: inline-block;
  font-weight: inherit;
}
.future--content {
  margin-top: auto;
  flex-grow: 1;
}

.activity--wrap {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.activity--box {
  width: 100%;
  display: flex;
  align-items: stretch;
  border: solid 1px var(--light-gray);
  border-radius: 1.6rem;
  background-color: var(--light-brown);
  overflow: hidden;
}
@media (max-width: 768px) {
  .activity--box {
    flex-direction: column;
  }
}
.activity--head {
  padding: 0 6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  background-color: var(--deep-brown);
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .activity--head {
    padding: 4rem 0;
  }
}
.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 {
  padding: 4rem 3rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.activity--content h3 {
  font-size: 2.3rem;
}
.activity--content a {
  color: var(--blue);
  text-decoration: underline;
}

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