/* =============================================
   CSS VARIABLES
   ============================================= */
:root {
  --bg: #F7F6F3;
  --sur: #FFFFFF;
  --ink: #1E1D1B;
  --mid: #5A5955;
  --soft: #9A9894;
  --line: rgba(30,29,27,0.09);
  --line2: rgba(30,29,27,0.17);
  --pk: #D4537E;
  --pk-pale: #F9EEF3;
  --pk-soft: #F4C0D1;
  --fd: 'DM Sans', sans-serif;
  --fb: 'Noto Sans JP', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--fb);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

/* =============================================
   HEADER
   ============================================= */
.hdr {
  background: var(--sur);
  border-bottom: 0.5px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  height: 52px;
  gap: 16px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  font-family: var(--fd);
  font-size: 18px;
  font-weight: 300;
  letter-spacing: .13em;
  color: var(--ink);
  white-space: nowrap;
  flex-shrink: 0;
  text-decoration: none;
}

.logo-dot {
  color: var(--pk);
}

/* ハンバーガー（SP・TB） */
.hbg {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
  background: none;
  border: none;
  outline: none;
}

.hbg i {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  border-radius: 2px;
}

/* PCナビ（3ゾーングリッド） */
.hnav,
.hnav-center,
.hnav-cta {
  display: none;
}

/* ドロワー */
.drawer {
  background: var(--sur);
  border-bottom: 0.5px solid var(--line);
  padding: 0 20px 20px;
  display: none;
}

.drawer.is-open {
  display: block;
}

.drawer a {
  display: block;
  font-family: var(--fd);
  font-size: 15px;
  color: var(--ink);
  padding: 13px 0;
  border-bottom: 0.5px solid var(--line);
  text-decoration: none;
  letter-spacing: .03em;
}

.drawer a:last-child {
  border-bottom: none;
}

.drawer-cta {
  margin-top: 16px;
  display: inline-block;
  background: var(--ink);
  color: var(--bg) !important;
  padding: 10px 24px !important;
  border-radius: 2px;
  font-size: 12px !important;
  letter-spacing: .07em;
  border-bottom: none !important;
}

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  overflow: hidden;
  background: #1E1D1B;
  min-height: 460px;
  display: flex;
  align-items: flex-end;
}

/* 背景画像レイヤー */
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: 70% center;
  background-repeat: no-repeat;
  transition: opacity 1.2s ease;
}


@media (max-width: 768px){
  .hero-bg{
    background-position: center center;
    background-size: cover;
  }
}


/* 初期状態 */
.hero-bg-1 {
  opacity: 1;
  z-index: 0;
}

.hero-bg-2 {
  opacity: 0;
  z-index: 0;
}
/* 黒オーバーレイ（左から右にかけてグラデーションで薄くなる） */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(20, 18, 16, 0.72) 0%,
    rgba(20, 18, 16, 0.55) 42%,
    rgba(20, 18, 16, 0.22) 72%,
    rgba(20, 18, 16, 0.08) 100%
  );
}

/* アクセントライン（上端） */
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(212, 83, 126, 0.55) 30%,
    rgba(212, 83, 126, 0.85) 60%,
    transparent 100%
  );
  z-index: 3;
}

/* テキストコンテンツ */
.hero-content {
  position: relative;
  z-index: 2;
  padding: 52px 24px 44px;
  width: 100%;
}

.h-eyebrow {
  font-family: var(--fd);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(212, 83, 126, 0.80);
  margin-bottom: 14px;
}

.h-h1 {
  font-family: var(--fd);
  font-size: 27px;
  font-weight: 300;
  line-height: 1.3;
  color: #F7F6F3;
  letter-spacing: .02em;
  margin-bottom: 14px;
}

.h-body {
  font-size: 13px;
  color: rgba(247, 246, 243, 0.60);
  line-height: 1.9;
  margin-bottom: 28px;
}

.h-ctas {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

/* CTAボタン */
.btn-pk {
  display: inline-block;
  background: var(--pk);
  color: #fff;
  font-family: var(--fd);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .07em;
  padding: 12px 26px;
  border-radius: 2px;
  text-decoration: none;
  transition: opacity .15s;
}

.btn-pk:hover {
  opacity: .88;
}

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: rgba(247, 246, 243, 0.50);
  font-family: var(--fd);
  font-size: 13px;
  letter-spacing: .05em;
  padding: 12px 0;
  text-decoration: none;
}

.btn-ghost::after {
  content: '→';
  margin-left: 6px;
}

/* シリーズストリップ */
.h-strip {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 0.5px solid rgba(255, 255, 255, 0.12);
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.h-strip-lbl {
  font-family: var(--fd);
  font-size: 10px;
  letter-spacing: .1em;
  color: rgba(247, 246, 243, 0.30);
  text-transform: uppercase;
}

.h-chip {
  font-family: var(--fd);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .06em;
  color: rgba(247, 246, 243, 0.60);
  padding: 4px 12px;
  border: 0.5px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
}

.h-chip.hl {
  border-color: rgba(212, 83, 126, 0.45);
  color: var(--pk-soft);
}

/* =============================================
   ABOUT
   ============================================= */
.about {
  padding: 44px 24px 40px;
  background: var(--sur);
  position: relative;
  overflow: hidden;
}

.about-deco {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.about-deco-1 {
  width: 160px;
  height: 160px;
  right: -40px;
  top: -40px;
  border: 0.5px solid rgba(212, 83, 126, 0.08);
}

.about-deco-2 {
  width: 90px;
  height: 90px;
  right: 10px;
  top: 10px;
  border: 0.5px solid rgba(212, 83, 126, 0.06);
}

.sec-eyebrow {
  font-family: var(--fd);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--soft);
  margin-bottom: 12px;
}

.about-lead {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 14px;
}

.about-body {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.85;
}

/* ピラー */
.pillars {
  margin-top: 28px;
  border: 0.5px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
}

.pillar {
  padding: 16px 18px;
  background: var(--sur);
  border-bottom: 0.5px solid var(--line);
}

.pillar:last-child {
  border-bottom: none;
}

.pnum {
  font-family: var(--fd);
  font-size: 10px;
  color: var(--pk);
  letter-spacing: .1em;
  margin-bottom: 3px;
}

.ptitle {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 3px;
}

.pbody {
  font-size: 13px;
  color: var(--mid);
  line-height: 1.7;
}

/* About CTA バンド */
.about-cta-band {
  margin-top: 28px;
  padding: 18px 20px;
  background: var(--pk-pale);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.about-cta-band p {
  font-size: 13px;
  color: var(--pk);
  font-weight: 500;
  line-height: 1.5;
}

.btn-pk-sm {
  display: inline-block;
  background: var(--pk);
  color: #fff;
  font-family: var(--fd);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .06em;
  padding: 9px 18px;
  border-radius: 2px;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: opacity .15s;
}

.btn-pk-sm:hover {
  opacity: .88;
}

/* =============================================
   PRODUCTS
   ============================================= */
.products {
  padding: 40px 20px;
}

.sec-hdr {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 18px;
}

.sec-title {
  font-family: var(--fd);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: .06em;
  color: var(--ink);
}

.sec-lnk {
  font-family: var(--fd);
  font-size: 12px;
  color: var(--soft);
  text-decoration: none;
  letter-spacing: .04em;
  border-bottom: 0.5px solid var(--soft);
  padding-bottom: 1px;
}

/* フィルターピル */
.pills {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.pill {
  font-family: var(--fd);
  font-size: 12px;
  padding: 6px 14px;
  border-radius: 20px;
  border: 0.5px solid var(--line2);
  color: var(--mid);
  background: var(--sur);
  cursor: pointer;
  letter-spacing: .03em;
  transition: background .15s, color .15s;
}

.pill.active,
.pill:hover {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}

/* 商品グリッド */
.pgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.pcard {
  background: var(--sur);
  border-radius: 8px;
  overflow: hidden;
  border: 0.5px solid var(--line);
  position: relative;
  transition: transform .15s, box-shadow .15s;
}

.pcard:hover {
  transform: translateY(-2px);
}

/* コーナー装飾 */
.pcard::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 0; height: 0;
  border-style: solid;
  border-width: 0 16px 16px 0;
  border-color: transparent var(--pk-pale) transparent transparent;
  z-index: 1;
}

.pcard-img {
  background: #F0EDE8;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.pcard-img.tf-bg {
  background: #EDE8F0;
}

/* 画像未差し替え時のプレースホルダー */
.pcard-placeholder {
  width: 55%;
  height: 55%;
  background: rgba(30, 29, 27, 0.08);
  border-radius: 4px;
}

.pcard-badge {
  position: absolute;
  bottom: 8px;
  left: 8px;
  font-family: var(--fd);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--sur);
  background: rgba(30, 29, 27, 0.55);
  padding: 3px 7px;
  border-radius: 2px;
}

.pcard-info {
  padding: 10px 12px 12px;
}

.pcard-name {
  font-size: 12px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.45;
  margin-bottom: 2px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.pcard-id {
  font-family: var(--fd);
  font-size: 10px;
  color: var(--soft);
  letter-spacing: .04em;
}

/* 商品一覧CTA */
.prod-cta {
  margin-top: 28px;
  text-align: center;
  padding: 24px 20px;
  border: 0.5px solid var(--line);
  border-radius: 10px;
  background: var(--sur);
}

.prod-cta p {
  font-size: 13px;
  color: var(--mid);
  margin-bottom: 14px;
  line-height: 1.7;
}

.btn-ol-dark {
  display: inline-block;
  background: transparent;
  color: var(--ink);
  font-family: var(--fd);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .07em;
  padding: 11px 28px;
  border-radius: 2px;
  border: 0.5px solid var(--ink);
  text-decoration: none;
  transition: background .15s, color .15s;
}

.btn-ol-dark:hover {
  background: var(--ink);
  color: var(--bg);
}

.prod-note {
  font-family: var(--fd);
  font-size: 11px;
  color: var(--soft);
  margin-top: 10px;
  letter-spacing: .04em;
}

/* =============================================
   STORES
   ============================================= */
.stores {
  padding: 40px 20px;
  background: var(--sur);
}

.scard {
  border: 0.5px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 10px;
}

.scard:last-child {
  margin-bottom: 0;
}

.scard-head {
  padding: 13px 16px;
  border-bottom: 0.5px solid var(--line);
  display: flex;
  align-items: center;
  gap: 10px;
}

.sbadge {
  font-family: var(--fd);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 2px;
  background: var(--bg);
  color: var(--mid);
  border: 0.5px solid var(--line2);
  white-space: nowrap;
}

.sname {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
}

.scard-body {
  padding: 12px 16px;
  font-size: 13px;
  color: var(--mid);
  line-height: 1.75;
}

/* =============================================
   NEWS
   ============================================= */
.news {
  padding: 40px 20px;
}

.news-item {
  display: flex;
  gap: 14px;
  padding: 14px 0 14px 14px;
  border-bottom: 0.5px solid var(--line);
  align-items: flex-start;
  border-left: 2px solid var(--pk-soft);
  margin-bottom: 8px;
}

.news-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.ndate {
  font-family: var(--fd);
  font-size: 12px;
  color: var(--soft);
  white-space: nowrap;
  padding-top: 2px;
  letter-spacing: .03em;
}

.ntitle {
  font-size: 13px;
  color: var(--ink);
  line-height: 1.6;
}

/* =============================================
   COMPANY
   ============================================= */
.company {
  padding: 40px 20px;
  background: var(--sur);
}

.ctable {
  width: 100%;
  font-size: 13px;
  border-collapse: collapse;
}

.ctable tr {
  border-bottom: 0.5px solid var(--line);
}

.ctable tr:last-child {
  border-bottom: none;
}

.ctable th {
  padding: 12px 0;
  font-weight: 400;
  color: var(--soft);
  text-align: left;
  width: 80px;
  vertical-align: top;
}

.ctable td {
  padding: 12px 0;
  color: var(--mid);
  vertical-align: top;
}

/* =============================================
   CONTACT
   ============================================= */
.contact {
  padding: 40px 20px;
}

.contact-intro {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.85;
  margin-bottom: 24px;
}

.fgroup {
  margin-bottom: 14px;
}

.flabel {
  display: block;
  font-family: var(--fd);
  font-size: 12px;
  font-weight: 500;
  color: var(--mid);
  letter-spacing: .04em;
  margin-bottom: 6px;
}

.req {
  color: var(--pk);
  margin-left: 3px;
}

.finput,
.ftextarea {
  width: 100%;
  padding: 10px 14px;
  font-size: 14px;
  font-family: var(--fb);
  border: 0.5px solid var(--line2);
  border-radius: 4px;
  background: var(--bg);
  color: var(--ink);
  outline: none;
  transition: border-color .15s;
}

.finput:focus,
.ftextarea:focus {
  border-color: var(--pk);
}

.ftextarea {
  resize: vertical;
  min-height: 100px;
}

.fsubmit {
  width: 100%;
  padding: 14px;
  background: var(--ink);
  color: var(--bg);
  font-family: var(--fd);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .08em;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  margin-top: 6px;
  transition: opacity .15s;
}

.fsubmit:hover {
  opacity: .85;
}

/* =============================================
   PRE-FOOTER CTA
   ============================================= */
.prefooter {
  background: var(--ink);
  padding: 48px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pf-ring {
  position: absolute;
  border-radius: 50%;
  border: 0.5px solid rgba(212, 83, 126, 0.14);
  pointer-events: none;
}

.pf-ring-1 {
  width: 220px;
  height: 220px;
  right: -60px;
  bottom: -60px;
}

.pf-ring-2 {
  width: 120px;
  height: 120px;
  right: 0;
  bottom: 0;
}

.prefooter h3 {
  font-family: var(--fd);
  font-size: 18px;
  font-weight: 300;
  color: #F7F6F3;
  letter-spacing: .05em;
  margin-bottom: 8px;
  line-height: 1.4;
  position: relative;
  z-index: 1;
}

.prefooter p {
  font-size: 13px;
  color: rgba(247, 246, 243, 0.50);
  line-height: 1.75;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.prefooter .btn-pk {
  position: relative;
  z-index: 1;
  font-size: 14px;
  padding: 13px 32px;
}

.pf-sub {
  display: block;
  margin-top: 14px;
  font-family: var(--fd);
  font-size: 12px;
  color: rgba(247, 246, 243, 0.32);
  text-decoration: none;
  letter-spacing: .04em;
  position: relative;
  z-index: 1;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: #141412;
  padding: 28px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.flogo {
  font-family: var(--fd);
  font-size: 15px;
  font-weight: 300;
  letter-spacing: .15em;
  color: rgba(247, 246, 243, 0.60);
}

.fcopy {
  font-family: var(--fd);
  font-size: 10px;
  color: rgba(247, 246, 243, 0.25);
  letter-spacing: .04em;
}

/* =============================================
   TABLET（min-width: 640px）
   ============================================= */
@media (min-width: 640px) {
  /* ヘッダー */
  .hdr {
    padding: 0 32px;
    height: 60px;
  }

  .logo {
    font-size: 20px;
  }

  .hbg {
    display: none;
  }

  .hnav {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-shrink: 0;
  }

  .hnav a {
    font-family: var(--fd);
    font-size: 13px;
    color: var(--mid);
    text-decoration: none;
    letter-spacing: .03em;
    white-space: nowrap;
    transition: color .15s;
  }

  .hnav a:hover {
    color: var(--ink);
  }

  .hnav .ncta {
    display: inline-block;
    background: var(--ink);
    color: var(--bg);
    padding: 8px 16px;
    border-radius: 2px;
    font-size: 12px;
    letter-spacing: .05em;
  }

  .hnav .ncta:hover {
    opacity: .85;
    color: var(--bg);
  }

  .drawer {
    display: none !important;
  }

  /* ヒーロー */
  .hero {
    min-height: 420px;
    align-items: center;
  }

  .hero-bg {
    background-position: 60% center;
  }

  .hero-content {
    padding: 60px 40px 52px;
    max-width: 62%;
  }

  .h-h1 {
    font-size: 32px;
  }

  /* About */
  .about {
    padding: 52px 40px;
  }

  .about-lead {
    font-size: 23px;
  }

  .pillars {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .pillar {
    border-right: 0.5px solid var(--line);
    border-bottom: none;
  }

  .pillar:last-child {
    border-right: none;
  }

  /* Products */
  .products {
    padding: 52px 40px;
  }

  .pgrid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  /* Stores */
  .stores {
    padding: 52px 40px;
  }

  .scards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .scards-grid .scard {
    margin-bottom: 0;
  }

  /* News */
  .news {
    padding: 52px 40px;
  }

  /* Company */
  .company {
    padding: 52px 40px;
  }

  /* Contact */
  .contact {
    padding: 52px 40px;
  }

  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .fgroup-full {
    grid-column: 1 / -1;
  }

  /* Prefooter */
  .prefooter {
    padding: 56px 40px;
  }

  .pf-ring-1 {
    width: 280px;
    height: 280px;
    right: -80px;
    bottom: -80px;
  }

  /* Footer */
  .footer {
    padding: 28px 40px;
  }
}

/* =============================================
   PC（min-width: 860px）
   ============================================= */
@media (min-width: 860px) {
  /* ヘッダー：3ゾーングリッド */
  .hdr {
    padding: 0 56px;
    height: 64px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 0;
  }

  .logo {
    font-size: 22px;
  }

  .hbg {
    display: none;
  }

  /* TB用hnav非表示 */
  .hnav {
    display: none;
  }

  /* PC用ナビ（中央ゾーン） */
  .hnav-center {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 28px;
    padding-right: 28px;
    min-width: 0;
    overflow: hidden;
  }

  .hnav-center a {
    font-family: var(--fd);
    font-size: 13px;
    color: var(--mid);
    text-decoration: none;
    letter-spacing: .04em;
    white-space: nowrap;
    transition: color .15s;
  }

  .hnav-center a:hover {
    color: var(--ink);
  }

  /* PC用CTAボタン（右端ゾーン） */
  .hnav-cta {
    display: block;
    flex-shrink: 0;
  }

  .hnav-cta a {
    display: inline-block;
    background: var(--ink);
    color: var(--bg);
    font-family: var(--fd);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .07em;
    padding: 9px 22px;
    border-radius: 2px;
    text-decoration: none;
    white-space: nowrap;
    transition: opacity .15s;
  }

  .hnav-cta a:hover {
    opacity: .85;
  }

  /* ヒーロー */
  .hero {
    min-height: 500px;
    align-items: center;
  }

  .hero-bg {
    /* PC：人物を右寄りに見せる */
    background-position: 65% center;
  }

  .hero-content {
    padding: 80px 56px 72px;
    max-width: 52%;
  }

  .h-h1 {
    font-size: 40px;
    line-height: 1.25;
  }

  .h-body {
    font-size: 14px;
    max-width: 380px;
  }

  /* About */
  .about {
    padding: 80px 56px;
  }

  .about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
  }

  .about-lead {
    font-size: 26px;
  }

  .about-inner .pillars {
    margin-top: 0;
    grid-template-columns: 1fr 1fr 1fr;
  }

  /* Products */
  .products {
    padding: 80px 56px;
  }

  .pgrid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }

  /* Stores */
  .stores {
    padding: 80px 56px;
  }

  .scards-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  /* News */
  .news {
    padding: 80px 56px;
    background: var(--sur);
  }

  .news-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 40px;
  }

  /* Company */
  .company {
    padding: 80px 56px;
  }

  .company-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
  }

  /* Contact */
  .contact {
    padding: 80px 56px;
  }

  .contact-inner {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 56px;
    align-items: start;
  }

  .contact-inner .contact-intro {
    margin-bottom: 0;
  }

  /* Prefooter */
  .prefooter {
    padding: 72px 56px;
  }

  .pf-ring-1 {
    width: 320px;
    height: 320px;
    right: -100px;
    bottom: -100px;
  }

  .pf-ring-2 {
    width: 180px;
    height: 180px;
    right: -20px;
    bottom: -20px;
  }

  /* Footer */
  .footer {
    padding: 32px 56px;
  }
}


/* =============================================
   PAGE HERO（products.html / news.html 共通）
   ============================================= */
.page-hero {
  background: var(--sur);
  border-bottom: 0.5px solid var(--line);
  padding: 40px 20px 36px;
}

.page-hero-inner {
  max-width: 860px;
}

.page-hero-title {
  font-family: var(--fd);
  font-size: 26px;
  font-weight: 300;
  letter-spacing: .06em;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1.3;
}

.page-hero-body {
  font-size: 13px;
  color: var(--mid);
  line-height: 1.75;
}

@media (min-width: 640px) {
  .page-hero {
    padding: 52px 40px 44px;
  }

  .page-hero-title {
    font-size: 32px;
  }
}

@media (min-width: 860px) {
  .page-hero {
    padding: 64px 56px 56px;
  }

  .page-hero-title {
    font-size: 38px;
  }
}

/* =============================================
   PRODUCTS LIST PAGE（products.html）
   ============================================= */
.pl-section {
  padding: 40px 20px 64px;
}

/* フィルターバー */
.pl-filter {
  margin-bottom: 32px;
}

.pl-filter-inner {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  flex-wrap: wrap;
}

.pl-filter-lbl {
  font-family: var(--fd);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--soft);
  padding-top: 8px;
  white-space: nowrap;
  flex-shrink: 0;
}

.pl-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.pl-pill {
  font-family: var(--fd);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .04em;
  padding: 6px 16px;
  border-radius: 20px;
  border: 0.5px solid var(--line2);
  color: var(--mid);
  background: var(--sur);
  cursor: pointer;
  transition: background .15s, color .15s, border-color .15s;
}

.pl-pill.active,
.pl-pill:hover {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}

/* 商品グリッド */
.pl-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* 商品カード */
.pl-card {
  display: block;
  background: var(--sur);
  border: 0.5px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform .15s, box-shadow .15s;
}

.pl-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(30,29,27,0.08);
}

/* 画像エリア */
.pl-card-img {
  aspect-ratio: 1 / 1;
  background: #F0EDE8;
  position: relative;
  overflow: hidden;
}

.pl-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 画像がないときのプレースホルダー */
.pl-card-placeholder {
  display: none; /* JS/onerror で flex に切り替え */
  position: absolute;
  inset: 0;
  align-items: center;
  justify-content: center;
  background: #F0EDE8;
}

.pl-card-placeholder span {
  font-family: var(--fd);
  font-size: 10px;
  letter-spacing: .08em;
  color: var(--soft);
}

/* 商品情報 */
.pl-card-info {
  padding: 14px 16px 16px;
}

.pl-card-brand {
  display: inline-block;
  font-family: var(--fd);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: var(--pk);
  margin-bottom: 5px;
}

.pl-card-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.5;
  margin-bottom: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.pl-card-id {
  font-family: var(--fd);
  font-size: 10px;
  color: var(--soft);
  letter-spacing: .05em;
}

/* 件数表示 */
.pl-count {
  margin-top: 28px;
  text-align: center;
  font-family: var(--fd);
  font-size: 11px;
  color: var(--soft);
  letter-spacing: .05em;
}

@media (min-width: 640px) {
  .pl-section {
    padding: 52px 40px 80px;
  }

  .pl-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

@media (min-width: 860px) {
  .pl-section {
    padding: 64px 56px 96px;
  }

  .pl-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }

  .pl-card-name {
    font-size: 13px;
  }
}

/* =============================================
   NEWS LIST PAGE（news.html）
   ============================================= */
.nl-section {
  padding: 40px 20px 80px;
  max-width: 800px;
}

.nl-year-group {
  margin-bottom: 48px;
}

.nl-year-group:last-child {
  margin-bottom: 0;
}

.nl-year {
  font-family: var(--fd);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: .10em;
  color: var(--soft);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 0.5px solid var(--line2);
}

.nl-list {
  /* ニュースアイテムのリスト */
}

.nl-item {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 0.5px solid var(--line);
  align-items: flex-start;
}

.nl-item:first-child {
  padding-top: 0;
}

.nl-date {
  font-family: var(--fd);
  font-size: 12px;
  color: var(--soft);
  letter-spacing: .04em;
  white-space: nowrap;
  padding-top: 3px;
  flex-shrink: 0;
}

.nl-body {
  flex: 1;
  min-width: 0;
}

.nl-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.6;
  margin-bottom: 4px;
}

.nl-desc {
  font-size: 13px;
  color: var(--mid);
  line-height: 1.75;
}

@media (min-width: 640px) {
  .nl-section {
    padding: 52px 40px 96px;
  }

  .nl-year {
    font-size: 14px;
  }
}

@media (min-width: 860px) {
  .nl-section {
    padding: 64px 56px 112px;
  }
}

/* =============================================
   PRODUCT DETAIL PAGE（/products/*.html）
   ============================================= */

/* パンくずリスト */
.pd-breadcrumb {
  padding: 12px 20px;
  font-family: var(--fd);
  font-size: 11px;
  color: var(--soft);
  letter-spacing: .03em;
  border-bottom: 0.5px solid var(--line);
  background: var(--sur);
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.pd-breadcrumb a {
  color: var(--soft);
  text-decoration: none;
  transition: color .15s;
}

.pd-breadcrumb a:hover {
  color: var(--ink);
}

.pd-bc-sep {
  color: var(--line2);
}

/* セクション */
.pd-section {
  padding: 32px 20px 48px;
  background: var(--bg);
}

/* 2カラムレイアウト（PC）/ 縦並び（SP） */
.pd-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: 1040px;
  margin: 0 auto;
}

/* ---- 左：ギャラリー ---- */
.pd-gallery {
  /* ギャラリーエリア */
}

.pd-main-img {
  aspect-ratio: 1 / 1;
  background: #F5F4F1;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  border: 0.5px solid var(--line);
}

.pd-main-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  padding: 16px;
}

.pd-img-placeholder {
  display: none; /* onerror で flex に切り替え */
  position: absolute;
  inset: 0;
  align-items: center;
  justify-content: center;
  background: #F5F4F1;
}

.pd-img-placeholder span {
  font-family: var(--fd);
  font-size: 13px;
  color: var(--soft);
  letter-spacing: .08em;
}

/* サムネイル */
.pd-thumbs {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.pd-thumb {
  width: 72px;
  height: 72px;
  border-radius: 6px;
  overflow: hidden;
  background: #F5F4F1;
  border: 1.5px solid var(--line);
  padding: 0;
  cursor: pointer;
  transition: border-color .15s;
}

.pd-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pd-thumb.active,
.pd-thumb:hover {
  border-color: var(--pk);
}

/* ---- 右：商品情報 ---- */
.pd-info {
  /* 商品情報エリア */
}

.pd-brand {
  font-family: var(--fd);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--pk);
  margin-bottom: 8px;
}

.pd-title {
  font-family: var(--fb);
  font-size: 18px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.4;
  margin-bottom: 16px;
  letter-spacing: .01em;
}

.pd-item-no {
  font-family: var(--fd);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: .06em;
  color: var(--mid);
}

/* 価格 */
.pd-price-block {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  background: var(--bg);
  border: 0.5px solid var(--line2);
  border-radius: 4px;
  padding: 8px 16px;
  margin-bottom: 24px;
}

.pd-price-lbl {
  font-family: var(--fd);
  font-size: 11px;
  color: var(--soft);
  letter-spacing: .04em;
  white-space: nowrap;
}

.pd-price {
  font-family: var(--fd);
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: .02em;
}

.pd-price-note {
  font-family: var(--fd);
  font-size: 11px;
  color: var(--soft);
}

/* スペックテーブル */
.pd-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  margin-bottom: 24px;
}

.pd-table tr {
  border-bottom: 0.5px solid var(--line);
}

.pd-table tr:first-child {
  border-top: 0.5px solid var(--line);
}

.pd-table th {
  padding: 11px 0;
  font-weight: 400;
  color: var(--soft);
  text-align: left;
  width: 80px;
  vertical-align: top;
  white-space: nowrap;
}

.pd-table td {
  padding: 11px 0;
  color: var(--mid);
  line-height: 1.7;
  vertical-align: top;
}

/* 商品説明 */
.pd-desc {
  font-size: 13px;
  color: var(--mid);
  line-height: 1.9;
  margin-bottom: 28px;
  padding-top: 4px;
}

/* 購入ボタン */
.pd-buy {
  margin-top: 8px;
}

.pd-buy-btn {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--ink);
  color: var(--bg);
  font-family: var(--fd);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .08em;
  padding: 15px 24px;
  border-radius: 4px;
  text-decoration: none;
  transition: opacity .15s;
}

.pd-buy-btn:hover {
  opacity: .85;
}

.pd-buy-note {
  font-family: var(--fd);
  font-size: 11px;
  color: var(--soft);
  text-align: center;
  margin-top: 8px;
  letter-spacing: .03em;
}

/* 戻るリンク */
.pd-back {
  padding: 0 20px 48px;
  background: var(--bg);
}

.pd-back-link {
  font-family: var(--fd);
  font-size: 12px;
  color: var(--soft);
  text-decoration: none;
  letter-spacing: .04em;
  transition: color .15s;
}

.pd-back-link:hover {
  color: var(--ink);
}

/* ---- レスポンシブ ---- */
@media (min-width: 640px) {
  .pd-breadcrumb {
    padding: 14px 40px;
  }

  .pd-section {
    padding: 40px 40px 60px;
  }

  .pd-back {
    padding: 0 40px 60px;
  }

  .pd-title {
    font-size: 20px;
  }
}

@media (min-width: 860px) {
  .pd-breadcrumb {
    padding: 14px 56px;
  }

  .pd-section {
    padding: 48px 56px 80px;
  }

  .pd-back {
    padding: 0 56px 80px;
  }

  /* PC：左画像 / 右情報 の2カラム */
  .pd-inner {
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
  }

  .pd-title {
    font-size: 22px;
  }

  .pd-buy-btn {
    font-size: 15px;
    padding: 16px 28px;
  }
}

/* =============================================
   PCARD LINK（index.html の商品カードリンク用）
   ============================================= */
.pcard-link {
  display: block;
  text-decoration: none;
  color: inherit;
}
