
@charset "UTF-8";

/*-----------------------------契約の流れパーツ---------------------------------*/
.flow_content {
  max-width: 1200px;
  margin: 0 auto;
}

.flow_content {
  position: relative;
  background: #cccccc40;
  margin-top: 60px;
  padding: 30px;
}

.flow_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.flow_ttl {
  margin-left: 120px;
  margin-bottom: 10px;
  font-weight: 700;
  color: #6ec138;
  font-size: 130%;
}

.flow_img {
  width: 260px;
}

.flow_img img {
  height: 100%;
  max-height: 180px;
  -o-object-fit: cover;
     object-fit: cover;
}

.flow_boxes {
  width: calc(100% - 260px);
  padding: 0 4rem;
}

.flow_text span {
  color: #ff0000;
}

.flow_price {
  margin-top: 20px;
  color: #f60;
  font-size: 140%;
}

.flow_price small {
  color: #212222;
}

.flow_step {
  position: absolute;
  background: #6ec138;
  width: 100px;
  height: 100px;
  top: -40px;
  border-radius: 50%;
  color: #fff;
  font-weight: 700;
  line-height: 95px;
  text-align: center;
}

.flow_step span {
  font-size: 200%;
}

.flow_step::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  bottom: 10px;
  right: 1px;
  border-style: solid;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 15px solid #6ec138;
  border-right: none;
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
}
@media screen and (max-width: 768px) {
.flow_wrapper {
  display:block;
}
.flow_img {
    width: 100%;
}
.flow_img img {
    max-height: 450px;
    width: 100%;
}
.flow_boxes {
    width: 100%;
    padding: 2rem 0 0;
}
.flow_content {
    padding: 20px;
}
.flow_ttl {
    margin-left: 80px;
}
.flow_step {
    width: 80px;
    height: 80px;
    top: -25px;
    left: 10px;
    line-height: 75px;
}
}


@media (max-width: 768px){
.flow_img img{
height:36vw;
object-position: top;
object-fit: cover;
}
.flow_content.step2 .flow_img img{
    object-position: center;
}
}