.page-gakudo .menu-sticky {
    width: 0px;
    margin-right: 40px;
}

/* ギャラリー全体のコンテナ */
.image-gallery {
  max-width: 1024px;
  margin: 40px auto; /* 上下に余白をとり、中央に配置 */
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

/* 横位置画像 */
.gallery-landscape img {
  width: 100%;
  height: auto;
  border-radius: 8px; /* 少し角を丸める */
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* 縦位置画像コンテナ */
.gallery-vertical-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* 縦位置画像 */
.gallery-vertical img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* レスポンシブ対応（小さい画面では縦並びにする例） */
@media screen and (max-width: 768px) {
  .gallery-vertical-container {
    grid-template-columns: 1fr;
  }
}

.pdf-image img{
    max-width: 1024px;
}

@media screen and (max-width: 1024px) {
    .page-gakudo .menu-sticky {
        margin-right: 0;
        width: 24px;
        background-color: #F3F0E7;
    }

    .page-gakudo .vertical-title{
      color: #28A06C;
    }

    .page-gakudo .post-title{
        font-size: 12px;
    }
}