/* flexbox
=========================================== */
.flex-wrap {
  display: -webkit-box;
  display: -ms-box;
  display: -webkit-flexbox;
  display: -moz-flexbox;
  display: -ms-flexbox;
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media only screen and (max-width: 767px) {
  .flex-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media only screen and (max-width: 767px) {
  .spFlexRow {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}
.flex-wrap.flex-between {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.flex-wrap.reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media only screen and (max-width: 767px) {
  .flex-wrap.reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.flex-conteiner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.flex_bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

/*
=========================================== */
.ipl_intro {
  margin-bottom: 50px;
}
.ipl_intro .cellec_text {
  width: 44%;
}
@media screen and (max-width: 767px) {
  .ipl_intro .cellec_text {
    width: 100%;
  }
}
.ipl_intro .cellec_text p {
  line-height: 1.8;
}
.ipl_intro .cellec_ph {
  width: 54%;
}
@media screen and (max-width: 767px) {
  .ipl_intro .cellec_ph {
    margin-top: 20px;
    width: 100%;
  }
}
.ipl_intro .cellec_ph img {
  max-width: 100%;
}

.filter_pc {
  background: url(img/filter_pc.png) top right no-repeat;
  padding-right: 150px;
}
@media screen and (max-width: 767px) {
  .filter_pc {
    background: none;
    padding-right: 0;
  }
  .filter_pc .filter_sp {
    display: block;
    background: url(img/filter_sp.png) top 20px right no-repeat;
    background-size: 100px auto;
    padding-right: 110px;
  }
}

.cellec_inn {
  margin-bottom: 20px;
  line-height: 1.8;
}
.cellec_inn .in_ph {
  width: 12%;
}
.cellec_inn .in_ph img {
  max-width: 100%;
}
.cellec_inn .in_text {
  width: 86%;
}
.cellec_inn .in_text .cellec_ttl {
  color: #E8778B;
  background: #FEE8EA;
  padding: 3px 15px;
  margin-bottom: 10px;
  font-size: 15px;
  font-weight: bold;
}

.electroporation_price {
  width: 345px;
  float: left;
}
.electroporation_price table {
  border-collapse: collapse;
  line-height: 1.5;
  vertical-align: top;
  width: 100%;
}
.electroporation_price table th {
  background: #E77885;
  color: #fff;
  font-weight: normal;
  text-align: left;
  border: 1px solid #ccc;
  padding: 3px 10px;
  width: 200px;
}
.electroporation_price table td {
  font-weight: normal;
  text-align: left;
  border: 1px solid #ccc;
  padding: 3px 10px;
}
.electroporation_price table td .test {
  margin-left: 30px;
  text-align: right;
}
.electroporation_price p {
  margin-top: 5px;
}
@media screen and (max-width: 800px) {
  .electroporation_price {
    width: 100%;
    float: none;
  }
}
.electroporation_price .small_text {
  font-size: 13px;
}