@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap&family=Oswald&display=swap");
/* ============================================================
  price.scss
  - 料金案内（guide/price）
  - 1セクション=1ブロック
  - BEM / モバイルファースト（min-width）
============================================================ */
/* ============================================================
  Section（priceページ内：各セクション共通）
============================================================ */
.price-table-section,
.price-cancel-fee,
.price-rental,
.price-credit {
  margin-top: 2.4rem;
  padding-top: 0;
  padding-right: 0;
  padding-bottom: 2.4rem;
  padding-left: 0;
  background-color: #F7FBFF;
}
.price-table-section__header,
.price-cancel-fee__header,
.price-rental__header,
.price-credit__header {
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 1.6rem;
  margin-left: 0;
  padding: 0;
}
.price-table-section__title,
.price-cancel-fee__title,
.price-rental__title,
.price-credit__title {
  margin: 0;
  padding-top: 0;
  padding-right: 0;
  padding-bottom: 0.8rem;
  padding-left: 0;
  border-bottom: 2px solid #0066A6;
  font-size: clamp(1.6rem, 1.526rem + 0.23vw, 1.8rem);
  font-weight: 700;
  line-height: 1.4;
  color: #1B2730;
}
.price-table-section__body,
.price-cancel-fee__body,
.price-rental__body,
.price-credit__body {
  margin: 0;
  padding: 0;
}
@media (min-width: 768px) {
  .price-table-section,
  .price-cancel-fee,
  .price-rental,
  .price-credit {
    padding-bottom: 3.2rem;
  }
  .price-table-section__header,
  .price-cancel-fee__header,
  .price-rental__header,
  .price-credit__header {
    margin-bottom: 2rem;
  }
  .price-table-section__title,
  .price-cancel-fee__title,
  .price-rental__title,
  .price-credit__title {
    font-size: clamp(2.2rem, 1.982rem + 0.68vw, 2.8rem);
  }
}

/* ============================================================
  Text
============================================================ */
.price-text {
  margin: 0;
  padding-top: 0;
  padding-right: 0;
  padding-bottom: 0;
  padding-left: 0;
  font-size: clamp(1.2rem, 1.126rem + 0.23vw, 1.4rem);
  line-height: 1.95;
  color: #24313A;
}
@media (min-width: 768px) {
  .price-text {
    font-size: clamp(1.4rem, 1.326rem + 0.23vw, 1.6rem);
  }
}

.price-sub {
  margin-top: 1.2rem;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
  font-size: clamp(1.2rem, 1.126rem + 0.23vw, 1.4rem);
  line-height: 1.8;
  color: rgba(36, 49, 58, 0.82);
}
@media (min-width: 768px) {
  .price-sub {
    margin-top: 1.6rem;
    font-size: clamp(1.4rem, 1.326rem + 0.23vw, 1.6rem);
  }
}

/* ============================================================
  Actions（イベント導線）
============================================================ */
.price-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  margin-top: 1.4rem;
}
@media (min-width: 768px) {
  .price-actions {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 1.2rem;
    margin-top: 1.8rem;
  }
}

/* ボタン（reserve-button と同系統） */
.price-button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 4.4rem;
  padding: 0 2.4rem;
  border: 1px solid #0066A6;
  background-color: #FFFFFF;
  color: #0066A6;
  font-size: clamp(1.4rem, 1.326rem + 0.23vw, 1.6rem);
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  -webkit-transition: background-color 0.2s ease, color 0.2s ease, -webkit-transform 0.15s ease, -webkit-box-shadow 0.2s ease;
  transition: background-color 0.2s ease, color 0.2s ease, -webkit-transform 0.15s ease, -webkit-box-shadow 0.2s ease;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease, -webkit-transform 0.15s ease, -webkit-box-shadow 0.2s ease;
}
.price-button:hover {
  background-color: #0066A6;
  color: #FFFFFF;
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
  -webkit-box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
          box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
  opacity: 1;
}
.price-button:focus-visible {
  outline: 0;
  -webkit-box-shadow: 0 0 0 3px rgba(0, 102, 166, 0.22);
          box-shadow: 0 0 0 3px rgba(0, 102, 166, 0.22);
}
@media (min-width: 768px) {
  .price-button {
    padding-right: 1.8rem;
    padding-left: 1.8rem;
    font-size: clamp(1.4rem, 1.326rem + 0.23vw, 1.6rem);
  }
}

/* ============================================================
  DL（キャンセルフィ / レンタル 共通）
============================================================ */
.price-dl {
  margin: 0;
  padding-top: 0;
  padding-right: 0;
  padding-bottom: 0;
  padding-left: 0;
  border: 1px solid #D3DEE7;
  background-color: #FFFFFF;
}
.price-dl__row {
  padding-top: 1.2rem;
  padding-right: 1.2rem;
  padding-bottom: 1.2rem;
  padding-left: 1.2rem;
}
.price-dl__row:not(:first-child) {
  border-top: 1px solid #E3ECF3;
}
@media (min-width: 768px) {
  .price-dl__row {
    padding-top: 1.4rem;
    padding-right: 1.6rem;
    padding-bottom: 1.4rem;
    padding-left: 1.6rem;
  }
}
.price-dl__dt {
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0.4rem;
  margin-left: 0;
  padding: 0;
  font-size: clamp(1.2rem, 1.126rem + 0.23vw, 1.4rem);
  font-weight: 700;
  line-height: 1.6;
  color: #6F7C86;
}
@media (min-width: 768px) {
  .price-dl__dt {
    font-size: clamp(1.4rem, 1.326rem + 0.23vw, 1.6rem);
  }
}
.price-dl__dd {
  display: -ms-grid;
  display: grid;
  gap: 0.6rem;
  margin: 0;
  padding-top: 0;
  padding-right: 0;
  padding-bottom: 0;
  padding-left: 0;
  font-size: clamp(1.2rem, 1.126rem + 0.23vw, 1.4rem);
  line-height: 1.9;
  color: #24313A;
}
@media (min-width: 768px) {
  .price-dl__dd {
    gap: 0.8rem;
    font-size: clamp(1.4rem, 1.326rem + 0.23vw, 1.6rem);
  }
}

/* ============================================================
  Metric
============================================================ */
.price-metric {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 0.8rem;
}
.price-metric__label {
  font-weight: 700;
  color: #24313A;
}
.price-metric__value {
  font-weight: 700;
  color: #1B2730;
}

/* ============================================================
  Table
============================================================ */
.price-table {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid #D3DEE7;
  background-color: #FFFFFF;
}
.price-table__table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
}
.price-table__th, .price-table__td, .price-table__rowhead {
  padding-top: 1.1rem;
  padding-right: 1.2rem;
  padding-bottom: 1.1rem;
  padding-left: 1.2rem;
  border-bottom: 1px solid #E3ECF3;
  font-size: clamp(1.2rem, 1.126rem + 0.23vw, 1.4rem);
  line-height: 1.6;
  color: #24313A;
  text-align: left;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .price-table__th, .price-table__td, .price-table__rowhead {
    padding-top: 1.2rem;
    padding-right: 1.6rem;
    padding-bottom: 1.2rem;
    padding-left: 1.6rem;
    font-size: clamp(1.4rem, 1.326rem + 0.23vw, 1.6rem);
  }
}
.price-table__thead .price-table__th {
  background-color: #E8F4FA;
  border-bottom: 1px solid #D3DEE7;
  font-weight: 700;
  color: #1B2730;
}
.price-table__rowhead {
  background-color: #F5F8FB;
  font-weight: 700;
  color: #1B2730;
}
.price-table__td--price {
  font-weight: 700;
  color: #1B2730;
}

/* ============================================================
  Notes
============================================================ */
.price-notes {
  display: -ms-grid;
  display: grid;
  gap: 1rem;
  margin-top: 1.2rem;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
  padding: 0;
  list-style: none;
}
.price-notes__item {
  position: relative;
  margin: 0;
  padding-top: 0;
  padding-right: 0;
  padding-bottom: 0;
  padding-left: 1.6rem;
  font-size: clamp(1.2rem, 1.126rem + 0.23vw, 1.4rem);
  line-height: 1.85;
  color: #24313A;
}
.price-notes__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.85em;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background-color: #00A3B5;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (min-width: 768px) {
  .price-notes {
    gap: 1.2rem;
    margin-top: 1.6rem;
  }
  .price-notes__item {
    padding-left: 1.8rem;
    font-size: clamp(1.4rem, 1.326rem + 0.23vw, 1.6rem);
  }
  .price-notes__item::before {
    width: 0.7rem;
    height: 0.7rem;
  }
}