/* ========================================
   小野理容室 - BARBER BESPOKE風スタイル
   ======================================== */
:root {
  --color-bg: #1a2744;
  --color-bg-alt: #243553;
  --color-text: #e8e6e3;
  --color-text-muted: #a8b4c8;
  --color-accent: #c9a962;
  --color-border: #2d3d5c;
  --font-en: 'Playfair Display', serif;
  --font-jp: 'Noto Sans JP', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-jp);
  background: var(--color-bg);
  /* 背景：店内01.jpg */
  background-image: linear-gradient(
      to bottom,
      rgba(26, 39, 68, 0.52),
      rgba(26, 39, 68, 0.68)
    ),
    url("店内01.jpg");
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--color-text);
  line-height: 1.8;
  padding-top: 70px; /* フローティングヘッダー分 */
}

/* ----- フローティングヘッダー ----- */
.floating-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  background: rgba(26, 39, 68, 0.95);
  border-bottom: 1px solid var(--color-border);
}

.floating-nav {
  display: flex;
  gap: 28px;
}

.floating-nav a {
  color: var(--color-text);
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}

.floating-nav a:hover {
  color: var(--color-accent);
}

.floating-cta {
  text-align: right;
}

.tel-btn {
  display: inline-block;
  font-size: 18px;
  font-weight: 700;
  color: var(--color-accent);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.tel-btn:hover {
  text-decoration: underline;
}

.closed-day {
  font-size: 12px;
  color: var(--color-text-muted);
  margin-top: 2px;
  text-align: left;
}

/* ----- ヒーロー ----- */
.hero {
  padding: 60px 24px 24px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero-title {
  font-family: var(--font-en);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--color-text);
  margin-bottom: 12px;
  line-height: 1;
  padding: 0;
}

.hero-title-en,
.hero-title-jp {
  display: block;
  margin: 0;
  padding: 0;
  line-height: 1;
}

.hero-title-en {
  font-size: 0.6em;
  letter-spacing: 0.2em;
  margin-left: -3em;
}

.hero-title-jp {
  font-family: var(--font-jp);
  margin-top: 0.2em;
}

.hero-title-sub {
  display: block;
  font-family: var(--font-jp);
  font-size: 0.5em;
  letter-spacing: 0.15em;
}

.hero-subtitle {
  font-size: 1rem; /* タイトルと本文の中間（16px） */
  color: var(--color-text-muted);
  margin-bottom: 4px;
  letter-spacing: 0.05em;
}

.hero-subtitle--large {
  font-size: 1.25rem; /* 2段階大きく（20px） */
}

.hero-subtitle:last-of-type {
  margin-bottom: 24px;
}

.hero-text {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.9;
}

.hero .hero-text {
  font-size: 1rem; /* 1行目・2行目（hero-subtitle）と同じサイズ */
}

/* ----- セクション共通 ----- */
section {
  max-width: 900px;
  margin: 0 auto;
  padding: 48px 24px;
}

/* ご挨拶以降は余白を詰めて上に寄せる */
.greeting,
.greeting ~ section {
  padding-top: 16px;
  padding-bottom: 16px;
}

.section-label {
  font-size: 12px;
  letter-spacing: 0.15em;
  color: var(--color-text-muted);
  margin-bottom: 12px;
}

.section-title {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--color-border);
}

/* ----- お知らせ ----- */
.info-section .info-text {
  font-size: 14px;
  color: var(--color-text-muted);
}

/* ----- ご挨拶 ----- */
.greeting-text {
  font-size: 15px;
  color: var(--color-text-muted);
}

.shop-image-section {
  text-align: center;
}

.shop-image {
  width: 100%;
  max-width: min(900px, 100vw);
  max-height: 75vh;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  object-fit: contain;
}

/* ----- Reservation（予約） ----- */
.reservation {
  padding-top: 6px;
}

.reservation-intro {
  font-size: 15px;
  color: var(--color-text-muted);
  margin-bottom: 16px;
  line-height: 1.8;
}

.reservation-steps {
  margin-top: 24px;
}

.reservation-step {
  margin-bottom: 28px;
}

.reservation-step:last-child {
  margin-bottom: 0;
}

.reservation-step-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 10px;
}

.reservation-step-text {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: 8px;
}

.reservation-step-text:last-child {
  margin-bottom: 0;
}

/* ----- 営業時間 ----- */
.business-hours {
  padding-top: 6px;
}

.business-hours-text {
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: 8px;
}

.business-hours-text:last-child {
  margin-bottom: 0;
}

/* ----- コンセプト ----- */
.concept-text,
.concept-detail {
  font-size: 15px;
  color: var(--color-text-muted);
  margin-bottom: 20px;
}

.concept-sub {
  font-size: 1rem;
  font-weight: 700;
  margin: 28px 0 12px;
  color: var(--color-text);
}

/* ----- メニュー ----- */
.menu-section {
  background: var(--color-bg-alt);
  padding-top: 6px;
}

.faq {
  padding-top: 6px;
}

.menu-note {
  font-size: 14px;
  color: var(--color-text-muted);
  margin-bottom: 28px;
}

.menu-note strong {
  color: var(--color-accent);
}

.menu-content-wrap {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

/* メニュー表を広めに取り、一行で見えるようにする */
.menu-left {
  flex: 1 1 55%;
  min-width: 0;
}

.menu-right {
  flex: 0 0 auto;
  width: 42%;
  max-width: 320px;
  min-width: 0;
}

.menu-tables {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.menu-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  table-layout: fixed;
}

.menu-table th,
.menu-table td {
  padding: 8px 16px;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
}

.menu-table th {
  font-weight: 500;
  color: var(--color-text);
  width: 42%;
  vertical-align: top;
  white-space: nowrap;
}

.menu-table td {
  color: var(--color-text-muted);
}

.menu-table tr.menu-spacer th,
.menu-table tr.menu-spacer td {
  border: none;
  padding: 6px 0 0;
  height: 0;
  line-height: 0;
  vertical-align: top;
}

.menu-disclaimer {
  font-size: 12px;
  color: var(--color-text-muted);
  margin-top: 20px;
}

.menu-image-section {
  text-align: center;
}

.menu-image {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  object-fit: contain;
}

/* ----- FAQ ----- */
.faq-list {
  font-size: 15px;
}

.faq-list dt {
  font-weight: 700;
  color: var(--color-text);
  margin-top: 20px;
}

.faq-list dt:first-child {
  margin-top: 0;
}

.faq-list dd {
  color: var(--color-text-muted);
  margin-top: 6px;
  padding-left: 0;
}

/* ----- オーナー ----- */
.owner-name {
  font-family: var(--font-en);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.owner-text {
  font-size: 14px;
  color: var(--color-text-muted);
}

/* ----- 店舗情報 ----- */
.shop-info {
  padding-top: 6px;
  padding-bottom: 12px;
}

.shop-address {
  font-style: normal;
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.9;
  margin-bottom: 12px;
}

.shop-map {
  margin: 20px 0 24px;
}

.shop-map iframe {
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.shop-map-link {
  margin-top: 10px;
  font-size: 14px;
  text-align: left;
}

.shop-map-link a {
  color: var(--color-accent);
  text-decoration: none;
}

.shop-map-link a:hover {
  text-decoration: underline;
}

.shop-tel {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.shop-tel a {
  color: var(--color-accent);
  text-decoration: none;
}

.shop-tel a:hover {
  text-decoration: underline;
}

.shop-hours {
  font-size: 14px;
  color: var(--color-text-muted);
}

/* 定休日・営業時間のラベル幅を揃えて値の左端を合わせる */
.info-label {
  display: inline-block;
  width: 5.5em;
}

/* ----- フッター ----- */
.footer {
  text-align: center;
  padding: 12px 24px 24px;
  border-top: 1px solid var(--color-border);
}

.copyright {
  font-size: 12px;
  color: var(--color-text-muted);
}

/* ========================================
   タブレット・スマホ：ナビ上部・CTA下部固定
   ======================================== */
@media (max-width: 768px) {
  body {
    padding-top: 56px;
    padding-bottom: 80px; /* 下部CTA用 */
  }

  .menu-content-wrap {
    flex-direction: column;
  }

  .floating-header {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 12px 16px;
  }

  .floating-nav {
    justify-content: center;
    gap: 20px;
  }

  .floating-cta {
    text-align: center;
    padding: 8px 0 0;
    border-top: 1px solid var(--color-border);
  }

  .tel-btn {
    font-size: 20px;
  }
}

/* スマホ用：画面最下部に電話ボタン固定（BESPOKE風） */
.mobile-bottom-cta {
  display: none;
}

@media (max-width: 768px) {
  .desktop-cta {
    display: none;
  }

  .mobile-bottom-cta {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    padding: 14px 16px;
    background: rgba(26, 39, 68, 0.98);
    border-top: 1px solid var(--color-border);
    text-align: center;
  }

  .mobile-bottom-cta .tel-btn {
    font-size: 20px;
  }

  .mobile-bottom-cta .closed-day {
    margin-top: 4px;
  }
}

/* スマホのみ：テーブル縦積み */
@media (max-width: 480px) {
  .floating-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: auto;
  }

  .menu-table th,
  .menu-table td {
    display: block;
    width: 100%;
    padding: 6px 0;
    border-bottom: none;
  }

  .menu-table tr {
    border-bottom: 1px solid var(--color-border);
    padding: 8px 0;
  }

  .menu-table th {
    font-size: 13px;
    margin-bottom: 4px;
  }

  .menu-table td {
    font-size: 13px;
    padding-left: 0;
  }
}
