.content-bg-white {
  background: #fff;
  color: #232323;
  font-size: 16px;
  width: 980px;
  padding-bottom: 10px;
  margin-top:20px;
  padding-top: 10px;
}

.box_results {
  width: 98.5%;
  margin: 5px auto 10px;
  background: #f0f0f0;
  border: 1px solid #c8c8c8;
  box-sizing: border-box;
  padding: 20px;
  font-size: 13px;
}

.box_results p + p {
  margin-top: 1em;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

table.results {
  border-top: 1px solid #c8c8c8;
  border-left: 1px solid #c8c8c8;
  width: 98.5%;
  margin: 5px auto 20px;
}

table.results th, table.results td {
  word-wrap: break-word;
  word-break: break-all;
  font-size: 13px;
}

table.results th {
  background: #343434;
  color: #fff;
  text-align: center;
  border-right: 1px solid #c8c8c8;
  border-bottom: 1px solid #c8c8c8;
  padding: 4px;
}

table.results td {
  text-align: left;
  vertical-align: top;
  border-right: 1px solid #c8c8c8;
  border-bottom: 1px solid #c8c8c8;
  padding: 4px;
}

table.results tr:nth-child(even) {
  background: #f0f0f0;
}

table.results td.right {
  text-align: right;
}

table.results td.center {
  text-align: center;
}

table.results .number-card {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 25px;
  padding-top: 3px;
  background: linear-gradient(#FF6400 3px, #f0f0f0 2px);
  margin: 0 auto;
  border: 1px solid #646464;
  border-radius: 4px;
}

table.results .number-card.-yellow {
  background: linear-gradient(#FF6400 3px, #FFC800 2px);
}
table.results .tire {
  background-color: red;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  margin: 0 auto;
}

table.results .tire.-bs {
  background-color: #FF0033;
}

table.results .tire.-mi {
  background-color: #000095;
}

table.results .tire.-dl {
  background-color: #FEC800;
}

table.results .tire.-yh {
  background-color: #000000;
}

.tab_list {
  display: flex;
  width: 98.5%;
  margin: 5px auto 30px;
  padding-bottom: 7px;
  overflow: hidden;
}

.tab_list .tab_list_item {
  width:  50%;
  color: #fff;
  padding: 15px 10px;
  font-size: 18px;
  cursor: pointer;
  background: #323232;
  margin: 0;
  list-style-type: none;
  position: relative;
  text-align: center;
}

.tab_list .tab_list_item.is_active::before {
  position: absolute;
  display: block;
  width: 200%;
  bottom: -7px;
  height: 7px;
  content: '';
}

.tab_list .tab_list_item.is_active::after {
  position: absolute;
  display: block;
  content: '';
  height: 0;
  width: 0;
  top: 0;
  z-index: 1;
}

.tab_list .tab_list_item .tab_headding {
  font-size: 30px;
  margin: 0;
  font-weight: bold;
  background-color:inherit;
}

.tab_list .tab_list_item.is_active {
  cursor: inherit;
}

.tab_list .tab_list_item.gt500.is_active, .tab_list .tab_list_item.gt500:hover {
  background-color: #EF3400;
}

.tab_list .tab_list_item.gt300.is_active, .tab_list .tab_list_item.gt300:hover {
  background-color: #FFD900;
  color: #232323;
}

.tab_list .tab_list_item.gt500.is_active::before {
  background-color: #EF3400;
  left: 0;
}

.tab_list .tab_list_item.gt300.is_active::before {
  background-color: #FFD900;
  right: 0;
}

.tab_list .tab_list_item.gt500.is_active::after {
  border-top: 120px solid transparent;
  border-left: 25px solid #EF3400;
  right: -24px;
}

.tab_list .tab_list_item.gt300.is_active::after {
  border-top: 120px solid transparent;
  border-right: 25px solid #FFD900;
  left: -24px;
}

/* ボタン */
.link-btn {
  margin-top: 60px;
}

.link-btn a{
  background-color: #858585;
  padding: 10px;
  width: 100%;
  display: block;
  box-sizing: border-box;
  color: #fff !important;
  text-decoration: none;
  font-weight: bold;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 20px;
  text-align: center;
  border-radius: 10px;
  box-shadow: 7px 7px 2px #000;
}

.link-btn a span{
  position: relative;
}

.link-btn a span::after{
  display: block;
  position: absolute;
  content: '\025b6';
  color: #fff !important;
  top: 50%;
  right: -70px;
  transform: translateY(-50%);
}

.link-btn a:hover{
  transform: translate(7px, 7px);
  box-shadow: none;
}