@charset "UTF-8";
html,
body {
  font-family: "Noto Sans JP", -apple-system, system-ui, "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  font-weight: 400;
}

.medium {
  font-weight: 500;
}

.bold {
  font-weight: 700;
}

.light {
  font-weight: 300;
}

/* --------------------------------
 * 色・ベース
 * ------------------------------ */
:root {
  --hs-bg: #f5f3ee;
  --hs-card-bg: #ffffff;
  --hs-main-text: #4c2f3b;
  --hs-sub-text: #666666;
  --hs-accent: #d5c2a5;
  --hs-border-soft: #e6e1d7;
  --hs-shadow-soft: 0 10px 25px rgba(0, 0, 0, 0.06);
  --color_base_text_dark:#212529;
}

body {
  background-color: var(--hs-bg);
  color: var(--hs-main-text);
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 24px 16px 40px;
}

.footer {
  background: #aba49d;
}

/* --------------------------------
 * ページ全体
 * ------------------------------ */
.hs-page {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.hs-page .search-top__hero {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hs-page .search-top__hero a img {
  height: 54px;
  width: auto;
  display: block;
  filter: drop-shadow(0px 1px 1px rgba(0, 0, 0, 0.03));
}

/* --------------------------------
 * ヒーロー
 * ------------------------------ */
.hs-hero {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hs-hero img {
  height: 54px;
  width: auto;
  display: block;
  filter: drop-shadow(0px 1px 1px rgba(0, 0, 0, 0.03)); /* ロゴも自然に馴染む影 */
}

/* --------------------------------
 * 検索エリア
 * ------------------------------ */
.hs-search-section {
  margin-top: 4px;
}

.hs-search {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: var(--hs-card-bg);
  border-radius: 999px;
  padding: 6px 6px 6px 16px;
  box-shadow: var(--hs-shadow-soft);
}

.hs-search-input-wrap {
  flex: 1;
}

.hs-search-input {
  width: 100%;
  border: none;
  background: transparent;
  font-size: 14px;
  padding: 8px 0;
  outline: none;
  color: var(--hs-main-text);
}

.hs-search-input::-moz-placeholder {
  color: #b7b1a6;
}

.hs-search-input::placeholder {
  color: #b7b1a6;
}

.hs-search-btn {
  border: none;
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 14px;
  cursor: pointer;
  background: linear-gradient(135deg, #b85b62, #aa4d53);
  color: #fff;
  letter-spacing: 0.08em;
  white-space: nowrap;
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.hs-search-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.16);
}

.hs-search-btn:active {
  transform: translateY(0);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.18);
  opacity: 0.9;
}

/* --------------------------------
 * セクションタイトル
 * ------------------------------ */
.hs-section {
  margin-top: 8px;
}

.hs-section-title {
  font-size: 18px;
  margin-bottom: 16px;
  text-align: center;
}

/* --------------------------------
 * カード一覧
 * ------------------------------ */
.hs-card-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0 auto;
}

.hs-card {
  flex: 0 1 calc(50% - 8px);
  max-width: 260px;
}

/* カード本体 */
.hs-card-link {
  display: block;
  background-color: var(--hs-card-bg);
  border-radius: 10px;
  overflow: hidden;
  padding: 10px;
  box-shadow: var(--hs-shadow-soft);
  text-decoration: none;
  color: inherit;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  box-shadow: var(--hs-shadow-soft), inset 0 0 8px rgba(0, 0, 0, 0.03);
}

.hs-card-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.1);
}

/* 画像 */
.hs-card-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 3/3;
  overflow: hidden;
  border-radius: 8px;
  background-color: #f2f0ed;
  border: 1px solid #e8e4df;
}

.hs-card-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
}

/* テキスト */
.hs-card-body {
  padding: 14px 16px 16px;
}

.hs-card-name {
  font-size: 15px;
  margin-bottom: 6px;
  line-height: 1.4;
  white-space: normal;
  overflow-wrap: break-word;
  word-break: break-word;
}

.hs-card-rate {
  display: flex;
  align-items: baseline;
  gap: 4px;
  font-size: 13px;
  margin-bottom: 6px;
}

.hs-card-stars {
  letter-spacing: 0.06em;
}

.hs-card-score {
  color: var(--hs-sub-text);
}

.hs-card-meta {
  font-size: 12px;
  color: var(--hs-sub-text);
}
.hs-card-meta img {
  width: 1em;
  height: auto;
}

/* --------------------------------
 * レスポンシブ
 * ------------------------------ */
@media (min-width: 600px) {
  .hs-hero-en {
    font-size: 30px;
  }
  .hs-hero-jp {
    font-size: 15px;
  }
  .hs-card-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }
}
@media (min-width: 900px) {
  .container {
    padding-inline: 24px;
  }
  .hs-card-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
/* -----------------------------
 * 検索結果ページのスタイルはこちらから-------------------------
 * ----------------------------- */
/* --------------------------------
 * マップ仮エリア
 * -------------------------------- */
.w-100:has(#map-container) {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.w-100:has(#map-container) #map-container {
  display: block;
  width: 100%;
  height: auto;
  background: #f3f1ed;
  border: 1px solid #e6e1d7;
  overflow: hidden;
}
.w-100:has(#map-container) #map-container img {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.9;
  filter: grayscale(10%);
}

/* ==============================
   検索結果カード
============================== */
.result-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.result-item {
  padding: 18px;
  background: #fff;
  border-radius: 10px;
  box-shadow: var(--hs-shadow-soft);
}

/* 上段 */
.result-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.salon-name {
  font-size: 18px;
  line-height: 1.35;
  margin: 0;
  white-space: normal;
  overflow-wrap: break-word;
}

.salon-rate {
  font-size: 13px;
  white-space: nowrap;
}

.salon-rate-label {
  color: #666;
}

/* 下段：左右固定 */
.result-body {
  display: flex;
  gap: 14px;
  align-items: stretch;
}

.result-meta {
  flex: 1;
  min-width: 0; /* 住所長文対策 */
}

.salon-station,
.salon-address,
.salon-hours {
  font-size: 13px;
  color: #666;
  margin: 0 0 6px;
}

.pin-icon img {
  width: auto;
  height: 1.3em;
  vertical-align: -3px;
}

/* 画像 */
.result-thumb {
  width: 110px;
  height: 110px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  background: #f1efec;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.result-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

/* ==============================
   有料掲載（isPaid）
============================== */
.result-item.is-paid {
  position: relative;
  border-radius: 10px;
  /* 赤系は「縁」と「影」にだけ使う */
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08), inset 0 0 0 1px rgba(170, 77, 83, 0.18);
  border: 1px solid rgba(170, 77, 83, 0.25);
}

/* 上部に細いアクセントライン */
.result-item.is-paid::before {
  content: "";
  position: absolute;
  top: 0;
  left: 18px;
  right: 18px;
  height: 3px;
  border-radius: 0 0 4px 4px;
  background: linear-gradient(135deg, #b85b62, #aa4d53);
}

.footer {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  background: #ffffff;
}
.footer.py-3 {
  padding-bottom: 0 !important;
  padding-top: 0 !important;
}
.footer .row {
  justify-content: center;
}
.footer .row .col {
  display: block;
}
.footer .row .col a {
  color: var(--color_base_text_dark);
  text-decoration: none;
}

/* ==============================
   総合トップページ用
============================== */
.top-entry-page {
  background: #f5f3ef;
  padding: 40px 0 72px;
}

.top-entry-page__container {
  width: min(1120px, 100% - 32px);
  margin: 0 auto;
}

.top-entry {
  display: block;
}

.top-entry__hero {
  text-align: center;
  margin-bottom: 40px;
}

.top-entry__logo {
  margin-bottom: 28px;
}

.top-entry__logo img {
  width: min(320px, 72%);
  max-width: 260px;
  height: auto;
}

.top-entry__lead {
  max-width: 860px;
  margin: 0 auto;
}

.top-entry__title {
  margin: 0 0 18px;
  font-size: 2.4rem;
  line-height: 1.25;
  font-weight: 700;
  color: #503542;
  letter-spacing: 0.02em;
}

.top-entry__description {
  margin: 0;
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.9;
  color: #5f4652;
}

.top-entry__cta {
  margin-bottom: 48px;
}

.top-entry__cta-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.top-entry-card {
  display: block;
  background: #fff;
  border-radius: 24px;
  padding: 40px 28px;
  text-align: center;
  text-decoration: none;
  color: #503542;
  box-shadow: 0 10px 28px rgba(60, 40, 50, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.top-entry-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(60, 40, 50, 0.12);
  color: #503542;
  text-decoration: none;
}

.top-entry-card__title {
  margin: 0 0 14px;
  font-size: clamp(1.5rem, 2.6vw, 2.25rem);
  font-weight: 700;
  line-height: 1.3;
}

.top-entry-card__text {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #5f4652;
}

.top-entry__section-title {
  margin: 0 0 24px;
  text-align: center;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: #503542;
}

.top-entry__area-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.top-entry__area-list li {
  margin: 0;
}

.top-entry-area-card {
  display: block;
  background: #fff;
  border-radius: 20px;
  padding: 28px 24px;
  min-height: 120px;
  text-decoration: none;
  color: #503542;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.6;
  box-shadow: 0 8px 24px rgba(60, 40, 50, 0.07);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.top-entry-area-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(60, 40, 50, 0.11);
  color: #503542;
  text-decoration: none;
}

@media (max-width: 991.98px) {
  .top-entry__cta-grid {
    grid-template-columns: 1fr;
  }
  .top-entry__area-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 767.98px) {
  .top-entry-page {
    padding: 28px 0 56px;
  }
  .top-entry-page__container {
    width: calc(100% - 24px);
  }
  .top-entry__logo {
    margin-bottom: 22px;
  }
  .top-entry__logo img {
    width: min(280px, 78%);
    max-width: 180px;
  }
  .top-entry__hero {
    margin-bottom: 32px;
  }
  .top-entry__title {
    font-size: clamp(2.2rem, 4vw, 3.2rem); /* ← 少し下げる */
    line-height: 1.25;
    letter-spacing: 0.02em;
  }
  .top-entry__description {
    font-size: 1.05rem;
    line-height: 1.85;
  }
  .top-entry-card {
    padding: 30px 20px;
    border-radius: 20px;
  }
  .top-entry-card__title {
    font-size: 2rem;
  }
  .top-entry-card__text {
    font-size: 1rem;
  }
  .top-entry__section-title {
    margin-bottom: 18px;
  }
  .top-entry__area-list {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .top-entry-area-card {
    min-height: auto;
    padding: 22px 20px;
    border-radius: 18px;
    font-size: 1rem;
  }
}
