@charset "UTF-8";

/*!
Theme Name: Cocoon Child
Description: Cocoon専用の子テーマ
Theme URI: https://wp-cocoon.com/
Author: わいひら
Author URI: https://nelog.jp/
Template:   cocoon-master
Version:    1.1.3
*/

/************************************
** 子テーマ用のスタイルを書く
************************************/
/*必要ならばここにコードを書く*/

/************************************
** レスポンシブデザイン用のメディアクエリ
************************************/
/*1023px以下*/
@media screen and (max-width: 1023px){
  /*必要ならばここにコードを書く*/
}

/*834px以下*/
@media screen and (max-width: 834px){
  /*必要ならばここにコードを書く*/
  .post-card {
    max-height: 200px; /* 高さを200pxに制限 */
    overflow: hidden; /* 内容がはみ出る場合は隠す */
  }
  .post-description {
    display: none; /* 説明文を非表示 */
  }
}




.therapist-profile-box {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.therapist-img img {
  width: 200px;
  border-radius: 8px;
}

.therapist-info {
  flex: 1;
  min-width: 250px;
}

.external-link {
  display: inline-block;
  margin: 10px 0;
  color: #0066cc;
  font-weight: bold;
  text-decoration: underline;
}

/* カード */
.therapist-section {
  padding: 2rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.post-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 2rem;
}

.post-card {
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  display: flex;
  flex-direction: row;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-height: 200px;
}

.post-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.post-thumbnail {
  width: 300px;
  min-width: 300px;
  /* height: 200px; */
  overflow: hidden;
  background-color: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
}

.post-thumbnail-inner {
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
}

.thumbnail-image {
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f0f0f0;
}

.thumbnail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.post-card:hover .thumbnail-image img {
  transform: scale(1.05);
}

.no-image {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, #f8f7f4 0%, #f0ede8 50%, #f8f7f4 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* 女性シルエット（SVGインライン） */
.no-image::before {
  content: "";
  display: block;
  width: 56px;
  height: 72px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 56 72' fill='none'%3E%3Ccircle cx='28' cy='16' r='11' stroke='%23c8a84e' stroke-width='1' opacity='0.3'/%3E%3Cpath d='M8,62 C8,42 16,34 28,32 C40,34 48,42 48,62' stroke='%23c8a84e' stroke-width='1' opacity='0.3' fill='%23c8a84e' fill-opacity='0.04'/%3E%3Cpath d='M22,28 Q28,30 34,28' stroke='%23c8a84e' stroke-width='0.8' opacity='0.2'/%3E%3C/svg%3E") no-repeat center / contain;
  margin-bottom: 10px;
  flex-shrink: 0;
}

/* ゴールドライン + テキスト */
.no-image::after {
  content: "No Photo";
  display: block;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(180,155,80,0.45);
  padding-top: 8px;
  border-top: 1px solid rgba(200,168,78,0.22);
  width: 52px;
  white-space: nowrap;
  flex-shrink: 0;
}

.post-content {
  padding: 0.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex-grow: 1;
  justify-content: space-between;
}

.post-description {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
  margin: 0.75rem 0;
  text-align: justify;
}

.post-label {
  font-size: 0.5rem;
  color: #0f1923;
  background: linear-gradient(135deg, #c9a96e, #dfc59b);
  display: inline-block;
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
  font-weight: 700;
  align-self: flex-start;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.post-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.4;
  color: #2c3e50;
}

.post-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.post-title a:hover {
  color: #3498db;
}

.post-excerpt {
  font-size: 0.9rem;
  color: #7f8c8d;
  line-height: 1.5;
  margin-top: auto;
}

.post-date {
  font-size: 0.85rem;
  color: #95a5a6;
  font-weight: 500;
  margin-top: auto;
}

.pagination {
  text-align: center;
  margin-top: 3rem;
}

.pagination .page-numbers {
  display: inline-block;
  margin: 0 8px;
  border: 2px solid #e1e8ed;
  border-radius: 8px;
  color: #657786;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  min-width: 50px;
  text-align: center;
}

.pagination .page-numbers:hover {
  background-color: #3498db;
  color: white;
  border-color: #3498db;
  transform: translateY(-2px);
}

.pagination .current {
  background-color: #2c3e50;
  color: #fff;
  border-color: #2c3e50;
  transform: translateY(-2px);
}

/* セクションスタイリング */
section {
  margin-bottom: 4rem;
}

section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 2rem;
  text-align: center;
  position: relative;
  padding-bottom: 1rem;
}

section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(135deg, #c9a96e, #b8944f);
  border-radius: 2px;
}

/* エラーメッセージスタイリング */
.no-posts {
  text-align: center;
  padding: 3rem 1rem;
  color: #7f8c8d;
  font-size: 1.1rem;
  font-style: italic;
  background: #f8f9fa;
  border-radius: 12px;
  border: 2px dashed #bdc3c7;
}

/* 店舗セクション */
.salon-section {
  padding: 2rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* グローバル背景 — Premium Noir */
body {
  background: #f7f6f3;
  min-height: 100vh;
}

/* カードのより洗練されたスタイル */
.post-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* ローディングアニメーション風のスタイル */
.post-card:nth-child(odd) {
  animation-delay: 0.1s;
}

.post-card:nth-child(even) {
  animation-delay: 0.2s;
}

.post-card:nth-child(3n) {
  animation-delay: 0.3s;
}

/* タイトルのスタイリング改善 */
.post-title a {
  color: #1a2a3a;
  -webkit-text-fill-color: #1a2a3a;
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  transition: color 0.3s ease;
}

.post-title a:hover {
  color: #c9a96e;
  -webkit-text-fill-color: #c9a96e;
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  transform: translateY(-1px);
}

/* レスポンシブ改善 */
@media screen and (max-width: 1023px) {
  .post-card {
    flex-direction: row;
    min-height: 180px;
  }
  
  .post-thumbnail {
    width: 280px;
    min-width: 280px;
    /* height: 180px; */
  }
  
  .therapist-section {
    padding: 1.5rem 1rem;
  }
  
  section h2 {
    font-size: 1.75rem;
  }
}

@media screen and (max-width: 834px) {
  .post-card {
    flex-direction: row;
    min-height: 160px;
  }
  
  .post-thumbnail {
    width: 250px;
    min-width: 250px;
    /* height: 160px; */
  }
  
  .post-content {
    padding: 1.25rem;
  }
  
  .therapist-section {
    padding: 1rem 0.75rem;
  }
  
  section h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  /* サイドバーウィジェットのレスポンシブ */
  .salon-categories-widget .widget-title,
  .salon-scroll-widget .widget-title {
    font-size: 1rem;
    padding: 10px 14px;
  }
  
  .salon-category-link {
    padding: 10px 14px;
    font-size: 0.85rem;
  }
  
  .salon-scroll-widget .widget-content {
    max-height: 50vh;
  }
  .post-date {
    font-size: 0.7rem;
  }
}

@media screen and (max-width: 480px) {
  .post-card {
    flex-direction: row;
    min-height: 140px;
  }
  
  .post-thumbnail {
    width: 200px;
    min-width: 200px;
    /* height: 140px; */
  }
  
  .post-content {
    padding: 1rem;
  }
  
  .therapist-section {
    padding: 1rem 0.5rem;
  }
  
  section h2 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }
  
  .pagination .page-numbers {
    margin: 0 4px;
    font-size: 0.6rem;
    min-width: 36px;
  }
  
  .post-description {
    font-size: 0.85rem;
  }
  
  .post-title {
    font-size: 0.7rem;
  }
  .post-date {
    font-size: 0.6rem;
  }
}

/* 極小画面でも横配置を維持 */
@media screen and (max-width: 360px) {
  .post-card {
    flex-direction: row;
    min-height: 120px;
  }
  
  .post-thumbnail {
    width: 160px;
    min-width: 160px;
    /* height: 120px; */
  }
  
  .post-content {
    padding: 0.75rem;
  }
  
  .post-description {
    font-size: 0.8rem;
  }
  
  .post-title {
    font-size: 0.7rem;
  }
  
  .post-date {
    font-size: 0.5rem;
  }

  .pagination .page-numbers {
    margin: 0 4px;
    font-size: 0.6rem;
    min-width: 36px;
  }
}

/* メインページスタイリング */
main {
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

main h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a2a3a;
  text-align: center;
  margin-bottom: 3rem;
}

/* アニメーション効果 */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.post-card {
  animation: fadeInUp 0.6s ease-out;
}

/* カードホバー効果の改善 */
.post-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

/* サイドバー店舗カテゴリーウィジェット */
.salon-categories-widget,
.salon-scroll-widget {
  margin-bottom: 30px;
}

.salon-categories-widget .widget-title,
.salon-scroll-widget .widget-title {
  background: linear-gradient(160deg, #0f1923, #1a2a3a);
  color: #dfc59b;
  padding: 12px 16px;
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 8px 8px 0 0;
  text-align: center;
  letter-spacing: 0.03em;
}

.salon-categories-widget .widget-content,
.salon-scroll-widget .widget-content {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-top: none;
  border-radius: 0 0 8px 8px;
  padding: 0;
  max-height: 400px;
  overflow-y: auto;
}

.salon-category-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.salon-category-item {
  border-bottom: 1px solid #f0f0f0;
}

.salon-category-item:last-child {
  border-bottom: none;
}

.salon-category-link {
  display: block;
  padding: 12px 16px;
  color: #333;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  line-height: 1.4;
}

.salon-category-link:hover {
  background-color: #f7f6f3;
  color: #c9a96e;
  padding-left: 20px;
}

.salon-category-link:hover::before {
  content: "▶ ";
  color: #c9a96e;
  font-size: 0.8rem;
}

/* サイドバーセラピストカテゴリーウィジェット */
.therapist-categories-widget {
  margin-bottom: 30px;
}

.therapist-categories-widget .widget-title {
  background: linear-gradient(160deg, #0f1923, #1a2a3a);
  color: #dfc59b;
  padding: 12px 16px;
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 8px 8px 0 0;
  text-align: center;
  letter-spacing: 0.03em;
}

.therapist-categories-widget .widget-content {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-top: none;
  border-radius: 0 0 8px 8px;
  padding: 0;
}

.therapist-category-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.therapist-category-item {
  border-bottom: 1px solid #f0f0f0;
}

.therapist-category-item:last-child {
  border-bottom: none;
}

.therapist-category-link {
  display: block;
  padding: 12px 16px;
  color: #333;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  line-height: 1.4;
}

.therapist-category-link:hover {
  background-color: #f7f6f3;
  color: #c9a96e;
  padding-left: 20px;
}

.therapist-category-link:hover::before {
  content: "▶ ";
  color: #c9a96e;
  font-size: 0.8rem;
}

/* 共通のウィジェットボックススタイル */
.salon-categories-widget,
.therapist-categories-widget,
.salon-scroll-widget {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.salon-categories-widget:hover,
.therapist-categories-widget:hover,
.salon-scroll-widget:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

/* スクロール追従ウィジェット専用スタイル */
.salon-scroll-widget {
  position: sticky;
  top: 20px;
  z-index: 100;
}

.salon-scroll-widget .widget-content {
  max-height: 60vh;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #ccc #f1f1f1;
}

/* Webkit ブラウザ用のスクロールバースタイル */
.salon-scroll-widget .widget-content::-webkit-scrollbar {
  width: 6px;
}

.salon-scroll-widget .widget-content::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
}

.salon-scroll-widget .widget-content::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 3px;
}

.salon-scroll-widget .widget-content::-webkit-scrollbar-thumb:hover {
  background: #999;
}

/* スクロール追従時のアニメーション */
.salon-scroll-widget {
  transition: all 0.3s ease;
}

/* 追従ウィジェットに影を追加 */
.salon-scroll-widget {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

/* レスポンシブ対応: 小さい画面では追従を無効にする */
@media screen and (max-width: 1023px) {
  .salon-scroll-widget {
    position: static;
    top: auto;
  }
}

@media screen and (max-width: 834px) {
  .hide-on-small {
    display: none !important;
  }
}

/* ================================
 * セラピスト個別ページ — Premium Noir テーマ
 * カラーパレット:
 *   --noir-deep: #0f1923 (ダークネイビー)
 *   --noir-mid: #1a2a3a (ミッド)
 *   --gold: #c9a96e (ゴールド)
 *   --gold-light: #dfc59b
 *   --rose: #d4789c (モダンローズ)
 *   --surface: #fff
 *   --surface-alt: #f7f6f3 (ウォームグレー)
 *   --text: #1e1e1e
 *   --text-muted: #6b7280
 *   --border: #e5e2dd
 * ================================ */

/* ================================================================
 * 共通ページヒーロー（セラピスト・サロン共通）
 * ================================================================ */
.page-hero {
  background: linear-gradient(135deg, #0a1628 0%, #12253a 40%, #1a3350 70%, #0f1923 100%);
  padding: 52px 24px 44px;
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(201,169,110,0.18) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(201,169,110,0.10) 0%, transparent 45%),
    radial-gradient(circle at 50% 0%, rgba(255,255,255,0.03) 0%, transparent 40%);
  pointer-events: none;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #c9a96e, #dfc59b, #c9a96e, transparent);
}

.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.page-hero-title {
  font-size: 1.6rem !important;
  font-weight: 800 !important;
  margin: 0 0 8px 0 !important;
  letter-spacing: 0.03em;
  line-height: 1.45 !important;
  text-align: center !important;
  background: linear-gradient(135deg, #fff 0%, #f0e2c4 40%, #dfc59b 60%, #fff 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  text-shadow: none !important;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
}

.page-hero-badges {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.page-hero-badge {
  background: linear-gradient(135deg, rgba(201,169,110,0.2), rgba(201,169,110,0.08));
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(201,169,110,0.35);
  padding: 7px 18px;
  border-radius: 24px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #dfc59b;
  text-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

.page-hero-link {
  margin-top: 16px;
}

.page-hero-link a {
  display: inline-block;
  color: #dfc59b;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  border: 1px solid rgba(201,169,110,0.4);
  padding: 8px 20px;
  border-radius: 24px;
  transition: all 0.3s;
}

.page-hero-link a:hover {
  background: rgba(201,169,110,0.15);
  border-color: #c9a96e;
}

@media (max-width: 768px) {
  .page-hero {
    padding: 32px 16px 24px;
  }

  .page-hero-title {
    font-size: 1.2rem !important;
  }

  .page-hero-badge {
    padding: 5px 12px;
    font-size: 0.75rem;
  }
}

/* セラピスト詳細ページレイアウト */
.therapist-detail-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}

.therapist-detail-image {
  flex: 1;
  min-width: 250px;
}

.therapist-detail-image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.therapist-detail-info {
  flex: 2;
  min-width: 300px;
}

@media (max-width: 768px) {
  .therapist-detail-layout {
    flex-direction: column;
    gap: 20px;
  }

  .therapist-detail-image,
  .therapist-detail-info {
    min-width: 100%;
  }
}

/* ヒーローセクション */
.hero-section {
  background: linear-gradient(135deg, #0a1628 0%, #12253a 35%, #1a3350 65%, #0f1923 100%);
  padding: 56px 24px 48px;
  margin-bottom: 0;
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse at 15% 85%, rgba(201,169,110,0.22) 0%, transparent 45%),
    radial-gradient(ellipse at 85% 15%, rgba(201,169,110,0.14) 0%, transparent 40%),
    radial-gradient(circle at 50% 50%, rgba(201,169,110,0.05) 0%, transparent 50%);
  pointer-events: none;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 5%, #b8944f, #dfc59b, #c9a96e, #dfc59b, #b8944f, transparent 95%);
}

.hero-content { 
  position: relative; 
  z-index: 1; 
  max-width: 720px;
  margin: 0 auto;
}

.hero-content::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, #c9a96e, #dfc59b);
  margin: 14px auto 0;
  border-radius: 2px;
}

.hero-title { 
  font-size: 1.75rem;
  font-weight: 800; 
  margin: 0 0 4px 0 !important;
  letter-spacing: 0.04em;
  line-height: 1.45;
  background: linear-gradient(135deg, #fff 0%, #f0e2c4 40%, #dfc59b 60%, #fff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none !important;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
}

.hero-badges { 
  display: flex; 
  justify-content: center; 
  gap: 10px;
  margin-top: 20px;
  flex-wrap: wrap; 
}

.badge { 
  background: linear-gradient(135deg, rgba(201,169,110,0.25), rgba(201,169,110,0.10));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(201,169,110,0.45);
  padding: 8px 20px;
  border-radius: 24px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #e8d5a8;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 6px rgba(0,0,0,0.3);
  transition: all 0.3s;
}

.badge:hover {
  background: linear-gradient(135deg, rgba(201,169,110,0.4), rgba(201,169,110,0.2));
  border-color: rgba(201,169,110,0.7);
  transform: translateY(-1px);
}

/* プロフィールセクション */
.enhanced-profile {
  background: #fff;
  padding: 28px 24px;
  border-radius: 16px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 8px 24px rgba(0,0,0,0.04);
  margin-bottom: 24px;
  border: 1px solid #e5e2dd;
}

.enhanced-profile > h2 {
  font-size: 1.15rem;
  color: #1e1e1e;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid #c9a96e;
  text-align: left;
  letter-spacing: 0.02em;
}

.enhanced-profile > h2::after {
  display: none;
}

.profile-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 16px 0;
}

.profile-item {
  background: #f7f6f3;
  padding: 16px 12px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid #e5e2dd;
  transition: border-color 0.25s;
}

.profile-item:hover {
  border-color: #c9a96e;
}

.profile-value {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a2a3a;
}

.profile-value a {
  color: #c9a96e !important;
  text-decoration: none !important;
  font-weight: 700;
}

.profile-value a:hover {
  text-decoration: underline !important;
}

.profile-label {
  font-size: 0.75rem;
  color: #6b7280;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
}

.comment-box {
  background: #f7f6f3;
  padding: 20px;
  border-radius: 12px;
  border-left: 3px solid #c9a96e;
  margin: 20px 0;
  font-size: 0.92rem;
  line-height: 1.8;
  color: #444;
}

.comment-box h3 {
  color: #1a2a3a;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 8px;
}

/* 店舗情報テーブル */
.shop-info-heading {
  color: #1a2a3a;
  font-size: 1rem;
  font-weight: 700;
  margin: 24px 0 12px 0;
}

.shop-info-table-wrap {
  background: #f7f6f3;
  padding: 4px;
  border-radius: 12px;
  border: 1px solid #e5e2dd;
}

.shop-info-table {
  width: 100%;
  border-collapse: collapse;
}

.shop-info-table td {
  padding: 11px 16px;
  border-bottom: 1px solid #e5e2dd;
  font-size: 0.9rem;
  color: #444;
}

.shop-info-table tr:last-child td {
  border-bottom: none;
}

.shop-info-table td:first-child {
  font-weight: 600;
  color: #1a2a3a;
  width: 100px;
  white-space: nowrap;
}

.shop-info-table a {
  color: #c9a96e;
  font-weight: 600;
  text-decoration: none;
}

.shop-info-table a:hover {
  text-decoration: underline;
}

/* 身長/3サイズ */
.body-stats-box {
  background: #f7f6f3;
  padding: 14px 18px;
  border-radius: 10px;
  margin: 16px 0;
  font-size: 0.92rem;
  color: #444;
  border: 1px solid #e5e2dd;
}

/* CTA部分 */
.purchase-cta {
  background: linear-gradient(160deg, #0f1923, #1a2a3a 60%, #243447);
  color: #fff;
  text-align: center;
  padding: 40px 24px;
  border-radius: 20px;
  margin: 32px 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(15,25,35,0.25);
  border: 1px solid rgba(201,169,110,0.2);
}

.purchase-cta::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(201,169,110,0.15) 0%, transparent 60%);
  pointer-events: none;
}

.cta-urgent {
  background: linear-gradient(135deg, #c9a96e, #b8944f);
  color: #0f1923;
  padding: 6px 18px;
  border-radius: 24px;
  font-size: 0.72rem;
  font-weight: 800;
  display: inline-block;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
  animation: none;
}

.cta-title {
  font-size: 1.45rem;
  font-weight: 800;
  margin-bottom: 10px;
  text-shadow: none;
  position: relative;
  z-index: 1;
  letter-spacing: 0.02em;
}

.cta-subtitle {
  font-size: 0.9rem;
  margin-bottom: 24px;
  opacity: 0.75;
  position: relative;
  z-index: 1;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 24px 0;
  text-align: left;
  position: relative;
  z-index: 1;
}

.benefit-item {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 0.82rem;
  line-height: 1.5;
  color: rgba(255,255,255,0.88);
}

.benefit-item::before {
  content: '✓';
  margin-right: 8px;
  font-weight: 700;
  color: #c9a96e;
}

.price-highlight {
  background: rgba(201,169,110,0.15);
  border: 1px solid rgba(201,169,110,0.3);
  padding: 14px 28px;
  border-radius: 28px;
  display: inline-block;
  margin: 20px 0;
  font-size: 1.15rem;
  font-weight: 800;
  color: #dfc59b;
  position: relative;
  z-index: 1;
  letter-spacing: 0.03em;
}

.cta-button {
  background: linear-gradient(135deg, #FF6B35, #E63946);
  color: #fff;
  padding: 16px 44px;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(230,57,70,0.4);
  margin: 16px 0;
  position: relative;
  z-index: 1;
  letter-spacing: 0.03em;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(230,57,70,0.55);
  background: linear-gradient(135deg, #E63946, #FF6B35);
}

.cta-note {
  font-size: 0.82rem;
  margin: 14px 0 0 0;
  opacity: 0.65;
  position: relative;
  z-index: 1;
  letter-spacing: 0.01em;
}

.codoc-embed-wrap {
  margin: 24px auto 48px auto;
  max-width: 720px;
}

/* 共通セクション */
.common-section {
  background: #fff;
  padding: 28px 24px;
  border-radius: 16px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 8px 24px rgba(0,0,0,0.04);
  margin: 32px 0;
  border: 1px solid #e5e2dd;
}

.section-header {
  background: linear-gradient(160deg, #0f1923, #1a2a3a);
  padding: 18px 24px;
  margin: -28px -24px 24px -24px;
  border-radius: 16px 16px 0 0;
  text-align: center;
}

.section-header h2 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  text-shadow: none;
  margin: 0;
  padding-bottom: 0;
  letter-spacing: 0.02em;
}

.section-header h2::after {
  display: none;
}

.common-content {
  line-height: 1.8;
  font-size: 0.95rem;
  color: #444;
}

/* 関連セラピスト */
.related-therapists-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin: 20px 0;
}

.related-therapist-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  border: 1px solid #e5e2dd;
}

.related-therapist-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(15,25,35,0.12);
  border-color: #c9a96e;
}

.card-rank {
  position: absolute;
  top: 12px;
  left: 12px;
  background: linear-gradient(135deg, #c9a96e, #b8944f);
  color: #0f1923;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.card-image {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.related-therapist-card:hover .card-image img {
  transform: scale(1.06);
}

.card-content {
  padding: 18px;
}

.card-title {
  font-size: 1rem;
  font-weight: 700;
  color: #1e1e1e;
  margin-bottom: 10px;
  line-height: 1.35;
}

.card-stats {
  display: flex;
  gap: 6px;
  margin-bottom: 12px;
}

.stat-badge {
  background: #f7f6f3;
  color: #1a2a3a;
  padding: 3px 10px;
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  border: 1px solid #e5e2dd;
}

.stat-badge.age {
  background: #f7f6f3;
  color: #1a2a3a;
}

.card-meta {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 14px;
  font-size: 0.78rem;
  flex-wrap: wrap;
  gap: 10px;
}

.view-count, .popularity-score {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #6b7280;
}

.view-icon, .fire-icon {
  font-size: 0.85rem;
}

.popularity-score {
  color: #c9a96e;
  font-weight: 700;
}

.content-badge {
  background: linear-gradient(135deg, #c9a96e, #dfc59b);
  color: #0f1923;
  padding: 3px 8px;
  border-radius: 6px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.card-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f7f6f3;
  padding: 12px 18px;
  margin: -18px;
  margin-top: 14px;
  border-radius: 0 0 14px 14px;
  transition: all 0.3s ease;
  border-top: 1px solid #e5e2dd;
}

.related-therapist-card:hover .card-cta {
  background: #1a2a3a;
  color: #fff;
  border-top-color: #1a2a3a;
}

.cta-text {
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
}

.cta-arrow {
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.related-therapist-card:hover .cta-arrow {
  transform: translateX(4px);
  color: #c9a96e;
}

.more-therapists {
  text-align: center;
  margin-top: 28px;
}

.more-link {
  display: inline-block;
  background: #1a2a3a;
  color: #dfc59b;
  padding: 12px 32px;
  border-radius: 28px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(201,169,110,0.3);
  letter-spacing: 0.02em;
}

.more-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(15,25,35,0.2);
  background: #0f1923;
  border-color: #c9a96e;
  color: #c9a96e;
}

/* セラピスト個別ページのレスポンシブ */
@media (max-width: 768px) {
  .hero-section {
    padding: 40px 16px 32px;
  }

  .hero-title { 
    font-size: 1.3rem;
  }
  
  .hero-badges { 
    gap: 8px;
  }

  .badge {
    padding: 6px 14px;
    font-size: 0.75rem;
  }

  .enhanced-profile {
    padding: 20px 16px;
  }
  
  .profile-grid { 
    grid-template-columns: 1fr;
    gap: 8px;
  }

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

  .profile-layout {
    flex-direction: column;
    gap: 20px;
  }

  .profile-image-container,
  .profile-details-container {
    min-width: 100%;
  }
  
  .cta-button { 
    width: 100%; 
    margin: 12px 0;
    padding: 16px 20px;
  }

  .purchase-cta {
    padding: 32px 16px;
    border-radius: 16px;
  }

  .cta-title {
    font-size: 1.2rem;
  }
  
  .related-therapists-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .card-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .common-section {
    padding: 20px 16px;
  }

  .section-header {
    margin: -20px -16px 20px -16px;
    padding: 14px 16px;
    border-radius: 16px 16px 0 0;
  }
}

/* プロフィールレイアウト */
.profile-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.profile-image-container {
  flex: 1;
  min-width: 250px;
}

.profile-image-wrapper {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.profile-image-wrapper img {
  display: block;
  width: 100%;
  height: auto;
}

.profile-image-wrapper .no-image {
  aspect-ratio: 3 / 4;
  min-height: 360px;
}

.profile-image-wrapper .no-image::before {
  width: 100px;
  height: 128px;
  margin-bottom: 16px;
}

.profile-image-wrapper .no-image::after {
  font-size: 0.85rem;
  letter-spacing: 0.28em;
  padding-top: 12px;
  width: 90px;
}

.profile-details-container {
  flex: 2;
  min-width: 300px;
}

/* ================================
 * パンくずリスト
 * ================================ */
.kamipantsu-breadcrumb {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 20px;
  font-size: 0.78rem;
  background: #f7f6f3;
  border-bottom: 1px solid #e5e2dd;
}

.kamipantsu-breadcrumb ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
}

.kamipantsu-breadcrumb li {
  display: inline;
}

.kamipantsu-breadcrumb li.separator {
  margin: 0 6px;
  color: #aaa;
  font-size: 0.7rem;
}

.kamipantsu-breadcrumb a {
  color: #6b7280;
  text-decoration: none;
  transition: color 0.2s;
}

.kamipantsu-breadcrumb a:hover {
  color: #c9a96e;
}

.kamipantsu-breadcrumb li:last-child span {
  color: #1e1e1e;
  font-weight: 600;
}

/* ================================
 * SEO FAQ セクション
 * ================================ */
.seo-faq-section {
  background: #fff;
  border-radius: 16px;
  padding: 28px 24px;
  margin: 24px 0;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 8px 24px rgba(0,0,0,0.04);
  border: 1px solid #e5e2dd;
}

.seo-faq-section h2 {
  font-size: 1.1rem;
  color: #1e1e1e;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid #c9a96e;
  text-align: left;
  letter-spacing: 0.02em;
}

.seo-faq-section h2::after {
  display: none;
}

.seo-faq-section dl {
  margin: 0;
}

.seo-faq-section dt {
  font-weight: 700;
  color: #1e1e1e;
  font-size: 0.92rem;
  padding: 14px 0 6px 0;
  border-top: 1px solid #f0eeeb;
  line-height: 1.5;
}

.seo-faq-section dt:first-of-type {
  border-top: none;
  padding-top: 0;
}

.seo-faq-section dd {
  color: #555;
  font-size: 0.88rem;
  line-height: 1.75;
  margin: 0 0 8px 0;
  padding-left: 0;
}

/* dt/dd のQA装飾は PHP側のテキストで対応（CSS疑似要素不使用） */

/* レガシー互換 */
.seo-faq-item {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #f0eeeb;
}

.seo-faq-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.seo-faq-q {
  font-weight: 700;
  color: #1e1e1e;
  margin-bottom: 5px;
  font-size: 0.92rem;
}

.seo-faq-q::before {
  content: 'Q. ';
  color: #c9a96e;
  font-weight: 800;
}

.seo-faq-a {
  color: #555;
  line-height: 1.75;
  font-size: 0.88rem;
  padding-left: 24px;
}

.seo-faq-a::before {
  content: 'A. ';
  color: #1a2a3a;
  font-weight: 700;
}

/* ================================
 * 内部リンクセクション
 * ================================ */
.related-links-section {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  margin: 24px 0;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 8px 24px rgba(0,0,0,0.04);
  border: 1px solid #e5e2dd;
}

.related-links-section h2 {
  font-size: 1.05rem;
  color: #1e1e1e;
  margin-bottom: 16px;
  text-align: left;
  padding-bottom: 10px;
  border-bottom: 2px solid #c9a96e;
}

.related-links-section h2::after {
  display: none;
}

.related-links-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.related-links-section li {
  margin: 0;
}

.related-links-section a,
.related-links-tags a {
  display: inline-block;
  padding: 6px 14px;
  background: #f7f6f3;
  border: 1px solid #e5e2dd;
  border-radius: 8px;
  color: #1e1e1e;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  transition: all 0.25s;
}

.related-links-section a:hover,
.related-links-tags a:hover {
  background: #1a2a3a;
  color: #dfc59b;
  border-color: #1a2a3a;
}

.related-links-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* エリアナビゲーション */
.area-nav-section {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 30px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.area-nav-section h2 {
  font-size: 1.3rem;
  color: #2c3e50;
  margin-bottom: 20px;
  text-align: center;
}

.area-region-group {
  margin-bottom: 16px;
}

.area-region-group:last-child {
  margin-bottom: 0;
}

.area-region-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: #1a2a3a;
  margin-bottom: 8px;
  padding-left: 4px;
  border-left: 3px solid #c8a84e;
  padding-left: 10px;
}

.area-nav-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 10px;
}

.area-nav-btn {
  display: block;
  text-align: center;
  padding: 12px 8px;
  background: #f8f9fa;
  border-radius: 8px;
  text-decoration: none;
  color: #333;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s;
  border: 1px solid #e0e0e0;
}

.area-nav-btn:hover {
  background: #1a2a3a;
  color: #dfc59b;
  transform: translateY(-2px);
  border-color: #1a2a3a;
}

.area-nav-btn .count,
.area-nav-btn .area-nav-count {
  display: block;
  font-size: 0.7rem;
  color: #888;
  margin-top: 3px;
  font-weight: 400;
}

.area-nav-btn:hover .count,
.area-nav-btn:hover .area-nav-count {
  color: rgba(255,255,255,0.8);
}

@media screen and (max-width: 834px) {
  .area-nav-grid {
    grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
  }
}

/* ===== 都道府県エリア一覧ページ ===== */
.pref-area-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
  margin: 24px 0;
}

.pref-area-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: #f8f9fa;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  text-decoration: none;
  color: #1e1e1e;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.25s;
}

.pref-area-card:hover {
  background: #1a2a3a;
  color: #dfc59b;
  border-color: #1a2a3a;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.pref-area-arrow {
  font-size: 1.3rem;
  color: #aaa;
  transition: color 0.25s;
}

.pref-area-card:hover .pref-area-arrow {
  color: #dfc59b;
}

.pref-other-nav {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid #e5e7eb;
}

.pref-other-nav h2 {
  font-size: 1.1rem;
  margin-bottom: 16px;
}

@media screen and (max-width: 480px) {
  .pref-area-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== セラピストページ追加SEOセクション — Premium Noir ===== */

/* 共通: コンテンツセクションベース */
.seo-about-section,
.seo-booking-guide,
.seo-why-review-section {
  background: #fff;
  border-radius: 16px;
  padding: 28px 24px;
  margin: 24px 0;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 8px 24px rgba(0,0,0,0.04);
  border: 1px solid #e5e2dd;
  line-height: 1.85;
}

.seo-about-section h2,
.seo-booking-guide h2,
.seo-why-review-section h2 {
  font-size: 1.1rem;
  color: #1e1e1e;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid #c9a96e;
  text-align: left;
  letter-spacing: 0.02em;
}

.seo-about-section h2::after,
.seo-booking-guide h2::after,
.seo-why-review-section h2::after {
  display: none;
}

.seo-about-section p,
.seo-booking-guide p,
.seo-why-review-section p {
  color: #444;
  font-size: 0.92rem;
  margin-bottom: 12px;
}

.seo-about-section p:last-child {
  margin-bottom: 0;
}

/* booking guide の h3 */
.seo-booking-guide h3 {
  font-size: 1rem;
  color: #1a2a3a;
  margin: 24px 0 10px 0;
  padding-left: 14px;
  border-left: 3px solid #c9a96e;
  font-weight: 700;
}

.seo-booking-guide ul {
  padding-left: 20px;
  margin: 10px 0 16px 0;
}

.seo-booking-guide li {
  color: #555;
  font-size: 0.88rem;
  margin-bottom: 6px;
  line-height: 1.75;
}

.seo-booking-guide a {
  color: #c9a96e;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}

.seo-booking-guide a:hover {
  color: #b8944f;
  text-decoration: underline;
}

/* why review の h3 */
.seo-why-review-section h3 {
  font-size: 1.05rem;
  color: #1a2a3a;
  margin: 24px 0 14px 0;
  font-weight: 700;
}

/* 紙パンツ協会が選ばれる3つの理由カード */
.reason-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 18px 0;
}

.reason-card {
  background: #f7f6f3;
  border: 1px solid #e5e2dd;
  border-radius: 14px;
  padding: 20px 16px;
  text-align: center;
  position: relative;
  transition: border-color 0.25s, transform 0.25s;
}

.reason-card:hover {
  border-color: #c9a96e;
  transform: translateY(-2px);
}

.reason-number {
  width: 34px;
  height: 34px;
  background: linear-gradient(135deg, #c9a96e, #b8944f);
  color: #0f1923;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
  margin: 0 auto 12px auto;
}

.reason-card h4 {
  font-size: 0.92rem;
  color: #1e1e1e;
  margin: 0 0 8px 0;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.reason-card p {
  font-size: 0.8rem;
  color: #555;
  line-height: 1.65;
  margin: 0;
  text-align: left;
}

/* 5つのチェックポイント */
.checkpoint-list {
  margin: 18px 0;
}

.checkpoint-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid #f0eeeb;
}

.checkpoint-item:last-child {
  border-bottom: none;
}

.checkpoint-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0f1923, #1a2a3a);
  border-radius: 10px;
  color: #c9a96e;
}

.checkpoint-item strong {
  display: block;
  font-size: 0.92rem;
  color: #1e1e1e;
  margin-bottom: 4px;
}

.checkpoint-item p {
  font-size: 0.84rem;
  color: #555;
  line-height: 1.65;
  margin: 0;
}

/* 料金相場テーブル */
.price-table {
  width: 100%;
  border-collapse: collapse;
  margin: 14px 0 20px 0;
  font-size: 0.88rem;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #e5e2dd;
}

.price-table thead tr {
  background: #1a2a3a;
  color: #dfc59b;
}

.price-table th {
  padding: 11px 16px;
  text-align: left;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.03em;
}

.price-table td {
  padding: 11px 16px;
  border-bottom: 1px solid #f0eeeb;
  color: #444;
}

.price-table tbody tr:nth-child(even) {
  background: #f7f6f3;
}

.price-table tbody tr:hover {
  background: #ede9e3;
}

/* 用語集 */
.glossary-list {
  margin: 14px 0 20px 0;
}

.glossary-list dt {
  font-weight: 700;
  color: #1e1e1e;
  font-size: 0.92rem;
  margin-top: 16px;
  padding-left: 14px;
  border-left: 3px solid #c9a96e;
}

.glossary-list dd {
  color: #555;
  font-size: 0.86rem;
  margin: 4px 0 0 17px;
  line-height: 1.75;
}

/* 当日の流れリスト */
.flow-list {
  counter-reset: flow-counter;
  list-style: none;
  padding: 0;
  margin: 16px 0 20px 0;
}

.flow-list li {
  counter-increment: flow-counter;
  position: relative;
  padding-left: 44px;
  margin-bottom: 14px;
  font-size: 0.88rem;
  color: #444;
  line-height: 1.75;
}

.flow-list li::before {
  content: counter(flow-counter);
  position: absolute;
  left: 0;
  top: 1px;
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, #c9a96e, #b8944f);
  color: #0f1923;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 800;
}

/* 予約ガイド h4 */
.seo-booking-guide h4 {
  font-size: 0.95rem;
  color: #1a2a3a;
  margin: 20px 0 8px 0;
  font-weight: 700;
}

/* 予約ガイド ol */
.seo-booking-guide ol {
  padding-left: 20px;
  margin: 10px 0 16px 0;
}

/* === モバイルレスポンシブ: SEOセクション === */
@media screen and (max-width: 834px) {
  .seo-about-section,
  .seo-booking-guide,
  .seo-why-review-section {
    padding: 20px 16px;
    border-radius: 14px;
  }

  .reason-cards {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .reason-card {
    padding: 16px 14px;
    display: flex;
    gap: 14px;
    text-align: left;
    align-items: flex-start;
  }

  .reason-number {
    margin: 0;
    flex-shrink: 0;
  }

  .reason-card h4 {
    margin-top: 0;
  }

  .price-table {
    font-size: 0.82rem;
  }

  .price-table th,
  .price-table td {
    padding: 9px 12px;
  }

  .flow-list li {
    padding-left: 38px;
  }

  .flow-list li::before {
    width: 26px;
    height: 26px;
    font-size: 0.72rem;
  }

  .checkpoint-item {
    gap: 12px;
    padding: 14px 0;
  }

  .checkpoint-icon {
    width: 38px;
    height: 38px;
    font-size: 1.1rem;
  }
}


/* ================================================================
 * サイト全体 — Premium Noir グローバルオーバーライド
 * Cocoon テーマのヘッダー/ナビ/フッター/ウィジェット等
 * ================================================================ */

/* --- ヘッダー --- */
.header-container,
#header-container {
  background: #0f1923 !important;
  border-bottom: 1px solid rgba(201,169,110,0.2);
}

.header,
#header {
  background: transparent !important;
}

/* ロゴ画像のサイズ調整（PC） */
.logo-header img,
.site-logo-image img {
  max-width: 400px;
  max-height: 100px;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* スマホでは少し控えめに */
@media screen and (max-width: 480px) {
  .logo-header img,
  .site-logo-image img {
    max-width: 280px;
    max-height: 60px;
  }
}

/* ヘッダー内のサイト名テキストを非表示 */
.logo-header .site-name-text {
  font-size: 0;
  line-height: 0;
}

.site-name-text,
.site-name-text a {
  color: #fff !important;
  text-shadow: none;
}

.tagline {
  color: rgba(255,255,255,0.5) !important;
}

/* --- ナビゲーション --- */
.navi,
#navi {
  background: #1a2a3a !important;
  border-bottom: 1px solid rgba(201,169,110,0.15);
}

.navi-in a {
  color: rgba(255,255,255,0.85) !important;
  transition: color 0.2s;
}

.navi-in a:hover {
  color: #c9a96e !important;
  background: rgba(201,169,110,0.08) !important;
}

.navi-in > ul > li {
  border-right: 1px solid rgba(255,255,255,0.08);
}

.navi-in > ul > li:last-child {
  border-right: none;
}

/* サブメニュー */
.navi-in ul ul {
  background: #1a2a3a !important;
  border: 1px solid rgba(201,169,110,0.15);
}

.navi-in ul ul a {
  color: rgba(255,255,255,0.8) !important;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.navi-in ul ul a:hover {
  background: rgba(201,169,110,0.1) !important;
  color: #c9a96e !important;
}

/* --- アナウンスバー（赤→ネイビー＋ゴールド） --- */
#notice-area,
.notice-area {
  background: linear-gradient(90deg, #c9a96e, #b8944f) !important;
  color: #0f1923 !important;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.notice-area a,
.notice-area-link {
  color: #0f1923 !important;
}

/* --- サイドバー共通ウィジェット --- */
.sidebar h2,
.sidebar h3,
.sidebar .widget-title {
  background: linear-gradient(160deg, #0f1923, #1a2a3a) !important;
  color: #dfc59b !important;
  padding: 12px 16px;
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 8px 8px 0 0;
  text-align: center;
  letter-spacing: 0.03em;
}

.sidebar .widget {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 4px 12px rgba(0,0,0,0.04);
  border: 1px solid #e5e2dd;
  margin-bottom: 24px;
}

.sidebar .widget-content,
.sidebar .textwidget,
.sidebar ul {
  background: #fff;
  border: none;
}

.sidebar a {
  color: #1e1e1e;
  transition: color 0.2s;
}

.sidebar a:hover {
  color: #c9a96e;
}

/* --- CTA ボックス / メール会員ウィジェット等 --- */
.cta-box,
.sidebar .widget_text .textwidget > div,
.sidebar .widget_custom_html .custom-html-widget > div {
  background: linear-gradient(160deg, #0f1923, #1a2a3a) !important;
  color: #fff !important;
  border-radius: 16px !important;
  overflow: hidden;
  border: 1px solid rgba(201,169,110,0.2) !important;
}

/* メール会員内のインラインスタイル上書き */
.sidebar .widget_text .textwidget div[style],
.sidebar .widget_custom_html div[style] {
  background: linear-gradient(160deg, #0f1923, #1a2a3a) !important;
  color: #fff !important;
  border: 1px solid rgba(201,169,110,0.2) !important;
}

.sidebar .widget_text h2[style],
.sidebar .widget_custom_html h2[style],
.sidebar .widget_text .textwidget h2,
.sidebar .widget_custom_html h2 {
  background: transparent !important;
  color: #dfc59b !important;
  text-shadow: none !important;
}

.sidebar .widget_text .textwidget p,
.sidebar .widget_custom_html p {
  color: rgba(255,255,255,0.75) !important;
}

.sidebar .widget_text input[type="email"],
.sidebar .widget_text input[type="text"],
.sidebar .widget_custom_html input[type="email"],
.sidebar .widget_custom_html input[type="text"] {
  background: rgba(255,255,255,0.1) !important;
  border: 1px solid rgba(255,255,255,0.2) !important;
  color: #fff !important;
  border-radius: 8px !important;
}

.sidebar .widget_text button,
.sidebar .widget_text input[type="submit"],
.sidebar .widget_custom_html button,
.sidebar .widget_custom_html input[type="submit"] {
  background: linear-gradient(135deg, #c9a96e, #dfc59b) !important;
  color: #0f1923 !important;
  border: none !important;
  border-radius: 50px !important;
  font-weight: 800 !important;
}

.sidebar .widget_text h4[style],
.sidebar .widget_custom_html h4[style],
.sidebar .widget_text h4,
.sidebar .widget_custom_html h4 {
  color: #dfc59b !important;
}

/* Mailchimp メルマガフォーム — Premium Noir 上書き */
.sidebar #mc_embed_signup,
#custom_html-4 #mc_embed_signup,
.widget_custom_html #mc_embed_signup {
  background: linear-gradient(160deg, #0f1923, #1a2a3a) !important;
  box-shadow: 0 4px 20px rgba(15,25,35,0.25) !important;
  border: 1px solid rgba(201,169,110,0.2) !important;
}

.sidebar #mc_embed_signup h2,
#custom_html-4 #mc_embed_signup h2 {
  color: #dfc59b !important;
  text-shadow: none !important;
}

.sidebar #mc_embed_signup p,
#custom_html-4 #mc_embed_signup p,
.sidebar #mc_embed_signup .mc-field-group label,
.sidebar #mc_embed_signup .indicates-required {
  color: rgba(255,255,255,0.7) !important;
}

.sidebar #mc_embed_signup input[type="email"],
#custom_html-4 #mc_embed_signup input[type="email"] {
  background: rgba(255,255,255,0.1) !important;
  border: 1px solid rgba(255,255,255,0.2) !important;
  color: #fff !important;
}

.sidebar #mc_embed_signup .button,
#custom_html-4 #mc_embed_signup .button {
  background: linear-gradient(135deg, #c9a96e, #dfc59b) !important;
  color: #0f1923 !important;
  box-shadow: 0 4px 16px rgba(201,169,110,0.35) !important;
}

.sidebar #mc_embed_signup .button:hover,
#custom_html-4 #mc_embed_signup .button:hover {
  box-shadow: 0 8px 28px rgba(201,169,110,0.45) !important;
}

/* メルマガ内の追加要素（特典セクション等） */
.sidebar #mc_embed_signup h4,
.sidebar #mc_embed_signup .benefits-title,
#custom_html-4 h4 {
  color: #dfc59b !important;
}

.sidebar #mc_embed_signup .benefit-check,
.sidebar #mc_embed_signup li::before {
  color: #c9a96e !important;
}

/* フォーム下の補足テキスト */
.sidebar #mc_embed_signup .foot,
.sidebar #mc_embed_signup small,
#custom_html-4 small {
  color: rgba(255,255,255,0.5) !important;
}

/* ウィジェットのヘッダー（メール会員タイトル）*/
#custom_html-4 > h3.widget-title {
  background: linear-gradient(160deg, #0f1923, #1a2a3a) !important;
  color: #dfc59b !important;
}

.cta-heading {
  background: transparent !important;
  color: #dfc59b !important;
  font-weight: 800;
  font-size: 1.3rem;
  text-shadow: none;
}

.cta-content {
  color: rgba(255,255,255,0.8);
}

.cta-box input[type="email"],
.cta-box input[type="text"] {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  border-radius: 8px;
  padding: 12px 16px;
}

.cta-box input[type="email"]::placeholder,
.cta-box input[type="text"]::placeholder {
  color: rgba(255,255,255,0.4);
}

.cta-box .cta-button,
.cta-box input[type="submit"],
.cta-box button {
  background: linear-gradient(135deg, #FF6B35, #E63946) !important;
  color: #fff !important;
  border: none;
  border-radius: 50px;
  font-weight: 800;
  padding: 14px 30px;
  font-size: 1rem;
  cursor: pointer;
  letter-spacing: 0.03em;
  transition: all 0.3s;
}

.cta-box .cta-button:hover,
.cta-box input[type="submit"]:hover,
.cta-box button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(230,57,70,0.45);
}

/* --- フッター --- */
#footer,
.footer {
  background: #0f1923 !important;
  color: rgba(255,255,255,0.5);
}

.footer a {
  color: rgba(255,255,255,0.6) !important;
  transition: color 0.2s;
}

.footer a:hover {
  color: #c9a96e !important;
}

.footer-bottom {
  background: rgba(0,0,0,0.2);
  border-top: 1px solid rgba(255,255,255,0.06);
}

/* フッターロゴ非表示 */
.footer-bottom-logo {
  display: none !important;
}

/* フッターナビリンク */
.footer-nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-nav-links li {
  margin: 0;
}

.footer-nav-links a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  transition: color 0.3s;
}

.footer-nav-links a:hover {
  color: #dfc59b;
}

.footer-bottom-content {
  color: rgba(255,255,255,0.4);
}

/* フッターウィジェット */
.footer-widgets .widget-title,
.footer h2,
.footer h3 {
  color: #dfc59b !important;
  border-bottom: 1px solid rgba(201,169,110,0.2);
  padding-bottom: 8px;
}

/* --- ページネーション --- */
.pagination .page-numbers:hover {
  background-color: #1a2a3a;
  color: #dfc59b;
  border-color: #1a2a3a;
}

.pagination .current {
  background-color: #0f1923;
  color: #dfc59b;
  border-color: #0f1923;
}

/* --- 全体リンク色 --- */
.entry-content a {
  color: #c9a96e;
}

.entry-content a:hover {
  color: #b8944f;
}

/* --- モバイルメニュー --- */
.mobile-menu-buttons {
  background: #0f1923 !important;
  border-top: 1px solid rgba(201,169,110,0.15);
}

.mobile-menu-buttons a,
.mobile-menu-buttons .menu-button {
  color: rgba(255,255,255,0.7) !important;
}

.mobile-menu-buttons a:hover,
.mobile-menu-buttons .menu-button:hover {
  color: #c9a96e !important;
}

/* モバイルスライドインメニュー */
.mobile-menu-drawer,
.navi-menu-content {
  background: #0f1923 !important;
}

.navi-menu-content a {
  color: rgba(255,255,255,0.8) !important;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.navi-menu-content a:hover {
  color: #c9a96e !important;
  background: rgba(201,169,110,0.08) !important;
}

/* --- 検索フォーム --- */
.search-box input[type="text"],
.search-edit {
  border: 1px solid #e5e2dd;
  border-radius: 8px;
  background: #fff;
}

.search-box input[type="submit"],
.search-submit {
  background: #1a2a3a;
  color: #dfc59b;
  border: none;
  border-radius: 0 8px 8px 0;
}

/* --- スクロールトップボタン --- */
.go-to-top-button {
  background: #1a2a3a !important;
  color: #c9a96e !important;
  border: 1px solid rgba(201,169,110,0.3);
}

/* --- SNSシェアボタン全体の調整 --- */
.sns-share-message {
  color: #6b7280;
}

/* --- Cocoon ボタン系 --- */
.btn-wrap a {
  background: #1a2a3a;
  color: #dfc59b;
  border: none;
  border-radius: 8px;
}

.btn-wrap a:hover {
  background: #0f1923;
  color: #c9a96e;
  transform: translateY(-2px);
}

/* --- 関連記事 --- */
.related-entry-card-wrap .related-entry-card-title {
  color: #1e1e1e;
}

.related-entry-card-wrap:hover .related-entry-card-title {
  color: #c9a96e;
}


/* ================================================================
 * TOPページ — 人気店舗ランキング
 * ================================================================ */
.top-salon-ranking {
  margin: 24px 0;
}

.top-salon-ranking h2 {
  font-size: 1.3rem;
  color: #1e1e1e;
  text-align: center;
  position: relative;
  padding-bottom: 12px;
  margin-bottom: 8px;
}

.section-lead {
  text-align: center;
  font-size: 0.85rem;
  color: #6b7280;
  margin-bottom: 20px;
}

.salon-ranking-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.salon-ranking-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 12px;
  background: #fff;
  border: 1px solid #e5e2dd;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.25s;
}

.salon-ranking-card:hover {
  border-color: #c9a96e;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(15,25,35,0.08);
}

.salon-rank {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1a2a3a;
  color: rgba(255,255,255,0.7);
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 800;
  flex-shrink: 0;
}

.salon-rank-top {
  background: linear-gradient(135deg, #c9a96e, #b8944f);
  color: #0f1923;
}

.salon-ranking-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.salon-ranking-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: #1e1e1e;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.salon-ranking-meta {
  font-size: 0.75rem;
  color: #6b7280;
}


/* ================================================================
 * TOPページ — 人気セラピスト
 * ================================================================ */
.top-popular-therapists {
  margin: 32px 0;
}

.top-popular-therapists h2 {
  font-size: 1.3rem;
  color: #1e1e1e;
  text-align: center;
  position: relative;
  padding-bottom: 12px;
  margin-bottom: 20px;
}

.popular-therapist-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.popular-therapist-card {
  border: 1px solid #e5e2dd;
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  transition: all 0.3s;
  background: #fff;
}

.popular-therapist-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(15,25,35,0.1);
  border-color: #c9a96e;
}

.popular-therapist-img {
  height: 140px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #1a2a3a, #243447);
}

.popular-therapist-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.popular-rank {
  position: absolute;
  top: 8px;
  left: 8px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #c9a96e, #b8944f);
  color: #0f1923;
  border-radius: 6px;
  font-weight: 800;
  font-size: 0.85rem;
}

.popular-therapist-info {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.popular-therapist-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: #1e1e1e;
  line-height: 1.3;
}

.popular-therapist-meta {
  font-size: 0.75rem;
  color: #6b7280;
}


/* ================================================================
 * サイドバー — ランキングウィジェット
 * ================================================================ */
.sidebar-ranking-widget {
  margin-bottom: 24px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 4px 12px rgba(0,0,0,0.04);
  border: 1px solid #e5e2dd;
}

.sidebar-ranking-title {
  background: linear-gradient(160deg, #0f1923, #1a2a3a) !important;
  color: #dfc59b !important;
  padding: 12px 16px !important;
  margin: 0 !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  border-radius: 0 !important;
  text-align: center;
  letter-spacing: 0.03em;
}

.sidebar-ranking-list {
  background: #fff;
}

.sidebar-ranking-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-bottom: 1px solid #f0eeeb;
  text-decoration: none;
  transition: background 0.2s;
}

.sidebar-ranking-item:last-child {
  border-bottom: none;
}

.sidebar-ranking-item:hover {
  background: #f7f6f3;
}

.sidebar-rank {
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1a2a3a;
  color: rgba(255,255,255,0.6);
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 800;
  flex-shrink: 0;
}

.sidebar-ranking-item.rank-top .sidebar-rank {
  background: linear-gradient(135deg, #c9a96e, #b8944f);
  color: #0f1923;
}

.sidebar-ranking-info {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}

.sidebar-ranking-name {
  font-size: 0.84rem;
  font-weight: 600;
  color: #1e1e1e;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sidebar-ranking-meta {
  font-size: 0.72rem;
  color: #6b7280;
}


/* ================================================================
 * レスポンシブ — TOPランキング
 * ================================================================ */
@media (max-width: 768px) {
  .salon-ranking-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .popular-therapist-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .popular-therapist-img {
    height: 120px;
  }
}

@media (max-width: 480px) {
  .popular-therapist-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .popular-therapist-img {
    height: 100px;
  }
}

/* ================================================
   店舗ページ: 所属セラピスト カード型グリッド
   ================================================ */
.salon-therapist-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 1.5rem;
}

.salon-therapist-card {
  display: block;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.salon-therapist-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
}

.salon-therapist-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #f0f0f0;
}

.salon-therapist-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.salon-therapist-card:hover .salon-therapist-thumb img {
  transform: scale(1.05);
}

/* salon-therapist-thumb 内は共通 .no-image スタイルを継承 */

.salon-therapist-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: linear-gradient(135deg, #c8a84e, #d4af37);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.04em;
  box-shadow: 0 2px 6px rgba(200, 168, 78, 0.4);
}

.salon-therapist-info {
  padding: 10px 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.salon-therapist-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: #1a2a3a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.3;
}

.salon-therapist-meta {
  font-size: 0.75rem;
  color: #888;
  line-height: 1.3;
}

/* レスポンシブ: タブレット */
@media (max-width: 834px) {
  .salon-therapist-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

/* レスポンシブ: モバイル */
@media (max-width: 480px) {
  .salon-therapist-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .salon-therapist-info {
    padding: 8px 10px 12px;
  }

  .salon-therapist-name {
    font-size: 0.8rem;
  }

  .salon-therapist-meta {
    font-size: 0.7rem;
  }
}

/* ========================================
   Upsell: codoc直下の同サロンおすすめ
   ======================================== */
.upsell-section {
  margin: 32px 0 40px;
  padding: 28px 24px;
  background: linear-gradient(160deg, #fdfcfa 0%, #f8f5f0 100%);
  border: 1px solid rgba(200,168,78,0.2);
  border-radius: 12px;
  position: relative;
}

.upsell-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #c8a84e, transparent);
}

.upsell-header {
  text-align: center;
  margin-bottom: 20px;
}

.upsell-header h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a2a3a;
  margin: 0 0 4px;
}

.upsell-subtitle {
  font-size: 0.75rem;
  color: #b49b50;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin: 0;
}

.upsell-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.upsell-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}

.upsell-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.10);
}

.upsell-thumb {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.upsell-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.upsell-card:hover .upsell-thumb img {
  transform: scale(1.05);
}

.upsell-badge {
  position: absolute;
  top: 6px;
  left: 6px;
  background: linear-gradient(135deg, #c8a84e, #d4af37);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.02em;
}

.upsell-info {
  padding: 10px 10px 12px;
}

.upsell-name {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: #1a2a3a;
  line-height: 1.3;
  margin-bottom: 4px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.upsell-meta {
  display: block;
  font-size: 0.7rem;
  color: #888;
}

/* レスポンシブ: モバイル */
@media (max-width: 768px) {
  .upsell-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .upsell-section {
    padding: 20px 16px;
    margin: 24px 0 32px;
  }
}

/* ================================
   サイドバー都道府県ナビゲーション
   ================================ */
.sidebar-prefecture-widget {
  margin-bottom: 30px;
}

.sidebar-prefecture-widget .widget-title {
  background: linear-gradient(160deg, #0f1923, #1a2a3a);
  color: #dfc59b;
  padding: 12px 16px;
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 8px 8px 0 0;
  text-align: center;
  letter-spacing: 0.03em;
}

.sidebar-prefecture-widget .widget-content {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-top: none;
  border-radius: 0 0 8px 8px;
  padding: 8px 0;
  max-height: 500px;
  overflow-y: auto;
}

.sidebar-pref-group {
  padding: 0 12px;
}

.sidebar-pref-group + .sidebar-pref-group {
  border-top: 1px solid #f0f0f0;
  margin-top: 4px;
  padding-top: 4px;
}

.sidebar-pref-region {
  font-size: 0.72rem;
  font-weight: 700;
  color: #1a2a3a;
  padding: 6px 4px 2px;
  letter-spacing: 0.05em;
}

.sidebar-pref-list {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  padding: 2px 0 6px;
}

.sidebar-pref-link {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 4px 8px;
  font-size: 0.78rem;
  color: #333;
  background: #f8f7f4;
  border: 1px solid #e8e4dc;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.2s ease;
  line-height: 1.3;
}

.sidebar-pref-link:hover {
  background: #1a2a3a;
  color: #dfc59b;
  border-color: #1a2a3a;
}

.sidebar-pref-count {
  font-size: 0.65rem;
  color: #999;
  font-weight: 600;
}

.sidebar-pref-link:hover .sidebar-pref-count {
  color: rgba(223,197,155,0.7);
}

/* スクロールバー */
.sidebar-prefecture-widget .widget-content::-webkit-scrollbar {
  width: 4px;
}
.sidebar-prefecture-widget .widget-content::-webkit-scrollbar-track {
  background: #f5f5f5;
}
.sidebar-prefecture-widget .widget-content::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 2px;
}
.sidebar-prefecture-widget .widget-content::-webkit-scrollbar-thumb:hover {
  background: #aaa;
}

/* === スティッキー購入バー（モバイル専用） === */
.sticky-cta-bar {
  display: none;
}

@media (max-width: 768px) {
  .sticky-cta-bar {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999999;
    background: linear-gradient(135deg, #0f1923, #1a2a3a);
    border-top: 2px solid #c9a96e;
    padding: 10px 16px;
    transform: translateY(0);
    transition: transform 0.3s ease;
  }
  .sticky-cta-bar.sticky-cta-hidden {
    transform: translateY(100%);
  }
  /* スティッキーバーがあるページではCocoonフローティングバナーを非表示（競合防止） */
  body:has(.sticky-cta-bar) .cocoon-floating-cta {
    display: none !important;
  }
  .sticky-cta-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    max-width: 400px;
    margin: 0 auto;
  }
  .sticky-cta-price {
    color: #dfc59b;
    font-size: 1.1rem;
    font-weight: 800;
    white-space: nowrap;
  }
  .sticky-cta-btn {
    background: linear-gradient(135deg, #FF6B35, #E63946);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 12px 24px;
    font-size: 0.95rem;
    font-weight: 800;
    cursor: pointer;
    white-space: nowrap;
    box-shadow: 0 2px 12px rgba(230,57,70,0.4);
    flex: 1;
    max-width: 260px;
  }
  .sticky-cta-btn:active {
    transform: scale(0.97);
  }
}

/* === SEO導入文カード装飾 === */
.seo-about-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px;
  margin-bottom: 12px;
  background: #fafaf8;
  border-radius: 10px;
  border-left: 3px solid #c9a96e;
}
.seo-about-card p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.7;
  color: #444;
}
.seo-about-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a2a3a, #243447);
  color: #dfc59b;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 800;
  line-height: 1;
}
.seo-about-highlight {
  background: #f5f1ea;
  border-left-color: #b8944f;
}
.seo-about-cta {
  text-align: center;
  margin-top: 16px;
}
.seo-about-cta .cta-button {
  font-size: 0.92rem;
  padding: 14px 32px;
}

/* === 店舗情報バッジ化 === */
.shop-info-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}
.shop-info-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f7f6f3;
  border: 1px solid #e5e2dd;
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 0.85rem;
  color: #444;
}
.shop-info-badge-label {
  font-weight: 600;
  color: #1a2a3a;
  font-size: 0.78rem;
}
.shop-info-badge a {
  color: #c9a96e;
  font-weight: 600;
  text-decoration: none;
}

/* === アップセルカード改善 === */
.upsell-views {
  position: absolute;
  bottom: 8px;
  left: 8px;
  background: rgba(15,25,35,0.7);
  color: #fff;
  font-size: 0.7rem;
  padding: 2px 8px;
  border-radius: 10px;
}
.upsell-price {
  color: #E63946;
  font-weight: 800;
  font-size: 0.95rem;
}
.upsell-cta-btn {
  display: block;
  background: linear-gradient(135deg, #FF6B35, #E63946);
  color: #fff;
  text-align: center;
  padding: 8px 0;
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  margin-top: 6px;
}
