@charset "UTF-8";
.imgae-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

.imgae-box .individual {
  width: 330px;
  position: relative;
}
.imgae-box img {
  max-width: 100%;
  margin-bottom: 20px;
}

.text {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.text p {
  font-size: 30px;
  color: #fff;
  font-weight: bold;
  text-shadow: 2px 2px 5px #333; /* 影の設定 */
}
