@charset "UTF-8";
/* Farm/buy デザイントークン
-----------------------------------------------------------------*/
/* イージング
-----------------------------------------------------------------*/
/* デュレーション
-----------------------------------------------------------------*/
/* ============================================================
   企業サイト 生産品詳細（精肉/ハム/デリカ/たまご/調味料/パン/野菜）共通CSS
   ark_company/assets/css/company.css の .p-product 系＋共通部品
   (.c-btn / .c-product-card / .c-feature / .c-product-slider) を移植。
   ・色/フォント/.c-section-title/.breadcrumb は company_common.css
   ・読み込み順: common → company_common → 本CSS
============================================================ */
/* ---- ページ固有リセット ---- */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
}

h1,
h2,
p,
figure {
  margin: 0;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

a {
  color: inherit;
}

/* ============ 共通部品（束CSS由来） ============ */
.c-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  height: 72px;
  padding: 0 48px;
  border-radius: 6px;
  font-family: var(--gothic);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: background-color 0.25s ease, opacity 0.25s ease;
}

.c-btn svg {
  display: block;
  flex: none;
  width: 18px;
  height: auto;
}

.c-btn--dark {
  background: #050403;
  color: #fff;
}

.c-btn--dark:hover {
  background: #a80030;
}

.c-btn--shop:hover {
  background: #00763d;
}

.c-btn-wrap {
  display: flex;
  justify-content: center;
}

@media print, screen and (max-width:1023px), screen and (min-width:1024px) and (max-width:1024px) and (orientation: portrait) {
  .c-btn {
    height: 64px;
    padding: 0 32px;
    font-size: 14px;
  }
  .c-btn svg {
    width: 16px;
  }
}
.c-product-card {
  display: block;
  text-decoration: none;
  color: var(--text-body);
}

.c-product-card__thumb {
  overflow: hidden;
  aspect-ratio: 1.5;
  display: block;
  border-radius: 6px;
  background: #e5e5e5;
}
.c-product-card__thumb > img,
.c-product-card__thumb > svg,
.c-product-card__thumb > iframe,
.c-product-card__thumb > video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.c-product-card__title {
  margin-top: 16px;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.5;
}

@media print, screen and (max-width:1023px), screen and (min-width:1024px) and (max-width:1024px) and (orientation: portrait) {
  .c-product-card__title {
    margin-top: 12px;
    font-size: 15px;
  }
}
.c-feature {
  --feature-reveal-bg: #f1f0ee;
}

/* 生産品スライダー */
.c-product-slider__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.c-product-slider__nav {
  display: flex;
  gap: 12px;
  flex: none;
}

.c-product-slider__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 6px;
  background: #050403;
  color: #fff;
  cursor: pointer;
  transition: background-color 0.2s ease, opacity 0.2s ease;
}

.c-product-slider__arrow svg {
  width: 30px;
  height: auto;
  display: block;
}

.c-product-slider__arrow:disabled,
.c-product-slider__arrow.is-disabled {
  background: #d9d9d9;
  color: #fff;
  cursor: default;
}

.c-product-slider__arrow.is-lock {
  display: none;
}

.c-product-slider__viewport {
  margin-top: 40px;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  overflow: hidden;
}

.c-product-slider__track {
  display: flex;
  box-sizing: content-box;
}

.c-product-slider__card {
  flex-shrink: 0;
  width: 506px;
  height: auto;
  text-decoration: none;
  color: var(--text-body);
}

.c-product-slider__media {
  overflow: hidden;
  aspect-ratio: 1.5014836795;
  position: relative;
  border-radius: 4px;
}
.c-product-slider__media > img,
.c-product-slider__media > svg,
.c-product-slider__media > iframe,
.c-product-slider__media > video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.c-product-slider__img {
  width: 100%;
  height: 100%;
  background: #e5e5e5;
  transition: transform 0.6s ease;
}

.c-product-slider__card-arrow {
  position: absolute;
  right: 16px;
  bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #eee;
  border-radius: 6px;
  transition: background 0.3s ease;
}

.c-product-slider__card-arrow svg {
  width: 19px;
  height: 19px;
  display: block;
  stroke: var(--text);
  fill: none;
  stroke-width: 2;
  stroke-linejoin: round;
  transition: stroke 0.3s ease;
}

@media (hover: hover) {
  .c-product-slider__card:hover .c-product-slider__card-arrow {
    background: var(--enji);
  }
  .c-product-slider__card:hover .c-product-slider__card-arrow svg {
    stroke: #fff;
  }
  .c-product-slider__card:hover .c-product-slider__img {
    transform: scale(1.05);
  }
}
.c-product-slider__title {
  margin-top: 24px;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text-body);
}

.c-product-slider__desc {
  margin-top: 16px;
  font-size: 16px;
  line-height: 1.9;
  letter-spacing: 0.02em;
  color: var(--muted);
}

@media print, screen and (max-width:1023px), screen and (min-width:1024px) and (max-width:1024px) and (orientation: portrait) {
  .c-product-slider__arrow {
    width: 40px;
    height: 40px;
  }
  .c-product-slider__viewport {
    margin-top: 28px;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }
  .c-product-slider__card {
    width: 78vw;
  }
  .c-product-slider__title {
    margin-top: 16px;
    font-size: 18px;
  }
  .c-product-slider__desc {
    margin-top: 12px;
    font-size: 14px;
  }
}
/* ============ 本体 .p-product ============ */
.p-product {
  background: #f2f2f2;
  font-family: var(--gothic);
  color: var(--text-body);
}

/* .p-product-kv は _companyComponents.scss に共通化（PCベース）。SP のみ下部に残置 */
.p-product-intro {
  position: relative;
  z-index: 2;
  margin-top: -96px;
  background: #272727;
  color: #fff;
  padding: 128px 24px;
  text-align: center;
}

.p-product-intro__catch {
  font-family: var(--mincho);
  font-weight: 500;
  font-size: 28px;
  line-height: 1.9;
  letter-spacing: 0.1em;
}

.p-product-intro__lead {
  max-width: 860px;
  margin: 40px auto 0;
  font-size: 16px;
  line-height: var(--lh-body);
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.86);
}

.p-product-intro__note {
  max-width: 860px;
  margin: 20px auto 0;
  font-size: 12px;
  line-height: 1.8;
  letter-spacing: 0.04em;
  color: var(--muted);
}

.p-product-reason {
  width: 100%;
  max-width: 1248px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
  padding: 128px 24px;
}

.p-product-reason__list {
  margin-top: 56px;
}

.p-product-products {
  width: 100%;
  max-width: 1248px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
  padding: 0 24px 128px;
}

.p-product-products__grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px 24px;
}

.p-product-products .c-btn-wrap {
  margin-top: 48px;
}

/* .p-product-story ベースは _companyComponents.scss に共通化。以下は product 固有 */
.p-product-story__section-title {
  color: #fff;
  margin-bottom: 320px;
  margin-top: 162px;
  padding-top: 0;
}

.p-product-story__section-title::after {
  display: none;
}

.p-product-story__num {
  font-family: "Special Gothic Condensed One", var(--gothic);
  font-size: 15px;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.9);
}

.p-product-story__num span {
  opacity: 0.65;
}

.p-product-story__step-heading {
  margin-top: 18px;
  font-family: var(--mincho);
  font-weight: 500;
  font-size: 36px;
  line-height: 1.5;
  letter-spacing: 0.06em;
}

.p-product-story__step-body {
  max-width: 620px;
  margin-top: 28px;
  font-size: 16px;
  line-height: var(--lh-body);
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.9);
}

.p-product-others {
  background: #fff;
  padding: 112px 0 120px;
  overflow-x: clip;
}

.p-product-others__inner {
  width: 100%;
  max-width: 1248px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
  padding: 0 24px;
}

.p-product-others .c-btn-wrap {
  margin-top: 72px;
}

@media print, screen and (max-width:1023px), screen and (min-width:1024px) and (max-width:1024px) and (orientation: portrait) {
  .p-product-kv {
    height: 460px;
  }
  .p-product-kv__title {
    bottom: 56px;
  }
  .p-product-kv__title-jp {
    font-size: 34px;
  }
  .p-product-kv__title-en {
    font-size: 18px;
  }
  .p-product-intro {
    margin-top: -48px;
    padding: 64px 24px;
  }
  .p-product-intro__catch {
    font-size: 21px;
    line-height: 1.8;
  }
  .p-product-intro__lead {
    margin-top: 28px;
    font-size: 15px;
    text-align: left;
  }
  .p-product-intro__note {
    text-align: left;
  }
  .p-product-reason {
    padding: 72px 24px;
  }
  .p-product-reason__list {
    margin-top: 32px;
  }
  .p-product-products {
    padding: 0 24px 72px;
  }
  .p-product-products__grid {
    margin-top: 36px;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 16px;
  }
  .p-product-products .c-btn-wrap {
    margin-top: 48px;
  }
  .p-product-others {
    padding: 64px 0 72px;
  }
  .p-product-others__inner {
    padding: 0 24px;
  }
  .p-product-others .c-btn-wrap {
    margin-top: 48px;
  }
  .p-product-story {
    padding-top: 72px;
  }
  .p-product-story__step-inner {
    padding: 0 24px;
  }
  .p-product-story__scrim {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.55) 100%);
  }
  .p-product-story__step-heading {
    font-size: 24px;
  }
  .p-product-story__step-body {
    font-size: 14px;
    line-height: 1.95;
  }
}