@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;500;700&display=swap');

/* ===== RESET & TOKENS ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* ── アクセント（ロゴオレンジ） ── */
  --accent:      #EC6D1E;   /* ロゴのオレンジ：ボタン・ラベル・アイコン */
  --accent-dark: #C4560E;   /* ホバー・押下時（15%暗） */
  --accent-bg:   #FFF0E6;   /* 薄オレンジ背景（カテゴリバッジ等） */

  /* ── テキスト・グレー（ウォームトーン） ── */
  --black:   #1C1510;       /* ウォームブラック */
  --dark:    #2E2218;       /* ダークブラウン */
  --gray:    #635850;       /* ウォームグレー */
  --lgray:   #A09288;       /* ライトウォームグレー */

  /* ── 背景 ── */
  --bg:       #FAFAF8;      /* ほぼ白・極薄ウォーム */
  --bg-warm:  #F5F0E8;      /* ウォームクリーム */
  --bg-cream: #EDE8DF;      /* 深めクリーム */

  /* ── ボーダー ── */
  --border:  #E2D8CC;       /* 暖色ボーダー */

  --font:       'Noto Serif JP', 'Hiragino Mincho ProN', 'Yu Mincho', serif;
  --font-serif: 'Noto Serif JP', 'Hiragino Mincho ProN', 'Yu Mincho', serif;
  --max:     1280px;

  /* ── スペーシング ── */
  --header-h: 68px;
  --sp-1:  8px;
  --sp-2:  16px;
  --sp-3:  24px;
  --sp-4:  32px;
  --sp-5:  40px;
  --sp-6:  48px;
  --sp-7:  56px;
  --sp-8:  64px;
  --sp-10: 80px;
  --sp-11: 88px;
}

html { font-size: 16px; scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--black); background: var(--bg); line-height: 1.7; }
img  { display: block; max-width: 100%; height: auto; }
a    { color: inherit; text-decoration: none; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 40px; }
@media (max-width: 768px) { .container { padding: 0 20px; } }

/* ===== HEADER ===== */
header.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--header-h); max-width: var(--max); margin: 0 auto; padding: 0 40px;
}
.site-logo {
  font-size: 22px; font-weight: 500; letter-spacing: 0.02em; color: var(--black);
  display: flex; align-items: center; gap: 6px;
  font-family: var(--font-serif);
}
.site-logo .logo-sub { font-size: 28px; font-weight: 500; }

.site-nav { display: flex; gap: 32px; align-items: center; }
.site-nav a {
  font-size: 13px; font-weight: 500; letter-spacing: 0.06em;
  color: var(--gray); transition: color 0.2s;
}
.site-nav a:hover { color: var(--accent); }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span { width: 22px; height: 1.5px; background: var(--black); transition: all 0.3s; }

/* ===== HERO ===== */
.hero {
  height: 70vh;
  min-height: 520px;
  max-height: 840px;
  position: relative;
  display: flex; align-items: center;
  padding-top: var(--header-h);
  overflow: hidden;
  background: #2a1f14;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url(''); /* 写真をここに */
  background-size: cover; background-position: center;
  opacity: 0.7;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(20,12,6,0.85) 0%, rgba(20,12,6,0.3) 60%, transparent 100%);
}
.hero > .container {
  width: 100%;
}
.hero-content {
  position: relative; z-index: 1;
  padding: 40px 0;
  max-width: 560px;
}
.hero h1 {
  font-size: clamp(32px, 4.5vw, 60px);
  font-weight: 500; line-height: 1.25;
  color: #fff; margin-bottom: 20px;
  letter-spacing: 0.04em;
  font-family: var(--font-serif);
}
.hero-desc {
  font-size: 14px; color: rgba(255,255,255,0.75);
  line-height: 1.9; margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 28px; font-size: 13px; font-weight: 500;
  letter-spacing: 0.08em; border-radius: 0;
  transition: all 0.25s; cursor: pointer; border: none; font-family: var(--font);
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-dark); }
.btn-outline-white { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.5); }
.btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,0.08); }
.btn-outline-dark { background: transparent; color: var(--black); border: 1px solid var(--black); }
.btn-outline-dark:hover { background: var(--black); color: #fff; }
.btn-arrow::after { content: '→'; font-weight: 400; }

/* ===== SECTION COMMON ===== */
.sec { padding: var(--sp-11) 0; }
.sec-sm { padding: var(--sp-7) 0; }
.sec-warm  { background: var(--bg-warm); }
.sec-cream { background: var(--bg-cream); }
.sec-dark  { background: var(--dark); }

.sec-head { margin-bottom: var(--sp-6); }
.sec-head-row {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 40px;
}
.sec-label {
  font-size: 12px; font-weight: 500; letter-spacing: 0.25em;
  color: var(--accent); text-transform: uppercase; margin-bottom: 8px;
  display: flex; align-items: center; gap: 10px;
}
.sec-label::before {
  content: ''; display: inline-block;
  width: 28px; height: 2px; background: var(--accent);
}
.sec-title {
  font-size: clamp(20px, 2.8vw, 32px); font-weight: 500;
  color: var(--black); line-height: 1.2;
  font-family: var(--font-serif);
}
.sec-title-white { color: #fff; }
.sec-more {
  font-size: 12px; font-weight: 500; letter-spacing: 0.1em;
  color: var(--gray); display: flex; align-items: center; gap: 6px;
  transition: color 0.2s;
}
.sec-more:hover { color: var(--accent); }
.sec-more::after { content: '→'; }

/* ===== PRODUCTS ===== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}
.product-card { cursor: pointer; }
.product-card-img {
  aspect-ratio: 4 / 3;
  background: var(--bg-cream);
  overflow: hidden; margin-bottom: 14px;
  display: flex; align-items: center; justify-content: center;
}
.product-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-card-img img { transform: scale(1.06); }
.product-card-img .no-img { font-size: 40px; color: var(--lgray); }
.product-card-cat {
  font-size: 11px; font-weight: 500; letter-spacing: 0.15em;
  color: var(--black); margin-bottom: 6px;
}
.product-card-name {
  font-size: 14px; font-weight: 500; color: var(--black); margin-bottom: 8px; line-height: 1.4;
  font-family: var(--font-serif);
}
.product-card-desc { font-size: 12px; color: var(--gray); line-height: 1.7; margin-bottom: 10px; }
.product-card-link {
  font-size: 12px; font-weight: 500; color: var(--accent);
  display: flex; align-items: center; gap: 4px;
}
.product-card-link::after { content: '→'; }
.product-card-body { padding: 14px 0 4px; }
.product-card-price { font-size: 13px; color: var(--gray); margin-top: 4px; }

/* ===== ABOUT ===== */
.about-inner {
  display: grid; grid-template-columns: 2fr 3fr; gap: 56px; align-items: stretch;
}
.about-img {
  overflow: hidden;
  background: var(--bg-cream);
  display: flex; align-items: flex-start;
}
.about-img img { height: 100%; width: auto; display: block; }
.about-img-placeholder {
  width: 100%; height: 100%;
  background: #2a1f14;
  display: flex; align-items: center; justify-content: center;
  font-size: 80px;
}
.about-text {
  background: transparent;
  padding: 0;
  display: flex; flex-direction: column; justify-content: center;
  position: relative;
}
.about-text p { font-size: 15px; color: var(--gray); line-height: 2.2; margin-bottom: 20px; }
.about-text .about-lead { font-size: 13px; color: var(--accent); letter-spacing: 0.08em; margin-bottom: 24px; line-height: 1.6; }
.about-watermark {
  position: absolute; right: 32px; bottom: 24px;
  font-size: 120px; font-weight: 900; color: rgba(0,0,0,0.04);
  line-height: 1; user-select: none; pointer-events: none;
  font-family: var(--font-serif);
}
.about-stamp {
  position: absolute; right: 48px; bottom: 80px;
  font-size: 24px; color: var(--accent); opacity: 0.4;
  font-family: var(--font-serif); border: 2px solid var(--accent);
  width: 48px; height: 48px; display: flex; align-items: center; justify-content: center;
}

/* ===== BLOG ===== */
.blog-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.blog-card { cursor: pointer; }
.blog-card-img {
  aspect-ratio: 4/3; overflow: hidden; margin-bottom: 14px;
  background: var(--bg-cream); position: relative;
  display: flex; align-items: center; justify-content: center;
}
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.blog-card:hover .blog-card-img img { transform: scale(1.06); }
.blog-card-img .no-img { font-size: 36px; }
.blog-card-cat {
  position: absolute; top: 12px; left: 12px;
  font-size: 10px; font-weight: 500; letter-spacing: 0.1em;
  background: var(--accent); color: #fff;
  padding: 3px 10px; border-radius: 20px;
}
.blog-card-title { font-size: 14px; font-weight: 500; color: var(--black); margin-bottom: 6px; line-height: 1.5; font-family: var(--font-serif); }
.blog-card-date { font-size: 11px; color: var(--lgray); }
.blog-card:hover .blog-card-title { color: var(--accent); }

/* ===== DEALERS STRIP ===== */
.dealers-strip {
  position: relative; overflow: hidden;
  min-height: 280px; display: flex; align-items: center;
  background: var(--dark);
}
.dealers-strip-bg {
  position: absolute; inset: 0;
  background: #1a1209;
  opacity: 0.6;
}
.dealers-strip-content {
  position: relative; z-index: 1;
  padding: 64px 0;
}
.dealers-strip h2 { font-size: clamp(22px, 3vw, 36px); font-weight: 500; color: #fff; margin-bottom: 16px; font-family: var(--font-serif); }
.dealers-strip p { font-size: 14px; color: rgba(255,255,255,0.6); margin-bottom: 32px; }

/* ===== CONTACT STRIP ===== */
.contact-strip { background: var(--bg-warm); padding: 56px 0; }
.contact-strip-inner {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 24px; text-align: center;
}
.contact-icon { display: flex; align-items: center; justify-content: center; opacity: 0.7; }
.contact-text h3 { font-size: 18px; font-weight: 500; margin-bottom: 6px; font-family: var(--font-serif); }
.contact-text p { font-size: 13px; color: var(--gray); }

/* ===== CONTACT FORM ===== */
.contact-form { display: flex; flex-direction: column; gap: 28px; }
.cf-row { display: flex; flex-direction: column; gap: 8px; }
.cf-label { font-size: 13px; color: var(--black); display: flex; align-items: center; gap: 8px; }
.cf-req { font-size: 10px; color: #fff; background: var(--accent); padding: 2px 8px; letter-spacing: 0.05em; }
.cf-opt { font-size: 10px; color: var(--lgray); border: 1px solid var(--border); padding: 2px 8px; letter-spacing: 0.05em; }
.cf-input {
  width: 100%; padding: 12px 16px; border: 1px solid var(--border);
  background: #fff; font-family: var(--font); font-size: 15px; color: var(--black);
  border-radius: 0; outline: none; transition: border-color 0.2s;
}
.cf-input:focus { border-color: var(--black); }
textarea.cf-input { resize: vertical; }

/* ===== FOOTER ===== */
footer.site-footer { background: var(--dark); padding: 72px 0 32px; }
.footer-inner { max-width: var(--max); margin: 0 auto; padding: 0 40px; }
.footer-top {
  display: grid; grid-template-columns: 280px 1fr; gap: 80px;
  padding-bottom: 48px; border-bottom: 1px solid #333;
}
.footer-logo { font-size: 20px; font-weight: 500; color: #fff; margin-bottom: 14px; letter-spacing: 0.02em; font-family: var(--font-serif); }
.footer-logo .logo-sub { font-size: 26px; }
.footer-tagline { font-size: 13px; color: #666; line-height: 1.9; }
.footer-nav { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; }
.footer-nav-col h4 { font-size: 11px; letter-spacing: 0.2em; color: #888; margin-bottom: 16px; font-weight: 500; text-transform: uppercase; }
.footer-nav-col a { display: block; font-size: 12px; color: #666; margin-bottom: 10px; transition: color 0.2s; line-height: 1.5; }
.footer-nav-col a:hover { color: #fff; }
.footer-bottom {
  padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
}
.footer-copy { font-size: 11px; color: #444; }
.footer-social { display: flex; gap: 16px; }
.footer-social a { font-size: 16px; color: #555; transition: color 0.2s; }
.footer-social a:hover { color: #fff; }

/* ===== PAGE HEADER ===== */
.page-header { padding: calc(var(--header-h) + 72px) 0 var(--sp-8); background: var(--dark); }
.page-header h1 { font-size: clamp(28px, 4vw, 52px); font-weight: 500; color: #fff; font-family: var(--font-serif); }
.page-header .page-meta { font-size: 13px; color: #666; margin-top: 10px; }

/* ===== SINGLE PRODUCT (NEW) ===== */
.pd-wrap { padding: 48px 0 96px; }
.pd-breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--lgray); margin-bottom: 48px; flex-wrap: wrap; }
.pd-breadcrumb a { color: var(--lgray); }
.pd-breadcrumb a:hover { color: var(--black); }
.pd-main { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; margin-bottom: 80px; }
.pd-gallery-main { background: var(--bg-cream); aspect-ratio: 1; overflow: hidden; }
.pd-gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.pd-no-img { width: 100%; aspect-ratio: 1; display: flex; align-items: center; justify-content: center; font-size: 64px; background: var(--bg-cream); }
.pd-gallery-thumbs { display: flex; gap: 8px; margin-top: 10px; }
.pd-thumb { width: calc(20% - 7px); aspect-ratio: 1; overflow: hidden; border: 2px solid transparent; cursor: pointer; background: none; padding: 0; }
.pd-thumb img { width: 100%; height: 100%; object-fit: cover; }
.pd-thumb.active, .pd-thumb:hover { border-color: var(--black); }
.pd-cat { font-size: 11px; font-weight: 500; letter-spacing: 0.2em; color: var(--accent); display: block; margin-bottom: 16px; }
.pd-title { font-family: var(--font-serif); font-size: clamp(20px, 2.5vw, 32px); font-weight: 500; line-height: 1.4; margin-bottom: 24px; }
.pd-price { display: flex; align-items: baseline; gap: 6px; margin-bottom: 28px; padding-bottom: 28px; border-bottom: 1px solid var(--border); }
.pd-price-num { font-family: var(--font-serif); font-size: 28px; font-weight: 500; letter-spacing: 0.02em; }
.pd-price-tax { font-size: 13px; color: var(--lgray); }
.pd-spec { width: 100%; border-collapse: collapse; margin-bottom: 32px; }
.pd-spec th, .pd-spec td { padding: 12px 0; border-bottom: 1px solid var(--border); font-size: 13px; }
.pd-spec th { color: var(--lgray); font-weight: 400; width: 80px; }
.pd-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 20px; }
.pd-actions .btn { flex: 1; min-width: 140px; text-align: center; justify-content: center; }
.pd-note { font-size: 12px; color: var(--lgray); line-height: 1.8; }
.pd-tabs { border-top: 1px solid var(--border); }
.pd-tab-nav { display: flex; gap: 0; border-bottom: 1px solid var(--border); }
.pd-tab-btn { padding: 16px 28px; font-size: 13px; font-family: var(--font); background: none; border: none; border-bottom: 2px solid transparent; color: var(--lgray); cursor: pointer; letter-spacing: 0.04em; margin-bottom: -1px; transition: all 0.2s; }
.pd-tab-btn.active { color: var(--black); border-bottom-color: var(--black); font-weight: 500; }
.pd-tab-btn:hover { color: var(--black); }
.pd-tab-pane { display: none; }
.pd-tab-pane.active { display: block; }

/* ===== POST CONTENT ===== */
.post-content { padding: 64px 0; max-width: 760px; margin: 0 auto; }
.post-content h2 { font-size: 22px; font-weight: 800; margin: 48px 0 16px; padding-bottom: 10px; border-bottom: 2px solid var(--border); font-family: var(--font-serif); }
.post-content h3 { font-size: 15px; font-weight: 500; letter-spacing: 0.05em; margin: 40px 0 12px; color: var(--black); font-family: var(--font-serif); }
.post-content p { font-size: 16px; line-height: 2.1; margin-bottom: 24px; color: #333; }
.post-content img { border-radius: 2px; margin: 32px 0; }
.post-content a { color: var(--accent); text-decoration: underline; }
.spec-table { width: 100%; border-collapse: collapse; font-size: 14px; margin-bottom: 32px; }
.spec-table th { width: 160px; padding: 11px 16px; background: var(--bg-cream); border: 1px solid var(--border); font-weight: 500; text-align: left; color: var(--black); vertical-align: top; }
.spec-table td { padding: 11px 16px; border: 1px solid var(--border); color: var(--gray); line-height: 1.7; }

/* ===== BLOG LIST PAGE ===== */
.blog-list-page { display: flex; flex-direction: column; }
.blog-item {
  display: flex; gap: 32px; align-items: flex-start;
  padding: 24px 0; border-bottom: 1px solid var(--border); transition: opacity 0.2s;
}
.blog-item:first-child { border-top: 1px solid var(--border); }
.blog-item:hover { opacity: 0.7; }
.blog-item-date { font-size: 12px; color: var(--lgray); min-width: 88px; padding-top: 3px; }
.blog-item-cat { font-size: 10px; font-weight: 500; color: var(--accent); background: var(--accent-bg); padding: 3px 10px; border-radius: 20px; white-space: nowrap; min-width: 90px; text-align: center; align-self: flex-start; }
.blog-item-title { font-size: 16px; font-weight: 500; flex: 1; font-family: var(--font-serif); }

/* ===== PRODUCTS ARCHIVE ===== */
.products-archive-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
}

/* ===== CAT FILTER ===== */
.cat-filter { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 40px; }
.cat-btn {
  padding: 6px 18px; border-radius: 20px;
  border: 1px solid var(--border); background: #fff;
  color: var(--gray); font-size: 12px; cursor: pointer;
  font-family: var(--font); transition: all 0.2s; letter-spacing: 0.04em;
}
.cat-btn.active, .cat-btn:hover { background: var(--black); color: #fff; border-color: var(--black); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-nav { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  .site-nav { display: none; }
  .hamburger { display: flex; }
  .site-nav.open {
    display: flex; flex-direction: column;
    position: fixed; top: 68px; left: 0; right: 0;
    background: #fff; padding: 24px 20px; gap: 20px;
    border-top: 1px solid var(--border); z-index: 99;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  }
  .hero { height: 60vh; min-height: 440px; }
  .hero h1 { font-size: 30px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .about-inner { grid-template-columns: 1fr; }
  .about-text { padding: 48px 20px; }
  .product-single-inner { grid-template-columns: 1fr; }
  .contact-strip-inner { flex-direction: column; text-align: center; }
  .footer-nav { grid-template-columns: repeat(2, 1fr); }
  .products-archive-grid { grid-template-columns: repeat(2, 1fr); }
  .pd-main { grid-template-columns: 1fr; gap: 40px; }
  .pd-actions { flex-direction: column; }
  .pd-tab-btn { padding: 14px 16px; font-size: 12px; }
}
@media (max-width: 480px) {
  .products-grid, .blog-grid, .products-archive-grid { grid-template-columns: 1fr; }
  .sec { padding: 56px 0; }
  .footer-inner { padding: 0 20px; }
}

/* ===== PAGINATION ===== */
.pagination { display: flex; justify-content: center; gap: 4px; margin-top: 64px; }
.pagination .page-numbers { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; font-size: 13px; border: 1px solid var(--border); color: var(--gray); transition: all 0.2s; }
.pagination .page-numbers.current { background: var(--black); color: #fff; border-color: var(--black); }
.pagination .page-numbers:hover:not(.current) { border-color: var(--black); color: var(--black); }
.pagination .page-numbers.dots { border: none; }

/* ===== PAGE HEADER SUBTITLE ===== */
.page-header-desc { font-size: 13px; color: rgba(255,255,255,0.55); margin-top: 12px; line-height: 1.8; }

/* ===== FAQ PAGE ===== */
.faq-page { padding: 80px 0; }
.faq-page .faq-group { margin-bottom: 64px; }
.faq-page .faq-group-title { font-size: 18px; font-weight: 500; letter-spacing: 0.08em; color: var(--black); border-bottom: 1px solid var(--border); padding-bottom: 16px; margin-bottom: 0; }
.faq-page .faq-list { list-style: none; padding: 0; margin: 0; }
.faq-page .faq-item { border-bottom: 1px solid var(--border); }
.faq-page .faq-q { width: 100%; background: none; border: none; text-align: left; padding: 20px 0; font-size: 14px; font-family: inherit; color: var(--black); cursor: pointer; display: flex; align-items: flex-start; gap: 12px; line-height: 1.7; }
.faq-page .faq-q::before { content: 'Q'; font-weight: 700; color: var(--accent); flex-shrink: 0; }
.faq-page .faq-q-icon { margin-left: auto; flex-shrink: 0; font-size: 18px; line-height: 1; color: var(--gray); transition: transform 0.3s; }
.faq-page .faq-item.open .faq-q-icon { transform: rotate(45deg); }
.faq-page .faq-a { display: none; padding: 0 0 20px 26px; font-size: 14px; line-height: 1.9; color: #555; }
.faq-page .faq-a::before { content: 'A　'; font-weight: 700; color: var(--accent); }
.faq-page .faq-item.open .faq-a { display: block; }

/* ===== EVENTS ===== */
.event-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border);
}

.event-item {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}

.event-date {
  flex-shrink: 0;
  width: 130px;
  font-size: 13px;
  font-family: var(--font-serif);
  color: var(--gray);
  padding-top: 3px;
  letter-spacing: 0.02em;
}

.event-body { flex: 1; min-width: 0; }

.event-title {
  font-size: 15px;
  font-family: var(--font-serif);
  color: var(--black);
  line-height: 1.5;
  margin-bottom: 4px;
}

.event-venue {
  font-size: 13px;
  color: var(--gray);
  margin-top: 4px;
}

.event-note {
  font-size: 12px;
  color: var(--lgray);
  margin-top: 2px;
}

.event-link {
  flex-shrink: 0;
  font-size: 12px;
  color: var(--gray);
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
  white-space: nowrap;
  transition: color 0.2s;
  align-self: center;
}
.event-link:hover { color: var(--accent); }

/* 過去のイベント */
.event-list--past .event-item--past .event-date,
.event-list--past .event-item--past .event-title {
  color: var(--lgray);
}

.sec-title--muted {
  font-size: 16px;
  color: var(--lgray);
}

.event-empty {
  color: var(--lgray);
  font-size: 14px;
  line-height: 2;
  padding: 32px 0;
}

/* トップページ：イベントリストはボーダー薄め */
.event-list--home { border-top-color: var(--border); }

@media (max-width: 600px) {
  .event-item { flex-wrap: wrap; gap: 8px; }
  .event-date { width: 100%; padding-top: 0; }
  .event-link { width: 100%; }
}

/* ===== FAQ（お問い合わせページ） ===== */
.faq-section {
  margin-bottom: 56px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}

.faq-section-title {
  font-size: 16px;
  font-family: var(--font-serif);
  letter-spacing: 0.06em;
  margin-bottom: 24px;
}

.faq-section .faq-group { margin-bottom: 8px; }

.faq-section .faq-group-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--lgray);
  text-transform: uppercase;
  margin: 20px 0 8px;
}

.faq-section .faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-section .faq-item:first-of-type { border-top: 1px solid var(--border); }

.faq-section .faq-q {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 0;
  font-size: 14px;
  font-family: var(--font-serif);
  cursor: pointer;
  user-select: none;
}
.faq-section .faq-q::-webkit-details-marker { display: none; }
.faq-section .faq-q::after {
  content: '+';
  flex-shrink: 0;
  margin-left: auto;
  font-size: 18px;
  font-weight: 300;
  color: var(--lgray);
  transition: transform 0.2s;
}
.faq-section details[open] .faq-q::after { transform: rotate(45deg); }

.faq-section .faq-a {
  padding: 0 0 20px 26px;
  font-size: 13px;
  color: var(--gray);
  line-height: 1.9;
}
.faq-section .faq-a p { margin-bottom: 8px; }
.faq-section .faq-a p:last-child { margin-bottom: 0; }
.faq-section details[open] .faq-a { display: block; }

/* ===== お問い合わせ 条件分岐 ===== */
.contact-step1 { margin-bottom: 32px; }

.contact-blocked {
  margin: 8px 0 32px;
  padding: 28px 32px;
  background: var(--bg-cream);
  border-left: 3px solid var(--border);
}

.contact-blocked-title {
  font-family: var(--font-serif);
  font-size: 15px;
  margin-bottom: 12px;
  color: var(--black);
}

.contact-blocked p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.9;
}

.cf-type-display {
  font-family: var(--font-serif);
  font-size: 14px;
  color: var(--black);
  padding: 10px 0;
  margin: 0;
}

.form-error {
  background: #fef2f2;
  border-left: 3px solid var(--accent);
  padding: 16px 20px;
  margin-bottom: 32px;
  font-size: 13px;
  color: var(--accent);
}
