.td_tl1 {
    border-left: 9px solid #EA5504;
    padding: 15px 25px;
    margin: 0px 0px 30px;
    background-color: #0D3F97;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
}

.btn {
    display: inline-block;
    font-weight: 700;
    text-align: center;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.3);
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 102, 0, 0.4);
}

.btn-large {
    padding: 16px 40px;
    font-size: 18px;
}

.title-banner {
  border-width: 0px 0px 0px 9px;
  border-color: #EA5504;
  border-style: solid;
  padding: 15px 25px;
  margin: 0px 0px 30px;
  background-color: #0D3F97;
  color: #fff;
  font-size: 28px;
  font-weight: 800;
}


/* 全体容器 */
.sponsor-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
}

/* グリッド共通設定 */
.sponsor-grid {
  display: grid;
  gap: 16px;
  margin-bottom: 32px;
  align-items: center;
  width: 100%;
}

/* スポンサー枠共通スタイル */
.sponsor-item {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100px;
  padding: 10px;
  background-color: #fff;
  border: 1px solid #e0e0e0;
  text-decoration: none;
  color: #333;
  box-sizing: border-box;
  transition: opacity 0.2s ease;
  
  /* ★修正ポイント：テキスト長による横幅のはみ出しを防止 */
  min-width: 0;
  overflow: hidden;
}

.sponsor-item:hover {
  opacity: 0.7;
}

/* 画像ロゴの設定 */
.sponsor-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* テキスト表示の設定（枠内での自動改行を許可） */
.sponsor-text {
  white-space: normal;       /* 改行を許可 */
  word-break: break-word;    /* 長い社名でも枠内で自然に折り返し */
  overflow-wrap: break-word;
  font-size: 13px;           /* 2〜3行になっても収まりやすいよう少し小さめに設定 */
  line-height: 1.3;          /* 改行時の行間 */
  font-weight: bold;
  text-align: center;
  width: 100%;
  display: block;
}

/* モバイル表示（デフォルト） */
.grid-1 { grid-template-columns: 1fr; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(2, 1fr); }
.grid-6 { grid-template-columns: repeat(3, 1fr); }

/* PC表示（画面幅768px以上） */
@media (min-width: 768px) {
  .grid-1 { grid-template-columns: repeat(1, 1fr); }
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
  .grid-6 { grid-template-columns: repeat(6, 1fr); }
}

/* ==========================================
   テキストのみの横並び羅列表示
   ========================================== */
.sponsor-list-inline {
  display: flex;
  flex-wrap: wrap;       /* 画面端に到達したら自動で次の行へ折り返し */
  align-items: center;
  gap: 10px 24px;        /* 上下の間隔: 10px / 左右の間隔（前後スペース）: 24px */
  margin-bottom: 32px;
  padding: 10px 0;
}

/* 個々の社名リンク */
.sponsor-list-inline .sponsor-item {
  display: inline-block;
  height: auto;          /* 枠の高さを解除 */
  padding: 0;            /* 枠の余白を解除 */
  background: none;      /* 背景色を解除 */
  border: none;          /* 枠線を解除 */
  text-decoration: none;
  white-space: nowrap;   /* 社名の途中での改行を防止 */
}

/* ホバー時の装飾 */
.sponsor-list-inline .sponsor-item:hover {
  opacity: 1;
  text-decoration: underline;
}

/* テキスト設定 */
.sponsor-list-inline .sponsor-text {
  font-size: 14px;
  font-weight: normal;   /* 太字を解除（太字にしたい場合は bold にしてください） */
  color: #333;
  white-space: nowrap;   /* 社名の途中での改行を防止 */
  display: inline;
}


.check-list {
  list-style: none;
  padding: 0;
}

.check-item {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  line-height: 1.6;
}

.check-item::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #10b981; /* チェックの色 */
  font-weight: bold;
  font-size: 1.1em;
}