@charset "UTF-8";

:root {
  --c_main: #6eb42f;
  --red: #EF1E1E;
  --color-red: #f83737;
  --mainTxt: #5c5c5c;
  --subTxt: #8b8b8b;
  --base: #a37dac;
  --gray: #fafafc;
  --swiper-navigation-size: 14px;
  --basic-range: min(100%, 970px);
}
@media (width < 969px) {
  :root {
  --gray: #f5f5f5;
  }
}

.txt-em{
  margin-left: 1.5em;
  color: var(--red);
  font-weight: 500;
}

.txt-r{
  text-align: right;
  margin-top: -1em;
  margin-right: 1em;
}
@media (width < 640px) {
  .txt-r{
    margin-top: auto;
  }
}

.priceTableWrapper{
  height: 500px;
  overflow-y: auto;
  overflow-x: hidden;
  border-right: solid 1px #ccc;
}
@media (width < 969px) {
  .priceTableWrapper{
    /* height: auto; */
    /* overflow-y: hidden; */
    overflow-x: scroll;
  }
}

.priceTable .f-small{
  font-size: .8em;
  line-height: .5;

  *{
    line-height: .5;
  }
}

.center-table{
  margin-block: 0 55px;
}
@media (width < 969px) {
  .center-table{
    margin-block: 0 45px;
  }
}

.priceTable{
  width: 100%;
}
@media (width < 969px) {
  .priceTable{
    width: 920px;
  }
}

.priceTable :where(th,td){
  border: solid 1px #ccc;
  text-align: center;
  line-height: 1.2;
  padding: 5px 5px;
}

.priceTable thead th{
  background-color: #333;
  color: #fff;
}


.priceTable thead th.table_sortBtn:not([data-sort-key="land"],[data-sort-key="extension"]){
  position: relative;
  padding-bottom: 20px;
  background-color: #5c5c5c;
}

.priceTable tbody tr:nth-of-type(even){
  background-color: #eff1f6;
}

.priceTable tbody tr:not(.loading) td:first-of-type,
.priceTable tbody tr:not(.loading) td:nth-of-type(2){
  background: #f1f2e4;
}

.priceTable tbody tr:not(.loading):hover td {
  background-color: #fffee4;
  transition: ease .3s;
}

.table_sortBtn{
  position: relative;
}

.table_sortBtn::after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f107";
  position: absolute;
  /* top: 50%; */
  bottom: -6px;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
}

.priceTable tbody tr.loading td.loading-contens{
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 200;
  font-size: 18px;
  text-align: center;
  padding-block: 50px 0;
  /* background: #f2f2f2; */
  background-image: repeating-linear-gradient(135deg, rgba(0, 0, 0, 0.01) 5% 10%, rgba(255, 255, 255, 1) 10% 15%, rgba(0, 0, 0, 0.01) 15% 20%, rgba(255, 255, 255, 1) 20% 25%);
  height: 340px;
  color: #8b8b8b;
  display: flex;
  justify-content: center;
  align-items: center;
  letter-spacing: 2px;
  transition: all .5s;

  img{
    width: 30px;
    height: 30px;
    display: inline-block;
    margin-right: 10px;
  }
}

.loading__bottom{
  height: 80px;
}
