@charset "UTF-8";

/* --- 料金ページ 制御機能のスタイル --- */
.price-controls-container {
  padding: 20px;
  background-color: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 30px;
}

.price-control-group {
  margin-bottom: 20px;
}

.price-control-group:last-child {
  margin-bottom: 0;
}

.price-control-label {
  display: block;
  font-weight: bold;
  margin-bottom: 8px;
  font-size: 16px;
}

.keyword-search-wrapper {
  display: flex;
  gap: 10px;
}

#priceSearch {
  flex-grow: 1;
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
  background: #ffffff;
}

#resetButton {
  flex-shrink: 0;
  padding: 10px 15px;
  border: 1px solid #ccc;
  background-color: #f0f0f0;
  border-radius: 4px;
  cursor: pointer;
  white-space: nowrap;
}

/* ドロップダウンメニューの共通スタイル */
.c-select01 {
  display: flex;
  align-items: center;
  gap: 1em;
}

.c-select01__head {
  white-space: nowrap;
  flex-shrink: 0;
}

.c-select01__body {
  flex-grow: 1;
}

.c-select01__body-select {
  width: 100%;
  padding: 12px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: #fff;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23555' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  cursor: pointer;
}

/* --- 施術メニュー選択時のアニメーション --- */
/* ★修正点: .has-treatment-dropdown を追加して対象を限定 */
.has-treatment-dropdown .wp-block-group__inner-container>* {
  transition: opacity 0.4s ease, max-height 0.4s ease, margin 0.4s ease, padding 0.4s ease;
  overflow: hidden;
}

.is-hidden {
  opacity: 0;
  max-height: 0 !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  border-width: 0 !important;
}