

.microcms-section.overseas-result {
  margin-top: 6em;
  overflow-x: auto; /* スマホサイズでスクロール可能にする */
}

.microcms-section.overseas-result table {
  width: 100%; /* 横幅いっぱいにする */
  border-collapse: collapse;
}

@media screen and (min-width: 835px) {
  .microcms-section.overseas-result {
      overflow-x: visible; /* PCサイズではスクロール不要 */
  }
}
.microcms-section.overseas-result h2 {
  font-size: 22px;
  font-weight: bold;
  text-align: left;
  padding: 5px 0;
  padding-left: 18px;
  border-left: 4px solid #128ad6;
  background: #fff;
  color: #128ad6;
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  margin-top: 2.5em;
}

.microcms-section.overseas-result h2 .font-small {
  font-size: 0.5em;
}

.microcms-section.overseas-result h2:first-of-type {
  margin-top: 0;
}

@media screen and (min-width: 835px) {
  .microcms-section.overseas-result h2 {
    margin-bottom: 40px;
    font-size: 32px;
    padding: 6px 0;
    padding-left: 26px;
    border-left: 6px solid #128ad6;
    gap: 20px;
  }
}

/* tbody内の行を交互に背景色を設定 */
.microcms-section.overseas-result tbody tr:nth-child(odd) {
  background-color: #FFFFFF;
}

.microcms-section.overseas-result tbody tr:nth-child(even) {
  background-color: #F2F2F2;
}

.microcms-section.overseas-result td {
  padding: 8px;
  border: 1px dotted #BDBDBD;
  font-size: 16px; /* フォントサイズ16px */
}

/* 1, 4, 5列目は改行禁止 */
.microcms-section.overseas-result th:nth-child(1),
.microcms-section.overseas-result th:nth-child(4),
.microcms-section.overseas-result th:nth-child(5),
.microcms-section.overseas-result td:nth-child(1),
.microcms-section.overseas-result td:nth-child(4),
.microcms-section.overseas-result td:nth-child(5) {
  white-space: nowrap;
}

/* ヘッダーを除く1, 2, 3列目は左揃え */
.microcms-section.overseas-result td:nth-child(1),
.microcms-section.overseas-result td:nth-child(2),
.microcms-section.overseas-result td:nth-child(3) {
  text-align: left;
}

/* 4, 5列目は中央揃え（ヘッダー含む） */
.microcms-section.overseas-result th:nth-child(4),
.microcms-section.overseas-result th:nth-child(5),
.microcms-section.overseas-result td:nth-child(4),
.microcms-section.overseas-result td:nth-child(5) {
  text-align: center;
}

.microcms-section.overseas-result th {
  background-color: #fce8de;
  font-weight: bold;
  color: #000000;
  border: 1px dotted #BDBDBD;
  padding: 4px;
  font-size: 16px; /* フォントサイズ16px */
}