@charset "UTF-8";
/*
  /asset/css/object/component/c-check-fv.css
  TOPページFV用チェックCSS
*/
.c-check-fv-list {
  position: relative;
  z-index: 100;
}
.c-check-fv-item {
  font-size: 20px;
  font-weight: 700;
  position: relative;
  padding: 3px 0 0 28px;
  text-align: left;
  @media screen and (max-width: 1024px) {
    font-size: 18px;
  }
  @media screen and (max-width: 840px) {
    font-size: 16px;
  }
  @media screen and (max-width: 600px) {
    font-size: 14px;
  }
  &:not(:first-child) {
    margin: 10px 0 0 0;
    @media screen and (max-width: 840px) {
      margin: 6px 0 0 0;
    }
  }
  &::before {
    content: "";
    position: absolute;
    left: 0;
    top: 16px;
    transform: translateY(-50%);
    width: 21px;
    height: 21px;
    background: var(--rsaikenkanri-primary);
    border-radius: 11px;
    @media screen and (max-width: 600px) {
      top: 12px;
      width: 18px;
      height: 18px;
    }
  }
  &::after {
    content: "";
    width: 8px;
    height: 6px;
    border-top: solid 2px var(--white);
    border-right: solid 2px var(--white);
    display: block;
    position: absolute;
    left: 7px;
    top: 12px;
    transform: rotate(135deg);
    @media screen and (max-width: 600px) {
      left: 5px;
      top: 8px;
      width: 9px;
      height: 6px;
    }
  }
}
