@charset "UTF-8";

/* ※このCSSファイルはSassから生成されています */

/* ------------------------------
   価格改定のお知らせ
------------------------------ */

.price-revision {
  color: #4a4a4a;
}

.price-revision__date {
  margin: 0 0 60px;
  font-size: 16px;
  line-height: 1.8;
}

.price-revision__body {
  font-size: 16px;
  line-height: 2;
}

.price-revision__body > p {
  margin: 0 0 32px;
}

.price-revision__body strong {
  font-weight: 700;
  color: #444;
}


/* ------------------------------
   価格表
------------------------------ */

.price-table-wrap {
  width: 100%;
  margin: 10px 0 40px;
  overflow-x: auto;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 15px;
  line-height: 1.6;
}

.price-table th,
.price-table td {
  padding: 14px 16px;
  border: none;
  border-bottom: 1px solid #ddd;
  text-align: left;
  vertical-align: middle;
}

.price-table thead th {
  padding-top: 12px;
  padding-bottom: 12px;
  border-top: 2px solid #2caf9c;
  border-bottom: 1px solid #aaa;
  font-weight: 600;
  color: #444;
  background: #f7f9f8;
}

.price-table tbody tr:last-child td {
  border-bottom: 2px solid #2caf9c;
}

.price-table th:first-child,
.price-table td:first-child {
  width: 50%;
}

.price-table th:nth-child(2),
.price-table td:nth-child(2),
.price-table th:nth-child(3),
.price-table td:nth-child(3) {
  width: 25%;
  white-space: nowrap;
}


/* ------------------------------
   会社情報
------------------------------ */

.price-revision__company {
  margin-top: 45px;
}

.price-revision__company p {
  margin: 0;
}


/* ------------------------------
   スマートフォン
------------------------------ */

@media screen and (max-width: 767px) {

  .price-revision__date {
    margin-bottom: 40px;
    font-size: 14px;
  }

  .price-revision__body {
    font-size: 15px;
    line-height: 1.9;
  }

  .price-revision__body > p {
    margin-bottom: 26px;
  }

  .price-table {
    min-width: 560px;
    font-size: 14px;
  }

  .price-table th,
  .price-table td {
    padding: 11px 12px;
  }

  .price-revision__company {
    margin-top: 35px;
  }

}