.locker-flex {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between; 
  background: #ffffff;
  border-radius: 12px;
  padding: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  max-width: 960px;
  margin: 0 auto;
}
  .locker-text {
    flex: 1 1 50%;
	font-weight: 700; /* 太字 */
	font-family: "M PLUS Rounded 1c", "BIZ UDPGothic", sans-serif;
	font-size: clamp(1.4rem, 2.5vw, 1.7rem); /* レスポンシブ */
	line-height: 1.6;
	color: #333;
	padding: 10px;
	text-align: center;
  }

  .locker-text ul {
    margin: 1em 0;
    padding-left: 1.2em;
    list-style: disc;
  }
  
  .locker-image {
    flex: 1 1 45%;
    text-align: center;
  }
  
  .locker-image img {
	width: 100%;
	height: auto;
	display: block;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	border-radius: 6px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  
  .locker-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 1.4rem;
    border: 1px solid #ccc;
  }
  
  .locker-table th,
  .locker-table td {
    border: 1px solid #ccc;
    padding: 12px;
    text-align: center;
  }
  
  .locker-table th {
    background: #f0f8ff;
    font-weight: bold;
    color: #003366;
  }
  
  .locker-table td.amount {
    font-weight: bold;
    color: #d40000;
    background: #fff5f5;
  }
  
  /* モバイル対応：1カラムにする */
  @media (max-width: 768px) {
  .locker-flex {
    flex-direction: column;
    padding: 5px;
    border-radius: 8px;
  }
  
    .locker-text,
    .locker-image {
      flex: 1 1 100%;
      text-align: center;
    }
  
    .locker-table {
      font-size: 1.3rem;
    }
  }
  