@charset "utf-8";
/* フォント */

/*---------------------------------------------------
　ケーススタディ　20251024 新ﾌｫｰﾏｯﾄ用ポイント
---------------------------------------------------*/
.number_list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.number_list li {
  margin-bottom: 1.5em;
}

.item_header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0.3em;
}

.mark_circle {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #e60012;
  color: #fff;
  font-weight: bold;
  font-size: 15px;
  flex-shrink: 0;
}

.item_header .title {
  font-weight: 700;
  font-size: 22px;
  color: #000;
  line-height: 1.4;
}

/* 四角マーク */
.mark_square {
  display: inline-block;
  width: 14px;
  height: 14px;
  background-color: #e60012; /* 赤 */
  flex-shrink: 0;
}

.desc {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: #333;
}

.cs_caption01 {
	font-size: 14px;
	line-height: 1.6;
}
 
@media screen and (max-width: 768px) {
  .item_header {
    flex-direction: row; /* 横並びのままでも良い */
    align-items: flex-start;
    gap: 8px;
  }

  .mark_circle {
    width: 26px;
    height: 26px;
    font-size: 13px;
  }

  .item_header .title {
    font-size: 17px;
  }
	
  .mark_square {
    width: 12px;
    height: 12px;
  }

  .desc {
    font-size: 15px;
    line-height: 1.6;
  }
	
  .cs_caption01 {
	font-size: 10pt;
    line-height: 110%;	 
  }
}

/*---------------------------------------------------
　ケーススタディcase185　福岡市議会用
---------------------------------------------------*/

/* =============================
   ギャラリー共通レイアウト
   ============================= */
.image_gallery,
.circle_gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 12px;        /* ← 画像間の隙間を小さく（24px → 12px） */
  margin: 25px 0;   /* ← 行間を詰める（40px → 25px） */
}

/* 画像アイテム共通設定 */
.image_item {
  position: relative;
  text-align: center;
  width: 26%;       /* ← 少し広げて隙間を補う（25% → 26%） */
}

.image_item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

/* 中央の丸い画像 */
.image_item.center {
  width: 38%;       /* ← 若干調整して自然に */
}

.image_item.center img {
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  transform: scale(1.05);
}

/* キャプション */
.caption {
  margin-top: 6px;  /* ← 文字と画像の間も詰める（10px → 6px） */
  font-size: 14px;
  line-height: 1.45;
  color: #333;
}

/* =============================
   レスポンシブ対応
   ============================= */
@media screen and (max-width: 768px) {
  .image_gallery,
  .circle_gallery {
    flex-direction: column;
    align-items: center;
    gap: 16px;      /* モバイルでは少し余裕を残す */
  }

  .image_item {
    width: 85%;
  }

  .image_item.center {
    width: 95%;
  }

  .caption {
    font-size: 13px;
  }
