@charset "UTF-8";
/*
  /asset/css/object/component/c-check.css
  リストCSS
*/
.c-check-list {
  &.c-check-list--large {
    .c-check-item {
      font-size: 18px;
      line-height: 1.2;
      padding: 0 0 0 24px;
      @media screen and (max-width: 600px) {
        font-size: 14px;
        margin: 10px 0 0;
      }
      &::before {
        width: 14px;
        height: 10px;
        @media screen and (max-width: 600px) {
          width: 10px;
          height: 6px;
          top: 2px;
        }
      }
    }
  }
}

.c-check-item {
  position: relative;
  text-align: left;
  margin: 12px 0 0;
  padding: 0 0 0 18px;
  &::before {
    content: "";
    width: 10px;
    height: 7px;
    border-radius: 0;
    background: none;
    border-top: solid 2px var(--rdenshihozon-primary);
    border-right: solid 2px var(--rdenshihozon-primary);
    display: block;
    position: absolute;
    top: 2px;
    left: 0;
    transform: rotate(135deg);
  }
  &:first-child {
    margin: 0;
  }
}
