.career-container {
  .career-content {
    margin-top: 2vw;
  }

  .bullet-point-list {
    column-count: 2;
  }
  .career-content:last-child {
    .bullet-point-list {
      display: grid;
      grid-template-rows: repeat(7, 0fr);
      grid-auto-flow: column;
    }
  }

  .career-content-employment {
    img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      align-self: center;
    }
  }
  
}
  

  
  /* スマホ版 */
  @media screen and (max-width: 768px) {
    .career-container {
      .bullet-point-list {
        column-count: 1;
      }

      .career-content:last-child {
        .bullet-point-list {
          display: block;
        }
      }
    }
    

  } 