@charset "UTF-8";


/* =============================================
- レイアウト
================================================ */

.section {
  padding-left: 10px;
  padding-right: 10px;
}

.flow_main_contents {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
  padding-bottom: 100px;
}

.flow_box1_outer {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  padding: 30px 10px;
  position: relative;
  box-sizing: border-box;
}
.flow_box1 {
}
.flow_box1 > div:first-child img {
  border-radius: 10px;
}

.flow_box2 > div:first-child {
  width: 127px;
  height: 127px;
  box-sizing: border-box;
}
.flow_box2 > div:last-child {
  background-color: #FFF;
  border-radius: 10px;
  padding: 20px 20px;
  position: relative;
}
.flow_box2 > div:last-child:before {
  display: block;
  content: "";
  background-color: #FFF;
  position: absolute;
  z-index: 1;
}

.flow_list {
  position: relative;
}
.flow_list:before {
  border-left: 3px dotted #333;
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
}


.flow_textbox {
  display: inline-block;
  background-color: #14993b;
  color: #fff;
  font-weight: bold;
  padding: 5px 20px;
  border-radius: 5px;
  margin-bottom: 30px;
}

.flow_img1 {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}




@media screen and (max-width: 640px) {
  .flow_box1 > div:first-child {
    margin-bottom: 20px;
  }
  .flow_box2 > div:first-child {
    margin: 0 auto 30px;
  }
  .flow_box2 > div:last-child:before {
    width: 20px;
    height: 20px; /* 吹き出しサイズ */
    top: -10px;
    left: 50%; /* 位置 */
    transform: translateX(-50%) rotate(45deg) skew(10deg, 10deg); /* 傾斜角(skew) */
  }

  .flow_textbox {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 6em;
  }
}

@media screen and (min-width: 641px) {
  .section {
  }
  .flow_main_contents {
    padding-bottom: 150px;
  }
  .section .inner {
    max-width: 980px;
    margin: 0 auto;
  }

  .flow_box1_outer {
    padding: 40px 3%;
  }
  .flow_box1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .flow_box1 > div:first-child {
    width: 48.84%;
    max-width: 420px;
  }
  .flow_box1 > div:last-child {
    width: 45.35%;
  }

  .flow_box2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .flow_box2 > div:last-child {
    flex: 1;
    margin-left: 40px;
    padding: 35px 30px;
  }
  .flow_box2 > div:last-child:before {
    width: 30px;
    height: 30px; /* 吹き出しサイズ */
    left: -10px;
    top: 50%; /* 位置 */
    transform: translateY(-50%) rotate(45deg) skew(-20deg, -20deg); /* 傾斜角(skew) */
  }

}

@media screen and (min-width: 1050px) {
  .flow_box1_outer {
    padding: 60px 60px;
  }
}









