/* ==========================================================
   美容室 un peu  共通スタイル
   配色を変えたいときは、この下の :root の色コードを
   書き換えるとサイト全体に反映されます。
   ========================================================== */

:root {
  --bg: #faf7f2;          /* ページ背景(クリーム) */
  --surface: #ffffff;     /* カードなどの背景(白) */
  --text: #52463f;        /* 基本の文字色(こげ茶) */
  --muted: #8c7e73;       /* 補足文字の色 */
  --line: #e6ddd2;        /* 罫線 */
  --rose: #c96f87;        /* メインアクセント(ローズ) */
  --rose-soft: #f7e3e9;
  --tile-pink: #e5a4b4;   /* モザイクタイル4色 */
  --tile-blue: #a8c6e2;
  --tile-green: #b7d3a8;
  --tile-yellow: #f0d68d;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Zen Maru Gothic", "Hiragino Maru Gothic ProN", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.9;
  font-size: 15.5px;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--rose);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:focus-visible {
  outline: 2px solid var(--rose);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ---- モザイクタイル風の飾りライン ---- */
.tile-strip {
  height: 6px;
  background: repeating-linear-gradient(
    90deg,
    var(--tile-pink) 0 24px,
    var(--tile-yellow) 24px 48px,
    var(--tile-green) 48px 72px,
    var(--tile-blue) 72px 96px
  );
}

/* ==========================================================
   ヘッダー
   ========================================================== */
.site-header {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 1.1rem 1.25rem 0.9rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  text-decoration: none;
  color: var(--text);
  line-height: 1.3;
}

.logo .logo-mark {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 2.1rem;
  letter-spacing: 0.04em;
}

.logo .logo-star {
  color: var(--rose);
  font-size: 0.9em;
  margin: 0 0.15em;
}

.logo .logo-sub {
  display: block;
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.35em;
}

.header-tel {
  text-align: right;
  line-height: 1.55;
}

.header-tel .tel-number {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
}

.header-tel .tel-number span {
  font-size: 0.75rem;
  color: var(--rose);
  margin-right: 0.3em;
}

.header-tel .tel-hours {
  font-size: 0.72rem;
  color: var(--muted);
}

/* ---- ナビゲーション ---- */
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.5rem 0.7rem;
  cursor: pointer;
  color: var(--text);
  font-family: inherit;
  font-size: 0.8rem;
}

.site-nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 2.8rem;
  max-width: 980px;
  margin: 0 auto;
  padding: 0.15rem 1.25rem 0.85rem;
}

.site-nav a {
  display: block;
  text-align: center;
  text-decoration: none;
  color: var(--text);
  letter-spacing: 0.12em;
  font-size: 0.95rem;
  padding: 0.1rem 0.2rem;
}

.site-nav a small {
  display: block;
  font-size: 0.66rem;
  color: var(--muted);
  letter-spacing: 0.1em;
}

.site-nav a:hover {
  color: var(--rose);
}

.site-nav a.current {
  color: var(--rose);
  position: relative;
}

.site-nav a.current::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -0.35rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--rose);
}

/* ==========================================================
   メインビジュアル(スライドショー)
   ========================================================== */
.hero {
  max-width: 900px;
  margin: 2.2rem auto 0;
  padding: 0 1.25rem;
}

.slideshow {
  position: relative;
  aspect-ratio: 700 / 314;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(82, 70, 63, 0.12);
}

.slideshow img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: slide-fade 18s infinite;
}

.slideshow img:nth-child(1) { animation-name: slide-fade-first; }
.slideshow img:nth-child(2) { animation-delay: 6s; }
.slideshow img:nth-child(3) { animation-delay: 12s; }

@keyframes slide-fade {
  0%   { opacity: 0; }
  7%   { opacity: 1; }
  33%  { opacity: 1; }
  40%  { opacity: 0; }
  100% { opacity: 0; }
}

@keyframes slide-fade-first {
  0%   { opacity: 1; }
  33%  { opacity: 1; }
  40%  { opacity: 0; }
  96%  { opacity: 0; }
  100% { opacity: 1; }
}

/* 動きを減らす設定のユーザーには1枚目だけ表示 */
@media (prefers-reduced-motion: reduce) {
  .slideshow img { animation: none; }
  .slideshow img:first-child { opacity: 1; }
}

/* ---- 下層ページのバナー画像 ---- */
.page-banner {
  max-width: 900px;
  margin: 2.2rem auto 0;
  padding: 0 1.25rem;
}

.page-banner img {
  width: 100%;
  aspect-ratio: 700 / 300;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(82, 70, 63, 0.12);
}

/* ==========================================================
   セクション共通
   ========================================================== */
.section {
  max-width: 780px;
  margin: 0 auto;
  padding: 3.2rem 1.25rem 0;
}

.section:last-of-type {
  padding-bottom: 4rem;
}

.section-title {
  text-align: center;
  margin-bottom: 1.8rem;
}

.section-title .en {
  display: block;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  line-height: 1.2;
}

.section-title .ja {
  display: block;
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.25em;
  margin-top: 0.3rem;
}

/* 見出し下のタイル4粒 */
.section-title::after {
  content: "";
  display: block;
  width: 44px;
  height: 8px;
  margin: 0.7rem auto 0;
  border-radius: 2px;
  background: linear-gradient(
    90deg,
    var(--tile-pink) 0 25%,
    var(--tile-yellow) 25% 50%,
    var(--tile-green) 50% 75%,
    var(--tile-blue) 75% 100%
  );
}

.lead {
  text-align: center;
}

/* ==========================================================
   店舗情報テーブル(トップページ)
   ========================================================== */
.info-card {
  background: var(--surface);
  border-radius: 16px;
  padding: 1.6rem 1.8rem;
  box-shadow: 0 6px 20px rgba(82, 70, 63, 0.07);
}

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

.info-table th,
.info-table td {
  text-align: left;
  vertical-align: top;
  padding: 0.65rem 0;
  border-bottom: 1px dashed var(--line);
  font-weight: 400;
}

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

.info-table th {
  width: 6.5em;
  color: var(--rose);
  white-space: nowrap;
}

.info-table small {
  color: var(--muted);
}

/* ---- 電話CTA ---- */
.tel-cta {
  text-align: center;
  background: var(--rose-soft);
  border-radius: 16px;
  padding: 1.6rem 1.25rem;
}

.tel-cta .cta-label {
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  color: var(--rose);
}

.tel-cta .cta-number {
  display: inline-block;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  margin-top: 0.2rem;
}

.tel-cta .cta-note {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 0.3rem;
}

/* ==========================================================
   メニューページ
   ========================================================== */
.menu-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 2rem;
}

.menu-category {
  background: var(--surface);
  border-radius: 16px;
  padding: 1.5rem 1.8rem 1.2rem;
  box-shadow: 0 6px 20px rgba(82, 70, 63, 0.07);
  margin-bottom: 1.6rem;
}

.menu-category h3 {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  display: flex;
  align-items: center;
  gap: 0.55em;
  margin-bottom: 0.5rem;
}

.menu-category h3 small {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.05em;
}

/* カテゴリ名の前につくタイル1粒(カテゴリごとに色違い) */
.menu-category h3::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 3px;
  flex-shrink: 0;
}

.menu-category.c-pink   h3::before { background: var(--tile-pink); }
.menu-category.c-blue   h3::before { background: var(--tile-blue); }
.menu-category.c-green  h3::before { background: var(--tile-green); }
.menu-category.c-yellow h3::before { background: var(--tile-yellow); }

.price-list {
  list-style: none;
}

.price-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.7rem 0;
  border-bottom: 1px dashed var(--line);
}

.price-list li:last-child {
  border-bottom: none;
}

.price-list .item small {
  display: block;
  font-size: 0.76rem;
  color: var(--muted);
  line-height: 1.6;
}

.price-list .price {
  white-space: nowrap;
  font-weight: 500;
}

.price-list .group {
  border-bottom: none;
  padding-bottom: 0.1rem;
  font-weight: 700;
}

.price-list .sub .item {
  padding-left: 1.2em;
}

/* ==========================================================
   スタッフページ
   ========================================================== */
.staff-card {
  background: var(--surface);
  border-radius: 16px;
  padding: 1.8rem;
  box-shadow: 0 6px 20px rgba(82, 70, 63, 0.07);
  display: flex;
  gap: 1.8rem;
  align-items: flex-start;
}

.staff-photo {
  width: 220px;
  flex-shrink: 0;
  border-radius: 12px;
}

.staff-profile h3 {
  font-size: 1.15rem;
  margin-bottom: 0.2rem;
}

.staff-profile .staff-hobby {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

.staff-profile h4 {
  color: var(--rose);
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  margin-bottom: 0.3rem;
}

/* ==========================================================
   アクセスページ
   ========================================================== */
.access-lead {
  margin-bottom: 1.6rem;
}

.map-wrap iframe {
  width: 100%;
  height: 380px;
  border: 0;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(82, 70, 63, 0.07);
}

/* ==========================================================
   フッター
   ========================================================== */
.site-footer {
  margin-top: 4.5rem;
  background: #f2ebe1;
  text-align: center;
  padding: 2.5rem 1.25rem 1.8rem;
}

.site-footer .footer-logo {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 1.5rem;
  letter-spacing: 0.06em;
}

.site-footer .footer-logo .logo-star {
  color: var(--rose);
  font-size: 0.85em;
  margin: 0 0.15em;
}

.site-footer address {
  font-style: normal;
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 0.5rem;
  line-height: 1.8;
}

.site-footer address a {
  color: inherit;
}

.site-footer .copyright {
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 1.6rem;
  letter-spacing: 0.08em;
}

/* ==========================================================
   スマホ用(幅720px以下)
   ========================================================== */
@media (max-width: 720px) {
  body {
    font-size: 14.5px;
    /* 画面下の電話バーに隠れないよう余白を確保 */
    padding-bottom: 64px;
  }

  .header-inner {
    padding: 0.9rem 1rem 0.7rem;
  }

  .logo .logo-mark {
    font-size: 1.7rem;
  }

  .header-tel {
    display: none; /* スマホでは下部の電話バーを使う */
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    display: none;
    border-top: 1px solid var(--line);
  }

  .site-nav.open {
    display: block;
  }

  .site-nav ul {
    flex-direction: column;
    gap: 0;
    padding: 0.4rem 0 0.6rem;
  }

  .site-nav a {
    padding: 0.65rem 1rem;
  }

  .site-nav a.current::after {
    display: none;
  }

  .hero,
  .page-banner {
    margin-top: 1.2rem;
    padding: 0 1rem;
  }

  /* PC用の強制改行はスマホでは解除(はみ出し防止) */
  .lead br {
    display: none;
  }

  .section {
    padding: 2.4rem 1rem 0;
  }

  .info-card,
  .menu-category,
  .staff-card {
    padding: 1.2rem 1.1rem;
  }

  .info-table th {
    width: 5.5em;
  }

  .staff-card {
    flex-direction: column;
    align-items: center;
    text-align: left;
  }

  .staff-photo {
    width: 70%;
    max-width: 260px;
  }

  .map-wrap iframe {
    height: 300px;
  }
}

/* ---- スマホ画面下部の固定電話バー ---- */
.tel-bar {
  display: none;
}

@media (max-width: 720px) {
  .tel-bar {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--rose);
    text-align: center;
    padding: 0.8rem 1rem calc(0.8rem + env(safe-area-inset-bottom));
    z-index: 100;
  }

  .tel-bar a {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.05em;
  }
}
