@charset "UTF-8";

/* ===============================
   変数（色・影）
=============================== */
:root {
  --bg: #F7EEDC;
  --bg-alt: #FBF7F2;
  --ink: #4A2E1B;
  --muted: #71513B;
  --btn: #B47B54;
  --btn-dark: #9F6846;
  --line: #06C755;
  --radius: 14px;
  --shadow: 0 10px 24px rgba(0,0,0,.08);
}

/* ===============================
   ベース
=============================== */
* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Yu Gothic", "Noto Sans JP", sans-serif;
  line-height: 1.85;
}

img {
  max-width: 100%;
  display: block;
  box-shadow: var(--shadow);
  border-radius: var(--radius);
}

a {
  text-decoration: none;
  color: var(--muted);
  transition: 0.25s;
  font-size: 15px;
}

.text-center { text-align: center; }

.container {
  width: min(1080px, 92vw);
  margin: 0 auto;
}

.salon-text,
.name { font-weight: 600; }

.salon-line {
  border-top: 1px solid #e0d5c4;
  padding-top: 12px;
  margin-top: 16px;
}

/* 画像系の個別調整 */
.header-img {
  width: 40%;
  height: auto;
}

.service-image {
  border-radius: 0; /* 角丸を消したい画像用 */
  margin-top: 24px;
}

/* ロゴ画像は影・角丸なし */
.logo img {
  margin-left: -5px;
  margin-top: 10px;
  width: 220px;
  height: auto;
  box-shadow: none;
  border-radius: 0;
}

/* ===============================
   ヘッダー
=============================== */
.site-header {
  background-color: #E8D8C0;
  position: sticky;
  top: 0;
  z-index: 10;
  padding: 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  margin: 0;
  white-space: nowrap;
}

.global-nav ul {
  display: flex;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.95rem;
  white-space: nowrap;
}

.global-nav a {
  border-radius: 4px;
  font-size: 13px;
}

.global-nav a:hover,
.global-nav a:focus-visible {
  background-color: rgba(255, 255, 255, 0.18);
}

.header-tel {
  background-color: #ffcc33;
  padding: 10px 14px;
  border-radius: 4px;
  font-weight: bold;
  font-size: 0.95rem; /* ← 二重指定を解消してこれに統一 */
  white-space: nowrap;
}

.header-tel:hover,
.header-tel:focus-visible {
  filter: brightness(0.95);
}

/* ===============================
   ハンバーガーボタン（デフォは非表示）
=============================== */
.menu-toggle {
  display: none;
  width: 28px;
  height: 20px;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 1100;
}

.menu-toggle span {
  height: 3px;
  background: var(--ink);
  border-radius: 3px;
  transition: 0.35s;
}

.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* スマホ用のスライドナビ（PCでは基本使わない想定） */
.nav,
.overlay { display: none; }

/* ===============================
   HERO（トップ画像）
=============================== */
.hero {
  position: relative;
  margin-bottom: 25px;
}

.hero-img {
  width: 100%;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

/* ===============================
   ボタン（予約 / LINE / 地図）共通化
=============================== */
.btn-first,
.btn-line,
.btn-map {
  display: block;
  padding: 15px 22px;
  margin-left: 48px;
  margin-right: 48px;
  border-radius: var(--radius);
  font-weight: 700;
  text-align: center;
  color: #fff;
}

/* 予約・LINEは上に余白あり / 地図は必要ならHTML側でmargin-topを足す想定 */
.btn-first,
.btn-line { margin-top: 16px; }

.btn-first {
  background: var(--btn);
  box-shadow: 0 6px 0 var(--btn-dark);
}

.btn-line {
  background: var(--line);
  box-shadow: 0 6px 0 #049644;
}

.btn-map {
  background: var(--btn);
  box-shadow: 0 6px 0 var(--btn-dark);
}

.btn-first:active,
.btn-line:active,
.btn-map:active {
  transform: translateY(2px);
}

/* ===============================
   セクション共通
=============================== */
.section {
  padding: 60px 0;
}

.section-alt {
  background: var(--bg-alt);
  padding: 60px 0;
}

.section-title {
  text-align: center;
  font-size: clamp(24px, 5vw, 32px);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", serif;
  margin-bottom: 14px;
}

.section-title2 {
  text-align: center;
  font-size: clamp(24px, 5vw, 27px);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", serif;
  margin-bottom: 14px;
}

.section-lead {
  text-align: center;
  color: var(--muted);
  margin-top: 48px;
  margin-bottom: 48px;
  font-weight: 600;
}

/* ===============================
   メニュー（カード）
=============================== */
.cards {
  display: grid;
  gap: 18px;
}

.card {
  background: #fff;
  border-radius: 16px;
  padding: 15px;
  box-shadow: var(--shadow);
  text-align: center;
  margin-bottom: 16px;
}

.price {
  font-size: 19px;
  font-weight: 800;
  color: var(--btn-dark);
}

/* ===============================
   サロンの想い
=============================== */
.about-grid {
  display: grid;
  gap: 26px;
}

.about-visual img {
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.ticks {
  padding-left: 1.2em;
}

.ticks li {
  list-style: "✓ ";
  margin: 4px 0;
}

@media (min-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr 1.2fr;
    align-items: center;
  }
}

/* ===============================
   ギャラリー
=============================== */
.gallery {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 80%;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 10px 0 4px;
}

.gallery img {
  height: 220px;
  object-fit: cover;
  scroll-snap-align: start;
}

/* ===============================
   スタッフ
=============================== */
.staff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.staff-card {
  background-color: #fff;
  padding: 16px;
  border-radius: 8px;
  border: 1px solid #dfe5ec;
  box-shadow: var(--shadow);
  margin-bottom: 16px;
}

/* ===============================
   お客様の声
=============================== */
.voices {
  display: grid;
  gap: 16px;
}

blockquote {
  background: #fff;
  padding: 18px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  margin: 0;
}

blockquote cite {
  display: block;
  margin-top: 6px;
  text-align: right;
  color: var(--muted);
  font-size: 14px;
}

/* ===============================
   LINE案内
=============================== */
.line-grid {
  display: grid;
  gap: 24px;
}

.line-actions {
  display: grid;
  gap: 12px;
}

.line-qr img {
  width: 180px;
  margin: 0 auto;
  border-radius: 14px;
  box-shadow: var(--shadow);
}

/* ===============================
   アクセス
=============================== */
.access-grid {
  display: grid;
  gap: 20px;
}

.info {
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 14px;
}

.info dt { font-weight: 700; }

.map-placeholder {
  background: #e8dcc6;
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  color: var(--muted);
  border: 1px dashed #c8b59e;
  min-height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 16px;
}

/* ===============================
   フッター
=============================== */
.site-footer {
  background: #E8D8C0;
  padding: 30px 0;
  text-align: center;
}

.small {
  font-size: 13px;
  color: var(--muted);
}

/* ===============================
   レスポンシブ（スマホ）
   ※ここにスマホナビをまとめる（暴走防止）
=============================== */
@media (max-width: 900px) {
  /* グリッド系は1列へ */
  .about-grid,
  .staff-grid,
  .access-grid {
    grid-template-columns: 1fr;
  }

  /* ハンバーガー表示 */
  .menu-toggle { display: flex; }

  /* スマホ用スライドナビ */
  .nav {
    display: flex;
    position: fixed;
    top: 0;
    right: 0;
    width: 70%;
    max-width: 280px;
    height: 100vh;
    background: rgba(247,238,220,.98);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 26px;
    transform: translateX(100%);
    opacity: 0;
    box-shadow: -4px 0 18px rgba(0,0,0,.15);
    transition: 0.4s ease;
    z-index: 1050;
  }

  .nav.open {
    transform: translateX(0);
    opacity: 1;
  }

  .nav a {
    font-size: 20px;
    color: var(--ink);
  }

  .overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.35);
    opacity: 0;
    pointer-events: none;
    transition: 0.4s;
    z-index: 1000;
  }

  .overlay.show {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (min-width: 426px) and (max-width: 600px) {
  .brand { font-size: 28px; }
  .container a { font-size: 15px; }
}

@media (min-width: 601px) and (max-width: 768px) {
  .brand { font-size: 28px; }
  .container a { font-size: 20px; }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .brand { font-size: 28px; }
  .container a { font-size: 23px; }
}

@media (min-width: 1025px) and (max-width: 1440px) {
  .brand { font-size: 28px; }
  .container a { font-size: 25px; }
}

@media (min-width: 1441px) and (max-width: 2560px) {
  .brand { font-size: 28px; }
  .container a { font-size: 25px; }
}
