@charset "UTF-8";

/* =====================================
Individual class
------------------------------------- */
:root {
  --txt-color: #08107b;
  --bg-color: #d6d6d6;
  --gray-color: #777777;
}

ul {
  &.company_outline-ul {
    /* position: relative; */



    li {
      display: flex;
      position: relative;
      padding-bottom: 25px;

      p {
        margin-bottom: 0;
      }

      &::before {
        content: "";
        border: 5px solid var(--gray-color);
        background: #fff;
        width: 20px;
        height: 20px;
        border-radius: 20px;
        position: absolute;
        left: 2px;
        z-index: 3;
      }

      &::after {
        position: absolute;
        content: "";
        display: block;
        width: 5px;
        height: 100%;
        background: var(--bg-color);
        top: 0;
        left: 10px;
      }

      &:last-child {
        padding-bottom: 0;

        &:after {
          display: none;
        }
      }

      .outline-box01 {
        display: flex;
        padding-left: 40px;
        width: 65%;

        .outline-box_ttl {
          width: 5em;
          color: var(--txt-color);
          font-weight: bold;
        }
        .outline-box_txt{
          width: calc(100% - 5em);
        }

      }

      .outline-box02 {
        width: 30%;
        img{
          width: 80%;
        }
      }

    }
  }
}

@media only screen and (max-width: 767px) {}