@charset "UTF-8";

/* 基本的なリストスタイル（column006等を継承） */
.contents ol.step-list {
  list-style: none;
  counter-reset: step;
  padding: 0 0 0 2.5em;
  margin: 16px 0 24px;
}

.contents ol.step-list li {
  position: relative;
  margin-bottom: 16px;
  line-height: 1.6;
  color: #1c1c1c;
  font-size: 16px;
}

.contents ol.step-list li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: -2.5em;
  top: 0;
  width: 1.8em;
  height: 1.8em;
  background-color: #FE9D2D;
  color: #fff;
  text-align: center;
  line-height: 1.8em;
  border-radius: 50%;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0;
  text-indent: 0;
}

/* スマホ対応 */
@media(max-width: 899px) {
  .contents ol.step-list {
    padding-left: 2em;
  }
  .contents ol.step-list li {
    font-size: 14px;
    margin-bottom: 12px;
  }
  .contents ol.step-list li::before {
    left: -2.2em;
    width: 1.6em;
    height: 1.6em;
    line-height: 1.6em;
    font-size: 13px;
  }
}