/* ========================================
   施工事例ページ
======================================== */

.work-section {
  margin-bottom: 90px;
}

/* 各施工ブロック */
.center-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 80px;
}

/* タイトル */
.pill {
  display: inline-block;
  background-color: #ffffff;
  color: #B79769;
  border: 2px solid #B79769;
  border-radius: 50px;
  font-weight: 700;
  letter-spacing: 1px;
  text-align: center;
  width: 800px;
  height: 48px;
  line-height: 44px;
  font-size: 16px;
  box-sizing: border-box;
  margin: 20px auto 20px;
}

/* タイトル下の説明文 */
.work-description {
  max-width: 800px;
  margin: 0 auto 30px;
  text-align: center;
  line-height: 1.9;
  color: #555;
  font-weight: 700;
}

/* 画像一覧 */
.work-images {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 32px;
  width: 100%;
}

/* 各画像ブロック */
.work-item {
  text-align: center;
  flex: 1 1 280px;
  max-width: 500px;
}

/* 2列 × 2行にしたい場合 */
.work-images.two-column {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 500px));
  justify-content: center;
  gap: 24px 40px;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

/* 2列 × 2行にしたい場合 各画像ブロック */
.work-images.two-column .work-item {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

/* 各画像のラベル */
.work-item-label {
  margin-bottom: 10px;
  font-size: 13px;
  font-weight:700;
  color: #666;
}

/* 画像 */
.work-photo {
  width: 100%;
  max-width: 500px;
  height: auto;
  display: block;
  border-radius: 6px;
  border: 1px solid #d9d9d9;
  box-sizing: border-box;
}

/* ========================================
   スマホ
======================================== */
@media (max-width: 768px) {

  .work-section {
    margin-bottom: 60px;
  }

  .center-stack {
    margin-bottom: 60px;
  }

  .pill {
    width: 80%;
    height: auto;
    line-height: 1.5;
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 30px;
  }

  .work-description {
    width: 80%;
    margin: 0 auto 24px;
    text-align: center;
    line-height: 1.9;
  }

  /* SPではすべて縦並び */
  .work-images {
    display: block;
    width: 100%;
  }

  .work-item {
    width: 100%;
    max-width: none;
  }

  .work-item + .work-item {
    margin-top: 32px;
  }

  .work-photo {
    width: 80%;       /* .pill と同じ幅 */
    max-width: none;
    height: auto;     /* 比率を維持 */
    margin: 0 auto;
    display: block;
  }

  .work-item-label {
    width: 80%;
    margin: 0 auto 8px;
    text-align: center;
  }
  
 /* スマホでは1列表示 */
    .work-images.two-column {
    display: block;
  }

  .work-images.two-column .work-item + .work-item {
    margin-top: 32px;
  }
}