/* ============================================================
   salon-01-minimal  v2 — Editorial Luxury
   白基調ミニマル×誌面の格 / ハイエンド美容室
   参照: Oribe（明朝見出し×モノクロ写真の誌面感）
        Kinfolk（タイポ階層とマージン規律）
        Aesop（余白の静けさ）
   bg #faf9f7 / ink #1c1b19 / accent #8a7a63 / line #e5e1da
   ============================================================ */

:root {
  --bg: #faf9f7;
  --ink: #1c1b19;
  --ink-soft: #55524c;
  --accent: #8a7a63;
  --line: #e5e1da;
  --serif: "Shippori Mincho", serif;
  --en: "Josefin Sans", sans-serif;
  --sans: "Noto Sans JP", sans-serif;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 15px;
  letter-spacing: 0.04em;
}

.inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 32px;
}

::selection { background: var(--accent); color: var(--bg); }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 40px;
  transition: padding .5s ease, background .5s ease, border-color .5s ease;
  border-bottom: 1px solid transparent;
}

body.is-scrolled .site-header {
  padding: 14px 40px;
  background: rgba(250, 249, 247, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: rgba(229, 225, 218, 0.7);
}

.header-logo {
  font-family: var(--en);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 38px;
}

.site-nav a {
  position: relative;
  font-family: var(--en);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  transition: color 0.3s ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 100%; height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .45s cubic-bezier(0.19, 1, 0.22, 1);
}

.site-nav a:hover { color: var(--ink); }
.site-nav a:hover::after { transform: scaleX(1); transform-origin: left; }

.nav-cta a {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--bg);
  background: var(--ink);
  padding: 12px 26px;
  transition: background 0.35s ease;
}

.nav-cta a::after { display: none; }
.nav-cta a:hover { background: var(--accent); color: var(--bg); }

.nav-toggle { display: none; }

/* ---------- Hero v3 — 余白×縦書き×額装写真 ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  padding: 140px 40px 72px;
  display: flex;
  align-items: stretch;
}

.hero-grid {
  flex: 1;
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: stretch;
}

.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 8px 0 4px;
}

.hero-mark {
  font-family: var(--en);
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* 縦書きの和文タグライン — 明朝の格 */
.hero-title {
  writing-mode: vertical-rl;
  text-orientation: upright;
  align-self: center;
  margin: auto 0;
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(34px, 4.6vw, 60px);
  line-height: 1.9;
  letter-spacing: 0.28em;
  max-height: none; /* 折り返し禁止 — タグラインは一筆で立てる */
  white-space: nowrap;
}

.hero-sub {
  font-size: 12px;
  letter-spacing: 0.22em;
  color: var(--ink-soft);
}

/* 額装された縦長写真 — 全面写真もウォッシュも使わない */
.hero-media {
  position: relative;
  overflow: hidden;
  min-height: 62vh;
}

.hero-media img,
.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.25) contrast(1.01);
}

.hero-scroll {
  position: absolute;
  right: 40px;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.hero-scroll span {
  font-family: var(--en);
  font-size: 10px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--ink-soft);
  writing-mode: vertical-rl;
}

.hero-scroll::after {
  content: "";
  width: 1px;
  height: 64px;
  background: linear-gradient(to bottom, var(--ink-soft), transparent);
  animation: scrollline 2.6s ease-in-out infinite;
}

@keyframes scrollline {
  0% { transform: scaleY(0); transform-origin: top; }
  45% { transform: scaleY(1); transform-origin: top; }
  55% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}


/* ---------- News — 罫の間に静かに ---------- */
.news { border-bottom: 1px solid var(--line); }

.news-inner {
  display: flex;
  gap: 56px;
  padding-top: 44px;
  padding-bottom: 44px;
}

.news-label {
  font-family: var(--en);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  padding-top: 2px;
}

.news-list { flex: 1; }

.news-list li {
  display: flex;
  gap: 28px;
  padding: 7px 0;
  font-size: 13px;
}

.news-list time {
  font-family: var(--en);
  font-size: 14px;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
  flex-shrink: 0;
  font-variant-numeric: tabular-nums;
}

/* ---------- Sections（誌面の章扉） ---------- */
.section { padding: clamp(110px, 13vw, 170px) 0 0; }

.section-head {
  display: flex;
  align-items: baseline;
  gap: 22px;
  margin-bottom: clamp(48px, 6vw, 76px);
}

.section-no {
  font-family: var(--en);
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 300;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px var(--accent);
}

.section-en {
  font-family: var(--en);
  font-size: clamp(24px, 2.6vw, 34px);
  font-weight: 500;
  letter-spacing: 0.14em;
}

.section-en::after {
  content: "";
  display: inline-block;
  width: 56px;
  height: 1px;
  background: var(--line);
  vertical-align: middle;
  margin-left: 22px;
}

.section-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(24px, 2.8vw, 34px);
  line-height: 1.9;
  letter-spacing: 0.08em;
  margin-bottom: 30px;
}

/* ---------- Concept — 大きな引用の誌面 ---------- */
.concept-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(48px, 7vw, 96px);
  align-items: center;
}

.concept-para {
  color: var(--ink-soft);
  line-height: 2.3;
  margin-bottom: 1.7em;
  max-width: 36em;
}

.concept-media {
  position: relative;
}

.concept-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: grayscale(0.5) contrast(1.02);
  transition: filter 1s ease;
}

.concept-media:hover img { filter: grayscale(0) contrast(1); }

.concept-media::after {
  content: "";
  position: absolute;
  top: 24px; left: -24px;
  width: 100%; height: 100%;
  border: 1px solid var(--line);
  z-index: -1;
}

/* ---------- Menu — 罫線の献立表 ---------- */
.menu-groups {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 88px;
}

.menu-category {
  font-family: var(--en);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 34px 0 10px;
}

.menu-item {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  transition: padding-left .4s cubic-bezier(0.19, 1, 0.22, 1);
}

.menu-item:hover { padding-left: 8px; }

.menu-item-main {
  display: flex;
  align-items: baseline;
  gap: 14px;
}

.menu-name {
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.06em;
}

.menu-dots {
  flex: 1;
  border-bottom: 1px dotted #cfc9bf;
  transform: translateY(-4px);
}

.menu-price {
  font-family: var(--en);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.04em;
  font-variant-numeric: tabular-nums;
}

.menu-note {
  margin-top: 7px;
  font-size: 12px;
  color: var(--ink-soft);
}

.menu-foot {
  margin-top: 44px;
  font-size: 12px;
  color: var(--ink-soft);
}

/* ---------- Works — 誌面のグラビア ---------- */
.works-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

/* 2枚目と4枚目を下げて誌面のリズムを作る */
.works-item:nth-child(even) { transform: translateY(44px); }

.works-media {
  overflow: hidden;
}

.works-media img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  filter: grayscale(0.45);
  transition: transform 1.3s cubic-bezier(0.19, 1, 0.22, 1), filter .9s ease;
}

.works-item:hover .works-media img {
  transform: scale(1.06);
  filter: grayscale(0);
}

.works-text { padding-top: 16px; }

.works-tag {
  font-family: var(--en);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
}

.works-title {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 500;
  margin-top: 7px;
  letter-spacing: 0.06em;
}

.works-desc {
  font-size: 12px;
  color: var(--ink-soft);
  margin-top: 5px;
}

/* ---------- Staff — 人物のポートレート頁 ---------- */
.staff-list {
  display: grid;
  gap: clamp(80px, 9vw, 120px);
}

.staff-item {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: clamp(48px, 6vw, 80px);
  align-items: center;
}

.staff-item:nth-child(even) { grid-template-columns: 1fr 380px; }
.staff-item:nth-child(even) .staff-media { order: 2; }

.staff-media {
  position: relative;
}

.staff-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: grayscale(0.55) contrast(1.03);
  transition: filter 1s ease;
}

.staff-item:hover .staff-media img { filter: grayscale(0) contrast(1); }

.staff-role {
  font-family: var(--en);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
}

.staff-name {
  font-family: var(--serif);
  font-size: clamp(26px, 2.6vw, 34px);
  font-weight: 600;
  letter-spacing: 0.14em;
  margin: 12px 0 24px;
}

.staff-bio {
  color: var(--ink-soft);
  line-height: 2.2;
  max-width: 33em;
}

/* ---------- Voices — 大きな引用 ---------- */
.voices-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.voices-item {
  padding: 52px 36px;
  border-left: 1px solid var(--line);
}

.voices-item:first-child { border-left: none; }

.voices-item::before {
  content: "\201C";
  display: block;
  font-family: var(--en);
  font-size: 64px;
  font-weight: 400;
  line-height: 0.6;
  color: var(--accent);
  margin-bottom: 26px;
}

.voices-text {
  font-family: var(--serif);
  font-size: 14px;
  line-height: 2.3;
  color: var(--ink-soft);
}

.voices-author {
  margin-top: 22px;
  font-family: var(--en);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
}

/* ---------- Flow — 番号の行進 ---------- */
.flow-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
}

.flow-step {
  font-family: var(--en);
  font-size: 34px;
  font-weight: 400;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px var(--accent);
}

.flow-step::after {
  content: "";
  display: block;
  width: 36px;
  height: 1px;
  background: var(--line);
  margin: 18px 0 20px;
}

.flow-title {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-bottom: 13px;
}

.flow-desc {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 2.1;
}

/* ---------- FAQ ---------- */
.faq-list { max-width: 800px; }

.faq-item {
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
}

.faq-q {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.05em;
  display: flex;
  gap: 20px;
}

.faq-q::before {
  content: "Q";
  font-family: var(--en);
  font-size: 19px;
  color: var(--accent);
  flex-shrink: 0;
}

.faq-a {
  margin-top: 14px;
  font-size: 13px;
  line-height: 2.1;
  color: var(--ink-soft);
  display: flex;
  gap: 20px;
}

.faq-a::before {
  content: "A";
  font-family: var(--en);
  font-size: 19px;
  color: #c5bcae;
  flex-shrink: 0;
}

/* ---------- Access ---------- */
.access-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(48px, 6vw, 80px);
}

.access-info div {
  display: grid;
  grid-template-columns: 104px 1fr;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}

.access-info dt {
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 0.14em;
}

.access-info dd a {
  border-bottom: 1px solid var(--line);
  transition: border-color .3s ease;
}

.access-info dd a:hover { border-color: var(--accent); }

.access-map iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
  filter: grayscale(1) contrast(0.92);
}

/* ---------- CTA — 章の結び ---------- */
.cta {
  margin-top: clamp(120px, 14vw, 180px);
  border-top: 1px solid var(--line);
  background: #f3f0ea;
}

.cta-inner {
  padding-top: clamp(90px, 10vw, 130px);
  padding-bottom: clamp(90px, 10vw, 130px);
  text-align: center;
}

.cta-en {
  font-family: var(--en);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--accent);
}

.cta-title {
  font-family: var(--serif);
  font-size: clamp(26px, 3.2vw, 38px);
  font-weight: 600;
  letter-spacing: 0.16em;
  margin: 20px 0 16px;
}

.cta-text {
  font-size: 13px;
  color: var(--ink-soft);
  margin-bottom: 48px;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
}

.btn {
  position: relative;
  display: inline-block;
  min-width: 256px;
  padding: 19px 34px;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-align: center;
  overflow: hidden;
  transition: color 0.4s ease, border-color 0.4s ease;
}

.btn-primary {
  background: var(--ink);
  color: var(--bg);
}

.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .5s cubic-bezier(0.19, 1, 0.22, 1);
  z-index: -1;
}

.btn-primary { z-index: 1; }
.btn-primary:hover::before { transform: scaleX(1); transform-origin: left; }

.btn-ghost {
  border: 1px solid var(--ink);
  font-family: var(--en);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.22em;
}

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.cta-sns {
  margin-top: 44px;
  display: flex;
  justify-content: center;
  gap: 36px;
}

.cta-sns a {
  font-family: var(--en);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line);
  padding-bottom: 4px;
  transition: color 0.3s ease, border-color .3s ease;
}

.cta-sns a:hover { color: var(--accent); border-color: var(--accent); }

/* ---------- Footer ---------- */
.site-footer {
  padding: 56px 24px 46px;
  text-align: center;
}

.footer-logo {
  font-family: var(--en);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.22em;
}

.footer-copy {
  margin-top: 16px;
  font-family: var(--en);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--ink-soft);
}

/* ---------- Skin（店舗別差別化 / TEMPLATE_SPEC §9） ---------- */
.u-alt-font .hero-title,
.u-alt-font .section-title,
.u-alt-font .works-title,
.u-alt-font .staff-name,
.u-alt-font .flow-title,
.u-alt-font .faq-q,
.u-alt-font .voices-text,
.u-alt-font .cta-title {
  font-family: "Zen Old Mincho", serif;
}

body.u-btn-square .btn, body.u-btn-square .nav-cta a { border-radius: 0; }
body.u-btn-round .btn, body.u-btn-round .nav-cta a { border-radius: 8px; }
body.u-btn-pill .btn, body.u-btn-pill .nav-cta a { border-radius: 999px; }

/* ---------- Mobile ---------- */
@media (max-width: 900px) {
  .menu-groups { grid-template-columns: 1fr; gap: 0; }
  .works-grid { grid-template-columns: repeat(2, 1fr); }
  .works-item:nth-child(even) { transform: translateY(28px); }
  .flow-list { grid-template-columns: repeat(2, 1fr); }
  .voices-list { grid-template-columns: 1fr; border: none; }
  .voices-item { border-left: none; border-bottom: 1px solid var(--line); padding: 40px 8px; }
  .access-grid { grid-template-columns: 1fr; gap: 44px; }

  .staff-item,
  .staff-item:nth-child(even) { grid-template-columns: 1fr; gap: 28px; }
  .staff-item:nth-child(even) .staff-media { order: 0; }
  .staff-media img { aspect-ratio: 16 / 10; }
}

@media (max-width: 720px) {
  .site-header, body.is-scrolled .site-header { padding: 16px 20px; }
  .site-header {
    background: rgba(250, 249, 247, 0.88);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom-color: rgba(229, 225, 218, 0.6);
  }

  .site-nav {
    position: fixed;
    inset: 0;
    background: rgba(250, 249, 247, 0.98);
    display: grid;
    place-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
  }

  body.nav-open .site-nav {
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav ul {
    flex-direction: column;
    gap: 34px;
    text-align: center;
  }

  .site-nav a { font-size: 20px; }

  .nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
    width: 40px;
    height: 40px;
    position: relative;
    z-index: 110;
  }

  .nav-toggle span {
    display: block;
    width: 26px;
    height: 1px;
    background: var(--ink);
    margin: 0 auto;
    transition: transform 0.35s ease;
  }

  body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(4px) rotate(20deg); }
  body.nav-open .nav-toggle span:nth-child(2) { transform: translateY(-4px) rotate(-20deg); }

  .hero { padding: 108px 20px 56px; }
  .hero-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero-text { flex-direction: row; align-items: flex-end; justify-content: space-between; order: 2; }
  .hero-title { font-size: clamp(22px, 6.4vw, 32px); max-height: none; margin: 0; }
  .hero-media { min-height: 46vh; order: 1; }
  .hero-scroll { display: none; }

  .inner { padding: 0 20px; }
  .section { padding-top: 88px; }
  .section-head { margin-bottom: 40px; }

  .concept-grid { grid-template-columns: 1fr; gap: 44px; }
  .concept-media::after { display: none; }

  .news-inner { flex-direction: column; gap: 14px; }
  .news-list li { flex-direction: column; gap: 2px; padding: 12px 0; border-bottom: 1px solid var(--line); }

  .works-grid { gap: 24px 14px; }
  .works-item:nth-child(even) { transform: translateY(20px); }
  .flow-list { grid-template-columns: 1fr; gap: 32px; }

  .btn { min-width: 100%; }
  .cta-actions { flex-direction: column; align-items: stretch; }
}
