@charset "utf-8";
/* CSS Document */
#S01 ul li {
  border: 1px solid #ccc;
  background: #f8f9f9;
  border-radius: 10px;
  position: relative;
  margin: 0 0 40px;
}
#S01 ul li::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 30px solid transparent;
  border-left: 30px solid transparent;
  border-top: 30px solid #cbcaca;
  border-bottom: 0;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -30px;
}
#S01 ul li:last-child::after {
  display: none;
}
#S01 ul li p {
  width: auto;
  margin: auto;
  text-align: center;
  padding: 2em;
}
/*----------------------------------------------------------- 1024px */
@media screen and (max-width: 1024px) {
#S01 ul li p {
  text-align: left;
}

}