@charset "UTF-8";

/* =========================================================
   DADACA HOLDINGS — Corporate Top
   Design tokens / Layered backgrounds / Parallax
   ========================================================= */

:root {
  /* text */
  --sumi: #2B2018;          /* deepest heading (cacao ink) */
  --sumi-soft: #3D332B;     /* body */
  --hai: #857A6F;           /* caption / sub */

  /* surfaces */
  --shiroyu: #FBF7F1;       /* page bg (warm white) */
  --kami: #FFFFFF;          /* cards */
  --kinari: #F3ECE1;        /* section band */
  --kinari-deep: #ECE2D3;
  --line: #E5DBCD;          /* hairline */

  /* accents */
  --cacao: #6B4A2F;         /* deep cacao — headings accent */
  --kiwa: #B8865A;          /* primary accent (caramel gold) */
  --kiwa-dark: #9E6E42;
  --berry: #C2607A;         /* feminine berry accent (sparingly) */
  --berry-soft: #E7B9C5;
  --leaf: #7E9A6B;

  --font-jp-serif: "Inter", "Noto Serif JP", "Yu Mincho", serif;
  --font-jp-sans:  "Inter", "Noto Sans JP", "Hiragino Sans", "Helvetica Neue", Arial, sans-serif;
  --font-en-serif: "Inter", system-ui, sans-serif;
  --font-en-sans:  "Inter", system-ui, sans-serif;

  --s1: 4px; --s2: 8px; --s3: 16px; --s4: 24px;
  --s5: 32px; --s6: 48px; --s7: 64px; --s8: 96px; --s9: 128px;

  --container: 1720px;
  --container-pad: clamp(24px, 4.5vw, 88px);
  --header-h: 78px;

  /* rounded surfaces (MIMARU-inspired soft corners) */
  --radius: 8px;
  --radius-card: 20px;
  --radius-lg: 28px;
  --radius-full: 999px;

  /* elegant decelerating eases (GSAP power2/power4-out) */
  --ease: cubic-bezier(.215, .61, .355, 1);   /* power2-out */
  --ease-soft: cubic-bezier(.23, 1, .32, 1);   /* power4-out — slow, refined */
  --ease-expo: cubic-bezier(.19, 1, .22, 1);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-jp-sans);
  font-size: 15px;
  line-height: 2;
  letter-spacing: .04em;
  color: var(--sumi-soft);
  background: var(--shiroyu);
  word-break: keep-all;
  overflow-wrap: anywhere;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4, p { margin: 0; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
:focus-visible { outline: 2px solid var(--kiwa); outline-offset: 3px; }

/* =========================================================
   LAYOUT PRIMITIVES
   ========================================================= */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--container-pad); }

.section {
  position: relative;
  padding: var(--s9) 0;
  overflow: hidden;
  isolation: isolate;
}
.section > .container { position: relative; z-index: 2; }

/* big decorative background letters */
.bg-letter {
  position: absolute;
  font-family: var(--font-en-serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(120px, 20vw, 340px);
  line-height: .8;
  color: rgba(184, 134, 90, .07);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  z-index: 0;
  will-change: transform;
}
.bg-letter--right { right: -3vw; top: 6%; }
.bg-letter--left  { left: -3vw; top: 6%; }
.bg-letter--world { left: 50%; top: 14%; transform: translateX(-50%); color: rgba(184,134,90,.06); }

/* section headings */
.section-eyebrow {
  font-family: var(--font-en-serif);
  font-style: italic;
  font-size: 22px;
  letter-spacing: .06em;
  color: var(--kiwa);
  margin-bottom: var(--s2);
}
.section-eyebrow--light { color: var(--berry-soft); }
.section-title {
  font-family: var(--font-jp-serif);
  font-weight: 600;
  font-size: clamp(28px, 3.8vw, 48px);
  line-height: 1.5;
  letter-spacing: .04em;
  color: var(--sumi);
}
.section-head { margin-bottom: var(--s7); }
.section-head--center { text-align: center; max-width: 760px; margin-left: auto; margin-right: auto; }
.section-note { margin-top: var(--s3); color: var(--hai); font-size: 14px; }

/* buttons — large, friendly pill with circular icon (MIMARU-inspired sizing) */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 16px;
  min-height: 62px; padding: 4px 16px 4px 36px;
  font-weight: 600; font-size: 15px; letter-spacing: .12em;
  border-radius: var(--radius-full);
  transition: transform .45s var(--ease-soft), background .35s var(--ease), color .35s var(--ease), box-shadow .45s var(--ease-soft), border-color .35s;
}
.btn .btn-ico {
  flex: 0 0 auto; width: 40px; height: 40px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  position: relative; transition: transform .45s var(--ease-soft), background .35s;
}
.btn .btn-ico::before {
  content: ""; width: 8px; height: 8px;
  border-top: 1.6px solid currentColor; border-right: 1.6px solid currentColor;
  transform: translateX(-1px) rotate(45deg);
}
.btn:hover .btn-ico { transform: translateX(4px); }

.btn--light { background: var(--kami); color: var(--sumi); box-shadow: 0 10px 30px rgba(43,32,24,.18); }
.btn--light .btn-ico { background: var(--cacao); color: #fff; }
.btn--light:hover { transform: translateY(-3px); box-shadow: 0 18px 38px rgba(43,32,24,.26); }
.btn--ghost { border: 1px solid rgba(255,255,255,.7); color: #fff; }
.btn--ghost .btn-ico { background: rgba(255,255,255,.16); color: #fff; }
.btn--ghost:hover { background: rgba(255,255,255,.12); transform: translateY(-3px); }
.btn--dark { background: var(--cacao); color: #fff; }
.btn--dark .btn-ico { background: rgba(255,255,255,.18); color: #fff; }
.btn--dark:hover { background: var(--sumi); transform: translateY(-3px); box-shadow: 0 16px 34px rgba(43,32,24,.24); }
.btn--ghost-dark { border: 1px solid var(--cacao); color: var(--cacao); }
.btn--ghost-dark .btn-ico { background: var(--cacao); color: #fff; }
.btn--ghost-dark:hover { background: var(--cacao); color: #fff; transform: translateY(-3px); }
.btn--ghost-dark:hover .btn-ico { background: rgba(255,255,255,.18); }

/* text link with drawn arrow */
.link-arrow {
  display: inline-flex; align-items: center; gap: 16px;
  font-weight: 600; font-size: 13px; letter-spacing: .12em;
  color: var(--cacao);
}
.link-arrow::after {
  content: "";
  flex-shrink: 0;
  width: 104px; height: 44px;
  background:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='44' height='44' viewBox='0 0 44 44'><circle cx='22' cy='22' r='22' fill='%236B4A2F'/><path d='M14 22h17M25 15l7 7-7 7' fill='none' stroke='%23ffffff' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/></svg>") right center / 44px 44px no-repeat,
    linear-gradient(to right, var(--kiwa), var(--kiwa)) left center / 56px 1px no-repeat;
  transition: transform .45s var(--ease-soft);
}
.link-arrow:hover { color: var(--kiwa-dark); }
.link-arrow:hover::after {
  transform: translateX(8px);
  background:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='44' height='44' viewBox='0 0 44 44'><circle cx='22' cy='22' r='22' fill='%23B8865A'/><path d='M14 22h17M25 15l7 7-7 7' fill='none' stroke='%23ffffff' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/></svg>") right center / 44px 44px no-repeat,
    linear-gradient(to right, var(--kiwa), var(--kiwa)) left center / 56px 1px no-repeat;
}

/* reveal — slow, refined fade-up (MIMARU-style) */
.reveal { opacity: 0; transform: translate3d(0, 34px, 0); transition: opacity .9s var(--ease), transform 1.1s var(--ease-soft); }
.reveal.is-in { opacity: 1; transform: none; }

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--header-h);
  display: flex; align-items: center;
  transition: background .4s, box-shadow .4s, height .4s;
}
.site-header.is-solid {
  background: rgba(251,247,241,.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--line);
  height: 64px;
}
.header-inner { width: 100%; max-width: 1880px; margin: 0 auto; padding: 0 var(--container-pad); display: flex; align-items: center; gap: var(--s5); }
.brand { display: flex; align-items: center; gap: 9px; color: #fff; transition: color .4s; }
.site-header.is-solid .brand { color: var(--sumi); }
.brand-logo { height: 22px; width: auto; display: block; }
.brand-logo--dark { display: none; }
.site-header.is-solid .brand-logo--light { display: none; }
.site-header.is-solid .brand-logo--dark { display: block; }
.brand-mark { font-family: var(--font-en-serif); font-style: italic; font-weight: 500; font-size: 26px; letter-spacing: .12em; }
.brand-sub { font-family: var(--font-en-sans); font-size: 10px; letter-spacing: .3em; opacity: .75; }
.global-nav { margin-left: auto; }
.global-nav ul { display: flex; gap: var(--s4); }
.global-nav a { position: relative; color: #fff; transition: color .3s; }
.site-header.is-solid .global-nav a { color: var(--sumi-soft); }
.nav-en { font-family: var(--font-en-sans); font-size: 13px; letter-spacing: .05em; display: inline-block; transition: opacity .25s; }
.nav-ja { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); font-family: var(--font-jp-sans); font-size: 11.5px; letter-spacing: .04em; white-space: nowrap; opacity: 0; transition: opacity .25s; pointer-events: none; }
.global-nav a:hover .nav-en { opacity: 0; }
.global-nav a:hover .nav-ja { opacity: 1; }
.global-nav a::after { content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 1px; background: var(--kiwa); transition: width .3s var(--ease); }
.global-nav a:hover { color: var(--kiwa); }
.global-nav a:hover::after { width: 100%; }
.header-cta {
  display: inline-flex; align-items: center; padding: 11px 24px;
  font-family: var(--font-en-sans); font-size: 12px; font-weight: 600; letter-spacing: .12em;
  border: 1px solid rgba(255,255,255,.7); color: #fff; border-radius: 999px;
  transition: background .3s, color .3s, border-color .3s;
}
.header-cta:hover { background: #fff; color: var(--sumi); }
.site-header.is-solid .header-cta { border-color: var(--cacao); color: var(--cacao); }
.site-header.is-solid .header-cta:hover { background: var(--cacao); color: #fff; }

/* hamburger */
.nav-toggle { display: none; width: 44px; height: 44px; position: relative; z-index: 1100; margin-left: auto; }
.nav-toggle span { position: absolute; left: 10px; width: 24px; height: 2px; background: #fff; transition: transform .35s var(--ease), opacity .25s, background .4s; }
.site-header.is-solid .nav-toggle span { background: var(--sumi); }
.nav-toggle span:nth-child(1) { top: 15px; }
.nav-toggle span:nth-child(2) { top: 21px; }
.nav-toggle span:nth-child(3) { top: 27px; }
body.drawer-open .nav-toggle span { background: #fff; }
body.drawer-open .nav-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
body.drawer-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.drawer-open .nav-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* drawer */
.drawer {
  position: fixed; inset: 0; z-index: 1050;
  background: var(--sumi);
  display: flex; flex-direction: column;
  opacity: 0; visibility: hidden; transform: translateY(-2%);
  transition: opacity .45s var(--ease), transform .45s var(--ease), visibility 0s linear .45s;
}
body.drawer-open .drawer { opacity: 1; visibility: visible; transform: none; transition-delay: 0s; }
/* ドロワー上部バー：左＝ロゴ／右＝×閉じる */
body.drawer-open .nav-toggle { display: none; }
.drawer-top { flex: 0 0 auto; display: flex; align-items: center; justify-content: space-between; padding: 16px var(--s5); }
.drawer-logo img { height: 24px; width: auto; display: block; }
.drawer-close { position: relative; width: 44px; height: 44px; background: transparent; border: none; cursor: pointer; margin-right: -6px; }
.drawer-close span { position: absolute; left: 10px; top: 21px; width: 24px; height: 2px; background: #fff; border-radius: 2px; }
.drawer-close span:nth-child(1) { transform: rotate(45deg); }
.drawer-close span:nth-child(2) { transform: rotate(-45deg); }
.drawer-nav { flex: 1 1 auto; overflow-y: auto; -webkit-overflow-scrolling: touch; width: 100%; max-width: 420px; margin: 0 auto; padding: var(--s4) var(--s5) var(--s6); display: flex; flex-direction: column; justify-content: safe center; }
.drawer-nav ul { display: flex; flex-direction: column; }
.drawer-nav li { border-bottom: 1px solid rgba(255,255,255,.12); }
.drawer-nav a { display: flex; align-items: baseline; gap: 14px; padding: 16px 4px; color: #fff; }
.dn-en { font-family: var(--font-en-serif); font-style: italic; font-size: 20px; color: var(--kiwa); min-width: 110px; }
.dn-ja { display: none; } /* ハンバーガーメニューは英語のみ */
.drawer-cta { position: relative; display: flex; align-items: center; justify-content: center; margin-top: var(--s5); padding: 14px 22px; border: 1px solid var(--kiwa); border-radius: 999px; color: #fff; letter-spacing: .1em; }
.drawer-cta .btn-ico { position: absolute; right: 16px; top: 50%; transform: translateY(-50%); width: 34px; height: 34px; border-radius: 50%; background: var(--kiwa); display: inline-flex; align-items: center; justify-content: center; }
.drawer-cta .btn-ico::before { content: ""; width: 7px; height: 7px; border-top: 1.6px solid #fff; border-right: 1.6px solid #fff; transform: translateX(-1px) rotate(45deg); }

/* =========================================================
   HERO
   ========================================================= */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; overflow: hidden; }
.hero-slideshow { position: absolute; inset: -6% 0 0; z-index: 0; will-change: transform; }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.8s var(--ease); }
.hero-slide.is-active { opacity: 1; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.04); transition: transform 7s linear; }
.hero-slide.is-active img { transform: scale(1.14); }
.hero-tint {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(43,32,24,.32) 0%, rgba(43,32,24,.5) 60%, rgba(43,32,24,.66) 100%),
    radial-gradient(120% 80% at 70% 30%, rgba(107,74,47,.0), rgba(43,32,24,.45));
}
.hero-grain {
  position: absolute; inset: 0; z-index: 2; pointer-events: none; opacity: .5;
  background-image: radial-gradient(rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 4px 4px;
}
.hero-content { position: relative; z-index: 3; width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--container-pad); color: #fff; }
.hero-copy {
  font-family: var(--font-jp-serif); font-weight: 300;
  font-size: clamp(14px, 7.5vw, 37px);
  line-height: 1.14; letter-spacing: .06em;
  white-space: nowrap;
  text-shadow: 0 2px 30px rgba(0,0,0,.3);
}
.hero-sub { margin-top: var(--s5); font-family: var(--font-en-serif); font-style: italic; font-size: clamp(16px, 2.2vw, 16px); letter-spacing: .08em; opacity: .92; }
.hero-scroll { position: absolute; right: 44px; bottom: 0; z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.hero-scroll-label { writing-mode: vertical-rl; font-family: var(--font-en-serif); font-style: italic; font-size: 14px; letter-spacing: .25em; color: #fff; }
.hero-scroll-line { width: 1px; height: 70px; background: linear-gradient(to bottom, rgba(255,255,255,.7), rgba(255,255,255,0)); position: relative; overflow: hidden; }
.hero-scroll-line::after { content: ""; position: absolute; top: -40%; left: 0; width: 100%; height: 40%; background: #fff; animation: scrollDrop 1.9s var(--ease) infinite; }
@keyframes scrollDrop { 0% { transform: translateY(-100%); } 60%,100% { transform: translateY(280%); } }

/* =========================================================
   CONCEPT
   ========================================================= */
.section--concept { background: var(--shiroyu); padding-top: var(--s9); }
.concept-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s8); align-items: center; }
.concept-lead { font-family: var(--font-jp-serif); font-size: 17px; line-height: 2.1; margin: var(--s4) 0 var(--s4); color: var(--sumi); }
.concept-lead b { color: var(--cacao); font-weight: 600; }
.concept-body { font-size: 14.5px; line-height: 2.15; margin-bottom: var(--s3); color: var(--sumi-soft); }
.concept-body--accent { font-family: var(--font-jp-serif); color: var(--kiwa-dark); font-size: 16px; letter-spacing: .06em; }

/* mosaic with depth */
.concept-mosaic { position: relative; height: 660px; }
.mosaic-item { position: absolute; margin: 0; overflow: hidden; border-radius: 0; box-shadow: 0 20px 50px rgba(43,32,24,.18); will-change: transform; }
.mosaic-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease-soft); }
.concept-mosaic:hover .mosaic-item img { transform: scale(1.04); }
.mosaic-item--1 { width: 50%; height: 30%; top: 0; left: 0; z-index: 3; }
.mosaic-item--1 img { object-position: 58% 50%; }
.mosaic-item--2 { width: 38%; height: 30%; top: 10%; right: 0; z-index: 4; }
.mosaic-item--3 { width: 42%; height: 34%; bottom: 7%; left: 4%; z-index: 4; }
.mosaic-item--4 { width: 34%; height: 28%; bottom: -6%; right: 8%; z-index: 2; }
.mosaic-deco { position: absolute; top: -24px; left: -28px; width: 40%; height: 30%; border: 1px solid var(--kiwa); border-radius: var(--radius-card); z-index: 1; opacity: .45; }

/* curve divider */
.curve-divider { color: var(--kiwa); line-height: 0; margin: -10px 0; }
.curve-divider svg { width: 100%; height: 110px; display: block; }

/* =========================================================
   BRANDS
   ========================================================= */
.section--brands { position: relative; background: var(--shiroyu); padding-top: var(--s9); }
.brands-head { margin-bottom: var(--s7); }

/* brand quick-nav — segmented pill bar (search-UI inspired) */
.brand-quicknav {
  display: flex; align-items: center; gap: var(--s4); flex-wrap: wrap;
  background: var(--kami); border: 1px solid var(--line);
  border-radius: var(--radius-full);
  padding: 10px 12px 10px 28px;
  box-shadow: 0 14px 40px rgba(43,32,24,.08);
}
.qn-label { font-family: var(--font-en-serif); font-style: italic; font-size: 17px; color: var(--kiwa); flex: 0 0 auto; }
.qn-items { display: flex; flex-wrap: wrap; gap: 6px; flex: 1; }
.qn-item {
  display: inline-flex; align-items: center;
  padding: 9px 20px; border-radius: var(--radius-full);
  font-size: 12.5px; font-weight: 500; letter-spacing: .04em; color: var(--sumi-soft);
  transition: background .35s var(--ease), color .35s var(--ease), transform .35s var(--ease-soft);
}
.qn-item:hover { background: var(--cacao); color: #fff; transform: translateY(-2px); }

/* sticky-stacking brand panels — each photo-panel rises and covers the previous */
.brand-stack { position: relative; }
.brand-panel {
  position: sticky; top: 0;
  min-height: 100svh;
  display: flex; align-items: flex-end;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  background: var(--sumi);
  scroll-margin-top: 0;
}
.brand-panel-media { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.brand-panel-media img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.05); }
.brand-panel-media--placeholder {
  display: flex; align-items: center; justify-content: center;
  background:
    radial-gradient(120% 120% at 28% 18%, rgba(231,185,197,.5), rgba(0,0,0,0) 60%),
    linear-gradient(135deg, var(--kiwa) 0%, var(--cacao) 100%);
}
.brand-placeholder-en { font-family: var(--font-en-serif); font-style: italic; font-size: clamp(44px,8vw,110px); color: rgba(255,255,255,.85); letter-spacing: .04em; }
.brand-panel-scrim {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(0deg, rgba(34,26,20,.84) 0%, rgba(34,26,20,.4) 36%, rgba(34,26,20,.1) 66%, rgba(34,26,20,.34) 100%);
}
.brand-panel-inner {
  position: relative; z-index: 2; width: 100%;
  display: flex; align-items: flex-end; justify-content: space-between; gap: var(--s5);
  padding-bottom: clamp(56px, 11vh, 128px);
}
.brand-panel-text { max-width: 560px; }
.brand-panel-num { font-family: var(--font-en-serif); font-style: italic; font-weight: 500; font-size: clamp(90px, 13vw, 220px); line-height: .72; color: rgba(255,255,255,.16); flex: 0 0 auto; }

/* shared brand text + light overlay variants */
.brand-operator { font-size: 11px; letter-spacing: .14em; color: var(--kiwa-dark); margin-bottom: var(--s3); position: relative; padding-left: 30px; }
.brand-operator::before { content: ""; position: absolute; left: 0; top: 50%; width: 20px; height: 1px; background: var(--kiwa); }
.brand-name { font-family: var(--font-jp-serif); font-weight: 600; font-size: clamp(28px, 3.8vw, 48px); color: var(--sumi); letter-spacing: .04em; line-height: 1.3; }
#brand-fab .brand-name { font-size: clamp(28px, 3.4vw, 40px); }
/* ブランド名＝ロゴ画像（各ブランド公式ロゴSVG／白ロゴは暗い写真上でそのまま可読） */
.brand-name:has(.brand-name-logo) { line-height: 0; margin: 0 0 6px; }
.brand-name-logo { display: block; width: auto; height: auto; max-width: 100%; filter: drop-shadow(0 2px 20px rgba(0,0,0,.34)); }
#brand-cacaocat .brand-name-logo { width: clamp(190px, 25vw, 248px); }
#brand-chihiro  .brand-name-logo { width: clamp(232px, 31vw, 300px); }
#brand-tsumu    .brand-name-logo { width: clamp(224px, 29vw, 292px); }
#brand-origin   .brand-name-logo { width: clamp(230px, 31vw, 300px); }
#brand-fab      .brand-name-logo { width: clamp(126px, 16vw, 164px); filter: drop-shadow(0 3px 22px rgba(0,0,0,.45)); }
.brand-en { font-family: var(--font-en-serif); font-style: italic; font-size: 20px; color: var(--kiwa); margin: 8px 0 var(--s3); }
.brand-desc { font-size: 14.5px; line-height: 2.05; color: var(--sumi-soft); margin-bottom: var(--s4); }
.brand-operator--light { color: rgba(255,255,255,.92); }
.brand-operator--light::before { background: rgba(255,255,255,.75); }
.brand-name--light { color: #fff; text-shadow: 0 2px 26px rgba(0,0,0,.32); }
.brand-en--light { color: #fff; opacity: .92; }
.brand-desc--light { color: rgba(255,255,255,.9); }
.link-arrow--light { color: #fff; }
.link-arrow--light::after,
.link-arrow--light:hover::after {
  background:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='44' height='44' viewBox='0 0 44 44'><circle cx='22' cy='22' r='22' fill='%23B8865A'/><path d='M14 22h17M25 15l7 7-7 7' fill='none' stroke='%23ffffff' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/></svg>") right center / 44px 44px no-repeat,
    linear-gradient(to right, rgba(255,255,255,.7), rgba(255,255,255,.7)) left center / 56px 1px no-repeat;
}

/* =========================================================
   FACTORY
   ========================================================= */
.section--factory { background: var(--sumi); color: #fff; padding-bottom: 160px; }
.section--factory .section-title { color: #fff; }
.section--factory .bg-letter { color: rgba(255,255,255,.045); }
.factory-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s8); align-items: center; margin: 0 0 var(--s7) 0; }
/* FACTORY 写真マーキー（右→左に流れる無限スクロール） */
.factory-marquee { overflow: hidden; width: 100%; margin-bottom: 150px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.factory-marquee-track { display: flex; width: max-content; animation: factoryScroll 48s linear infinite; }
.factory-marquee-track img { height: 240px; width: auto; flex: 0 0 auto; object-fit: cover; display: block; margin-right: 16px; }
.factory-marquee:hover .factory-marquee-track { animation-play-state: paused; }
@keyframes factoryScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.factory-media { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 5/4; box-shadow: 0 30px 60px rgba(0,0,0,.4); }
.factory-media::before { content: ""; position: absolute; bottom: -22px; right: -22px; width: 55%; height: 45%; border: 1px solid rgba(184,134,90,.5); border-radius: var(--radius-lg); z-index: 2; }
.factory-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease-soft); }
.factory-media:hover img { transform: scale(1.05); }
.factory-text .section-eyebrow { color: var(--kiwa); }
.factory-body { color: rgba(255,255,255,.82); font-size: 14.5px; line-height: 2.15; margin: var(--s4) 0 var(--s3); }
.section--factory .link-arrow { color: #fff; }
.section--factory .link-arrow::after,
.section--factory .link-arrow:hover::after {
  background:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='44' height='44' viewBox='0 0 44 44'><circle cx='22' cy='22' r='22' fill='%23B8865A'/><path d='M14 22h17M25 15l7 7-7 7' fill='none' stroke='%23ffffff' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/></svg>") right center / 44px 44px no-repeat,
    linear-gradient(to right, rgba(255,255,255,.6), rgba(255,255,255,.6)) left center / 56px 1px no-repeat;
}

/* =========================================================
   GLOBAL
   ========================================================= */
.section--global {
  background: var(--kinari);
  margin-top: -160px;
  padding-top: 130px;
  border-top-left-radius: 50% 240px;
  border-top-right-radius: 50% 240px;
  z-index: 2;
}
.country-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s4); }
.country {
  background: var(--kami); border: 1px solid var(--line); border-radius: var(--radius-card);
  padding: var(--s5) var(--s3); text-align: center;
  transition: transform .5s var(--ease-soft), box-shadow .5s var(--ease-soft), border-color .4s;
}
.country:hover { transform: translateY(-5px); box-shadow: 0 18px 40px rgba(43,32,24,.12); }
.country-en { display: block; font-family: var(--font-en-serif); font-style: italic; font-size: 22px; color: var(--cacao); }
.country-ja { display: block; font-size: 12.5px; letter-spacing: .08em; color: var(--hai); margin-top: 4px; }
.country.is-active { border-color: rgba(184,134,90,.45); }
.country.is-active .country-en { color: var(--kiwa-dark); }
.country.is-next { border-style: dashed; opacity: .7; }
.country.is-next .country-en { color: var(--hai); }
/* 世界地図ビジュアル */
.worldmap { margin-top: var(--s6); }
.worldmap-canvas { position: relative; width: 100%; max-width: 1040px; margin: 0 auto; aspect-ratio: 950 / 620; }
.worldmap-img { width: 100%; height: 100%; object-fit: contain; display: block; opacity: .92; }
.wm-pin { position: absolute; width: 0; height: 0; }
.wm-dot { position: absolute; left: 0; top: 0; width: 11px; height: 11px; margin: -5.5px 0 0 -5.5px; border-radius: 50%; background: var(--berry); box-shadow: 0 0 0 4px rgba(194,96,122,.20); z-index: 2; }
.wm-dot::after { content: ""; position: absolute; inset: 0; border-radius: 50%; box-shadow: 0 0 0 2px var(--berry); animation: wmPing 2.8s var(--ease-soft) infinite; }
.wm-pin--home .wm-dot { width: 15px; height: 15px; margin: -7.5px 0 0 -7.5px; background: var(--kiwa); box-shadow: 0 0 0 5px rgba(184,134,90,.24); }
.wm-pin--home .wm-dot::after { box-shadow: 0 0 0 2px var(--kiwa); }
@keyframes wmPing { 0% { transform: scale(1); opacity: .7; } 70%, 100% { transform: scale(2.7); opacity: 0; } }
.wm-tag { position: absolute; top: 0; left: 0; transform: translate(16px, -50%); white-space: nowrap; font-family: var(--font-en-sans); font-size: 11px; letter-spacing: .08em; color: var(--sumi); background: rgba(255,255,255,.9); padding: 3px 10px; border-radius: 999px; box-shadow: 0 4px 14px rgba(43,32,24,.12); opacity: 0; transition: opacity .3s; pointer-events: none; z-index: 3; }
.wm-pin--l .wm-tag { transform: translate(calc(-100% - 16px), -50%); }
.wm-pin:hover .wm-tag { opacity: 1; }
.worldmap-legend { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 14px; margin-top: var(--s6); }
.worldmap-legend li { display: flex; align-items: baseline; gap: 9px; padding: 8px 18px; border: 1px solid var(--line); border-radius: 999px; background: var(--kami); }
.worldmap-legend li.is-next { background: transparent; border-style: dashed; opacity: .7; }
.wm-lg-en { font-family: var(--font-en-serif); font-style: italic; font-size: 16px; color: var(--cacao); }
.wm-lg-ja { font-size: 12px; letter-spacing: .06em; color: var(--sumi-soft); }

/* =========================================================
   LOCATIONS
   ========================================================= */
.section--locations { background: var(--shiroyu); }
.loc-layout { display: grid; grid-template-columns: minmax(240px, 0.7fr) 2fr; gap: var(--s8); align-items: start; }
.loc-layout .section-head { position: sticky; top: calc(var(--header-h) + 32px); margin-bottom: 0; }
.loc-layout .section-title { white-space: nowrap; }
.loc-list { display: flex; flex-direction: column; }
.loc-card { display: grid; grid-template-columns: minmax(160px, 0.8fr) 1.4fr; gap: var(--s4); align-items: baseline; padding: var(--s4) 0; border-bottom: 1px solid var(--line); }
.loc-list .loc-card:last-child { border-bottom: none; }
.loc-no { font-family: var(--font-en-serif); font-style: italic; font-size: 18px; color: var(--kiwa); }
.loc-city { font-family: var(--font-en-serif); font-weight: 500; font-size: 24px; letter-spacing: .05em; color: var(--sumi); margin: 4px 0 0; }
.loc-meta { font-size: 13px; line-height: 1.95; color: var(--hai); }

/* =========================================================
   MVV / PHILOSOPHY
   ========================================================= */
.section--mvv { background: linear-gradient(180deg, var(--shiroyu), var(--kinari)); overflow: clip; }
.mvv-layout { display: grid; grid-template-columns: minmax(280px, 360px) 1fr; gap: var(--s7) var(--s9); align-items: start; }
.mvv-aside { position: sticky; top: calc(var(--header-h) + 32px); align-self: start; }
.mvv-main { min-width: 0; }
.mvv-label { font-family: var(--font-en-serif); font-style: italic; font-size: 18px; letter-spacing: .06em; color: var(--kiwa); margin-bottom: var(--s2); }
.vision-block .mvv-label { font-size: 21px; color: #000; }
.values-head .mvv-label { font-size: 34px; color: #000; }
.mission-block { text-align: left; }
.mission-block .mvv-label { font-size: 22px; }
.mission-copy { font-family: var(--font-jp-serif); font-weight: 500; font-size: clamp(34px, 3.4vw, 52px); letter-spacing: .08em; color: var(--sumi); line-height: 1.4; margin-top: var(--s2); }
.mission-figure { width: clamp(150px, 15vw, 220px); height: auto; display: block; margin-top: var(--s5); }
.vision-block { background: var(--kami); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: var(--s7); text-align: center; margin: 0 0 var(--s8); box-shadow: 0 20px 50px rgba(43,32,24,.07); position: relative; }
.vision-block::before { content: ""; position: absolute; top: -44px; left: 50%; transform: translateX(-50%); width: 2px; height: 84px; background: var(--kiwa); opacity: .45; z-index: 3; }
.vision-block::after { content: ""; position: absolute; top: -44px; left: 50%; transform: translate(-50%, 0); width: 2px; height: 18px; background: linear-gradient(to bottom, transparent, var(--kiwa)); animation: visionLine 2.4s var(--ease-soft) infinite; z-index: 3; }
@keyframes visionLine { 0% { transform: translate(-50%, 0); opacity: 0; } 15% { opacity: 1; } 85% { opacity: 1; } 100% { transform: translate(-50%, 66px); opacity: 0; } }
.vision-title { font-family: var(--font-jp-serif); font-weight: 600; font-size: clamp(22px, 3vw, 34px); color: var(--cacao); line-height: 1.5; margin-bottom: 12px; }
.vision-title span { display: block; font-size: .68em; color: var(--sumi); margin-top: 6px; }
.vision-title .vision-en { font-family: var(--font-en-serif); font-style: italic; font-size: .56em; color: var(--kiwa); letter-spacing: .02em; margin-top: 10px; }
.vision-body { font-size: 15px; line-height: 2.3; color: var(--sumi-soft); }

.values-head { text-align: center; margin-bottom: var(--s5); }
.values-note { color: var(--hai); font-size: 14px; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s5); margin-bottom: var(--s8); }
.value-card { background: var(--kami); border: 1px solid var(--line); border-radius: var(--radius-card); padding: var(--s6) var(--s5); position: relative; transition: transform .5s var(--ease-soft), box-shadow .5s var(--ease-soft); overflow: hidden; }
.value-card::before { content: ""; position: absolute; top: 0; left: 0; width: 4px; height: 100%; background: linear-gradient(var(--kiwa), var(--berry)); border-radius: var(--radius-card) 0 0 var(--radius-card); }
.value-card:hover { transform: translateY(-7px); box-shadow: 0 26px 52px rgba(43,32,24,.12); }
.value-c { font-family: var(--font-en-serif); font-style: italic; font-size: 30px; color: var(--kiwa); }
.value-name { font-family: var(--font-jp-serif); font-weight: 600; font-size: 26px; color: var(--sumi); margin-top: 4px; }
.value-sub { font-family: var(--font-jp-serif); font-size: 15px; color: var(--cacao); margin: 6px 0 var(--s3); }
.value-desc { font-size: 13.5px; line-height: 2.05; color: var(--sumi-soft); word-break: auto-phrase; text-wrap: pretty; }
/* 写真背景バリエーション（グレー透過レイヤー＋白文字） */
.value-card--photo { background: #3a3a3d; border-color: transparent; border-radius: 0; min-height: 440px; display: flex; flex-direction: column; justify-content: flex-end; padding: var(--s6) var(--s5); }
.value-card--photo .vc-bg { position: absolute; inset: 0; z-index: 0; }
.value-card--photo .vc-bg img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.04); transition: transform .7s var(--ease-soft); }
.value-card--photo:hover .vc-bg img { transform: scale(1.1); }
.value-card--photo::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(38,38,40,.32) 0%, rgba(34,34,36,.5) 52%, rgba(28,28,30,.7) 100%); }
.value-card--photo::before { display: none; }
/* 縦の流れる線（MVV区切り） */
.flowline { position: relative; width: 100%; height: 72px; margin: var(--s2) 0 var(--s6); }
.flowline::before { content: ""; position: absolute; left: 50%; top: 0; transform: translateX(-50%); width: 2px; height: 100%; background: var(--kiwa); opacity: .4; }
.flowline::after { content: ""; position: absolute; left: 50%; top: 0; transform: translate(-50%, 0); width: 2px; height: 18px; background: linear-gradient(to bottom, transparent, var(--kiwa)); animation: flowDown 2.4s var(--ease-soft) infinite; }
@keyframes flowDown { 0% { transform: translate(-50%, 0); opacity: 0; } 15% { opacity: 1; } 85% { opacity: 1; } 100% { transform: translate(-50%, 54px); opacity: 0; } }
.value-card--photo > *:not(.vc-bg) { position: relative; z-index: 2; }
.value-card--photo .value-c { color: #fff; opacity: .95; }
.value-card--photo .value-name { color: #fff; text-shadow: 0 2px 22px rgba(0,0,0,.35); }
.value-card--photo .value-sub { color: rgba(255,255,255,.95); }
.value-card--photo .value-desc { color: rgba(255,255,255,.92); }

/* 経営7ヶ条 */
.creed { background: var(--cacao); color: #fff; border-radius: var(--radius-lg); padding: var(--s7); margin: 0; box-shadow: 0 24px 60px rgba(43,32,24,.2); }
.creed-head { text-align: center; margin-bottom: var(--s5); }
.creed-title { font-family: var(--font-jp-serif); font-weight: 600; font-size: 22px; letter-spacing: .1em; }
.creed-note { font-size: 12.5px; color: rgba(255,255,255,.7); margin-top: 6px; }
.creed-list { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s3) var(--s6); }
.creed-list li { display: flex; gap: 14px; padding: var(--s3) 0; border-top: 1px solid rgba(255,255,255,.14); }
.creed-no { font-family: var(--font-en-serif); font-style: italic; font-size: 30px; width: 30px; white-space: nowrap; color: var(--kiwa); flex-shrink: 0; line-height: 1.3; }
.creed-body b { display: block; font-family: var(--font-jp-serif); font-weight: 500; font-size: 20px; letter-spacing: .04em; margin-bottom: 4px; }
.creed-body span { font-size: 14px; line-height: 1.85; color: rgba(255,255,255,.72); }

.mvv-tagline { text-align: center; font-family: var(--font-jp-serif); font-weight: 600; font-size: clamp(22px, 3.5vw, 36px); letter-spacing: .14em; color: var(--kiwa-dark); margin-top: var(--s8); }

/* =========================================================
   TOP MESSAGE
   ========================================================= */
.section--message { background: var(--shiroyu); }
.message-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: var(--s8); align-items: center; }
.message-text { max-width: 820px; }
.message-lead br { display: block; }
.portrait-frame { position: relative; aspect-ratio: 3/4; border-radius: var(--radius-lg); background: linear-gradient(160deg, var(--kinari-deep), var(--kinari)); display: flex; flex-direction: column; align-items: center; justify-content: center; box-shadow: 0 24px 56px rgba(43,32,24,.14); overflow: hidden; }
.portrait-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.portrait-mono { font-family: var(--font-en-serif); font-style: italic; font-size: 84px; color: var(--cacao); opacity: .35; }
.portrait-cap { font-size: 12px; letter-spacing: .2em; color: var(--hai); margin-top: 8px; }
.portrait-name { font-family: var(--font-jp-serif); font-size: 14px; letter-spacing: .08em; color: var(--sumi); margin-top: var(--s3); text-align: center; }
.message-lead { font-family: var(--font-jp-serif); font-weight: 600; font-size: clamp(22px, 3.2vw, 34px); line-height: 1.7; color: var(--sumi); margin: var(--s2) 0 var(--s5); letter-spacing: .03em; }
.message-body { font-size: 14.5px; line-height: 2.2; color: var(--sumi-soft); margin-bottom: var(--s3); }
.message-sign { font-family: var(--font-jp-serif); font-size: 15px; letter-spacing: .1em; color: var(--sumi); margin-top: var(--s4); }

/* =========================================================
   BUSINESS
   ========================================================= */
.section--business { background: linear-gradient(180deg, var(--shiroyu), var(--kinari)); }
.biz-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s5); }
.biz-card { background: var(--kami); border: 1px solid var(--line); border-radius: var(--radius-card); padding: var(--s6) var(--s5) var(--s5); transition: transform .5s var(--ease-soft), box-shadow .5s var(--ease-soft); display: flex; flex-direction: column; }
.biz-card:hover { transform: translateY(-7px); box-shadow: 0 26px 52px rgba(43,32,24,.14); }
.biz-tag { display: inline-block; align-self: flex-start; font-family: var(--font-en-sans); font-size: 11px; font-weight: 600; letter-spacing: .14em; color: var(--kiwa-dark); background: var(--kami); border: 1px solid var(--kiwa); border-radius: 0 var(--radius-full) var(--radius-full) var(--radius-full); padding: 5px 15px; margin-bottom: var(--s4); }
.biz-title { font-family: var(--font-jp-serif); font-weight: 600; font-size: 22px; color: var(--sumi); line-height: 1.5; margin-bottom: var(--s3); }
.biz-desc { font-size: 13.5px; line-height: 2.05; color: var(--sumi-soft); margin-bottom: var(--s4); flex: 1; }

/* =========================================================
   RECRUIT
   ========================================================= */
.section--recruit { padding: 0; }
.recruit-inner { position: relative; min-height: 420px; display: flex; align-items: center; justify-content: center; overflow: hidden; isolation: isolate; }
.recruit-bg { position: absolute; inset: -10% 0 0; z-index: 0; background: url("../img/recruit-people2.jpg") center 38%/cover no-repeat; will-change: transform; }
.recruit-tint { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(34,34,36,.60), rgba(34,34,36,.74)); }
.recruit-content { position: relative; z-index: 2; text-align: center; color: #fff; max-width: 1000px; padding: var(--s8) var(--container-pad); }
.recruit-title { font-family: var(--font-jp-serif); font-weight: 600; font-size: clamp(26px, 4vw, 42px); letter-spacing: .06em; margin-bottom: var(--s4); }
.recruit-desc { color: rgba(255,255,255,.88); font-size: 14.5px; line-height: 2.1; margin-bottom: var(--s6); }

/* =========================================================
   CONTACT
   ========================================================= */
.section--contact { background: var(--shiroyu); }
.contact-card { text-align: center; max-width: 720px; margin: 0 auto; }
.contact-card .section-title { font-size: clamp(24px, 3vw, 32px); }
.contact-sub { color: var(--hai); margin: var(--s4) 0 var(--s6); font-size: 14.5px; }
.contact-actions { display: flex; gap: var(--s3); justify-content: center; flex-wrap: wrap; }

/* =========================================================
   NEWS (bottom)
   ========================================================= */
.section--news { background: var(--kinari); padding-bottom: var(--s9); }
.news-list { border-top: 1px solid var(--line); }
.news-row { border-bottom: 1px solid var(--line); }
.news-row a,
.news-row .news-static { display: grid; grid-template-columns: 120px 110px 1fr 44px; align-items: center; gap: var(--s3); padding: var(--s4) var(--s2); transition: background .3s, padding-left .3s; }
.news-row a:hover { background: rgba(255,255,255,.5); padding-left: var(--s4); }
/* リンクなし（クリック不可）の行 */
.news-row .news-static { cursor: default; }
.news-row .news-static .news-title { color: var(--sumi); }
.news-date { font-family: var(--font-en-sans); font-size: 13px; color: var(--hai); letter-spacing: .04em; }
.news-cat { justify-self: start; font-family: var(--font-en-sans); font-size: 10.5px; font-weight: 600; letter-spacing: .12em; padding: 4px 13px; border-radius: 0 var(--radius-full) var(--radius-full) var(--radius-full); color: #fff; }
.news-cat--release { background: var(--berry); }
.news-cat--store { background: var(--kiwa); }
.news-cat--press { background: var(--leaf); }
.news-cat--company { background: var(--cacao); }
.news-title { font-size: 14.5px; color: var(--sumi); line-height: 1.7; }
.news-arrow { justify-self: end; width: 30px; height: 30px; border-radius: 50%; border: 1px solid var(--line); position: relative; transition: border-color .3s, background .3s; }
.news-arrow::after { content: ""; position: absolute; top: 50%; left: 50%; width: 6px; height: 6px; border-top: 1.4px solid var(--cacao); border-right: 1.4px solid var(--cacao); transform: translate(-65%,-50%) rotate(45deg); }
.news-row a:hover .news-arrow { background: var(--kiwa); border-color: var(--kiwa); }
.news-row a:hover .news-arrow::after { border-color: #fff; }
/* 外部リンク（別タブ）の矢印は右上向き */
.news-arrow--ext::after { transform: translate(-50%,-50%) rotate(-45deg); }
/* PDFリンクの目印 */
.news-flag { justify-self: end; font-family: var(--font-en-sans); font-size: 9.5px; font-weight: 600; letter-spacing: .1em; color: var(--cacao); border: 1px solid var(--line); border-radius: var(--radius-full); padding: 3px 9px; line-height: 1; transition: background .3s, color .3s, border-color .3s; }
.news-row a:hover .news-flag { background: var(--kiwa); border-color: var(--kiwa); color: #fff; }
.news-more { margin-top: var(--s6); text-align: center; }
.news-more .link-arrow { justify-content: center; }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer { background: var(--sumi); color: rgba(255,255,255,.7); padding: var(--s8) 0 var(--s4); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: var(--s6); }
.footer-logo { font-family: var(--font-en-serif); font-style: italic; font-size: 30px; letter-spacing: .12em; color: #fff; }
.footer-logo-img { height: 26px; width: auto; display: inline-block; vertical-align: middle; }
.footer-logo-sub { font-family: var(--font-en-sans); font-size: 10px; letter-spacing: .3em; color: var(--kiwa); margin-left: 10px; vertical-align: middle; }
.footer-tag { margin-top: var(--s3); font-size: 12px; line-height: 1.9; color: rgba(255,255,255,.55); }
.footer-col h4 { font-family: var(--font-en-serif); font-style: italic; font-size: 17px; color: var(--kiwa); margin-bottom: var(--s3); font-weight: 500; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { font-size: 13px; color: rgba(255,255,255,.7); transition: color .3s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { max-width: var(--container); margin: var(--s7) auto 0; padding: var(--s4) var(--container-pad) 0; border-top: 1px solid rgba(255,255,255,.12); }
.footer-bottom p { font-family: var(--font-en-sans); font-size: 11px; letter-spacing: .08em; color: rgba(255,255,255,.45); }

/* =========================================================
   SUBPAGES — shared masthead / breadcrumb
   ========================================================= */
.page-head { position: relative; padding: calc(var(--header-h) + var(--s8)) 0 var(--s8); background: linear-gradient(155deg, var(--cacao) 0%, var(--sumi) 90%); color: #fff; overflow: hidden; isolation: isolate; }
.page-head::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 40%; background: linear-gradient(180deg, rgba(43,32,24,0), rgba(43,32,24,.35)); z-index: 1; pointer-events: none; }
.page-head .bg-letter { color: rgba(255,255,255,.05); top: auto; bottom: -14%; }
.page-head .container { position: relative; z-index: 2; }
.page-head-eyebrow { font-family: var(--font-en-serif); font-style: italic; font-size: 20px; letter-spacing: .06em; color: var(--kiwa); margin-bottom: var(--s2); }
.page-head-title { font-family: var(--font-jp-serif); font-weight: 600; font-size: clamp(30px, 4.6vw, 56px); letter-spacing: .04em; line-height: 1.3; }
.page-head-note { margin-top: var(--s3); color: rgba(255,255,255,.74); font-size: 14px; max-width: 660px; line-height: 2; }
/* 写真ヒーロー（--ph に画像URLを渡す。スクリムで白文字の可読性を確保） */
.page-head--photo { background: var(--sumi); }
.page-head--photo::before { content: ""; position: absolute; inset: 0; z-index: 0; background-image: linear-gradient(155deg, rgba(58,38,28,.72) 0%, rgba(35,26,20,.84) 100%), var(--ph); background-size: cover; background-position: center; transform: scale(1.02); }
.breadcrumb { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-top: var(--s5); font-size: 12px; letter-spacing: .04em; color: rgba(255,255,255,.6); }
.breadcrumb a { color: rgba(255,255,255,.82); transition: color .3s; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb .sep { opacity: .5; }
.page-main { padding: var(--s8) 0 var(--s9); background: var(--shiroyu); position: relative; }
.page-narrow { max-width: 980px; margin: 0 auto; }

/* news index */
.news-filter { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: var(--s6); }
.news-filter button { padding: 9px 20px; border: 1px solid var(--line); border-radius: var(--radius-full); font-size: 12.5px; letter-spacing: .04em; color: var(--sumi-soft); background: var(--kami); transition: background .3s var(--ease), color .3s var(--ease), border-color .3s, transform .35s var(--ease-soft); }
.news-filter button:hover { border-color: var(--kiwa); color: var(--kiwa-dark); transform: translateY(-2px); }
.news-filter button.is-active { background: var(--cacao); color: #fff; border-color: var(--cacao); }
.news-cat--global { background: #4E7C84; }
.news-cat--important { background: #B0506A; }
.news-row.is-hidden { display: none; }
.pager { display: flex; justify-content: center; align-items: center; gap: 8px; margin-top: var(--s8); }
.pager a, .pager span { min-width: 40px; height: 40px; padding: 0 6px; display: inline-flex; align-items: center; justify-content: center; border-radius: var(--radius-full); border: 1px solid var(--line); font-family: var(--font-en-sans); font-size: 13px; color: var(--sumi-soft); background: var(--kami); transition: border-color .3s, color .3s, background .3s; }
.pager a:hover { border-color: var(--kiwa); color: var(--kiwa-dark); }
.pager .is-current { background: var(--cacao); color: #fff; border-color: var(--cacao); }
.pager .is-disabled { opacity: .4; pointer-events: none; }

/* news article (detail) */
.article { max-width: 820px; margin: 0 auto; }
.article-head { border-bottom: 1px solid var(--line); padding-bottom: var(--s5); margin-bottom: var(--s6); }
.article-meta { display: flex; align-items: center; gap: var(--s3); margin-bottom: var(--s4); }
.article-date { font-family: var(--font-en-sans); font-size: 13px; color: var(--hai); letter-spacing: .04em; }
.article-title { font-family: var(--font-jp-serif); font-weight: 600; font-size: clamp(24px, 3.4vw, 38px); line-height: 1.6; color: var(--sumi); letter-spacing: .03em; }
.article-body { font-size: 15px; line-height: 2.3; color: var(--sumi-soft); }
.article-body > * + * { margin-top: var(--s4); }
.article-body h2 { font-family: var(--font-jp-serif); font-weight: 600; font-size: 22px; color: var(--sumi); margin-top: var(--s7); line-height: 1.6; letter-spacing: .03em; }
.article-body h3 { font-family: var(--font-jp-serif); font-weight: 600; font-size: 18px; color: var(--cacao); margin-top: var(--s6); }
.article-body a { color: var(--kiwa-dark); text-decoration: underline; text-underline-offset: 3px; }
.article-body strong { font-weight: 600; color: var(--sumi); }
.article-body ul, .article-body ol { padding-left: 1.4em; }
.article-body ul { list-style: disc; } .article-body ol { list-style: decimal; }
.article-body li { margin-bottom: 8px; }
.article-figure { margin: var(--s6) 0; }
.article-figure img { border-radius: var(--radius-card); width: 100%; }
.article-figure figcaption { font-size: 12px; color: var(--hai); margin-top: 10px; text-align: center; }
.article-foot { margin-top: var(--s8); padding-top: var(--s5); border-top: 1px solid var(--line); }
.article-nav { display: flex; justify-content: space-between; gap: var(--s4); }
.article-nav a { font-size: 13px; color: var(--sumi-soft); letter-spacing: .04em; transition: color .3s; max-width: 46%; }
.article-nav a:hover { color: var(--kiwa-dark); }
.article-nav .an-label { display: block; font-family: var(--font-en-serif); font-style: italic; font-size: 12px; color: var(--kiwa); margin-bottom: 4px; }
.article-nav .is-disabled { opacity: .3; pointer-events: none; }
.back-to-list { text-align: center; margin-top: var(--s7); }
.back-to-list .link-arrow { justify-content: center; }

/* contact */
.contact-layout { display: grid; grid-template-columns: 1fr; gap: var(--s8); align-items: start; max-width: 760px; margin: 0 auto; }
.privacy-box { font-size: 12.5px; line-height: 2; color: var(--sumi-soft); background: #fff; border: 1px solid var(--line); border-radius: 0; padding: var(--s4) var(--s5); margin-bottom: var(--s6); }
.privacy-box b { color: var(--sumi); }
.form-card { background: var(--kami); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(26px, 4vw, 52px); box-shadow: 0 20px 50px rgba(43,32,24,.06); }
.form-row { margin-bottom: var(--s5); }
.form-label { display: flex; align-items: center; gap: 10px; font-size: 13.5px; font-weight: 600; letter-spacing: .06em; color: var(--sumi); margin-bottom: 7px; }
/* CF7のwpautopが挿入する行内<br>と<p>余白でラベル〜入力欄が開くのを詰める */
.form-card .form-row br { display: none; }
.req { font-family: var(--font-en-sans); font-size: 10px; font-weight: 600; letter-spacing: .1em; color: #fff; background: var(--berry); border-radius: var(--radius-full); padding: 3px 9px; }
.opt { font-family: var(--font-en-sans); font-size: 10px; letter-spacing: .1em; color: var(--hai); border: 1px solid var(--line); border-radius: var(--radius-full); padding: 2px 9px; }
.field { width: 100%; font: inherit; font-size: 15px; color: var(--sumi); background: var(--shiroyu); border: 1px solid var(--line); border-radius: var(--radius); padding: 13px 16px; transition: border-color .3s, box-shadow .3s, background .3s; }
.field::placeholder { color: #B7AC9E; }
.field:focus { outline: none; border-color: var(--kiwa); background: #fff; box-shadow: 0 0 0 3px rgba(184,134,90,.14); }
textarea.field { min-height: 180px; resize: vertical; line-height: 1.9; }
select.field { appearance: none; -webkit-appearance: none; padding-right: 44px; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' fill='none' stroke='%23857A6F' stroke-width='1.4' stroke-linecap='round'/></svg>"); background-repeat: no-repeat; background-position: right 16px center; }
.field-inline { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.field-sep { color: var(--hai); }
.zip-row .field { max-width: 180px; }
.tel-row .field { max-width: 130px; }
.field-note { font-size: 12px; color: var(--hai); margin-top: 8px; }
.consent { display: flex; align-items: flex-start; gap: 12px; justify-content: center; margin: var(--s6) 0 var(--s5); font-size: 13.5px; color: var(--sumi); }
.consent input { margin-top: 4px; width: 18px; height: 18px; accent-color: var(--cacao); flex: 0 0 auto; }
.consent a { color: var(--kiwa-dark); text-decoration: underline; text-underline-offset: 2px; }
.form-submit { text-align: center; }
.form-submit .btn { min-width: 280px; }
.contact-aside .info-block { margin-bottom: var(--s6); padding-bottom: var(--s6); border-bottom: 1px solid var(--line); }
.contact-aside .info-block:last-child { border-bottom: none; }
.info-label { font-family: var(--font-en-serif); font-style: italic; font-size: 18px; color: var(--kiwa); margin-bottom: var(--s2); }
.info-text { font-size: 13.5px; line-height: 2; color: var(--sumi-soft); }
.info-text strong { color: var(--sumi); font-weight: 600; }
.info-tel { font-family: var(--font-en-sans); font-size: 26px; letter-spacing: .04em; color: var(--sumi); margin: 6px 0 2px; }

/* Contact Form 7（テーマCSSと共有） */
.form-card .wpcf7-form p { margin: 0; }
.form-card .wpcf7-form-control-wrap { display: block; }
.form-card .field-inline .wpcf7-form-control-wrap { display: inline-block; }
.form-card .consent .wpcf7-form-control-wrap { display: inline-flex; }
.form-card .wpcf7-acceptance .wpcf7-list-item { margin: 0; }
.form-card .wpcf7-acceptance label { display: inline-flex; align-items: flex-start; gap: 12px; }
.form-card .wpcf7-acceptance input[type=checkbox] { margin-top: 4px; width: 18px; height: 18px; accent-color: var(--cacao); flex: 0 0 auto; }
.form-card .consent a { color: var(--kiwa-dark); text-decoration: underline; text-underline-offset: 2px; }
.form-card input[type=submit] { -webkit-appearance: none; appearance: none; min-width: 280px; min-height: 62px; padding: 0 40px; border: none; border-radius: var(--radius-full); background: var(--cacao); color: #fff; font-weight: 600; font-size: 15px; letter-spacing: .12em; cursor: pointer; transition: background .35s var(--ease), transform .45s var(--ease-soft), box-shadow .45s var(--ease-soft); }
.form-card input[type=submit]:hover { background: var(--sumi); transform: translateY(-3px); box-shadow: 0 16px 34px rgba(43,32,24,.24); }
.wpcf7-spinner { margin: 14px auto 0; display: block; }
.wpcf7 .wpcf7-response-output { margin: var(--s4) 0 0 !important; border: 1px solid var(--line); border-radius: var(--radius); padding: 12px 16px; font-size: 13px; line-height: 1.8; }
.wpcf7-not-valid-tip { color: #B0506A; font-size: 12px; margin-top: 6px; }
.wpcf7-form.invalid .wpcf7-response-output, .wpcf7-form.unaccepted .wpcf7-response-output, .wpcf7-form.payment-required .wpcf7-response-output { border-color: #E0A9B6; background: #FBEEF1; color: #9A3550; }
.wpcf7-form.sent .wpcf7-response-output { border-color: #B6CDB0; background: #EEF4EC; color: #4D6B45; }
.field.wpcf7-not-valid { border-color: #D98AA0; box-shadow: 0 0 0 3px rgba(176,80,106,.12); }

/* consent 内「個人情報の取り扱い」＝ポップアップを開くリンク */
.privacy-link { color: var(--cacao); text-decoration: underline; text-underline-offset: 2px; cursor: pointer; }
.privacy-link:hover { color: var(--sumi); }

/* privacy modal（個人情報の取り扱いポップアップ） */
.privacy-modal { position: fixed; inset: 0; z-index: 1000; display: none; }
.privacy-modal.is-open { display: block; }
.privacy-modal-overlay { position: absolute; inset: 0; background: rgba(43,32,24,.55); -webkit-backdrop-filter: blur(2px); backdrop-filter: blur(2px); }
.privacy-modal-dialog { position: relative; width: calc(100% - 40px); max-width: 720px; max-height: 86vh; margin: 7vh auto 0; background: var(--kami); border-radius: var(--radius-lg); box-shadow: 0 30px 80px rgba(43,32,24,.32); display: flex; flex-direction: column; overflow: hidden; animation: privacyIn .4s var(--ease-soft); }
@keyframes privacyIn { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
.privacy-modal-close { position: absolute; top: 12px; right: 14px; width: 42px; height: 42px; border: none; background: transparent; font-size: 26px; line-height: 1; color: var(--sumi-soft); cursor: pointer; z-index: 2; transition: color .3s; }
.privacy-modal-close:hover { color: var(--sumi); }
.privacy-modal-body { overflow-y: auto; -webkit-overflow-scrolling: touch; padding: clamp(28px, 4vw, 52px); }
.privacy-modal-body .pv-eyebrow { font-family: var(--font-en-sans); font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--kiwa); margin: 0; }
.privacy-modal-body h2 { font-family: var(--font-jp-serif); font-weight: 600; font-size: clamp(20px, 3vw, 26px); color: var(--sumi); margin: 6px 0 var(--s3); }
.privacy-modal-body .pv-lead { font-size: 13.5px; line-height: 1.95; color: var(--sumi-soft); margin: 0 0 var(--s4); }
.privacy-modal-body h3 { font-size: 13.5px; font-weight: 700; letter-spacing: .04em; color: var(--sumi); margin: var(--s4) 0 5px; }
.privacy-modal-body p { font-size: 13px; line-height: 1.95; color: var(--sumi-soft); margin: 0; }
.privacy-modal-body .pv-meta { font-size: 12px; color: var(--hai); margin-top: var(--s5); padding-top: var(--s4); border-top: 1px solid var(--line); }

/* SPだけ出す改行（PC非表示。767pxで inline に） */
.br-sp-on { display: none; }

@media (max-width: 1024px) {
  .contact-layout { grid-template-columns: 1fr; gap: var(--s6); }
  .contact-aside { order: -1; }
  .contact-aside .info-block { display: inline-block; vertical-align: top; width: 100%; }
}
@media (max-width: 767px) {
  .page-head { padding-top: calc(var(--header-h) + var(--s6)); }
  .article-nav { flex-direction: column; }
  .article-nav a { max-width: 100%; }
  .form-card { padding: 22px; }
}

/* to-top */
.to-top { position: fixed; right: 24px; bottom: 24px; z-index: 900; width: 48px; height: 48px; border-radius: 50%; background: var(--cacao); box-shadow: 0 8px 22px rgba(43,32,24,.3); opacity: 0; visibility: hidden; transform: translateY(12px); transition: opacity .4s, transform .4s, background .3s; }
.to-top.is-show { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { background: var(--kiwa); }
.to-top span { position: absolute; top: 53%; left: 50%; width: 9px; height: 9px; border-top: 2px solid #fff; border-right: 2px solid #fff; transform: translate(-50%,-50%) rotate(-45deg); }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  :root { --container-pad: 24px; }
  .section { padding: var(--s8) 0; }
  .global-nav, .header-cta { display: none; }
  .nav-toggle { display: block; }
  .header-inner { gap: 0; }
  .concept-grid, .factory-grid, .message-grid { grid-template-columns: 1fr; gap: var(--s6); }
  .mvv-layout { grid-template-columns: 1fr; gap: var(--s5); }
  .mvv-aside { position: static; top: auto; margin-bottom: var(--s4); }
  .factory-grid .factory-media { order: -1; }
  .message-portrait { width: 100%; max-width: 360px; margin: 0 auto; }
  .brand-panel-num { font-size: clamp(70px, 12vw, 140px); }
  .loc-layout { grid-template-columns: 1fr; gap: var(--s4); }
  .loc-layout .section-head { position: static; }
  .biz-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .creed-list { grid-template-columns: 1fr; gap: 0; }
  .concept-mosaic { height: 70vw; max-height: 520px; }
}
@media (max-width: 767px) {
  body { font-size: 14.5px; }
  :root { --container-pad: 20px; --header-h: 64px; }
  .section { padding: var(--s7) 0; }
  .hero-scroll { right: 18px; }
  .values-grid { grid-template-columns: 1fr; }
  .country-grid { grid-template-columns: repeat(2, 1fr); }
  .loc-card { grid-template-columns: 1fr; gap: var(--s2); }
  .vision-block, .creed { padding: var(--s5); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--s5); }
  .footer-brand { grid-column: 1 / -1; }
  .news-row a,
  .news-row .news-static { grid-template-columns: 1fr 44px; grid-template-areas: "date arrow" "cat arrow" "title title"; row-gap: 6px; padding: var(--s4) var(--s2); }
  .news-date { grid-area: date; }
  .news-cat { grid-area: cat; }
  .news-title { grid-area: title; }
  .news-arrow,
  .news-flag { grid-area: arrow; align-self: start; }
  .concept-mosaic { height: 96vw; max-height: 480px; }
  .br-sp { display: none; }
  .br-sp-on { display: inline; }
  .section-title { line-height: 1.55; }
  /* SP微調整（websupportコメント 7746-7773 反映） */
  .hero-copy { line-height: 50px; }
  .hero-sub { font-size: 14px; line-height: 26px; }
  #brands .qn-label { margin-bottom: 15px; }
  .concept-lead br { display: none; }
  .concept-lead, .concept-body, .factory-body { word-break: auto-phrase; text-wrap: pretty; }
  .brand-quicknav { flex-direction: column; align-items: flex-start; gap: var(--s2); border-radius: var(--radius-lg); padding: 0; border-width: 0; background: transparent; box-shadow: none; }
  .qn-items { gap: 8px; }
  .qn-item { background: var(--cacao); color: #fff; padding: 8px 16px; }
  .qn-label { text-decoration: underline; text-underline-offset: 3px; }
  #brands .section-head { margin-bottom: 40px; }
  /* フッターのサイトマップ(カラム)はSP非表示。ロゴ＋コピーライトのみ */
  .footer-col { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  /* Globalセクション上部の角丸を60pxに */
  .section--global { border-top-left-radius: 60px; border-top-right-radius: 60px; }
  /* SPのボタンは矢印を右寄せで統一 */
  .btn { justify-content: space-between; }
  #mvv .values-head .mvv-label { line-height: 54px; }
  #recruit { padding-bottom: 0; }
  .message-portrait { width: 70%; max-width: 252px; }
  .btn { width: 100%; }
  .brand-panel-inner { flex-direction: column; align-items: flex-start; gap: var(--s2); }
  .brand-panel-num { order: -1; align-self: flex-end; font-size: clamp(64px, 22vw, 120px); margin-bottom: -8px; }
  .brand-panel-text { max-width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
  .bg-letter, .hero-slideshow, .mosaic-item, .recruit-bg { transform: none !important; }
  .hero-slide img { transform: none !important; }
}
