.page { 
    position: relative;
    height: 445px;
  }

  .service_page{
    position: relative;
    height: 900px;
  }
  .new_page{
    position: relative;
    height: 900px;
  }
  .card_page { 
    position: relative;
    height: 325px;
  }
  .member_page { 
    position: relative;
    height: 485px;
  }
  .content {
     width: 100%;
  }
  
  .wrapper {
    position: relative;
    width: 100%; 
    height: 100%; 
    padding: 0; 
    overflow-y: scroll; 
    overflow-x: hidden; 
    border: 1px solid #ddd;
  }
  
  .page::after { 
    content:'';
    position: absolute;
    z-index: -1;
    height: calc(100% - 20px);
    top: 10px;
    right: -1px;
    width: 5px;
    background: #666;
  }
  
  .service_page::after { 
    content:'';
    position: absolute;
    z-index: -1;
    height: calc(100% - 20px);
    top: 10px;
    right: -1px;
    width: 5px;
    background: #666;
  }
  
   .card_page::after { 
    content:'';
    position: absolute;
    z-index: -1;
    height: calc(100% - 20px);
    top: 10px;
    right: -1px;
    width: 5px;
    background: #666;
  }
  
  .wrapper::-webkit-scrollbar {
      display: block;
      width: 5px;
  }
  .wrapper::-webkit-scrollbar-track {
      background: transparent;
  }
      
  .wrapper::-webkit-scrollbar-thumb {
      background-color: black;
      border-right: none;
      border-left: none;
  }
  
  .wrapper::-webkit-scrollbar-track-piece:end {
      background: transparent;
      margin-bottom: 10px; 
  }
  
  .wrapper::-webkit-scrollbar-track-piece:start {
      background: transparent;
      margin-top: 10px;
  }