.single-works .inner {
    max-width: 800px;
    margin: 0 auto;
    padding-bottom: 60px;
	text-align: center;
}

.works-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 30px;
    text-align: center;
}
.works-content .work-summary{
	line-height:1.8;
}
.single-works .inner p{
	line-height:1.8;
}
.works-content {
    font-size: 1rem;
    line-height: 1.8;
	text-align:center;
}
.worlk-gallery {
	line-height:1.8;
}
.gallery-item img,.work-main-image{
	margin: 30px 0;
}
.works-content img {
    max-width: 100%;
    height: auto;
}

/* 横並びギャラリー */
.image-gallery {
  display: grid;
  grid-template-columns: 1fr; /* デフォルトは縦1列 */
  gap: 20px;
  margin: 30px 0;
}

.image-gallery-item img {
  width: 100%;
  height: auto;
}

/* キャプションブロック */
.works-caption-block {
    max-width: 700px;
    margin: 0 auto 2rem;
    font-size: 1rem;
    line-height: 1.8;
    text-align: center;
    color: #444;
}


/* モバイル対応 */
@media screen and (min-width: 1024px) {
  .image-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
    .works-title {
        font-size: 1.5rem;
    }
	
	.works-content.work-summary,.work-gallery.gallery-item .gellery-caption{
		font-size:0.8rem;
	}

    .works-content p {
        font-size: 0.8rem;
    }

    .image-gallery img {
        width: 100%;
    }
}

.back-link {
    margin-top: 60px;
    text-align: center;
}

.back-link a {
    text-decoration: none;
    color: #333;
    border-bottom: 1px solid #ccc;
}
