@charset "UTF-8";

/* テーブルのスタイルを定義する */
.price-table {
  width: 100%;
  font-size: 16px;
  margin-top: 40px;
}

.price-table tr {
  width: 100%;
}

tr:nth-child(odd) {
  background: rgb(246, 227, 220);
}

tr:nth-child(even) th {
  background: #ffffff;
}


.price-table th {
  font-weight: normal;
  background: rgb(250, 220, 210);
  vertical-align: middle;
}


.price-table td {
  column-width: auto;
}


.price-table p {
  line-height: 2;
  text-align: center;
}

/* モバイル対応 */
@media(max-width: 1000px) {

  .price-list {
    text-align: left;
  }

  .price-table {
    font-size: 11px;
  }

  .charset-footer {
    font-size: 5px;
  }

}