/* ==========================================
   接待LP - 専用スタイルシート
   ========================================== */

/* ルート変数 */
.lp-settai {
  --lps-bg: #faf8f5;
  --lps-card-bg: #ffffff;
  --lps-border: #e8e4de;
  --lps-title: #3d3632;
  --lps-text: #5f5954;
  --lps-accent: #8b7355;
  --lps-cta: #6b5344;
  --lps-cta-hover: #5a4538;
  --lps-hero-bg: #1a1a1a;
  --lps-highlight-bg: #f5f0e8;

  background-color: var(--lps-bg);
  color: var(--lps-text);
  line-height: 1.9;
  font-family: var(--font-sans);
  padding-top: 0;
}

/* ==========================================
   共通セクションレイアウト
   ========================================== */
.lp-settai section {
  padding: var(--spacing-xxl) var(--spacing-md);
}

.lp-settai section > *:not(.cta-wrap) {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* 共通見出し h2 */
.lp-settai h2.wp-block-heading {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--lps-title);
  text-align: center;
  margin-bottom: var(--spacing-lg);
  line-height: 1.5;
  position: relative;
  padding-bottom: var(--spacing-sm);
}

.lp-settai h2.wp-block-heading::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--lps-accent);
  margin: var(--spacing-sm) auto 0;
}

/* 共通見出し h3 */
.lp-settai h3.wp-block-heading {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--lps-title);
  line-height: 1.6;
  margin-bottom: var(--spacing-sm);
}

/* 共通テキスト */
.lp-settai p {
  margin-bottom: var(--spacing-sm);
  line-height: 1.9;
}

.lp-settai p:last-child {
  margin-bottom: 0;
}

.lp-settai ul {
  padding-left: 1.4em;
  line-height: 2;
}

.lp-settai ul li {
  margin-bottom: var(--spacing-xs);
}

.lp-settai a {
  color: var(--lps-accent);
  text-decoration: none;
  transition: color 0.3s ease;
}

.lp-settai a:hover {
  color: var(--lps-cta);
  text-decoration: underline;
}

/* ==========================================
   CTA ボタン（共通）
   ========================================== */
.lp-settai .cta-wrap {
  text-align: center;
  padding: var(--spacing-lg) 0 0;
  max-width: 100% !important;
}

.lp-settai .cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4em;
  background-color: var(--lps-cta);
  color: #ffffff;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  padding: 1rem 2.5rem;
  border-radius: 8px;
  border: none;
  text-decoration: none;
  min-height: 52px;
  box-shadow: 0 4px 16px rgba(107, 83, 68, 0.2);
  transition: all 0.3s ease;
}

.lp-settai .cta-button:hover {
  background-color: var(--lps-cta-hover);
  color: #ffffff;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(107, 83, 68, 0.3);
}

/* ==========================================
   ヒーローセクション
   ========================================== */
.lp-settai .lp-hero {
  background: var(--lps-hero-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #ffffff;
  text-align: center;
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: calc(var(--header-height) + var(--spacing-xxl)) var(--spacing-md) var(--spacing-xxl);
  position: relative;
  overflow: hidden;
}

.lp-settai .lp-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 26, 0.6);
  pointer-events: none;
}

.lp-settai .lp-hero > * {
  position: relative;
  z-index: 1;
}

.lp-settai .lp-hero > p:first-child {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--spacing-md);
}

.lp-settai .lp-hero h1 {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.5;
  color: #ffffff;
  margin-bottom: var(--spacing-lg);
  max-width: 800px;
}

.lp-settai .lp-hero > p:nth-child(3) {
  font-size: 1.05rem;
  line-height: 2;
  color: rgba(255, 255, 255, 0.85);
  max-width: 700px;
}

.lp-settai .lp-hero .cta-wrap {
  padding-top: var(--spacing-lg);
}

.lp-settai .lp-hero .cta-button {
  font-size: 1.15rem;
  padding: 1.1rem 3rem;
  box-shadow: 0 4px 20px rgba(107, 83, 68, 0.35);
}

/* ==========================================
   導入セクション
   ========================================== */
.lp-settai .lp-intro {
  background-color: var(--lps-bg);
}

.lp-settai .lp-intro p {
  font-size: 1.05rem;
  line-height: 2.1;
  text-align: center;
}

.lp-settai .lp-intro p:first-child {
  border-left: 3px solid var(--lps-accent);
  text-align: left;
  padding-left: 1.2em;
  font-family: var(--font-serif);
  color: var(--lps-title);
  font-size: 1rem;
  line-height: 2.2;
  margin-bottom: var(--spacing-md);
}

/* ==========================================
   課題セクション
   ========================================== */
.lp-settai .lp-problem {
  background-color: var(--lps-highlight-bg);
}

.lp-settai .lp-problem p {
  font-size: 1rem;
  line-height: 2;
}

/* ==========================================
   選ばれる理由セクション
   ========================================== */
.lp-settai .lp-reason {
  background-color: var(--lps-bg);
}

.lp-settai .lp-reason h3.wp-block-heading {
  font-size: 1.3rem;
  padding-bottom: var(--spacing-xs);
  border-bottom: 1px solid var(--lps-border);
  margin-bottom: var(--spacing-md);
  margin-top: var(--spacing-lg);
}

.lp-settai .lp-reason h3.wp-block-heading:first-of-type {
  margin-top: 0;
}

.lp-settai .lp-reason ul {
  background: var(--lps-card-bg);
  border: 1px solid var(--lps-border);
  border-radius: 10px;
  padding: var(--spacing-md) var(--spacing-md) var(--spacing-md) 2.2em;
  box-shadow: 0 2px 12px rgba(139, 115, 85, 0.06);
}

.lp-settai .lp-reason ul li {
  padding: var(--spacing-xs) 0;
  border-bottom: 1px solid var(--lps-border);
}

.lp-settai .lp-reason ul li:last-child {
  border-bottom: none;
}

/* ==========================================
   セクション画像（共通）
   ========================================== */
.lp-settai .lp-section-image {
  margin: 0 auto var(--spacing-lg);
  max-width: 900px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.lp-settai .lp-section-image img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

/* ==========================================
   おすすめシーンセクション
   ========================================== */
.lp-settai .lp-scene {
  background-color: var(--lps-highlight-bg);
}

.lp-settai .lp-scene ul {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-sm);
}

.lp-settai .lp-scene ul li {
  background: var(--lps-card-bg);
  border: 1px solid var(--lps-border);
  border-radius: 10px;
  padding: var(--spacing-md);
  text-align: center;
  font-size: 0.98rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 0;
}

.lp-settai .lp-scene ul li::before {
  content: '\f058';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--lps-accent);
  display: block;
  font-size: 1.4rem;
  margin-bottom: var(--spacing-xs);
}

.lp-settai .lp-scene ul li:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(139, 115, 85, 0.12);
}

/* ==========================================
   人数別席案内セクション
   ========================================== */
.lp-settai .lp-seat-guide {
  background-color: var(--lps-bg);
}

.lp-settai .lp-seat-guide h3.wp-block-heading {
  background: var(--lps-accent);
  color: #ffffff;
  padding: var(--spacing-sm) var(--spacing-md);
  border-radius: 8px 8px 0 0;
  font-size: 1.15rem;
  margin-bottom: 0;
  margin-top: var(--spacing-md);
}

.lp-settai .lp-seat-guide h3.wp-block-heading:first-of-type {
  margin-top: 0;
}

.lp-settai .lp-seat-guide h3.wp-block-heading + p {
  background: var(--lps-card-bg);
  border: 1px solid var(--lps-border);
  border-top: none;
  border-radius: 0 0 8px 8px;
  padding: var(--spacing-md);
  margin-bottom: var(--spacing-md);
}

/* ==========================================
   コース案内セクション
   ========================================== */
.lp-settai .lp-course {
  background-color: var(--lps-highlight-bg);
}

.lp-settai .lp-course h3.wp-block-heading {
  background: var(--lps-card-bg);
  border: 1px solid var(--lps-border);
  border-bottom: none;
  border-radius: 10px 10px 0 0;
  padding: var(--spacing-md) var(--spacing-md) var(--spacing-sm);
  margin-bottom: 0;
  margin-top: var(--spacing-md);
  font-size: 1.3rem;
  color: var(--lps-accent);
}

.lp-settai .lp-course h3.wp-block-heading:first-of-type {
  margin-top: 0;
}

.lp-settai .lp-course h3.wp-block-heading + p {
  background: var(--lps-card-bg);
  border-left: 1px solid var(--lps-border);
  border-right: 1px solid var(--lps-border);
  padding: 0 var(--spacing-md);
  margin-bottom: 0;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--lps-text);
  opacity: 0.8;
}

.lp-settai .lp-course h3.wp-block-heading + p + p {
  background: var(--lps-card-bg);
  border-left: 1px solid var(--lps-border);
  border-right: 1px solid var(--lps-border);
  border-bottom: 1px solid var(--lps-border);
  border-radius: 0 0 10px 10px;
  padding: var(--spacing-xs) var(--spacing-md) var(--spacing-md);
  margin-bottom: var(--spacing-md);
  font-size: 1rem;
  line-height: 1.8;
}

/* コース全体の最初の説明テキスト */
.lp-settai .lp-course > p:first-of-type {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

/* 注意書き */
.lp-settai .lp-course > p:nth-last-of-type(2) {
  font-size: 0.88rem;
  color: var(--lps-text);
  opacity: 0.75;
  margin-top: var(--spacing-md);
}

/* お品書きリンク */
.lp-settai .lp-course > p:has(a[href*="menu"]) {
  text-align: center;
  margin-top: var(--spacing-sm);
}

/* ==========================================
   予約前確認セクション
   ========================================== */
.lp-settai .lp-check {
  background-color: var(--lps-bg);
}

.lp-settai .lp-check ul {
  list-style: none;
  padding: 0;
  background: var(--lps-card-bg);
  border: 1px solid var(--lps-border);
  border-radius: 10px;
  overflow: hidden;
}

.lp-settai .lp-check ul li {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  padding: var(--spacing-sm) var(--spacing-md);
  border-bottom: 1px solid var(--lps-border);
  margin-bottom: 0;
}

.lp-settai .lp-check ul li:last-child {
  border-bottom: none;
}

.lp-settai .lp-check ul li::before {
  content: '\f14a';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--lps-accent);
  flex-shrink: 0;
  font-size: 1.1rem;
}

/* ==========================================
   店舗情報セクション
   ========================================== */
.lp-settai .lp-info {
  background-color: var(--lps-highlight-bg);
}

.lp-settai .lp-info h3.wp-block-heading {
  font-size: 1.3rem;
  padding-bottom: var(--spacing-xs);
  border-bottom: 1px solid var(--lps-border);
  margin-bottom: var(--spacing-md);
  margin-top: var(--spacing-lg);
}

.lp-settai .lp-info h3.wp-block-heading:first-of-type {
  margin-top: 0;
}

.lp-settai .lp-info h3.wp-block-heading + p {
  background: var(--lps-card-bg);
  border: 1px solid var(--lps-border);
  border-bottom: none;
  border-radius: 10px 10px 0 0;
  padding: var(--spacing-md);
  margin-bottom: 0;
}

.lp-settai .lp-info h3.wp-block-heading + p + p {
  background: var(--lps-card-bg);
  border: 1px solid var(--lps-border);
  border-top: none;
  border-radius: 0 0 10px 10px;
  padding: 0 var(--spacing-md) var(--spacing-md);
  margin-bottom: var(--spacing-sm);
}

/* リンク段落（カードの外） */
.lp-settai .lp-info h3.wp-block-heading + p + p + p {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  text-align: center;
  margin-top: var(--spacing-sm);
}

.lp-settai .lp-info a[href^="tel:"] {
  color: var(--lps-cta);
  font-weight: 500;
}

/* ==========================================
   FAQセクション
   ========================================== */
.lp-settai .lp-faq {
  background-color: var(--lps-bg);
}

.lp-settai .lp-faq h3.wp-block-heading {
  background: var(--lps-card-bg);
  border: 1px solid var(--lps-border);
  border-bottom: none;
  border-radius: 10px 10px 0 0;
  padding: var(--spacing-md) var(--spacing-md) var(--spacing-md) 3.5em;
  margin-bottom: 0;
  margin-top: var(--spacing-md);
  font-size: 1.05rem;
  color: var(--lps-accent);
  position: relative;
}

.lp-settai .lp-faq h3.wp-block-heading:first-of-type {
  margin-top: 0;
}

.lp-settai .lp-faq h3.wp-block-heading::before {
  content: 'Q.';
  position: absolute;
  left: var(--spacing-md);
  top: var(--spacing-md);
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--lps-accent);
}

.lp-settai .lp-faq h3.wp-block-heading + p {
  background: var(--lps-card-bg);
  border: 1px solid var(--lps-border);
  border-top: none;
  border-radius: 0 0 10px 10px;
  padding: var(--spacing-sm) var(--spacing-md) var(--spacing-md) 3.5em;
  margin-bottom: 0;
  position: relative;
}

.lp-settai .lp-faq h3.wp-block-heading + p::before {
  content: 'A.';
  position: absolute;
  left: var(--spacing-md);
  top: var(--spacing-sm);
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--lps-cta);
}

/* ==========================================
   クロージングセクション
   ========================================== */
.lp-settai .lp-closing {
  background: linear-gradient(180deg, #f7f3ec 0%, #f0e7db 100%);
  text-align: center;
}

.lp-settai .lp-closing h2.wp-block-heading {
  font-size: 1.6rem;
}

.lp-settai .lp-closing p {
  font-size: 1.02rem;
  text-align: center;
}

.lp-settai .lp-closing .cta-button {
  font-size: 1.2rem;
  padding: 1.2rem 3rem;
  box-shadow: 0 6px 24px rgba(107, 83, 68, 0.3);
}

/* ==========================================
   フェードインアニメーション
   ========================================== */
@keyframes lps-fade-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.lp-settai section {
  animation: lps-fade-up 0.8s ease both;
}

/* ==========================================
   ダークモード
   ========================================== */
@media (prefers-color-scheme: dark) {
  html:not([data-theme="light"]) .lp-settai {
    --lps-bg: #2a2725;
    --lps-card-bg: #353230;
    --lps-border: #4a4541;
    --lps-title: #e8e4de;
    --lps-text: #d0cbc5;
    --lps-accent: #b8a68e;
    --lps-cta: #a08872;
    --lps-cta-hover: #8b7560;
    --lps-hero-bg: #1a1715;
    --lps-highlight-bg: #302d2a;
  }

  html:not([data-theme="light"]) .lp-settai .lp-closing {
    background: linear-gradient(180deg, #302d2a 0%, #2a2725 100%);
  }
}

html[data-theme="dark"] .lp-settai {
  --lps-bg: #2a2725;
  --lps-card-bg: #353230;
  --lps-border: #4a4541;
  --lps-title: #e8e4de;
  --lps-text: #d0cbc5;
  --lps-accent: #b8a68e;
  --lps-cta: #d94a47;
  --lps-cta-hover: #c53e3b;
  --lps-hero-bg: #1a1715;
  --lps-highlight-bg: #302d2a;
}

html[data-theme="dark"] .lp-settai .lp-closing {
  background: linear-gradient(180deg, #302d2a 0%, #2a2725 100%);
}

/* ==========================================
   レスポンシブ
   ========================================== */
@media (max-width: 1024px) {
  .lp-settai .lp-scene ul {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }
}

@media (max-width: 768px) {
  .lp-settai {
    padding-top: 0;
  }

  .lp-settai section {
    padding: var(--spacing-xl) var(--spacing-sm);
  }

  /* セクション画像 */
  .lp-settai .lp-section-image {
    border-radius: 8px;
    margin-bottom: var(--spacing-md);
  }

  .lp-settai h2.wp-block-heading {
    font-size: 1.4rem;
  }

  .lp-settai h3.wp-block-heading {
    font-size: 1.1rem;
  }

  /* ヒーロー */
  .lp-settai .lp-hero {
    min-height: 70vh;
    padding: calc(60px + var(--spacing-xl)) var(--spacing-sm) var(--spacing-xl);
  }

  .lp-settai .lp-hero h1 {
    font-size: 1.4rem;
    letter-spacing: 0.04em;
  }

  .lp-settai .lp-hero > p:first-child {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
  }

  /* 説明文を非表示（.lp-intro で同等の内容が読めるため） */
  .lp-settai .lp-hero > p:nth-child(3) {
    display: none;
  }

  .lp-settai .lp-hero .cta-button {
    font-size: 1rem;
    padding: 0.9rem 1.5rem;
  }

  /* CTA */
  .lp-settai .cta-button {
    width: 100%;
    max-width: 360px;
    font-size: 1rem;
    padding: 0.9rem 1.5rem;
  }

  /* シーン */
  .lp-settai .lp-scene ul {
    grid-template-columns: 1fr;
  }

  /* コース */
  .lp-settai .lp-course h3.wp-block-heading {
    font-size: 1.1rem;
  }

  /* FAQ */
  .lp-settai .lp-faq h3.wp-block-heading {
    font-size: 0.98rem;
    padding-left: 3em;
  }

  .lp-settai .lp-faq h3.wp-block-heading + p {
    padding-left: 3em;
  }

  /* クロージング */
  .lp-settai .lp-closing h2.wp-block-heading {
    font-size: 1.3rem;
  }

  .lp-settai .lp-closing .cta-button {
    font-size: 1.05rem;
    padding: 1rem 2rem;
  }
}

@media (max-width: 480px) {
  .lp-settai .lp-hero h1 {
    font-size: 1.2rem;
  }

  .lp-settai h2.wp-block-heading {
    font-size: 1.25rem;
  }

  .lp-settai .lp-course h3.wp-block-heading {
    font-size: 1rem;
  }
}
