#sns {
    margin: 0 auto 20px;
}
.block{
    margin: 0 0 20px;
}
.stepList {
  margin-bottom: 30px;
  padding: 0 10px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.stepList li {
  width: 282px;
  /*min-height: 240px;*/
  border: 2px solid #64a70b;
  padding: 15px 10px 20px;
  font-size: 14px;
  flex-direction: column;
  display: flex;
  position: relative;
}
.stepList li:after {
  content: '';
  border-left: 20px solid #1d9bf0;
  border-top: 38px solid transparent;
  border-bottom: 38px solid transparent;
  position: absolute;
  top: 50%;
  right: -42px;
  margin-top: -38px;
}
.stepList li:last-child:after {
  display: none;
}
.stepList li .stepTit {
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 5px;
}
.stepList li .stepBtn {
  width: 224px;
  margin: auto auto 0;
}
.stepList li .stepBtn a {
  display: block;
  background-color: #1d9bf0;
  color: #fff;
  text-decoration: none;
  text-align: center;
  border-radius: 25px;
  padding: 10px 0;
}
.stepList li .stepBtn a span {
  background-image: url(/img/icon/icon_blank_white@2x.png);
  background-position: center right 10px;
  background-repeat: no-repeat;
  background-size: auto;
  padding-right: 35px;
}
.stepList li .stepBtn a:hover {
  opacity: 0.7;
}
.btnBuy {
    width: 300px;
    margin: 0 auto 50px;
}
.btnBuy a {
    width: 100%;
    display: block;
    background-color: #499916;
    border-radius: 8px;
    color: #fff;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    position: relative;
    font-size: 16px;
    padding: 16px 0;
    line-height: 1;
}
.btnBuy a:hover {
    opacity: 0.7;
}
.btnBuy a span {
    background-image: url(/img/icon/icon_blank_white@2x.png);
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 11px 9px;
    padding-right: 20px;
}
@media screen and (max-width: 600px) {
   .stepList li {
        width: 100%;
        margin-bottom: 50px;
        display: block;
        min-height: auto;
  }
   .stepList li:last-child {
        margin: 0;
  }
   .stepList li:after {
        content: '';
        border-right: 38px solid transparent;
        border-left: 38px solid transparent;
        border-top: 20px solid #1d9bf0;
        border-bottom: 38px solid transparent;
        position: absolute;
        top: auto;
        bottom: -76px;
        right: 50%;
        margin-right: -38px;
  }
   .stepList .stepTxt {
        margin-bottom: 10px;
  }
}
@media screen and (min-width: 601px){
    #sns ul {
        text-align: right!important;
    }
    .blockW .block {
        width: 50%;
        float: left;
        padding: 10px;
    }
    .blockW .block:nth-child(3) {
        clear: both;
    }
}