@charset "UTF-8";
/* CSS Document */
h1{
  margin-top: 100px;
}
/*flow==========*/
ol{
  counter-reset: listnum;
}
ol li{
  border: var(--border);
  border-radius: 10px;
  margin: 2em 0;
  padding: 1em;
  background-color: var(--white);
  text-align: center;
}
ol li::before{
  counter-increment: listnum;
  content: counter(listnum);
  display: inline-block;
  position: absolute;
  top: 11px;
  left: 67px;
  font-size: 22px;
  color: #aaa;
}
ol li:not(:last-of-type)::after{
  content: "";
  width: 1px;
  height: 2.5em;
  position: absolute;
  bottom: -2.5em;
  left: 50%;
  transform: translateX(-50%);
  border-right: var(--border);
  z-index: -1;
}
ol li h2::before{
  content: "STEP";
  width: 4em;
  height: 1em;
  font-size: 16px;
  position: absolute;
  top: 1px;
  left: -5px;
  display: inline-block;
  color: #aaa;
}
ol li h2{
/*  margin-left: 1.5em;*/
}
/*guide======================*/
.guide>div{
  display: flex;
  flex-flow: row nowrap;
}
.guide >div>div{
  border: var(--border);
  border-radius: 10px;
  padding: 1em;
  width: 50%;
}
.guide>div>div:first-of-type{
  margin-right: 1em;
}
.guide li:not(:last-of-type){
  margin-bottom: 1em;
}
/*SP============================================*/
@media screen and (max-width: 768px) {
  ol li::before{
    left: 20px;
  }
  ol li h2::before{
    content: "";
  }
  .guide>div{
    flex-flow: column;
  }
  .guide>div>div{
    width: 100%;
    margin-bottom: 2em;
  }
  .guide>div>div:first-of-type{
    margin-right: 0;
  }
}