@charset "utf-8";
/* CSS Document */
.m-progress-tracker {
  width: 100%;
  height: auto;
  display: flex;
  margin-top: 40px;
}
.progress-tracker__node {
  width: 20%;
  height: 46px;
  position: relative;
  background: #999;
  color: #FFF;
  text-align: center;
  align-content: center;
}
.progress-tracker__node::after {
  content: "";
  position: absolute;
  width: 18%;
  height: 100%;
  top: 0;
  right: -17.5%;
  z-index: 1000;
  background: #999;
  clip-path: polygon(15px 50%, 0% 0%, 0% 46px);
}
.progress-tracker__node:last-of-type {
  width: 18%;
}
.progress-tracker__node.is-active, .progress-tracker__node.is-active::after {
  background: #000;
  font-size: 1.7rem;
  font-weight: bold;
}
.progress-tracker__node span {
  letter-spacing: 1.5px;
}
@media screen and (max-width: 767px) {
  .progress-tracker__node::after {
    width: 15%;
    right: -14.5%;
    clip-path: polygon(8px 50%, 0% 0%, 0% 46px);
  }
  .progress-tracker__node.is-active, .progress-tracker__node.is-active::after {
    font-size: 1.5rem;
  }
}
.m-list-point[data-col="3"] {
  width: 100%;
  display: flex;
  margin: 0;
  padding: 10px 10px 20px 0;
}
.m-list-point[data-col="3"] .m-list-point__content__inner {
  padding: 26px 10px 10px;
  border: none;
  box-shadow: 3px 3px 4px #ccc;
}
.m-list-point[data-col="3"] .m-list-point__content {
  width: 33%;
  padding: 0;
  margin-left: 20px;
}
.m-list-point[data-col="3"] .m-list-point__content:first-child {
  margin: 0;
}
@media screen and (max-width: 767px) {
  .m-list-point[data-col="3"] .m-list-point__content {
    width: 100%;
    margin-top: 0;
  }
}
@media screen and (max-width: 540px) {
  .m-list-point[data-col="3"] .m-list-point__txt {
    font-size: 1.3rem;
  }
  .m-list-point[data-col="3"] .m-list-point__content__inner {
    padding: 20px 5px 5px;
  }
}