@charset "utf-8"; /* 文字化けしないために書く */
.fade_blog {
  width: 70%;
  margin-left: 10%;
  border: 0.5px solid #c8c8c8;
  margin-top: 130px;
  padding: 5%;
  margin-bottom: 10vw;
  animation-name: fade;
  animation-duration: 2s;
}
@keyframes fade {
  /* fadein */
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
p {
  font-size: 1rem;
}
h3:not(footer h3) {
  margin-bottom: 10px;
  padding-top: 100px;
  margin-top: -100px;
  /* この2行は、リンクがヘッダー高さ分ずれてしまうのを修正するため*/
}
h5 {
  font-size: 1.2rem;
}
.contents {
  margin-bottom: 20px;
  margin-top: -110px;
  padding-top: 110px;
}
.contents a {
  display: block;
  color: #5cb200;
  font-size: 1rem;
}
.link {
  color: #5cb200;
}
.bd {
  font-size: 1.5rem;
  font-weight: 100;
  color: #242626;
}
.gray {
  color: #c8c8c8;
}
.titles {
  width: 100%;
}
.title {
  text-align: center;
}
.title h3 {
  font-size: 2rem;
  padding: 0;
  margin: 0;
}
.title img {
  width: 75%;
  height: 35vw;
  object-fit: contain;
}
.images {
  row-gap: 1vw;
  width: 100%;
  text-align: center;
}
.images img {
  display: block;
  width: 45%;
  height: auto;
  margin-left: 30%;
}
.picture {
  width: 100%;
  text-align: center;
  margin-bottom: 50px;
}
.picture img {
  display: block;
  width: 90%;
  height: auto;
  margin-left: 5%;
}
.set_2 {
  width: 40%;
  margin: 20px;
}
.set_3 {
  width: 100%;
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  row-gap: 20px;
}
.set_3 img {
  display: block;
  width: 30%;
  height: auto;
}
