/* ========================================
   LITHE KOBE — メインスタイルシート
   ======================================== */

/* --- Fonts（自前ホスト） --- */
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../assets/fonts/noto-sans-jp-400.woff2") format("woff2");
}

@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../assets/fonts/noto-sans-jp-500.woff2") format("woff2");
}

@font-face {
  font-family: "Shippori Mincho";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../assets/fonts/shippori-mincho-400.woff2") format("woff2");
}

/* --- CSS Variables --- */
:root {
  --color-black: #0a0a0a;
  --color-dark: #141414;
  --color-gray-900: #1a1a1a;
  --color-gray-800: #2a2a2a;
  --color-gray-700: #3a3a3a;
  --color-gray-600: #555;
  --color-gray-500: #777;
  --color-gray-400: #999;
  --color-gray-300: #bbb;
  --color-gray-200: #ddd;
  --color-gray-100: #f0f0f0;
  --color-white: #fafafa;
  --color-accent: #c8b8a8;

  --font-sans: "Noto Sans JP", "Hiragino Sans", "Yu Gothic UI", sans-serif;
  --font-serif: "Shippori Mincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
  --font-en: "Noto Sans JP", -apple-system, BlinkMacSystemFont, sans-serif;

  --header-height: 64px;
  --header-height-mobile: 56px;
  --mobile-cta-height: 56px;
  --radius-sm: 2px;
  --radius-md: 4px;
  --transition: 0.25s ease;
  --container-max: 1200px;
  --container-narrow: 960px;

  /* ページ写真背景の白オーバーレイ（上に重ねるグラデーション） */
  --page-bg-overlay: linear-gradient(
    180deg,
    rgba(250, 250, 250, 0.38) 0%,
    rgba(248, 248, 248, 0.45) 50%,
    rgba(245, 245, 245, 0.5) 100%
  );
}

/* --- Reset & Base --- */
*,
*::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-size: 15px;
  font-weight: 400;
  line-height: 1.8;
  color: var(--color-gray-800);
  background: var(--color-white);
  overflow-x: hidden;
  font-feature-settings: "palt" 1;
  -webkit-font-smoothing: antialiased;
  line-break: strict;
  word-break: normal;
}

@media (max-width: 1023px) {
  body {
    padding-bottom: var(--mobile-cta-height);
  }
}

body.is-menu-open {
  overflow: hidden;
}

body.is-modal-open {
  overflow: hidden;
}

/* --- ページ全体の写真背景（B案） --- */
.page-bg {
  background-color: var(--color-gray-100);
  background-image: var(--page-bg-overlay), var(--page-bg);
  background-size: cover, cover;
  background-position: center, center;
  background-attachment: fixed, fixed;
  background-repeat: no-repeat, no-repeat;
}

.page-bg .section--light {
  background: rgba(250, 250, 250, 0.62);
}

.page-bg .section--gray {
  background: rgba(240, 240, 240, 0.68);
}

.page-bg .section--dark {
  background: rgba(10, 10, 10, 0.93);
}

.page-bg .footer {
  background: rgba(10, 10, 10, 0.96);
}

@media (max-width: 1023px) {
  .page-bg {
    background-attachment: scroll, scroll;
  }
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: opacity var(--transition);
}

a:hover {
  opacity: 0.7;
}

ul, ol {
  list-style: none;
}

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

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* --- Typography --- */
.heading-en {
  font-family: var(--font-en);
  font-weight: 400;
  letter-spacing: 0.04em;
}

.heading-ja {
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: 0.02em;
}

.section-label {
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--color-gray-500);
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(22px, 4.5vw, 32px);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.55;
  margin-top: 10px;
  text-wrap: pretty;
}

.section-lead {
  font-size: 14px;
  color: var(--color-gray-600);
  margin-top: 14px;
  max-width: 42em;
  line-height: 1.85;
  text-wrap: pretty;
}

/* --- Layout --- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
}

.container--narrow {
  max-width: var(--container-narrow);
}

.section {
  padding: 80px 0;
}

.section--dark {
  background: var(--color-black);
  color: var(--color-gray-200);
}

.section--dark .section-label {
  color: var(--color-gray-500);
}

.section--dark .section-lead {
  color: var(--color-gray-400);
}

.section--light {
  background: var(--color-white);
}

.section--gray {
  background: var(--color-gray-100);
}

/* --- Loading Screen --- */
.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-black);
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader.is-hidden,
html.loader-skip .loader {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader__logo {
  font-family: var(--font-en);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--color-white);
}

/* --- Header --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height-mobile);
  transition: background var(--transition), box-shadow var(--transition);
}

.header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.42) 0%, rgba(0, 0, 0, 0.12) 65%, transparent 100%);
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}

.page-home .header:not(.is-scrolled)::before,
.header:not(.is-scrolled):not(.header--subpage)::before {
  opacity: 1;
}

.page-home .header:not(.is-scrolled),
.header:not(.is-scrolled):not(.header--subpage) {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.page-home .header:not(.is-scrolled) .header__logo,
.page-home .header:not(.is-scrolled) .header__nav-link {
  color: var(--color-white);
}

@media (min-width: 1024px) {
  .page-home .header:not(.is-scrolled),
  .header:not(.is-scrolled):not(.header--subpage) {
    background: rgba(10, 10, 10, 0.38);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }

  .page-home .header:not(.is-scrolled)::before,
  .header:not(.is-scrolled):not(.header--subpage)::before {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0.28) 100%);
  }

  .page-home .header:not(.is-scrolled) .header__logo,
  .page-home .header:not(.is-scrolled) .header__nav-link {
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.45);
  }
}

.header.is-scrolled,
.header--subpage {
  background: rgba(10, 10, 10, 0.95);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
}

.page-home .header.is-scrolled .header__logo,
.page-home .header.is-scrolled .header__nav-link {
  text-shadow: none;
}

.header.is-scrolled::before,
.header--subpage::before {
  opacity: 0;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
}

.header__logo {
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--color-white);
  z-index: 1001;
}

.header__nav {
  display: none;
}

.header__nav-list {
  display: flex;
  gap: 28px;
}

.header__nav-link {
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: var(--color-gray-300);
  transition: color var(--transition);
}

.header__nav-link:hover,
.header__nav-link.is-active {
  opacity: 1;
  color: var(--color-white);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 1001;
}

.header__actions .header__reserve.btn--reserve {
  display: none;
}

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 32px;
  height: 32px;
  padding: 4px;
}

.hamburger__line {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--color-white);
  transition: transform var(--transition), opacity var(--transition);
}

.hamburger.is-active .hamburger__line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.is-active .hamburger__line:nth-child(2) {
  opacity: 0;
}

.hamburger.is-active .hamburger__line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(10, 10, 10, 0.98);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
}

.mobile-nav.is-open {
  opacity: 1;
  visibility: visible;
}

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

.mobile-nav__item {
  margin: 16px 0;
}

.mobile-nav__link {
  font-family: var(--font-en);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--color-gray-300);
}

.mobile-nav__link.is-active {
  color: var(--color-white);
}

.mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  height: var(--mobile-cta-height);
  display: flex;
  align-items: stretch;
  background: var(--color-black);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-cta .btn--reserve {
  flex: 1;
  border: none;
  border-radius: 0;
  font-size: 11px;
  letter-spacing: 0.2em;
  font-weight: 400;
  padding: 0;
}

.mobile-cta .btn--reserve::after {
  display: none;
}

.mobile-cta .btn--reserve:hover {
  opacity: 1;
  color: rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.04);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 36px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.12em;
  border-radius: 0;
  transition: color 0.35s ease, border-color 0.35s ease, background 0.35s ease;
  white-space: nowrap;
  position: relative;
  isolation: isolate;
}

a.btn:hover {
  opacity: 1;
}

.btn--reserve {
  background: transparent;
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.45);
}

.btn--reserve::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--color-white);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}

.btn--reserve:hover {
  opacity: 1;
  color: var(--color-black);
  border-color: var(--color-white);
}

.btn--reserve:hover::after {
  transform: scaleX(1);
}

.header__reserve.btn--reserve {
  padding: 10px 24px;
  font-size: 11px;
  letter-spacing: 0.1em;
}

.btn--outline {
  background: transparent;
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.btn--outline:hover {
  opacity: 1;
  border-color: var(--color-white);
}

.btn--dark {
  background: transparent;
  color: var(--color-black);
  border: 1px solid var(--color-black);
}

.btn--dark::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--color-black);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}

.btn--dark:hover {
  opacity: 1;
  color: var(--color-white);
  border-color: var(--color-black);
}

.btn--dark:hover::after {
  transform: scaleX(1);
}

.btn--ghost {
  background: transparent;
  color: var(--color-gray-800);
  border: 1px solid var(--color-gray-800);
}

.btn--ghost:hover {
  opacity: 1;
  background: var(--color-black);
  color: var(--color-white);
}

.btn--link {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--color-gray-600);
  padding: 0;
  border-bottom: 1px solid currentColor;
  border-radius: 0;
}

.btn--link:hover {
  opacity: 1;
  color: var(--color-black);
}

/* --- Page Hero (Subpages) --- */
.page-hero {
  position: relative;
  padding: calc(var(--header-height-mobile) + 60px) 0 60px;
  background: var(--color-black);
  color: var(--color-white);
  text-align: center;
}

.page-hero__label {
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--color-gray-500);
}

.page-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(26px, 5vw, 38px);
  font-weight: 400;
  letter-spacing: 0.02em;
  margin-top: 14px;
  line-height: 1.5;
  max-width: 16em;
  margin-left: auto;
  margin-right: auto;
  text-wrap: pretty;
}

.page-hero__sub {
  font-size: 14px;
  color: var(--color-gray-400);
  margin-top: 12px;
  line-height: 1.75;
  max-width: 36em;
  margin-left: auto;
  margin-right: auto;
  text-wrap: pretty;
}

/* 下層ページ Hero — 写真背景 */
.page-hero--photo {
  overflow: hidden;
  isolation: isolate;
}

.page-hero--photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--hero-bg) center / cover no-repeat;
  z-index: 0;
}

.page-hero--photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.35) 0%,
    rgba(0, 0, 0, 0.62) 100%
  );
  z-index: 1;
}

.page-hero--photo > * {
  position: relative;
  z-index: 2;
}

.page-hero--photo .page-hero__label {
  color: rgba(255, 255, 255, 0.65);
}

.page-hero--photo .page-hero__sub {
  color: rgba(255, 255, 255, 0.82);
}

@media (min-width: 1024px) {
  .page-hero--photo {
    padding: calc(var(--header-height) + 80px) 0 88px;
  }
}

/* --- Hero (Top) --- */
.hero {
  position: relative;
  height: 100vh;
  height: 100svh; /* モバイルのアドレスバーを除いた高さに収める */
  max-height: 100dvh;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: var(--color-gray-200);
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.15) 45%,
    rgba(0, 0, 0, 0.1) 100%
  );
}

.hero__content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: calc(var(--header-height-mobile) + 24px) 24px 96px;
  color: var(--color-white);
  text-align: left;
}

.hero__logo {
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.12em;
  margin-bottom: 18px;
}

.hero__copy {
  font-family: var(--font-serif);
  font-size: clamp(24px, 5.5vw, 36px);
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 1.55;
  margin-bottom: 14px;
}

.hero__sub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.85;
  margin-bottom: 24px;
  max-width: 400px;
}

.hero__content .btn--reserve {
  align-self: flex-start;
}

.hero__scroll {
  display: none;
}

.hero__scroll-line {
  display: none;
}

/* --- Image Placeholder --- */
.img-placeholder {
  position: relative;
  background: var(--color-gray-200);
  overflow: hidden;
}

.img-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-placeholder img[src=""],
.img-placeholder img:not([src]) {
  opacity: 0;
}

/* Aspect ratios */
.aspect-hero { aspect-ratio: 16 / 9; }
.aspect-square { aspect-ratio: 1 / 1; }
.aspect-portrait { aspect-ratio: 3 / 4; }
.aspect-wide { aspect-ratio: 4 / 3; }
.aspect-menu { aspect-ratio: 5 / 3; }

/* --- Scroll Animation --- */
.fade-in {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-img {
  opacity: 0;
  transition: opacity 0.6s ease;
}

.fade-in-img.is-visible {
  opacity: 1;
}

.fade-in-text {
  opacity: 0;
  transition: opacity 0.6s ease;
}

.fade-in-text.is-visible {
  opacity: 1;
}

/* --- Concept Block --- */
.concept-block {
  display: grid;
  gap: 40px;
  align-items: center;
}

.concept-block__text p {
  margin-bottom: 1em;
  color: var(--color-gray-600);
}

.concept-block__text p:last-child {
  margin-bottom: 0;
}

/* --- Salon Space Grid --- */
.salon-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.salon-grid__item {
  position: relative;
  overflow: hidden;
}

.salon-grid__item--large {
  grid-column: 1;
}

.salon-grid__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 14px 16px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.55));
  color: var(--color-white);
  font-size: 12px;
}

/* --- Feature Cards --- */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.feature-card {
  padding: 28px 24px;
  background: var(--color-gray-900);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0;
}

.feature-card:hover {
  border-top-color: rgba(255, 255, 255, 0.16);
}

.feature-card__num {
  display: none;
}

.feature-card__title {
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.02em;
  margin-bottom: 10px;
  color: var(--color-white);
}

.feature-card__text {
  font-size: 13px;
  color: var(--color-gray-400);
  line-height: 1.8;
}

/* --- Menu Cards --- */
.menu-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.menu-card {
  display: flex;
  flex-direction: column;
  background: var(--color-white);
  border: 1px solid var(--color-gray-400);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: box-shadow var(--transition);
}

.menu-card:hover {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.menu-card__img {
  aspect-ratio: 5 / 3;
  background: linear-gradient(135deg, #e8e8e8, #d0d0d0);
}

.menu-card__body {
  padding: 24px;
}

.menu-card__name {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}

.menu-card__price {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.menu-card__time {
  font-size: 12px;
  color: var(--color-gray-500);
  margin-top: 4px;
}

/* --- Menu Table --- */
.menu-section {
  margin-bottom: 56px;
}

.menu-section:last-child {
  margin-bottom: 0;
}

.menu-section__title {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.02em;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--color-gray-400);
  margin-bottom: 0;
}

.menu-table {
  width: 100%;
}

.menu-table tr {
  border-bottom: 1px solid var(--color-gray-400);
}

.menu-table td {
  padding: 18px 0;
  vertical-align: middle;
}

.menu-table__name {
  font-size: 15px;
  line-height: 1.65;
  letter-spacing: 0.02em;
  padding-right: 20px;
  width: 100%;
  text-wrap: pretty;
}

.menu-table__price {
  font-family: var(--font-en);
  font-size: 15px;
  text-align: right;
  white-space: nowrap;
  padding-left: 16px;
  width: 1%;
  flex-shrink: 0;
}

.menu-table__time {
  font-size: 12px;
  color: var(--color-gray-500);
  text-align: right;
  white-space: nowrap;
  padding-left: 12px;
  width: 1%;
  min-width: 3.5em;
  flex-shrink: 0;
}

.menu-note {
  font-size: 12px;
  color: var(--color-gray-500);
  margin-top: 24px;
}

/* --- Menu Detail --- */
.menu-section--detail {
  margin-top: 64px;
  padding-top: 56px;
  border-top: 1px solid var(--color-gray-400);
}

.menu-detail-grid {
  display: grid;
  gap: 24px;
}

.menu-detail {
  padding: 28px 24px;
  border: 1px solid var(--color-gray-400);
}

.menu-detail__title {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.55;
  margin-bottom: 8px;
  text-wrap: pretty;
}

.menu-detail__price {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 16px;
}

.menu-detail__prices {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--color-gray-400);
}

.menu-detail__price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  font-size: 13px;
  line-height: 1.6;
}

.menu-detail__price-row dt {
  flex: 1;
  min-width: 0;
  color: var(--color-gray-600);
  text-wrap: pretty;
  padding-right: 12px;
}

.menu-detail__price-row dd {
  font-weight: 500;
  white-space: nowrap;
}

.menu-detail__price-row--main dt,
.menu-detail__price-row--main dd {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-black);
}

.menu-detail__lead {
  font-size: 14px;
  line-height: 1.85;
  color: var(--color-gray-600);
  margin-bottom: 16px;
  text-wrap: pretty;
}

.menu-detail__list {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.menu-detail__list li {
  position: relative;
  padding-left: 14px;
  font-size: 13px;
  line-height: 1.75;
  color: var(--color-gray-600);
  text-wrap: pretty;
}

.menu-detail__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--color-gray-400);
}

.menu-detail__staff {
  font-size: 12px;
  line-height: 1.75;
  color: var(--color-gray-500);
  text-wrap: pretty;
}

.menu-detail__staff a {
  color: var(--color-gray-800);
  border-bottom: 1px solid var(--color-gray-400);
}

.menu-detail__staff a:hover {
  opacity: 1;
  color: var(--color-black);
}

/* --- Style Grid --- */
.style-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}

.style-filter__btn {
  padding: 7px 14px;
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.02em;
  color: var(--color-gray-600);
  border: 1px solid var(--color-gray-400);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.style-filter__btn:hover,
.style-filter__btn.is-active {
  background: var(--color-black);
  color: var(--color-white);
  border-color: var(--color-black);
}

.style-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 12px;
}

.style-card {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  overflow: visible;
  border-radius: 0;
  background: transparent;
  outline: none;
}

.style-card:focus-visible {
  box-shadow: 0 0 0 2px var(--color-black);
}

.style-card.is-hidden {
  display: none;
}

.style-card__img {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: var(--radius-sm);
  transition: transform 0.5s ease;
}

.style-card:hover .style-card__img {
  transform: scale(1.02);
}

.style-card__overlay {
  position: static;
  background: none;
  display: block;
  padding: 10px 0 0;
  opacity: 1;
}

.style-card:hover .style-card__overlay {
  opacity: 1;
}

.style-card__name {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-black);
  letter-spacing: 0.02em;
  line-height: 1.55;
  text-wrap: pretty;
}

/* --- Staff Cards --- */
.staff-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.staff-card {
  cursor: pointer;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--color-gray-900);
  transition: transform var(--transition);
}

.staff-card:hover {
  transform: translateY(-2px);
}

.staff-card__img {
  aspect-ratio: 3 / 4;
  background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
}

.staff-card__body {
  padding: 16px;
}

.staff-card__role {
  font-size: 11px;
  letter-spacing: 0.02em;
  color: var(--color-gray-400);
}

.staff-card__name {
  font-family: var(--font-serif);
  font-size: 15px;
  margin-top: 4px;
  color: var(--color-white);
  letter-spacing: 0.02em;
  line-height: 1.55;
  text-wrap: pretty;
}

/* --- Steps / Flow --- */
.steps {
  display: grid;
  gap: 24px;
}

.step-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  align-items: start;
}

.step-item__num {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-gray-400);
  line-height: 1;
  padding-top: 2px;
}

.section--dark .step-item__num {
  color: var(--color-gray-600);
}

.step-item__title {
  font-family: var(--font-serif);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.02em;
  margin-bottom: 6px;
  line-height: 1.55;
  text-wrap: pretty;
}

.step-item__text {
  font-size: 13px;
  color: var(--color-gray-600);
  line-height: 1.75;
  text-wrap: pretty;
}

.section--dark .step-item__text {
  color: var(--color-gray-400);
}

/* --- Access --- */
.access-info {
  display: grid;
  gap: 32px;
}

.access-info__item h3 {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.access-info__item p {
  font-size: 14px;
  color: var(--color-gray-600);
  line-height: 1.8;
}

.access-map {
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--color-gray-200);
}

/* --- FAQ Accordion --- */
.faq-list {
  max-width: var(--container-narrow);
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--color-gray-400);
}

.section--dark .faq-item {
  border-bottom-color: rgba(255, 255, 255, 0.2);
}

.faq-item__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0;
  text-align: left;
  font-size: 15px;
  line-height: 1.65;
  letter-spacing: 0.02em;
  color: inherit;
  transition: color var(--transition);
}

.faq-item__question > span:first-child {
  flex: 1;
  min-width: 0;
  text-wrap: pretty;
}

.faq-item__question:hover {
  color: var(--color-gray-600);
}

.faq-item__icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  position: relative;
}

.faq-item__icon::before,
.faq-item__icon::after {
  content: "";
  position: absolute;
  background: currentColor;
  transition: transform 0.35s ease;
}

.faq-item__icon::before {
  top: 50%;
  left: 2px;
  right: 2px;
  height: 1px;
  transform: translateY(-50%);
}

.faq-item__icon::after {
  left: 50%;
  top: 2px;
  bottom: 2px;
  width: 1px;
  transform: translateX(-50%);
  transform-origin: center center;
}

.faq-item.is-open .faq-item__icon::after {
  transform: translateX(-50%) rotate(90deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.3s ease;
}

.faq-item.is-open .faq-item__answer {
  opacity: 1;
  transition:
    max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.35s ease 0.05s;
}

.faq-item__answer p {
  font-size: 14px;
  color: var(--color-gray-600);
  line-height: 1.9;
  text-wrap: pretty;
  padding-bottom: 20px;
}

.section--dark .faq-item__answer p {
  color: var(--color-gray-400);
}

/* --- News Cards --- */
.news-list {
  display: grid;
  gap: 16px;
}

.news-card {
  display: block;
  padding: 24px;
  border: 1px solid var(--color-gray-400);
  border-radius: var(--radius-sm);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.news-card:hover {
  opacity: 1;
  border-color: var(--color-gray-500);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.news-card__date {
  font-family: var(--font-en);
  font-size: 12px;
  color: var(--color-gray-500);
  letter-spacing: 0.05em;
}

.news-card__title {
  font-size: 14px;
  margin-top: 8px;
  letter-spacing: 0.03em;
  line-height: 1.65;
  text-wrap: pretty;
}

/* --- CTA Section --- */
.cta-section {
  text-align: center;
  padding: 80px 20px;
  background: var(--color-black);
  color: var(--color-white);
}

.cta-section__title {
  font-family: var(--font-serif);
  font-size: clamp(20px, 4vw, 28px);
  font-weight: 400;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
  line-height: 1.55;
  text-wrap: pretty;
}

.cta-section__text {
  font-size: 13px;
  color: var(--color-gray-400);
  margin-bottom: 32px;
  line-height: 1.85;
  max-width: 36em;
  margin-left: auto;
  margin-right: auto;
  text-wrap: pretty;
}

/* --- Modal --- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
}

.modal.is-open {
  opacity: 1;
  visibility: visible;
}

.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
}

.modal__content {
  position: relative;
  width: 100%;
  max-width: 680px;
  max-height: 90vh;
  overflow-y: auto;
  background: var(--color-white);
  border-radius: var(--radius-md);
  transform: translateY(20px);
  transition: transform var(--transition);
}

.modal.is-open .modal__content {
  transform: translateY(0);
}

.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 10;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  color: var(--color-white);
  font-size: 20px;
  line-height: 1;
  transition: background var(--transition);
}

.modal__close:hover {
  opacity: 1;
  background: rgba(0, 0, 0, 0.8);
}

.modal__img {
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, #e0e0e0, #c8c8c8);
}

.modal__body {
  padding: 28px;
}

.modal__title {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}

.modal__meta {
  display: grid;
  gap: 8px;
  margin-bottom: 24px;
}

.modal__meta-item {
  display: flex;
  gap: 12px;
  font-size: 13px;
}

.modal__meta-label {
  color: var(--color-gray-500);
  min-width: 80px;
}

.modal__text {
  font-size: 13px;
  color: var(--color-gray-600);
  line-height: 1.9;
  margin-bottom: 20px;
  text-wrap: pretty;
}

.modal__instagram {
  font-family: var(--font-en);
  font-size: 12px;
  color: var(--color-gray-500);
  margin-bottom: 20px;
}

.modal__styles {
  margin-bottom: 24px;
}

.modal__styles-title {
  font-size: 12px;
  color: var(--color-gray-500);
  margin-bottom: 8px;
}

.modal__styles-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.modal__styles-tag {
  font-size: 11px;
  padding: 4px 10px;
  background: var(--color-gray-100);
  border-radius: var(--radius-sm);
  color: var(--color-gray-600);
}

/* Style / Staff モーダル共通（スマホ・写真は切り取らない） */
.modal--staff .modal__content,
.modal--style .modal__content {
  max-width: 780px;
}

.modal--staff .modal__staff-visual {
  background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
}

.modal--style .modal__style-visual {
  background: var(--color-gray-100);
}

.modal--staff .modal__img,
.modal--style .modal__img {
  aspect-ratio: auto;
  background: transparent;
  line-height: 0;
}

.modal--staff .modal__img img,
.modal--style .modal__img img {
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  object-position: center top;
}

.modal--staff .modal__body--staff,
.modal--style .modal__body--style {
  padding: 28px;
}

.modal__style-name {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.4;
  margin-bottom: 16px;
}

.modal--style .modal__meta {
  margin-bottom: 24px;
}

.modal__style-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  line-height: 1;
  letter-spacing: 0.08em;
}

.modal__staff-role {
  font-size: 12px;
  color: var(--color-gray-500);
  letter-spacing: 0.06em;
}

.modal__staff-name {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: 16px;
}

.modal__staff-insta {
  font-size: 12px;
  color: var(--color-gray-500);
  margin-bottom: 20px;
}

.modal__staff-block {
  margin-bottom: 24px;
}

.modal__staff-label {
  font-size: 12px;
  color: var(--color-gray-500);
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}

.modal__staff-bio {
  font-size: 13px;
  line-height: 1.9;
  color: var(--color-gray-600);
  margin-bottom: 24px;
  text-wrap: pretty;
}

.modal__staff-schedule {
  font-size: 15px;
  letter-spacing: 0.04em;
  line-height: 1.6;
}

.modal__staff-schedule-note {
  margin-top: 6px;
  font-size: 11px;
  color: var(--color-gray-500);
  line-height: 1.6;
}

.modal__staff-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 36px;
  line-height: 1;
  letter-spacing: 0.08em;
}

.modal--staff .modal__skills-list,
.modal--staff .modal__styles-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.modal__tag {
  font-size: 11px;
  padding: 4px 10px;
  background: var(--color-gray-100);
  color: var(--color-gray-600);
  border-radius: var(--radius-sm);
  line-height: 1.5;
}

@media (min-width: 1024px) {
  .modal--staff .modal__content,
  .modal--style .modal__content {
    max-width: 800px;
    max-height: min(90vh, 600px);
    overflow: hidden;
    border-radius: var(--radius-sm);
    padding: 0;
  }

  .modal--staff .modal__staff-layout,
  .modal--style .modal__style-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    min-height: 520px;
  }

  .modal--staff .modal__staff-visual {
    background: var(--color-gray-900);
    min-height: 100%;
  }

  .modal--style .modal__style-visual {
    background: var(--color-gray-100);
    min-height: 100%;
  }

  .modal--staff .modal__img,
  .modal--style .modal__img {
    aspect-ratio: auto;
    height: 100%;
    min-height: 100%;
    line-height: normal;
  }

  .modal--staff .modal__img img,
  .modal--style .modal__img img {
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: cover;
    object-position: center top;
  }

  .modal--staff .modal__body--staff,
  .modal--style .modal__body--style {
    padding: 40px 40px 36px;
    overflow-y: auto;
    max-height: none;
    display: flex;
    flex-direction: column;
  }

  .modal--staff .modal__close,
  .modal--style .modal__close {
    top: 12px;
    right: 12px;
    background: rgba(10, 10, 10, 0.72);
  }

  .modal__style-name {
    font-size: 24px;
    margin-bottom: 24px;
  }

  .modal--style .modal__meta {
    margin-bottom: 0;
  }

  .modal__style-cta {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    line-height: 1;
    letter-spacing: 0.08em;
  }

  .modal__staff-cta {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    line-height: 1;
    letter-spacing: 0.08em;
    transform: translateY(10px);
  }

  .modal__staff-role {
    font-size: 11px;
  }

  .modal__staff-name {
    font-size: 24px;
    margin-top: 6px;
    margin-bottom: 0;
  }

  .modal__staff-insta {
    margin-top: 8px;
    margin-bottom: 0;
  }

  .modal__staff-block {
    margin-top: 20px;
    margin-bottom: 0;
  }

  .modal__staff-label {
    font-size: 11px;
    margin-bottom: 10px;
  }

  .modal__staff-bio {
    margin-top: 20px;
    margin-bottom: 0;
    font-size: 14px;
    line-height: 1.85;
  }

  .modal__tag {
    padding: 5px 12px;
    color: var(--color-gray-700);
  }
}

/* --- Form --- */
.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-size: 13px;
  letter-spacing: 0.03em;
  margin-bottom: 8px;
}

.form-label .required {
  color: #c44;
  font-size: 11px;
  margin-left: 4px;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-sm);
  background: var(--color-white);
  transition: border-color var(--transition);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--color-gray-600);
}

.form-textarea {
  min-height: 140px;
  resize: vertical;
}

.form-note {
  font-size: 12px;
  color: var(--color-gray-500);
  margin-top: 16px;
}

/* --- Recruit --- */
.recruit-grid {
  display: grid;
  gap: 40px;
}

.recruit-positions {
  display: grid;
  gap: 16px;
}

.recruit-position {
  padding: 24px;
  border: 1px solid var(--color-gray-400);
  border-radius: var(--radius-sm);
}

.recruit-position__title {
  font-size: 15px;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.recruit-position__desc {
  font-size: 13px;
  color: var(--color-gray-600);
}

.recruit-benefits {
  display: grid;
  gap: 12px;
}

.recruit-benefit {
  display: flex;
  gap: 12px;
  align-items: baseline;
  font-size: 14px;
}

.recruit-benefit::before {
  content: "—";
  color: var(--color-gray-400);
  flex-shrink: 0;
}

.recruit-salary {
  padding: 24px;
  background: var(--color-gray-100);
  border-radius: var(--radius-sm);
}

.recruit-salary h3 {
  font-size: 14px;
  margin-bottom: 12px;
}

.recruit-salary p {
  font-size: 13px;
  color: var(--color-gray-600);
  line-height: 1.8;
}

/* --- Content Blocks (Subpages) --- */
.content-block {
  margin-bottom: 64px;
}

.content-block:last-child {
  margin-bottom: 0;
}

.content-block__title {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0.02em;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--color-gray-400);
  line-height: 1.55;
  text-wrap: pretty;
}

.content-block__text p {
  margin-bottom: 1em;
  color: var(--color-gray-600);
  font-size: 15px;
  line-height: 1.9;
  text-wrap: pretty;
}

.content-block__text p:last-child {
  margin-bottom: 0;
}

.content-img {
  margin: 32px 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
}

/* --- Footer --- */
.footer {
  background: var(--color-black);
  color: var(--color-gray-400);
  padding: 60px 0 100px;
}

.footer__inner {
  display: grid;
  gap: 40px;
}

.footer__logo {
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--color-white);
}

.footer__tagline {
  font-size: 12px;
  margin-top: 8px;
  color: var(--color-gray-500);
}

.footer__nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 24px;
}

.footer__nav-link {
  font-size: 12px;
  letter-spacing: 0.05em;
  color: var(--color-gray-500);
}

.footer__nav-link:hover {
  color: var(--color-white);
  opacity: 1;
}

.footer__info {
  font-size: 12px;
  line-height: 1.9;
}

.footer__bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__copy {
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 0.05em;
}

.footer__portfolio-note {
  font-size: 10px;
  color: var(--color-gray-600);
  line-height: 1.6;
}

/* --- Utility --- */
.text-center { text-align: center; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.mb-40 { margin-bottom: 40px; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.section-header {
  margin-bottom: 48px;
}

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

.section-header--center .section-lead {
  margin-left: auto;
  margin-right: auto;
}

.link-more {
  text-align: center;
  margin-top: 40px;
}

.two-col {
  display: grid;
  gap: 40px;
}

/* --- Responsive: Tablet --- */
@media (min-width: 640px) {
  .salon-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .salon-grid__item--large {
    grid-column: span 2;
    aspect-ratio: 21 / 9;
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .menu-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .menu-detail-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .style-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .staff-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__nav {
    grid-template-columns: repeat(3, 1fr);
  }

  .recruit-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* --- Responsive: Desktop --- */
@media (min-width: 1024px) {
  body {
    padding-bottom: 0;
  }

  .header {
    height: var(--header-height);
  }

  .header__nav {
    display: block;
  }

  .header__actions .header__reserve.btn--reserve {
    display: inline-flex;
  }

  .hamburger {
    display: none;
  }

  .mobile-cta {
    display: none;
  }

  .footer {
    padding-bottom: 60px;
  }

  .page-hero {
    padding: calc(var(--header-height) + 80px) 0 80px;
  }

  .hero__content {
    padding: calc(var(--header-height) + 40px) clamp(40px, 8vw, 120px) 120px;
    max-width: 640px;
  }

  .section {
    padding: 120px 0;
  }

  .concept-block {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }

  .salon-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .salon-grid__item--large {
    grid-column: span 2;
    grid-row: span 2;
  }

  .feature-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .two-col {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  .access-info {
    grid-template-columns: 1fr 1fr;
  }

  .footer__inner {
    grid-template-columns: 1fr 2fr 1fr;
    align-items: start;
  }

  .footer__bottom {
    grid-column: 1 / -1;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

/* ========================================
   Home（index.html）専用レイアウト
   ======================================== */

.page-home .home-eyebrow {
  font-size: 11px;
  color: var(--color-gray-500);
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}

.page-home .home-heading {
  font-family: var(--font-serif);
  font-size: clamp(22px, 4vw, 30px);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.55;
  text-wrap: pretty;
}

.page-home .home-text {
  margin-top: 20px;
  color: var(--color-gray-600);
  font-size: 14px;
  line-height: 1.9;
  max-width: 42em;
  text-wrap: pretty;
}

.page-home .home-link {
  display: inline-block;
  margin-top: 24px;
  font-size: 13px;
  color: var(--color-gray-800);
  border-bottom: 1px solid var(--color-gray-800);
  padding-bottom: 2px;
  transition: opacity var(--transition);
}

.page-home .home-link:hover {
  opacity: 0.6;
}

.page-home .home-note {
  margin-top: 16px;
  font-size: 12px;
  line-height: 1.75;
  color: var(--color-gray-500);
  text-wrap: pretty;
  max-width: 42em;
}

.page-home .home-note__link {
  display: inline;
  margin-left: 4px;
  color: var(--color-gray-800);
  border-bottom: 1px solid var(--color-gray-400);
}

@media (max-width: 640px) {
  .page-home .home-note__link {
    display: inline-block;
    margin-left: 0;
    margin-top: 6px;
  }
}

.page-home .home-note__link:hover {
  opacity: 1;
  color: var(--color-black);
}

.page-home .home-section {
  padding: 72px 0;
}

.page-home .home-section--muted {
  background: #f5f5f5;
}

.page-home .home-section--dim {
  background: var(--color-black);
  color: var(--color-gray-200);
}

.page-home .home-section--dim .home-eyebrow,
.page-home .home-section--dim .home-heading {
  color: var(--color-white);
}

.page-home .home-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 36px;
}

.page-home .home-section-head .home-link {
  margin-top: 0;
  flex-shrink: 0;
}

/* Hero */
.page-home .home-hero {
  position: relative;
  height: 100svh;
  max-height: 100dvh;
  overflow: hidden;
}

.page-home .home-hero__media {
  position: absolute;
  inset: 0;
  background: var(--color-gray-200);
}

.page-home .home-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-home .home-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.08) 55%);
}

.page-home .home-hero__inner {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: calc(var(--header-height-mobile) + 20px) 20px 72px;
  color: var(--color-white);
}

.page-home .home-hero__brand {
  font-size: 11px;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.page-home .home-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(26px, 5.5vw, 42px);
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 1.5;
  margin-bottom: 14px;
  max-width: 12em;
  text-wrap: pretty;
}

.page-home .home-hero__lead {
  font-size: 14px;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.9);
  max-width: min(100%, 36em);
  margin-bottom: 24px;
  text-wrap: pretty;
}

.page-home .home-hero__inner .btn--reserve {
  align-self: flex-start;
}

@media (max-width: 1023px) {
  .page-home .home-hero__inner .btn--reserve {
    display: none;
  }
}

/* Concept */
.page-home .home-concept {
  display: grid;
  gap: 32px;
}

.page-home .home-concept__photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.page-home .home-concept__photo {
  margin: 0;
  overflow: hidden;
}

.page-home .home-concept__photo--main {
  grid-column: 1 / 3;
  aspect-ratio: 16 / 10;
}

.page-home .home-concept__photo:not(.home-concept__photo--main) {
  aspect-ratio: 1 / 1;
}

.page-home .home-concept__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Gallery */
.page-home .home-gallery {
  display: grid;
  gap: 8px;
  margin-bottom: 48px;
}

.page-home .home-gallery__main {
  margin: 0;
  aspect-ratio: 4 / 3;
}

.page-home .home-gallery__main img,
.page-home .home-gallery__sub figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-home .home-gallery__sub {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.page-home .home-gallery__sub figure {
  margin: 0;
  aspect-ratio: 1 / 1;
}

/* Points */
.page-home .home-points {
  display: grid;
  gap: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 36px;
}

.page-home .home-points__title {
  font-family: var(--font-serif);
  font-size: 14px;
  font-weight: 400;
  color: var(--color-white);
  margin-bottom: 8px;
  line-height: 1.55;
  text-wrap: pretty;
}

.page-home .home-points__text {
  font-size: 13px;
  color: var(--color-gray-400);
  line-height: 1.8;
  text-wrap: pretty;
}

/* Menu list */
.page-home .home-menu-list {
  border-top: 1px solid var(--color-gray-400);
}

.page-home .home-menu-list__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--color-gray-400);
}

.page-home .home-menu-list__main {
  flex: 1;
  min-width: 0;
}

.page-home .home-menu-list__name {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.65;
  text-wrap: pretty;
}

.page-home .home-menu-list__time {
  margin-top: 4px;
  font-size: 11px;
  color: var(--color-gray-500);
}

.page-home .home-menu-list__price {
  font-size: 15px;
  font-weight: 500;
  flex-shrink: 0;
  white-space: nowrap;
}

.page-home .home-section-more {
  display: inline-block;
  margin-top: 28px;
}

/* Style grid */
.page-home .home-style-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 12px;
}

.page-home .home-style-item {
  margin: 0;
  cursor: pointer;
}

.page-home .home-style-item__img {
  aspect-ratio: 3 / 4;
}

.page-home .home-style-item__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-home .home-style-item figcaption {
  margin-top: 10px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.55;
  color: var(--color-black);
  text-wrap: pretty;
}

.page-home .home-style-item .style-card__overlay {
  display: none;
}

/* Staff */
.page-home .home-staff-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 16px;
}

.page-home .home-staff {
  cursor: pointer;
}

.page-home .home-staff.staff-card {
  background: transparent;
  overflow: visible;
  border-radius: 0;
}

.page-home .home-staff.staff-card:hover {
  transform: none;
}

.page-home .home-staff__img {
  aspect-ratio: 3 / 4;
  margin-bottom: 12px;
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.page-home .home-staff__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-home .home-staff__role {
  font-size: 11px;
  color: var(--color-gray-600);
}

.page-home .home-staff__name {
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 500;
  margin-top: 4px;
  color: var(--color-black);
}

/* Split: First Visit + Access */
.page-home .home-split {
  display: grid;
  gap: 48px;
}

.page-home .home-flow {
  margin-top: 24px;
  border-left: 1px solid var(--color-gray-400);
  padding-left: 20px;
}

.page-home .home-flow li {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 10px 0;
  font-size: 14px;
  line-height: 1.7;
}

.page-home .home-flow__label {
  flex: 1;
  min-width: 0;
  text-wrap: pretty;
}

.page-home .home-flow__step {
  font-size: 11px;
  color: var(--color-gray-500);
  min-width: 12px;
}

.page-home .home-address {
  margin-top: 20px;
  font-style: normal;
  font-size: 14px;
  line-height: 1.85;
  color: var(--color-gray-600);
  text-wrap: pretty;
}

.page-home .home-map {
  margin-top: 20px;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--color-gray-200);
}

/* Recruit */
.page-home .home-recruit {
  display: grid;
  gap: 24px;
}

.page-home .home-recruit__media {
  aspect-ratio: 16 / 10;
}

.page-home .home-recruit__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Bottom grid: FAQ + News */
.page-home .home-bottom-grid {
  display: grid;
  gap: 48px;
}

.page-home .home-faq {
  margin-top: 20px;
}

.page-home .home-news {
  margin-top: 20px;
  border-top: 1px solid var(--color-gray-400);
}

.page-home .home-news li {
  border-bottom: 1px solid var(--color-gray-400);
}

.page-home .home-news a {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 12px;
  padding: 16px 0;
  font-size: 13px;
  line-height: 1.6;
  transition: opacity var(--transition);
}

.page-home .home-news a:hover {
  opacity: 0.6;
}

.page-home .home-news time {
  font-size: 12px;
  color: var(--color-gray-500);
}

/* CTA bar */
.page-home .home-cta {
  background: var(--color-black);
  color: var(--color-white);
  padding: 40px 0;
}

.page-home .home-cta__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.page-home .home-cta__text {
  font-size: 13px;
  color: var(--color-gray-400);
}

/* Tablet */
@media (min-width: 640px) {
  .page-home .home-points {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 24px;
  }

  .page-home .home-style-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px 16px;
  }

  .page-home .home-staff-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }

  .page-home .home-bottom-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

/* Desktop（1024px以上）— スマホ表示は変更しない */
@media (min-width: 1024px) {
  .page-home .container {
    max-width: 1040px;
    padding: 0 56px;
  }

  .page-home .home-section {
    padding: 112px 0;
  }

  .page-home .home-heading {
    font-size: 32px;
  }

  .page-home .home-text {
    font-size: 15px;
  }

  .page-home .home-section-head {
    margin-bottom: 48px;
  }

  /* Hero：コンテナ幅に揃えて配置 */
  .page-home .home-hero__inner {
    inset: 0;
    max-width: 1040px;
    margin: 0 auto;
    padding: calc(var(--header-height) + 48px) 56px 100px;
    justify-content: flex-end;
    align-items: flex-start;
  }

  .page-home .home-hero__title {
    font-size: 44px;
  }

  .page-home .home-hero__lead {
    font-size: 15px;
    max-width: 38em;
  }

  /* Concept：テキスト左・写真コラージュ右 */
  .page-home .home-concept {
    grid-template-columns: 1fr 1.15fr;
    gap: 72px;
    align-items: center;
  }

  .page-home .home-concept__body {
    max-width: none;
  }

  .page-home .home-concept__photos {
    grid-template-columns: 1.15fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 12px;
    min-height: 420px;
  }

  .page-home .home-concept__photo--main {
    grid-column: 1;
    grid-row: 1 / 3;
    aspect-ratio: auto;
    height: 100%;
  }

  .page-home .home-concept__photo:not(.home-concept__photo--main) {
    aspect-ratio: auto;
    height: 100%;
  }

  /* Gallery：左に大、右に2×2 */
  .page-home .home-gallery {
    grid-template-columns: 1.35fr 1fr 1fr;
    grid-template-rows: repeat(2, minmax(200px, 1fr));
    gap: 12px;
    margin-bottom: 56px;
    min-height: 440px;
  }

  .page-home .home-gallery__main {
    grid-column: 1;
    grid-row: 1 / 3;
    aspect-ratio: auto;
    min-height: 100%;
    height: 100%;
  }

  .page-home .home-gallery__sub {
    grid-column: 2 / 4;
    grid-row: 1 / 3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 12px;
    height: 100%;
  }

  .page-home .home-gallery__sub figure {
    aspect-ratio: auto;
    min-height: 0;
    height: 100%;
  }

  /* 特徴：2×2 */
  .page-home .home-points {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 56px;
    padding-top: 48px;
  }

  /* Menu：テキスト幅を確保 */
  #menu .home-section-head,
  .page-home .home-menu-list,
  .page-home .home-note,
  .page-home #menu .home-section-more {
    max-width: 920px;
  }

  .page-home .home-menu-list {
    max-width: 920px;
  }

  .page-home .home-menu-list__item {
    padding: 24px 0;
  }

  /* Style：3列・余白多め */
  .page-home .home-style-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 24px;
  }

  .page-home .home-style-item__img {
    aspect-ratio: 3 / 4;
  }

  /* Staff */
  .page-home .home-staff-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 32px 24px;
  }

  .page-home .home-staff__img {
    aspect-ratio: 4 / 5;
  }

  /* First Visit + Access */
  .page-home .home-split {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
  }

  .page-home .home-split__col:first-child {
    padding-right: 40px;
    border-right: 1px solid var(--color-gray-400);
  }

  .page-home .home-map {
    aspect-ratio: 16 / 9;
  }

  /* Recruit */
  .page-home .home-recruit {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 64px;
    align-items: center;
  }

  .page-home .home-recruit__media {
    aspect-ratio: 3 / 2;
  }

  .page-home .home-recruit__body {
    max-width: none;
  }

  /* FAQ + News */
  .page-home .home-bottom-grid {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
  }

  .page-home .home-bottom-grid > div:first-child {
    padding-right: 40px;
    border-right: 1px solid var(--color-gray-400);
  }

  /* CTA */
  .page-home .home-cta {
    padding: 48px 0;
  }

  .page-home .home-cta__inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }
}

/* 大画面 */
@media (min-width: 1280px) {
  .page-home .container {
    max-width: 1120px;
    padding: 0 64px;
  }

  .page-home .home-hero__inner {
    max-width: 1120px;
    padding-left: 64px;
    padding-right: 64px;
  }

  .page-home .home-gallery {
    gap: 16px;
  }

  .page-home .home-gallery__sub {
    gap: 16px;
  }
}

/* ========================================
   Home — Recruit 写真セクション
   ======================================== */

.page-home .home-section--photo {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  color: var(--color-white);
}

.page-home .home-section--photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--section-bg) center / cover no-repeat;
  z-index: 0;
}

.page-home .home-section--photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(0, 0, 0, 0.68) 0%,
    rgba(0, 0, 0, 0.42) 55%,
    rgba(0, 0, 0, 0.22) 100%
  );
  z-index: 1;
}

.page-home .home-section--photo > .container {
  position: relative;
  z-index: 2;
}

.page-home .home-section--photo .home-eyebrow {
  color: rgba(255, 255, 255, 0.65);
}

.page-home .home-section--photo .home-heading,
.page-home .home-section--photo .home-text {
  color: var(--color-white);
}

.page-home .home-section--photo .home-link {
  color: rgba(255, 255, 255, 0.9);
  border-bottom-color: rgba(255, 255, 255, 0.45);
}

.page-home .home-section--photo .home-recruit__media {
  display: none;
}

/* --- 404 --- */
.error-page {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-height-mobile) + 48px) 20px 80px;
  background: var(--color-black);
  color: var(--color-white);
  text-align: center;
}

.error-page__inner {
  max-width: 480px;
  margin: 0 auto;
}

.error-page__code {
  font-family: var(--font-en);
  font-size: clamp(64px, 16vw, 96px);
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1;
  color: rgba(255, 255, 255, 0.12);
  margin-bottom: 16px;
}

.error-page__title {
  font-family: var(--font-serif);
  font-size: clamp(20px, 4vw, 26px);
  font-weight: 400;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}

.error-page__text {
  font-size: 14px;
  line-height: 1.85;
  color: var(--color-gray-400);
  margin-bottom: 32px;
  text-wrap: pretty;
}

.error-page__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.error-page__btn-outline {
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--color-white);
}

.error-page__btn-outline:hover {
  border-color: var(--color-white);
}

.error-page .btn--dark {
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.85);
  background: transparent;
}

.error-page .btn--dark::after {
  background: var(--color-white);
}

.error-page .btn--dark:hover {
  color: var(--color-black);
  border-color: var(--color-white);
}

@media (min-width: 1024px) {
  .error-page {
    padding-top: calc(var(--header-height) + 64px);
  }

  .error-page__actions {
    flex-direction: row;
    justify-content: center;
  }
}
