/* nav */
.nav {
  background-color: #afaff8;
  height: 30px;
}
.nav a {
  padding: 0 6px;
  margin: 0 5px;
  font-size: 16px;
  color: #fff;
  line-height: 30px;
  background-color: #0eaa1c;
  border-radius: 5px;
  cursor: pointer;
}
/* END nav */

.box {
  /* padding: 0 1%; */
}
.image-box {
  padding: 0 1%;
  margin-bottom: 10px;
  border-bottom: 2px solid #666;
}
.image-box:last-child {
  border-bottom: none;
}
.image-title {
  font-size: 18px;
  text-align: center;
  line-height: 30px;
  position: relative;
}
.image-title::before, .image-title::after {
  content: "";
  position: absolute;
  top: 14px;
  left: 6%;
  width: 40%;
  height: 2px;
  background-color: #b13f3f;
}
.image-title::after {
  left: auto;
  right: 6%;
}
.image-item-box {
  width: 100%;
  padding-bottom: 10px;
}
.image-item-box h3 {
  font-size: 16px;
  line-height: 24px;
  padding-left: 20px;
  position: relative;
}
.image-item-box h3::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 3px;
  width: 14px;
  height: 14px;
  background-color: #da0c0c;
  border-radius: 50%;
}
.image-item-box h3::after {
  content: "";
  position: absolute;
  top: 12px;
  left: 8%;
  width: 90%;
  height: 1px;
  background-color: #a76806;
}
.img-item {
  display: inline-block;
  width: 49%;
  height: 240px;
}
.img-item img {
  max-width: 100%;
  max-height: 240px;
}
