/**
 * Base Font Size
 */
.voice-block {
  width: 100%;
  max-width: 928px;
  margin: 0 auto;
  counter-set: order;
}

.numbering {
  counter-increment: order;
}

.number {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .number {
    margin-bottom: 16px;
  }
}
.number::before {
  content: counter(order, decimal-leading-zero);
  color: white;
  background-color: #E6181C;
  border-radius: 6px;
  font-family: Roboto, "Noto Sans JP", sans-serif;
  font-size: calc(20 * 1rem / 16);
  aspect-ratio: 1/1;
  line-height: normal;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
}

.title-set {
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .title-set {
    margin-bottom: 24px;
  }
}

.text-block {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 7;
  overflow: hidden;
  width: 100%;
  max-width: 50%;
}
@media screen and (max-width: 768px) {
  .text-block {
    max-width: 100%;
  }
}

.image-block {
  width: 100%;
  max-width: 50%;
}
@media screen and (max-width: 768px) {
  .image-block {
    max-width: 100%;
  }
}

.link-block {
  display: flex;
  align-items: center;
  justify-content: center;
}
.link-block a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border-radius: 32px;
  padding: 14px 32px;
  max-width: 348px;
  width: 100%;
  margin: 60px auto 0;
}
.link-block a::after {
  content: "";
  display: block;
  width: 12px;
  height: 24px;
  background-repeat: no-repeat;
  background-size: 80% auto;
  background-position: center;
  background-image: url(/assets/flood_damage/img/arrow-right-white.svg);
}
.link-block a:hover {
  text-decoration: none;
  color: white;
  transition: all 0.3s ease;
  opacity: 0.7;
}

.hr {
  width: 100%;
  height: 1px;
  background-color: #C9C9CA;
}

/*# sourceMappingURL=fd_contents_04_style.css.map */
