@charset "UTF-8";
/* Farm/buy デザイントークン
-----------------------------------------------------------------*/
/* イージング
-----------------------------------------------------------------*/
/* デュレーション
-----------------------------------------------------------------*/
/* ============================================================
   生産品一覧（アークの生産品）専用CSS
   ark_company/assets/company-foodproduct.css を移植。
   ・色/フォント/.phead/.sec-title/.arw/.cta--shop/.ph-gray/.page は company_common.css
============================================================ */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-text-size-adjust: 100%;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

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

a:hover {
  color: var(--enji);
}

/* ============ 商品ビジュアル帯（マーキー） ============ */
/* ============ 導入コピー（.strip ティッカーは _companyComponents.scss に共通化） ============ */
.lead-copy {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  -moz-column-gap: var(--gutter);
  column-gap: var(--gutter);
  padding: 96px var(--edge) 120px;
}

.lead-copy .inner {
  grid-column: 7/13;
}

.lead-copy h2 {
  font-family: var(--mincho);
  font-weight: 500;
  font-size: 34px;
  letter-spacing: var(--ls-mincho);
  line-height: 1.5;
  color: var(--text);
}

.lead-copy p {
  font-family: var(--gothic);
  font-weight: 500;
  font-size: 16px;
  line-height: var(--lh-body);
  letter-spacing: var(--ls-mincho);
  color: var(--text-body);
  margin-top: 32px;
}

/* ============ 館ヶ森高原豚・ノア 訴求 ============ */
.feature {
  position: relative;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}

.feature .feat-img {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.feature::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(20, 15, 13, 0.72) 0%, rgba(20, 15, 13, 0.5) 42%, rgba(20, 15, 13, 0.12) 72%, rgba(20, 15, 13, 0) 100%);
}

.feature .feat-txt {
  max-width: 640px;
  padding: 120px 64px 120px var(--edge);
  min-height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feature .feat-txt .lead {
  font-family: var(--mincho);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: var(--ls-mincho);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
}

.feature .feat-txt h2 {
  font-family: var(--mincho);
  font-weight: 500;
  font-size: 38px;
  letter-spacing: var(--ls-mincho);
  line-height: 1.35;
  margin-top: 24px;
}

.feature .feat-txt p {
  font-family: var(--mincho);
  font-size: 15px;
  line-height: var(--lh-body);
  letter-spacing: var(--ls-mincho);
  color: rgba(255, 255, 255, 0.9);
  margin-top: 32px;
  text-wrap: pretty;
}

.feature .feat-more {
  display: none;
}

/* ============ カテゴリナビ ============ */
.cat-nav-sec {
  padding: 120px var(--edge);
  background: var(--paper);
}

.cat-nav {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  -moz-column-gap: var(--gutter);
  column-gap: var(--gutter);
  row-gap: 24px;
}

.cnav {
  grid-column: span 3;
  display: block;
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.35s ease;
}

.cnav:hover {
  transform: translateY(-4px);
  color: inherit;
}

.cnav .thumb {
  overflow: hidden;
  aspect-ratio: 1.6;
  background: #f0efeb;
}
.cnav .thumb > img,
.cnav .thumb > svg,
.cnav .thumb > iframe,
.cnav .thumb > video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.cnav .thumb img {
  transition: transform 0.6s ease;
}

@media (hover: hover) {
  .cnav:hover .thumb img {
    transform: scale(1.05);
  }
}
.cnav .nm {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-family: var(--gothic);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.04em;
  color: var(--text);
  padding: 20px 22px;
}

/* ============ カテゴリ詳細 ============ */
.cat-sec {
  background: var(--paper);
  scroll-margin-top: 96px;
  display: flex;
  flex-direction: column;
}

.cat-hero {
  position: relative;
  height: 520px;
  overflow: hidden;
  margin: 40px var(--edge) 0;
  border-radius: 4px;
}

.cat-hero .chimg {
  width: 100%;
  height: 100%;
}

.cat-hero .chimg.ph-gray {
  width: 100%;
  height: 100%;
}

.cat-hero-link {
  display: block;
  width: 100%;
  height: 100%;
}

.cat-hero-link:hover {
  color: inherit;
}

.cat-hero .arw {
  position: absolute;
  right: 24px;
  bottom: 24px;
  z-index: 1;
}

@media (hover: hover) {
  .cat-hero-link:hover .chimg {
    --z: 1.05;
  }
}
.cat-head {
  order: -1;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  -moz-column-gap: var(--gutter);
  column-gap: var(--gutter);
  align-items: start;
  padding: 48px var(--edge) 0;
}

.cat-sec--nolist .cat-head {
  padding-bottom: 96px;
}

.cat-head h2 {
  grid-column: 1/6;
  font-family: var(--mincho);
  font-weight: 500;
  font-size: 40px;
  letter-spacing: var(--ls-mincho);
  line-height: 1.3;
  color: var(--text);
}

.cat-head p {
  grid-column: 6/13;
  font-family: var(--mincho);
  font-size: 16px;
  line-height: var(--lh-body);
  letter-spacing: var(--ls-mincho);
  color: var(--text-body);
  padding-top: 0;
  text-wrap: pretty;
}

.prows {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  -moz-column-gap: 48px;
  column-gap: 48px;
  row-gap: 48px;
  margin: 64px var(--edge) 0;
  padding: 64px 0 24px;
  border-top: 1px solid var(--line);
}

.prows.c2 .prow {
  grid-column: span 6;
}

.prow {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 28px;
  align-items: start;
}

.prow .th {
  overflow: hidden;
  aspect-ratio: 1.5;
  width: 200px;
  border-radius: 4px;
  background: #f0efeb;
  flex: 0 0 auto;
}
.prow .th > img,
.prow .th > svg,
.prow .th > iframe,
.prow .th > video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.prow .th.ph-gray {
  background-image: repeating-linear-gradient(135deg, #d7d5d0 0 14px, #cfcdc8 14px 28px);
}

.prow .tx h4 {
  font-family: var(--gothic);
  font-weight: 500;
  font-size: 19px;
  letter-spacing: 0.04em;
  color: var(--text);
  margin-bottom: 14px;
  line-height: 1.5;
}

.prow .tx p {
  font-family: var(--mincho);
  font-size: 14.5px;
  line-height: 1.9;
  letter-spacing: 0.04em;
  color: var(--muted);
  text-wrap: pretty;
}

.shop-more {
  display: flex;
  justify-content: center;
  padding: 48px var(--edge) 96px;
}

/* ==================== RESPONSIVE (≤1023px) ==================== */
@media (max-width: 1023px) {
  .lead-copy {
    padding: 56px var(--edge) 96px;
  }
  .lead-copy .inner {
    grid-column: 1/-1;
  }
  .lead-copy h2 {
    font-size: 22px;
    line-height: 1.6;
  }
  .lead-copy p {
    font-size: 14px;
    margin-top: 24px;
  }
  .lead-copy p br {
    display: none;
  }
  .feature {
    color: #fff;
    background: var(--ink);
  }
  .feature .feat-img {
    position: relative;
    inset: auto;
    z-index: auto;
    width: 100%;
    aspect-ratio: 16/10;
  }
  .feature::before {
    display: none;
  }
  .feature .feat-txt {
    max-width: none;
    min-height: 0;
    padding: 48px var(--edge);
    justify-content: flex-start;
  }
  .feature .feat-txt .lead {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.92);
  }
  .feature .feat-txt h2 {
    font-size: 26px;
    margin-top: 16px;
    color: #fff;
  }
  .feature .feat-txt p {
    font-size: 14px;
    margin-top: 24px;
    color: rgba(255, 255, 255, 0.85);
  }
  .feature .feat-more {
    display: inline-flex;
    margin-top: 32px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.55);
    color: #fff;
  }
  .feature .feat-more:hover {
    background: #fff;
    border-color: #fff;
    color: var(--text);
  }
  .feature .feat-more svg {
    stroke: currentColor;
  }
  .cat-nav-sec {
    padding: 64px var(--edge);
  }
  .cat-nav {
    row-gap: 16px;
  }
  .cnav {
    grid-column: span 6;
  }
  .cnav .nm {
    font-size: 13.5px;
    padding: 16px;
  }
  .cat-sec {
    scroll-margin-top: 64px;
  }
  .cat-hero {
    height: auto;
    aspect-ratio: 16/10;
  }
  .cat-head {
    padding: 40px var(--edge) 0;
    row-gap: 16px;
  }
  .cat-head h2 {
    grid-column: 1/-1;
    font-size: 26px;
  }
  .cat-head p {
    grid-column: 1/-1;
    font-size: 14px;
    padding-top: 0;
  }
  .prows {
    grid-template-columns: 1fr;
    -moz-column-gap: 0;
    column-gap: 0;
    margin: 32px var(--edge) 0;
    padding: 32px 0 16px;
    row-gap: 24px;
  }
  .prows.c2 .prow {
    grid-column: auto;
  }
  .prow {
    grid-template-columns: 100px 1fr;
    gap: 16px;
  }
  .prow .th {
    width: 100px;
    aspect-ratio: 3/2;
    height: auto;
  }
  .prow .tx h4 {
    font-size: 16px;
    margin-bottom: 8px;
  }
  .prow .tx p {
    font-size: 13px;
  }
  .prows.c2 {
    display: flex;
    grid-template-columns: none;
    flex-wrap: nowrap;
    gap: 16px;
    margin: 32px 0 0;
    padding: 24px;
    border-top: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 24px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .prows.c2::-webkit-scrollbar {
    display: none;
  }
  .prows.c2 .prow {
    flex: 0 0 78%;
    scroll-snap-align: start;
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .prows.c2 .prow .th {
    width: 100%;
    aspect-ratio: 3/2;
  }
  .prows.c2 .prow .tx {
    padding: 0;
  }
  .cat-hero .arw {
    right: 16px;
    bottom: 16px;
  }
  .shop-more {
    padding: 40px var(--edge) 64px;
  }
}
@media (min-width: 640px) and (max-width: 1023px) {
  .cat-nav {
    row-gap: 24px;
  }
  .cnav {
    grid-column: span 4;
  }
}