@charset "UTF-8";
/* ご利用料金ページ（pages/price.php）
   ※ソースは style/sass/pages/price.scss。環境に sass が無いため両方を手で更新すること。 */
.p-price {
  margin-top: 80px;
  padding: 60px 0 100px;
}
@media screen and (max-width: 768px) {
  .p-price {
    margin-top: 60px;
    padding: 40px 0 70px;
  }
}
.p-price .container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (max-width: 768px) {
  .p-price .container {
    padding: 0 15px;
  }
}
.p-price .page-title {
  font-size: 32px;
  color: #66503E;
  font-family: "Josefin Sans";
  font-weight: 600;
  text-align: center;
  margin-bottom: 20px;
  letter-spacing: 2px;
}
@media screen and (max-width: 768px) {
  .p-price .page-title {
    font-size: 24px;
    letter-spacing: 1px;
  }
}
.p-price .price-lead {
  font-family: "Noto sans JP";
  font-size: 15px;
  color: #333;
  line-height: 1.8;
  text-align: center;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .p-price .price-lead {
    font-size: 14px;
    margin-bottom: 35px;
  }
}

.price-cards {
  display: grid;
  gap: 24px;
  margin-bottom: 70px;
}
@media screen and (max-width: 768px) {
  .price-cards {
    gap: 18px;
    margin-bottom: 50px;
  }
}

.price-card {
  position: relative;
  background: #F7F5F2;
  border: 1px solid #E5DFD6;
  border-radius: 14px;
  padding: 34px 32px 30px;
}
@media screen and (max-width: 768px) {
  .price-card {
    padding: 30px 20px 24px;
    border-radius: 10px;
  }
}
.price-card__num {
  position: absolute;
  top: -16px;
  left: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #EBAD10 0%, #F0770E 100%);
  color: #fff;
  font-family: "Josefin Sans";
  font-size: 17px;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .price-card__num {
    left: 18px;
    width: 28px;
    height: 28px;
    font-size: 15px;
  }
}
.price-card__title {
  font-family: "Noto sans JP";
  font-size: 20px;
  font-weight: 700;
  color: #66503E;
  margin-bottom: 14px;
}
@media screen and (max-width: 768px) {
  .price-card__title {
    font-size: 17px;
    margin-bottom: 10px;
  }
}
.price-card__amount {
  font-family: "Noto sans JP";
  font-size: 34px;
  font-weight: 700;
  color: #F0770E;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .price-card__amount {
    font-size: 26px;
  }
}
.price-card__unit {
  font-size: 17px;
  font-weight: 700;
  margin-left: 6px;
}
@media screen and (max-width: 768px) {
  .price-card__unit {
    font-size: 14px;
    margin-left: 4px;
  }
}
.price-card__sub {
  font-family: "Noto sans JP";
  font-size: 13px;
  color: #8A7A6B;
  margin-top: 4px;
  padding-bottom: 20px;
  border-bottom: 1px dashed #DCD3C6;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .price-card__sub {
    font-size: 12px;
    padding-bottom: 16px;
    margin-bottom: 16px;
  }
}
.price-card__text {
  font-family: "Noto sans JP";
  font-size: 14px;
  color: #333;
  line-height: 1.8;
  margin-bottom: 12px;
}
@media screen and (max-width: 768px) {
  .price-card__text {
    font-size: 13px;
    line-height: 1.7;
  }
}
.price-card__note {
  font-family: "Noto sans JP";
  font-size: 13px;
  color: #6B4E2E;
  line-height: 1.8;
  background: #FBF1D6;
  border: 1px solid #ECD9A3;
  border-radius: 8px;
  padding: 12px 14px;
  margin-top: 18px;
}
@media screen and (max-width: 768px) {
  .price-card__note {
    font-size: 12px;
    padding: 11px 12px;
  }
}

.price-list {
  margin: 0 0 4px;
  padding: 0;
  list-style: none;
}
.price-list li {
  position: relative;
  font-family: "Noto sans JP";
  font-size: 14px;
  color: #333;
  line-height: 1.8;
  padding-left: 18px;
  margin-bottom: 6px;
}
.price-list li::before {
  content: "";
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #f3b52b;
}
@media screen and (max-width: 768px) {
  .price-list li {
    font-size: 13px;
    padding-left: 16px;
  }
}

.price-section {
  margin-bottom: 60px;
}
.price-section:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .price-section {
    margin-bottom: 45px;
  }
}
.price-section__title {
  font-family: "Noto sans JP";
  font-size: 22px;
  font-weight: 700;
  color: #66503E;
  text-align: center;
  margin-bottom: 28px;
}
.price-section__title::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(135deg, #EBAD10 0%, #F0770E 100%);
  margin: 12px auto 0;
}
@media screen and (max-width: 768px) {
  .price-section__title {
    font-size: 18px;
    margin-bottom: 22px;
  }
}

.price-text {
  font-family: "Noto sans JP";
  font-size: 14px;
  color: #333;
  line-height: 1.9;
  margin-bottom: 16px;
}
.price-text:last-child {
  margin-bottom: 0;
}
.price-text a {
  color: #F0770E;
  text-decoration: underline;
}
@media screen and (max-width: 768px) {
  .price-text {
    font-size: 13px;
    line-height: 1.8;
  }
}

.price-note {
  font-family: "Noto sans JP";
  font-size: 12px;
  color: #8A7A6B;
  line-height: 1.8;
  margin-top: 14px;
}
@media screen and (max-width: 768px) {
  .price-note {
    font-size: 11px;
  }
}

.pay-steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.pay-step {
  position: relative;
  background: #fff;
  border: 1px solid #E5DFD6;
  border-radius: 12px;
  padding: 22px 24px;
  margin-bottom: 14px;
}
.pay-step:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .pay-step {
    padding: 18px 16px;
    border-radius: 10px;
  }
}
.pay-step__label {
  display: inline-block;
  font-family: "Josefin Sans";
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #fff;
  background: linear-gradient(135deg, #EBAD10 0%, #F0770E 100%);
  border-radius: 100px;
  padding: 4px 12px;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .pay-step__label {
    font-size: 11px;
    padding: 3px 10px;
  }
}
.pay-step__title {
  font-family: "Noto sans JP";
  font-size: 16px;
  font-weight: 700;
  color: #66503E;
  line-height: 1.6;
  margin-bottom: 8px;
}
@media screen and (max-width: 768px) {
  .pay-step__title {
    font-size: 14px;
  }
}
.pay-step__text {
  font-family: "Noto sans JP";
  font-size: 14px;
  color: #333;
  line-height: 1.8;
  margin-bottom: 6px;
}
.pay-step__text:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .pay-step__text {
    font-size: 13px;
    line-height: 1.7;
  }
}

.price-example__cond {
  font-family: "Noto sans JP";
  font-size: 15px;
  font-weight: 700;
  color: #66503E;
  text-align: center;
  margin-bottom: 18px;
}
@media screen and (max-width: 768px) {
  .price-example__cond {
    font-size: 14px;
    margin-bottom: 14px;
  }
}

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

.price-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid #E5DFD6;
  border-radius: 12px;
  overflow: hidden;
  font-family: "Noto sans JP";
}
.price-table th,
.price-table td {
  padding: 14px 20px;
  font-size: 14px;
  text-align: left;
  border-bottom: 1px solid #EFE9E0;
}
@media screen and (max-width: 768px) {
  .price-table th,
  .price-table td {
    padding: 12px 14px;
    font-size: 13px;
    white-space: nowrap;
  }
}
.price-table th {
  background: #F7F5F2;
  color: #66503E;
  font-weight: 700;
}
.price-table td {
  color: #333;
}
.price-table tbody tr:last-child td {
  border-bottom: none;
}
.price-table__total td {
  background: #FBF1D6;
  color: #6B4E2E;
  font-weight: 700;
}

.price-highlight {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: #FBF1D6;
  border: 1px solid #ECD9A3;
  border-radius: 12px;
  padding: 18px 24px;
  margin: 20px 0;
}
@media screen and (max-width: 768px) {
  .price-highlight {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 16px 18px;
    border-radius: 10px;
  }
}
.price-highlight__label {
  font-family: "Noto sans JP";
  font-size: 14px;
  font-weight: 700;
  color: #6B4E2E;
}
@media screen and (max-width: 768px) {
  .price-highlight__label {
    font-size: 13px;
  }
}
.price-highlight__amount {
  font-family: "Noto sans JP";
  font-size: 28px;
  font-weight: 700;
  color: #F0770E;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .price-highlight__amount {
    font-size: 24px;
  }
}
.price-highlight__unit {
  font-size: 15px;
  font-weight: 700;
  margin-left: 4px;
}
@media screen and (max-width: 768px) {
  .price-highlight__unit {
    font-size: 13px;
  }
}
