@charset "utf-8";

.newline {
  margin: 0 0 30px 0;
  border-bottom: 1px dotted #ccc;
}
.planbox {
  margin: 0 0 30px 0;
}
.new {
  font-weight: 700;
  color: #be0000;
}
.stit {
  font-weight: 700;
  display: block;
  margin-bottom: 2px;
}

.flexbox {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  gap: 20px;
  margin: 20px auto;
  width: 600px;
}
.flexbox li {
  width: 50%;
  text-align: center;
}
.flexbox li img {
  height: 80px;
}
@media screen and (max-width: 768px) {
  .flexbox {
    display: block;
    margin: 10px auto;
    width: 90%;
  }
  .flexbox li {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
  }
  .flexbox li img {
    height: auto;
    width: 80%;
  }
}
