/* メンエス厨 clean directory style */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: "Hiragino Sans", "Yu Gothic UI", "Meiryo", system-ui, -apple-system, sans-serif;
  color: #2a2a2a;
  background: #fafafa;
  line-height: 1.6;
  font-size: 15px;
}
a { color: #d5408f; text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }

/* ========== header ========== */
.site-header {
  background: #fff;
  border-bottom: 1px solid #eaeaea;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 24px;
  position: sticky;
  top: 0;
  z-index: 10;
}
.site-logo {
  font-size: 20px;
  font-weight: 700;
  color: #d5408f;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.site-search {
  flex: 1;
  display: flex;
  max-width: 480px;
  margin-left: auto;
}
.site-search input {
  flex: 1;
  padding: 7px 12px;
  border: 1px solid #ddd;
  border-right: none;
  border-radius: 4px 0 0 4px;
  font-size: 14px;
  outline: none;
}
.site-search input:focus { border-color: #d5408f; }
.site-search button {
  padding: 7px 16px;
  background: #d5408f;
  color: #fff;
  border: 1px solid #d5408f;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
  font-size: 14px;
}
.site-search button:hover { background: #b8336f; }

/* ========== main ========== */
main {
  max-width: 1080px;
  margin: 0 auto;
  padding: 24px 20px 60px;
}

/* ========== hero (トップ) ========== */
.hero {
  text-align: center;
  padding: 36px 16px 28px;
  border-bottom: 1px solid #eaeaea;
  margin-bottom: 28px;
}
.hero h1 {
  margin: 0 0 8px;
  font-size: 32px;
  letter-spacing: 0.08em;
  color: #d5408f;
}
.hero-sub { margin: 0 0 16px; color: #666; font-size: 14px; }
.hero-stats { margin: 0; color: #444; font-size: 15px; }
.hero-stats strong { color: #d5408f; font-size: 18px; margin: 0 3px; }

/* ========== 地方 / 都道府県 ========== */
.region { margin-bottom: 28px; }
.region h2 {
  font-size: 16px;
  margin: 0 0 10px;
  padding-bottom: 6px;
  border-bottom: 2px solid #d5408f;
  color: #333;
  display: inline-block;
}
.pref-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 8px;
}
.pref-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  background: #fff;
  border: 1px solid #eaeaea;
  border-radius: 4px;
  color: #333;
}
.pref-link:hover {
  border-color: #d5408f;
  text-decoration: none;
  background: #fff5fa;
}
.pref-name { font-weight: 500; }
.pref-count { color: #888; font-size: 13px; }
.mini-asian { color: #e88; font-size: 12px; margin-left: 4px; }

/* ========== エリア一覧 ========== */
.page-title {
  font-size: 22px;
  margin: 6px 0 18px;
  padding-bottom: 8px;
  border-bottom: 2px solid #d5408f;
}
.area-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 10px;
}
.area-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 14px;
  background: #fff;
  border: 1px solid #eaeaea;
  border-radius: 4px;
  color: #333;
}
.area-link:hover {
  border-color: #d5408f;
  text-decoration: none;
  background: #fff5fa;
}
.area-name { font-weight: 500; font-size: 14px; }
.area-count { color: #888; font-size: 13px; }

/* ========== shop-grid (エリア内) ========== */
main section { margin-bottom: 24px; }
main section h2 {
  font-size: 18px;
  margin: 0 0 14px;
  padding-bottom: 6px;
  border-bottom: 1px solid #d5408f;
}
main section h2 .count {
  font-size: 14px;
  color: #888;
  font-weight: normal;
  margin-left: 8px;
}
.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 12px;
}
.shop-card {
  display: block;
  background: #fff;
  border: 1px solid #eaeaea;
  border-radius: 6px;
  color: #333;
  overflow: hidden;
}
.shop-card:hover {
  border-color: #d5408f;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(213,64,143,0.08);
}
.shop-thumb {
  width: 100%;
  height: auto;
  aspect-ratio: 400 / 250;
  object-fit: cover;
  background: #f3f3f3;
  display: block;
  border-bottom: 1px solid #eaeaea;
}
.shop-card-body { padding: 12px 14px; }
.shop-card-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 4px;
}
.shop-card-head h3 {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  color: #d5408f;
  flex: 1;
}
.shop-card-addr { font-size: 13px; color: #666; margin-bottom: 6px; }
.shop-tags { margin-top: 4px; }

.tag {
  display: inline-block;
  padding: 2px 8px;
  margin: 2px 4px 2px 0;
  background: #f3f3f3;
  color: #666;
  font-size: 11px;
  border-radius: 3px;
}

/* ========== badge ========== */
.badge {
  display: inline-block;
  padding: 2px 8px;
  font-size: 11px;
  border-radius: 3px;
  white-space: nowrap;
}
.badge-asian { background: #e88; color: #fff; }

/* ========== 詳細 ========== */
.breadcrumb {
  font-size: 12px;
  color: #888;
  margin-bottom: 14px;
}
.breadcrumb a { color: #888; }
.breadcrumb a:hover { color: #d5408f; }
.breadcrumb span { color: #333; }

.shop-detail { background: #fff; padding: 24px 28px; border: 1px solid #eaeaea; border-radius: 6px; }
.shop-head { display: flex; align-items: center; gap: 12px; margin: 0 0 16px; }
.shop-head h1 { margin: 0; font-size: 24px; }
.shop-hero-wrap {
  margin: 0 0 18px;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid #eaeaea;
  background: #f3f3f3;
}
.shop-hero {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1200 / 750;
}
.shop-desc {
  color: #555;
  background: #fafafa;
  padding: 12px 14px;
  border-left: 3px solid #d5408f;
  margin: 0 0 18px;
  font-size: 14px;
}

.shop-info { width: 100%; border-collapse: collapse; margin: 14px 0; }
.shop-info th {
  text-align: left;
  width: 110px;
  padding: 8px 10px;
  background: #f7f7f7;
  color: #555;
  font-weight: normal;
  font-size: 13px;
  border-bottom: 1px solid #eaeaea;
  vertical-align: top;
}
.shop-info td {
  padding: 8px 12px;
  border-bottom: 1px solid #eaeaea;
  font-size: 14px;
}

.shop-tags-detail { margin: 14px 0; }

.price-table { width: 100%; border-collapse: collapse; margin: 8px 0 16px; }
.price-table caption {
  text-align: left;
  padding: 6px 0;
  font-weight: 600;
  color: #d5408f;
}
.price-table th, .price-table td {
  padding: 6px 12px;
  border-bottom: 1px solid #f0f0f0;
  text-align: left;
  font-size: 14px;
}
.price-table th { width: 100px; color: #555; font-weight: normal; }

.news time { color: #888; font-size: 12px; margin-right: 8px; }

.empty { color: #999; padding: 20px; text-align: center; }

/* ========== 検索ページ ========== */
#search-box { margin: 16px 0 8px; }
#search-box input {
  width: 100%;
  padding: 12px 14px;
  font-size: 16px;
  border: 2px solid #d5408f;
  border-radius: 6px;
  outline: none;
}
#search-stats { color: #666; font-size: 13px; margin-bottom: 14px; min-height: 1em; }
#search-results { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 10px; }
.search-hint { color: #999; font-size: 12px; margin-top: 14px; }

/* ========== footer ========== */
.site-footer {
  border-top: 1px solid #eaeaea;
  padding: 24px 20px;
  text-align: center;
  color: #888;
  font-size: 12px;
  background: #fff;
}

/* ========== 口コミ (comments) ========== */
.comments-section {
  margin-top: 30px;
  background: #fff;
  border: 1px solid #eaeaea;
  border-radius: 6px;
  padding: 20px 24px;
}
.comments-section h2 {
  margin: 0 0 14px;
  font-size: 18px;
  border-bottom: 1px solid #d5408f;
  padding-bottom: 6px;
}
.comments-section h2 .count {
  font-size: 13px;
  color: #888;
  font-weight: normal;
  margin-left: 8px;
}
.comment-loading, .comment-empty, .comment-err {
  color: #888;
  padding: 12px 0;
  font-size: 13px;
}
.comment-list { margin-bottom: 24px; }
.comment {
  padding: 14px 0;
  border-bottom: 1px solid #f0f0f0;
}
.comment:last-child { border-bottom: none; }
.comment-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 8px;
}
.comment-name { font-weight: 600; color: #333; font-size: 14px; }
.comment-date { color: #999; font-size: 12px; }
.comment-ratings {
  font-size: 12px;
  margin: 6px 0 10px;
  border-collapse: collapse;
  background: #fafafa;
  border-radius: 4px;
}
.comment-ratings th, .comment-ratings td {
  padding: 4px 10px;
  text-align: left;
}
.comment-ratings th { color: #666; font-weight: normal; width: 90px; }
.comment-ratings .r-num { color: #888; font-size: 11px; margin-left: 4px; }
.comment-body {
  margin: 0;
  color: #333;
  line-height: 1.7;
  font-size: 14px;
  white-space: pre-wrap;
}

/* comment form */
.comment-form {
  border-top: 2px solid #d5408f;
  padding-top: 16px;
  margin-top: 20px;
}
.comment-form label { display: block; margin-bottom: 12px; color: #555; font-size: 13px; font-weight: 500; }
.comment-form input[type="text"], .comment-form textarea {
  width: 100%;
  padding: 8px 10px;
  border: 1px solid #ddd;
  border-radius: 3px;
  font: inherit;
  margin-top: 4px;
  outline: none;
}
.comment-form input[type="text"]:focus, .comment-form textarea:focus { border-color: #d5408f; }
.comment-form textarea { resize: vertical; min-height: 100px; }
.rating-fieldset {
  border: 1px solid #eee;
  border-radius: 4px;
  padding: 10px 14px;
  margin: 0 0 14px;
}
.rating-fieldset legend { padding: 0 8px; font-size: 12px; color: #888; }
.rating-row {
  display: flex !important;
  align-items: center;
  gap: 10px;
  margin: 4px 0 !important;
  font-weight: normal !important;
}
.rating-label { width: 90px; color: #555; }
.rating-row select {
  padding: 4px 6px;
  border: 1px solid #ddd;
  border-radius: 3px;
  font: inherit;
}
.hp-field { position: absolute; left: -9999px; top: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
  gap: 10px;
}
.form-note { color: #999; font-size: 12px; }
.comment-form button[type=submit] {
  padding: 8px 20px;
  background: #d5408f;
  color: #fff;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
}
.comment-form button[type=submit]:hover { background: #b8336f; }
.comment-form button[disabled] { opacity: 0.5; cursor: default; }
.form-msg { margin-top: 10px; padding: 8px 12px; border-radius: 3px; font-size: 13px; }
.form-msg.ok { background: #e6f4ea; color: #1e6e33; }
.form-msg.err { background: #ffe5e5; color: #b00; }

/* ========== 響應式 ========== */
@media (max-width: 600px) {
  .site-header { gap: 12px; padding: 10px 14px; }
  .site-logo { font-size: 17px; }
  .site-search { max-width: none; }
  main { padding: 16px 12px 40px; }
  .hero { padding: 24px 8px 20px; }
  .hero h1 { font-size: 24px; }
  .page-title { font-size: 19px; }
  .shop-detail { padding: 16px 14px; }
  .shop-head h1 { font-size: 19px; }
  .shop-info th { width: 84px; font-size: 12px; padding: 6px 8px; }
  .shop-info td { font-size: 13px; padding: 6px 10px; }
}
