@charset "utf-8";
/* ==========================================================================
   menu.css
   メニューページ（menu.php）専用スタイル
   ========================================================================== */

/* ---------------------------------
   料金カード
--------------------------------- */
.price-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.price-card {
  display: none;
  position: relative;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px 26px;
  transition:
    box-shadow 0.35s var(--ease),
    transform 0.35s var(--ease);
}

.price-card.is-shown {
  display: block;
}

.price-card:hover {
  box-shadow: 0 16px 30px rgba(58, 54, 51, 0.1);
  transform: translateY(-3px);
}

.price-card-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.price-card-name {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.5;
}

.price-card-price {
  flex-shrink: 0;
  font-family: var(--font-en);
  font-size: 20px;
  font-weight: 600;
  color: #8b5b27db;
  white-space: nowrap;
}

.price-card-price small {
  font-size: 11px;
  font-family: var(--font-jp);
  color: var(--text-light);
  margin-left: 2px;
}

.price-card-desc {
  text-align: left;
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.8;
}

.price-card-badges {
  margin-top: 14px;
  display: flex;
  gap: 8px;
}

.price-badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 12px;
  border-radius: 999px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.price-badge-new {
  background: var(--beige-200);
  color: #7a4d1f;
}

.price-badge-all {
  background: var(--beige-100);
  color: var(--text-light);
}

.price-note {
  color: var(--text-light);
  line-height: 1.9;
  text-align: left;
  margin: 30px auto;
}

.price-note p {
  line-height: 1.4;
  font-size: 12px;
}

.price-note span {
  display: inline-block;
}

.price-section-intro {
  max-width: 640px;
  margin: 0 auto 28px;
  text-align: center;
}

.price-section-intro p {
  font-size: 13px;
  line-height: 2;
}

.price-section-intro p a:hover {
  opacity: 0.75;
}

.price-section-cta {
  text-align: center;
  margin-bottom: 44px;
}

.reserve-cta {
  position: relative;
  /*  background: linear-gradient(15deg, #bb85a4, #f1cee4, #e5d5df, #efb3d6);*/
  background: #e1c4d5;
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 44px;
}

.reserve-cta-link {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 30px;
}

.htp .reserve-cta-link::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  right: 5px;
  bottom: 0;
  height: 90%;
  aspect-ratio: 2 / 1;
  background: url(../img/decoration/hair-tools.png) right bottom / contain no-repeat;
  pointer-events: none;
  transition: 0.3s ease-in-out;
}

.reserve-cta:hover .reserve-cta-link::before {
  transform: scale(1.05);
}

/* ブランド（キャッチコピー＋ロゴ） */
.reserve-cta-brand {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.reserve-cta-catch {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.reserve-cta-logo {
  width: 260px;
  height: auto;
  border-radius: 20px;
  background: #fff;
  padding: 10px;
}

/* 特長アイコン */
.reserve-cta-features {
  display: flex;
  align-items: flex-start;
}

.reserve-cta-features li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 10px 25px;
  border-left: 1px solid rgba(255, 255, 255, 0.6);
}

.reserve-cta-features li:first-child {
  border-left: none;
}

.reserve-cta-features i {
  font-size: 35px;
  color: #854058;
}

.reserve-cta-features span {
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.4;
  color: #5b303f;
  text-align: center;
}

/* 予約ボタン */
.reserve-cta-btn {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: #854058;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 16px 28px;
  border-radius: 999px;
  white-space: nowrap;
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
}

.reserve-cta:hover .reserve-cta-btn {
  /*  transform: translateY(-2px);*/
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.reserve-cta-btn span {
  background: url(../img/icon/scissor-open-br.png) center;
  background-size: cover;
  width: 20px;
  height: 20px;
  display: block;
}

.reserve-cta:hover .reserve-cta-btn span {
  background: url(../img/icon/scissor-br.png) center;
  background-size: cover;
  transform: translateX(5px);
}

@media (max-width: 1284px) {
  .reserve-cta-link {
    gap: 10px;
  }

  .reserve-cta-features li {
    padding: 10px 15px;
  }

  .reserve-cta-logo {
    width: 200px;
  }

  .reserve-cta-features span {
    font-size: 0.8rem;
  }
}

@media (max-width: 1024px) {
  .reserve-cta-link {
    gap: 20px;
    flex-direction: column;
    padding: 20px;
    align-items: flex-start;
  }

  .reserve-cta-btn {
    gap: 5px;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
    padding: 12px 20px;
  }

  .reserve-cta-logo {
    width: 30vw;
  }

  .htp .reserve-cta-link::before {
    max-height: 250px;
    height: 30vw;
  }
}

@media (max-width: 600px) {
  .reserve-cta-logo {
    width: 100%;
  }

  .reserve-cta-link {
    padding: 20px 20px 50px;
  }
}

@media (max-width: 500px) {
  .reserve-cta-features li {
    padding: 10px;
  }

  .reserve-cta-features li:first-child {
    padding-left: 0;
  }

  .reserve-cta-features li:last-child {
    padding-right: 0;
  }

  .reserve-cta-brand {
    max-width: 100%;
    width: 100%;
  }

  .reserve-cta-features span {
    font-size: 0.7rem;
  }

  .reserve-cta-features {
    align-items: center;
    justify-content: center;
    margin: auto;
  }
}

/* ---------------------------------
   通常料金（カテゴリ別）
--------------------------------- */

#standard-price {
  padding-top: 0;
  background: url(../img/bk/beigu-bk.jpg) no-repeat;
  background-size: cover;
}

#standard-price .l-container {
  z-index: 5;
  position: relative;
  padding-top: 60px;
}

.menu-category {
  margin-bottom: 60px;
}

.menu-category:last-child {
  margin-bottom: 0;
}

.menu-category-title {
  align-items: center;
  padding: 8px 22px;
  margin-bottom: 20px;
  border-radius: 999px;
  background: var(--beige-100);
  color: #8b5b27db;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-align: left;
}

.menu-item-card {
  position: relative;
  background: #fffdfc;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px 26px;
  transition:
    box-shadow 0.35s var(--ease),
    transform 0.35s var(--ease);
}

.menu-item-card:hover {
  box-shadow: 0 16px 30px rgba(58, 54, 51, 0.1);
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .menu-item-card {
    padding: 20px 20px;
  }

  #standard-price .l-container {
    padding-top: 30px;
  }

  .price-grid {
    grid-template-columns: 1fr;
  }

  .price-card {
    padding: 20px 20px;
  }
}

@media (max-width: 600px) {
  .price-section-intro p span {
    display: block;
  }
}

/* .footer-top {
  display: none;
} */
