/*
Theme Name: 柏屋 Kashiwaya
Theme URI: https://kashiwaya1872.com
Author: Kashiwaya Inc.
Description: 株式会社柏屋 オリジナルWordPressテーマ
Version: 1.0.0
License: Private
Text Domain: kashiwaya
*/

/*
Theme Name: 柏屋 Kashiwaya
Theme URI: https://kashiwaya1872.com
Author: Kashiwaya Inc.
Description: 株式会社柏屋 オリジナルWordPressテーマ
Version: 1.0.0
License: Private
Text Domain: kashiwaya
*/

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

:root {
  --ink: #58292c;
  --ink-soft: #7a3f42;
  --parchment: #f5f0e8;
  --cream: #faf7f2;
  --gold: #b8924a;
  --gold-light: #d4a96a;
  --gold-pale: #efe0c4;
  --stone: #8c8680;
  --stone-light: #ccc6bd;
  --white: #ffffff;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Noto Serif JP', serif;
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
}

/* ─── LOADING ─── */
#loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--ink);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
#loader.hidden { opacity: 0; visibility: hidden; }
.loader-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.2rem, 3vw, 2rem);
  color: var(--gold);
  letter-spacing: 0.3em;
  animation: pulse 1.5s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:0.4} 50%{opacity:1} }

/* ─── HEADER ─── */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; flex-direction: column;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}
header.scrolled {
  background: rgba(250,247,242,0.96);
  backdrop-filter: blur(8px);
  box-shadow: 0 1px 0 var(--stone-light);
}
.header-top {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
  height: 56px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s;
}
header:not(.scrolled) .header-top { border-bottom-color: rgba(255,255,255,0.12); }
header.scrolled .header-top { border-bottom-color: var(--stone-light); }
.header-bottom {
  display: flex; align-items: center; justify-content: center;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
  height: 44px;
}
.logo {
  display: flex; align-items: center;
  text-decoration: none;
}
.logo-img { display: block; transition: opacity 0.3s; }
header:not(.scrolled) .logo-img--white { opacity: 1; }
header:not(.scrolled) .logo-img--dark  { display: none; }
header.scrolled .logo-img--white { display: none; }
header.scrolled .logo-img--dark  { opacity: 1; }

.header-contact {
  display: flex; flex-direction: column; align-items: flex-end; gap: 2px;
}
.header-top-right {
  display: flex; align-items: center; gap: 1.5rem;
}
.header-tel {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; letter-spacing: 0.1em;
  text-decoration: none; font-weight: 400;
  transition: color 0.2s;
}
header:not(.scrolled) .header-tel { color: var(--white); }
header.scrolled .header-tel { color: var(--ink); }
.header-tel:hover { color: var(--gold) !important; }
.header-hours {
  font-size: 0.62rem; letter-spacing: 0.1em;
}
header:not(.scrolled) .header-hours { color: rgba(255,255,255,0.6); }
header.scrolled .header-hours { color: var(--stone); }

.header-inquiry {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  text-decoration: none;
  font-size: 0.75rem; letter-spacing: 0.2em;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}
.header-inquiry:hover { background: var(--gold); color: var(--ink); }
.header-inquiry-icon { display: none; }

nav { display: flex; align-items: center; gap: 2.5rem; }
nav a {
  font-size: 0.8rem; letter-spacing: 0.15em;
  text-decoration: none; color: var(--ink-soft);
  position: relative; padding-bottom: 2px;
  font-family: 'Noto Serif JP', serif;
  transition: color 0.2s;
}
nav a::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 100%;
  height: 1px; background: var(--gold);
  transition: right 0.3s ease;
}
nav a:hover::after { right: 0; }
nav a:hover { color: var(--gold); }
header:not(.scrolled) nav a { color: rgba(255,255,255,0.85); }
header:not(.scrolled) nav a:hover { color: var(--gold-light); }
header:not(.scrolled) .nav-dropdown a { color: var(--ink-soft); }
header:not(.scrolled) .nav-dropdown a:hover { color: var(--gold); }

/* ─── DROPDOWN ─── */
.nav-item { position: relative; }
.nav-item > a { display: flex; align-items: center; gap: 0.3rem; }
.nav-dropdown {
  position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 0.5px solid var(--stone-light);
  box-shadow: 0 8px 24px rgba(26,23,20,0.1);
  min-width: 180px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s;
}
/* ナビとドロップダウンの間を透明な橋でつなぐ */
.nav-item::after {
  content: '';
  position: absolute;
  top: 100%; left: 0; right: 0;
  height: 20px;
  background: transparent;
}
.nav-item:hover .nav-dropdown {
  opacity: 1; visibility: visible; pointer-events: auto;
}
.nav-dropdown::before {
  content: ''; position: absolute; top: -5px; left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 9px; height: 9px;
  background: var(--white);
  border-left: 0.5px solid var(--stone-light);
  border-top: 0.5px solid var(--stone-light);
}
.nav-dropdown a {
  display: block; padding: 0.75rem 1.25rem;
  font-size: 0.78rem; letter-spacing: 0.1em;
  color: var(--ink-soft); text-decoration: none;
  border-bottom: 0.5px solid var(--stone-light);
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}
.nav-dropdown a:last-child { border-bottom: none; }
.nav-dropdown a:hover { background: var(--parchment); color: var(--gold); }
.nav-dropdown a::after { display: none; }

/* ─── HAMBURGER ─── */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px; background: none; border: none;
}
.hamburger span {
  display: block; width: 24px; height: 1.5px;
  background: var(--white); transition: all 0.3s;
}
header.scrolled .hamburger span { background: var(--ink); }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

/* ─── MOBILE MENU ─── */
.mobile-menu {
  position: fixed; inset: 0; z-index: 99;
  background: var(--ink); display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 2rem;
  opacity: 0; visibility: hidden; transition: all 0.4s ease;
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu > a {
  font-family: 'Shippori Mincho', serif;
  font-size: 1.3rem; letter-spacing: 0.2em;
  color: var(--parchment); text-decoration: none;
  transition: color 0.2s;
}
.mobile-menu > a:hover { color: var(--gold); }
.mobile-submenu {
  display: flex; flex-direction: column; align-items: center; gap: 0.9rem;
  margin-top: -0.5rem; margin-bottom: 0.5rem;
  padding-left: 1rem;
  border-left: 1px solid rgba(184,146,74,0.35);
}
.mobile-submenu a {
  font-family: 'Shippori Mincho', serif;
  font-size: 0.9rem !important;
  letter-spacing: 0.15em !important;
  color: rgba(245,240,232,0.55) !important;
  text-decoration: none;
  transition: color 0.2s;
}
.mobile-submenu a:hover { color: var(--gold) !important; }
.mobile-menu-contact {
  margin-top: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
}
.mobile-menu-tel {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; letter-spacing: 0.1em;
  color: var(--white); text-decoration: none;
  transition: color 0.2s;
}
.mobile-menu-tel:hover { color: var(--gold); }
.mobile-menu-hours {
  font-size: 0.7rem; letter-spacing: 0.12em;
  color: rgba(255,255,255,0.45);
}
.mobile-menu-inquiry {
  margin-top: 0.75rem;
  display: inline-block; padding: 0.6rem 2rem;
  border: 1px solid var(--gold); color: var(--gold);
  text-decoration: none; font-size: 0.8rem; letter-spacing: 0.25em;
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-inquiry:hover { background: var(--gold); color: var(--ink); }

/* ─── HERO ─── */
.hero {
  position: relative; height: 100svh; min-height: 600px;
  display: flex; align-items: flex-end;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(160deg, rgba(26,23,20,0.7) 0%, rgba(26,23,20,0.3) 60%, rgba(26,23,20,0.5) 100%),
    url('') center/cover no-repeat;
  transform: scale(1.05);
  animation: heroZoom 12s ease-out forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero-deco {
  position: absolute; top: 0; right: 0; width: 200px; height: 100%;
  background: repeating-linear-gradient(
    0deg,
    transparent, transparent 30px,
    rgba(184,146,74,0.08) 30px, rgba(184,146,74,0.08) 31px
  );
  pointer-events: none;
}
.hero-content {
  position: relative; z-index: 1;
  padding: clamp(2rem, 8vw, 6rem) clamp(1.5rem, 8vw, 8rem);
  padding-bottom: clamp(3rem, 8vw, 7rem);
  opacity: 0; transform: translateY(30px);
  animation: fadeUp 1s 0.8s ease forwards;
}
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
.hero-label {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: clamp(0.85rem, 1.5vw, 1rem);
  letter-spacing: 0.4em; color: var(--gold-light);
  margin-bottom: 1.25rem;
  display: flex; align-items: center; gap: 1rem;
}
.hero-label::before {
  content: ''; display: block; width: 40px; height: 1px;
  background: var(--gold-light);
}
.hero h1 {
  font-family: 'Shippori Mincho', serif;
  font-size: clamp(2.2rem, 6vw, 5rem);
  font-weight: 500; line-height: 1.3;
  color: var(--white); letter-spacing: 0.06em;
  margin-bottom: 1.5rem;
}
.hero h1 em {
  font-style: normal; color: var(--gold-light);
  display: block; font-size: 0.55em;
  letter-spacing: 0.15em; margin-bottom: 0.4rem;
}
.hero-desc {
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  color: rgba(255,255,255,0.75); line-height: 2;
  letter-spacing: 0.08em; max-width: 480px;
  margin-bottom: 2.5rem;
}
.hero-cta {
  display: inline-flex; align-items: center; gap: 1rem;
  padding: 0.9rem 2.5rem;
  background: transparent; border: 1px solid var(--gold);
  color: var(--white); text-decoration: none;
  font-size: 0.8rem; letter-spacing: 0.3em;
  transition: all 0.3s ease; font-family: 'Noto Serif JP', serif;
}
.hero-cta:hover { background: var(--gold); color: var(--ink); }
.hero-cta svg { transition: transform 0.3s; }
.hero-cta:hover svg { transform: translateX(4px); }
.year-badge {
  position: absolute; top: 50%; right: clamp(1.5rem, 6vw, 5rem);
  transform: translateY(-50%);
  display: flex; flex-direction: column; align-items: center;
  gap: 0.5rem; opacity: 0; animation: fadeIn 1s 1.2s ease forwards;
}
@keyframes fadeIn { to { opacity: 1; } }
.year-badge-line { width: 1px; height: 60px; background: var(--gold); opacity: 0.5; }
.year-badge-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem; font-weight: 300;
  color: rgba(255,255,255,0.15); line-height: 1;
  writing-mode: vertical-rl; letter-spacing: 0.05em;
}
.year-badge-text {
  font-size: 0.65rem; letter-spacing: 0.2em;
  color: var(--gold); writing-mode: vertical-rl;
}
.scroll-indicator {
  position: absolute; bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  opacity: 0; animation: fadeIn 1s 1.5s ease forwards;
}
.scroll-indicator span {
  font-size: 0.6rem; letter-spacing: 0.3em; color: rgba(255,255,255,0.5);
}
.scroll-line {
  width: 1px; height: 48px; background: rgba(255,255,255,0.3);
  position: relative; overflow: hidden;
}
.scroll-line::after {
  content: ''; position: absolute; top: -100%; left: 0;
  width: 100%; height: 100%; background: var(--gold);
  animation: scrollDown 1.8s ease-in-out infinite;
}
@keyframes scrollDown { to { top: 200%; } }

/* ─── SECTION COMMON ─── */
section { padding: clamp(4rem, 10vw, 8rem) clamp(1.5rem, 8vw, 8rem); }
.section-header { margin-bottom: clamp(2.5rem, 6vw, 5rem); }
.section-label {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: 0.85rem;
  letter-spacing: 0.35em; color: var(--gold);
  margin-bottom: 0.75rem;
  display: flex; align-items: center; gap: 1rem;
}
.section-label::before {
  content: ''; width: 30px; height: 1px; background: var(--gold);
}
.section-title {
  font-family: 'Shippori Mincho', serif;
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  font-weight: 500; letter-spacing: 0.08em;
  color: var(--ink); line-height: 1.4;
}
.section-title small {
  display: block; font-family: 'Cormorant Garamond', serif;
  font-size: 0.45em; letter-spacing: 0.3em;
  color: var(--stone); font-weight: 300; margin-top: 0.25rem;
  font-style: italic;
}

/* ─── SERVICES ─── */
.services { background: var(--cream); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5px;
  background: var(--stone-light);
  border: 1.5px solid var(--stone-light);
}
.service-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  position: relative; overflow: hidden;
  transition: background 0.3s;
  cursor: pointer;
}
.service-card::before {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 100%; height: 2px;
  background: var(--gold); transition: right 0.4s ease;
}
.service-card:hover::before { right: 0; }
.service-card:hover { background: var(--parchment); }
.service-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem; font-weight: 300;
  color: var(--gold-pale); line-height: 1;
  margin-bottom: 1rem; letter-spacing: -0.02em;
}
.service-icon { width: 40px; height: 40px; margin-bottom: 1.25rem; color: var(--gold); }
.service-title {
  font-family: 'Shippori Mincho', serif;
  font-size: 1.1rem; font-weight: 600;
  letter-spacing: 0.1em; margin-bottom: 0.75rem; color: var(--ink);
}
.service-desc {
  font-size: 0.82rem; line-height: 1.9;
  color: var(--stone); letter-spacing: 0.04em;
}
.service-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  margin-top: 1.5rem; font-size: 0.75rem; letter-spacing: 0.2em;
  color: var(--gold); text-decoration: none;
  transition: gap 0.2s;
}
.service-link:hover { gap: 0.9rem; }

/* ─── ABOUT ─── */
.about {
  background: var(--ink);
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  padding: 0;
}
.about-image { position: relative; min-height: 500px; overflow: hidden; }
.about-image img {
  width: 100%; height: 100%; object-fit: cover;
  filter: sepia(20%) contrast(1.05);
  transition: transform 8s ease;
}
.about-image:hover img { transform: scale(1.05); }
.about-image-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent 60%, var(--ink) 100%);
}
.about-content {
  padding: clamp(3rem, 8vw, 7rem) clamp(2rem, 6vw, 5rem);
  display: flex; flex-direction: column; justify-content: center;
}
.about-content .section-label { color: var(--gold); }
.about-content .section-title { color: var(--parchment); }
.about-year {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(4rem, 10vw, 8rem); font-weight: 300;
  color: rgba(255,255,255,0.06); line-height: 1;
  letter-spacing: -0.02em; margin: -1rem 0 1rem -0.05em;
}
.about-text {
  font-size: clamp(0.85rem, 1.4vw, 0.95rem);
  line-height: 2.2; color: rgba(245,240,232,0.7);
  letter-spacing: 0.05em; margin-bottom: 2.5rem;
}
.about-link {
  display: inline-flex; align-items: center; gap: 0.75rem;
  color: var(--gold); text-decoration: none;
  font-size: 0.8rem; letter-spacing: 0.25em;
  border-bottom: 1px solid rgba(184,146,74,0.3);
  padding-bottom: 0.25rem;
  transition: gap 0.3s, border-color 0.3s;
}
.about-link:hover { gap: 1.25rem; border-color: var(--gold); }

/* ─── PHILOSOPHY BAND ─── */
.philosophy-band {
  background: var(--gold);
  padding: 3rem clamp(1.5rem, 8vw, 8rem);
  display: flex; align-items: center; gap: 3rem; flex-wrap: wrap;
}
.philosophy-quote {
  font-family: 'Shippori Mincho', serif;
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 500; color: var(--ink);
  letter-spacing: 0.1em; line-height: 1.6; flex: 1;
}
.philosophy-divider { width: 1px; height: 80px; background: rgba(26,23,20,0.2); }
.philosophy-sub {
  font-size: 0.82rem; color: rgba(26,23,20,0.65);
  line-height: 2; letter-spacing: 0.08em; max-width: 320px;
}

/* ─── NEWS ─── */
.news { background: var(--parchment); }
.news-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 2.5rem; flex-wrap: wrap; gap: 1rem;
}
.news-all-link {
  font-size: 0.75rem; letter-spacing: 0.25em;
  color: var(--gold); text-decoration: none;
  display: flex; align-items: center; gap: 0.5rem;
  border-bottom: 1px solid rgba(184,146,74,0.3); padding-bottom: 2px;
  transition: gap 0.2s, border-color 0.2s;
}
.news-all-link:hover { gap: 0.9rem; border-color: var(--gold); }
.news-list { display: flex; flex-direction: column; }
.news-item {
  display: grid; grid-template-columns: 120px auto 1fr;
  align-items: center; gap: 1.5rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--stone-light);
  text-decoration: none; color: inherit;
}
.news-item:first-child { border-top: 1px solid var(--stone-light); }
.news-date {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.9rem; color: var(--stone); letter-spacing: 0.1em;
}
.news-tag {
  display: inline-block; padding: 0.15rem 0.6rem;
  border: 1px solid var(--stone-light);
  font-size: 0.65rem; letter-spacing: 0.15em; color: var(--stone);
  white-space: nowrap;
}
.news-title {
  font-size: 0.88rem; letter-spacing: 0.05em; line-height: 1.6;
  color: var(--ink-soft); transition: color 0.2s;
}
.news-item:hover .news-title { color: var(--gold); }

/* ─── CONTACT BAND ─── */
.contact-band {
  background: var(--ink);
  padding: clamp(3rem, 8vw, 6rem) clamp(1.5rem, 8vw, 8rem);
  display: grid; grid-template-columns: 1fr auto;
  align-items: center; gap: 3rem;
}
.contact-heading {
  font-family: 'Shippori Mincho', serif;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  color: var(--parchment); font-weight: 500;
  letter-spacing: 0.1em; line-height: 1.5;
}
.contact-heading small {
  display: block; font-size: 0.5em;
  color: var(--stone); font-weight: 300;
  letter-spacing: 0.2em; margin-bottom: 0.5rem;
  font-family: 'Cormorant Garamond', serif; font-style: italic;
}
.contact-actions { display: flex; flex-direction: column; gap: 1rem; align-items: flex-end; }
.contact-tel {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--white); letter-spacing: 0.1em; text-decoration: none;
  transition: color 0.2s;
}
.contact-tel:hover { color: var(--gold); }
.contact-tel-note { font-size: 0.7rem; letter-spacing: 0.15em; color: var(--stone); }
.contact-btn {
  display: inline-block; padding: 0.9rem 2.5rem;
  border: 1px solid var(--gold);
  color: var(--gold); text-decoration: none;
  font-size: 0.8rem; letter-spacing: 0.3em;
  transition: all 0.3s;
}
.contact-btn:hover { background: var(--gold); color: var(--ink); }

/* ─── FOOTER ─── */
footer {
  background: #111009;
  padding: clamp(2rem, 5vw, 4rem) clamp(1.5rem, 8vw, 8rem);
  display: grid; grid-template-columns: 1fr auto;
  align-items: end; gap: 2rem;
}
.footer-address {
  font-size: 0.75rem; color: rgba(245,240,232,0.3);
  line-height: 2; letter-spacing: 0.08em;
}
.footer-links {
  display: flex; gap: 1.5rem; flex-wrap: wrap; justify-content: flex-end;
}
.footer-links a {
  font-size: 0.7rem; letter-spacing: 0.15em; color: rgba(245,240,232,0.3);
  text-decoration: none; transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }
.footer-copy {
  grid-column: 1 / -1;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.7rem; letter-spacing: 0.2em;
  color: rgba(245,240,232,0.2); text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}

/* ─── REVEAL ANIMATION ─── */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.35s; }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .header-bottom { display: none; }
  .hamburger { display: flex; }
  .header-contact { display: none; }
  .about { grid-template-columns: 1fr; }
  .about-image { min-height: 300px; }
  .about-image-overlay { background: linear-gradient(0deg, var(--ink) 0%, transparent 60%); }
  .contact-band { grid-template-columns: 1fr; }
  .contact-actions { align-items: flex-start; }
  .year-badge { display: none; }
  footer { grid-template-columns: 1fr; }
  .footer-links { justify-content: flex-start; }
  .header-inquiry-text { display: none; }
  .header-inquiry {
    padding: 0.5rem 0.6rem;
    display: flex; align-items: center; justify-content: center;
  }
  .header-inquiry-icon { display: block; }
}
@media (max-width: 600px) {
  .news-item { grid-template-columns: 1fr; gap: 0.4rem; padding: 1rem 0; }
  .news-tag { border: none; padding: 0; }
  .philosophy-divider { display: none; }
  .philosophy-band { gap: 1.5rem; }
}


/* ─── 子ページ：ヘッダーを最初から黒文字に ─── */
header.is-subpage:not(.scrolled) {
  background: rgba(250,247,242,0.96);
  backdrop-filter: blur(8px);
  box-shadow: 0 1px 0 var(--stone-light);
}
header.is-subpage .header-top {
  border-bottom-color: var(--stone-light) !important;
}
header.is-subpage .logo-img--white { display: none !important; }
header.is-subpage .logo-img--dark  { display: block !important; }
header.is-subpage .header-tel { color: var(--ink) !important; }
header.is-subpage .header-hours { color: var(--stone) !important; }
header.is-subpage nav a { color: var(--ink-soft) !important; }
header.is-subpage .hamburger span { background: var(--ink) !important; }

/* ════════════════════════════════
   会社概要ページ
   ════════════════════════════════ */

.company-page { padding-top: 100px; }

/* ─── ページヒーロー ─── */
.page-hero {
  position: relative;
  height: 280px;
  display: flex; align-items: center;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background: var(--ink);
}
.page-hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent, transparent 60px,
    rgba(184,146,74,0.04) 60px, rgba(184,146,74,0.04) 61px
  );
}
.page-hero-content {
  position: relative; z-index: 1;
  padding: 0 clamp(1.5rem, 8vw, 8rem);
}
.page-hero-label {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.85rem; letter-spacing: 0.4em;
  color: var(--gold); margin-bottom: 0.75rem;
  display: flex; align-items: center; gap: 1rem;
}
.page-hero-label::before {
  content: ''; width: 30px; height: 1px; background: var(--gold);
}
.page-hero-title {
  font-family: 'Shippori Mincho', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 500; color: var(--white);
  letter-spacing: 0.1em; line-height: 1;
}

/* ─── セクション共通 ─── */
.company-section,
.business-section,
.realestate-section,
.history-section {
  padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 8vw, 8rem);
}
.company-section { background: var(--cream); }
.business-section { background: var(--parchment); }
.realestate-section { background: var(--cream); }
.history-section { background: var(--ink); }
.history-section .section-label { color: var(--gold); }
.history-section .section-title { color: var(--parchment); }

/* ─── 会社概要テーブル ─── */
.company-table-wrap {
  overflow: hidden;
}
.company-table {
  width: 100%;
  border-collapse: collapse;
}
.company-table th,
.company-table td {
  padding: 1.1rem 1.5rem;
  border-bottom: 1px solid var(--stone-light);
  font-size: 0.9rem; line-height: 1.9;
  letter-spacing: 0.05em; text-align: left;
  vertical-align: top;
}
.company-table tr:last-child th,
.company-table tr:last-child td { border-bottom: none; }
.company-table th {
  width: 160px;
  font-family: 'Shippori Mincho', serif;
  font-weight: 500; color: var(--ink);
  background: var(--parchment);
  white-space: nowrap;
}
.company-table td { color: var(--ink-soft); }
.company-table td a {
  color: var(--gold); text-decoration: none;
  transition: opacity 0.2s;
}
.company-table td a:hover { opacity: 0.7; }

/* ─── 事業内容カード ─── */
.business-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5px;
  background: var(--stone-light);
  border: 1.5px solid var(--stone-light);
}
.business-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  position: relative; overflow: hidden;
  transition: background 0.3s;
}
.business-card::before {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 100%; height: 2px;
  background: var(--gold); transition: right 0.4s ease;
}
.business-card:hover::before { right: 0; }
.business-card:hover { background: var(--cream); }
.business-card-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem; font-weight: 300;
  color: var(--gold-pale); line-height: 1;
  margin-bottom: 1rem;
}
.business-card-icon {
  width: 40px; height: 40px;
  margin-bottom: 1.25rem; color: var(--gold);
}
.business-card-title {
  font-family: 'Shippori Mincho', serif;
  font-size: 1.15rem; font-weight: 600;
  letter-spacing: 0.1em; margin-bottom: 0.75rem; color: var(--ink);
}
.business-card-desc {
  font-size: 0.85rem; line-height: 1.9;
  color: var(--stone); letter-spacing: 0.04em;
}
.business-card-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  margin-top: 1.5rem; font-size: 0.78rem; letter-spacing: 0.2em;
  color: var(--gold); text-decoration: none;
  transition: gap 0.2s;
}
.business-card-link:hover { gap: 0.9rem; }

/* ─── 不動産カード ─── */
.realestate-grid {
  display: flex; flex-direction: column;
  gap: 2rem;
}
.realestate-card {
  background: var(--white);
  border: 1px solid var(--stone-light);
  transition: box-shadow 0.3s;
}
.realestate-card:hover {
  box-shadow: 0 6px 24px rgba(26,23,20,0.07);
}
.realestate-card-header {
  display: flex; align-items: center;
  padding: 1.1rem 2rem;
  background: var(--parchment);
  border-bottom: 1px solid var(--stone-light);
}
.realestate-card-header::before {
  content: ''; display: block;
  width: 3px; height: 1.1rem;
  background: var(--gold);
  margin-right: 0.9rem; flex-shrink: 0;
}
.realestate-card-name {
  font-family: 'Shippori Mincho', serif;
  font-size: 1rem; font-weight: 600;
  letter-spacing: 0.12em; color: var(--ink);
}
.realestate-dl {
  display: flex; flex-direction: column;
  padding: 0 2rem;
}
.realestate-dl-row {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 0.5rem 1rem;
  padding: 1rem 1rem 1rem 0;
  border-bottom: 1px solid var(--stone-light);
}
.realestate-dl-row:last-child { border-bottom: none; }
.realestate-dl dt {
  font-size: 0.72rem; letter-spacing: 0.1em;
  color: var(--stone); font-family: 'Noto Serif JP', serif;
  padding-top: 0.15rem;
}
.realestate-dl dd {
  font-size: 0.85rem; line-height: 1.8;
  color: var(--ink-soft); letter-spacing: 0.04em;
}

/* ─── 沿革タイムライン ─── */
.history-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}
.history-timeline::before {
  content: '';
  position: absolute; top: 0; bottom: 0; left: 90px;
  width: 1px; background: rgba(184,146,74,0.25);
}
.history-item {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 0 2.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  position: relative;
}
.history-item:last-child { border-bottom: none; }
/* タイムラインの点 */
.history-item::after {
  content: '';
  position: absolute; top: 1.9rem; left: calc(90px - 4px);
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold); opacity: 0.5;
  transition: opacity 0.2s, transform 0.2s;
}
.history-item.history-milestone::after {
  opacity: 1; transform: scale(1.5);
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,146,74,0.2);
}
.history-year {
  text-align: right;
  padding-right: 2rem;
  padding-top: 0.1rem;
}
.history-year-num {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; font-weight: 300;
  color: var(--gold); letter-spacing: 0.05em; line-height: 1.2;
}
.history-year-era {
  display: block;
  font-size: 0.65rem; letter-spacing: 0.1em;
  color: rgba(255,255,255,0.3); margin-top: 0.2rem;
}
.history-body {
  font-size: 0.88rem; line-height: 1.9;
  color: rgba(245,240,232,0.65);
  letter-spacing: 0.05em;
  padding-top: 0.15rem;
}
.history-milestone .history-body {
  color: rgba(245,240,232,0.9);
  font-family: 'Shippori Mincho', serif;
}

/* ─── レスポンシブ（会社概要ページ） ─── */
@media (max-width: 768px) {
  .company-page { padding-top: 56px; }
  .company-table th { width: 100px; }
  .realestate-dl-row { grid-template-columns: 80px 1fr; }
  .history-timeline::before { left: 70px; }
  .history-item { grid-template-columns: 70px 1fr; gap: 0 1.5rem; }
  .history-item::after { left: calc(70px - 4px); }
  .history-year-num { font-size: 1.1rem; }
}
@media (max-width: 500px) {
  .company-table,
  .company-table tbody,
  .company-table tr,
  .company-table th,
  .company-table td { display: block; width: 100%; }
  .company-table th {
    padding-bottom: 0.3rem;
    border-bottom: none;
    background: var(--parchment);
  }
  .company-table td { padding-top: 0.3rem; }
  .history-timeline::before { display: none; }
  .history-item { grid-template-columns: 1fr; gap: 0.3rem; }
  .history-item::after { display: none; }
  .history-year { text-align: left; padding-right: 0; }
  .history-year-num { display: inline; font-size: 1.1rem; }
  .history-year-era { display: inline; margin-left: 0.5rem; }
}


/* ════════════════════════════════
   プライバシーポリシーページ
   ════════════════════════════════ */

.policy-page { padding-top: 100px; }

.policy-section {
  padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 8vw, 8rem);
  background: var(--cream);
  max-width: 860px;
  margin: 0 auto;
}

/* イントロ文 */
.policy-intro {
  font-size: 0.9rem; line-height: 2.1;
  color: var(--stone); letter-spacing: 0.06em;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--stone-light);
  margin-bottom: 3rem;
}

/* 各条文 */
.policy-body { display: flex; flex-direction: column; gap: 0; }

.policy-item {
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--stone-light);
}
.policy-item:last-child { border-bottom: none; }

.policy-item-title {
  font-family: 'Shippori Mincho', serif;
  font-size: clamp(0.95rem, 1.8vw, 1.05rem);
  font-weight: 600; letter-spacing: 0.08em;
  color: var(--ink); line-height: 1.6;
  display: flex; align-items: baseline; gap: 1rem;
  margin-bottom: 1.25rem;
}
.policy-item-num { display: none; }

.policy-item-content p {
  font-size: 0.88rem; line-height: 2.1;
  color: var(--ink-soft); letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}
.policy-item-content p:last-child { margin-bottom: 0; }

.policy-list {
  list-style: none; margin-top: 0.75rem;
  display: flex; flex-direction: column; gap: 0.4rem;
}
.policy-list li {
  font-size: 0.88rem; line-height: 1.8;
  color: var(--ink-soft); letter-spacing: 0.05em;
  padding-left: 1.2rem; position: relative;
}
.policy-list li::before {
  content: '';
  position: absolute; left: 0; top: 0.7em;
  width: 5px; height: 1px; background: var(--gold);
}

/* お問い合わせボックス */
.policy-contact-box {
  margin-top: 1.5rem;
  padding: 1.5rem 2rem;
  background: var(--parchment);
  border-left: 2px solid var(--gold);
  display: flex; flex-direction: column; gap: 0.3rem;
}
.policy-contact-label {
  font-size: 0.72rem; letter-spacing: 0.2em;
  color: var(--stone); margin-bottom: 0.25rem;
}
.policy-contact-tel {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; letter-spacing: 0.1em;
  color: var(--ink); text-decoration: none;
  transition: color 0.2s;
}
.policy-contact-tel:hover { color: var(--gold); }
.policy-contact-hours {
  font-size: 0.72rem; letter-spacing: 0.1em; color: var(--stone);
}

/* 会社名 */
.policy-date {
  margin-top: 3rem;
  font-family: 'Shippori Mincho', serif;
  font-size: 0.85rem; letter-spacing: 0.15em;
  color: var(--stone); text-align: right;
}

@media (max-width: 768px) {
  .policy-page { padding-top: 56px; }
  .policy-section { margin: 0; }
  .policy-contact-box { padding: 1.25rem 1.5rem; }
}


/* ════════════════════════════════
   よくあるご質問ページ
   ════════════════════════════════ */

.faq-question {
  display: flex; align-items: baseline; gap: 1rem;
}
.faq-q, .faq-a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; font-weight: 400;
  color: var(--gold); letter-spacing: 0.05em;
  flex-shrink: 0; line-height: 1;
}
.faq-answer {
  display: flex; align-items: baseline; gap: 1rem;
}
.faq-a { color: var(--stone); }
.faq-answer p { margin-bottom: 0; }

/* お問い合わせ誘導 */
.faq-contact {
  margin-top: 3.5rem;
  padding: 2rem 2.5rem;
  background: var(--parchment);
  border-left: 2px solid var(--gold);
  display: flex; flex-direction: column; gap: 1rem;
}
.faq-contact-text {
  font-family: 'Shippori Mincho', serif;
  font-size: 0.95rem; letter-spacing: 0.1em;
  color: var(--ink);
}
.faq-contact-actions {
  display: flex; flex-direction: column; gap: 0.3rem;
}

@media (max-width: 768px) {
  .faq-contact { padding: 1.5rem; }
}


/* ════════════════════════════════
   取扱商品一覧ページ
   ════════════════════════════════ */

.list-section {
  padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 8vw, 8rem);
  background: var(--cream);
  max-width: 960px;
  margin: 0 auto;
}

.list-note {
  font-size: 0.85rem; color: var(--stone);
  letter-spacing: 0.06em; line-height: 1.8;
  margin-bottom: 2.5rem;
}

/* ─── タブ ─── */
.list-tabs {
  display: flex; gap: 0;
  border: 1px solid var(--stone-light);
  margin-bottom: 3rem;
  overflow: hidden;
}
.list-tab {
  flex: 1; padding: 0.9rem 1rem;
  background: var(--white); border: none;
  border-right: 1px solid var(--stone-light);
  font-family: 'Noto Serif JP', serif;
  font-size: 0.82rem; letter-spacing: 0.1em;
  color: var(--stone); cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.list-tab:last-child { border-right: none; }
.list-tab:hover { background: var(--parchment); color: var(--ink); }
.list-tab.active {
  background: var(--ink); color: var(--white);
}

/* ─── パネル ─── */
.list-panel { display: none; }
.list-panel.active { display: block; }

/* ─── 商品グループ ─── */
.list-group {
  padding: 2rem 0;
  border-bottom: 1px solid var(--stone-light);
}
.list-group:first-child { padding-top: 0; }
.list-group:last-child { border-bottom: none; }

.list-group-title {
  font-family: 'Shippori Mincho', serif;
  font-size: 1rem; font-weight: 600;
  letter-spacing: 0.12em; color: var(--ink);
  margin-bottom: 1rem;
  display: flex; align-items: center; gap: 0.75rem;
}
.list-group-title::before {
  content: ''; display: block;
  width: 3px; height: 1rem;
  background: var(--gold); flex-shrink: 0;
}

.list-items {
  list-style: none;
  display: flex; flex-direction: column; gap: 0.5rem;
  padding-left: 1rem;
}
.list-items li {
  font-size: 0.85rem; line-height: 1.8;
  color: var(--ink-soft); letter-spacing: 0.04em;
  position: relative; padding-left: 1rem;
}
.list-items li::before {
  content: '';
  position: absolute; left: 0; top: 0.75em;
  width: 4px; height: 1px; background: var(--stone-light);
}

/* ─── メーカーグリッド ─── */
.list-maker-note {
  font-size: 0.75rem; letter-spacing: 0.15em;
  color: var(--stone); margin-bottom: 2rem;
}
.list-maker-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 2rem 1.5rem;
}
.list-maker-item {
  background: transparent;
  display: flex; align-items: center; justify-content: center;
  padding: 0;
  transition: opacity 0.2s;
}
.list-maker-item:hover { opacity: 0.7; }
.list-maker-item img {
  max-width: 120px; max-height: 48px;
  object-fit: contain;
}

@media (max-width: 768px) {
  .list-tabs { flex-direction: column; }
  .list-tab { border-right: none; border-bottom: 1px solid var(--stone-light); }
  .list-tab:last-child { border-bottom: none; }
  .list-maker-grid { grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); }
}


/* ════════════════════════════════
   商品仕入れページ群
   ════════════════════════════════ */

/* ─── 商品仕入れ（親）イントロ ─── */
.product-intro-section {
  padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 8vw, 8rem);
  background: var(--cream);
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; align-items: center;
}
.product-intro-text .section-label { margin-bottom: 0.75rem; }
.product-intro-desc {
  font-size: 0.9rem; line-height: 2; color: var(--stone);
  letter-spacing: 0.06em; margin-top: 1.25rem;
}
.product-features {
  display: flex; flex-direction: column; gap: 1.25rem;
}
.product-feature {
  display: flex; align-items: center; gap: 1.25rem;
  padding: 1.25rem 1.5rem;
  background: var(--white); border: 1px solid var(--stone-light);
  transition: box-shadow 0.2s;
}
.product-feature:hover { box-shadow: 0 4px 16px rgba(88,41,44,0.06); }
.product-feature svg {
  width: 32px; height: 32px; flex-shrink: 0; color: var(--gold);
}
.product-feature span {
  font-family: 'Shippori Mincho', serif;
  font-size: 0.9rem; letter-spacing: 0.1em; color: var(--ink);
}
.product-feature-sup {
  font-size: 0.65rem; color: var(--gold); margin-left: 1px;
}
.product-feature-footnote {
  margin-top: 1.5rem;
  font-size: 0.75rem; line-height: 1.8;
  color: var(--stone); letter-spacing: 0.05em;
}

/* ─── カテゴリーカード ─── */
.product-cat-section {
  padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 8vw, 8rem);
  background: var(--parchment);
}
.product-cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.product-cat-card {
  background: var(--white);
  text-decoration: none; color: inherit;
  border: 1px solid var(--stone-light);
  overflow: hidden;
  transition: box-shadow 0.3s;
  display: block;
}
.product-cat-card:hover { box-shadow: 0 8px 32px rgba(88,41,44,0.1); }
.product-cat-card-img {
  height: 200px;
  background-size: cover; background-position: center;
  transition: transform 0.6s ease;
}
.product-cat-card:hover .product-cat-card-img { transform: scale(1.04); }
.product-cat-card-body { padding: 1.5rem; }
.product-cat-card-title {
  font-family: 'Shippori Mincho', serif;
  font-size: 1rem; font-weight: 600;
  letter-spacing: 0.1em; color: var(--ink); margin-bottom: 0.6rem;
}
.product-cat-card-desc {
  font-size: 0.82rem; line-height: 1.8;
  color: var(--stone); letter-spacing: 0.04em; margin-bottom: 1rem;
}
.product-cat-card-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.75rem; letter-spacing: 0.2em; color: var(--gold);
  transition: gap 0.2s;
}
.product-cat-card:hover .product-cat-card-link { gap: 0.9rem; }

/* ─── お取引の流れ ─── */
.flow-section {
  padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 8vw, 8rem);
  background: var(--cream);
}
.flow-steps {
  display: flex; flex-direction: column;
  max-width: 680px; margin: 0 auto;
  gap: 0;
}
.flow-step {
  background: var(--white);
  border: 1px solid var(--stone-light);
  padding: 2rem 2.5rem;
  position: relative;
}
.flow-step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.75rem; letter-spacing: 0.3em;
  color: var(--gold); margin-bottom: 0.6rem;
}
.flow-step-title {
  font-family: 'Shippori Mincho', serif;
  font-size: 1.05rem; font-weight: 600;
  letter-spacing: 0.1em; color: var(--ink); margin-bottom: 0.75rem;
}
.flow-step-desc {
  font-size: 0.85rem; line-height: 1.9;
  color: var(--stone); letter-spacing: 0.04em;
}
.flow-arrow {
  display: flex; justify-content: center;
  padding: 0.5rem 0; color: var(--gold-light);
}

/* ─── サブカテゴリーページ共通 ─── */
.subcat-intro-section {
  padding: clamp(2.5rem, 5vw, 4rem) clamp(1.5rem, 8vw, 8rem);
  background: var(--cream);
  border-bottom: 1px solid var(--stone-light);
}
.subcat-breadcrumb {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.75rem; letter-spacing: 0.1em;
  color: var(--stone); margin-bottom: 1.25rem;
}
.subcat-breadcrumb a {
  color: var(--gold); text-decoration: none;
  transition: opacity 0.2s;
}
.subcat-breadcrumb a:hover { opacity: 0.7; }
.subcat-intro-desc {
  font-size: 0.9rem; line-height: 2; color: var(--stone);
  letter-spacing: 0.06em; max-width: 720px;
}

.subcat-products-section {
  padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 8vw, 8rem);
  background: var(--parchment);
}
.subcat-product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.subcat-product-card {
  background: var(--white);
  border: 1px solid var(--stone-light);
  overflow: hidden;
  transition: box-shadow 0.3s;
}
.subcat-product-card:hover { box-shadow: 0 6px 24px rgba(88,41,44,0.08); }
.subcat-product-img {
  height: 200px; overflow: hidden;
  background: var(--parchment);
}
.subcat-product-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.subcat-product-card:hover .subcat-product-img img { transform: scale(1.04); }
.subcat-product-body { padding: 1.25rem 1.5rem; }
.subcat-product-name {
  font-family: 'Shippori Mincho', serif;
  font-size: 1rem; font-weight: 600;
  letter-spacing: 0.1em; color: var(--ink); margin-bottom: 0.6rem;
}
.subcat-product-variants {
  list-style: none; display: flex; flex-direction: column; gap: 0.25rem;
}
.subcat-product-variants li {
  font-size: 0.78rem; color: var(--stone); letter-spacing: 0.05em;
  padding-left: 0.8rem; position: relative;
}
.subcat-product-variants li::before {
  content: ''; position: absolute; left: 0; top: 0.6em;
  width: 4px; height: 1px; background: var(--gold);
}

.subcat-more-note {
  font-size: 0.85rem; color: var(--stone);
  letter-spacing: 0.06em; margin-bottom: 1.5rem;
}
.subcat-list-link { display: flex; justify-content: flex-start; }

/* ─── レスポンシブ ─── */
@media (max-width: 768px) {
  .product-intro-section { grid-template-columns: 1fr; }
  .flow-step { padding: 1.5rem; }
}


/* ════════════════════════════════
   お問い合わせページ
   ════════════════════════════════ */

/* ─── 連絡先情報 ─── */
.contact-info-section {
  padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 8vw, 8rem);
  background: var(--parchment);
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 3rem; align-items: start;
}
.contact-info-divider {
  background: var(--stone-light); width: 1px; height: 100%;
  min-height: 80px;
}
.contact-info-label {
  font-family: 'Shippori Mincho', serif;
  font-size: 0.78rem; letter-spacing: 0.2em;
  color: var(--stone); margin-bottom: 0.75rem;
}
.contact-info-tel-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  color: var(--ink); text-decoration: none;
  letter-spacing: 0.08em; display: block;
  margin-bottom: 0.4rem;
  transition: color 0.2s;
}
.contact-info-tel-num:hover { color: var(--gold); }
.contact-info-hours {
  font-size: 0.75rem; letter-spacing: 0.1em; color: var(--stone);
}
.contact-info-desc {
  font-size: 0.85rem; line-height: 2; color: var(--ink-soft);
  letter-spacing: 0.05em; margin-bottom: 0.75rem;
}
.contact-info-note {
  font-size: 0.75rem; line-height: 1.8; color: var(--stone);
  letter-spacing: 0.04em; margin-bottom: 0.4rem;
}
.contact-info-note a { color: var(--gold); text-decoration: none; }
.contact-info-note a:hover { text-decoration: underline; }

/* ─── フォームセクション ─── */
.contact-form-section {
  padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 8vw, 8rem);
  background: var(--cream);
}
.contact-form-wrap {
  max-width: 720px; margin: 0 auto;
}

/* ─── フォームフィールド共通 ─── */
.cf7-form { display: flex; flex-direction: column; gap: 0; }
.cf7-field {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--stone-light);
}
.cf7-field:first-child { padding-top: 0; }
.cf7-label {
  display: flex; align-items: center; gap: 0.75rem;
  font-family: 'Shippori Mincho', serif;
  font-size: 0.88rem; letter-spacing: 0.1em;
  color: var(--ink); margin-bottom: 0.75rem;
}
.cf7-required {
  font-size: 0.65rem; letter-spacing: 0.1em;
  color: var(--white); background: var(--gold);
  padding: 0.15rem 0.5rem;
}
.cf7-input, .cf7-select, .cf7-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--stone-light);
  background: var(--white);
  font-family: 'Noto Serif JP', serif;
  font-size: 0.88rem; letter-spacing: 0.05em;
  color: var(--ink); outline: none;
  transition: border-color 0.2s;
  appearance: none;
}
.cf7-input:focus, .cf7-select:focus, .cf7-textarea:focus {
  border-color: var(--gold);
}
.cf7-input::placeholder, .cf7-textarea::placeholder {
  color: var(--stone-light);
}
.cf7-input--zip { width: 140px; margin-bottom: 0.5rem; }
.cf7-input--tel { max-width: 280px; }
.cf7-address-wrap {
  display: flex; flex-direction: column; gap: 0.5rem;
}
.cf7-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' fill='none'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%238c8680' stroke-width='1.2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  max-width: 200px;
}
.cf7-textarea { resize: vertical; min-height: 160px; }

/* ラジオボタン */
.cf7-radio-group {
  display: flex; flex-wrap: wrap; gap: 1rem;
}
.cf7-radio-label {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.85rem; letter-spacing: 0.06em;
  color: var(--ink-soft); cursor: pointer;
}
.cf7-radio-label input[type="radio"] {
  accent-color: var(--gold); width: 16px; height: 16px;
}

/* 必須注記・送信ボタン */
.cf7-required-note {
  font-size: 0.75rem; color: var(--stone);
  letter-spacing: 0.1em; margin-top: 1.5rem;
  margin-bottom: 2rem;
}
.cf7-submit-wrap { display: flex; justify-content: center; }
.cf7-submit {
  padding: 1rem 4rem;
  background: var(--ink); border: none;
  color: var(--white);
  font-family: 'Noto Serif JP', serif;
  font-size: 0.88rem; letter-spacing: 0.3em;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.cf7-submit:hover { background: var(--gold); }

/* Contact Form 7 デフォルトスタイル上書き */
.wpcf7-form .wpcf7-text,
.wpcf7-form .wpcf7-email,
.wpcf7-form .wpcf7-tel,
.wpcf7-form .wpcf7-textarea,
.wpcf7-form .wpcf7-select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--stone-light);
  background: var(--white);
  font-family: 'Noto Serif JP', serif;
  font-size: 0.88rem; color: var(--ink);
  outline: none; transition: border-color 0.2s;
}
.wpcf7-form .wpcf7-text:focus,
.wpcf7-form .wpcf7-email:focus,
.wpcf7-form .wpcf7-tel:focus,
.wpcf7-form .wpcf7-textarea:focus { border-color: var(--gold); }
.wpcf7-form .wpcf7-submit {
  padding: 1rem 4rem;
  background: var(--ink); border: none;
  color: var(--white);
  font-family: 'Noto Serif JP', serif;
  font-size: 0.88rem; letter-spacing: 0.3em;
  cursor: pointer; transition: background 0.2s;
}
.wpcf7-form .wpcf7-submit:hover { background: var(--gold); }

/* ─── レスポンシブ ─── */
@media (max-width: 768px) {
  .contact-info-section {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .contact-info-divider { display: none; }
  .cf7-submit { width: 100%; }
}


/* ════════════════════════════════
   ご家庭用品ページ
   ════════════════════════════════ */

/* ─── イントロ ─── */
.home-intro-section {
  padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 8vw, 8rem);
  background: var(--cream);
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}
.home-intro-body p {
  font-size: 0.9rem; line-height: 2.2;
  color: var(--stone); letter-spacing: 0.06em;
  margin-bottom: 1rem;
}
.home-intro-body p:last-child { margin-bottom: 0; }
.home-intro-image img {
  width: 100%; height: 380px;
  object-fit: cover;
  filter: sepia(10%) contrast(1.02);
}

/* ─── 特徴 ─── */
.home-features-section {
  padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 8vw, 8rem);
  background: var(--parchment);
}
.home-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5px;
  background: var(--stone-light);
  border: 1.5px solid var(--stone-light);
}
.home-feature {
  background: var(--white);
  padding: 2.5rem 2rem;
  transition: background 0.3s;
}
.home-feature:hover { background: var(--cream); }
.home-feature svg {
  width: 40px; height: 40px;
  color: var(--gold); margin-bottom: 1.25rem;
}
.home-feature h3 {
  font-family: 'Shippori Mincho', serif;
  font-size: 1rem; font-weight: 600;
  letter-spacing: 0.1em; color: var(--ink);
  margin-bottom: 0.6rem;
}
.home-feature p {
  font-size: 0.83rem; line-height: 1.9;
  color: var(--stone); letter-spacing: 0.04em;
}

/* ─── ご来店案内 ─── */
.home-visit-section {
  padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 8vw, 8rem);
  background: var(--ink);
}
.home-visit-inner { max-width: 680px; }
.home-visit-section .section-label { color: var(--gold); }
.home-visit-section .section-title { color: var(--parchment); }
.home-visit-desc {
  font-size: 0.88rem; line-height: 2.1;
  color: rgba(245,240,232,0.65);
  letter-spacing: 0.06em; margin: 1.5rem 0 2rem;
}
.home-visit-info {
  display: flex; flex-direction: column; gap: 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.home-visit-row {
  display: grid; grid-template-columns: 80px 1fr;
  gap: 1rem; padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.home-visit-row dt {
  font-size: 0.72rem; letter-spacing: 0.15em;
  color: var(--gold); padding-top: 0.1rem;
}
.home-visit-row dd {
  font-size: 0.85rem; line-height: 1.8;
  color: rgba(245,240,232,0.7); letter-spacing: 0.05em;
}
.home-visit-row dd a {
  color: var(--parchment); text-decoration: none;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem; letter-spacing: 0.1em;
  transition: color 0.2s;
}
.home-visit-row dd a:hover { color: var(--gold); }
.home-visit-access {
  display: block; font-size: 0.78rem;
  color: rgba(245,240,232,0.45); margin-top: 0.2rem;
}

/* ─── レスポンシブ ─── */
@media (max-width: 768px) {
  .home-intro-section { grid-template-columns: 1fr; gap: 2rem; }
  .home-intro-image img { height: 240px; }
  .home-visit-row { grid-template-columns: 70px 1fr; }
}


/* ─── Contact Form 7 送信完了メッセージ ─── */
.wpcf7-mail-sent-ok,
.wpcf7 .wpcf7-response-output {
  border: none !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: var(--stone) !important;
  font-size: 0.85rem !important;
  letter-spacing: 0.06em !important;
  padding: 1rem 0 !important;
  margin: 1rem 0 0 !important;
  text-align: center !important;
}
