/* Front + Editor 共通の見た目（画像の雰囲気に寄せた基本形） */

.cls-spl {
	width: 100%;
  }
  
  .cls-spl__list {
	list-style: none;
	padding: 0;
	margin: 0;
  }
  
  .cls-spl__item {
	border-bottom: 1px solid #dcdcdc;
	padding: 7px 0;
  }
  
  .cls-spl__item:first-child {
	padding-top: 0;
  }
  
  .cls-spl__link {
	display: block;
	text-decoration: none;
	color: inherit;
  }
  
  .cls-spl__meta {
	display: flex;
	align-items: center;
	gap: 18px;
  }
  
  .cls-spl__label {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 6px 18px;
	border-radius: 5px;
	font-weight: 700;
	letter-spacing: 0.02em;
	line-height: 1;
	min-width: 90px; /* 画像の「試合」「お知らせ」みたいな幅感 */
  }
  
  .cls-spl__date {
	font-size: 18px;
	color: #111;
  }
  
  .cls-spl__title {
	margin-top: 7px;
	font-size: 14px;
	line-height: 1.35;
	color: #111;
  }
  
  .cls-spl__empty {
	padding: 10px 0;
	color: #666;
	font-size: 14px;
  }

  /* もっと見るボタン */
  .cls-spl__loadmore-wrap {
	text-align: center;
	margin-top: 20px;
  }

  .cls-spl__loadmore {
	display: inline-block;
	padding: 10px 40px;
	border: 2px solid #1f6d82;
	border-radius: 5px;
	background: #fff;
	color: #1f6d82;
	font-size: 15px;
	font-weight: 700;
	cursor: pointer;
	transition: background 0.2s, color 0.2s;
  }

  .cls-spl__loadmore:hover {
	background: #1f6d82;
	color: #fff;
  }

  .cls-spl__loadmore:disabled {
	opacity: 0.6;
	cursor: wait;
  }