/* ============================================================
   page-kamishitsu-kaizen.css — 髪質改善
   ============================================================ */

.kki-wrap {
  max-width: 1000px;
  margin: 0 auto;
  padding-bottom: 60px;
}

/* メインビジュアル */
.kki-hero {
  margin-bottom: 0;
}

.kki-hero img {
  width: 100%;
  height: auto;
  display: block;
}

/* バナー */
.kki-banner {
  background: #800000;
  color: #fff;
  text-align: center;
  padding: 14px 20px;
  margin-bottom: 36px;
}

.kki-banner p {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.5vw, 28px);
  font-weight: 700;
  letter-spacing: 0.06em;
}

/* リード */
.kki-lead {
  text-align: center;
  margin-bottom: 40px;
}

.kki-lead-title {
  font-family: var(--font-body);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.kki-lead-text {
  font-family: var(--font-serif-jp);
  font-size: clamp(13px, 1.4vw, 16px);
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1.9;
  color: #444;
}

/* 施術事例セクション */
.kki-cases {
  margin-bottom: 48px;
}

.kki-cases-title {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #1a1a1a;
  background: #f0ede9;
  padding: 10px 14px;
  margin-bottom: 20px;
  border-left: 3px solid #800000;
}

/* 事例グリッド */
.kki-case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* 各事例 */
.kki-case-item {
  display: flex;
  flex-direction: column;
}

/* 写真 */
.kki-photo {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}

.kki-photo img {
  width: 100%;
  height: auto;
  display: block;
}

/* Before / After ラベル */
.kki-label {
  position: absolute;
  bottom: 6px;
  background: rgba(128, 0, 0, 0.82);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 3px;
  line-height: 1.5;
}

.kki-label--before { left: 6px; }
.kki-label--after  { right: 6px; }

/* 詳細ボックス */
.kki-detail {
  border: 1px solid #e0ddd9;
  border-radius: 4px;
  padding: 10px 12px;
  background: #faf9f7;
  margin-top: 8px;
  flex: 1;
}

.kki-detail ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.kki-detail li {
  font-size: 12px;
  line-height: 1.8;
  color: #333;
}

.kki-detail-label {
  font-weight: 700;
  color: #666;
  margin-right: 6px;
}

/* 施術後コメント */
.kki-after-note {
  text-align: center;
  background: #f0eef2;
  padding: 24px 32px;
  margin-bottom: 40px;
}

.kki-after-note p {
  font-family: var(--font-body);
  font-size: clamp(13px, 1.3vw, 15px);
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 2;
  color: #1a1a1a;
}

/* メニュー */
.kki-menu {
  margin-bottom: 40px;
}

.kki-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px dashed #ccc;
}

.kki-menu-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 8px;
  border-bottom: 1px dashed #ccc;
}

.kki-menu-badge {
  flex-shrink: 0;
  background: #800000;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 0.04em;
}

.kki-menu-name {
  flex: 1;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #1a1a1a;
}

.kki-menu-name small {
  font-size: 12px;
  color: #777;
  margin-left: 4px;
}

.kki-menu-price {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  white-space: nowrap;
  letter-spacing: 0.02em;
}

/* ユーティリティ */
.pc-only { display: inline; }

/* レスポンシブ */
@media (max-width: 768px) {
  .kki-case-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
}

@media (max-width: 480px) {
  .kki-case-grid {
    grid-template-columns: 1fr;
  }

  .pc-only { display: none; }

  .kki-menu-item {
    flex-wrap: wrap;
  }

  .kki-menu-name {
    order: 3;
    width: 100%;
    margin-top: 4px;
  }

  .kki-menu-price {
    order: 2;
    margin-left: auto;
  }

  .kki-menu-badge { order: 1; }
}
