@charset "UTF-8";

/*----------------------------------------
overwrite
----------------------------------------*/
a:hover {
    color: #C8102E;
}
a[href^="tel:"] {
  cursor: pointer;
  pointer-events: initial;
}


/*----------------------------------------
For txt
----------------------------------------*/
a.txt-link:link {
  color: #C8102E;
  font-weight: bold;
}
a.txt-link:link:hover {
  color: #8D8D8D;
}
.txt-margin {
  margin-bottom: 32px;
}
.txt-emphasis {
  color: #C8102E;
  font-weight: bold;
}
@media (max-width: 490px) {
  .txt-margin {
    margin-bottom: 20px;
  }
}

/*----------------------------------------
For table
----------------------------------------*/
.readmore {
  display: grid;
  place-content: center;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  background: #EAEAEA;
  width: 40%;
  min-width: 240px;
  padding-block: 12px;
  margin-inline: auto;
  transition: 0.3s;
  position: relative;
}
.readmore.on-click .close {
  display: block;
}
.readmore.on-click .open, .readmore .close {
  display: none;
}
.table-wrap {
  overflow-x: scroll;
}
table {
  border-collapse: collapse;
  width: 95%;
  font-size: 0.9em;
  margin: 0 auto 24px;
  min-width: 540px;
}
tr {
  border-top: 1px solid #E2E2E2;
  border-bottom: 1px solid #E2E2E2;
}
th, td {
  line-height: 1.5;
  padding: 4px 8px;
}
th {
  color: #FFF;
  text-align: center;
  background: #8D8D8D;
}
tr th:nth-of-type(2), tr th:nth-of-type(3) {
  border-right: 1px solid #FFF;
  border-left: 1px solid #FFF;
}
tr td:first-of-type {
  padding-right: 20px;
}
tr td:nth-of-type(2) {
  white-space: nowrap;
}
tr td:nth-of-type(2), tr td:nth-of-type(3) {
  border-right: 1px solid #E2E2E2;
  border-left: 1px solid #E2E2E2;
}
.tab-icon {
  position: relative;
}
.tab-icon::after {
  content: '';
  position: absolute;
  top: 4px;
  right: -20px;
  background-image: url(/products/primus/assets/img/common/tab-icon.svg);
  background-repeat: no-repeat;
  width: 14px;
  aspect-ratio: 1 / 1;
}
