.inner {
  margin-bottom: 100px;
}

.list_tit {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #000000;
    text-shadow: 0 2px 6px rgba(0,0,0,0.3);
    position: relative;
    z-index: 1;
    margin-bottom: 3rem;
    }


  ul.list {
    display: grid;
    /* 2列に分ける */
    grid-template-columns: repeat(2, 1fr);
    /* 行間・列間の余白 */
    gap: 1rem 0.5rem;
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
  }

  /* li 自体を縦並びに */
  ul.list .logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  /* ロゴ画像の大きさを統一 */
  ul.list .logo-item img {
    width: 250px;       /* お好みの幅に調整 */
    height: 100px;       /* 縦横比が異なるものはここで切り抜かれます */
    object-fit: contain;/* 中心に収めつつ余白を許容 */
    display: block;
  }



/* レスポンシブ：最大幅768pxなら1列に */
@media screen and (max-width: 768px) {
  ul.list {
    grid-template-columns: 1fr;  /* 1列 */
    gap: 2rem;
    margin-bottom: 2rem;
  }

  ul.list .logo-item img {
    width: 150px;
    height: auto;
  }
}