/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   TORRENTS - amino shierd
   Corporate Website Stylesheet
   Design: Pure & Essential
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

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

:root {
  /* Colors */
  --white: #FFFFFF;
  --warm-white: #F7F5F0;
  --near-black: #1A1A1A;
  --dark-gray: #333333;
  --gold: #C5A55A;
  --gold-light: #D4B96A;
  --gold-dark: #7A6D30;
  --warm-gray: #E8E4DD;
  --mid-gray: #918C84;
  --gray-brown: #5A5550;

  /* Typography */
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', sans-serif;

  /* Spacing */
  --section-py: clamp(80px, 12vw, 160px);
  --section-px: clamp(20px, 5vw, 80px);
  --content-max: 1200px;
  --text-max: 700px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--sans);
  color: var(--near-black);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.8;
  font-weight: 400;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   LOADING SCREEN (Buzzworthy-style curtain)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: all;
}
.loader.done { pointer-events: none; }

/* Top/Bottom curtain halves */
.loader-curtain {
  position: absolute;
  left: 0; right: 0;
  height: 50%;
  background: #111;
  transition: transform 1s cubic-bezier(.77,0,.18,1);
  will-change: transform;
}
.loader-curtain--top { top: 0; transform-origin: top; }
.loader-curtain--bottom { bottom: 0; transform-origin: bottom; }
.loader.done .loader-curtain--top { transform: translateY(-100%); }
.loader.done .loader-curtain--bottom { transform: translateY(100%); }

/* Center content (sits on the split line) */
.loader-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  opacity: 1;
  transition: opacity .4s ease;
}
.loader.done .loader-center { opacity: 0; transition: opacity .3s ease; }

/* Logo with clip-path reveal */
.loader-logo {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
  clip-path: inset(0 100% 0 0);
  animation: clipReveal 1s .4s cubic-bezier(.25,.1,.25,1) forwards;
}

/* Horizontal sweep line */
.loader-line {
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(197,165,90,.8), transparent);
  animation: lineSwipe 1s .8s cubic-bezier(.25,.1,.25,1) forwards;
}

/* Progress counter (optional flair) */
.loader-counter {
  font-family: var(--serif);
  font-size: 11px;
  letter-spacing: .3em;
  color: rgba(255,255,255,.3);
  opacity: 0;
  animation: fadeUp .5s .6s ease forwards;
}

/* Sub-page: faster animation */
.loader--sub .loader-logo {
  animation-duration: .6s;
  animation-delay: .2s;
}
.loader--sub .loader-line {
  animation-duration: .6s;
  animation-delay: .4s;
}
.loader--sub .loader-curtain {
  transition-duration: .7s;
}

@keyframes clipReveal {
  from { clip-path: inset(0 100% 0 0); }
  to   { clip-path: inset(0 0% 0 0); }
}
@keyframes lineSwipe {
  from { width: 0; }
  to   { width: min(320px, 60vw); }
}
@keyframes loaderFadeUp {
  from { opacity: 0; transform: translate(-50%, -45%); }
  to   { opacity: 1; transform: translate(-50%, -50%); }
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   HEADER / NAVIGATION
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 var(--section-px);
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all .5s ease;
}
.header.scrolled {
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(0,0,0,.06);
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  cursor: pointer;
  flex-shrink: 0;
}
.logo-img {
  height: clamp(28px, 3.5vw, 40px);
  width: auto;
  transition: opacity .3s ease;
}
.logo:hover .logo-img { opacity: .7; }

/* Footer: invert dark logo to white */
.logo-img--white {
  filter: brightness(0) invert(1);
  opacity: .6;
  height: 30px;
}
.logo:hover .logo-img--white { opacity: .8; }

/* Nav links */
.nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.5vw, 36px);
}
.nav-link {
  font-family: var(--serif);
  font-size: 11px;
  letter-spacing: .15em;
  color: var(--near-black);
  transition: color .4s ease, opacity .3s ease;
  font-weight: 400;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .4s ease;
}
.nav-link:hover::after { width: 100%; }
.nav-link:hover { opacity: .7; }

.nav-ig {
  width: 16px; height: 16px;
  stroke: var(--near-black);
  fill: none;
  stroke-width: 1.5;
  transition: stroke .5s ease;
}

/* Hamburger (Mobile) */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 200;
}
.hamburger span {
  width: 24px; height: 1px;
  background: var(--near-black);
  transition: all .4s ease;
}

/* Mobile Nav Overlay */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 150;
  background: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  opacity: 0;
  visibility: hidden;
  transition: all .5s ease;
}
.mobile-nav.open { opacity: 1; visibility: visible; }
.mobile-nav a {
  font-family: var(--serif);
  font-size: 14px;
  letter-spacing: .3em;
  color: var(--near-black);
  font-weight: 400;
}
.mobile-nav-close {
  position: absolute;
  top: 28px; right: 24px;
  width: 28px; height: 28px;
  cursor: pointer;
}
.mobile-nav-close::before,
.mobile-nav-close::after {
  content: '';
  position: absolute;
  top: 50%; left: 0;
  width: 100%; height: 1px;
  background: var(--near-black);
}
.mobile-nav-close::before { transform: rotate(45deg); }
.mobile-nav-close::after  { transform: rotate(-45deg); }


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   HERO (FIRST VIEW)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* Hero photograph */
.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}

/* Video element (swap in when ready) */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: var(--content-max);
  padding: 0 var(--section-px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}
.hero-sub {
  font-family: var(--serif);
  font-size: clamp(13px, 1.5vw, 17px);
  letter-spacing: .2em;
  color: var(--near-black);
  font-weight: 400;
  opacity: 0;
  animation: fadeUp .8s 2s ease forwards;
  text-shadow: 0 0 20px rgba(255,255,255,.8);
}
.hero-main {
  font-size: clamp(15px, 1.6vw, 18px);
  letter-spacing: .08em;
  color: var(--near-black);
  font-weight: 500;
  opacity: 0;
  animation: fadeUp .8s 2.3s ease forwards;
  line-height: 1.8;
  text-shadow: 0 0 20px rgba(255,255,255,.8);
}
.hero-main em {
  font-style: normal;
  color: var(--gold-dark);
  font-weight: 500;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeUp .6s 3s ease forwards;
}
.hero-scroll-text {
  font-family: var(--serif);
  font-size: 10px;
  letter-spacing: .3em;
  color: var(--gray-brown);
}
.hero-scroll-line {
  width: 1px; height: 40px;
  background: var(--mid-gray);
  position: relative;
  overflow: hidden;
}
.hero-scroll-line::after {
  content: '';
  position: absolute;
  top: -100%; left: 0;
  width: 100%; height: 100%;
  background: var(--gold);
  animation: scrollDown 2s ease infinite;
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   PHILOSOPHY
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.philosophy {
  padding: var(--section-py) var(--section-px);
  text-align: center;
  background: var(--white);
}
.philosophy-label {
  font-family: var(--serif);
  font-size: 12px;
  letter-spacing: .5em;
  color: var(--mid-gray);
  margin-bottom: 16px;
}
.philosophy-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold);
  margin: 0 auto 24px;
}
.philosophy-headline {
  font-family: 'Noto Serif JP', 'Yu Mincho', serif;
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 400;
  letter-spacing: .12em;
  margin-bottom: clamp(32px, 5vw, 56px);
  line-height: 1.6;
}
.philosophy-body {
  max-width: 780px;
  margin: 0 auto clamp(32px, 5vw, 48px);
  text-align: left;
  font-size: clamp(14px, 1.15vw, 16px);
  letter-spacing: .04em;
  line-height: 2;
  color: var(--near-black);
  opacity: .85;
}
.philosophy-body p { margin-bottom: 4px; }


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   ARROW LINK (Reusable)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  font-size: 13px;
  letter-spacing: .2em;
  font-weight: 400;
  transition: gap .4s ease;
}
.arrow-link:hover { gap: 20px; }
.arrow-link-line {
  width: 40px; height: 1px;
  background: var(--near-black);
  transition: width .4s ease;
}
.arrow-link:hover .arrow-link-line { width: 56px; }

/* White variant */
.arrow-link--white .arrow-link-line { background: var(--white); }


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   NEWS & TOPICS
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.news {
  padding: clamp(60px, 8vw, 100px) var(--section-px);
  background: var(--warm-white);
}
.news-inner {
  max-width: var(--content-max);
  margin: 0 auto;
}
.news-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: clamp(32px, 4vw, 48px);
}
.news-title {
  font-family: var(--serif);
  font-size: clamp(16px, 1.8vw, 22px);
  letter-spacing: .25em;
  font-weight: 400;
}
.news-item {
  display: flex;
  align-items: baseline;
  gap: clamp(16px, 3vw, 40px);
  padding: clamp(16px, 2vw, 24px) 0;
  border-bottom: 1px solid var(--warm-gray);
  transition: background .3s ease;
}
.news-item:first-child { border-top: 1px solid var(--warm-gray); }
.news-item:hover { background: rgba(197,165,90,.03); }
.news-date {
  font-family: var(--serif);
  font-size: 12px;
  letter-spacing: .15em;
  color: var(--gray-brown);
  flex-shrink: 0;
  min-width: 100px;
}
.news-cat {
  font-family: var(--serif);
  font-size: 10px;
  letter-spacing: .15em;
  color: var(--gray-brown);
  border: 1px solid var(--mid-gray);
  padding: 2px 10px;
  flex-shrink: 0;
  width: fit-content;
}
.news-text {
  font-size: 14px;
  letter-spacing: .04em;
  color: var(--near-black);
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SECTION LINKS (3 Cards)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.sections {
  padding: var(--section-py) var(--section-px);
  background: var(--white);
}
.sections-inner {
  max-width: var(--content-max);
  margin: 0 auto;
}
.sections-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 32px);
}

.section-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  display: block;
}
.section-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .8s ease;
}
.section-card:hover .section-card-bg { transform: scale(1.06); }

.section-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(26,26,26,.08) 0%, rgba(26,26,26,.7) 100%);
  transition: background .5s ease;
}
.section-card:hover .section-card-overlay {
  background: linear-gradient(180deg,
    rgba(26,26,26,.05) 0%, rgba(26,26,26,.45) 100%);
}

.section-card-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: clamp(20px, 3vw, 40px);
  z-index: 2;
}
.section-card-label {
  font-family: var(--serif);
  font-size: 10px;
  letter-spacing: .3em;
  color: rgba(255,255,255,.85);
  margin-bottom: 8px;
  text-transform: uppercase;
}
.section-card-title {
  font-family: var(--serif);
  font-size: clamp(14px, 1.55vw, 26px);
  letter-spacing: .1em;
  color: var(--white);
  font-weight: 400;
  margin-bottom: 12px;
  line-height: 1.5;
  white-space: nowrap;
}
.section-card-desc {
  font-size: 12px;
  letter-spacing: .06em;
  color: rgba(255,255,255,.85);
  line-height: 1.7;
  font-weight: 400;
}
.section-card-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-family: var(--serif);
  font-size: 11px;
  letter-spacing: .2em;
  color: var(--white);
  opacity: .7;
  transition: opacity .3s ease, gap .3s ease;
}
.section-card:hover .section-card-arrow { opacity: 1; gap: 14px; }
.section-card-arrow span {
  width: 24px; height: 1px;
  background: var(--white);
  transition: width .3s ease;
}
.section-card:hover .section-card-arrow span { width: 36px; }

/* Card-specific backgrounds (replace with photos) */
.section-card--tech .section-card-bg {
  background: #cccccc;
}
.section-card--products .section-card-bg {
  background: #cccccc;
}
.section-card--products .section-card-overlay {
  background: linear-gradient(180deg, rgba(26,26,26,.02) 0%, rgba(26,26,26,.55) 100%);
}
.section-card--salon .section-card-bg {
  background: #cccccc;
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   BRAND STATEMENT
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.brand-statement {
  padding: clamp(80px, 12vw, 140px) var(--section-px);
  text-align: center;
  background: var(--near-black);
  color: var(--white);
}
.brand-statement-copy {
  font-family: var(--serif);
  font-size: clamp(14px, 1.6vw, 20px);
  letter-spacing: .2em;
  font-weight: 300;
  line-height: 2;
  max-width: 680px;
  margin: 0 auto;
  opacity: .95;
}
.brand-statement-copy em {
  font-style: normal;
  color: var(--gold-light);
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   FOOTER
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.footer {
  padding: clamp(60px, 8vw, 100px) var(--section-px) clamp(30px, 4vw, 48px);
  background: var(--near-black);
  color: rgba(255,255,255,.6);
}
.footer-inner {
  max-width: var(--content-max);
  margin: 0 auto;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: clamp(48px, 6vw, 80px);
}
.footer-logo .logo-img--white { height: 30px; }
.footer-nav {
  display: flex;
  gap: clamp(16px, 3vw, 48px);
  flex-wrap: wrap;
}
.footer-nav a {
  font-family: var(--serif);
  font-size: 11px;
  letter-spacing: .15em;
  color: rgba(255,255,255,.75);
  transition: color .3s ease;
}
.footer-nav a:hover { color: var(--gold); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.footer-copy {
  font-size: 10px;
  letter-spacing: .1em;
}
.footer-links {
  display: flex;
  gap: 20px;
}
.footer-links a {
  font-size: 10px;
  letter-spacing: .1em;
  transition: color .3s ease;
}
.footer-links a:hover { color: var(--gold); }


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SCROLL REVEAL
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .15s; }
.reveal-delay-2 { transition-delay: .3s;  }
.reveal-delay-3 { transition-delay: .45s; }


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   KEYFRAMES
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scrollDown {
  0%   { top: -100%; }
  100% { top: 200%; }
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   RESPONSIVE
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 1024px) {
  .sections-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .section-card { aspect-ratio: 16/9; }
  .section-card-title { font-size: clamp(16px, 3.2vw, 26px); }
}

@media (max-width: 768px) {
  .nav { display: none; }
  .hamburger { display: flex; }
  .header { height: 64px; }

  .hero-content {
    flex-direction: column;
    text-align: center;
    gap: 24px;
    padding-top: 100px;
    justify-content: center;
  }
  .hero { min-height: 100vh; min-height: 100dvh; }
  .hero-sub, .hero-main { text-align: center; }
  .hero-scroll { bottom: 24px; }
  .hero-bg { position: absolute; inset: 0; }
  .hero-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

  .news-item {
    flex-direction: column;
    gap: 8px;
  }
  .news-date { min-width: unset; }

  .footer-top { flex-direction: column; }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .section-card { aspect-ratio: 4/5; }
  .sections-grid { grid-template-columns: 1fr; }
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SUB-PAGE SHARED COMPONENTS
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

/* ── PAGE HERO (Sub-page) ── */
.page-hero {
  position: relative;
  height: 50vh;
  min-height: 360px;
  max-height: 520px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  background: #222222;
}
.page-hero--compact {
  height: 36vh;
  min-height: 280px;
  max-height: 360px;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 1;
}
.page-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--content-max);
  padding: 96px var(--section-px) clamp(40px, 6vw, 72px);
}
.page-hero-label {
  font-family: var(--serif);
  font-size: 11px;
  letter-spacing: .4em;
  color: var(--gold);
  margin-bottom: 12px;
}
.page-hero-title {
  font-family: var(--serif);
  font-size: clamp(28px, 3.6vw, 44px);
  letter-spacing: .1em;
  color: var(--white);
  font-weight: 300;
  line-height: 1.3;
  margin-bottom: 16px;
}
.page-hero-desc {
  font-size: clamp(12px, 1.1vw, 15px);
  color: rgba(255,255,255,.75);
  letter-spacing: .06em;
}

/* ── BREADCRUMB ── */
.breadcrumb {
  padding: 16px var(--section-px);
  background: var(--warm-white);
}
.breadcrumb-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--serif);
  font-size: 10px;
  letter-spacing: .12em;
  color: var(--mid-gray);
}
.breadcrumb a {
  color: var(--gray-brown);
  transition: color .3s ease;
}
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb-sep { color: var(--mid-gray); }

/* ── CONTENT SECTION ── */
.content-section {
  padding: var(--section-py) var(--section-px);
}
.content-section--alt { background: var(--warm-white); }
.content-inner {
  max-width: var(--content-max);
  margin: 0 auto;
}

/* ── SECTION HEADING ── */
.section-heading {
  margin-bottom: clamp(40px, 6vw, 72px);
}
.section-heading--center { text-align: center; }
.section-label {
  font-family: var(--serif);
  font-size: 11px;
  letter-spacing: .4em;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}
.section-title {
  font-family: 'Noto Serif JP', 'Yu Mincho', serif;
  font-size: clamp(20px, 2.5vw, 30px);
  font-weight: 400;
  letter-spacing: .1em;
  line-height: 1.6;
  margin-bottom: 16px;
}
.section-desc {
  font-size: clamp(14px, 1.15vw, 16px);
  color: var(--dark-gray);
  letter-spacing: .04em;
  line-height: 2;
  max-width: var(--text-max);
}
.section-heading--center .section-desc { margin: 0 auto; }

/* ── TWO-COLUMN LAYOUT ── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
.two-col--reverse .two-col-media { order: -1; }
.two-col-media img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.two-col-media-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: #cccccc;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 12px;
  letter-spacing: .15em;
  color: var(--mid-gray);
}
.two-col-body .section-label { margin-bottom: 8px; }
.two-col-body h3 {
  font-family: 'Noto Serif JP', 'Yu Mincho', serif;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 400;
  letter-spacing: .08em;
  line-height: 1.6;
  margin-bottom: 20px;
}
.two-col-body p {
  font-size: clamp(14px, 1.1vw, 16px);
  color: var(--dark-gray);
  letter-spacing: .04em;
  line-height: 2;
  margin-bottom: 12px;
}

/* ── THREE-COLUMN GRID ── */
.three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 40px);
}

/* ── FEATURE CARD ── */
.feature-card {
  text-align: center;
  padding: clamp(24px, 3vw, 40px);
}
.feature-card-number {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 300;
  color: var(--gold);
  letter-spacing: .08em;
  margin-bottom: 16px;
  line-height: 1;
}
.feature-card h4 {
  font-family: 'Noto Serif JP', 'Yu Mincho', serif;
  font-size: clamp(15px, 1.3vw, 18px);
  font-weight: 400;
  letter-spacing: .08em;
  margin-bottom: 12px;
}
.feature-card p {
  font-size: 14px;
  color: var(--dark-gray);
  letter-spacing: .04em;
  line-height: 1.9;
}

/* ── PRODUCT CARD ── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 40px);
}
.product-card {
  display: block;
  transition: transform .4s ease;
}
.product-card:hover { transform: translateY(-6px); }
.product-card-image {
  width: 100%;
  aspect-ratio: 1/1;
  background: var(--warm-gray);
  margin-bottom: 16px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 12px;
  color: var(--mid-gray);
  letter-spacing: .15em;
}
.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.product-card:hover .product-card-image img { transform: scale(1.04); }
.product-card-name {
  font-family: var(--serif);
  font-size: clamp(14px, 1.3vw, 18px);
  letter-spacing: .15em;
  margin-bottom: 6px;
  font-weight: 400;
}
.product-card-desc {
  font-size: 12px;
  color: var(--gray-brown);
  letter-spacing: .04em;
  line-height: 1.7;
}

/* ── VOICE / TESTIMONIAL CARD ── */
.voice-card {
  padding: clamp(24px, 3vw, 40px);
  border: 1px solid var(--warm-gray);
}
.voice-card-quote {
  font-size: 15px;
  color: var(--near-black);
  letter-spacing: .04em;
  line-height: 2;
  margin-bottom: 20px;
  position: relative;
  padding-left: 20px;
  border-left: 2px solid var(--gold);
}
.voice-card-meta {
  font-family: var(--serif);
  font-size: 12px;
  letter-spacing: .1em;
  color: var(--gray-brown);
}

/* ── FAQ ACCORDION ── */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--warm-gray);
}
.faq-item:first-child { border-top: 1px solid var(--warm-gray); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: clamp(16px, 2vw, 24px) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  font-family: var(--sans);
  font-size: clamp(13px, 1.1vw, 15px);
  font-weight: 400;
  letter-spacing: .04em;
  color: var(--near-black);
  text-align: left;
  line-height: 1.7;
}
.faq-question::after {
  content: '+';
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 300;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform .3s ease;
}
.faq-item.open .faq-question::after {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .4s ease;
}
.faq-item.open .faq-answer {
  max-height: 400px;
  padding-bottom: clamp(16px, 2vw, 24px);
}
.faq-answer p {
  font-size: 14px;
  color: var(--dark-gray);
  letter-spacing: .04em;
  line-height: 2;
}

/* ── CONTACT FORM ── */
.form-group {
  margin-bottom: 24px;
}
.form-label {
  display: block;
  font-size: 12px;
  letter-spacing: .1em;
  color: var(--gray-brown);
  margin-bottom: 8px;
}
.form-label .required {
  font-size: 10px;
  color: var(--gold-dark);
  margin-left: 6px;
}
.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--warm-gray);
  background: var(--white);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 300;
  color: var(--near-black);
  letter-spacing: .04em;
  transition: border-color .3s ease;
  outline: none;
  -webkit-appearance: none;
  border-radius: 0;
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--gold);
}
.form-textarea {
  min-height: 160px;
  resize: vertical;
}
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23B5B0A7' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-submit {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 48px;
  background: var(--near-black);
  color: var(--white);
  font-family: var(--serif);
  font-size: 13px;
  letter-spacing: .2em;
  border: 1px solid var(--near-black);
  cursor: pointer;
  transition: all .4s ease;
}
.form-submit:hover {
  background: transparent;
  color: var(--near-black);
}
.form-privacy {
  font-size: 11px;
  color: var(--gray-brown);
  letter-spacing: .04em;
  margin-top: 16px;
}
.form-privacy a {
  text-decoration: underline;
  transition: color .3s ease;
}
.form-privacy a:hover { color: var(--gold); }


/* ── Contact Form 7 overrides ── */

/* <p> タグのデフォルトマージンをリセット */
.wpcf7 .form-group p,
.wpcf7 .form-row p {
  margin: 0;
  padding: 0;
}
/* <p> で囲まれた送信ボタン行 */
.wpcf7 p:has(.wpcf7-submit) {
  margin: 0;
  padding: 0;
}

/* wpcf7-form-control-wrap をブロック要素に */
.wpcf7-form-control-wrap {
  display: block;
}

/* テキスト・メール・電話入力 → .form-input と同スタイル */
.wpcf7-form-control.wpcf7-text,
.wpcf7-form-control.wpcf7-email,
.wpcf7-form-control.wpcf7-tel {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--warm-gray);
  background: var(--white);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 300;
  color: var(--near-black);
  letter-spacing: .04em;
  transition: border-color .3s ease;
  outline: none;
  -webkit-appearance: none;
  border-radius: 0;
}

/* セレクト → .form-select と同スタイル */
.wpcf7-form-control.wpcf7-select {
  width: 100%;
  padding: 12px 40px 12px 16px;
  border: 1px solid var(--warm-gray);
  background-color: var(--white);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23B5B0A7' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 300;
  color: var(--near-black);
  letter-spacing: .04em;
  transition: border-color .3s ease;
  outline: none;
  -webkit-appearance: none;
  border-radius: 0;
  cursor: pointer;
}

/* テキストエリア → .form-textarea と同スタイル */
.wpcf7-form-control.wpcf7-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--warm-gray);
  background: var(--white);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 300;
  color: var(--near-black);
  letter-spacing: .04em;
  transition: border-color .3s ease;
  outline: none;
  -webkit-appearance: none;
  border-radius: 0;
  min-height: 160px;
  resize: vertical;
}

/* フォーカス */
.wpcf7-form-control.wpcf7-text:focus,
.wpcf7-form-control.wpcf7-email:focus,
.wpcf7-form-control.wpcf7-tel:focus,
.wpcf7-form-control.wpcf7-select:focus,
.wpcf7-form-control.wpcf7-textarea:focus {
  border-color: var(--gold);
}

/* バリデーションエラー */
.wpcf7-not-valid {
  border-color: #c0392b !important;
}
.wpcf7-not-valid-tip {
  display: block;
  font-size: 11px;
  color: #c0392b;
  margin-top: 6px;
  letter-spacing: .04em;
}

/* 送信ボタン → .form-submit と同スタイル */
.wpcf7-form-control.wpcf7-submit {
  display: inline-flex;
  align-items: center;
  padding: 16px 48px;
  background: var(--near-black);
  color: var(--white);
  font-family: var(--serif);
  font-size: 13px;
  letter-spacing: .2em;
  border: 1px solid var(--near-black);
  cursor: pointer;
  transition: all .4s ease;
  -webkit-appearance: none;
  border-radius: 0;
  outline: none;
}
.wpcf7-form-control.wpcf7-submit:hover {
  background: transparent;
  color: var(--near-black);
}

/* スピナー */
.wpcf7-spinner {
  margin-left: 12px;
  vertical-align: middle;
}

/* 送信完了・エラーメッセージ */
.wpcf7 .wpcf7-response-output {
  margin: 24px 0 0;
  padding: 12px 16px;
  font-size: 13px;
  letter-spacing: .04em;
  border: none;
  border-radius: 0;
}
.wpcf7-mail-sent-ok {
  color: #2a6a2a;
  background: #f0faf0;
}
.wpcf7-mail-sent-ng,
.wpcf7-validation-errors,
.wpcf7-spam-blocked {
  color: #c0392b;
  background: #fdf0f0;
}


/* ── NEWS LIST PAGE ── */
.news-page-list .news-item {
  display: grid;
  grid-template-columns: 100px auto 1fr;
  align-items: baseline;
  gap: clamp(16px, 3vw, 40px);
}

/* ── CTA BANNER ── */
.cta-banner {
  padding: clamp(60px, 8vw, 100px) var(--section-px);
  background: var(--near-black);
  text-align: center;
}
.cta-banner-title {
  font-family: var(--serif);
  font-size: clamp(18px, 2.2vw, 28px);
  letter-spacing: .15em;
  color: var(--white);
  font-weight: 300;
  margin-bottom: 12px;
}
.cta-banner-desc {
  font-size: 13px;
  color: rgba(255,255,255,.75);
  letter-spacing: .06em;
  margin-bottom: clamp(24px, 4vw, 40px);
}
.cta-banner .form-submit {
  background: transparent;
  border-color: var(--white);
  color: var(--white);
}
.cta-banner .form-submit:hover {
  background: var(--white);
  color: var(--near-black);
}

/* ── TABLE (Company Info) ── */
.info-table {
  width: 100%;
  max-width: 800px;
}
.info-table tr {
  border-bottom: 1px solid var(--warm-gray);
}
.info-table th,
.info-table td {
  padding: clamp(14px, 2vw, 20px) 0;
  font-size: 14px;
  letter-spacing: .04em;
  text-align: left;
  vertical-align: top;
}
.info-table th {
  width: 140px;
  font-weight: 400;
  color: var(--gray-brown);
  padding-right: 24px;
}
.info-table td {
  color: var(--dark-gray);
  line-height: 1.9;
}

/* ── TIMELINE ── */
.timeline {
  position: relative;
  padding-left: 32px;
  max-width: 700px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 0; top: 8px; bottom: 8px;
  width: 1px;
  background: var(--warm-gray);
}
.timeline-item {
  position: relative;
  padding-bottom: clamp(24px, 3vw, 40px);
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -36px; top: 8px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
}
.timeline-year {
  font-family: var(--serif);
  font-size: 14px;
  letter-spacing: .15em;
  color: var(--gold-dark);
  margin-bottom: 4px;
}
.timeline-text {
  font-size: 14px;
  color: var(--dark-gray);
  letter-spacing: .04em;
  line-height: 1.8;
}

/* ── DEALER SEARCH ── */
.dealer-tabs {
  display: flex;
  gap: 0;
  margin-bottom: clamp(32px, 4vw, 48px);
  border-bottom: 1px solid var(--warm-gray);
}
.dealer-tab {
  padding: 12px 32px;
  font-family: var(--serif);
  font-size: 13px;
  letter-spacing: .15em;
  color: var(--mid-gray);
  border: none;
  background: none;
  cursor: pointer;
  position: relative;
  transition: color .3s ease;
}
.dealer-tab.active {
  color: var(--near-black);
}
.dealer-tab.active::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 1px;
  background: var(--near-black);
}

/* ━━ SUB-PAGE RESPONSIVE ━━ */
@media (max-width: 1024px) {
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .two-col--reverse .two-col-media { order: 0; }
  .three-col { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .page-hero { min-height: 280px; }
  .page-hero--compact { min-height: 220px; }
  .page-hero-content { padding-top: 80px; }
  .product-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .news-page-list .news-item {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .info-table th { width: 100px; }
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   PRODUCT DETAIL PAGE
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

/* ── Product Hero (taller, centered) ── */
.product-hero {
  position: relative;
  height: 60vh;
  min-height: 400px;
  max-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: #222222;
}
.product-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
}
.product-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 8, 6, 0.50);
}
.product-hero-visual {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: .12;
  font-family: var(--serif);
  font-size: clamp(80px, 12vw, 200px);
  letter-spacing: .1em;
  font-weight: 300;
  color: rgba(255,255,255,.06);
  white-space: nowrap;
  user-select: none;
}
.product-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 var(--section-px);
}
.product-hero-brand {
  font-family: var(--serif);
  font-size: 11px;
  letter-spacing: .4em;
  color: var(--gold);
  margin-bottom: 16px;
}
.product-hero-name {
  font-family: var(--serif);
  font-size: clamp(32px, 5vw, 56px);
  letter-spacing: .2em;
  font-weight: 300;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}
.product-hero-tagline {
  font-family: 'Noto Serif JP', 'Yu Mincho', serif;
  font-size: clamp(14px, 1.4vw, 18px);
  font-weight: 400;
  letter-spacing: .1em;
  color: rgba(255,255,255,.75);
  line-height: 1.6;
}

/* ── Product Concept ── */
.product-concept {
  padding: var(--section-py) var(--section-px);
  text-align: center;
}
.product-concept-inner {
  max-width: 720px;
  margin: 0 auto;
}
.product-concept p {
  font-size: clamp(14px, 1.15vw, 16px);
  color: var(--dark-gray);
  letter-spacing: .04em;
  line-height: 2.2;
  margin-bottom: 12px;
}

/* ── Product Features (horizontal badges) ── */
.product-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: clamp(24px, 3vw, 40px);
}
.product-badge {
  font-family: var(--serif);
  font-size: 11px;
  letter-spacing: .12em;
  color: var(--gray-brown);
  border: 1px solid var(--warm-gray);
  padding: 6px 16px;
}

/* ── Product Items Grid ── */
.product-items {
  padding: var(--section-py) var(--section-px);
  background: var(--warm-white);
}
.product-items-inner {
  max-width: var(--content-max);
  margin: 0 auto;
}
.product-items-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 48px);
}

/* ── Single Product Item Card ── */
.item-card {
  background: var(--white);
  transition: transform .4s ease, box-shadow .4s ease;
}
.item-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,.06);
}
.item-card-image {
  width: 100%;
  aspect-ratio: 1/1;
  background: #cccccc;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 11px;
  color: var(--mid-gray);
  letter-spacing: .12em;
  overflow: hidden;
}
.item-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.item-card-body {
  padding: clamp(16px, 2vw, 28px);
}
.item-card-name {
  font-family: var(--serif);
  font-size: clamp(16px, 1.5vw, 20px);
  letter-spacing: .1em;
  font-weight: 500;
  margin-bottom: 6px;
}
.item-card-sub {
  font-size: 13px;
  color: var(--gray-brown);
  letter-spacing: .04em;
  font-weight: 400;
  margin-bottom: 12px;
}
.item-card-desc {
  font-size: 13px;
  color: var(--dark-gray);
  letter-spacing: .04em;
  line-height: 1.8;
  margin-bottom: 16px;
}
.item-card-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.item-card-spec {
  font-family: var(--serif);
  font-size: 10px;
  letter-spacing: .1em;
  color: var(--mid-gray);
  border: 1px solid var(--warm-gray);
  padding: 3px 10px;
}

/* ── Ingredients Section ── */
.ingredients {
  padding: var(--section-py) var(--section-px);
}
.ingredients-inner {
  max-width: var(--content-max);
  margin: 0 auto;
}
.ingredients-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 3vw, 40px);
  margin-top: clamp(32px, 4vw, 48px);
}
.ingredient-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.ingredient-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--warm-white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--serif);
  font-size: 16px;
  color: var(--gold);
}
.ingredient-item h4 {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .06em;
  margin-bottom: 4px;
}
.ingredient-item p {
  font-size: 13px;
  color: var(--dark-gray);
  letter-spacing: .04em;
  line-height: 1.8;
}

/* ── Brand Free Section ── */
.brand-free {
  padding: var(--section-py) var(--section-px);
}
.brand-free-inner {
  max-width: var(--content-max);
  margin: 0 auto;
}
.brand-free-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}
.brand-free-gallery a {
  display: block;
  flex-shrink: 0;
}
.brand-free-gallery img {
  display: block;
  max-width: 500px;
}
@media (max-width: 768px) {
  .brand-free-gallery {
    gap: 16px;
  }
  .brand-free-gallery img {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 2;
  }
}

/* ── Product Navigation (Prev/Next) ── */
.product-nav {
  display: flex;
  border-top: 1px solid var(--warm-gray);
}
.product-nav-link {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: clamp(24px, 3vw, 40px) var(--section-px);
  transition: background .3s ease;
}
.product-nav-link:hover {
  background: var(--warm-white);
}
.product-nav-link--next {
  justify-content: flex-end;
  text-align: right;
  border-left: 1px solid var(--warm-gray);
}
.product-nav-label {
  font-family: var(--serif);
  font-size: 10px;
  letter-spacing: .2em;
  color: var(--mid-gray);
  margin-bottom: 4px;
}
.product-nav-name {
  font-family: var(--serif);
  font-size: clamp(14px, 1.4vw, 18px);
  letter-spacing: .12em;
  font-weight: 400;
}
.product-nav-arrow {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--mid-gray);
  font-weight: 300;
}

/* ── Product Detail Responsive ── */
@media (max-width: 1024px) {
  .product-items-grid { grid-template-columns: repeat(2, 1fr); }
  .ingredients-list { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .product-items-grid { grid-template-columns: 1fr; }
  .product-hero { min-height: 320px; }
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   DEALER & SALON SEARCH
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

/* ── Area Block ── */
.area-block {
  margin-bottom: clamp(32px, 4vw, 48px);
  padding-bottom: clamp(32px, 4vw, 48px);
  border-bottom: 1px solid var(--warm-gray);
}
.area-block:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.area-title {
  font-family: 'Noto Serif JP', 'Yu Mincho', serif;
  font-size: clamp(16px, 1.5vw, 20px);
  font-weight: 400;
  letter-spacing: .1em;
  margin-bottom: 20px;
}
.area-prefs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.area-pref {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border: 1px solid var(--warm-gray);
  font-size: 13px;
  letter-spacing: .06em;
  color: var(--dark-gray);
  transition: all .3s ease;
}
.area-pref:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
}
.area-count {
  font-family: var(--serif);
  font-size: 11px;
  color: var(--mid-gray);
}

/* ── Salon Card ── */
.salon-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.salon-card {
  border: 1px solid var(--warm-gray);
  transition: border-color .3s ease;
}
.salon-card:hover {
  border-color: var(--mid-gray);
}
.salon-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(14px, 2vw, 20px) clamp(16px, 2vw, 24px);
  border-bottom: 1px solid var(--warm-gray);
}
.salon-card-name {
  font-size: clamp(13px, 1.1vw, 15px);
  font-weight: 500;
  letter-spacing: .06em;
}
.salon-card-area {
  font-family: var(--serif);
  font-size: 11px;
  letter-spacing: .12em;
  color: var(--mid-gray);
}
.salon-card-body {
  padding: clamp(14px, 2vw, 20px) clamp(16px, 2vw, 24px);
}
.salon-card-address {
  font-size: 14px;
  color: var(--dark-gray);
  letter-spacing: .04em;
  margin-bottom: 4px;
}
.salon-card-tel {
  font-size: 14px;
  color: var(--gray-brown);
  letter-spacing: .04em;
  margin-bottom: 12px;
}
.salon-card-products {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

/* ── Flow Steps ── */
.flow-steps {
  max-width: 720px;
  margin: 0 auto;
}
.flow-step {
  display: flex;
  gap: clamp(16px, 2.5vw, 32px);
  padding: clamp(20px, 3vw, 32px) 0;
  border-bottom: 1px solid var(--warm-gray);
  align-items: flex-start;
}
.flow-step:first-child {
  border-top: 1px solid var(--warm-gray);
}
.flow-step-number {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 300;
  color: var(--gold);
  letter-spacing: .08em;
  line-height: 1;
  flex-shrink: 0;
  min-width: 48px;
}
.flow-step-body h4 {
  font-size: clamp(14px, 1.2vw, 16px);
  font-weight: 500;
  letter-spacing: .06em;
  margin-bottom: 8px;
}
.flow-step-body p {
  font-size: 14px;
  color: var(--dark-gray);
  letter-spacing: .04em;
  line-height: 1.9;
}

/* ── Dealer Tabs as Links ── */
.dealer-tabs a.dealer-tab {
  display: inline-block;
}

@media (max-width: 768px) {
  .area-prefs { gap: 8px; }
  .area-pref { padding: 6px 14px; font-size: 12px; }
  .salon-card-header { flex-direction: column; align-items: flex-start; gap: 4px; }
  .flow-step { flex-direction: column; gap: 8px; }
}


/* ── Salon Area Section (per prefecture) ── */
.salon-area-section {
  margin-bottom: clamp(48px, 6vw, 72px);
  padding-top: 8px;
  scroll-margin-top: 100px; /* Clear fixed header on anchor scroll */
}
.salon-area-section:last-child {
  margin-bottom: 0;
}
.salon-area-section .section-heading {
  margin-bottom: clamp(20px, 3vw, 32px);
}
.salon-area-section .section-title {
  font-family: 'Noto Serif JP', 'Yu Mincho', serif;
  font-size: clamp(18px, 2vw, 24px);
}
.salon-area-count {
  font-family: var(--serif);
  font-size: 14px;
  color: var(--mid-gray);
  margin-left: 12px;
  font-weight: 300;
}
.salon-card-brands {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.salon-card-tel a {
  color: inherit;
  text-decoration: none;
}
.salon-card-name a {
  color: inherit;
  text-decoration: none;
}
.salon-card-name a:hover {
  text-decoration: underline;
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   NEWS DETAIL PAGE
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.news-detail {
  padding: var(--section-py) var(--section-px);
}
.news-detail-inner {
  max-width: 760px;
  margin: 0 auto;
}
.news-detail-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.news-detail-date {
  font-family: var(--serif);
  font-size: 13px;
  letter-spacing: .15em;
  color: var(--gray-brown);
}
.news-detail-cat {
  font-family: var(--serif);
  font-size: 10px;
  letter-spacing: .15em;
  color: var(--gray-brown);
  border: 1px solid var(--mid-gray);
  padding: 2px 10px;
}
.news-detail-title {
  font-family: 'Noto Serif JP', 'Yu Mincho', serif;
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 400;
  letter-spacing: .08em;
  line-height: 1.6;
  margin-bottom: clamp(32px, 4vw, 48px);
  padding-bottom: clamp(24px, 3vw, 32px);
  border-bottom: 1px solid var(--warm-gray);
}
.news-detail-body {
  font-size: 15px;
  color: var(--dark-gray);
  letter-spacing: .04em;
  line-height: 2.2;
}
.news-detail-body p {
  margin-bottom: 24px;
}
.news-detail-body h3 {
  font-family: 'Noto Serif JP', 'Yu Mincho', serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: .08em;
  margin: 40px 0 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--warm-gray);
}
.news-detail-body ul {
  list-style: none;
  margin-bottom: 24px;
}
.news-detail-body ul li {
  padding: 6px 0 6px 20px;
  position: relative;
}
.news-detail-body ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 14px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
}
.news-detail-body .note {
  font-size: 13px;
  color: var(--gray-brown);
  padding: 20px 24px;
  background: var(--warm-white);
  margin: 24px 0;
  line-height: 2;
}
.news-detail-image {
  width: 100%;
  margin: 32px 0;
  aspect-ratio: 16/9;
  background: #cccccc;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 12px;
  color: var(--mid-gray);
  letter-spacing: .12em;
}

/* News nav (prev/next) */
.news-nav {
  display: flex;
  border-top: 1px solid var(--warm-gray);
  margin-top: clamp(40px, 6vw, 64px);
}
.news-nav-link {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: clamp(20px, 3vw, 32px) 0;
  transition: color .3s ease;
  font-size: 13px;
  letter-spacing: .04em;
  color: var(--dark-gray);
}
.news-nav-link:hover { color: var(--gold-dark); }
.news-nav-link--next {
  justify-content: flex-end;
  text-align: right;
  border-left: 1px solid var(--warm-gray);
  padding-left: 24px;
}
.news-nav-link--prev { padding-right: 24px; }
.news-nav-arrow {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--mid-gray);
}
.news-nav-center {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(20px, 3vw, 32px) 24px;
  border-left: 1px solid var(--warm-gray);
  border-right: 1px solid var(--warm-gray);
}
.news-nav-center a {
  font-family: var(--serif);
  font-size: 12px;
  letter-spacing: .2em;
  color: var(--gray-brown);
  transition: color .3s ease;
}
.news-nav-center a:hover { color: var(--gold-dark); }

/* News item link hover */
a.news-text:hover { color: var(--gold-dark); }


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   PRODUCT ITEM DETAIL PAGE
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.product-detail {
  padding: var(--section-py) var(--section-px);
}
.product-detail-inner {
  max-width: var(--content-max);
  margin: 0 auto;
}
.product-detail-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
  margin-bottom: clamp(60px, 8vw, 100px);
}
.product-detail-image {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: sticky;
  top: 100px;
}
.product-detail-image-item {
  width: 100%;
  aspect-ratio: 1/1;
  background: #cccccc;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-detail-info { padding-top: 8px; }
.product-detail-series {
  font-family: var(--serif);
  font-size: 11px;
  letter-spacing: .3em;
  color: var(--gold);
  margin-bottom: 8px;
}
.product-detail-name {
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 36px);
  letter-spacing: .15em;
  font-weight: 300;
  margin-bottom: 6px;
}
.product-detail-sub {
  font-size: 14px;
  font-weight: 400;
  color: var(--gray-brown);
  letter-spacing: .06em;
  margin-bottom: 24px;
}
.product-detail-desc {
  font-size: 15px;
  color: var(--dark-gray);
  letter-spacing: .04em;
  line-height: 2.2;
  margin-bottom: 32px;
  white-space: pre-line;
}
.product-detail-features {
  margin-bottom: 32px;
}
.product-detail-features h4 {
  font-size: 12px;
  letter-spacing: .15em;
  color: var(--gray-brown);
  margin-bottom: 12px;
  font-weight: 500;
}
.detail-feature-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.detail-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--dark-gray);
  letter-spacing: .04em;
}
.detail-feature-item::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* Specs / Sizes */
.product-detail-specs {
  margin-bottom: 32px;
  padding: 24px;
  background: var(--warm-white);
}
.product-detail-specs h4 {
  font-size: 12px;
  letter-spacing: .15em;
  color: var(--gray-brown);
  margin-bottom: 16px;
  font-weight: 500;
}
.spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--warm-gray);
  font-size: 14px;
}
.spec-row:last-child { border-bottom: none; }
.spec-size { color: var(--near-black); font-weight: 500; }
.spec-price { font-family: var(--sans); color: var(--gray-brown); letter-spacing: .08em; }

/* How to use */
.product-howto {
  padding: clamp(40px, 6vw, 64px) var(--section-px);
  background: var(--warm-white);
}
.product-howto-inner {
  max-width: var(--content-max);
  margin: 0 auto;
}
.howto-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 40px);
  margin-top: clamp(24px, 3vw, 40px);
}
.howto-step {
  text-align: center;
}
.howto-step-number {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 300;
  color: var(--gold);
  margin-bottom: 12px;
}
.howto-step h4 {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .06em;
  margin-bottom: 8px;
}
.howto-step p {
  font-size: 13px;
  color: var(--dark-gray);
  letter-spacing: .04em;
  line-height: 1.8;
}

/* Ingredients table */
.product-ingredients {
  padding: var(--section-py) var(--section-px);
}
.product-ingredients-inner {
  max-width: var(--content-max);
  margin: 0 auto;
}
.ingredients-full {
  font-size: 13px;
  color: var(--gray-brown);
  letter-spacing: .04em;
  line-height: 2;
  padding: 24px;
  background: var(--warm-white);
  margin-top: 24px;
}

/* Related products */
.related-products {
  padding: clamp(40px, 6vw, 64px) var(--section-px);
  background: var(--warm-white);
}
.related-products-inner {
  max-width: var(--content-max);
  margin: 0 auto;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: clamp(24px, 3vw, 40px);
}
.related-card {
  display: block;
  text-align: center;
  transition: transform .3s ease;
}
.related-card:hover { transform: translateY(-4px); }
.related-card-image {
  width: 100%;
  aspect-ratio: 1/1;
  background: #cccccc;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 10px;
  color: var(--mid-gray);
}
.related-card-sub {
  font-family: var(--serif);
  font-size: 14px;
  letter-spacing: .1em;
  font-weight: 500;
  margin-bottom: 4px;
}
.related-card-name {
  font-family: var(--sans);
  font-size: 12px;
  color: var(--gray-brown);
  letter-spacing: .06em;
}

@media (max-width: 1024px) {
  .product-detail-top { grid-template-columns: 1fr; }
  .product-detail-image { position: static; max-width: 500px; margin: 0 auto; }
  .howto-steps { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .related-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Item card as link */
a.item-card-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}
a.item-card-link .item-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  transition: transform .4s ease, box-shadow .4s ease;
}
a.item-card-link .item-card-body { flex: 1; }
a.item-card-link:hover .item-card { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,.06); }


/* ── Line Up Navigation (product item → series page) ── */
.lineup-nav {
  display: flex;
  border-top: 1px solid var(--warm-gray);
}
.lineup-nav-link {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: clamp(24px, 3vw, 40px) var(--section-px);
  font-family: var(--serif);
  font-size: 13px;
  letter-spacing: .15em;
  color: var(--gray-brown);
  transition: background .3s ease, color .3s ease;
}
.lineup-nav-link:hover { background: var(--warm-white); color: var(--gold-dark); }
.lineup-nav-arrow {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--mid-gray);
  font-weight: 300;
}
.lineup-nav-link:hover .lineup-nav-arrow { color: var(--gold-dark); }
.lineup-nav-link--all {
  justify-content: flex-end;
  text-align: right;
  border-left: 1px solid var(--warm-gray);
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   EXPLORE SECTION (Glyphic-style accordion)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.explore {
  padding: var(--section-py) var(--section-px);
}
.explore-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

/* Left: Visual */
.explore-visual {
  position: sticky;
  top: 100px;
  aspect-ratio: 4/5;
  border-radius: 4px;
  overflow: hidden;
  background: #cccccc;
}
.explore-img {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .6s ease;
}
.explore-img--active {
  opacity: 1;
}

/* Right: Panels */
.explore-panels {
  display: flex;
  flex-direction: column;
}

/* Single panel */
.explore-panel {
  border-top: 1px solid var(--warm-gray);
  cursor: pointer;
  transition: background .3s ease;
}
.explore-panel:last-of-type {
  border-bottom: 1px solid var(--warm-gray);
}

/* Panel header */
.explore-panel-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: clamp(20px, 2.5vw, 28px) 0;
}
.explore-panel-num {
  font-family: var(--serif);
  font-size: clamp(16px, 1.5vw, 20px);
  letter-spacing: .1em;
  color: var(--mid-gray);
  min-width: 36px;
  transition: color .3s ease;
}
.explore-panel-title {
  font-family: var(--serif);
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 300;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--mid-gray);
  transition: color .4s ease;
  flex: 1;
}
.explore-panel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--near-black);
  opacity: 0;
  transition: opacity .3s ease;
  flex-shrink: 0;
}

/* Active state */
.explore-panel--active .explore-panel-num { color: var(--near-black); }
.explore-panel--active .explore-panel-title { color: var(--near-black); }
.explore-panel--active .explore-panel-dot { opacity: 1; }

/* Panel body (expandable) */
.explore-panel-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s cubic-bezier(.25,.1,.25,1), padding .5s ease;
  padding: 0 0 0 44px;
}
.explore-panel--active .explore-panel-body {
  max-height: 200px;
  padding: 0 0 clamp(20px, 2.5vw, 28px) 44px;
}

.explore-panel-desc {
  font-size: 14px;
  color: var(--dark-gray);
  letter-spacing: .04em;
  line-height: 1.9;
  margin-bottom: 16px;
}
.explore-panel-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--serif);
  font-size: 13px;
  letter-spacing: .12em;
  color: var(--near-black);
  transition: color .3s ease;
}
.explore-panel-link:hover { color: var(--gold-dark); }
.explore-panel-link span {
  font-size: 16px;
  transition: transform .3s ease;
}
.explore-panel-link:hover span { transform: translateX(4px); }

/* CTA button */
.explore-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: clamp(24px, 3vw, 40px);
  padding: 16px 32px;
  background: var(--near-black);
  color: var(--white);
  font-family: var(--serif);
  font-size: 14px;
  letter-spacing: .12em;
  transition: background .3s ease;
  align-self: flex-start;
}
.explore-cta:hover { background: #333; }
.explore-cta span { font-size: 18px; }

/* Responsive */
@media (max-width: 1024px) {
  .explore-inner { grid-template-columns: 1fr; gap: 0; }
  .explore-visual {
    position: relative;
    aspect-ratio: 16/9;
    height: auto;
    max-height: 300px;
    overflow: hidden;
    width: 100%;
    z-index: 0;
    top: auto;
  }
  .explore-panels { position: relative; z-index: 1; margin-top: 48px; }
  .explore-panel-body { padding-left: 44px; }
  .explore-panel--active .explore-panel-body { padding: 0 0 clamp(20px, 2.5vw, 28px) 44px; }
}
@media (max-width: 768px) {
  .explore-visual { max-height: 240px; }
  .explore-panels { margin-top: 40px; }
  .explore-panel-body { padding-left: 0; }
  .explore-panel--active .explore-panel-body { padding: 0 0 clamp(16px, 2vw, 24px) 0; }
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   LEGAL PAGES (Privacy / Terms)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.legal-page {
  padding: var(--section-py) var(--section-px);
}
.legal-inner {
  max-width: 760px;
  margin: 0 auto;
}
.legal-lead {
  font-size: 15px;
  color: var(--dark-gray);
  letter-spacing: .04em;
  line-height: 2.2;
  margin-bottom: clamp(40px, 5vw, 56px);
  padding-bottom: clamp(32px, 4vw, 48px);
  border-bottom: 1px solid var(--warm-gray);
}
.legal-section {
  margin-bottom: clamp(32px, 4vw, 40px);
}
.legal-section h2 {
  font-family: 'Noto Serif JP', 'Yu Mincho', serif;
  font-size: clamp(16px, 1.5vw, 18px);
  font-weight: 400;
  letter-spacing: .08em;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--warm-gray);
}
.legal-section p {
  font-size: 14px;
  color: var(--dark-gray);
  letter-spacing: .04em;
  line-height: 2.2;
  margin-bottom: 12px;
}
.legal-section ul {
  list-style: none;
  margin: 12px 0;
}
.legal-section ul li {
  padding: 6px 0 6px 20px;
  position: relative;
  font-size: 14px;
  color: var(--dark-gray);
  letter-spacing: .04em;
  line-height: 1.9;
}
.legal-section ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 14px;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--mid-gray);
}
.legal-contact {
  padding: 20px 24px;
  background: var(--warm-white);
  margin-top: 12px;
}
.legal-contact p {
  margin-bottom: 4px;
  font-size: 14px;
}
.legal-date {
  font-family: var(--serif);
  font-size: 13px;
  color: var(--mid-gray);
  letter-spacing: .1em;
  margin-top: clamp(40px, 5vw, 56px);
  padding-top: clamp(24px, 3vw, 32px);
  border-top: 1px solid var(--warm-gray);
}


/* ── Corporate Identity Block ── */
.identity-block {
  max-width: 720px;
  margin: 0 auto clamp(40px, 5vw, 56px);
  text-align: center;
}
.identity-block:last-child { margin-bottom: 0; }
.identity-label {
  font-family: var(--serif);
  font-size: 12px;
  letter-spacing: .2em;
  color: var(--gold);
  margin-bottom: 12px;
}
.identity-title {
  font-family: 'Noto Serif JP', 'Yu Mincho', serif;
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 400;
  letter-spacing: .2em;
  margin-bottom: clamp(20px, 3vw, 32px);
}
.identity-body p {
  font-size: 15px;
  color: var(--dark-gray);
  letter-spacing: .04em;
  line-height: 2.2;
  margin-bottom: 8px;
}

/* ── Simplified ACF Input Styles ── */

/* brand_badges: <ul class="product-badges-list"><li>テキスト</li> */
.product-badges-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: clamp(24px, 3vw, 40px);
}
.product-badges-list li {
  font-family: var(--serif);
  font-size: 11px;
  letter-spacing: .12em;
  color: var(--gray-brown);
  border: 1px solid var(--warm-gray);
  padding: 6px 16px;
}

/* brand_key_ingredients: <ul class="ingredients-simple"><li><h4>成分名</h4><p>説明</p></li> */
.ingredients-simple {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 3vw, 40px);
  margin-top: clamp(32px, 4vw, 48px);
}
.ingredients-simple li {
  display: grid;
  grid-template-columns: 48px 1fr;
  grid-template-rows: auto 1fr;
  column-gap: 16px;
}
.ingredients-simple li::before {
  content: '';
  grid-row: 1 / 3;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #f7f5f0;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23c5a55a" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"><path d="M12 3C9 7 5 12 5 16a7 7 0 0 0 14 0C19 12 15 7 12 3Z"/></svg>');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 22px 22px;
  align-self: start;
}
.ingredients-simple li h4 {
  grid-column: 2;
  grid-row: 1;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .06em;
  margin-bottom: 4px;
}
.ingredients-simple li p {
  grid-column: 2;
  grid-row: 2;
  font-size: 13px;
  color: var(--dark-gray);
  letter-spacing: .04em;
  line-height: 1.8;
}
@media (max-width: 768px) {
  .ingredients-simple { grid-template-columns: 1fr; }
}

/* product_features: <ul class="feature-list"><li>テキスト</li> */
.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--dark-gray);
  letter-spacing: .04em;
}
.feature-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* product_howto: <ul class="howto-list howto-clm3"><li><h4>タイトル</h4><p>説明</p></li> */
.howto-list {
  list-style: none;
  counter-reset: howto-counter;
  display: grid;
  gap: clamp(20px, 3vw, 40px);
  margin-top: clamp(24px, 3vw, 40px);
}
.howto-list.howto-clm1 { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
.howto-list.howto-clm2 { grid-template-columns: repeat(2, 1fr); }
.howto-list.howto-clm3 { grid-template-columns: repeat(3, 1fr); }
.howto-list li {
  counter-increment: howto-counter;
  text-align: center;
}
.howto-list li::before {
  content: counter(howto-counter, decimal-leading-zero);
  display: block;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 300;
  color: var(--gold);
  margin-bottom: 12px;
}
.howto-list li h4 {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .06em;
  margin-bottom: 8px;
}
.howto-list li p {
  font-size: 13px;
  color: var(--dark-gray);
  letter-spacing: .04em;
  line-height: 1.8;
}
@media (max-width: 768px) {
  .howto-list.howto-clm2,
  .howto-list.howto-clm3 { grid-template-columns: 1fr; }
}

/* ── Thumbnail image fill ── */
.item-card-image img,
.product-detail-image-item img,
.related-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border: none;
  outline: none;
}
.no-thumb-logo {
  width: 40% !important;
  height: auto !important;
  object-fit: unset !important;
  opacity: 0.3;
}

/* Utility: mobile-only line break */
.sp-br { display: none; }
@media (max-width: 768px) { .sp-br { display: block; } }

/* Dealer sections-grid: single column on mobile */
@media (max-width: 768px) {
  .sections-grid[style*="repeat(2"] {
    grid-template-columns: 1fr !important;
    max-width: 100% !important;
    gap: 24px;
  }
}
