/*
  price.css
  料金ページ（page-price.php）専用スタイル
*/

/*================= 料金テーブル =================*/
.price-table-wrap {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1.5rem 4rem;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
}

/* 施術グループの区切り線 */
.price-table tbody tr.price-group-start td {
  border-top: 1px solid #C9B99A;
  padding-top: 1.75rem;
}

.price-table tbody tr.price-group-end td {
  padding-bottom: 1.75rem;
}

/* セル共通 */
.price-table td {
  padding: 0.2rem 0;
  vertical-align: top;
  font-family: 'lineSeed-rg';
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
}

/* 施術名 */
.price-table .price-name {
  width: 42%;
  font-family: 'lineSeed-rg';
  font-size: 1rem;
  padding-right: 1rem;
}

/* オプション */
.price-table .price-option {
  width: 28%;
  color: #555;
}

/* 価格 */
.price-table .price-amount {
  width: 30%;
  text-align: right;
  font-family: 'lineSeed-rg';
  letter-spacing: 0.02em;
}

/*================= SP =================*/
@media screen and (max-width: 690px) {
  .price-table-wrap {
    padding: 0 1rem 3rem;
  }

  .price-table td {
    font-size: 0.875rem;
  }

  .price-table .price-name {
    width: 40%;
    font-size: 0.875rem;
  }

  .price-table .price-option {
    width: 25%;
  }

  .price-table .price-amount {
    width: 35%;
  }
}
/*=============== END 料金テーブル ===============*/

/*================= ボーダーテーブル（ヒアルロン酸等）=================*/
.price-section-title {
  font-family: 'hannari';
  font-size: 1.75rem;
  font-weight: normal;
  color: #333;
  margin: 1rem 0 1.25rem;
  padding-left: 0;
}

.price-section-note {
  display: block;
  font-family: 'lineSeed-rg';
  font-size: 0.75rem;
  color: #B03A2E;
  margin-top: 0.25rem;
}

.price-bordered-table-wrap {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1.5rem 1.5rem;
}

.price-bordered-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #C9B99A;
}

.price-bordered-table th,
.price-bordered-table td {
  background-color: #fff;
  border: 1px solid #C9B99A;
  padding: 0.6rem 1rem;
  font-family: 'lineSeed-rg';
  font-size: 0.938rem;
  color: #333;
  text-align: center;
}

/* ヘッダー行 */
.price-bordered-table thead th {
  background-color: #DDD0B8;
  font-family: 'lineSeed-bd';
  font-size: 0.875rem;
}

/* 製剤名セル */
.price-bordered-table .price-product {
  background-color: #EDE5D8;
  font-size: 0.938rem;
  width: 22%;
}

/* 量セル */
.price-bordered-table .price-qty {
  width: 12%;
}

/* 価格セル */
.price-bordered-table .price-col {
  width: 33%;
}

@media screen and (max-width: 690px) {
  .price-bordered-table-wrap {
    padding: 0 1rem 2rem;
  }

  .price-table-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .price-bordered-table {
    min-width: 520px;
  }

  .price-bordered-table th,
  .price-bordered-table td {
    padding: 0.4rem 0.5rem;
    font-size: 0.813rem;
  }

  .price-section-title {
    font-size: 1.375rem;
    padding-left: 1rem;
  }
}
/*=============== END ボーダーテーブル ===============*/

/*================= 看護師テーブル（グリーン）=================*/
.price-nurse-table thead th {
  background-color: #AAC096;
}

.price-nurse-table .price-product {
  background-color: #EAF0E2;
}

/*================= 婦人科テーブル（ピンク）=================*/
.price-woman-table thead th {
  background-color: #C8ACAE;
}

.price-woman-table .price-product {
  background-color: #F4ECEC;
}

.price-footnote {
  font-family: 'lineSeed-rg';
  font-size: 0.813rem;
  color: #666;
  max-width: 1000px;
  margin: 0 auto 2rem;
  padding: 0 1.5rem;
}

@media screen and (max-width: 690px) {
  .price-footnote {
    padding: 0 1rem;
  }
}
