.example {
  border: solid 1px;
  margin: 5px;
}

.example span {
  margin: 5px;
}

.under-dev {
  color: #000099;
  background-color: #ccccff;
}

.app {
  color: #ff0000;
  background-color: #ffe699;
}

 td.app {
  position: relative;
}

td.app::before {
  content: "★"; /* 星マーク */
  color:  #ff0000;
  position: absolute;
  top: 2px;
  left: 2px;
  display: inline-block; /* ← これがポイント！ */
  width: auto;
  height: auto;
  line-height: normal;
  z-index:2;
}

.newicon-container {
    position: relative;
    margin: auto;
    width: 150px;
}

td span.small {
    font-size: small;
    font-weight: normal;
}

.ble_matrix {
  border-spacing: 0;
  border-collapse: collapse;
  width: 100%;
  border-right: solid 1px #333;
  border-bottom: solid 1px #333;
  /* overflow: hidden; */
  table-layout: fixed;
  white-space: normal;
  min-width: 1500px;
}
/* スマホなど画面幅が狭いときだけ横幅を1500pxにする */
@media screen and (max-width: 768px) {
  .ble_matrix {
    width: 1500px;
  }
}

.ble_matrix img {
  width: auto;
}

.ble_matrix th {
  text-align: center;
  vertical-align: middle;
  border: solid 1px #333;
  position: relative;
  background-color: #1f4e78;
  color: #ffffff;
}

.ble_matrix .th0 {
  text-align: center;
  vertical-align: bottom;
  border-top: none;
  border-right: none;
  border-left: none;
  background-color: #fff;
}

.ble_matrix th:nth-child(3),
.ble_matrix td:nth-child(3) {
  border-right: solid 1px #333;
}

.ble_matrix td {
  line-height: 3.5em;
  text-align: center;
  border: solid 1px #333;
  position: relative;
}

.ble_matrix td a {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  font-weight: bold;
  text-decoration: underline;
}

.ble_matrix td.under-dev a {
    color: #000098;
}

.ble_matrix td:nth-child(1) {
  border: solid 1px #333;
  font-weight: bold;
}

.ble_matrix td:nth-child(2),
.ble_matrix td:nth-child(3) {
  font-weight: bold;
}

.ble_matrix .td-b {
  background-color: #c6def7;
}

.ble_matrix .td-y {
  background-color: #ffdf7f;
}

th.background-white {
  background-color: #ffffff;
}

img.thumbnail {
    width: 150px;
    border: none;
}

img.new-icon {
    width: 39px;
    height: 35px;
    position: absolute; /* 絶対配置にする */
    bottom: 0px;             /* コンテナ内での位置を調整 */
    right: 0px;
    z-index: 2;
}

.plus-icon {
  width: 25px;
  height: 25px;
  background-color: #5da2db; /* 青色 */
  border-radius: 100%;
  position: absolute;
  bottom: 15px;
  right: 15px;
  z-index: 2;
}

.plus-icon::before,
.plus-icon::after {
  content: "";
  position: absolute;
  background-color: white;
}

.plus-icon::before {
  width: 13px;
  height: 3px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.plus-icon::after {
  width: 3px;
  height: 13px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(var(--rotation, 0deg)); /* デフォルト0度 */
}

.plus-icon::after {
  transition: transform 0.3s ease;
}

.dropdown-content {
    background-color: #ffffff;
    display: block;
    width: 500px;
    position: absolute;
    top: 201.094px;
    left: 458.299px;
    z-index: 3;
    max-width: 100%;
    overflow-x: hidden;
    white-space: normal;
    display: none;
}

table.feature-table {
    width: 100%; /* コンテナの幅を超えない */
    table-layout: fixed; /* 列幅を均等に */
    font-size: 13px;
}

.feature-table th {
     background-color: #000000;
     color: white;
}

.feature-table th, .feature-table td {
    border: solid 1px black;
    padding: 0px 5px;
}
        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
        }
        .container {
            width: 80%;
            margin: auto;
            padding: 20px;
        }
        .header {
            text-align: center;
            padding: 20px 0;
        }
        .content {
            text-align: left;
        }
        .links a {
            color: blue;
            text-decoration: none;
        }
        .links a:hover {
            text-decoration: underline;
        }
        .section {
            display: flex;
            justify-content: space-between;
            margin-top: 20px;
        }
        .card {
            width: 24%;
            background: #001f4d;
            color: white;
            padding: 15px;
            text-align: center;
        }
        .button {
            display: inline-block;
            margin-top: 10px;
            padding: 10px 15px;
            background: #007bff;
            color: white;
            text-decoration: none;
            border-radius: 5px;
        }
        .button:hover {
            background: #0056b3;
        }
        .buttons {
            margin-top: 20px;
            display: flex;
            gap: 10px;
        }
        .buttons a {
            padding: 10px 15px;
            color: white;
            text-decoration: none;
            border-radius: 5px;
        }
        .green-button {
            background: green;
        }
        .blue-button {
            background: darkblue;
        }
.feature-table th {
    max-width: 130px;
    width: 30%;
    vertical-align: middle;
}
.ble_matrix th:nth-child(1),
.ble_matrix td:nth-child(1) {
  width: 140px;
  white-space: normal;
  overflow-wrap: break-word;
}

.ble_matrix th:nth-child(2),
.ble_matrix td:nth-child(2) {
  width: 100px;
  white-space: normal;
  overflow-wrap: break-word;
}

.ble_matrix th:nth-child(3),
.ble_matrix td:nth-child(3) {
  width: 100px;
  white-space: normal;
  overflow-wrap: break-word;
}
.ble_matrix th:nth-child(n+4),
.ble_matrix td:nth-child(n+4) {
    width: 220px;
}
