/*
Theme Name: noble theme
Theme URI: https://example.com/noble-theme
Author: noble HAIR SALON
Author URI: https://example.com
Description: noble HAIR SALON 専用のミニマルで西海岸テイストのWordPressカスタムテーマ。Ron Hermanの雰囲気を参考に、白背景・セリフ見出し・余白で構成したレスポンシブデザイン。
Version: 1.1.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: noble-theme
Tags: custom-menu, featured-images, threaded-comments, translation-ready, custom-logo, custom-colors
*/

/* ==========================================================================
   Design tokens
   ========================================================================== */
:root {
  --color-bg: #FFFFFF;
  --color-bg-alt: #F7F6F2;
  --color-text: #1A1A1A;
  --color-text-muted: #8A8A8A;
  --color-line: #E6E3DC;
  --color-accent: #1A1A1A;
  --font-serif: "Cormorant Garamond", "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  --font-sans: "Jost", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}

/* ==========================================================================
   Reset & Base
   ========================================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 15px;
  line-height: 2;
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: var(--color-text);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

a:hover {
  opacity: 0.55;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0.02em;
  margin: 0 0 0.8em;
  color: var(--color-text);
}

p {
  margin: 0 0 1.2em;
}

ul, ol {
  margin: 0 0 1.2em;
  padding-left: 1.2em;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

/* ==========================================================================
   Layout containers
   ========================================================================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.container--narrow {
  max-width: 820px;
}

.section {
  padding: 96px 0;
}

@media (min-width: 768px) {
  .section {
    padding: 160px 0;
  }
}

.section--alt {
  background-color: var(--color-bg-alt);
}

.section__header {
  text-align: center;
  margin-bottom: 72px;
}

.section__eyebrow {
  display: block;
  font-family: var(--font-sans);
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .section__eyebrow {
    font-size: 36px;
  }
}

.section__title {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 300;
  letter-spacing: 0.03em;
  font-style: italic;
}

@media (min-width: 768px) {
  .section__title {
    font-size: 44px;
  }
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-block;
  padding: 16px 40px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  border-radius: 0;
  border: 1px solid var(--color-text);
  background-color: transparent;
  color: var(--color-text);
  cursor: pointer;
  transition: background-color 0.4s ease, color 0.4s ease, opacity 0.4s ease;
  text-align: center;
  line-height: 1;
}

.btn:hover {
  background-color: var(--color-text);
  color: var(--color-bg);
  opacity: 1;
}

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

.btn--primary:hover {
  background-color: transparent;
  color: var(--color-text);
}

.btn--light {
  border-color: #FFFFFF;
  color: #FFFFFF;
}

.btn--light:hover {
  background-color: #FFFFFF;
  color: var(--color-text);
}

.btn--small {
  padding: 12px 28px;
  font-size: 10px;
}

.btn-wrap {
  text-align: center;
  margin-top: 64px;
}

/* ==========================================================================
   Site header
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background-color: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-line);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  padding: 0 32px;
  max-width: 1400px;
  margin: 0 auto;
}

.site-branding {
  display: flex;
  align-items: center;
}

.site-title {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 0.04em;
  font-style: italic;
}

.site-title a {
  color: var(--color-text);
}

.site-title__sub {
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-left: 10px;
  vertical-align: middle;
}

.site-description {
  display: none;
}

/* Navigation */
.site-nav {
  display: none;
}

@media (min-width: 960px) {
  .site-nav {
    display: flex;
    align-items: center;
    gap: 40px;
  }
}

.site-nav__menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 40px;
}

.site-nav__menu a {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-text);
}

.btn--line {
  background-color: #06C755;
  color: #FFFFFF;
  border-color: #06C755;
}
.btn--line:hover {
  background-color: #05b34c;
  border-color: #05b34c;
  color: #FFFFFF;
}
.site-nav__cta {
  margin-left: 12px;
}
.site-nav__line-btn {
  margin-left: 4px;
}

/* Mobile menu toggle */
.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  margin-right: 4px;
}

@media (min-width: 960px) {
  .menu-toggle {
    display: none;
  }
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background-color: var(--color-text);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-toggle span + span {
  margin-top: 7px;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile drawer */
.mobile-nav {
  display: none;
}

.mobile-nav.is-open {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9998;
  background: #FFFFFF;
  padding: 80px 32px 100px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  box-sizing: border-box;
}

@media (max-width: 959px) {
  .site-header__inner {
    height: 60px;
    padding-top: 0;
    padding-bottom: 0;
    padding-left: max(24px, env(safe-area-inset-left));
    padding-right: max(24px, env(safe-area-inset-right));
    max-width: 100%;
    box-sizing: border-box;
  }
  .menu-toggle {
    margin-right: 0;
  }
  .site-main {
    padding-top: 60px;
  }
}


@media (min-width: 960px) {
  .mobile-nav,
  .mobile-nav.is-open {
    display: none;
  }
}

.mobile-nav__menu {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.mobile-nav__menu li {
  border-bottom: 1px solid var(--color-line);
}

.mobile-nav__cta a {
  display: block;
}
.mobile-nav__menu a {
  display: block;
  padding: 16px 0;
  font-family: var(--font-sans);
  font-size: 13px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-text);
}

/* Push content below fixed header */
.site-main {
  padding-top: 80px;
}

body.home .site-main {
  padding-top: 0;
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background-color: var(--color-bg-alt);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: var(--color-bg-alt);
}

.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26, 26, 26, 0.25) 0%, rgba(26, 26, 26, 0.45) 100%);
}

.hero--image-only {
  min-height: 80vh;
}

.hero--image-only .hero__bg::after {
  background: transparent;
}

.hero--logo-overlay {
  min-height: 88vh;
  position: relative;
}
@media (max-width: 767px) {
  .hero {
    min-height: 60vh;
  }
  .hero--logo-overlay {
    min-height: 60vh;
  }
}

.hero--logo-overlay .hero__bg::after {
  background: linear-gradient(180deg, rgba(26, 26, 26, 0.35) 0%, rgba(26, 26, 26, 0.5) 100%);
}

.hero__logo {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
}

.hero__logo img {
  width: 100%;
  max-width: 360px;
  height: auto;
  display: block;
}

@media (min-width: 768px) {
  .hero__logo img {
    max-width: 480px;
  }
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 0 32px;
  color: #FFFFFF;
  max-width: 880px;
}

.hero__eyebrow {
  display: block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  margin-bottom: 32px;
  opacity: 0.9;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: 38px;
  font-weight: 300;
  letter-spacing: 0.02em;
  font-style: italic;
  line-height: 1.3;
  color: #FFFFFF;
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .hero__title {
    font-size: 68px;
  }
}

.hero__lead {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.14em;
  line-height: 2.2;
  margin-bottom: 56px;
  opacity: 0.95;
}

@media (min-width: 768px) {
  .hero__lead {
    font-size: 14px;
  }
}

/* Body becomes light when hero has no background image */
.hero:not([style]) .hero__bg::after {
  background-color: rgba(26, 26, 26, 0.05);
}
.hero:not([style]) .hero__content,
.hero:not([style]) .hero__title {
  color: var(--color-text);
}
.hero:not([style]) .btn--light {
  border-color: var(--color-text);
  color: var(--color-text);
}
.hero:not([style]) .btn--light:hover {
  background-color: var(--color-text);
  color: var(--color-bg);
}

/* ==========================================================================
   Intro / Concept
   ========================================================================== */
.intro {
  text-align: center;
}

.intro__text {
  font-size: 15px;
  line-height: 2.4;
  letter-spacing: 0.06em;
  max-width: 680px;
  margin: 0 auto;
  color: var(--color-text);
  text-align: center;
}

@media (min-width: 768px) {
  .intro__text {
    font-size: 16px;
  }
}

/* ==========================================================================
   Menu highlight / Menu page
   ========================================================================== */
.menu-category {
  margin-bottom: 64px;
}
.menu-category__title {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.03em;
  text-align: center;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--color-line);
}

.menu-list {
  display: grid;
  gap: 24px;
  max-width: 760px;
  margin: 0 auto;
  list-style: none;
  padding: 0;
}

.menu-item {
  padding-bottom: 24px;
  border-bottom: 1px solid var(--color-line);
}

.menu-item__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 4px;
}

.menu-item__name {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.02em;
  margin: 0;
}

.menu-item__price {
  font-family: var(--font-sans);
  font-size: 16px;
  letter-spacing: 0.05em;
  color: var(--color-text);
  white-space: nowrap;
  flex-shrink: 0;
}

.menu-item__note {
  display: block;
  font-size: 12px;
  line-height: 1.7;
  color: #AAAAAA;
  margin-top: 4px;
}

.menu-item__duration {
  display: block;
  font-size: 12px;
  color: #AAAAAA;
  margin-top: 2px;
}

.menu-footer-note {
  text-align: center;
  font-size: 12px;
  color: var(--color-text-muted);
  margin-top: 48px;
  line-height: 2;
}

/* ==========================================================================
   Staff
   ========================================================================== */
.staff-grid {
  display: grid;
  gap: 64px;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .staff-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 80px;
  }
}

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

img.staff-card__photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
  margin-bottom: 32px;
  border-radius: 4px;
}
.staff-card__photo--placeholder {
  width: 100%;
  aspect-ratio: 3 / 4;
  background-color: var(--color-bg-alt);
  margin-bottom: 32px;
}

.staff-card__role {
  display: block;
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 12px;
}

.staff-card__name {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
}

.staff-card__bio {
  font-size: 13px;
  line-height: 2.2;
  letter-spacing: 0.04em;
  text-align: center;
  max-width: 360px;
  margin: 0 auto 20px;
  color: var(--color-text);
}

.staff-card__specialty {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 8px 20px;
  border: 1px solid var(--color-line);
  color: var(--color-text);
}

/* ==========================================================================
   Access
   ========================================================================== */
.access-grid {
  display: grid;
  gap: 64px;
  grid-template-columns: 1fr;
}

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

.access-info {
  display: grid;
  gap: 28px;
}

.access-info dt {
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 8px;
}

.access-info dd {
  margin: 0 0 20px;
  font-size: 15px;
  letter-spacing: 0.04em;
  line-height: 1.9;
}

.access-map {
  width: 100%;
  aspect-ratio: 4 / 3;
  background-color: var(--color-bg-alt);
  overflow: hidden;
}

.access-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.access-map__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.access-note {
  margin-top: 64px;
  padding: 40px;
  background-color: var(--color-bg-alt);
  font-size: 14px;
  line-height: 2;
}

.access-note h3 {
  font-family: var(--font-serif);
  font-size: 16px;
  font-style: italic;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
  color: var(--color-text);
}

/* ==========================================================================
   News
   ========================================================================== */
.news-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 760px;
}

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

.news-item:first-child {
  border-top: 1px solid var(--color-line);
}

.news-item a {
  display: grid;
  gap: 6px 32px;
  grid-template-columns: 1fr;
  color: var(--color-text);
}

@media (min-width: 600px) {
  .news-item a {
    grid-template-columns: auto 1fr;
    align-items: baseline;
  }
}

.news-item__date {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--color-text-muted);
  min-width: 100px;
}

.news-item__title {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.02em;
  margin: 0;
}

/* ==========================================================================
   Full-bleed photo band (section間の差し込み)
   ========================================================================== */
.photo-band {
  margin: 0;
  padding: 0;
  line-height: 0;
  overflow: hidden;
}

.photo-band img {
  display: block;
  width: 100%;
  height: 60vh;
  min-height: 360px;
  max-height: 720px;
  object-fit: cover;
  object-position: center 70%;
}

.photo-band__concept {
  object-position: center 20%;
}

@media (max-width: 767px) {
  .photo-band img {
    height: 50vh;
    min-height: 280px;
  }
}

/* ==========================================================================
   Concept gallery
   ========================================================================== */
.concept-gallery {
  padding: 0 0 48px;
}

@media (max-width: 767px) {
  .concept-gallery {
    padding: 0 0 32px;
  }
}

.concept-kidsspace {
  padding-top: 16px;
  padding-bottom: 96px;
}
@media (max-width: 767px) {
  .concept-kidsspace {
    padding-top: 16px;
    padding-bottom: 64px;
  }
}

.concept-gallery__grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

@media (min-width: 768px) {
  .concept-gallery__grid {
    grid-template-columns: 1.4fr 1fr;
    grid-template-rows: auto auto;
    gap: 32px;
  }
}

.concept-gallery__item {
  margin: 0;
  overflow: hidden;
  background-color: var(--color-bg-alt);
}

.concept-gallery__item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

@media (min-width: 768px) {
  .concept-gallery__item--tall {
    grid-row: span 2;
  }
  .concept-gallery__item--tall img {
    aspect-ratio: 3 / 4;
  }
}

/* NEWS hero (ヘッダー幅に合わせた4:1バナー) */
.news-hero {
  margin: 0 auto;
  padding: 0 32px;
  line-height: 0;
  max-width: 1400px;
}

.news-hero__logo {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 1;
  margin: 0;
}

.news-hero__eyebrow,
.news-hero__title {
  display: none;
}

/* News archive & single */
.page-header {
  padding: 180px 0 80px;
  text-align: center;
  background-color: var(--color-bg);
}
@media (max-width: 767px) {
  .page-header {
    padding: 100px 0 40px;
  }
  .photo-band img {
    object-position: center bottom;
  }
}

.page-header__eyebrow {
  display: block;
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 16px;
}

.page-header__title {
  font-family: var(--font-serif);
  font-size: 44px;
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.02em;
  margin: 0;
}

.post-card {
  padding: 40px 0;
  border-bottom: 1px solid var(--color-line);
}

.post-card__meta {
  font-family: var(--font-sans);
  font-size: 11px;
  color: var(--color-text-muted);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.post-card__title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.02em;
  margin: 0 0 12px;
}

.post-card__title a {
  color: var(--color-text);
}

.post-card__excerpt {
  font-size: 14px;
  line-height: 2;
  color: var(--color-text);
  margin: 0;
}

/* Single post */
.post-single {
  max-width: 720px;
  margin: 0 auto;
}

.post-single__meta {
  font-family: var(--font-sans);
  font-size: 11px;
  color: var(--color-text-muted);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.post-single__title {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.02em;
  margin-bottom: 48px;
  line-height: 1.4;
}

.post-single__content {
  font-size: 15px;
  line-height: 2.2;
}

.post-single__content h2 {
  font-size: 24px;
  font-style: italic;
  margin-top: 2em;
}

.post-single__content h3 {
  font-size: 19px;
  margin-top: 1.6em;
}

.post-single__content img {
  margin: 2em 0;
}

.post-nav {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 96px;
  padding-top: 40px;
  border-top: 1px solid var(--color-line);
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 80px;
  font-family: var(--font-sans);
  font-size: 12px;
}

.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 14px;
  border: 1px solid var(--color-line);
  color: var(--color-text);
}

.pagination .page-numbers.current {
  background-color: var(--color-text);
  color: var(--color-bg);
  border-color: var(--color-text);
}

/* ==========================================================================
   Page content (固定ページ)
   ========================================================================== */
.page-content {
  max-width: 760px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 2.2;
}

.page-content h2 {
  font-family: var(--font-serif);
  font-size: 26px;
  font-style: italic;
  margin-top: 2em;
}

.page-content h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-style: italic;
  margin-top: 1.6em;
}

/* ==========================================================================
   Reservation banner
   ========================================================================== */
.reservation-banner {
  padding: 120px 0;
  text-align: center;
  background-color: var(--color-text);
  color: var(--color-bg);
}

.reservation-banner h2 {
  color: var(--color-bg);
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.03em;
  margin-bottom: 16px;
}

.reservation-banner p {
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.75;
  margin-bottom: 40px;
}
.reservation-banner__buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.reservation-banner__line-note {
  font-size: 12px;
  opacity: 0.6;
  margin-top: 16px;
  margin-bottom: 0;
  letter-spacing: 0.05em;
  text-transform: none;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background-color: var(--color-bg);
  border-top: 1px solid var(--color-line);
  padding: 96px 0 40px;
  font-size: 13px;
}

.site-footer__inner {
  display: grid;
  gap: 56px;
  grid-template-columns: 1fr;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

@media (min-width: 768px) {
  .site-footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
}

.site-footer__brand h3 {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.site-footer__brand p {
  font-size: 13px;
  line-height: 2;
  color: var(--color-text);
}

.site-footer__info dl {
  display: grid;
  gap: 16px;
  margin: 0;
}

.site-footer__info dt {
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--color-text-muted);
  margin-bottom: 6px;
  text-transform: uppercase;
}

.site-footer__info dd {
  margin: 0 0 12px;
  font-size: 13px;
  letter-spacing: 0.04em;
  line-height: 1.9;
}

.site-footer__bottom {
  margin-top: 72px;
  padding-top: 32px;
  border-top: 1px solid var(--color-line);
  text-align: center;
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

/* ==========================================================================
   404
   ========================================================================== */
.error-404 {
  padding: 220px 0 160px;
  text-align: center;
}

.error-404 h1 {
  font-family: var(--font-serif);
  font-size: 96px;
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.02em;
  margin-bottom: 24px;
}

.error-404 p {
  font-size: 14px;
  margin-bottom: 48px;
}

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

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}

.alignleft { float: left; margin-right: 1.5em; }
.alignright { float: right; margin-left: 1.5em; }
.aligncenter { display: block; margin-left: auto; margin-right: auto; }
.alignwide { max-width: 1200px; }
.alignfull { max-width: 100%; }

.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 12px; color: var(--color-text-muted); text-align: center; margin-top: 8px; }

/* Fade-in on scroll (subtle) */
@media (prefers-reduced-motion: no-preference) {
  .fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.9s ease, transform 0.9s ease;
  }
  .fade-in.is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* Slide up – concept gallery items */
  .slide-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  .slide-up.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================================================================
   Concept Kids Space
   ========================================================================== */
.concept-kidsspace__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: auto auto;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
.concept-kidsspace__photo {
  margin: 0;
  overflow: hidden;
}
.concept-kidsspace__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.concept-kidsspace__photo--tall {
  grid-row: 1 / 3;
}
.concept-kidsspace__photo--small img {
  aspect-ratio: 4 / 3;
}
.concept-kidsspace__title {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.03em;
  margin-bottom: 16px;
}
.concept-kidsspace__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.concept-kidsspace__body p {
  font-size: 14px;
  line-height: 2;
  color: var(--color-text);
}
@media (max-width: 767px) {
  .concept-kidsspace__grid {
    grid-template-columns: 1fr;
  }
  .concept-kidsspace__photo--tall {
    grid-row: auto;
  }
  .concept-kidsspace__body {
    order: -1;
  }
}

/* ==========================================================================
   Top Concept Section
   ========================================================================== */
.top-concept {
  text-align: center;
}
.top-concept__text {
  font-size: 15px;
  line-height: 2.2;
  color: var(--color-text, #1A1A1A);
  letter-spacing: 0.04em;
  max-width: 560px;
  margin: 0 auto 32px;
}

/* ==========================================================================
   Top Access Section
   ========================================================================== */
.top-access__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.top-access__cell {
  border-radius: 8px;
  overflow: hidden;
}
.top-access__img {
  width: 100%;
  object-fit: cover;
  display: block;
}
.top-access__cell--exterior {
  height: 320px;
}
.top-access__cell--exterior .top-access__img {
  height: 100%;
  object-position: center 70%;
}
.top-access__cell--sign {
  height: 300px;
}
.top-access__cell--sign .top-access__img {
  height: 100%;
  object-position: center;
}
.top-access__info {
  padding: 20px 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.top-access__shop-name {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--color-text, #1A1A1A);
  margin-bottom: 8px;
}
.top-access__tel {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 20px;
}
.top-access__tel a {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--color-text, #1A1A1A);
  text-decoration: none;
}
.top-access__tel svg {
  color: var(--color-text-muted, #8A8A8A);
}
.top-access__dl {
  font-size: 15px;
  line-height: 2;
}
.top-access__dl div {
  display: flex;
  gap: 12px;
}
.top-access__dl dt {
  color: var(--color-text-muted, #8A8A8A);
  min-width: 80px;
  flex-shrink: 0;
}
.top-access__dl dd {
  color: var(--color-text, #1A1A1A);
  margin: 0;
}
.top-access__area {
  margin-top: 16px;
  font-size: 12px;
  color: var(--color-text-muted, #8A8A8A);
  letter-spacing: 0.03em;
}
.top-access__map {
  background: #e8e3dd;
}
.top-access__map iframe {
  width: 100%;
  height: 100%;
  min-height: 250px;
  border: 0;
  display: block;
}
@media (max-width: 767px) {
  .top-access__grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Breadcrumb
   ========================================================================== */
.breadcrumb { padding: 12px 0; font-size: 12px; color: var(--color-text-muted, #8A8A8A); }
.breadcrumb__list { list-style: none; display: flex; flex-wrap: wrap; gap: 4px; margin: 0; padding: 0; }
.breadcrumb__list li:not(:last-child)::after { content: " / "; margin-left: 4px; }
.breadcrumb__list a { color: inherit; text-decoration: underline; text-underline-offset: 2px; }
.breadcrumb__list a:hover { color: var(--color-text, #1A1A1A); }

/* ==========================================================================
   Business Calendar
   ========================================================================== */
.noble-calendar {
  max-width: 400px;
  margin: 0 auto;
  font-size: 14px;
}
.noble-calendar__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.noble-calendar__nav button {
  background: none;
  border: 1px solid var(--color-border, #ddd);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  font-size: 18px;
  cursor: pointer;
  color: var(--color-text, #1A1A1A);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.noble-calendar__nav button:hover {
  background: var(--color-bg-alt, #F5F0E8);
}
.noble-calendar__month-label {
  font-family: var(--font-heading, 'Cormorant Garamond', serif);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--color-text, #1A1A1A);
}
.noble-calendar__head,
.noble-calendar__body {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  text-align: center;
}
.noble-calendar__head {
  margin-bottom: 4px;
}
.noble-calendar__dow {
  font-size: 11px;
  color: var(--color-text-muted, #8A8A8A);
  padding: 4px 0;
}
.noble-calendar__dow--sun { color: #c0392b; }
.noble-calendar__dow--sat { color: #2980b9; }
.noble-calendar__cell {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-size: 13px;
  position: relative;
}
.noble-calendar__cell--empty { visibility: hidden; }
.noble-calendar__cell--open { color: var(--color-text, #1A1A1A); }
.noble-calendar__cell--closed {
  color: #c0392b;
  background: rgba(192,57,43,.06);
}
.noble-calendar__cell--extra {
  color: #e67e22;
  background: rgba(230,126,34,.08);
}
.noble-calendar__cell--sun { color: #c0392b; }
.noble-calendar__cell--sat { color: #2980b9; }
.noble-calendar__legend {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 16px;
  font-size: 11px;
  color: var(--color-text-muted, #8A8A8A);
}
.noble-calendar__legend-item {
  display: flex;
  align-items: center;
  gap: 4px;
}
.noble-calendar__dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.noble-calendar__dot--open { background: var(--color-text, #1A1A1A); }
.noble-calendar__dot--closed { background: #c0392b; }
.noble-calendar__dot--extra { background: #e67e22; }

/* ==========================================================================
   Mobile CTA (fixed bottom bar)
   ========================================================================== */
.mobile-cta {
  display: none;
}

@media (max-width: 768px) {
  .mobile-cta {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: #fff;
    border-top: 1px solid var(--color-border, #ddd);
    box-shadow: 0 -2px 12px rgba(0,0,0,.08);
    padding: 8px;
    padding-bottom: max(8px, env(safe-area-inset-bottom));
    padding-left: max(8px, env(safe-area-inset-left));
    padding-right: max(8px, env(safe-area-inset-right));
    gap: 8px;
  }

  .mobile-cta a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px 8px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: opacity 0.2s;
  }
  .mobile-cta a:active {
    opacity: 0.8;
  }

  .mobile-cta__phone--active {
    background: var(--color-text, #1A1A1A);
    color: #fff;
  }
  .mobile-cta__phone--inactive {
    background: #e8e3dd;
    color: #8A8A8A;
    pointer-events: none;
  }

  .mobile-cta__line {
    background: #06C755;
    color: #fff;
  }

  .mobile-cta__web {
    background: var(--color-accent, #1A1A1A);
    color: #fff;
  }

  .mobile-cta__icon {
    flex-shrink: 0;
  }

  /* コンテンツがCTAに隠れないようにbodyにpadding-bottom */
  body {
    padding-bottom: 72px;
  }

  .reservation-banner,
  .site-footer__inner {
    display: none;
  }

  .btn-wrap--staff {
    display: none;
  }

  .site-footer {
    padding: 24px 0 16px;
  }

  .site-footer__bottom {
    margin-top: 0;
    padding-top: 24px;
    border-top: none;
  }

  .access-grid {
    gap: 16px;
  }

  .access-info {
    gap: 4px;
  }

  .access-info dt {
    margin-bottom: 0;
  }

  .access-info dd {
    margin-bottom: 0;
    line-height: 1.4;
  }
}
