/* ========================================
   Price Page Styles
   ======================================== */

/* ----------------------------------------
   Price Category Section
   ---------------------------------------- */
.l-section--price {
  padding: 45px 0 100px;
  background-color: #fff;
}

.c-heading--category {
  font-family: 'Shippori Mincho', serif;
  font-size: 30px;
  font-weight: 600;
  color: #333;
  text-align: center;
  margin-bottom: 106px;
  letter-spacing: 0;
}

.l-price-categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 70px;
  margin-bottom: 40px;
}

.c-price-category {
  background-color: #F2F9FB;
  border: 1px solid #2A9CAE;
  border-radius: 4px;
  padding: 30px 16px;
  text-align: center;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}

.c-price-category:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(84, 183, 198, 0.2);
}

.c-price-category__icon {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100px;
}

.c-price-category__icon svg {
  width: 100px;
  height: 100px;
}

.c-price-category__title {
  font-family: 'Shippori Mincho', serif;
  font-size: 26px;
  font-weight: 600;
  color: #333;
  margin-bottom: 30px;
}

.c-price-category__line {
  width: 100%;
  height: 1px;
  background-color: #ccc;
  margin: 0 auto 20px;
}

.c-price-category__desc {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
  color: #333;
  margin-bottom: 30px;
}

.c-btn--price {
  background-color: var(--col-main);
  color: #fff;
  border: 1px solid var(--col-main);
  border-radius: 4px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1.6px;
  padding: 12px 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  height: 50px;
  justify-content: center;
  transition: background-color 0.3s, transform 0.3s;
}

.c-btn--price:hover {
  background-color: #4a9baa;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(84, 183, 198, 0.3);
}

.c-btn--price .c-btn__arrow {
  border-top-color: #fff;
  border-right-color: #fff;
}

.c-text--price-note {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #666;
  text-align: center;
  letter-spacing: 0;
}

/* ----------------------------------------
   Price Table Section (Derma Page)
   ---------------------------------------- */
.l-section--price-table {
  padding: 45px 0 130px;
  background-color: #fff;
}

.c-heading--price-table {
  font-family: 'Shippori Mincho', serif;
  font-size: 30px;
  font-weight: 600;
  color: #333;
  text-align: center;
  margin-bottom: 90px;
  letter-spacing: 0;
}

.c-heading--price-category {
  font-family: 'Shippori Mincho', serif;
  font-size: 26px;
  font-weight: 600;
  color: #333;
  margin: 60px 0 30px 0;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--col-main);
  letter-spacing: 0;
  position: relative;
  width: fit-content;
}

.c-heading--price-subcategory {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--col-main);
  letter-spacing: 2.2px;
  margin: 0 0 10px 0;
  line-height: 40px;
}

.l-table {
  margin: 0 auto 35px;
  overflow-x: auto;
}

.l-price-disclaimer {
  background-color: #f2f9fb;
  padding: 40px 50px;
}

.c-text--disclaimer {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #333;
  line-height: 1.8;
  margin: 0 0 10px 0;
}

.c-text--disclaimer:last-child {
  margin-bottom: 0;
}

/* ----------------------------------------
   Price Surgery Table Styles
   ---------------------------------------- */
.c-price-table {
  width: 100%;
  table-layout: fixed;
}

.c-price-table thead th:first-child {
  width: 50%;
}

.c-price-table thead th:nth-child(2),
.c-price-table thead th:nth-child(3) {
  width: 25%;
}

.c-price-table thead th:not(:last-child) {
  border-right: 1px solid #ccc;
}

/* ----------------------------------------
   Responsive
   ---------------------------------------- */
@media (max-width: 1024px) {
  .l-price-categories {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .l-section--price {
    padding: 60px 0 100px;
  }

  .c-heading--category {
    font-size: 24px;
    margin-bottom: 40px;
  }

  .l-price-categories {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 40px;
  }

  .c-price-category {
    padding: 30px 20px 40px;
  }

  .c-price-category__title {
    font-size: 22px;
  }

  .c-price-category__desc {
    font-size: 14px;
    line-height: 24px;
  }

  .c-btn--price {
    width: 100%;
    max-width: 304px;
  }

  .c-text--price-note {
    font-size: 14px;
    padding: 0 20px;
  }

  .l-section--price-table {
    padding: 60px 0 80px;
  }

  .c-heading--price-table {
    font-size: 24px;
    margin-bottom: 40px;
  }

  .l-price-disclaimer {
    padding: 20px 30px;
  }

  .c-text--disclaimer {
    font-size: 13px;
  }

  .c-price-table thead th:first-child,
  .c-price-table thead th:nth-child(2),
  .c-price-table thead th:nth-child(3) {
    width: 33.33%;
  }
}

@media (max-width: 480px) {
  .c-heading--category {
    font-size: 20px;
  }

  .c-text--price-note {
    text-align: left;
  }

  .c-heading--price-table {
    font-size: 20px;
  }


  .l-price-disclaimer {
    padding: 15px 20px;
  }

  .c-text--disclaimer {
    font-size: 12px;
  }
}

