@charset "UTF-8";

/* CSS Document */

th, td {
  text-align: center;
}

th {
  font-weight: normal;
}

th:first-child {
  /* ドメインの列 */
  font-size: 1.2rem;
}

th:not(:first-child), td {
  /* ドメインの列 以外 */
  font-size: 1.1rem;
}

td:nth-of-type(1):not(.price-free):not(.hyphen) {
  /* 新規取得の列 */
  font-size: 1.2rem;
  font-weight: bold;
}

.domain-link {
  color: #00a0c9;
  font-weight: bold;
  letter-spacing: 0.1rem;
}

.domain-link:hover {
  text-decoration: underline;
}

/* PC 幅が 600px 以上 */
@media screen and (min-width: 600px) {
  .layout_table {
    table-layout: fixed;
  }

  thead th:nth-child(2),
  thead th:nth-child(3),
  thead th:nth-child(4) {
    /* 新規取得/更新/転入 */
    width: 12.5rem;
  }
}