@charset "utf-8";
/*  style　[  page ]
=================================================================== */


/* flow */
.flow_design {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flow {
  padding-left: 0;
  border-bottom: solid 1px #E1E8ED;
}

.flow > li {
  list-style-type: none;
  display: flex;
  padding: 20px 0;
  border-top: solid 1px #E1E8ED;
}

.flow > li dl dt {
  font-size: 1.2em;
  line-height: 2;
  font-weight: bold;
  margin-bottom: 10px;
}

.flow > li .icon {
  line-height: 1;
  font-size: 2em;
  font-weight: bold;
  color: #a86c65;
  text-align: center;
  width: 70px;
  position: relative;
  margin-top: 0;
}

.flow > li .icon::before {
  content: 'STEP';
  font-size: 0.3em;
  display: block;
  margin-bottom: 3px;
  letter-spacing: 1px;
}

.flow > li .icon::after {
  content: "";
  display: block;
  width: 1px;
  height: calc(100% - 40px);
  background-color: #858585;
  position: absolute;
  left: 0;
  right: 0;
  top: 60px;
  margin: auto;
}

.flow > li dl dd {
  margin: 0;
}

.flow > li dl {
  width: calc(100% - 70px);
  margin-top: 0.8em;
}






/* works */
.work-box {
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 30px;
    align-items: center;
}
.work-boxR {
    justify-content: space-between;
    flex-direction: row-reverse;
    flex-wrap: wrap;
    margin-bottom: 30px;
    align-items: center;
}
.work-img {
    width: 45%;
}
.work-text {
    width: 45%;
}
/* ～767px(xs) ____________________________________________________ */
@media screen and (max-width: 767px) {
    .work-boxR {
    flex-direction: row;
}
.work-img {
    width: 96%;
    margin: 10px auto;
}
.work-text {
    width: 96%;
    margin: 10px auto;
}
}

@media screen and (max-width: 480px) {
}