body {
  margin: 0;
background-color: #333333; /* ダークグレーの背景色を指定 */
color: #c9c9c9; /* 明るい灰色のテキスト色を指定 */
}

.sidebar {
  position: fixed;
  width: 110px;
  height: 100%;
  left: 0;
  top: 0;
  background-color: #101010;
  padding: 20px;
  overflow: auto;
  z-index: 1000;
}

.button {
  padding: 5px 10px;
  background-color: #4b0082;
  color: #fff;
  text-decoration: none;
  text-align: center;
  border-radius: 3px;
  display: inline-block;
  margin-bottom: 10px; /* ボタン間に20ピクセルのマージンを追加 */
}

.button:hover {
  background-color: #00bfff;
  text-decoration: none;
  color: #fff;
}

.button-group {
  display: flex;
  flex-direction: row;
  gap: 5px;
}

.main-content {
 background-color: #333333; /* ダークグレーの背景色を指定 */
  margin-left: 170px;
  padding: 20px;
  width: calc(100% - 170px); /* メインコンテンツの幅を計算して指定 */
}
.main-content a:link{
  color: #c9c9c9; /* リンクのデフォルト色を明るい灰色に指定 */
}
.main-content a:visited {
  color: #0000FF; /* リンクのデフォルト色を明るい灰色に指定 */
}

.main-content a:hover,
.main-content a:active {
  color: #ffffff; /* リンクのホバー時およびアクティブ時の色を白色に指定 */
}
#button-current {
    background-color: #707070;
}

.thumbnails {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: flex-start;
}

.thumbnail {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    border: 2px solid #fff;
    background-color: black;
    overflow: hidden;
    height: 100%;
    width: 130px; /* 追加: 枠の幅を140pxに設定 */
    height: 140px; /* 追加: 枠の高さを150pxに設定 */
    padding-top: 10px; /* 追加: サムネイルの上部に50pxの余白を設定 */
}
.thumbnail img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
}

.prompt {
    padding: 5px;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
    background-color: rgba(0, 0, 0, 0.5);
}
.prompt a {
    color: white;
    text-decoration: none;
}
.prompt:hover {
    text-decoration: underline;
}
.margin100 {
  margin-bottom: 100px;
}


.crlf10 {
  height: 10em;
}
.crlf20 {
  height: 20em;
}

.crlf30 {
  height: 30em;
}

