/* ============================================================
   Base — Design tokens / Reset / Typography
   Figma: サロン系サイトーモノクロ
   ============================================================ */

:root {
  /* Colors */
  --color-bg: #ffffff;
  --color-bg-alt: #f7f6f4;
  --color-text: #1a1a1a;
  --color-text-muted: rgba(26, 26, 26, 0.55);
  --color-border: rgba(26, 26, 26, 0.12);
  --color-border-strong: rgba(26, 26, 26, 0.28);
  --color-inverse: #ffffff;
  --color-inverse-bg: #1a1a1a;

  /* Typography */
  --font-serif: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", serif;
  --font-sans: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;

  /* Spacing */
  --section-py: 120px;
  --section-py-sp: 60px;
  --container: 1120px;
  --container-wide: 1280px;
  --gutter: 24px;
  --gutter-lg: 40px;

  /* Misc */
  --radius: 0;
  --transition: 0.3s ease;
  --header-h: 72px;
  --header-h-sp: 60px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.9;
  color: var(--color-text);
  background: var(--color-bg);
  letter-spacing: 0.04em;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

address {
  font-style: normal;
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

.u-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.u-sp-only {
  display: none;
}

.u-pc-only {
  display: block;
}

@media (max-width: 767px) {
  .u-sp-only {
    display: block;
  }

  .u-pc-only {
    display: none;
  }
}

/* Reveal */
.js-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.js-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
