/* =============================================
   ZAS — 飲食店専門 総合サポート会社
   共通スタイルシート
============================================= */

:root {
  --base:         #1c1a18;
  --ink:          #2a2820;
  --muted:        #6b6358;
  --line:         #e3ddd5;
  --paper:        #faf8f4;
  --cream:        #f2ece0;
  --accent:       #c4531a;
  --accent-deep:  #9c3f12;
  --accent-light: #e8845a;
  --gold:         #d4a040;
  --max:          1180px;
  --narrow:       800px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.9;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.wrap        { max-width: var(--max);    margin: 0 auto; padding: 0 28px; }
.wrap-narrow { max-width: var(--narrow); margin: 0 auto; padding: 0 28px; }

.en    { font-family: "Cormorant Garamond", serif; letter-spacing: .04em; }
.serif { font-family: "Noto Serif JP", serif; }

/* =============================================
   HEADER
============================================= */
.site-header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 100;
  background: rgba(250,248,244,0);
  transition: background .4s, box-shadow .4s, padding .4s;
  padding: 20px 0;
}
.site-header.solid {
  background: rgba(250,248,244,.97);
  box-shadow: 0 1px 0 var(--line);
  padding: 12px 0;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
}
.logo-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.9rem; font-weight: 600; letter-spacing: .18em;
  color: #fff; text-shadow: 0 1px 8px rgba(0,0,0,.4);
  transition: color .3s; flex-shrink: 0;
}
.site-header.solid .logo-text { color: var(--ink); text-shadow: none; }
.site-header.page-dark .logo-text { color: var(--ink); text-shadow: none; }

/* Nav */
.site-nav ul {
  display: flex; align-items: center; gap: 24px;
}
.site-nav a {
  font-size: 13px; font-weight: 500; letter-spacing: .04em;
  color: #fff; text-shadow: 0 1px 8px rgba(0,0,0,.4);
  padding: 4px 0; position: relative; transition: color .3s;
  white-space: nowrap;
}
.site-nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 0; height: 1px; background: var(--accent); transition: width .3s;
}
.site-nav a:hover { color: var(--accent); }
.site-nav a:hover::after { width: 100%; }
.site-header.solid .site-nav a,
.site-header.page-dark .site-nav a { color: var(--ink); text-shadow: none; }
.cta-nav {
  background: var(--accent) !important;
  color: #fff !important; text-shadow: none !important;
  padding: 10px 20px !important; border-radius: 2px;
  font-weight: 700 !important;
}
.cta-nav::after { display: none !important; }
.cta-nav:hover { background: var(--accent-deep) !important; color: #fff !important; }

/* Dropdown */
.has-dropdown { position: relative; }
.site-nav .dropdown {
  display: none; position: absolute; top: calc(100% + 14px); left: 50%;
  transform: translateX(-50%);
  background: #fff; border: 1px solid var(--line); border-radius: 4px;
  padding: 8px 0; min-width: 200px; box-shadow: 0 8px 24px rgba(0,0,0,.12);
  flex-direction: column; gap: 0;
}
.has-dropdown:hover .dropdown { display: flex; }
.site-nav .dropdown a {
  display: block; padding: 10px 20px;
  color: var(--ink) !important; text-shadow: none !important;
  font-size: 13px; border-bottom: 1px solid var(--line);
}
.site-nav .dropdown li:last-child a { border-bottom: 0; }
.site-nav .dropdown a:hover { background: var(--paper); color: var(--accent) !important; }
.site-nav .dropdown a::after { display: none; }

/* Burger */
.burger {
  display: none; flex-direction: column; gap: 6px;
  cursor: pointer; width: 30px; z-index: 120; flex-shrink: 0;
}
.burger span { height: 2px; width: 100%; background: #fff; transition: .35s; }
.site-header.solid .burger span,
.site-header.page-dark .burger span { background: var(--ink); }

/* =============================================
   HERO（トップページ専用スライドショー）
============================================= */
.hero {
  position: relative; height: 100vh; min-height: 620px;
  overflow: hidden; color: #fff;
}
.slides { position: absolute; inset: 0; }
.slide {
  position: absolute; inset: 0; opacity: 0;
  transition: opacity 1.6s ease; transform: scale(1.06);
}
.slide.active { opacity: 1; animation: kenburns 7s ease forwards; }
@keyframes kenburns {
  from { transform: scale(1.06); }
  to   { transform: scale(1.13); }
}
.slide img { width: 100%; height: 100%; object-fit: cover; }
.slide::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(20,16,12,.50),
    rgba(20,16,12,.28) 45%,
    rgba(20,16,12,.60)
  );
}
.slide img.sp { display: none; }

.hero-copy {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: center; z-index: 3;
}
.hero-copy .wrap { width: 100%; }
.hero-copy h1 {
  font-family: "Noto Serif JP", serif; font-weight: 700;
  font-size: clamp(1.85rem, 5vw, 3.8rem);
  line-height: 1.5; letter-spacing: .04em;
  text-shadow: 0 2px 20px rgba(0,0,0,.4);
  opacity: 0; transform: translateY(24px); animation: rise 1.2s .3s forwards;
}
.hero-copy .hero-sub {
  margin-top: 16px; font-size: clamp(.9rem, 1.5vw, 1.1rem);
  color: rgba(255,255,255,.9); line-height: 1.8;
  opacity: 0; transform: translateY(24px); animation: rise 1.2s .55s forwards;
}
.hero-copy .hero-actions {
  margin-top: 32px; display: flex; gap: 16px; flex-wrap: wrap;
  opacity: 0; transform: translateY(24px); animation: rise 1.2s .8s forwards;
}
@keyframes rise { to { opacity: 1; transform: translateY(0); } }

.dots {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 12px; z-index: 4;
}
.dots button {
  width: 32px; height: 3px; border: 0;
  background: rgba(255,255,255,.4); cursor: pointer; transition: .3s;
}
.dots button.on { background: #fff; }

.scroll-ind {
  position: absolute; bottom: 28px; right: 40px; z-index: 4;
  writing-mode: vertical-rl;
  font-family: "Cormorant Garamond", serif;
  letter-spacing: .25em; font-size: 12px; color: rgba(255,255,255,.8);
}
.scroll-ind::after {
  content: ""; display: block; width: 1px; height: 56px;
  background: rgba(255,255,255,.6); margin: 12px auto 0;
  animation: scrolldrop 2s infinite;
}
@keyframes scrolldrop {
  0%   { transform: scaleY(0); transform-origin: top; }
  40%  { transform: scaleY(1); transform-origin: top; }
  60%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* =============================================
   PAGE HERO（サブページ共通タイトルエリア）
============================================= */
.page-hero {
  padding: 140px 0 70px;
  background: linear-gradient(135deg, #2a2318 0%, #3a2e20 100%);
  color: #fff; position: relative; overflow: hidden;
}
.page-hero::after {
  content: ""; position: absolute; inset: 0;
  background: url("https://picsum.photos/seed/zas-pagehero/1600/600") center/cover;
  opacity: .12;
}
.page-hero .wrap { position: relative; z-index: 2; }
.page-hero-tag {
  font-family: "Cormorant Garamond", serif;
  font-size: .85rem; letter-spacing: .3em; color: var(--accent-light);
  margin-bottom: 10px; font-weight: 500;
}
.page-hero h1 {
  font-family: "Noto Serif JP", serif; font-weight: 700;
  font-size: clamp(1.6rem, 4vw, 2.4rem); letter-spacing: .04em;
  line-height: 1.4; margin-bottom: 12px;
}
.page-hero p { color: rgba(255,255,255,.78); max-width: 600px; font-size: .95rem; }

/* =============================================
   BREADCRUMB
============================================= */
.breadcrumb {
  padding: 14px 0; border-bottom: 1px solid var(--line);
  background: var(--paper);
}
.breadcrumb ol {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: var(--muted); list-style: none; flex-wrap: wrap;
}
.breadcrumb ol li::after { content: "›"; margin-left: 8px; }
.breadcrumb ol li:last-child::after { display: none; }
.breadcrumb ol li:last-child { color: var(--ink); }
.breadcrumb a:hover { color: var(--accent); }

/* =============================================
   SECTION 共通
============================================= */
.section-pad { padding: 100px 0; }
.section-pad-sm { padding: 70px 0; }

.lead {
  font-size: 12px; letter-spacing: .22em; color: var(--accent);
  font-weight: 700; margin-bottom: 10px; text-transform: uppercase;
}
.lead::before {
  content: ""; display: inline-block; width: 24px; height: 1px;
  background: var(--accent); vertical-align: middle; margin-right: 10px;
}
.bigen {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  font-weight: 600; line-height: 1; color: var(--base); letter-spacing: .02em;
}
.sec-title {
  font-family: "Noto Serif JP", serif; font-weight: 700;
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1.6; letter-spacing: .03em; margin: 16px 0;
}
.sec-lead { color: var(--muted); max-width: 680px; margin-top: 6px; }

/* Reveal */
.rv { opacity: 0; transform: translateY(36px); transition: opacity .9s, transform .9s; }
.rv.in { opacity: 1; transform: none; }
.rv-d1 { transition-delay: .1s; }
.rv-d2 { transition-delay: .2s; }
.rv-d3 { transition-delay: .3s; }

/* =============================================
   BUTTONS
============================================= */
.btn {
  display: inline-block; padding: 14px 40px;
  font-size: 13px; font-weight: 700; letter-spacing: .08em;
  border-radius: 2px; cursor: pointer;
  transition: background .3s, color .3s, opacity .2s;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-deep); color: #fff; }
.btn-outline {
  background: transparent; color: var(--accent);
  border: 1px solid var(--accent);
}
.btn-outline:hover { background: var(--accent); color: #fff; }
.btn-white {
  background: #fff; color: var(--accent);
  border: 1px solid rgba(255,255,255,.5);
}
.btn-white:hover { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn-ghost-white {
  background: transparent; color: #fff;
  border: 1px solid rgba(255,255,255,.6);
}
.btn-ghost-white:hover { background: rgba(255,255,255,.12); }

/* Arrow link */
.arrow-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700; color: var(--accent);
  letter-spacing: .06em; transition: gap .2s;
}
.arrow-link::after { content: "→"; }
.arrow-link:hover { gap: 14px; }

/* =============================================
   INTRO (トップ: About概要)
============================================= */
.intro-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 70px; align-items: center;
}
.intro-grid p { color: var(--muted); margin-top: 8px; }
.intro-imgs { position: relative; height: 460px; }
.intro-imgs img {
  position: absolute; border-radius: 4px;
  object-fit: cover; box-shadow: 0 16px 48px rgba(0,0,0,.14);
}
.intro-imgs img:first-child { width: 72%; height: 64%; top: 0; right: 0; }
.intro-imgs img:last-child  { width: 58%; height: 52%; bottom: 0; left: 0; }

/* =============================================
   SERVICE CARDS（トップ・サービス一覧）
============================================= */
.service-overview { background: var(--cream); }
.service-cards {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 20px; margin-top: 50px;
}
.service-card {
  background: #fff; border-radius: 4px;
  overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,.07);
  transition: transform .3s, box-shadow .3s;
  display: flex; flex-direction: column;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(0,0,0,.13);
}
.service-card-img { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.service-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.service-card:hover .service-card-img img { transform: scale(1.06); }
.service-card-num {
  position: absolute; top: 14px; left: 16px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem; color: #fff; font-weight: 600; opacity: .9;
  text-shadow: 0 1px 6px rgba(0,0,0,.4);
}
.service-card-body { padding: 22px 22px 28px; flex: 1; display: flex; flex-direction: column; }
.service-card-body h3 {
  font-family: "Noto Serif JP", serif; font-size: 1rem;
  font-weight: 700; margin-bottom: 10px; line-height: 1.5;
}
.service-card-body p { color: var(--muted); font-size: .9rem; flex: 1; }
.service-card-body .arrow-link { margin-top: 18px; }

/* =============================================
   STRENGTHS（飲食店専門の強み）
============================================= */
.strengths { background: var(--base); color: #fff; }
.strengths .bigen { color: #fff; }
.strengths .lead { color: var(--accent-light); }
.strengths .lead::before { background: var(--accent-light); }
.strength-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 28px; margin-top: 50px;
}
.strength-item {
  border-top: 2px solid var(--accent); padding-top: 24px;
}
.strength-item .num {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem; color: var(--accent-light);
  font-weight: 600; letter-spacing: .06em; line-height: 1;
  margin-bottom: 14px;
}
.strength-item h3 {
  font-family: "Noto Serif JP", serif; font-size: 1rem;
  font-weight: 700; margin-bottom: 10px; line-height: 1.5;
}
.strength-item p { color: rgba(255,255,255,.72); font-size: .9rem; }

/* =============================================
   WORKS（実績・事例）
============================================= */
.works-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 24px; margin-top: 50px;
}
.work-card { background: #fff; border-radius: 4px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,.07); }
.work-card-img { aspect-ratio: 16/9; overflow: hidden; }
.work-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.work-card:hover .work-card-img img { transform: scale(1.06); }
.work-card-body { padding: 22px 24px 28px; }
.work-cat {
  font-size: 11px; background: var(--cream); color: var(--accent);
  padding: 4px 12px; border-radius: 2px; display: inline-block;
  margin-bottom: 12px; font-weight: 700; letter-spacing: .06em;
}
.work-card-body h3 { font-family: "Noto Serif JP", serif; font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.work-card-body p { color: var(--muted); font-size: .88rem; }
.work-card-body .arrow-link { margin-top: 16px; }

/* =============================================
   TESTIMONIALS（お客様の声）
============================================= */
.testimonials { background: var(--cream); }
.testi-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 24px; margin-top: 50px;
}
.testi-card {
  background: #fff; border-radius: 4px; padding: 30px 28px;
  box-shadow: 0 4px 20px rgba(0,0,0,.06);
  position: relative;
}
.testi-card::before {
  content: "\201C";
  font-family: "Cormorant Garamond", serif;
  font-size: 4rem; color: var(--accent); line-height: 1;
  position: absolute; top: 16px; left: 24px; opacity: .35;
}
.testi-card p { color: var(--ink); font-size: .95rem; line-height: 1.9; margin-top: 20px; }
.testi-source {
  margin-top: 18px; font-size: .85rem; color: var(--muted);
  font-weight: 700; padding-top: 14px; border-top: 1px solid var(--line);
}

/* =============================================
   FAQ（アコーディオン）
============================================= */
.faq-list { margin-top: 48px; }
.faq-item { border-top: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-q {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding: 22px 4px; cursor: pointer; gap: 20px;
  font-weight: 700; font-size: .98rem; line-height: 1.6;
  transition: color .2s; user-select: none;
}
.faq-q:hover { color: var(--accent); }
.faq-q::before {
  content: "Q"; flex-shrink: 0;
  font-family: "Cormorant Garamond", serif; font-size: 1.3rem;
  color: var(--accent); font-weight: 600; line-height: 1; margin-top: 2px;
}
.faq-icon {
  flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%;
  border: 1px solid var(--line); display: flex; align-items: center;
  justify-content: center; transition: background .3s, transform .35s;
  margin-top: 2px; font-size: 14px; color: var(--muted);
}
.faq-item.open .faq-icon { background: var(--accent); color: #fff; transform: rotate(45deg); border-color: var(--accent); }
.faq-a {
  display: none; padding: 0 4px 24px 36px;
  color: var(--muted); font-size: .95rem; line-height: 1.9;
}
.faq-item.open .faq-a { display: block; }

/* =============================================
   NEWS LIST
============================================= */
.news-list { margin-top: 40px; }
.news-item {
  display: flex; gap: 24px; align-items: flex-start;
  padding: 22px 4px; border-top: 1px solid var(--line);
  transition: .3s; flex-wrap: wrap;
}
.news-list .news-item:last-child { border-bottom: 1px solid var(--line); }
.news-item:hover { background: rgba(196,83,26,.04); padding-left: 12px; }
.news-item .date {
  font-family: "Cormorant Garamond", serif;
  font-size: 1rem; color: var(--muted); min-width: 96px;
  padding-top: 2px;
}
.news-item .cat {
  font-size: 11px; background: var(--base); color: #fff;
  padding: 4px 12px; letter-spacing: .06em; white-space: nowrap;
  align-self: flex-start; margin-top: 2px;
}
.news-item .ttl { font-weight: 500; color: var(--ink); flex: 1; }
.news-item:hover .ttl { color: var(--accent); }

/* =============================================
   CTA SECTION
============================================= */
.cta-section {
  background: var(--base); color: #fff; text-align: center; padding: 90px 0;
}
.cta-section .bigen { color: #fff; }
.cta-section .lead { color: var(--accent-light); justify-content: center; }
.cta-section .lead::before { background: var(--accent-light); }
.cta-section p { color: rgba(255,255,255,.78); max-width: 560px; margin: 12px auto 0; }
.cta-section .cta-btns {
  margin-top: 36px; display: flex;
  gap: 16px; justify-content: center; flex-wrap: wrap;
}

/* =============================================
   ABOUT PAGE
============================================= */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 70px; align-items: start;
}
.about-img { border-radius: 4px; width: 100%; object-fit: cover; box-shadow: 0 16px 48px rgba(0,0,0,.14); }
.philosophy-block { margin-top: 60px; }
.philosophy-block h2 { font-family: "Noto Serif JP", serif; font-size: 1.3rem; margin-bottom: 20px; }
.philosophy-item {
  padding: 24px 28px; background: #fff; border-left: 3px solid var(--accent);
  border-radius: 0 4px 4px 0; margin-bottom: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.philosophy-item h3 {
  font-size: .85rem; letter-spacing: .15em; color: var(--accent);
  font-weight: 700; margin-bottom: 6px; text-transform: uppercase;
}
.philosophy-item p { color: var(--muted); font-size: .95rem; }

.info-table { width: 100%; border-collapse: collapse; margin-top: 12px; }
.info-table th, .info-table td {
  text-align: left; padding: 16px 12px;
  border-bottom: 1px solid var(--line); vertical-align: top;
}
.info-table th { width: 160px; font-weight: 700; color: var(--muted); font-size: .9rem; }
.info-table td { color: var(--ink); }

.timeline-wrap { margin-top: 50px; }
.timeline-wrap h2 { font-family: "Noto Serif JP", serif; font-size: 1.3rem; margin-bottom: 32px; }
.timeline {
  display: flex; gap: 0; overflow-x: auto;
  padding-bottom: 16px; scroll-snap-type: x mandatory;
}
.tl-item {
  flex: 0 0 180px; border-top: 2px solid var(--line);
  padding: 22px 20px 0 0; position: relative; scroll-snap-align: start;
}
.tl-item::before {
  content: ""; position: absolute; top: -7px; left: 0;
  width: 12px; height: 12px; border-radius: 50%; background: var(--accent);
}
.tl-item .y {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem; color: var(--base); font-weight: 600;
}
.tl-item .t { font-size: 13px; color: var(--muted); margin-top: 6px; }

/* =============================================
   SERVICE DETAIL PAGE
============================================= */
.service-detail { background: var(--paper); }
.service-intro { max-width: 780px; }
.service-intro p { color: var(--muted); margin-top: 10px; font-size: .98rem; }

.service-menu {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 20px; margin-top: 48px;
}
.service-menu-item {
  background: #fff; padding: 28px 28px 32px;
  border-radius: 4px; box-shadow: 0 4px 20px rgba(0,0,0,.07);
}
.service-menu-item h3 {
  font-family: "Noto Serif JP", serif;
  font-size: 1.05rem; font-weight: 700; margin-bottom: 14px;
  padding-bottom: 12px; border-bottom: 1px solid var(--line);
}
.service-menu-item ul { padding-left: 0; }
.service-menu-item li {
  position: relative; padding-left: 18px;
  color: var(--muted); font-size: .9rem; margin-bottom: 6px;
}
.service-menu-item li::before {
  content: "—"; position: absolute; left: 0; color: var(--accent);
}

.strengths-box {
  background: var(--cream); padding: 36px 36px 40px;
  border-radius: 4px; margin-top: 48px;
}
.strengths-box h3 {
  font-family: "Noto Serif JP", serif; font-size: 1.1rem;
  font-weight: 700; margin-bottom: 16px;
}
.strengths-box p { color: var(--muted); font-size: .95rem; }

/* =============================================
   PRICING
============================================= */
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-top: 48px;
}
.pricing-card {
  background: #fff; border: 1px solid var(--line);
  border-radius: 4px; overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,.07);
  display: flex; flex-direction: column;
}
.pricing-card.featured {
  border-color: var(--accent);
  box-shadow: 0 8px 32px rgba(196,83,26,.18);
}
.pricing-head {
  background: var(--cream); padding: 24px 28px;
  border-bottom: 1px solid var(--line);
}
.pricing-card.featured .pricing-head { background: var(--accent); color: #fff; }
.pricing-card.featured .pricing-head .price-label { color: rgba(255,255,255,.8); }
.pricing-name {
  font-family: "Noto Serif JP", serif; font-size: 1.05rem;
  font-weight: 700; margin-bottom: 10px;
}
.price-label { font-size: .8rem; color: var(--muted); margin-bottom: 4px; }
.price-val {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem; font-weight: 600; color: var(--accent); line-height: 1;
}
.pricing-card.featured .price-val { color: #fff; }
.price-unit { font-size: .8rem; color: var(--muted); margin-top: 4px; }
.pricing-card.featured .price-unit { color: rgba(255,255,255,.7); }
.pricing-body { padding: 24px 28px 30px; flex: 1; }
.pricing-body ul { }
.pricing-body li {
  position: relative; padding-left: 20px;
  color: var(--muted); font-size: .9rem; margin-bottom: 8px;
}
.pricing-body li::before {
  content: "✓"; position: absolute; left: 0;
  color: var(--accent); font-weight: 700;
}

.pricing-section { margin-top: 70px; }
.pricing-section-title {
  font-family: "Noto Serif JP", serif; font-size: 1.2rem;
  font-weight: 700; padding-bottom: 12px;
  border-bottom: 2px solid var(--accent); margin-bottom: 32px;
  display: flex; align-items: center; gap: 14px;
}
.pricing-section-title span {
  font-family: "Cormorant Garamond", serif;
  font-size: .85rem; letter-spacing: .2em; color: var(--accent); font-weight: 500;
}

.estimate-box {
  background: var(--cream); padding: 40px 48px;
  border-radius: 4px; text-align: center; margin-top: 70px;
}
.estimate-box h3 { font-family: "Noto Serif JP", serif; font-size: 1.2rem; font-weight: 700; margin-bottom: 12px; }
.estimate-box p { color: var(--muted); margin-bottom: 28px; }

/* =============================================
   WORKS DETAIL
============================================= */
.work-detail-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: start;
}
.work-detail-img { border-radius: 4px; width: 100%; object-fit: cover; box-shadow: 0 16px 48px rgba(0,0,0,.12); }
.work-flow { margin-top: 48px; }
.work-flow h3 { font-family: "Noto Serif JP", serif; font-size: 1.05rem; font-weight: 700; margin-bottom: 16px; }
.work-flow ul { padding-left: 0; }
.work-flow li {
  position: relative; padding-left: 22px;
  color: var(--muted); font-size: .95rem; margin-bottom: 8px;
}
.work-flow li::before {
  content: "—"; position: absolute; left: 0; color: var(--accent);
}
.result-box {
  background: var(--base); color: #fff;
  padding: 28px 32px; border-radius: 4px; margin-top: 28px;
}
.result-box h4 {
  font-size: .8rem; letter-spacing: .18em; color: var(--accent-light);
  margin-bottom: 10px; text-transform: uppercase; font-weight: 700;
}
.result-box p { color: rgba(255,255,255,.82); font-size: .95rem; }

.case-section { padding: 70px 0; border-bottom: 1px solid var(--line); }
.case-section:last-child { border-bottom: 0; }

/* =============================================
   CONTACT FORM
============================================= */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.6fr;
  gap: 60px; align-items: start;
}
.contact-info-block h3 {
  font-family: "Noto Serif JP", serif; font-size: 1.05rem;
  font-weight: 700; margin-bottom: 20px;
}
.contact-info-item {
  margin-bottom: 20px; padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.contact-info-item:last-child { border-bottom: 0; }
.contact-info-label {
  font-size: .8rem; letter-spacing: .1em; color: var(--accent);
  font-weight: 700; margin-bottom: 6px; text-transform: uppercase;
}
.contact-tel-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem; font-weight: 600; color: var(--base);
}
.contact-tel-num:hover { color: var(--accent); }
.contact-hrs { font-size: .85rem; color: var(--muted); margin-top: 4px; }

.contact-form .form-row { margin-bottom: 20px; }
.contact-form label {
  display: block; margin-bottom: 6px;
  font-weight: 700; font-size: .9rem;
}
.contact-form .req {
  display: inline-block; background: #fee2e2; color: #b91c1c;
  font-size: .7rem; padding: 2px 8px; border-radius: 2px;
  margin-left: 6px; font-weight: 700;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%; padding: 12px 14px;
  border: 1px solid var(--line); border-radius: 4px;
  font-family: inherit; font-size: .95rem; background: #fff;
  transition: border-color .2s;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none; border-color: var(--accent);
}
.contact-form .checkbox-group {
  display: flex; flex-wrap: wrap; gap: 12px; margin-top: 6px;
}
.contact-form .checkbox-group label {
  font-weight: 500; display: flex; align-items: center; gap: 6px; cursor: pointer; margin-bottom: 0;
}
.contact-form .checkbox-group input { width: auto; }
.contact-notice {
  background: var(--cream); padding: 16px 20px; border-radius: 4px;
  font-size: .85rem; color: var(--muted); margin-bottom: 24px;
}

/* =============================================
   RECRUIT
============================================= */
.recruit-hero-section {
  background: linear-gradient(135deg, #1c1a18, #3a2e20);
  color: #fff; text-align: center; padding: 90px 0;
}
.recruit-hero-section .bigen { color: #fff; }
.recruit-hero-section .lead { color: var(--accent-light); justify-content: center; }
.recruit-hero-section .lead::before { background: var(--accent-light); }
.recruit-hero-section p { color: rgba(255,255,255,.8); max-width: 560px; margin: 14px auto 0; }

.jobs-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-top: 48px;
}
.job-card {
  background: #fff; border-radius: 4px; padding: 28px 26px;
  border: 1px solid var(--line); box-shadow: 0 4px 16px rgba(0,0,0,.06);
}
.job-card h3 {
  font-family: "Noto Serif JP", serif; font-size: 1rem;
  font-weight: 700; margin-bottom: 12px; color: var(--base);
}
.job-card p { color: var(--muted); font-size: .88rem; }

.person-list { margin-top: 20px; padding-left: 0; }
.person-list li {
  position: relative; padding-left: 20px;
  color: var(--muted); font-size: .9rem; margin-bottom: 8px;
}
.person-list li::before { content: "—"; position: absolute; left: 0; color: var(--accent); }

/* =============================================
   LEGAL PAGES (privacy, tokusho)
============================================= */
.legal-content { max-width: 760px; }
.legal-content h2 {
  font-family: "Noto Serif JP", serif; font-size: 1.1rem;
  font-weight: 700; margin: 36px 0 12px; padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p { color: var(--muted); font-size: .95rem; margin-bottom: 12px; }
.legal-content ul { padding-left: 20px; margin-bottom: 12px; }
.legal-content ul li { color: var(--muted); font-size: .95rem; margin-bottom: 6px; }

.legal-table { width: 100%; border-collapse: collapse; margin: 16px 0; }
.legal-table th, .legal-table td {
  text-align: left; padding: 14px 12px;
  border: 1px solid var(--line); font-size: .9rem;
  vertical-align: top;
}
.legal-table th { background: var(--cream); font-weight: 700; width: 200px; }

/* =============================================
   SITEMAP
============================================= */
.sitemap-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 40px; margin-top: 48px;
}
.sitemap-col h3 {
  font-family: "Noto Serif JP", serif; font-size: 1rem;
  font-weight: 700; margin-bottom: 16px; padding-bottom: 10px;
  border-bottom: 2px solid var(--accent);
}
.sitemap-col ul { padding-left: 0; }
.sitemap-col li { margin-bottom: 10px; }
.sitemap-col a { font-size: .9rem; color: var(--muted); transition: color .2s; }
.sitemap-col a:hover { color: var(--accent); }
.sitemap-col .sub-list { padding-left: 16px; margin-top: 8px; }
.sitemap-col .sub-list a { font-size: .85rem; }

/* =============================================
   FOOTER
============================================= */
.site-footer {
  background: #16140e; color: rgba(255,255,255,.78);
  padding: 70px 0 0;
}
.f-top {
  display: grid; grid-template-columns: 1.3fr 1fr 1fr;
  gap: 50px; padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.f-logo-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.9rem; font-weight: 600; letter-spacing: .18em;
  color: #fff; display: block; margin-bottom: 16px;
}
.f-co { font-family: "Noto Serif JP", serif; font-size: 1rem; color: #fff; margin-bottom: 6px; }
.f-addr { font-size: 13px; line-height: 1.9; color: rgba(255,255,255,.55); }
.f-tel { font-family: "Cormorant Garamond", serif; font-size: 1.5rem; color: #fff; margin-top: 10px; display: inline-block; }
.f-tel:hover { color: var(--accent-light); }
.f-hrs { font-size: 12px; color: rgba(255,255,255,.5); margin-top: 4px; }
.f-sns { display: flex; gap: 14px; margin-top: 18px; }
.f-sns a {
  font-size: 12px; color: rgba(255,255,255,.55); letter-spacing: .06em;
  transition: color .2s;
}
.f-sns a:hover { color: var(--accent-light); }
.f-nav-col h4 {
  font-size: 12px; letter-spacing: .18em; color: rgba(255,255,255,.45);
  text-transform: uppercase; margin-bottom: 16px; font-weight: 500;
}
.f-nav-col ul { }
.f-nav-col li { margin-bottom: 12px; }
.f-nav-col a { font-size: 13px; color: rgba(255,255,255,.65); transition: color .2s; }
.f-nav-col a:hover { color: var(--accent-light); }
.f-copy {
  text-align: center; padding: 24px 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 12px; letter-spacing: .1em; color: rgba(255,255,255,.4);
  display: flex; justify-content: center; align-items: center; gap: 24px; flex-wrap: wrap;
}
.f-copy a { color: rgba(255,255,255,.4); transition: color .2s; }
.f-copy a:hover { color: rgba(255,255,255,.7); }

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 960px) {
  .intro-grid, .about-grid, .work-detail-grid { grid-template-columns: 1fr; gap: 40px; }
  .intro-imgs { height: 320px; max-width: 480px; }
  .service-cards { grid-template-columns: repeat(2, 1fr); }
  .strength-grid { grid-template-columns: repeat(2, 1fr); }
  .works-grid, .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
  .contact-grid { grid-template-columns: 1fr; }
  .jobs-grid { grid-template-columns: repeat(2, 1fr); }
  .f-top { grid-template-columns: 1fr; gap: 36px; }
  .sitemap-grid { grid-template-columns: repeat(2, 1fr); }
  .service-menu { grid-template-columns: 1fr; }
  .section-pad { padding: 70px 0; }
  .intro-imgs { height: 280px; }
  .page-hero { padding: 120px 0 56px; }

  /* Mobile nav */
  .site-nav ul {
    position: fixed; top: 0; right: -100%; height: 100vh;
    width: 78%; max-width: 340px;
    background: var(--base); flex-direction: column;
    justify-content: flex-start; align-items: stretch; gap: 0;
    transition: right .45s; padding: 72px 32px 40px;
    overflow-y: auto;
  }
  .site-nav ul.open { right: 0; }
  .site-nav ul > li { padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.08); text-align: center; }
  .site-nav ul > li:last-child { border-bottom: 0; }
  .site-nav a { color: #fff !important; text-shadow: none !important; font-size: 14px; }
  .has-dropdown .dropdown {
    display: none; position: static; transform: none;
    background: transparent; border: 0; padding: 8px 0 4px 0;
    box-shadow: none; flex-direction: column; gap: 0;
    height: auto; min-height: 0; width: auto; max-width: none;
  }
  .has-dropdown:hover .dropdown { display: none; }
  .has-dropdown.open .dropdown { display: flex; }
  .site-nav .dropdown li { padding: 0; border-bottom: 0; text-align: left; }
  .site-nav .dropdown a {
    border-bottom: 0; padding: 7px 0 7px 16px;
    color: rgba(255,255,255,.55) !important; font-size: 13px;
  }
  .site-nav a::after { display: none; }
  .cta-nav { display: block; text-align: center; padding: 12px 24px !important; }
  .burger { display: flex; }
  .site-header.menu-open .burger span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .site-header.menu-open .burger span:nth-child(2) { opacity: 0; }
  .site-header.menu-open .burger span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
}

@media (max-width: 600px) {
  .slide img.pc { display: none; }
  .slide img.sp { display: block; }
  .service-cards { grid-template-columns: 1fr; }
  .strength-grid { grid-template-columns: 1fr; }
  .works-grid, .testi-grid { grid-template-columns: 1fr; }
  .jobs-grid { grid-template-columns: 1fr; }
  .sitemap-grid { grid-template-columns: 1fr; }
  .scroll-ind { display: none; }
  .hero-copy .hero-actions { flex-direction: column; align-items: flex-start; }
  .wrap { padding: 0 18px; }
  .pricing-grid { max-width: 100%; }
  .estimate-box { padding: 28px 24px; }
  .news-item .date { min-width: auto; }
  .section-pad { padding: 56px 0; }

  /* Table: stack th/td vertically on narrow phones */
  .info-table,
  .legal-table { display: block; overflow-x: visible; }
  .info-table tbody,
  .legal-table tbody { display: block; }
  .info-table tr,
  .legal-table tr { display: block; border-bottom: 1px solid var(--line); padding-bottom: 4px; margin-bottom: 4px; }
  .info-table tr:last-child,
  .legal-table tr:last-child { border-bottom: 0; }
  .info-table th, .info-table td,
  .legal-table th, .legal-table td { display: block; width: 100% !important; border: 0; padding: 4px 0; box-sizing: border-box; }
  .info-table th,
  .legal-table th { padding-top: 14px; font-size: .78rem; letter-spacing: .08em; color: var(--accent); font-weight: 700; border-bottom: 0; }
}
