@charset "utf-8";
/*------------------------------------------------
施工の流れ
------------------------------------------------*/


/*========== 施工の流れリスト ==========*/

#workflow {}

.workflow-ttl {
  text-align: center;
  font-size: 2rem;
  line-height: 1.5;
  margin: 25px 0;
}

.workflow-list {
  margin: -25px auto 50px;
  width: 100%;
  height: auto;
}

.workflow-item {
  width: 100%;
  height: auto;
  position: relative;
}

.workflow-item:not(:last-of-type) {
  padding-bottom: 25px;
}

@media print, screen and (min-width: 769px) {
  #workflow {}

  .workflow-ttl {
    font-size: 3rem;
    line-height: 1.5;
    margin: 70px 0 35px;
  }

  .workflow-txt {
    text-align: center;
    font-size: 1.8rem;
  }

  .workflow-list {
    margin: -25px auto 110px;
  }
  .workflow-item{
    width: 319px;
    margin: auto;
  }
}


/*番号*/
.workflow-item-no {
  color: #fff;
  background:radial-gradient(farthest-side circle at center bottom, #b5d9c0, #4e9f9a 40%, #13686f 80%, #0e5558);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  text-shadow: 1px 1px 2px #000;
  width: 66px;
  height: 66px;
  border-radius: 50%;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.35);
  position: relative;
  bottom: -33px;
}

.workflow-item-no::after {
  content: "";
  background: radial-gradient(farthest-side circle at center bottom, rgba(255,255,255, 0) 80%, rgba(255,255,255, 0.1) 84%, rgba(255,255,255, 1));
  color: #fff;
  border-radius: 50%;
  width: calc(100% - 6px);
  height: calc(100% - 6px);
  display: block;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 3px;
  left: 3px;
}

@media print, screen and (min-width: 769px) {
  .workflow-item-no {
    left: -33px;
    font-size: 3.5rem;
  }
}


/*写真*/
.workflow-item-pic {
  width: calc(100% - 66px);
  margin: auto;
  height: auto;
}

.workflow-item-pic > img {
  width: 100%;
}

@media print, screen and (min-width: 769px) {
  .workflow-item-pic {
    width:100%;
  }
}


/*タイトル*/

.workflow-item-ttl {
  text-align: center;
  font-size: 2rem;
}

@media print, screen and (min-width: 769px) {
  .workflow-item-ttl {
    font-size: 2.4rem;
    margin-top: 5px;
  }
}

/*矢印*/
.workflow-item:not(:last-of-type)::after {
  content: "";
  background-image: url(../../images/workflow/workflow_item_icon_arrow.png);
  background-size: cover;
  display: block;
  width: 86px;
  height: 54px;
  position: absolute;
  bottom: -33px;
  left: 50%;
  margin-left: -39px;
}

/*ポイント*/
.point-box {
  background-color: #c5d9f1;
  padding: 25px 15px 15px;
  border-radius: 10px;
  box-shadow: 5px 5px 5px rgba(0,0,0,0.3);
  width: calc(100% - 66px);
  height: auto;
  margin: 35px auto 25px;
  position: relative;
}
.point-box::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 40px 15px 40px 15px;
  border-color: rgba(197, 217, 241, 0) rgba(197, 217, 241, 0) rgba(197, 217, 241, 1) rgba(197, 217, 241, 0);
  position: absolute;
  top: -70px;
  left: 115px;
  transform: rotate(25deg) translate3d(0, 0, 0);
}

.point-box::after {
  content: "";
  display: block;
  background-image: url(../../images/workflow/workflow_item_icon_point.png);
  background-size: contain;
  width: 172px;
  height: 75.5px;
  position: absolute;
  top: -45px;
  left: -45px;
}
.point-ttl {
  font-size: 1.6rem;
  line-height: 1.5;
  padding-bottom: 5px;
}
.point-ttl::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #000;
  margin-top: 10px;
}

.point-txt {
  font-size: 1.3rem;
  text-align: justify;
}

@media print, screen and (min-width: 769px) {
  .point-box {
    width: 295px;
    padding: 40px 20px 15px;
    box-shadow: 5px 5px 10px rgba(0,0,0,0.6);
    position: absolute;
    display: block;
    right: -335px;
    top: -70px;
  }
  .point-box::before {
    border: none;
    background-image: url(../../images/workflow/workflow_item_icon_point_arrow.png);
    width: 88px;
    height: 47px;
    top: auto;
    bottom: -47px;
    left: 0;
    transform:none;
  }
  .point-box::after {
    top: -25px;
    left: -30px;
  }
  .point-ttl {
    font-size: 2.15rem;
    line-height: 1.2;
    text-align: center;
    white-space: nowrap;
  }
  .point-ttl::after {
    margin-top: 15px;
  }
  .point-txt {
    font-size: 1.6rem;
    line-height: 2;
  }
}
