@charset "utf-8";

/* =================================
 PC flow
================================= */

@media (min-width: 768px) {
  .flow_cont .flow_box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .flow_cont .flow_box .num {
    margin-right: 20px;
    position: relative;
    line-height: 1;
  }
  .flow_cont .flow_box .num span.number {
    border-radius: 50%;
    font-size: 30px;
    color: #fff;
    display: inline-block;
    width: 61px;
    height: 61px;
    padding: 25px 0 0;
    background: #009b64;
    position: relative;
    z-index: 2;
    text-align: center;
  }
  .flow_cont .flow_box .num span.step {
    position: absolute;
    font-size: 11px;
    color: #fff;
    display: inline-block;
    top: 10px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    text-align: center;
    z-index: 3;
  }
  .flow_cont .flow_box .num:after {
    content: '';
    width: 1px;
    height: 100%;
    border-left: #009b64 1px dashed;
    display: block;
    position: absolute;
    top: 0;
    left: 30px;
    z-index: 1;
  }
  .flow_cont .flow_box:last-of-type .num:after {
    content: none;
  }
  .flow_cont .flow_box .flow_txt .flow_tit {
    padding: 15px 0 40px;
    font-size: 22px;
    color: #505050;
  }
  .flow_cont .flow_box .flow_txt .detail {
    overflow: hidden;
    padding-bottom: 40px;
  }
  .flow_cont .flow_box .flow_txt .detail p {
    color: #828282;
    width: 219px;
    float: left;
  }
  .flow_cont .flow_box .flow_txt .detail .flow_sub_tit {
    background: #f8f8f8;
    padding: 5px;
    margin-bottom: 20px;
    clear: both;
    border: #ccc 1px solid;
  }
  .flow_cont .flow_box .flow_txt .detail .flow_min_tit {
    font-weight: bolder;
    float: none;
    width: 100%;
    clear: both;
    padding-bottom: 10px;
  }
  .flow_cont .flow_box .flow_txt .detail .txt_l {
    width: 100%;
  }
  .flow_cont .flow_box .flow_txt .detail .img {
    float: right;
    width: 300px;
    margin: 0 0 20px 40px;
  }
  .flow_cont .flow_box .flow_txt .detail .img img {
    width: 100%;
  }
}


/* =================================
 SP flow
================================= */

@media (max-width: 767px) {
  .flow_cont .flow_box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .flow_cont .flow_box .num {
    margin-right: 10px;
    position: relative;
    line-height: 1;
  }
  .flow_cont .flow_box .num span.number {
    border-radius: 50%;
    font-size: 20px;
    color: #fff;
    display: inline-block;
    width: 51px;
    height: 51px;
    padding: 24px 0 0;
    background: #009b64;
    position: relative;
    z-index: 2;
    text-align: center;
  }
  .flow_cont .flow_box .num span.step {
    position: absolute;
    font-size: 11px;
    color: #fff;
    display: inline-block;
    top: 10px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    text-align: center;
    z-index: 3;
  }
  .flow_cont .flow_box .num:after {
    content: '';
    width: 1px;
    height: 100%;
    border-left: #009b64 1px dashed;
    display: block;
    position: absolute;
    top: 0;
    left: 25px;
    z-index: 1;
  }
  .flow_cont .flow_box:last-of-type .num:after {
    content: none;
  }
  .flow_cont .flow_box .flow_txt .flow_tit {
    padding: 15px 0 20px;
    font-size: 16px;
    color: #505050;
  }
  .flow_cont .flow_box .flow_txt .detail {
    padding-bottom: 20px;
  }
  .flow_cont .flow_box .flow_txt .detail p {
    color: #828282;
  }
  .flow_cont .flow_box .flow_txt .detail .flow_sub_tit {
    background: #f8f8f8;
    padding: 5px;
    margin-bottom: 10px;
    border: #ccc 1px solid;
  }
  .flow_cont .flow_box .flow_txt .detail .flow_min_tit {
    font-weight: bolder;
    padding-bottom: 10px;
  }
  .flow_cont .flow_box .flow_txt .detail .img {
    width: 100%;
    margin: 10px 0 10px;
  }
}