@charset "UTF-8";
/*
  /rakurakucloud/jidootai/asset/css/object/component/c-point-box.css
  Point!用のボックスCSS
*/
.c-point-box__wrap {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 30px;
  padding: 20px;
  background-color: var(--gray-bg-02);
  border-radius: 10px;
  &::after {
    content: "";
    display: block;
    position: absolute;
    top: 20px;
    left: 110px;
    width: 1px;
    height: calc(100% - 40px);
    background-color: var(--gray-bg-01);
  }
  @media screen and (max-width: 840px) {
    gap: 20px;
    grid-template-columns: 1fr;
    &::after {
      display: none;
    }
  }
}
.c-point-box__point {
  font-size: 18px;
  font-weight: bold;
  color: var(--rjidootai-primary);
  text-align: center;
  padding: 10px;
  @media screen and (max-width: 840px) {
    padding: 5px;
    font-size: 16px;
    padding: 0 10px 20px;
    border-bottom: 1px solid var(--gray-bg-01);
  }
}
.c-point-box-item {
  position: relative;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.4;
  padding: 0 0 0 35px;
  &::before {
    content: "";
    width: 20px;
    height: 20px;
    border-radius: 20px;
    background: var(--rjidootai-primary);
    display: block;
    position: absolute;
    top: 2px;
    left: 0;
  }
  &::after {
    content: "";
    width: 9px;
    height: 6px;
    border-radius: 0;
    background: none;
    border-top: solid 2px var(--white);
    border-right: solid 2px var(--white);
    display: block;
    position: absolute;
    top: 8px;
    left: 6px;
    transform: rotate(135deg);
  }
  &:not(:last-child) {
    margin: 0 0 10px;
  }
  @media screen and (max-width: 840px) {
    font-size: 14px;
    padding: 0 0 0 20px;
    &::before {
      width: 16px;
      height: 16px;
    }
    &::after {
      width: 7px;
      height: 5px;
      top: 7px;
      left: 5px;
    }
  }
}