/* =============================================
   MENPEN - メインスタイルシート
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&family=Cormorant+Garamond:wght@400;500&display=swap');

:root {
  --color-dark: #1a1a1a;
  --color-dark2: #252525;
  --color-green: #2d6a4f;
  --color-green-light: #e8f4ee;
  --color-green-hover: #235c43;
  --color-gold: #c9a227;
  --color-bg: #f8f6f0;
  --color-white: #ffffff;
  --color-border: #e8e4d8;
  --color-text: #1a1a1a;
  --color-text-muted: #888888;
  --color-text-light: #aaaaaa;
  --font-main: 'Noto Sans JP', sans-serif;
  --font-display: 'Cormorant Garamond', serif;
  --radius: 8px;
  --radius-sm: 4px;
  --shadow: 0 2px 12px rgba(0,0,0,0.06);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-main);
  color: var(--color-text);
  background: var(--color-white);
  font-size: 14px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }

/* =============================================
   UTILITIES
   ============================================= */
.container { max-width: 1080px; margin: 0 auto; padding: 0 24px; }
.section { padding: 56px 0; }
.section-bg { background: var(--color-bg); }
.section-dark { background: var(--color-dark); }
.section-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 28px; }
.section-title { font-size: 16px; font-weight: 500; color: var(--color-text); }
.section-label { font-size: 10px; color: var(--color-green); letter-spacing: 3px; display: block; margin-bottom: 4px; font-family: var(--font-display); }
.see-all { font-size: 12px; color: var(--color-green); transition: opacity .2s; }
.see-all:hover { opacity: .7; }

.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: all .2s;
  letter-spacing: .5px;
}
.btn-primary { background: var(--color-green); color: #fff; }
.btn-primary:hover { background: var(--color-green-hover); }
.btn-line { background: #06c755; color: #fff; }
.btn-line:hover { background: #05b34b; }
.btn-outline { background: transparent; color: #fff; border: 1px solid #555; }
.btn-outline:hover { border-color: #fff; }

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  background: #fff;
  border-bottom: 1px solid var(--color-border);
  height: 60px;
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 8px rgba(0,0,0,0.04);
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.navbar-logo { display: flex; flex-direction: column; line-height: 1; }
.navbar-logo-main { font-size: 18px; font-weight: 500; letter-spacing: 3px; color: var(--color-dark); }
.navbar-logo-sub { font-size: 9px; color: var(--color-text-muted); letter-spacing: 2px; margin-top: 2px; }
.navbar-links { display: flex; gap: 28px; }
.navbar-links a { font-size: 13px; color: #666; transition: color .2s; }
.navbar-links a:hover { color: var(--color-green); }
.navbar-cta { background: var(--color-green); color: #fff; padding: 9px 20px; border-radius: var(--radius-sm); font-size: 12px; font-weight: 500; letter-spacing: .5px; transition: background .2s; }
.navbar-cta:hover { background: var(--color-green-hover); }

/* =============================================
   TRUST BAR
   ============================================= */
.trust-bar {
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
  padding: 10px 0;
}
.trust-bar .container { display: flex; justify-content: center; align-items: center; gap: 32px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 12px; color: #666; }
.trust-item strong { font-size: 14px; font-weight: 500; color: var(--color-dark); }
.trust-divider { width: 1px; height: 16px; background: #ddd; }

/* =============================================
   HERO
   ============================================= */
.hero {
  background: var(--color-dark);
  padding: 64px 0 56px;
  text-align: center;
}
.hero-label {
  display: inline-block;
  background: var(--color-green);
  color: #fff;
  font-size: 10px;
  letter-spacing: 4px;
  padding: 5px 16px;
  border-radius: 2px;
  margin-bottom: 20px;
  font-family: var(--font-display);
}
.hero h1 {
  color: #fff;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 10px;
  letter-spacing: .5px;
}
.hero-sub { color: #888; font-size: 13px; margin-bottom: 32px; line-height: 2; }

.search-box {
  background: #fff;
  border-radius: var(--radius);
  padding: 22px;
  max-width: 600px;
  margin: 0 auto 20px;
  text-align: left;
}
.search-row { display: flex; gap: 10px; margin-bottom: 14px; }
.search-row select {
  flex: 1;
  background: #f5f5f5;
  border: 1px solid #e0e0e0;
  color: #333;
  padding: 11px 14px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-family: var(--font-main);
  cursor: pointer;
}
.search-row select:focus { outline: none; border-color: var(--color-green); }
.search-btn {
  background: var(--color-green);
  color: #fff;
  border: none;
  padding: 11px 28px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  font-family: var(--font-main);
  transition: background .2s;
  white-space: nowrap;
}
.search-btn:hover { background: var(--color-green-hover); }

.filter-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.filter-tag {
  background: #f5f5f5;
  border: 1px solid #e0e0e0;
  color: #666;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 11px;
  cursor: pointer;
  transition: all .2s;
}
.filter-tag:hover, .filter-tag.active { background: var(--color-green-light); border-color: var(--color-green); color: var(--color-green); }

.hero-reassure {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-reassure-item { display: flex; align-items: center; gap: 6px; color: #888; font-size: 11px; }
.hero-reassure-item::before { content: '✓'; color: var(--color-green); font-size: 12px; }

/* =============================================
   PROOF NUMBERS
   ============================================= */
.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 640px;
  margin: 0 auto;
}
.proof-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 18px 10px;
  text-align: center;
}
.proof-num { font-size: 20px; font-weight: 500; color: var(--color-dark); font-family: var(--font-display); }
.proof-label { font-size: 11px; color: var(--color-text-muted); margin-top: 4px; }

/* =============================================
   SHOP CARDS
   ============================================= */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px; }

.shop-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: var(--radius);
  overflow: hidden;
  transition: all .2s;
  cursor: pointer;
}
.shop-card:hover { border-color: var(--color-green); box-shadow: var(--shadow); transform: translateY(-2px); }
.shop-card-img { height: 120px; background: #f0ede6; position: relative; overflow: hidden; }
.shop-card-img img { width: 100%; height: 100%; object-fit: cover; }
.shop-card-img-placeholder { width: 100%; height: 100%; background: linear-gradient(135deg, #e8e4dc, #d5d0c8); display: flex; align-items: center; justify-content: center; }
.shop-card-img-placeholder span { font-size: 28px; opacity: .3; }

.shop-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  font-size: 9px;
  padding: 3px 8px;
  border-radius: 2px;
  font-weight: 500;
}
.badge-new { background: var(--color-green); color: #fff; }
.badge-coupon { background: #c0392b; color: #fff; }
.badge-night { background: #1a1a2e; color: #fff; }
.badge-pick { background: var(--color-gold); color: #fff; }

.shop-card-body { padding: 14px; }
.shop-card-name { font-size: 13px; font-weight: 500; color: var(--color-text); margin-bottom: 4px; }
.shop-card-area { font-size: 11px; color: var(--color-text-muted); margin-bottom: 8px; }
.shop-card-tags { display: flex; gap: 4px; flex-wrap: wrap; margin-bottom: 10px; }
.shop-card-tag { background: #f5f5f5; color: #777; font-size: 10px; padding: 2px 8px; border-radius: 2px; }
.shop-card-bottom { display: flex; justify-content: space-between; align-items: center; }
.shop-card-price { font-size: 13px; color: var(--color-green); font-weight: 500; }
.shop-card-price span { font-size: 10px; color: var(--color-text-light); font-weight: 400; }
.shop-card-stars { font-size: 11px; color: #e0a000; }

/* =============================================
   AREA GRID
   ============================================= */
.area-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(100px, 1fr)); gap: 12px; }
.area-btn {
  background: #fff;
  border: 1px solid #eee;
  border-radius: var(--radius);
  padding: 16px 8px;
  text-align: center;
  cursor: pointer;
  transition: all .2s;
  display: block;
}
.area-btn:hover { border-color: var(--color-green); background: var(--color-green-light); }
.area-name { font-size: 13px; font-weight: 500; color: var(--color-text); }
.area-count { font-size: 11px; color: var(--color-text-muted); margin-top: 3px; }

/* =============================================
   RANKING
   ============================================= */
.ranking-list { display: flex; flex-direction: column; gap: 12px; }
.rank-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: var(--radius);
  padding: 16px 20px;
  transition: all .2s;
  cursor: pointer;
}
.rank-item:hover { border-color: var(--color-green); box-shadow: var(--shadow); }
.rank-num { font-size: 24px; font-weight: 500; min-width: 32px; font-family: var(--font-display); color: #ccc; }
.rank-num.r1 { color: var(--color-gold); }
.rank-num.r2 { color: #9e9e9e; }
.rank-num.r3 { color: #a0735a; }
.rank-img { width: 52px; height: 52px; background: #f0ede6; border-radius: 6px; flex-shrink: 0; overflow: hidden; }
.rank-img img { width: 100%; height: 100%; object-fit: cover; }
.rank-info { flex: 1; }
.rank-name { font-size: 13px; font-weight: 500; color: var(--color-text); }
.rank-meta { font-size: 11px; color: var(--color-text-muted); margin-top: 3px; }
.rank-right { text-align: right; }
.rank-price { font-size: 13px; color: var(--color-green); font-weight: 500; }
.rank-stars { font-size: 11px; color: #e0a000; margin-top: 3px; }

/* =============================================
   LISTING CTA
   ============================================= */
.listing-cta { padding: 56px 0; }
.listing-cta-inner { max-width: 580px; margin: 0 auto; text-align: center; }
.listing-label {
  display: inline-block;
  background: var(--color-green);
  color: #fff;
  font-size: 10px;
  letter-spacing: 3px;
  padding: 5px 16px;
  border-radius: 2px;
  margin-bottom: 20px;
  font-family: var(--font-display);
}
.listing-cta h2 { color: #fff; font-size: 20px; font-weight: 400; line-height: 1.7; margin-bottom: 10px; }
.listing-cta p { color: #888; font-size: 13px; margin-bottom: 28px; line-height: 2; }
.listing-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 28px; }
.listing-step { background: var(--color-dark2); border-radius: var(--radius); padding: 18px 12px; text-align: center; }
.listing-step-num { font-size: 10px; color: var(--color-green); font-weight: 500; letter-spacing: 2px; margin-bottom: 8px; font-family: var(--font-display); }
.listing-step-txt { font-size: 12px; color: #888; line-height: 1.7; }
.listing-btns { display: flex; gap: 12px; justify-content: center; margin-bottom: 14px; }
.listing-note { font-size: 11px; color: #555; }

/* =============================================
   REASSURANCE
   ============================================= */
.reassure-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 16px; }
.reassure-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 20px 16px;
  text-align: center;
}
.reassure-icon { font-size: 22px; margin-bottom: 10px; }
.reassure-title { font-size: 12px; font-weight: 500; color: var(--color-text); margin-bottom: 6px; }
.reassure-txt { font-size: 11px; color: var(--color-text-muted); line-height: 1.7; }

/* =============================================
   FOOTER
   ============================================= */
.footer { background: #111; padding: 48px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 32px; }
.footer-logo-main { font-size: 18px; font-weight: 500; letter-spacing: 3px; color: #fff; margin-bottom: 6px; }
.footer-logo-sub { font-size: 9px; color: #555; letter-spacing: 2px; margin-bottom: 14px; }
.footer-desc { font-size: 12px; color: #444; line-height: 1.9; }
.footer-col-title { font-size: 10px; color: #555; letter-spacing: 2px; margin-bottom: 14px; font-family: var(--font-display); }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 12px; color: #444; transition: color .2s; }
.footer-links a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid #222;
  padding: 18px 0;
  text-align: center;
  font-size: 11px;
  color: #333;
}

/* =============================================
   PAGE HEADER
   ============================================= */
.page-header {
  background: var(--color-dark);
  padding: 48px 0 40px;
}
.page-header-label { font-size: 10px; color: var(--color-green); letter-spacing: 3px; margin-bottom: 10px; font-family: var(--font-display); }
.page-header h1 { color: #fff; font-size: 24px; font-weight: 400; }

/* =============================================
   SHOP DETAIL
   ============================================= */
.shop-detail-wrap { display: grid; grid-template-columns: 1fr 320px; gap: 32px; padding: 48px 0; }
.shop-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-bottom: 28px; }
.shop-gallery-main { grid-column: 1 / -1; height: 220px; background: #f0ede6; border-radius: var(--radius); overflow: hidden; }
.shop-gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.shop-gallery-thumb { height: 90px; background: #e8e4dc; border-radius: var(--radius-sm); overflow: hidden; }
.shop-gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.shop-info-section { margin-bottom: 32px; }
.shop-info-title { font-size: 14px; font-weight: 500; border-bottom: 2px solid var(--color-green); padding-bottom: 8px; margin-bottom: 16px; }
.shop-info-table { width: 100%; border-collapse: collapse; }
.shop-info-table th { background: var(--color-bg); width: 120px; padding: 10px 14px; font-size: 12px; font-weight: 500; color: #555; border: 1px solid var(--color-border); text-align: left; }
.shop-info-table td { padding: 10px 14px; font-size: 13px; border: 1px solid var(--color-border); }

.shop-sidebar-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: var(--radius);
  padding: 20px;
  position: sticky;
  top: 80px;
}
.shop-sidebar-name { font-size: 18px; font-weight: 500; margin-bottom: 4px; }
.shop-sidebar-area { font-size: 12px; color: var(--color-text-muted); margin-bottom: 12px; }
.shop-sidebar-price { font-size: 20px; color: var(--color-green); font-weight: 500; margin-bottom: 4px; }
.shop-sidebar-price span { font-size: 12px; color: var(--color-text-muted); font-weight: 400; }
.shop-sidebar-stars { font-size: 13px; color: #e0a000; margin-bottom: 16px; }
.shop-sidebar-btn { display: block; width: 100%; text-align: center; padding: 13px; border-radius: var(--radius-sm); font-size: 13px; font-weight: 500; margin-bottom: 10px; transition: all .2s; }

/* =============================================
   COURSE TABLE
   ============================================= */
.course-table { width: 100%; border-collapse: collapse; }
.course-table thead th { background: var(--color-dark); color: #fff; padding: 12px 16px; font-size: 12px; font-weight: 500; text-align: left; }
.course-table tbody tr:nth-child(even) td { background: var(--color-bg); }
.course-table td { padding: 12px 16px; font-size: 13px; border-bottom: 1px solid var(--color-border); }
.course-price { color: var(--color-green); font-weight: 500; }

/* =============================================
   STATIC PAGES
   ============================================= */
.static-content { max-width: 760px; margin: 0 auto; padding: 56px 24px; }
.static-content h2 { font-size: 20px; font-weight: 500; border-bottom: 2px solid var(--color-green); padding-bottom: 10px; margin: 36px 0 16px; color: var(--color-dark); }
.static-content h3 { font-size: 15px; font-weight: 500; margin: 24px 0 10px; color: var(--color-dark); }
.static-content p { font-size: 14px; line-height: 2; color: #444; margin-bottom: 14px; }
.static-content ul, .static-content ol { padding-left: 20px; margin-bottom: 14px; }
.static-content ul li { list-style: disc; font-size: 14px; line-height: 2; color: #444; }
.static-content ol li { list-style: decimal; font-size: 14px; line-height: 2; color: #444; }
.static-content table { width: 100%; border-collapse: collapse; margin-bottom: 20px; }
.static-content table th { background: var(--color-bg); padding: 10px 16px; font-size: 13px; font-weight: 500; border: 1px solid var(--color-border); text-align: left; }
.static-content table td { padding: 10px 16px; font-size: 13px; border: 1px solid var(--color-border); }
.static-content .date { text-align: right; font-size: 12px; color: var(--color-text-muted); margin-top: 32px; }

/* =============================================
   CONTACT FORM
   ============================================= */
.contact-wrap { display: grid; grid-template-columns: 1fr 320px; gap: 40px; padding: 56px 0; }
.form-group { margin-bottom: 20px; }
.form-label { font-size: 13px; font-weight: 500; color: var(--color-text); margin-bottom: 6px; display: block; }
.form-label .required { background: var(--color-green); color: #fff; font-size: 10px; padding: 2px 6px; border-radius: 2px; margin-left: 6px; }
.form-input, .form-select, .form-textarea {
  width: 100%;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  font-size: 13px;
  font-family: var(--font-main);
  color: var(--color-text);
  transition: border-color .2s;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--color-green);
  background: #fff;
}
.form-textarea { resize: vertical; min-height: 140px; }
.form-submit { background: var(--color-green); color: #fff; border: none; padding: 14px 40px; border-radius: var(--radius-sm); font-size: 14px; font-weight: 500; cursor: pointer; font-family: var(--font-main); transition: background .2s; }
.form-submit:hover { background: var(--color-green-hover); }

.contact-sidebar { }
.contact-info-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 20px;
}
.contact-info-title { font-size: 13px; font-weight: 500; margin-bottom: 12px; }
.contact-info-item { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: #555; margin-bottom: 10px; }
.line-btn {
  display: block;
  background: #06c755;
  color: #fff;
  text-align: center;
  padding: 14px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  transition: background .2s;
}
.line-btn:hover { background: #05b34b; }
.flow-list { counter-reset: flow; }
.flow-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 16px; padding-bottom: 16px; border-bottom: 1px solid var(--color-border); }
.flow-item:last-child { border-bottom: none; margin-bottom: 0; }
.flow-num { background: var(--color-green); color: #fff; width: 26px; height: 26px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 500; flex-shrink: 0; margin-top: 2px; }
.flow-text { font-size: 13px; color: #555; line-height: 1.8; }
.flow-text strong { color: var(--color-text); font-weight: 500; display: block; margin-bottom: 2px; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 768px) {
  .navbar-links { display: none; }
  .hero h1 { font-size: 20px; }
  .search-row { flex-wrap: wrap; }
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .shop-detail-wrap { grid-template-columns: 1fr; }
  .contact-wrap { grid-template-columns: 1fr; }
  .listing-steps { grid-template-columns: 1fr; }
}

/* カスタムロゴ */
.navbar-logo .custom-logo-link { display: flex; align-items: center; }
.navbar-logo .custom-logo { max-height: 40px; width: auto; display: block; }

/* =============================================
   WIDGET AREAS
   ============================================= */
.menpen-widget-area { margin: 0 0 8px; }
.menpen-widget-area--top-before-new,
.menpen-widget-area--top-after-new,
.menpen-widget-area--top-after-area,
.menpen-widget-area--top-after-ranking,
.menpen-widget-area--top-after-cta { padding: 0 0 24px; }
.menpen-widget-area--area-top { margin-bottom: 24px; }
.menpen-widget-area--area-bottom { margin-top: 32px; }
.menpen-widget-area--area-between-shops { padding: 8px 0 16px; grid-column: 1 / -1; }
.menpen-widget { width: 100%; }
.menpen-widget img { max-width: 100%; height: auto; }

/* =============================================
   PLAN BADGES
   ============================================= */
.plan-badge { font-size: 9px; font-weight: 700; letter-spacing: 1px; padding: 3px 8px; border-radius: 2px; }
.badge-gold    { background: #c9a227 !important; color: #fff !important; }
.badge-premium { background: #534AB7 !important; color: #fff !important; }
.badge-link    { background: #3B6D11 !important; color: #fff !important; }

/* プランバッジの位置（カード内） */
.shop-card-img .plan-badge { top: auto; bottom: 8px; right: 8px; left: auto; }

/* ランキングプラン表示 */
.rank-plan-badge { font-size: 9px; font-weight: 700; padding: 2px 7px; border-radius: 2px; margin-left: 6px; vertical-align: middle; }

/* 超有料プラン：カード枠ハイライト */
.shop-card.plan-premium { border-color: #c9a227; box-shadow: 0 0 0 1px #c9a227; }
.shop-card.plan-standard { border-color: #8b80e8; }

/* セラピスト一覧 */
.therapist-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 12px; margin-top: 16px; }
.therapist-card { background: #fff; border: 1px solid #eee; border-radius: var(--radius); overflow: hidden; text-align: center; }
.therapist-card-img { height: 100px; background: #f0ede6; overflow: hidden; }
.therapist-card-img img { width: 100%; height: 100%; object-fit: cover; }
.therapist-card-body { padding: 10px 8px; }
.therapist-name { font-size: 13px; font-weight: 500; color: var(--color-text); }
.therapist-meta { font-size: 11px; color: var(--color-text-muted); margin-top: 3px; }
.therapist-schedule { font-size: 10px; color: var(--color-green); margin-top: 4px; }

/* =============================================
   SHOP LIST（eslove風 横長リスト）
   ============================================= */
.shop-list { display: flex; flex-direction: column; gap: 16px; }

.shop-list-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 0;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  overflow: hidden;
  transition: box-shadow .2s, border-color .2s;
}
.shop-list-item:hover { box-shadow: 0 4px 16px rgba(0,0,0,.08); border-color: #ddd; }
.shop-list-item.plan-premium { border-color: #c9a227; border-width: 2px; }
.shop-list-item.plan-standard { border-color: #8b80e8; border-width: 2px; }

/* 左：ロゴ */
.shop-list-logo {
  display: block;
  width: 100px;
  min-height: 120px;
  background: #f0ede6;
  flex-shrink: 0;
}
.shop-list-logo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.shop-list-logo-placeholder {
  width: 100%;
  height: 100%;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 500;
  color: #2d6a4f;
  background: linear-gradient(135deg, #e8f4ee, #d5e8de);
}

/* 右：本体 */
.shop-list-body {
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.shop-list-header { display: flex; flex-direction: column; gap: 4px; }
.shop-list-name {
  font-size: 15px;
  font-weight: 500;
  color: #1a1a1a;
  text-decoration: none;
  line-height: 1.4;
}
.shop-list-name:hover { color: #2d6a4f; }
.shop-list-area { font-size: 12px; color: #888; display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }

/* セラピスト顔写真 */
.shop-list-therapists { display: flex; gap: 6px; flex-wrap: wrap; }
.shop-list-therapist {
  width: 48px;
  height: 64px;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid #eee;
  display: block;
  background: #f5f5f5;
}
.shop-list-therapist img { width: 100%; height: 100%; object-fit: cover; }
.shop-list-therapist-noimg {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #aaa;
}

/* メタ情報 */
.shop-list-meta { display: flex; flex-wrap: wrap; gap: 6px 14px; }
.shop-list-meta-item { font-size: 12px; color: #666; }
.shop-list-price { font-size: 13px; font-weight: 500; color: #2d6a4f; }

/* クーポン */
.shop-list-coupon {
  font-size: 12px;
  color: #b8860b;
  background: #fffbe6;
  border: 1px dashed #f0c040;
  border-radius: 4px;
  padding: 5px 10px;
  display: flex;
  gap: 8px;
  align-items: center;
}
.shop-list-coupon-label {
  background: #f0c040;
  color: #7a5f00;
  font-size: 10px;
  font-weight: 700;
  padding: 1px 6px;
  border-radius: 2px;
  flex-shrink: 0;
}

/* PRコメント（プレミアム） */
.shop-list-pr {
  width: 160px;
  flex-shrink: 0;
  padding: 14px 14px 14px 0;
  font-size: 12px;
  color: #555;
  line-height: 1.7;
  border-left: 1px solid #f0f0f0;
  display: flex;
  align-items: center;
}

/* SP対応 */
@media (max-width: 600px) {
  .shop-list-item { grid-template-columns: 80px 1fr; }
  .shop-list-logo { width: 80px; }
  .shop-list-logo-placeholder { min-height: 100px; }
  .shop-list-pr { display: none; }
  .shop-list-therapist { width: 42px; height: 56px; }
}



/* コース料金テーブル */
.course-price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.course-price-table th {
  background: #f5f5f5;
  padding: 8px 12px;
  text-align: left;
  font-weight: 500;
  color: #666;
  border-bottom: 2px solid #e8e8e8;
  font-size: 12px;
}
.course-price-table td {
  padding: 10px 12px;
  border-bottom: 1px solid #f0f0f0;
  color: #333;
  vertical-align: middle;
}
.course-price-table tr:hover td { background: #fafafa; }
.course-price-val {
  font-weight: 600;
  color: #2d6a4f;
  white-space: nowrap;
}
.course-note-col {
  color: #888 !important;
  font-size: 12px !important;
}
@media (max-width: 600px) {
  .course-note-col { display: none; }
  .course-price-table th, .course-price-table td { padding: 8px 10px; }
}

/* =============================================
   店舗オーナー ダッシュボード
   ============================================= */
.owner-dashboard { max-width: 900px; margin: 0 auto; padding: 24px 16px; font-family: inherit; }

.owner-alert {
  padding: 12px 18px;
  border-radius: 6px;
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 500;
}
.owner-alert-success { background: #e8f5e9; color: #2d6a4f; border: 1px solid #a5d6a7; }

/* 店舗カード */
.owner-shop-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  margin-bottom: 32px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
}

/* ヘッダー */
.owner-shop-header {
  background: #1a1a1a;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.owner-shop-header-left { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.owner-shop-name { color: #fff; font-size: 17px; font-weight: 600; margin: 0; }
.owner-expires { font-size: 12px; color: #f0c040; }
.owner-shop-header-right { display: flex; gap: 8px; flex-wrap: wrap; }

/* プランバッジ */
.owner-plan-badge {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  white-space: nowrap;
}
.owner-plan-badge.plan-premium  { background: #c9a227; color: #fff; }
.owner-plan-badge.plan-standard { background: #8b80e8; color: #fff; }
.owner-plan-badge.plan-link     { background: #2d6a4f; color: #fff; }
.owner-plan-badge.plan-free     { background: #aaa;    color: #fff; }

/* ボタン */
.owner-btn {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: opacity .2s;
}
.owner-btn:hover { opacity: .82; }
.owner-btn-view    { background: #f5f5f5; color: #333; }
.owner-btn-edit    { background: #555; color: #fff; }
.owner-btn-save    { background: #2d6a4f; color: #fff; font-size: 14px; padding: 10px 28px; }
.owner-btn-upgrade { background: #c9a227; color: #fff; white-space: nowrap; }

/* 設定完成度 */
.owner-completion { padding: 18px 24px; border-bottom: 1px solid #f0f0f0; }
.owner-completion-label {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #555;
  margin-bottom: 8px;
}
.owner-completion-label strong { color: #2d6a4f; font-size: 16px; }
.owner-progress-bar {
  height: 8px;
  background: #e8e8e8;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 10px;
}
.owner-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #2d6a4f, #52b788);
  border-radius: 4px;
  transition: width .6s ease;
}
.owner-completion-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
}
.completion-check { font-size: 12px; color: #666; }
.completion-check.todo { color: #bbb; }

/* アップグレードバナー */
.owner-upgrade-banner {
  background: linear-gradient(135deg, #fffbe6, #fff8d6);
  border: 1px solid #f0c040;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.owner-upgrade-text { font-size: 13px; color: #555; line-height: 1.6; }
.owner-upgrade-text strong { color: #b8860b; }

/* フォーム */
.owner-form { padding: 24px; }
.owner-form-title {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid #f0f0f0;
}
.owner-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 20px;
}
.owner-field { display: flex; flex-direction: column; gap: 5px; }
.owner-field-full { grid-column: 1 / -1; }
.owner-field label { font-size: 12px; font-weight: 600; color: #555; }
.owner-field input,
.owner-field textarea {
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 9px 12px;
  font-size: 13px;
  color: #333;
  font-family: inherit;
  width: 100%;
  box-sizing: border-box;
  transition: border-color .2s;
}
.owner-field input:focus,
.owner-field textarea:focus {
  border-color: #2d6a4f;
  outline: none;
  box-shadow: 0 0 0 3px rgba(45,106,79,.1);
}
.owner-form-footer {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.owner-form-note { font-size: 12px; color: #aaa; }

/* ログイン・未掲載メッセージ */
.owner-login-msg, .owner-no-shop {
  background: #f9f9f9;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 40px;
  text-align: center;
  font-size: 14px;
  color: #666;
}
.owner-login-msg a, .owner-no-shop a { color: #2d6a4f; }

/* SP */
@media (max-width: 600px) {
  .owner-shop-header { padding: 14px 16px; }
  .owner-form { padding: 16px; }
  .owner-form-grid { grid-template-columns: 1fr; }
  .owner-field-full { grid-column: 1; }
}

/* =============================================
   SHOP DETAIL PAGE — フル デザイン
   ============================================= */

/* パンくず */
.shop-breadcrumb { background:#f7f7f7; border-bottom:1px solid #eee; padding:10px 0; }
.breadcrumb-nav { font-size:12px; color:#999; display:flex; align-items:center; flex-wrap:wrap; gap:4px; }
.breadcrumb-nav a { color:#2d6a4f; text-decoration:none; }
.breadcrumb-nav a:hover { text-decoration:underline; }
.bc-sep { color:#ccc; }

/* コンテナ */
.shop-detail-container { max-width:800px; padding:28px 20px 80px; }

/* ━━━ ヘッダー ━━━ */
.shop-detail-header { margin-bottom:20px; }
.shop-detail-header-meta { display:flex; align-items:center; gap:8px; flex-wrap:wrap; margin-bottom:8px; }
.shop-area-label { font-size:11px; color:#888; background:#f0f0f0; padding:3px 10px; border-radius:20px; }
.shop-detail-title { font-size:24px; font-weight:700; color:#1a1a1a; margin:0 0 10px; line-height:1.35; }
.shop-detail-sub { display:flex; gap:14px; font-size:13px; color:#666; flex-wrap:wrap; }

/* ━━━ ギャラリー ━━━ */
.shop-gallery-wrap { margin-bottom:24px; border-radius:10px; overflow:hidden; box-shadow:0 4px 20px rgba(0,0,0,.08); }
.shop-gallery-main-img { width:100%; aspect-ratio:16/9; background:#f0ede6; overflow:hidden; }
.shop-gallery-main-img img { width:100%; height:100%; object-fit:cover; display:block; transition:opacity .3s; }
.shop-gallery-thumbs { display:flex; gap:4px; padding:6px; background:#1a1a1a; flex-wrap:wrap; }
.gallery-thumb { width:70px; height:52px; object-fit:cover; border-radius:3px; cursor:pointer; border:2px solid transparent; opacity:.65; transition:all .2s; }
.gallery-thumb.active, .gallery-thumb:hover { border-color:#52b788; opacity:1; }

/* ━━━ CTAボタン群 ━━━ */
.shop-cta-bar { display:flex; gap:10px; flex-wrap:wrap; margin-bottom:20px; }
.cta-btn {
  display:inline-flex; align-items:center; gap:8px;
  padding:13px 22px; border-radius:8px;
  font-size:14px; font-weight:600; text-decoration:none;
  transition:all .2s; white-space:nowrap;
}
.cta-btn:active { transform:scale(.97); }
.cta-line { background:#06c755; color:#fff; box-shadow:0 3px 10px rgba(6,199,85,.3); }
.cta-line:hover { background:#05b54c; }
.cta-tel  { background:#1a1a1a; color:#fff; box-shadow:0 3px 10px rgba(0,0,0,.15); }
.cta-tel:hover { background:#333; }
.cta-hp   { background:#fff; color:#444; border:1px solid #ddd; }
.cta-hp:hover { border-color:#2d6a4f; color:#2d6a4f; }

/* ━━━ こだわりタグ ━━━ */
.shop-feature-tags { display:flex; flex-wrap:wrap; gap:6px; margin-bottom:24px; }
.feature-tag { font-size:12px; background:#e8f4ee; color:#2d6a4f; padding:4px 12px; border-radius:20px; border:1px solid #c5e0ce; font-weight:500; }

/* ━━━ PRコメント ━━━ */
.shop-pr-block {
  background:linear-gradient(135deg,#f8f6f0,#f2f0e8);
  border-left:4px solid #2d6a4f;
  border-radius:0 10px 10px 0;
  padding:18px 22px;
  margin-bottom:28px;
}
.shop-pr-label { font-size:10px; font-weight:700; color:#2d6a4f; text-transform:uppercase; letter-spacing:.1em; margin-bottom:8px; }
.shop-pr-block p { font-size:14px; line-height:2; color:#444; margin:0; }

/* ━━━ セクション共通 ━━━ */
.shop-section { margin-bottom:32px; }
.shop-section-title {
  font-size:14px; font-weight:700; color:#1a1a1a;
  padding:10px 16px; margin-bottom:0;
  background:#f5f5f5; border-left:4px solid #2d6a4f;
  border-radius:0 6px 0 0;
}

/* ━━━ クーポン ━━━ */
.shop-coupon-block {
  background:#fffdf0;
  border:1px solid #f0d060;
  border-top:none;
  border-radius:0 0 8px 8px;
  padding:18px 22px;
}
.coupon-badge {
  display:inline-block; background:#f0c030; color:#6b4f00;
  font-size:11px; font-weight:700; padding:3px 10px; border-radius:3px; margin-bottom:10px;
}
.coupon-text { font-size:14px; line-height:1.9; color:#333; margin-bottom:10px; }
.coupon-note { font-size:12px; color:#aaa; border-top:1px dashed #e8d870; padding-top:10px; }

/* ━━━ ショップデータテーブル ━━━ */
.shop-data-table { width:100%; border-collapse:collapse; }
.shop-data-table th,
.shop-data-table td { padding:11px 16px; border-bottom:1px solid #f0f0f0; vertical-align:top; line-height:1.7; font-size:13px; }
.shop-data-table th { width:100px; color:#999; font-weight:500; white-space:nowrap; background:#fafafa; }
.shop-data-table td { color:#333; }
.shop-data-table tr:last-child th,
.shop-data-table tr:last-child td { border-bottom:none; }
.shop-data-table a { color:#2d6a4f; text-decoration:none; }
.shop-data-table a:hover { text-decoration:underline; }
.shop-section .shop-data-table { border:1px solid #eee; border-radius:0 0 8px 8px; border-top:none; }

/* ━━━ コース料金テーブル ━━━ */
.course-price-table { width:100%; border-collapse:collapse; border:1px solid #eee; border-top:none; border-radius:0 0 8px 8px; overflow:hidden; }
.course-price-table th { background:#fafafa; padding:9px 14px; text-align:left; font-weight:500; color:#888; font-size:12px; border-bottom:1px solid #eee; }
.course-price-table td { padding:11px 14px; border-bottom:1px solid #f5f5f5; color:#333; font-size:13px; vertical-align:middle; }
.course-price-table tr:last-child td { border-bottom:none; }
.course-price-table tr:hover td { background:#fafff8; }
.course-price-val { font-weight:700; color:#2d6a4f; font-size:14px; white-space:nowrap; }
.course-note-col { color:#aaa !important; font-size:12px !important; }

/* ━━━ セラピスト ━━━ */
.therapist-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(140px,1fr)); gap:14px; padding:16px; border:1px solid #eee; border-top:none; border-radius:0 0 8px 8px; }
.therapist-card { background:#fff; border:1px solid #eee; border-radius:8px; overflow:hidden; transition:box-shadow .2s; }
.therapist-card:hover { box-shadow:0 4px 12px rgba(0,0,0,.08); }
.therapist-photo { width:100%; aspect-ratio:3/4; background:#f5f5f5; overflow:hidden; }
.therapist-photo img { width:100%; height:100%; object-fit:cover; }
.therapist-info { padding:10px 10px 12px; }
.therapist-name { font-size:13px; font-weight:600; color:#1a1a1a; }
.therapist-age  { font-weight:400; font-size:12px; color:#999; margin-left:3px; }
.therapist-type, .therapist-schedule { font-size:11px; color:#888; margin-top:3px; }
.therapist-schedule { color:#2d6a4f; }
.therapist-pr   { font-size:11px; color:#777; margin-top:6px; line-height:1.6; }

/* 詳細本文 */
.shop-content-body { font-size:14px; line-height:2; color:#444; padding:16px; border:1px solid #eee; border-top:none; border-radius:0 0 8px 8px; }

/* ━━━ SP ━━━ */
@media (max-width:640px) {
  .shop-detail-container { padding:16px 14px 60px; }
  .shop-detail-title { font-size:19px; }
  .cta-btn { padding:11px 16px; font-size:13px; flex:1; justify-content:center; }
  .shop-data-table th { width:80px; font-size:12px; padding:9px 10px; }
  .shop-data-table td { font-size:12px; padding:9px 10px; }
  .course-note-col { display:none; }
  .therapist-grid { grid-template-columns:repeat(3,1fr); gap:8px; padding:10px; }
}

/* コースグループ */
.course-group-block { margin-bottom: 20px; }
.course-group-block:last-child { margin-bottom: 0; }
.course-group-name {
  font-size: 13px;
  font-weight: 700;
  color: #1a1a1a;
  background: #f0f8f4;
  border-left: 3px solid #2d6a4f;
  padding: 7px 14px;
  margin-bottom: 0;
}
.course-group-block .course-price-table {
  border-top: none;
  border-radius: 0 0 6px 6px;
  margin-bottom: 0;
}


/* WIN UPDATE */
.page-header-rich .page-header-lead{max-width:880px;margin:14px auto 0;color:#cfcfcf;font-size:14px;line-height:1.9;text-align:center}.mp-filter-panel{background:#fff;border:1px solid #ece7dd;border-radius:16px;padding:18px 20px;margin-bottom:28px;box-shadow:0 10px 30px rgba(0,0,0,.04)}.mp-filter-head{font-size:14px;margin-bottom:12px;color:#333}.mp-filter-row{display:flex;gap:12px;flex-wrap:wrap}.mp-filter-row select{min-width:220px;background:#f7f5ef;border:1px solid #ddd;padding:10px 14px;border-radius:10px}.mp-filter-reset{display:inline-flex;align-items:center;justify-content:center;padding:10px 16px;border-radius:10px;background:#1a1a1a;color:#fff;text-decoration:none;font-size:13px}.mp-pager{text-align:center;margin-top:36px}.mp-empty-state{padding:56px 20px;text-align:center;border:1px dashed #d6d1c7;border-radius:16px;background:#faf8f4}.mp-empty-state a{color:#2d6a4f;text-decoration:none;font-weight:600}.mp-seo-copy{margin-top:42px;background:#f8f6f0;border-radius:18px;padding:24px 26px}.mp-seo-copy h2{font-size:20px;margin:0 0 10px}.mp-seo-copy p{margin:0;color:#555;line-height:1.9}.section-header-center{text-align:center;display:block}.section-sub{font-size:13px;color:#777;max-width:760px;margin:8px auto 0;line-height:1.8}.mp-plan-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:18px}.mp-plan-card{position:relative;background:#fff;border:1px solid #e8e2d8;border-radius:20px;padding:26px 22px;box-shadow:0 16px 30px rgba(0,0,0,.04)}.mp-plan-card h3{margin:0 0 10px;font-size:20px}.mp-plan-kicker{font-size:11px;letter-spacing:.18em;color:#8a8a8a;margin-bottom:8px}.mp-plan-price{font-size:18px;font-weight:700;margin-bottom:16px}.mp-plan-card ul{margin:0;padding-left:18px;color:#555;line-height:2}.mp-plan-btn{display:block;text-align:center;text-decoration:none;background:#f3f1ec;color:#222;padding:12px 16px;border-radius:12px;margin-top:18px;font-weight:700}.mp-plan-card-standard{border:2px solid #2d6a4f}.mp-plan-card-premium{background:#161616;border-color:#333;color:#fff}.mp-plan-card-premium ul,.mp-plan-card-premium .mp-plan-kicker{color:#d2c6a2}.mp-plan-btn-strong{background:#2d6a4f;color:#fff}.mp-plan-btn-gold{background:#c9a227;color:#fff}.mp-plan-card-link{background:#fbfff8}.mp-plan-badge{position:absolute;top:-11px;left:20px;background:#2d6a4f;color:#fff;padding:5px 12px;border-radius:999px;font-size:11px;font-weight:700}.mp-why-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:18px;margin-top:28px}.mp-why-card{background:#f8f6f0;border-radius:18px;padding:20px 18px}.mp-why-card h3{margin:0 0 8px;font-size:17px}.mp-why-card p{margin:0;color:#666;line-height:1.8}@media (max-width:768px){.mp-filter-row select{min-width:100%}.mp-filter-reset{width:100%}}
