.wrap-sidebar {
  position: relative;
  display: grid;
  grid-template-columns: 15rem 1fr;  /* 左右コンテンツの大きさ */
  gap: 3rem;  /* コンテンツ間の余白 */
}

.sidebar-in {
  position: sticky;
  top: 0;
  background: gray;
}

.contents {
  background: white;
}


