@charset "UTF-8";

.image-container {
  display: flex;
  align-items: center;
  width: 2000px;
  animation: moveToLeft 15s linear 0s infinite normal;
}
.image-item {
  padding: 1rem 2rem;
  width: 200px;
}

@keyframes moveToLeft {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

.check-list {
  list-style: none !important;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.check-list-item {
  position: relative;
  list-style-type: none !important;
  padding: 1rem 0 1rem 40px !important;
  width: 45%;
}
.check-list-item::before {
  content: '\e5ca';
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  border: 1px solid #aaa;
  width: 20px;
  height: 20px;
  text-align: center;
  line-height: 20px;
  font-family: 'Material Icons';
  font-size: 28px;
}

.flow-container {
  counter-reset: number 0;
}
.flow-item {
  padding: 2rem;
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 3rem;
  background: #FFF;
}
.flow-item::before {
  display: block;
  counter-increment: number 1;
  content: "STEP\A 0" counter(number);
  white-space: pre;
  font-size: 3rem;
  line-height: 1;
  text-align: center;
  font-weight: bold;
  color: var(--i_main_color);
}
.flow-item .left,
.flow-item .right {
  padding: 1rem;
}
.flow-image {
  width: 300px; 
}
.flow-title {
  padding-bottom: 2rem;
}

@media (max-width: 900px) {
  .check-list {
    display: block;
  }
  .check-list-item {
    width: auto;
  }
  .flow-item {
    padding: 1rem;
    display: block;
  }
  .flow-image {
    width: auto;
  }
}
