/* clearfix */
/*  section1
---------------------------*/
#section1 .section__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  -webkit-justify-content: space-around;
  -moz-justify-content: space-around;
  justify-content: space-around;
}
#section1 .sec1__box {
  width: 260px;
}
#section1 .sec1__box .box__icon {
  width: 200px;
  height: 200px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  margin: 0 auto;
  padding: 50px;
  border: 1px #333 solid;
}
#section1 .sec1__box h4 {
  font-weight: bold;
  font-size: 18px;
  color: #b60081;
  text-align: center;
  margin-top: 30px;
}
#section1 .sec1__box p {
  margin-top: 10px;
  line-height: 1.5;
  text-align: left;
}
@media screen and (max-width: 767px) {
  #section1 .section__inner {
    display: block;
  }
  #section1 .sec1__box {
    width: 100%;
  }
  #section1 .sec1__box:first-of-type {
    margin-right: 0;
    margin-bottom: 60px;
  }
  #section1 .sec1__box .box__icon {
    width: 48vw;
    height: 48vw;
    padding: 10.66667vw;
  }
}
