/**
 * 喫茶ビクトリヤ — 微調整用スタイル（Tailwind補完）
 * カラー厳守: #FFFFFF #111111 #666666 #C0A060 #F8F8F8
 */

:root {
  --color-bg: #ffffff;
  --color-bg-muted: #f8f8f8;
  --color-text: #111111;
  --color-text-muted: #666666;
  --color-accent: #c0a060;
  --color-brand: #283418;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Serif JP", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", serif;
  font-weight: 300;
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* 見出し階層 — 行間・字間をサイトトーンに合わせる */
.lp-heading-xl {
  font-size: clamp(1.75rem, 4.2vw, 2.625rem);
  font-weight: 400;
  letter-spacing: 0.28em;
  line-height: 1.65;
}

.lp-heading-lg {
  font-size: clamp(1.25rem, 2.4vw, 1.5rem);
  font-weight: 400;
  letter-spacing: 0.22em;
  line-height: 1.7;
}

.lp-heading-md {
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  line-height: 1.75;
}

.lp-body {
  font-size: 0.9375rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  line-height: 2.05;
  color: var(--color-text-muted);
}

.lp-body--tight {
  line-height: 1.95;
}

.lp-caption {
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  line-height: 1.85;
  color: var(--color-text-muted);
}

.lp-label {
  font-size: 0.6875rem;
  font-weight: 400;
  letter-spacing: 0.35em;
  line-height: 1.6;
  color: var(--color-accent);
}

/* セクション共通余白 */
.lp-section {
  padding-top: clamp(4.5rem, 12vw, 7.5rem);
  padding-bottom: clamp(4.5rem, 12vw, 7.5rem);
  padding-left: clamp(1.5rem, 5vw, 2.5rem);
  padding-right: clamp(1.5rem, 5vw, 2.5rem);
}

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

/* ブランド地（STORY等）— ヘッダーと同色 */
.lp-section--brand {
  background-color: var(--color-brand);
  color: #ffffff;
}

.lp-section--brand .lp-label {
  color: var(--color-accent);
}

.lp-section--brand .lp-heading-lg {
  color: #ffffff;
}

.lp-section--brand .lp-body {
  color: rgba(255, 255, 255, 0.82);
}

.lp-section--brand .lp-body strong {
  color: #ffffff;
  font-weight: 400;
}

.lp-section--brand .lp-caption {
  color: rgba(255, 255, 255, 0.88);
}

.lp-section--brand .lp-rule {
  background-color: var(--color-accent);
}

.lp-section--brand .lp-link {
  color: var(--color-accent);
}

/* ABOUTリード（見出し〜本文のみフル幅の緑） */
.lp-section.lp-section--fullbleed-x {
  padding-top: 0;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: clamp(4.5rem, 12vw, 7.5rem);
}

.lp-about-head {
  background-color: var(--color-brand);
  color: #ffffff;
  padding-top: clamp(4.5rem, 12vw, 7.5rem);
  padding-bottom: clamp(4.5rem, 12vw, 7.5rem);
  padding-left: clamp(1.5rem, 5vw, 2.5rem);
  padding-right: clamp(1.5rem, 5vw, 2.5rem);
}

.lp-about-head .lp-label {
  color: var(--color-accent);
}

.lp-about-head .lp-heading-lg {
  color: #ffffff;
}

.lp-about-head .lp-body {
  color: rgba(255, 255, 255, 0.84);
}

.lp-about-head .lp-body strong {
  color: #ffffff;
  font-weight: 400;
}

.lp-about-head .lp-rule {
  background-color: var(--color-accent);
}

.lp-about-head .lp-caption {
  color: rgba(255, 255, 255, 0.86);
}

/* SPECIAL（堂島ロール）：スマホは見出し・案内の直後に写真、その下に本文 */
.lp-special-grid {
  display: grid;
  gap: clamp(1.25rem, 4vw, 1.75rem);
  grid-template-columns: minmax(0, 1fr);
}

.lp-special-grid__media {
  margin: 0;
}

@media (min-width: 768px) {
  .lp-special-grid {
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
    grid-template-rows: auto auto;
    column-gap: clamp(2rem, 4vw, 3rem);
    row-gap: clamp(1.5rem, 3vw, 2.25rem);
    align-items: start;
  }

  .lp-special-grid__lead {
    grid-column: 1;
    grid-row: 1;
  }

  .lp-special-grid__media {
    grid-column: 2;
    grid-row: 1 / span 2;
  }

  .lp-special-grid__rest {
    grid-column: 1;
    grid-row: 2;
  }
}

.lp-about-head figure {
  padding-bottom: clamp(1.5rem, 4vw, 2.5rem);
}

.lp-container {
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.lp-container--wide {
  max-width: 56rem;
}

/* 区切り線 */
.lp-rule {
  width: 3rem;
  height: 1px;
  background-color: var(--color-accent);
  margin-left: auto;
  margin-right: auto;
}

.lp-rule--left {
  margin-left: 0;
  margin-right: 0;
}

/* ファーストビュー */
.lp-hero {
  min-height: 0;
}

@media (min-width: 768px) {
  .lp-hero {
    min-height: 100vh;
    min-height: 100dvh;
  }
}

/* スマホ：ヒーロー縦幅を抑え、画像の主題が収まるようトリミング位置を調整 */
.lp-hero__stage {
  position: relative;
  min-height: min(68svh, 26rem);
  width: 100%;
}

.lp-hero__img {
  min-height: min(68svh, 26rem);
  object-position: center 40%;
}

@media (min-width: 768px) {
  .lp-hero__stage {
    min-height: 100vh;
    min-height: 100dvh;
  }

  .lp-hero__img {
    min-height: 100vh;
    min-height: 100dvh;
    object-position: center center;
  }
}

.lp-hero__overlay {
  background: linear-gradient(
    180deg,
    rgba(17, 17, 17, 0.18) 0%,
    rgba(17, 17, 17, 0.26) 45%,
    rgba(17, 17, 17, 0.36) 100%
  );
}

/* ヒーロー：見出し周りの行間・ブロック間・視認性用シャドウ */
.lp-hero .lp-label {
  font-size: 0.8125rem;
  line-height: 1.35;
  text-shadow: 0 0 1px rgba(0, 0, 0, 0.75), 0 1px 3px rgba(0, 0, 0, 0.55), 0 2px 12px rgba(0, 0, 0, 0.4);
}

.lp-hero .lp-heading-xl {
  font-size: clamp(2rem, 4.9vw, 3rem);
  line-height: 1.25;
  text-shadow: 0 0 2px rgba(0, 0, 0, 0.85), 0 2px 4px rgba(0, 0, 0, 0.55), 0 3px 20px rgba(0, 0, 0, 0.45);
}

.lp-hero .lp-hero__lead {
  font-size: 1.0625rem;
  line-height: 1.65;
  letter-spacing: 0.05em;
  text-shadow: 0 0 1px rgba(0, 0, 0, 0.8), 0 1px 3px rgba(0, 0, 0, 0.55), 0 2px 14px rgba(0, 0, 0, 0.42);
}

/* 画像 */
.lp-img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
}

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

/* スクロールフェード（js-enhanced 時のみ初期非表示 → .is-visible） */
.js-enhanced .lp-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.85s ease, transform 0.85s ease;
}

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

@media (prefers-reduced-motion: reduce) {
  .js-enhanced .lp-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.lp-reveal--delay {
  transition-delay: 0.12s;
}

/* お知らせバー */
.lp-notice-bar {
  font-size: 0.6875rem;
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 1.75;
}

/* アクセス表 */
.lp-dl-grid {
  display: grid;
  grid-template-columns: 5.5rem 1fr;
  gap: 0.75rem 1.25rem;
  font-size: 0.8125rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  line-height: 1.85;
  color: var(--color-text-muted);
}

.lp-dl-grid dt {
  color: var(--color-text);
  font-weight: 400;
  letter-spacing: 0.08em;
}

/* リンク */
.lp-link {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 0.25em;
  transition: opacity 0.2s ease;
}

.lp-link:hover {
  opacity: 0.75;
}

/* メニュー見出しブロック */
.lp-menu-block h2,
.lp-menu-block h3 {
  font-size: 0.9375rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  line-height: 1.7;
  color: var(--color-text);
  margin-bottom: 0.75rem;
}

.lp-menu-block p {
  font-size: 0.875rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  line-height: 2;
  color: var(--color-text-muted);
}

/* サイトヘッダー（ロゴは白線画のためダーク背景） */
.lp-site-header {
  position: relative;
  background-color: var(--color-brand);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.lp-site-header__logo {
  display: block;
  max-height: 2.75rem;
  width: auto;
  background: transparent;
  vertical-align: middle;
}

@media (min-width: 768px) {
  .lp-site-header__logo {
    max-height: 3.25rem;
  }
}

.lp-nav__link {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  transition: color 0.2s ease;
}

.lp-nav__link:hover {
  color: var(--color-accent);
}

.lp-nav__link[aria-current="page"] {
  color: var(--color-accent);
  pointer-events: none;
}

/* サイトヘッダー：スマホはハンバーガー内にナビを格納 */
.lp-site-header__bar {
  row-gap: 0.5rem;
}

.lp-site-header__bar > .lp-site-nav {
  width: 100%;
}

@media (min-width: 768px) {
  .lp-site-header__bar > .lp-site-nav {
    width: auto;
  }
}

.lp-nav-toggle {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  margin-left: auto;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 2px;
  background: transparent;
  color: rgba(255, 255, 255, 0.92);
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.lp-nav-toggle:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.lp-nav-toggle__inner {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 1.125rem;
}

.lp-nav-toggle__bar {
  display: block;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.25s ease, opacity 0.2s ease;
  transform-origin: center;
}

.lp-site-header.is-nav-open .lp-nav-toggle__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.lp-site-header.is-nav-open .lp-nav-toggle__bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.lp-site-header.is-nav-open .lp-nav-toggle__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (min-width: 768px) {
  .lp-nav-toggle {
    display: none;
  }
}

.lp-site-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (max-width: 767.98px) {
  /* 地球儀をハンバーガー寄り（右）へ少し寄せる */
  .lp-site-header__bar .lp-lang {
    margin-left: 1rem;
  }

  .lp-site-header:not(.is-nav-open) .lp-site-nav {
    display: none;
  }

  .lp-site-header.is-nav-open .lp-site-nav {
    display: block;
    width: 100%;
    flex-basis: 100%;
    padding-top: 0.75rem;
    margin-top: 0.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .lp-site-nav__list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.65rem 0;
    padding-bottom: 0.35rem;
  }
}

@media (min-width: 768px) {
  .lp-site-header .lp-site-nav {
    display: flex !important;
    align-items: center;
    width: auto;
    flex: 0 1 auto;
    margin-top: 0;
    padding-top: 0;
    border-top: none;
  }

  .lp-site-header .lp-site-nav__list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
    column-gap: 1.5rem;
    row-gap: 0.35rem;
  }
}

body.lp-nav-open {
  overflow: hidden;
}

@media (min-width: 768px) {
  body.lp-nav-open {
    overflow: visible;
  }
}

/* 言語切り替え（地球儀） */
.lp-lang {
  position: relative;
  flex-shrink: 0;
}

.lp-lang__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 2px;
  background: transparent;
  color: rgba(255, 255, 255, 0.92);
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.lp-lang__toggle:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.lp-lang__icon {
  display: block;
  width: 1.25rem;
  height: 1.25rem;
}

.lp-lang__menu {
  position: absolute;
  z-index: 80;
  top: calc(100% + 6px);
  right: 0;
  min-width: 10.5rem;
  margin: 0;
  padding: 0.35rem 0;
  list-style: none;
  background: #ffffff;
  border: 1px solid #e5e5e5;
  box-shadow: 0 8px 24px rgba(17, 17, 17, 0.12);
}

.lp-lang__option {
  display: block;
  width: 100%;
  padding: 0.55rem 1rem;
  border: 0;
  background: transparent;
  font-family: inherit;
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-align: left;
  color: var(--color-text);
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.lp-lang__option:hover {
  background: var(--color-bg-muted);
  color: var(--color-accent);
}

html[lang="zh-Hans"] body {
  font-family: "Noto Serif JP", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
}

/* 下層ページ：タイトル帯 */
.lp-page-head {
  padding-top: clamp(3rem, 9vw, 5rem);
  padding-bottom: clamp(2rem, 6vw, 3.25rem);
  padding-left: clamp(1.5rem, 5vw, 2.5rem);
  padding-right: clamp(1.5rem, 5vw, 2.5rem);
  text-align: center;
}

.lp-page-head--muted {
  background-color: var(--color-bg-muted);
}

/* グランドメニュー：セクション見出し上のヒーロー写真 */
.lp-menu-section-hero {
  margin-top: 2.5rem;
  margin-left: auto;
  margin-right: auto;
  max-width: 48rem;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border: 1px solid #e8e8e8;
  border-radius: 2px;
  box-shadow: 0 10px 32px rgba(17, 17, 17, 0.07);
  line-height: 0;
}

.lp-menu-section-hero img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* グランドメニュー：カード */
.lp-menu-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background-color: #ffffff;
  border: 1px solid #e8e8e8;
}

.lp-menu-card__img {
  aspect-ratio: 4 / 3;
  width: 100%;
  object-fit: cover;
}

.lp-menu-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.25rem 1.25rem 1.35rem;
}

.lp-menu-card__title {
  font-size: 0.9375rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1.55;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}

.lp-menu-card__meta {
  margin-top: auto;
  padding-top: 0.75rem;
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--color-accent);
}

.lp-pdf-frame {
  min-height: min(78vh, 900px);
  border: 1px solid #e0e0e0;
  background-color: #f4f4f4;
}

/* メニュー：グランド PDF への主ボタン（お品書き・グランド共通） */
.lp-cta-menu {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2.75rem;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  color: #fff;
  background-color: #283418;
  border: 1px solid #283418;
  text-decoration: none;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

.lp-cta-menu:hover {
  color: #283418;
  background-color: #fff;
}

/* Recruit：ヒーロー画像 */
.lp-recruit-hero {
  margin: 0;
  padding: 0;
  line-height: 0;
}

.lp-calendar-wrap {
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
}

/* Recruit：正社員（暖色）／アルバイト（寒色）で区分 */
.lp-recruit-block--fulltime {
  background-color: rgba(217, 72, 15, 0.06);
  border-color: rgba(217, 72, 15, 0.28) !important;
}

.lp-recruit-block__heading--fulltime {
  color: #c2410c;
}

.lp-recruit-spec__row {
  display: grid;
  gap: 0.5rem 1rem;
  align-items: start;
}

@media (min-width: 480px) {
  .lp-recruit-spec__row {
    grid-template-columns: minmax(0, 11rem) minmax(0, 1fr);
    align-items: center;
  }
}

.lp-recruit-spec__meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0;
}

.lp-recruit-spec__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lp-recruit-spec__icon--fulltime {
  color: #ea580c;
}

.lp-recruit-spec__label--fulltime {
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #ea580c;
}

.lp-recruit-spec__value--fulltime {
  margin: 0;
  font-size: clamp(1.25rem, 3.5vw, 1.75rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.35;
  color: #c2410c;
}

@media (min-width: 480px) {
  .lp-recruit-spec__value--fulltime {
    text-align: left;
  }
}

.lp-recruit-foot--fulltime {
  color: #9a3412;
}

.lp-recruit-block--parttime {
  background-color: rgba(14, 116, 144, 0.07);
  border-color: rgba(14, 116, 144, 0.28) !important;
}

.lp-recruit-block__heading--parttime {
  color: #0e7490;
}

.lp-recruit-wage-line {
  color: #111111;
}

.lp-recruit-wage-highlight {
  font-weight: 600;
  color: #0f766e;
}

.lp-recruit-foot--parttime {
  color: #155e75;
}
