@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; align-items: center; justify-content: center;
  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; }
.drawer-nav { width: 100%; max-width: 420px; padding: 0 var(--s5); }
.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 { font-size: 14px; letter-spacing: .08em; }
.drawer-cta { display: block; margin-top: var(--s5); text-align: center; padding: 15px; border: 1px solid var(--kiwa); border-radius: 999px; color: #fff; letter-spacing: .1em; }

/* =========================================================
   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: 38%; top: 0; left: 0; z-index: 3; }
.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); }
.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); }
/* 写真背景バリエーション（グレー透過レイヤー＋白文字） */
.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-frame::after { content: ""; position: absolute; bottom: -20px; left: -20px; width: 50%; height: 40%; border: 1px solid var(--kiwa); border-radius: var(--radius-card); }
.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-people.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: 1.35fr .65fr; gap: var(--s8); align-items: start; max-width: 1180px; 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: 12px; }
.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); }

@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 { 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; }
  .section-title { line-height: 1.55; }
  .brand-quicknav { flex-direction: column; align-items: flex-start; gap: var(--s2); border-radius: var(--radius-lg); padding: 16px 18px; }
  .qn-items { gap: 8px; }
  .qn-item { background: var(--shiroyu); padding: 8px 16px; }
  .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; }
}

/* =========================================================
   RECRUIT — 採用サイト追加スタイル（コーポレート踏襲）
   ========================================================= */

/* ---- Hero（採用用に大きめ・改行可） ---- */
.rec-hero-eyebrow { font-family: var(--font-en-serif); font-style: italic; font-size: 15px; letter-spacing: .22em; color: var(--berry-soft); margin-bottom: var(--s4); }
.rec-hero-copy { white-space: normal; font-weight: 500; font-size: clamp(34px, 6.2vw, 66px); line-height: 1.32; letter-spacing: .04em; }
.rec-hero-sub { margin-top: var(--s5); font-size: 15px; line-height: 2; color: rgba(255,255,255,.9); }
.rec-hero-jobs { display: flex; gap: 12px; flex-wrap: wrap; margin-top: var(--s6); }
.rec-hero-jobs a { display: inline-flex; align-items: center; gap: 8px; padding: 11px 22px; border: 1px solid rgba(255,255,255,.5); border-radius: var(--radius-full); color: #fff; font-size: 13px; letter-spacing: .08em; transition: background .3s, border-color .3s, transform .35s var(--ease-soft); }
.rec-hero-jobs a::before { content: "\25BC"; font-size: 9px; opacity: .75; }
.rec-hero-jobs a:hover { background: rgba(255,255,255,.14); border-color: #fff; transform: translateY(-2px); }

/* ---- Concept ---- */
.rec-concept-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: var(--s8); align-items: center; }
.rec-lead { font-family: var(--font-jp-serif); font-size: 17px; line-height: 2.1; color: var(--sumi); margin: var(--s4) 0; }
.rec-body { font-size: 14.5px; line-height: 2.15; color: var(--sumi-soft); margin-bottom: var(--s3); }
.rec-body--accent { font-family: var(--font-jp-serif); color: var(--kiwa-dark); font-size: 16px; letter-spacing: .04em; }
.rec-concept-media { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s3); }
.rcm { position: relative; margin: 0; overflow: hidden; border-radius: var(--radius-card); box-shadow: 0 18px 44px rgba(43,32,24,.16); }
.rcm img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease-soft); }
.rcm:hover img { transform: scale(1.05); }
.rcm figcaption { position: absolute; left: 16px; bottom: 12px; color: #fff; font-size: 12px; letter-spacing: .12em; text-shadow: 0 2px 12px rgba(0,0,0,.5); }
.rcm--1 { aspect-ratio: 3/4; }
.rcm--2 { aspect-ratio: 3/4; margin-top: var(--s7); }
.rcm--3 { grid-column: 1 / 3; aspect-ratio: 16/9; }

/* ---- Jobs ---- */
.rec-jobs { background: var(--shiroyu); }
.rec-jobs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s5); }
.rec-job-card { background: var(--kami); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; transition: transform .5s var(--ease-soft), box-shadow .5s var(--ease-soft); }
.rec-job-card:hover { transform: translateY(-6px); box-shadow: 0 24px 50px rgba(43,32,24,.14); }
.rec-job-media { aspect-ratio: 4/3; overflow: hidden; }
.rec-job-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease-soft); }
.rec-job-card:hover .rec-job-media img { transform: scale(1.06); }
.rec-job-body { padding: var(--s5) var(--s5) var(--s6); }
.rec-job-no { font-family: var(--font-en-serif); font-style: italic; font-size: 34px; color: var(--kiwa); opacity: .6; }
.rec-job-name { font-family: var(--font-jp-serif); font-size: 22px; color: var(--sumi); margin-top: 2px; }
.rec-job-en { font-family: var(--font-en-sans); font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--hai); margin-bottom: var(--s3); }
.rec-job-desc { font-size: 14px; line-height: 2; color: var(--sumi-soft); margin-bottom: var(--s4); }

/* ---- Environment ---- */
.rec-env { background: var(--shiroyu); }
.rec-env-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s5); }
.rec-env-media { aspect-ratio: 5/4; overflow: hidden; border-radius: var(--radius-card); }
.rec-env-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease-soft); }
.rec-env-card:hover .rec-env-media img { transform: scale(1.05); }
.rec-env-text { padding: var(--s4) var(--s2) 0; }
.rec-env-name { font-family: var(--font-jp-serif); font-size: 20px; color: var(--sumi); display: flex; align-items: baseline; gap: 12px; margin-bottom: var(--s2); }
.rec-env-en { font-family: var(--font-en-serif); font-style: italic; font-size: 14px; color: var(--kiwa); }
.rec-env-text p { font-size: 13.5px; line-height: 2; color: var(--sumi-soft); }

/* ---- People（kinari band） ---- */
.section--band { background: var(--kinari); }
.rec-people-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s5); }
.rec-person-photo { aspect-ratio: 3/4; overflow: hidden; border-radius: var(--radius-card); margin-bottom: var(--s3); box-shadow: 0 14px 34px rgba(43,32,24,.12); }
.rec-person-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease-soft); }
.rec-person:hover .rec-person-photo img { transform: scale(1.05); }
.rec-person-quote { font-family: var(--font-jp-serif); font-size: 15px; line-height: 1.85; color: var(--sumi); margin-bottom: var(--s2); }
.rec-person-role { font-size: 12px; letter-spacing: .08em; color: var(--hai); }

/* ---- Recruit cards（→ Airワーク） ---- */
.rec-recruit { background: var(--shiroyu); }
.rec-recruit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s5); }
.rec-recruit-card { display: flex; flex-direction: column; align-items: flex-start; gap: 6px; background: var(--kami); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: var(--s6) var(--s5); min-height: 230px; transition: transform .5s var(--ease-soft), box-shadow .5s var(--ease-soft), border-color .3s; }
.rec-recruit-card:hover { transform: translateY(-6px); box-shadow: 0 24px 50px rgba(43,32,24,.14); border-color: var(--kiwa); }
.rec-recruit-no { font-family: var(--font-en-serif); font-style: italic; font-size: 30px; color: var(--kiwa); opacity: .6; }
.rec-recruit-name { font-family: var(--font-jp-serif); font-size: 22px; color: var(--sumi); }
.rec-recruit-note { font-size: 12.5px; color: var(--hai); margin-bottom: var(--s4); }
.rec-recruit-go { margin-top: auto; display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; letter-spacing: .06em; color: var(--cacao); transition: color .3s; }
.rec-recruit-card:hover .rec-recruit-go { color: var(--kiwa-dark); }
.rec-ext { width: 14px; height: 14px; position: relative; display: inline-block; }
.rec-ext::before { content: ""; position: absolute; left: 2px; bottom: 2px; width: 9px; height: 9px; border-top: 1.5px solid currentColor; border-right: 1.5px solid currentColor; transform: rotate(45deg); }

/* ---- Entry（余韻：写真全面＋scrim） ---- */
.rec-entry { position: relative; padding: var(--s9) 0; overflow: hidden; isolation: isolate; color: #fff; }
.rec-entry-media { position: absolute; inset: 0; z-index: 0; }
.rec-entry-media img { width: 100%; height: 100%; object-fit: cover; }
.rec-entry-tint { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(43,32,24,.72) 0%, rgba(35,26,20,.82) 100%); }
.rec-entry .container { position: relative; z-index: 2; }
.rec-entry-inner { max-width: 760px; }
.rec-entry-title { font-family: var(--font-jp-serif); font-weight: 600; font-size: clamp(26px, 3.6vw, 44px); line-height: 1.5; margin: var(--s2) 0 var(--s4); }
.rec-entry-lead { font-size: 15px; line-height: 2.1; color: rgba(255,255,255,.86); max-width: 620px; margin-bottom: var(--s6); }
.rec-entry-cta { display: flex; gap: var(--s3); flex-wrap: wrap; }
.rec-entry-note { margin-top: var(--s4); font-size: 12px; color: rgba(255,255,255,.62); }

/* ---- 共通 CTA 行 ---- */
.rec-cta-row { margin-top: var(--s7); display: flex; justify-content: center; }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .rec-concept-grid { grid-template-columns: 1fr; gap: var(--s6); }
  .rec-jobs-grid, .rec-env-grid, .rec-recruit-grid, .rec-people-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 767px) {
  .rec-jobs-grid, .rec-env-grid, .rec-recruit-grid, .rec-people-grid { grid-template-columns: 1fr; }
  .rec-hero-copy { font-size: clamp(30px, 8.6vw, 44px); }
  .rec-hero-sub br { display: none; }
  .rcm--2 { margin-top: 0; }
  .rec-entry-cta .btn { width: 100%; }
}

/* =========================================================
   SECTION RHYTHM（色認識の余白設計）
   異色境界＝各150px（合計300px）／同色連続＝合計150px（各75px）
   sec-paper=shiroyu / sec-kinari=kinari
   ========================================================= */
:root {
  --sec-pad: 150px;       /* 異色境界での各セクション padding */
  --sec-pad-same: 75px;   /* 同色連続境界の各セクション padding（合計150px） */
}

/* 既定：各セクション上下150px（＝異色境界・端の既定） */
body.recruit .section { padding-top: var(--sec-pad); padding-bottom: var(--sec-pad); }

/* 上隣が同色 → 上paddingを詰める */
body.recruit .sec-paper  + .sec-paper,
body.recruit .sec-kinari + .sec-kinari { padding-top: var(--sec-pad-same); }

/* 下隣が同色 → 下paddingを詰める */
body.recruit .sec-paper:has(+ .sec-paper),
body.recruit .sec-kinari:has(+ .sec-kinari) { padding-bottom: var(--sec-pad-same); }

@media (max-width: 767px) {
  :root { --sec-pad: 88px; --sec-pad-same: 44px; }
}
