@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 用）
   - dress-code.scss 基準（余白・見出し）
   - 1セクション＝1ブロック
   - カラーは _config.scss の定数のみ使用
============================================================ */
/* ============================================================
  Intro
============================================================ */
.price-intro {
  margin-top: 0;
  padding-top: 3.2rem;
  padding-bottom: 2.4rem;
  background-color: #F7FBFF;
}
.price-intro__lead {
  margin: 0;
  padding-top: 0;
  padding-right: 0;
  padding-bottom: 1.6rem;
  padding-left: 0;
  border-bottom: 1px solid #D3DEE7;
  font-size: clamp(1.2rem, 1.126rem + 0.23vw, 1.4rem);
  line-height: 1.95;
  color: #24313A;
}
@media (min-width: 768px) {
  .price-intro {
    padding-top: 4rem;
    padding-bottom: 3.2rem;
  }
  .price-intro__lead {
    font-size: clamp(1.4rem, 1.326rem + 0.23vw, 1.6rem);
  }
}

/* ============================================================
  Section（dress-code.scss と同設計）
============================================================ */
.price-section {
  margin-top: 2.4rem;
  padding-top: 0;
  padding-bottom: 2.4rem;
  background-color: #F7FBFF;
}
.price-section__header {
  margin: 0 0 1.6rem 0;
  padding: 0;
}
.price-section__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-section__body {
  margin: 0;
  padding: 0;
}
@media (min-width: 768px) {
  .price-section {
    margin-top: 3.2rem;
    padding-bottom: 3.2rem;
  }
  .price-section__header {
    margin-bottom: 2rem;
  }
  .price-section__title {
    font-size: clamp(2.2rem, 1.982rem + 0.68vw, 2.8rem);
  }
}

/* ============================================================
  Text
============================================================ */
.price-text {
  margin: 0;
  padding: 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);
  }
}

/* ============================================================
  DL（予約 / プレースタイル / レンタル 共通）
============================================================ */
.price-dl {
  margin: 0;
  padding: 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: 0 0 0.4rem 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 {
  margin: 0;
  padding: 0;
  font-size: clamp(1.2rem, 1.126rem + 0.23vw, 1.4rem);
  line-height: 1.9;
  color: #24313A;
  display: -ms-grid;
  display: grid;
  gap: 0.6rem;
}
@media (min-width: 768px) {
  .price-dl__dd {
    font-size: clamp(1.4rem, 1.326rem + 0.23vw, 1.6rem);
    gap: 0.8rem;
  }
}

/* ============================================================
  Tel Button（フッターの電話ボタン方向：アイコン＋押しやすさ）
============================================================ */
.price-tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.8rem;
  width: 100%;
  min-height: 4.8rem;
  padding-top: 0.9rem;
  padding-right: 1.2rem;
  padding-bottom: 0.9rem;
  padding-left: 1.2rem;
  border: 1px solid rgba(0, 102, 166, 0.65);
  background-color: #0066A6;
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 700;
  line-height: 1;
  -webkit-transition: background-color 0.2s ease, border-color 0.2s ease, -webkit-transform 0.15s ease, -webkit-box-shadow 0.2s ease;
  transition: background-color 0.2s ease, border-color 0.2s ease, -webkit-transform 0.15s ease, -webkit-box-shadow 0.2s ease;
  transition: background-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  transition: background-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease, border-color 0.2s ease, -webkit-transform 0.15s ease, -webkit-box-shadow 0.2s ease;
}
.price-tel:hover {
  background-color: #00A3B5;
  border-color: #00A3B5;
  -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-tel: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-tel {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    min-height: 5.2rem;
    padding-top: 1rem;
    padding-right: 1.6rem;
    padding-bottom: 1rem;
    padding-left: 1.6rem;
  }
}

.price-tel__icon {
  display: block;
  width: 2.2rem;
  height: 2.2rem;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
@media (min-width: 768px) {
  .price-tel__icon {
    width: 2.6rem;
    height: 2.6rem;
  }
}

.price-tel__label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  white-space: nowrap;
  font-size: clamp(1.2rem, 1.126rem + 0.23vw, 1.4rem);
}
@media (min-width: 768px) {
  .price-tel__label {
    font-size: clamp(1.4rem, 1.326rem + 0.23vw, 1.6rem);
  }
}

.price-tel__number {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  white-space: nowrap;
  font-size: clamp(1.4rem, 1.326rem + 0.23vw, 1.6rem);
}
@media (min-width: 768px) {
  .price-tel__number {
    font-size: clamp(2.2rem, 1.982rem + 0.68vw, 2.8rem);
  }
}

/* ============================================================
  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;
}

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

/* ============================================================
  Table（料金表）
============================================================ */
.price-table {
  border: 1px solid #D3DEE7;
  background-color: #FFFFFF;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.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 {
  font-weight: 700;
  color: #1B2730;
  background-color: #E8F4FA;
  border-bottom: 1px solid #D3DEE7;
}

.price-table__rowhead {
  font-weight: 700;
  color: #1B2730;
  background-color: #F5F8FB;
}

.price-table__td--price {
  font-weight: 700;
  color: #1B2730;
}

/* ============================================================
  Notes（dresscode-list 設計を流用）
============================================================ */
.price-notes {
  margin: 1.2rem 0 0 0;
  padding: 0;
  list-style: none;
  display: -ms-grid;
  display: grid;
  gap: 1rem;
}
.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 {
    font-size: clamp(1.4rem, 1.326rem + 0.23vw, 1.6rem);
    padding-left: 1.8rem;
  }
  .price-notes__item::before {
    width: 0.7rem;
    height: 0.7rem;
  }
}