/* =========================
   Top page: INFORMATION (home-notice)
   - Title/subtitle centered
   - Minimal gap between title and subtitle
   - Divider line under subtitle
   - No list markers
   - Larger type + generous vertical spacing for luxury feel
   - No per-item dividers
========================= */

.home-notice {
  margin: 28px 0 40px;
  padding: 0; /* container幅をそのまま使う */
}

.home-notice__title {
  margin: 0;
  text-align: center;
  font-size: 20px;
  letter-spacing: 0.10em;
}

.home-notice__subtitle {
  margin: 4px 0 0;
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: rgba(0, 0, 0, 0.62);
  padding-bottom: 14px;
  position: relative;
}

/* 720px幅の区切り線 */
.home-notice__subtitle::after {
  content: "";
  display: block;
  width: 100%;
  max-width: 720px;
  height: 1px;
  margin: 14px auto 0;
  background: rgba(0, 0, 0, 0.10);
}

.home-notice__list {
  list-style: none;
  margin: 18px auto 0;
  padding: 0;
  max-width: 720px;
  display: grid;
  gap: 14px; /* リスト同士の“空気感” */
}

.home-notice__item {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 10px 28px 10px 0; /* 上下余白多め, right padding for arrow */
  position: relative;
}

.home-notice__item::after {
  content: ">";
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 15px;
  color: rgba(0, 0, 0, 0.45);
  pointer-events: none;
  font-family: inherit;
}

.home-notice__date {
  flex: 0 0 auto;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: rgba(0, 0, 0, 0.55);
  white-space: nowrap;
}

.home-notice__text {
  font-size: 15px; /* 文字を少し大きく */
  letter-spacing: 0.04em;
  line-height: 1.8;
}

@media (min-width: 768px) {
  .home-notice__title {
    font-size: 22px;
  }
  .home-notice__text {
    font-size: 16px;
  }
  .home-notice__item {
    gap: 18px;
    padding: 8px 0;
  }
}

/* =========================
   Top page: SALONS (home-shops)
   - Section: light gray box
   - Each shop: white card, 1 row (PC)
   - PC: 4 columns (photo / access info / hours / actions)
   - Mobile: 1 column stacked
========================= */

.home-shops {
  margin: 28px 0 40px;
  padding: 36px 32px;
  background: #ededed; /* thin light gray */
  border-radius: 0;
}

.home-shops__title {
  margin: 0 0 14px;
  font-size: 18px;
  letter-spacing: 0.08em;
  text-align: center;
}

.home-shops__grid {
  display: grid;
  gap: 24px;
}

/* Each shop card (white) */
.home-shops__card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 0;
  overflow: hidden;

  /* Default (mobile-first): stack */
  display: grid;
  grid-template-columns: 1fr;
}

/* Image */
.home-shops__media {
  margin: 0;
}

.home-shops__photo {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9; /* wider, less tall */
  object-fit: cover;
}

/* Body (mobile) */
.home-shops__body {
  padding: 18px 20px 20px;
}

.home-shops__name {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.home-shops__address,
.home-shops__tel,
.home-shops__access {
  margin: 0 0 6px;
  font-size: 13px;
  line-height: 1.6;
  word-break: break-word;
}

.home-shops__tel {
  margin-top: 8px;
  font-weight: 600;
}

/* Hours list */
.home-shops__hours {
  margin: 10px 0 0;
  padding: 0;
}

.home-shops__hours-row {
  display: grid;
  grid-template-columns: 3.5em 1fr;
  gap: 10px;
  padding: 4px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.home-shops__hours-row:first-child {
  border-top: 0;
}

.home-shops__hours dt {
  margin: 0;
  font-size: 12px;
  opacity: 0.85;
}

.home-shops__hours dd {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
}

/* Actions (Map / Reserve) */
.home-shops__actions {
  margin-top: 14px;
  display: flex;
  gap: 10px;
}

.home-shops__btn {
  flex: 1 1 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  height: 40px;
  padding: 0 14px;

  border: 1px solid rgba(0, 0, 0, 0.14);
  background: #fff;

  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* ===== Tablet / Small desktop (avoid squeeze) ===== */
@media (min-width: 900px) and (max-width: 1023px) {
  .home-shops {
    padding: 28px 48px;
  }

  .home-shops__grid {
    gap: 26px;
  }

  .home-shops__card {
    grid-template-columns: 280px 1fr;
    align-items: start;
  }

  .home-shops__media {
    align-self: stretch;
  }

  .home-shops__photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 16 / 9;
  }

  .home-shops__body {
    display: block;
    padding: 22px 24px;
  }

  .home-shops__name,
  .home-shops__address,
  .home-shops__tel,
  .home-shops__access {
    text-align: left;
  }

  .home-shops__hours {
    margin: 14px 0 0;
    padding: 12px 0 0;
    border-left: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
  }
}

/* ===== Desktop layout ===== */
@media (min-width: 1024px) {
  .home-shops {
    padding: 22px 100px 42px;
  }

  .home-shops__title {
    margin-bottom: 18px;
    font-size: 20px;
  }

  .home-shops__grid {
    gap: 28px;
  }

  .home-shops__card {
    grid-template-columns: clamp(260px, 28vw, 360px) 1fr;
    align-items: start;
  }

  .home-shops__media {
    align-self: stretch;
  }

  .home-shops__photo {
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: cover;
    aspect-ratio: 16 / 9;
    object-position: center;
  }

  .home-shops__body {
    padding: 22px 24px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) clamp(240px, 24vw, 320px);
    column-gap: 28px;
    row-gap: 10px;
    align-content: start;
    grid-template-rows: auto auto auto auto auto;
  }

  .home-shops__name   { grid-column: 1; grid-row: 1; text-align: left; }
  .home-shops__address{ grid-column: 1; grid-row: 2; text-align: left; }
  .home-shops__tel    { grid-column: 1; grid-row: 3; text-align: left; }
  .home-shops__access { grid-column: 1; grid-row: 4; text-align: left; }

  .home-shops__tel {
    margin-top: 0;
    font-weight: 600;
  }

  .home-shops__hours {
    grid-column: 2;
    grid-row: 1 / span 4;
    min-width: 240px;

    margin: 0;
    padding-left: 14px;
    border-left: 1px solid rgba(0, 0, 0, 0.08);

    align-self: start;
    justify-self: stretch;
  }

  .home-shops__actions {
    grid-column: 2;
    grid-row: 5;
    display: flex;
    gap: 10px;
    padding-left: 14px;
  }

  .home-shops__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    height: 40px;
    padding: 0 14px;

    border: 1px solid rgba(0, 0, 0, 0.14);
    background: #fff;

    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    white-space: nowrap;
  }

  .home-shops__btn:hover {
    text-decoration: none;
  }

  .home-shops__btn--map { flex: 1 1 0; }
  .home-shops__btn--reserve { flex: 1 1 0; }
}

/* ===== Small phones tweaks ===== */
@media (max-width: 360px) {
  .home-shops__title { font-size: 16px; }
  .home-shops__name { font-size: 15px; }
}

/* =========================
   Top page: Welcome (home-welcome)
========================= */

.home-welcome {
  margin: 28px 0 40px;
}

.home-welcome__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;

  padding: 28px 24px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.07);
}

.home-welcome__media {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

.home-welcome__media img {
  width:70%;
  max-width: 520px;
  height: auto;
  display: block;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.home-welcome__content {
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 900px) {
  .home-welcome__inner {
    grid-template-columns: 2fr 3fr;
    gap: 28px;
    padding: 36px 32px;
    align-items: center;
  }

  .home-welcome__media {
    padding: 26px;
    margin-left: 80px;
  }

  .home-welcome__media img {
    width: 90%;
  }

  .home-welcome__content {
    max-width: 400px;
    margin-left: 60px;
  }
}

/* =========================
   Top page: RECOMMENDED (home-recommend)
========================= */

.home-recommend {
  margin: 28px 0 40px;
}

.home-recommend__title {
  margin: 0 0 14px;
  text-align: center;
  font-size: 18px;
  letter-spacing: 0.10em;
}

.home-recommend__carousel {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.home-recommend__viewport {
  overflow: hidden;
  padding: 0 48px; /* peek space */
}

.home-recommend__track {
  display: flex;
  gap: 16px;
  will-change: transform;
}

.home-recommend__card {
  flex: 0 0 clamp(200px, 18vw, 230px);
  background: #fff;
  border: 1px solid rgba(0,0,0,0.07);
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
}

.home-recommend__media {
  margin: 0;
  padding: 10px;
  /* Keep a stable frame height but do NOT crop the image */
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}

.home-recommend__photo {
  display: block;
  width: 100%;
  height: 100%;
  /* Fit inside the frame without cropping */
  object-fit: contain;
}

.home-recommend__body {
  padding: 14px 14px 16px;
}

.home-recommend__name {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.4;

  /* 追加 */
  font-family: "Hiragino Kaku Gothic ProN",
               "Hiragino Sans",
               "Noto Sans JP",
               "Yu Gothic",
               "Meiryo",
               sans-serif;
}

.home-recommend__tags {
  margin: 0 0 10px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.home-recommend__tag {
  display: inline-flex;
  align-items: center;
  height: 22px;
  padding: 0 10px;
  border: 1px solid rgba(0,0,0,0.10);
  font-size: 12px;
  letter-spacing: 0.04em;
  opacity: 0.85;
}

.home-recommend__price {
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.home-recommend__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  padding: 0 12px;
  border: 1px solid rgba(0,0,0,0.14);
  background: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  white-space: nowrap;
}

.home-recommend__link:hover { text-decoration: none; }

.home-recommend__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.12);
  background: rgba(255,255,255,0.92);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
}

.home-recommend__arrow span {
  font-size: 22px;
  line-height: 1;
  opacity: 0.75;
}

.home-recommend__arrow--prev { left: 10px; }
.home-recommend__arrow--next { right: 10px; }

@media (min-width: 1024px) {
  .home-recommend__title {
    font-size: 20px;
    margin-bottom: 18px;
  }
  .home-recommend__viewport {
    padding: 0 60px;
  }
}

@media (max-width: 767px) {
  .home-recommend__viewport { padding: 0 44px; }
  .home-recommend__card { flex-basis: 78%; }
  .home-recommend__arrow { width: 38px; height: 38px; }
}

/* =========================
   Full bleed utility
========================= */

.fullbleed {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
/* =========================
   Top page: CONCEPT & SERVICE (home-concept)
   - Mobile: 1 column (image then text)
   - Desktop: 2 columns (image left, text right)
   - Premium / minimal typography
========================= */

.home-concept {
  margin: 28px 0 40px;
}

.home-concept__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  padding: 32px 24px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.07);
}

.home-concept__media {
  margin: 0;
  display: flex;
  justify-content: center;
}

.home-concept__media img {
  width: 100%;
  max-width: 560px;
  height: auto;
  display: block;
  /* Slight presence without being flashy */
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.10);
}

.home-concept__content {
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.home-concept__title {
  margin: 0;
  text-align: left;
  font-size: 20px;
  letter-spacing: 0.12em;
}

.home-concept__subtitle {
  margin: 6px 0 18px;
  font-size: 13px;
  letter-spacing: 0.10em;
  color: rgba(0,0,0,0.62);
  padding-bottom: 12px;
  position: relative;
}

.home-concept__subtitle::after {
  content: "";
  display: block;
  width: 72px;
  height: 1px;
  background: rgba(0,0,0,0.16);
  margin-top: 12px;
}

.home-concept__message {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 2.0;
  letter-spacing: 0.04em;
  color: rgba(0,0,0,0.86);
}

/* Desktop: 2 columns */
@media (min-width: 900px) {
  .home-concept__inner {
    grid-template-columns: 1fr 1fr;
    gap: 44px;
    padding: 48px 80px;
    align-items: center;
  }

  .home-concept__media {
    justify-content: flex-start;
  }

  .home-concept__media img {
    max-width: 620px;
  }

  .home-concept__content {
    max-width: 560px;
    margin: 0;
  }

  .home-concept__title {
    font-size: 22px;
  }
}

/* Tight phones */
@media (max-width: 360px) {
  .home-concept__inner {
    padding: 28px 20px;
  }

  .home-concept__message {
    font-size: 13px;
  }
}
/* ------------------------------
   First View (Home Hero)
------------------------------ */
.home-hero {
  position: relative;
  z-index: 0;
  width: 100%;
  overflow: hidden;
  border-radius: 0;
  min-height: clamp(420px, 72vh, 820px);
  margin: 0 0 48px;
}
/* Ensure hero breaks out of .container width */
.home-hero.fullbleed {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  max-width: none;
}

.home-hero__inner {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: inherit;
}

.home-hero__media {
  position: absolute;
  inset: 0;
  margin: 0;
  pointer-events: none;
}

.home-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: scale(1.02);
}

.home-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(80% 90% at 25% 50%, rgba(0,0,0,0.38), rgba(0,0,0,0) 60%),
    linear-gradient(to top, rgba(0,0,0,0.38), rgba(0,0,0,0) 55%);
  pointer-events: none;
}

.home-hero__content {
  position: relative;
  z-index: 1;
  height: 100%;
  min-height: inherit;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(24px, 5vw, 64px);
  max-width: 720px;
  color: #fff;
  text-shadow: 0 2px 18px rgba(0,0,0,0.35);
}

.home-hero__lead {
  font-size: clamp(14px, 1.8vw, 18px);
  line-height: 1.8;
  letter-spacing: 0.08em;
  margin: 0 0 20px;
  opacity: 0.85; /* 主役より一段引く */
}

.home-hero__catch {
  font-size: clamp(15px, 2.0vw, 20px);
  line-height: 1.7;
  letter-spacing: 0.06em;
  margin: 0 0 10px;
  font-weight: 400; /* 太さを抑える */
  opacity: 0.9;
}

.home-hero__brand {
  font-size: clamp(28px, 4.6vw, 56px); /* 主役として大きく */
  letter-spacing: 0.14em;           /* 高級感のある字間 */
  margin: 8px 0 28px;
  font-weight: 400;                 /* 太字にしない */
  line-height: 1.1;

  /* 洗練された印象のための書体 */
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", "Times New Roman", serif;

  /* うっすら存在感を出す影（読めるが主張しすぎない） */
  text-shadow: 0 12px 28px rgba(0,0,0,0.25);
  white-space: nowrap;        /* 強制的に1行表示 */
  max-width: 100%;
}



.home-hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.04em;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.home-hero__btn--primary {
  background: rgba(255,255,255,0.92);
  color: rgba(0,0,0,0.86);
  border: 1px solid rgba(255,255,255,0.65);
}

.home-hero__btn--ghost {
  background: rgba(0,0,0,0.24);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.45);
}

@media (min-width: 1024px) {
  .home-hero { margin: 0 0 64px; }
}

@media (max-width: 480px) {
  .home-hero { border-radius: 0px; }
  
  .home-hero__btn { width: 100%; }
}

/* ------------------------------
   Top page: keep header clickable above hero
------------------------------ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 2000;
}