@charset "utf-8";
@font-face {
  font-family: 'Kameron';
  src: url('/fonts/Kameron.woff2') format('woff2');
  font-display: swap;
}
body {
      font-family: 'Helvetica', 'Arial', sans-serif;
      background-color: #f9f9f9;
      padding: 40px 20px;
      display: flex;
      justify-content: center;
    }

 .table-container {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  max-width: 100%;
}

table {
  width: 100%;
  table-layout: fixed; /* ← 各セルの幅を均等にしてくれる */
  border-collapse: collapse;
}

th, td {
  padding: 0.8em;
  border: 1px solid #ccc;
  word-break: break-word; /* 長文でも折り返し */
  font-size: 0.95em;
}

    th {
      background-color: #e6f0ff;
      font-weight: bold;
      width: 25%;
      white-space: nowrap;
    }

    td {
      background-color: #ffffff;
    }

    tr:nth-child(even) td {
      background-color: #f7faff;
    }

    .highlight-red {
      color: red;
      font-weight: bold;
    }
.btn-link-s {
  display: inline-block;
  background-color: #f37070;
  color: #fff;
  text-decoration: none;
  padding: 12px 20px;
  margin: 10px 8px;
  border-radius: 9999px;  /* ← これで pill（カプセル型）になります */
  font-size: 16px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}
.btn-link-s p{
  color: #fff;
}

.btn-link-s:hover {
  background-color: #d85050;
}
.bottom-buttons p a:link{
	color: #fff;
}
    @media (max-width: 600px) {
	.table-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  table {
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
    min-width: 100%;
  }

  th, td {
    border: 1px solid #ccc;
    padding: 0.8em;
    word-break: break-word;
    font-size: 0.95em;
    box-sizing: border-box;
	  word-break: break-word;   /* 長い単語を強制的に折り返す */
  white-space: normal;      /* nowrapになってたら解除！ */
  overflow-wrap: break-word; /* より強く改行を指示 */
  }

  th {
    width: 30%;
    background-color: #e8f4fb;
    text-align: left;
  }

  html, body {
    max-width: 100vw;
    overflow-x: hidden;
  }
}
