.table_basic {
  width: 100%;
  border: 1px solid #ccc;      /* 테이블 전체 테두리 */
  border-collapse: collapse;
}

.table_basic th,
.table_basic td {
  padding: 8px;
  border: none;                /* 내부 선 제거 */
}

.table_basic th {
  background-color: #E6F9FC;
  border-bottom: 1px solid #ccc; /* th 아래만 선 */
  font-weight: bold;
}

.table_basic.orange th {
  background-color: #FFFBF6;
}

.table_basic tr.on td {
  background-color: #38c7e0;
  color: #fff;
}

.table_basic tr.aqua.on td {
  background-color: #38c7e0;
  color: #fff;
}
.table_basic tr.aqua.on td a,
.table_basic tr.aqua.on td a:hover {
  color: #fff;
}


.table_basic tr.orange.on td {
  background-color: #FFA500;
  color: #fff;
}
.table_basic tr.orange.on td a,
.table_basic tr.orange.on td a:hover {
  color: #fff;
}


.fc-storename       {font-size: 16px; color: var(--color-storename); font-weight: bold;}

.fc-storename_2     {font-size: 16px; color: #e00f66;}
.fc-storename_2_orange {font-size: 16px; color: #FF6100;}

#ft_company a,
#ft_company a:hover,
#ft_company a:visited,
#ft_company a:active {
  color: #fff;
  text-decoration: none; /* 필요 없으면 제거 */
}