/* =========================================================
   制作サンプル: 店舗LP（美容室 hair&relax LICO）
   Clean & Minimal / 温かみのある白基調
   ========================================================= */

:root {
  --lp-bg: #fffdfb;
  --lp-tint: #f5efe9;
  --lp-ink: #2b2622;
  --lp-muted: #7c726a;
  --lp-accent: #b0764e;      /* テラコッタ系 */
  --lp-accent-dark: #8a5836;
  --lp-line: #e7ded4;
  --lp-serif: "Zen Old Mincho", "Yu Mincho", "Hiragino Mincho ProN", serif;
  --lp-sans: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Segoe UI", Meiryo, sans-serif;
  --lp-maxw: 1000px;
  --lp-ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
body {
  margin: 0;
  font-family: var(--lp-sans);
  color: var(--lp-ink);
  background: var(--lp-bg);
  line-height: 1.9;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--lp-accent-dark); }
h1, h2, h3, p, dl, dd, figure, figcaption { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap;
}
:focus-visible { outline: 3px solid var(--lp-accent); outline-offset: 2px; }

/* ===== サンプルバナー ===== */
.sample-bar {
  background: #2b2622;
  color: #f4ece2;
  font-size: 0.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  text-align: center;
}
.sample-bar p { margin: 0; }
.sample-bar strong { color: #f0c9a8; }
.sample-bar a { color: #f4ece2; text-decoration: underline; }

/* ===== Header ===== */
.lp-container { width: 100%; max-width: var(--lp-maxw); margin-inline: auto; padding-inline: 24px; }

.lp-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 253, 251, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s var(--lp-ease), box-shadow 0.2s var(--lp-ease);
}
.lp-header.is-scrolled {
  border-bottom-color: var(--lp-line);
  box-shadow: 0 4px 20px rgba(43, 38, 34, 0.06);
}
.lp-header-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.lp-logo {
  font-family: var(--lp-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--lp-ink);
  text-decoration: none;
  letter-spacing: 0.04em;
}
.lp-logo span { color: var(--lp-accent); }

.lp-nav-list { display: flex; align-items: center; gap: 24px; font-size: 0.88rem; font-weight: 500; }
.lp-nav-list a { color: var(--lp-muted); text-decoration: none; }
.lp-nav-list a:hover { color: var(--lp-accent); }
.lp-nav-cta {
  padding: 8px 18px; border-radius: 999px;
  background: var(--lp-accent); color: #fff !important;
}
.lp-nav-cta:hover { background: var(--lp-accent-dark); }

.lp-nav-toggle {
  display: none; width: 44px; height: 44px;
  border: 1px solid var(--lp-line); border-radius: 10px; background: #fff; position: relative; cursor: pointer;
}
.lp-nav-toggle span:first-child,
.lp-nav-toggle span:first-child::before,
.lp-nav-toggle span:first-child::after {
  content: ""; position: absolute; left: 12px; width: 20px; height: 2px; background: var(--lp-ink);
  transition: transform 0.2s var(--lp-ease), opacity 0.2s var(--lp-ease);
}
.lp-nav-toggle span:first-child { top: 21px; }
.lp-nav-toggle span:first-child::before { top: -6px; }
.lp-nav-toggle span:first-child::after { top: 6px; }
.lp-nav-toggle[aria-expanded="true"] span:first-child { background: transparent; }
.lp-nav-toggle[aria-expanded="true"] span:first-child::before { transform: translateY(6px) rotate(45deg); }
.lp-nav-toggle[aria-expanded="true"] span:first-child::after { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 820px) {
  .lp-nav-toggle { display: block; z-index: 2; }
  .lp-nav-list {
    position: fixed; inset: 68px 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--lp-bg); border-bottom: 1px solid var(--lp-line);
    box-shadow: 0 12px 30px rgba(43, 38, 34, 0.1);
    padding: 6px 0;
    transform: translateY(-12px); opacity: 0; visibility: hidden;
    transition: transform 0.2s var(--lp-ease), opacity 0.2s var(--lp-ease), visibility 0.2s;
  }
  .lp-nav-list.is-open { transform: translateY(0); opacity: 1; visibility: visible; }
  .lp-nav-list li { border-top: 1px solid var(--lp-line); }
  .lp-nav-list li:first-child { border-top: 0; }
  .lp-nav-list a { display: block; padding: 15px 24px; }
  .lp-nav-cta { text-align: center; margin: 8px 24px; border-radius: 8px; }
}

/* ===== Buttons ===== */
.lp-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 30px; border-radius: 999px;
  font-weight: 700; font-size: 0.95rem; line-height: 1;
  text-decoration: none; cursor: pointer; border: 2px solid transparent;
  transition: transform 0.15s var(--lp-ease), background-color 0.2s var(--lp-ease);
}
.lp-btn:hover { transform: translateY(-2px); }
.lp-btn-primary { background: var(--lp-accent); color: #fff; }
.lp-btn-primary:hover { background: var(--lp-accent-dark); }
.lp-btn-outline { background: #fff; color: var(--lp-accent-dark); border-color: var(--lp-line); }
.lp-btn-outline:hover { border-color: var(--lp-accent); }
.lp-btn-line { background: #06c755; color: #fff; opacity: 0.55; pointer-events: none; }
.lp-btn-block { width: 100%; }

/* ===== Hero ===== */
.lp-hero {
  max-width: var(--lp-maxw);
  margin-inline: auto;
  padding: clamp(48px, 9vw, 96px) 24px clamp(40px, 7vw, 80px);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.lp-hero-sub {
  font-family: var(--lp-serif);
  color: var(--lp-accent);
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}
.lp-hero-title {
  font-family: var(--lp-serif);
  font-size: clamp(2rem, 6vw, 3rem);
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.lp-hero-lead { margin-top: 22px; color: var(--lp-muted); font-size: 0.98rem; }
.lp-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.lp-hero-hours { margin-top: 18px; font-size: 0.85rem; color: var(--lp-muted); }

.lp-hero-visual { position: relative; aspect-ratio: 4 / 5; }
.lp-hero-shape { position: absolute; border-radius: 46% 54% 58% 42% / 52% 44% 56% 48%; }
.lp-hero-shape-1 {
  inset: 0 10% 12% 0;
  background: linear-gradient(150deg, #d8b48f, #b0764e);
}
.lp-hero-shape-2 {
  inset: 22% 0 0 24%;
  background: linear-gradient(150deg, #efe4d6, #d8c3ab);
  mix-blend-mode: multiply;
}
.lp-hero-badge {
  position: absolute; left: 50%; bottom: 6%; transform: translateX(-50%);
  background: #fff; color: var(--lp-accent-dark);
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em;
  padding: 8px 20px; border-radius: 999px;
  box-shadow: 0 8px 24px rgba(43, 38, 34, 0.14);
}
@media (max-width: 820px) {
  .lp-hero { grid-template-columns: 1fr; gap: 32px; }
  .lp-hero-visual { max-width: 340px; margin-inline: auto; }
}

/* ===== Section base ===== */
.lp-section {
  max-width: var(--lp-maxw);
  margin-inline: auto;
  padding: clamp(52px, 8vw, 88px) 24px;
}
.lp-section-tint {
  max-width: none;
  background: var(--lp-tint);
}
.lp-section-tint > * { max-width: var(--lp-maxw); margin-inline: auto; }
.lp-section-label {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.22em;
  color: var(--lp-accent); margin-bottom: 10px;
}
.lp-section-title {
  font-family: var(--lp-serif);
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700; letter-spacing: 0.06em;
}
.lp-section-note { margin-top: 12px; color: var(--lp-muted); font-size: 0.9rem; }

/* ===== Concept ===== */
.lp-concept-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px;
}
.lp-concept-item {
  background: #fff; border: 1px solid var(--lp-line); border-radius: 14px;
  padding: 30px 26px;
  transition: transform 0.2s var(--lp-ease), box-shadow 0.2s var(--lp-ease);
}
.lp-concept-item:hover { transform: translateY(-4px); box-shadow: 0 14px 34px rgba(43, 38, 34, 0.08); }
.lp-concept-num {
  font-family: var(--lp-serif); font-size: 1.6rem; color: var(--lp-accent); display: block; margin-bottom: 12px;
}
.lp-concept-item h3 { font-size: 1.08rem; margin-bottom: 10px; }
.lp-concept-item p { font-size: 0.9rem; color: var(--lp-muted); }
@media (max-width: 760px) { .lp-concept-grid { grid-template-columns: 1fr; } }

/* ===== Menu ===== */
.lp-menu-block { margin-top: 36px; }
.lp-menu-block h3 {
  font-family: var(--lp-serif); font-size: 1.15rem;
  padding-bottom: 10px; border-bottom: 2px solid var(--lp-accent); display: inline-block;
}
.lp-menu-list { margin-top: 14px; }
.lp-menu-list li {
  display: flex; justify-content: space-between; align-items: baseline; gap: 16px;
  padding: 12px 0; border-bottom: 1px dashed var(--lp-line); font-size: 0.95rem;
}
.lp-price { font-weight: 700; color: var(--lp-accent-dark); white-space: nowrap; }

/* ===== Gallery ===== */
.lp-gallery {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 36px;
}
.lp-gallery-item {
  aspect-ratio: 1 / 1; border-radius: 14px; position: relative; overflow: hidden;
  display: flex; align-items: flex-end;
}
.lp-gallery-item figcaption {
  position: relative; z-index: 1;
  width: 100%; padding: 12px 14px;
  background: linear-gradient(to top, rgba(43, 38, 34, 0.55), transparent);
  color: #fff; font-size: 0.82rem; font-weight: 700;
}
.lp-g1 { background: linear-gradient(135deg, #c9a988, #a9805a); }
.lp-g2 { background: linear-gradient(135deg, #d8cdbc, #b9a888); }
.lp-g3 { background: linear-gradient(135deg, #cbb7a0, #9c7f63); }
.lp-g4 { background: linear-gradient(135deg, #b99b7d, #8a6b4d); }
.lp-g5 { background: linear-gradient(135deg, #ddc9ae, #c2a079); }
.lp-g6 { background: linear-gradient(135deg, #c4a483, #a17e59); }
@media (max-width: 760px) { .lp-gallery { grid-template-columns: 1fr 1fr; } }

/* ===== Access ===== */
.lp-access-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; margin-top: 36px; align-items: start; }
.lp-access-table > div {
  display: grid; grid-template-columns: 90px 1fr; gap: 14px;
  padding: 13px 0; border-top: 1px solid var(--lp-line); font-size: 0.92rem;
}
.lp-access-table > div:last-child { border-bottom: 1px solid var(--lp-line); }
.lp-access-table dt { font-weight: 700; }
.lp-access-table dd { color: var(--lp-muted); }
.lp-map {
  aspect-ratio: 4 / 3; border-radius: 14px; background: #efe6da;
  border: 1px dashed var(--lp-accent);
  display: grid; place-content: center; text-align: center; gap: 8px;
  color: var(--lp-muted);
}
.lp-map span { font-family: var(--lp-serif); font-size: 1.6rem; color: var(--lp-accent); }
.lp-map p { font-size: 0.78rem; }
@media (max-width: 760px) { .lp-access-grid { grid-template-columns: 1fr; } }

/* ===== Reserve ===== */
.lp-reserve { }
.lp-form {
  margin-top: 32px; background: #fff; border: 1px solid var(--lp-line);
  border-radius: 16px; padding: 30px;
}
.lp-form-row { margin-bottom: 18px; }
.lp-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.lp-form-row label { display: block; font-weight: 700; font-size: 0.86rem; margin-bottom: 8px; }
.lp-req {
  font-size: 0.66rem; font-weight: 700; color: #b23c2e;
  background: rgba(178, 60, 46, 0.1); padding: 2px 7px; border-radius: 4px; margin-left: 6px;
}
.lp-form input, .lp-form select, .lp-form textarea {
  width: 100%; padding: 12px 14px; font: inherit; color: var(--lp-ink);
  border: 1px solid var(--lp-line); border-radius: 8px; background: #fff;
  transition: border-color 0.15s var(--lp-ease), box-shadow 0.15s var(--lp-ease);
}
.lp-form input:focus, .lp-form select:focus, .lp-form textarea:focus {
  outline: none; border-color: var(--lp-accent);
  box-shadow: 0 0 0 3px rgba(176, 118, 78, 0.16);
}
.lp-form textarea { resize: vertical; }
.lp-form-error { font-size: 0.78rem; color: #b23c2e; margin-top: 6px; }
.lp-form-error:empty { margin-top: 0; }
.lp-form-row.has-error input, .lp-form-row.has-error select { border-color: #b23c2e; }
.lp-form-status { margin-top: 12px; text-align: center; font-weight: 700; font-size: 0.9rem; }
.lp-form-status.is-ok { color: #2f7d4f; }
.lp-form-status.is-ng { color: #b23c2e; }
.lp-form-hint { margin-top: 12px; font-size: 0.78rem; color: var(--lp-muted); text-align: center; }
.lp-reserve-alt { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 22px; }
@media (max-width: 560px) { .lp-form-grid { grid-template-columns: 1fr; } }

/* ===== Footer ===== */
.lp-footer {
  background: #2b2622; color: #d9cdbf;
  text-align: center; padding: 44px 24px 32px;
}
.lp-footer-logo { font-family: var(--lp-serif); font-size: 1.2rem; color: #fff; letter-spacing: 0.06em; }
.lp-footer-logo span { color: #e0a878; }
.lp-footer-info { font-size: 0.84rem; margin-top: 10px; }
.lp-footer-copy { font-size: 0.78rem; margin-top: 18px; color: #a2958a; }
.lp-footer-copy a { color: #d9cdbf; }

/* ===== reveal =====
   JS 動作時（html.js-anim）のみ初期状態を隠す。JS 無効時は常に表示。 */
.js-anim .lp-reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s var(--lp-ease), transform 0.6s var(--lp-ease); }
.js-anim .lp-reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js-anim .lp-reveal { opacity: 1; transform: none; transition: none; }
  .lp-btn:hover, .lp-concept-item:hover { transform: none; }
}
