@charset "UTF-8";

/* テーブルコンテナ：スマホでスクロール可能に */
.wp-block-table {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch; /* iOSでスムーズスクロール */
  margin-bottom: 1.5rem;
  background: linear-gradient(90deg, white 30%, transparent),
    linear-gradient(90deg, transparent, white 70%) 100% 0,
    radial-gradient(farthest-side at 0 50%, rgba(0, 0, 0, 0.2), transparent),
    radial-gradient(farthest-side at 100% 50%, rgba(0, 0, 0, 0.2), transparent)
      100% 0;
  background-repeat: no-repeat;
  background-size: 40px 100%, 40px 100%, 14px 100%, 14px 100%;
  background-attachment: local, local, scroll, scroll;
}

/* テーブル本体：スマホでは最小幅を確保 */
table {
  min-width: 600px; /* 列が潰れないよう最小幅を設定 */
  width: 100%;
  border-collapse: collapse;
}

/* テーブルのスタイリング */
th,
td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid #ddd;
}

th {
  background-color: #f8f9fa;
  font-weight: bold;
}

/* PC・タブレット：768px以上 */
@media screen and (min-width: 768px) {
  table {
    min-width: auto; /* 最小幅の制限を解除 */
    width: 100%; /* 画面幅にフィット */
  }
}
