/* flow */

/* お問い合わせから制作の流れ */
.flowYouTubeBox {
  max-width: 700px;
  text-align: center;
  margin: 50px auto;
}

.flowYouTubeBox iframe {
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  width: 100%;
  height: auto;
}

.flowListBox {

}

.flowListEachBox {
  background-color: #F4F1E9;
  margin: 20px 0;
  padding: 50px;
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 50px;
  align-items: flex-start;
  border-radius: 15px;
}

.flowListEachBox:after {
  content: "";
  background: #fff;
  position: absolute;
  left: -0.5px;
  top: calc(50% - 17.5px);
  width: 20px;
  height: 35px;
  left: 80px;
  top: -0.5px;
  width: 35px;
  height: 20px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.flowListEachBox:first-child:after {
  display: none;
}

.flowListEachInContentBox {
  flex: 1;
}

.flowListEachInHeaderBox {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 30px;
  margin-bottom: 30px;
}

.flowListEachInHeaderImage {
  width: 90px;
  display: none;
}

.flowListEachInHeaderImage img {
  max-width: 100%;
}

.flowListEachTitle {
  color: #816019;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.5em;
}

.flowListEachTitle span {
  font-size: 22px;
  color: #816019;
  font-family: serif;
  font-weight: 600;
  display: block;
  line-height: 1em;
  margin-bottom: 5px;
}

.flowListEachInImage {
  max-width: 350px;
  width: 350px;
}

.flowListEachInImage img {
  max-width: 100%;
}



.flowPeriod {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.flowPeriod li {
  width: calc((100% - 90px) / 4);
  border-left: 1px solid #cba144;
}

.flowPeriod li:first-child {
  border-left: none;
}

.flowPeriodImage {

}

.flowPeriodImage img {
  width: 100%;
}

.flowPeriodText {
  line-height: 2em;
  margin: 1em 0;
  text-align: center;
}

.flowPeriodText span {
  font-weight: 600;
  font-size: 22px;
}


@media all and (max-width: 1024px) { /* SP */
  .flowYouTubeBox {
    width: 100%;
  }

  .flowYouTubeBox iframe {
    width: 100%;
  }

  .flowListEachBox {
    padding: 30px 15px 20px 15px;
  }

  .flowListEachInHeaderBox {
    gap: 10px;
  }

  .flowListEachInHeaderImage {
    width: 25%;
  }

  .flowListEachTitle {
    width: 75%;
    font-size: 22px;
  }

  .flowListEachTitle span {
    margin-bottom: 0;
  }

  .flowListEachInImage {
    width: 100%;
    max-width: 100%;
  }


  .flowPeriod {
    flex-wrap: wrap;
    gap: 0;
  }

  .flowPeriod li {
    width: 100%;
    border-left: 0;
    border-top: 1px solid #cba144;
  }

  .flowPeriod li:first-child {
    border-top: 0;
  }

  .flowPeriodText {
    margin-top: 2em;
    margin-bottom: 2em;
  }

}

@media all and (min-width: 1025px) { /* PC */

}