/*************************************************

fee

*************************************************/
/* material
---------------------------------------*/
.container-area {
  max-width: 90rem;
  margin: 0 auto;
}

.container-area__lead {
  text-align: center;
  margin-bottom: 3rem;
}

.table-container {
  position: relative;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
@media screen and (max-width: 767px) {
  .table-container::before {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    content: "";
    width: 6rem;
    height: 6rem;
    margin-top: -3rem;
    -webkit-animation: horizontal 1.5s ease-in-out infinite alternate;
            animation: horizontal 1.5s ease-in-out infinite alternate;
    background: url(../images/common/icon_swipe.svg) no-repeat center center/100% auto;
    z-index: 1;
  }
  .table-container.scrolled::before {
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.5s ease-in-out 0s;
    transition: all 0.5s ease-in-out 0s;
  }
}

@-webkit-keyframes horizontal {
  0% {
    -webkit-transform: translateX(-6rem);
            transform: translateX(-6rem);
  }
  100% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
}

@keyframes horizontal {
  0% {
    -webkit-transform: translateX(-6rem);
            transform: translateX(-6rem);
  }
  100% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
}
.table-container table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.4rem;
  background-color: #fff;
}
.table-container table th {
  font-size: 1.6rem;
  font-weight: bold;
}
.table-container table td {
  font-size: 1.4rem;
}
.table-container table .wid01 {
  width: 35%;
}
.table-container table .wid02 {
  width: 20%;
}
.table-container table .wid03 {
  width: 25%;
}
.table-container table .wid04 {
  width: 50%;
}

.table-container .border-topnone {
  border-top: none;
}

.table-container th, td {
  border: 0.2rem solid #EFEFEF;
  padding: 8px 6px;
  text-align: center;
  vertical-align: middle;
}

.table-container .header-row {
  background-color: #f8d7da;
  font-weight: bold;
}

.table-container table .top-row th, .table-container table .top-row td {
  border: 0.2rem solid #AC1F28;
}

.service-header {
  background-color: #f8d7da;
  font-weight: bold;
  text-align: left;
  padding-left: 10px;
}

.service-name {
  text-align: left;
  padding-left: 10px;
  font-size: 10px;
}

.circle {
  color: red;
  font-size: 16px;
}

.dash {
  color: #999;
}

.price-section {
  background-color: #f8d7da;
  font-weight: bold;
  text-align: center;
}

.table-container table .section__ttl {
  font-size: 1.6rem;
  font-weight: bold;
  color: #AC1F28;
}

.employee-count {
  text-align: left;
  padding-left: 1rem;
}

.note {
  font-size: 1.4rem;
  color: #666;
  margin-top: 1rem;
  margin-bottom: 3rem;
  line-height: 1.3;
}

.consultation-table {
  margin-top: 5rem;
}

.consultation-header {
  background-color: #f8d7da;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .container-area {
    padding: 10px;
  }
  .table-container table {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    min-width: 670px;
    font-size: 10px;
  }
  .table-container th, td {
    padding: 6px 4px;
    white-space: nowrap;
  }
  .service-name {
    min-width: 200px;
    white-space: normal;
    font-size: 9px;
  }
}
.table-container .in-ajust-text {
  display: table;
  width: auto;
  margin: 0 auto;
  min-width: 6em;
  text-align: left;
}