@charset "utf-8";
.pointBox {
  display: flex;
  flex-flow: row wrap;
  gap: 20px 40px;
}
.pointBox__item {
  position: relative;
  width: calc((100% / 3) - (40px * 2 / 3));
  padding: 40px 25px 25px;
  border-radius: 4px;
  background: #fff;
}
.pointBox__item-head-icon {
  position: absolute;
  top: -20px;
  left: 50%;
  width: 40px;
  color: #fff;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 40px;
  text-align: center;
  transform: translateX(-50%);
  border-radius: 50%;
  background-color: #003399;
}
.pointBox__item-head-title {
  color: #003399;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.4;
  text-align: center;
}
.pointBox__item-body {
  margin-top: 20px;
}
.pointBox__item-body-img img {
  width: 100%;
  height: auto;
}
.pointBox__item-body-text {
  margin-top: 20px;
  font-size: 1.6rem;
  line-height: 1.5;
}
.pointBox__item-body-text-emphasis {
  color: #cf0101;
}
.exampleBlock {
  position: relative;
  padding: 50px;
  border: 1px solid #003399;
  border-radius: 4px;
}
.exampleBlock__tag {
  position: absolute;
  top: -14px;
  left: 0;
  width: 100%;
  text-align: center;
  line-height: 1;
}
.exampleBlock__tag span {
  padding: 0 24px;
  color: #003399;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.4;
  background-color: #fff;
}

.exampleBlock__title {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.6rem;
  font-weight: bold;
  line-height: 1.4;
  text-align: center;
}
.exampleBlock__title img {
  margin-right: 24px;
}
.exampleBlock__text {
  margin-top: 30px;
  font-size: 1.6rem;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .pointBox__item {
    width: 100%;
  }
  .pointBox__item:nth-of-type(n + 2) {
    margin-top: 20px;
  }
  .exampleBlock {
    padding: 40px 25px;
  }
  .exampleBlock__tag {
    top: -12px;
  }
  .exampleBlock__tag span {
    padding: 0 12px;
    font-size: 1.6rem;
  }
  .exampleBlock__title {
    flex-flow: column;
    font-size: 2rem;
  }
  .exampleBlock__title img {
    margin: 0 0 8px;
  }
  .exampleBlock__text {
    margin-top: 20px;
  }
}
