@charset "utf-8";
@import url("root.css");

/***************************************
-------------- LINE --------------
***************************************/
.line_flowItem {
  border: solid 1px var(--base-color01);
  background: #fff8ed;
  position: relative;
}

.line_flowItem--number {
  display: flex;
  width: 50px;
  height: 50px;
  align-items: center;
  justify-content: center;
  background: var(--base-color01);
  color: #fff;
  font-size: clamp(1.6rem, 1.459rem + 0.601vw, 2rem);
  position: absolute;
  left: 0;
  top: 0;
}

@media (max-width: 599px) {
  .line_flowItem--number {
    width: 30px;
    height: 30px;
  }
}

.line_flowItem img {
  width: 100%;
}

.line_flowItem--text{
  margin: 1em!important;

}