@charset "utf-8";
/* ========================================
   大城ゴム工業 - 共通スタイル
   BEM風 / セマンティック / WP化想定
   ======================================== */

/* ----- CSS Variables ----- */
:root {
  --color-navy: #0d1b2a;
  --color-navy-light: #1b263b;
  --color-navy-dark: #0a1628;
  --color-gold: #c9a227;
  --color-gold-light: #c9a227;
  --color-gold-dark: #c9a227;
  --color-white: #ffffff;
  --color-gray-100: #f5f6f7;
  --color-gray-200: #e9ecef;
  --color-gray-500: #6c757d;
  --color-gray-700: #495057;
  --color-text: #333333;
  --color-text-inverse: #ffffff;
  /* セクションタイトル用（ネイビー背景上のライトブルー） */
  --color-light-blue: #6b9ac4;
  --product-card-bg-gradient: linear-gradient(135deg, #1c2e44 0%, #142537 50%, #0e1b2a 100%);

  --font-sans: "Noto Sans JP", sans-serif;
  /* PRODUCT / PICKUP 見出し（.c-section-head__title）と同一のセリフ体 */
  --font-mincho-title: "Noto Serif JP", "Hiragino Mincho ProN", "Times New Roman", serif;
  --max-width: 1200px;
  --section-padding: 100px;
  --header-height: 110px;
  --breakpoint-sp: 900px;
}

/* ----- Reset / Base ----- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--color-text);
  line-height: 1.7;
  background-color: var(--color-white);
  overflow-x: hidden;
}

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

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

/* ----- ページトップへ戻る ----- */
.p-page-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 50%;
  background: rgba(13, 27, 42, 0.92);
  cursor: pointer;
  z-index: 1201;
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.p-page-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.p-page-top:hover {
  transform: translateY(-1px);
  filter: brightness(1.06);
}

.p-page-top__icon {
  width: 14px;
  height: 14px;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  transform: rotate(45deg);
  margin-top: 4px;
}

@media (max-width: 900px) {
  .p-page-top {
    right: 12px;
    bottom: 12px;
    width: 44px;
    height: 44px;
  }
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* ----- Layout ----- */
.l-container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.l-section {
  padding-top: 100px;
  padding-bottom: 100px;
}

.l-section__title {
  margin: 0 0 2rem;
  font-family: var(--font-mincho-title);
  font-size: 60px;
  font-weight: 700;
  line-height: 1.12;
  text-align: center;
  color: var(--color-navy);
  letter-spacing: 0.02em;
}

/* ----- セクションタイトル共通コンポーネント（PRODUCT / OUR TECHNOLOGY / NEWS） ----- */
.c-section-head {
  text-align: center;
  margin-bottom: 3rem;
}

.c-section-head__title {
  margin: 0 0 0.25em;
  font-family: var(--font-mincho-title);
  font-size: 72px;
  font-weight: 700;
  font-synthesis: none;
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--color-navy);
}

.c-section-head__subtitle {
  margin: 0;
  font-family: var(--font-mincho-title);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-text);
}

/* セクション別の色指定（共通コンポーネント利用時） */
.p-product .c-section-head__title {
  color: var(--color-gold);
}

.p-product .c-section-head__subtitle {
  color: var(--color-text-inverse);
}

.p-technology--light .c-section-head__title {
  color: var(--color-gold);
}

.p-technology--light .c-section-head__subtitle {
  color: var(--color-text);
}

.p-news--light .c-section-head__title {
  color: var(--color-gold);
}

.p-news--light .c-section-head__subtitle {
  color: var(--color-text);
}

/* ----- Header（一体型・白背景・幅100%） ----- */
.p-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 110px;
  z-index: 1000;
  background-color: #ffffff;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
  transition: height 0.3s ease, box-shadow 0.3s ease;
}

/* スクロール時：縮小状態 */
.p-header.is-shrunk {
  height: 60px;
}

.p-header.is-shrunk .p-header__tagline {
  opacity: 0;
  height: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
  line-height: 0;
  transition: opacity 0.25s ease, height 0.25s ease, padding 0.25s ease;
}

.p-header .p-header__tagline {
  transition: opacity 0.25s ease, height 0.25s ease, padding 0.25s ease;
}

.p-header.is-shrunk .p-header__row {
  padding-top: 5px;
  padding-bottom: 0;
  transition: padding 0.25s ease;
}

.p-header .p-header__row {
  transition: padding 0.25s ease;
}

.p-header.is-shrunk .p-header__logo-img {
  height: 36px;
  transition: height 0.25s ease;
}

.p-header .p-header__logo-img {
  transition: height 0.25s ease;
}

.p-header__drawer-backdrop {
  display: none;
}

.p-header__inner {
  width: 100%;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}

/* 上部小テキスト（ヘッダー内・白背景・分離しない） */
.p-header__tagline {
  margin: 0;
  padding-top: 10px;
  padding-bottom: 2px;
  font-size: 12px;
  color: #333;
  font-weight: 400;
  background: transparent;
}

/* 横並び：ロゴ｜ナビ｜お問い合わせ */
.p-header__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 12px;
  padding-top: 4px;
}

.p-header__inner .p-header__logo {
  flex-shrink: 0;
}

.p-header__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.p-header__logo-img {
  display: block;
  height: 50px;
  width: auto;
  flex-shrink: 0;
}

.p-header__logo-link {
  display: none;
}

.p-header__logo-link:hover {
  color: #222;
}

.p-header__nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.p-header__nav-list {
  display: flex;
  align-items: center;
  gap: 40px;
}

.p-header__nav-item {
  margin: 0;
}

.p-header__nav-item--drawer-only {
  display: none;
}

.p-header__nav-link {
  display: block;
  padding: 0.25rem 0;
  font-size: 14px;
  color: #222;
  transition: color 0.2s;
}

.p-header__nav-link:hover {
  color: #c9a227;
}

.p-header__nav-link--cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: 0;
  padding: 12px 24px;
  background-color: #c9a227;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  border-radius: 4px;
  transition: background-color 0.2s;
}

.p-header__nav-link--cta:hover {
  background-color: #b38f1f;
  color: #fff;
}

.p-header__nav-link--cta .p-header__cta-icon {
  width: 18px;
  height: auto;
  flex-shrink: 0;
}

/* 製品案内：カテゴリプルダウン（PC） */
@media (min-width: 1025px) {
  .p-header__nav-item--dropdown {
    position: relative;
  }

  .p-header__nav-link--product-root {
    cursor: default;
  }

  .p-header__nav-link--product-root:hover {
    color: #c9a227;
  }

  .p-header__dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1001;
    min-width: 240px;
    margin: 0;
    padding: 4px 0 0;
    list-style: none;
    background-color: #fff;
    border-radius: 4px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, visibility 0.2s ease;
  }

  .p-header__nav-item--dropdown:hover .p-header__dropdown,
  .p-header__nav-item--dropdown:focus-within .p-header__dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .p-header__dropdown-item {
    margin: 0;
  }

  .p-header__dropdown-link {
    display: block;
    padding: 0.55rem 1rem;
    font-size: 14px;
    color: #222;
    text-decoration: none;
    background-color: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: color 0.2s ease, background-color 0.2s ease;
  }

  .p-header__dropdown-item:last-child .p-header__dropdown-link {
    border-bottom: none;
  }

  .p-header__dropdown-link:hover {
    color: #c9a227;
    background-color: #fafafa;
  }
}

/* ハンバーガー（SP用・初期非表示） */
.p-header__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 40px;
  height: 40px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
  color: #222;
}

.p-header__hamburger-bar {
  display: block;
  width: 100%;
  height: 2px;
  background-color: currentColor;
  transition: transform 0.3s, opacity 0.3s;
}

.p-header__hamburger.is-open .p-header__hamburger-bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.p-header__hamburger.is-open .p-header__hamburger-bar:nth-child(2) {
  opacity: 0;
}

.p-header__hamburger.is-open .p-header__hamburger-bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ----- Main (body直下のmain用) ----- */
.p-main {
  padding-top: var(--header-height);
  transition: padding-top 0.3s ease;
}

body.is-header-shrunk .p-main {
  padding-top: 60px;
}

/* ----- FV (First View) ----- */
.p-fv {
  position: relative;
  min-height: 89vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-navy-dark);
  color: var(--color-text-inverse);
  text-align: center;
}

.p-fv__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.p-fv::before {
  content: "";
  position: absolute;
  inset: 0;
  /* background: rgba(13, 27, 42, 0.6); */
  z-index: 1;
  pointer-events: none;
}

.p-fv__filter {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background-image: url("../images/top/pc/filter.svg");
  background-repeat: repeat;
  background-position: 0 0;
}

.p-fv__mv-txt {
  position: absolute;
  z-index: 3;
  left: max(1.5rem, calc(50% - 600px));
  top: 50%;
  transform: translateY(-50%);
  width: min(678px, calc(100% - 3rem));
  height: auto;
  pointer-events: none;
}

.p-fv__inner {
  position: relative;
  z-index: 4;
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

.p-fv__lead {
  font-size: 32px;
  margin: 0;
}

.p-fv__title {
  margin: 0;
  font-weight: 700;
  line-height: 1.5;
  color: var(--color-text-inverse);
  display: flex;
  flex-direction: column;
}

.p-fv__title-main {
  display: block;
  font-size: 60px;
  letter-spacing: 0.02em;
}
.p-fv__title-main span {
  font-size: 42px;
}

.p-fv__title-sub {
  display: block;
  font-size: 40px;
  font-weight: 600;
}

/* ----- 実績数値エリア（4カラム・カンプ完全準拠） ----- */
.p-stats {
  font-family: var(--font-mincho-title);
  font-synthesis: none;
  background-color: #f5f5f5;
  background-image: url("../images/common/tc_img.webp");
  background-repeat: repeat;
  background-position: center top;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.p-stats__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 0;
  list-style: none;
}

.p-stats__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 0.5rem;
  border-left: 1px solid rgba(0, 0, 0, 0.08);
}

.p-stats__item:first-child {
  border-left: none;
}

.p-stats__icon {
  display: block;
  margin-bottom: 0.5rem;
  line-height: 0;
  min-height: 40px;
}

.p-stats__icon img {
  width: 40px;
  height: 40px;
  display: block;
  margin: 0 auto;
}

.p-stats__icon--product img {
  width: 35px;
  height: auto;
}

/* 日本語と数字のベースライン：行に基準 font-size を置き数字のみ em で拡大＋ flex baseline で揃える */
.p-stats__number-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0 0.15em;
  margin-bottom: 0.25rem;
  width: 100%;
  font-size: 20px;
  line-height: 1;
}

.p-stats__lead {
  font-family: var(--font-mincho-title);
  font-size: 1em;
  font-weight: 700;
  line-height: 1;
}

.p-stats__number {
  font-family: var(--font-mincho-title);
  font-size: 3em;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #c9a227;
  line-height: 1;
  transform: translateY(0.06em);
}

.p-stats__unit {
  font-family: var(--font-mincho-title);
  font-size: 1em;
  font-weight: 700;
  line-height: 1;
}

.p-stats__label {
  margin: 0;
  font-family: var(--font-mincho-title);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

/* ----- PRODUCTセクション（1600px・4カラム基準） ----- */
.p-product {
  background-color: var(--color-navy);
  color: var(--color-text-inverse);
}

.p-product__tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 2rem;
}

.p-product__tab {
  display: inline-block;
  padding: 0.6rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  border: none;
  transition: background-color 0.2s, color 0.2s;
}

.p-product__tab.is-current {
  background-color: var(--color-light-blue);
  color: var(--color-text-inverse);
}

.p-product__tab:not(.is-current) {
  background-color: var(--color-white);
  color: var(--color-navy);
}

.p-product__tab:not(.is-current):hover {
  background-color: var(--color-gray-100);
}

.p-product__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 0;
}

/* 製品カード（4カラム等幅・弱い立体感） */
.p-product-card {
  background-color: var(--color-white);
  color: #222;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
  transition: box-shadow 0.5s ease;
}

.p-product-card:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.16);
  opacity: 0.7;
}

.p-product-card__link {
  display: block;
  color: inherit;
  padding: 15px;
}

.p-product-card__thumb-wrap {
  display: block;
  overflow: hidden;
}

.p-product-card__thumb {
  display: block;
  width: 100%;
  background-color: var(--color-gray-200);
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.5s ease;
}

.p-product-card:hover .p-product-card__thumb {
  transform: scale(1.1);
  filter: brightness(1.04);
}

.p-product-card__body {
  padding: 0.75rem 1rem 0;
}

.p-product-card__title {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
  text-align: center;
  line-height: 1.4;
}

/* ----- OUR TECHNOLOGY ----- */
.p-technology--light {
  background-color: #f5f5f5;
  background-image: url("../images/common/tc_img.webp");
  background-repeat: repeat;
  background-position: center top;
}

.p-technology .l-container {
  max-width: 1320px;
}

.p-technology__visuals {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.p-technology__img-wrap {
  overflow: hidden;
  background-color: var(--color-gray-200);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.p-technology__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* テキストエリア：中央寄せ・縦並び・余白80px以上 */
.p-technology__link-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 80px;
}

.p-technology__link {
  display: inline-flex;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background-color: var(--color-navy);
  color: var(--color-text-inverse);
  font-weight: 600;
  border-radius: 4px;
  transition: background-color 0.2s;
}

.p-technology__link:hover {
  color: var(--color-text-inverse);
}

/* TOP用：テキスト＋矢印画像（中央・縦並び） */
.p-technology__link--text {
  background: none;
  color: var(--color-text);
  padding: 0.5rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: color 0.3s ease, background-color 0.3s ease, transform 0.3s ease;
  border-radius: 6px;
}

.p-technology__link--text:hover {
  color: #c9a227;
  transform: scale(1.02);
}

.p-technology__link-line1 {
  letter-spacing: 0.12em;
  line-height: 1;
  font-size: 36px;
  font-weight: 700;
}

.p-technology__link-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
}

.p-technology__link-line2 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.5;
}

.p-technology__link-arrow-img {
  display: block;
  width: 50px;
  flex-shrink: 0;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.p-technology__link--text:hover .p-technology__link-arrow-img {
  transform: translateX(12px);
  filter: invert(66%) sepia(46%) saturate(476%) hue-rotate(7deg) brightness(92%) contrast(92%);
}

.p-technology__line {
  display: block;
  width: 140%;
  max-width: 430px;
  height: 1px;
  background-color: #999;
  margin-top: 2rem;
  margin-bottom: 2rem;
  transition: background-color 0.3s ease, height 0.3s ease;
}

.p-technology__link-wrap:hover .p-technology__line {
  background-color: #c9a227;
  height: 2px;
}

/* ----- NEWSセクション（横ライン区切り・日付・カテゴリ・タイトル横並び） ----- */
.p-news--light {
  background-color: var(--color-white);
  background-image: none;
}

.p-news .l-container {
  max-width: 1200px;
}

.p-news .c-section-head {
  margin-bottom: 3rem;
}

.p-news__list {
  margin: 0;
  list-style: none;
  border-top: 1px solid #cfcfcf;
}

.p-news__item {
  border-bottom: 1px solid #cfcfcf;
}

.p-news__link {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 22px 20px;
  color: var(--color-text);
  transition: background-color 0.2s ease, color 0.2s ease;
}

.p-news__link:hover {
  background-color: #f1f1f1;
}

.p-news__link:hover .p-news__title {
  color: #222;
}

.p-news__date {
  flex-shrink: 0;
  font-size: 0.8125rem;
  color: #888;
}

.p-news__category {
  flex-shrink: 0;
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
  background-color: #c9a227;
  color: #fff;
  border-radius: 0;
}

.p-news__title {
  margin: 0;
  flex: 1;
  min-width: 0;
  font-size: 1.0625rem;
  font-weight: 500;
  line-height: 1.6;
  transition: color 0.2s ease;
}

.p-news__footer {
  margin-top: 3rem;
  text-align: center;
}

.p-news__more {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 320px;
  padding: 18px 25px;
  background-color: #fff;
  color: #222;
  font-weight: 600;
  border: 1px solid #222;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.p-news__more:hover {
  background-color: var(--color-navy);
  color: #fff;
}

.p-news__more-arrow {
  display: block;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  transition: filter 0.2s ease, transform 0.2s ease;
}

.p-news__more:hover .p-news__more-arrow {
  filter: brightness(0) invert(1);
  transform: translateX(6px);
}

/* ----- CTAセクション（パララックス・白文字・白枠ボタン） ----- */
.cta-section {
  position: relative;
  padding: 50px 0;
  text-align: center;
  color: #fff;
  background-color: #0d1b2a;
  background-image: url("../images/common/pc/cta_bk.webp");
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}

.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.cta-section__inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
}

.cta-section__lead {
  margin: 0 0 2.5rem;
  font-size: 18px;
  line-height: 1.7;
  color: #fff;
}

.cta-section__body {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 6rem;
}

.cta-section__col-left {
  text-align: left;
}

.cta-section__col-right {
  display: flex;
  justify-content: center;
}

.cta-section__tel {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0 0 0.5rem;
}

.cta-section__tel-number {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  transition: opacity 0.2s;
}

.cta-section__tel-number:hover {
  opacity: 0.9;
}

.cta-section__tel-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-section__tel-icon img {
  width: 28px;
  height: 28px;
  display: block;
  filter: brightness(0) invert(1);
}

.cta-section__time {
  margin: 0;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.9);
}

.cta-section__buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 400px;
  max-width: 100%;
  padding: 18px 25px;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background: transparent;
  border: 1px solid #fff;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.cta-btn:hover {
  background: #fff;
  color: #000;
}

.cta-btn__arrow {
  display: block;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  transition: filter 0.3s ease, transform 0.3s ease;
}

.cta-btn:hover .cta-btn__arrow {
  filter: brightness(0);
  transform: translateX(6px);
}

/* 下層ページ用 CTA（従来の p-cta を維持） */
.p-cta {
  position: relative;
  padding: var(--section-padding) 20px;
  background: var(--color-navy) url("../images/top/pc/mv.webp") center/cover no-repeat;
  color: var(--color-text-inverse);
  text-align: center;
}

.p-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(13, 27, 42, 0.85);
}

.p-cta__inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
}

.p-cta__tel {
  margin: 0 0 0.5rem;
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
}

.p-cta__tel a {
  color: var(--color-text-inverse);
}

.p-cta__lead {
  margin: 0 0 2rem;
  font-size: 0.875rem;
  color: var(--color-text-inverse);
  opacity: 0.9;
}

.p-cta__buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.p-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-width: 200px;
  padding: 1rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 4px;
  transition: background-color 0.2s, color 0.2s;
}

.p-cta__btn--primary {
  background-color: var(--color-gold);
  color: var(--color-navy);
  border: none;
}

.p-cta__btn--primary:hover {
  background-color: var(--color-gold-light);
}

.p-cta__btn--secondary {
  background-color: transparent;
  color: var(--color-text-inverse);
  border: 2px solid var(--color-text-inverse);
}

.p-cta__btn--secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* ----- Footer（左：会社情報／右：ナビ＋製品案内＋お問い合わせ等） ----- */
.p-footer {
  background: linear-gradient(45deg, #0d1b2a 27.333333%, #000000 100%);
  color: #fff;
  padding: 100px 0 20px;
}

.p-footer__inner {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 20px;
}

.p-footer__main {
  display: flex;
  margin-bottom: 0;
  padding-bottom: 4rem;
  align-items: start;
  justify-content: space-between;
}

.p-footer__brand-area {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.p-footer__brand {
  font-weight: 700;
  font-size: 40px;
  margin: 0 0 1.25rem;
  color: #fff;
  line-height: 1.45;
  letter-spacing: 0.02em;
}

.p-footer__logo-link {
  display: inline-block;
  margin: 0 0 1.25rem;
  transition: opacity 0.25s ease;
}

.p-footer__logo-link:hover {
  opacity: 0.8;
}

.p-footer__logo-img {
  display: block;
  width: min(100%, 380px);
  height: auto;
}

.p-footer__address {
  margin:  0 0 5px 10px;
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.92);
}

.p-footer__contact {
  margin-left: 10px;
  display: grid;
  grid-template-columns: auto auto;
  gap: 0 2rem;
  align-items: baseline;
}

.p-footer__tel,
.p-footer__fax {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

.p-footer__nav-area {
  max-width: 880px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
}

.p-footer__nav-block {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px 45px;
}

.p-footer__nav-title {
  display: inline-block;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  padding-bottom: 8px;
  transition: color 0.25s ease, border-color 0.25s ease;
}

.p-footer__nav-title:hover {
  color: #c9a227;
  border-bottom-color: #c9a227;
}

.p-footer__nav-title--static {
  margin: 0;
  cursor: default;
}

.p-footer__nav-title--static:hover {
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.6);
}

.p-footer__nav-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px 40px;
}

.p-footer__nav-link {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.85;
  text-decoration: none;
  border-bottom: none;
  padding-bottom: 0;
  transition: color 0.25s ease;
}

.p-footer__nav-link:hover {
  color: #c9a227;
}


.p-footer__copy-wrap {
  padding-top: 2.5rem;
  margin-top: 0;
}

.p-footer__copy {
  margin: 0;
  padding-top: 1.5rem;
  font-size: 0.625rem;
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
  letter-spacing: 0.04em;
}

/* ----- 下層共通：KV ----- */
.p-kv {
  position: relative;
  min-height: 500px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url("../images/common/tc_img.webp") center / cover no-repeat;
  color: var(--color-text-inverse);
  text-align: center;
  overflow: hidden;
}

.p-kv::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
}

.p-kv__title {
  position: relative;
  z-index: 1;
  margin: 0;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
}

.p-kv__title-en {
  display: block;
  font-family: var(--font-mincho-title);
  font-size: 80px;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0.04em;
}

.p-kv__title-ja {
  display: block;
  margin-top: 0.35em;
  font-family: var(--font-mincho-title);
  font-size: 36px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.04em;
}

/* ----- 下層：代表メッセージ・2カラム等 ----- */
.p-content {
  padding: var(--section-padding) 0;
}

.p-content__lead {
  margin: 0 0 2rem;
  font-size: 1rem;
  line-height: 1.9;
}

.p-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.p-two-col__body {
  min-width: 0;
}

/* ----- テーブル（会社概要等） ----- */
.p-table-wrap {
  overflow-x: auto;
  margin: 2rem 0;
}

.p-table {
  width: 100%;
  min-width: 320px;
  border-collapse: collapse;
}

.p-table th,
.p-table td {
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-gray-200);
  text-align: left;
  vertical-align: middle;
}

.p-table th {
  background-color: var(--color-gray-100);
  font-weight: 600;
  width: 30%;
}

/* ----- 沿革タイムライン ----- */
.p-history {
  margin: 2rem 0;
}

.p-history__item {
  position: relative;
  padding-left: 2rem;
  padding-bottom: 2rem;
}

.p-history__item::before {
  content: "";
  position: absolute;
  left: 0.4rem;
  top: 0.5rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--color-gold);
}

.p-history__item::after {
  content: "";
  position: absolute;
  left: 0.85rem;
  top: 1.25rem;
  bottom: 0;
  width: 2px;
  background-color: var(--color-gray-200);
}

.p-history__item:last-child::after {
  display: none;
}

.p-history__year {
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 0.25rem;
}

.p-history__text {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.7;
}

/* ----- 会社案内ページ専用 ----- */
.page-company {
  background-color: #f4f4f2;
}

.page-company .p-kv {
  background-image: url("../images/company/pc/kv_company.webp");
}

.page-company .p-kv__title {
  margin: 0;
}

.page-company .p-content {
  padding: 94px 0;
}

.page-company .l-section__title {
  margin-bottom: 2.75rem;
  color: #2f2f2f;
}

.page-company .p-company-section__eyebrow {
  margin-bottom: 0.45rem;
}

.page-company .p-company-message {
  background-color: #f5f4f1;
  background-image: url("../images/common/tc_img.webp");
  background-repeat: repeat;
  background-position: center top;
}

.page-company .p-company-message__visual {
  margin: 0 auto 2.5rem;
  width: min(100%, 900px);
}

.page-company .p-company-message__photo {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background-size: cover;
  background-position: center;
  background-image: url("/images/company/pc/kv_company.webp");
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.page-company .p-company-message__body {
  margin: 0 auto;
  text-align: center;
}

.page-company .p-company-message__title {
  margin: 0 0 1.35rem;
  font-family: var(--font-mincho-title);
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 700;
  color: #2a2a2a;
  letter-spacing: 0.08em;
}

.page-company .p-content__lead {
  margin: 0;
  font-size: 24px;
  color: #4a4a4a;
  line-height: 2;
}

.page-company .p-company-message__accent {
  font-family: var(--font-mincho-title);
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  color: #b89a4d;
}

.page-company .p-company-message__sign {
  margin: 2.8rem 0 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: fit-content;
  margin-left: auto;
  gap: 0.2rem;
}

.page-company .p-company-message__sign-role {
  font-family: var(--font-mincho-title);
  font-size: 24px;
  font-weight: 700;
  color: #2f2f2f;
}

.page-company .p-company-message__sign-name {
  font-family: var(--font-mincho-title);
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.08em;
  color: #353535;
  border-bottom: 2px solid #b89a4d;
  padding-bottom: 0.18rem;
}

.page-company .p-company-history {
  background-color: #f5f4f1;
  background-image: url("../images/common/tc_img.webp");
  background-repeat: repeat;
  background-position: center top;
}

.page-company .p-history {
  max-width: 1000px;
  margin: 0 auto;
}

.page-company .p-history__item {
  position: relative;
  display: flex;
  gap: 5rem;
  padding: 25px 10px 20px;
  border-bottom: 1px solid #d8d8d8;
  align-items: center;
}

.page-company .p-history__item::before {
  display: none;
}

.page-company .p-history__item::after {
  content: "";
  position: absolute;
  left: 90px;
  top: auto;
  bottom: -6px;
  width: 10px;
  height: 10px;
  background-color: #b89a4d;
  transform: translateX(-50%) rotate(45deg);
}

.page-company .p-history__date {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.page-company .p-history__era {
  margin: 0;
  font-family: var(--font-mincho-title);
  font-size: 24px;
  line-height: 1;
  color: #2f2f2f;
  padding-bottom: 5px;
}

.page-company .p-history__era-num {
  color: #b89a4d;
}

.page-company .p-history__year {
  margin: 0;
  font-family: var(--font-mincho-title);
  font-size: 80px;
  line-height: 1;
  color: #b89a4d;
}

.page-company .p-history__text {
  font-size: 20px;
  line-height: 1.9;
}

.page-company .p-company-overview {
  background-color: #ffffff;
  background-image: none;
}

.page-company .p-company-overview .l-container {
  max-width: 1000px;
}

.page-company .p-table-wrap {
  margin: 0;
}

.page-company .p-table {
  border: 1px solid #c9c9c9;
  background-color: #fff;
}

.page-company .p-table th,
.page-company .p-table td {
  border-color: #c9c9c9;
  padding: 20px;
  font-size: 16px;
}

.page-company .p-table th {
  width: 23%;
  background-color: #10233a;
  color: #fff;
  font-weight: 500;
}

.page-company .p-company-overview__extra {
  margin-top: 1.5rem;
}

.page-company .p-company-overview__factory {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.page-company .p-company-overview__factory-item {
  background-color: #fff;
  border: 1px solid #d4d4d4;
  padding: 0.65rem;
}

.page-company .p-company-overview__factory-item h3 {
  margin: 0.75rem 0 0.3rem;
  font-size: 1rem;
  color: #0f2238;
}

.page-company .p-company-overview__factory-item p {
  margin: 0;
  font-size: 0.84rem;
  color: #585858;
  line-height: 1.6;
}

.page-company .p-company-overview__factory-photo {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.page-company .p-company-overview__map {
  margin-top: 1rem;
  background-color: #fff;
  border: 1px solid #d4d4d4;
  padding: 0.65rem;
  font-size: 0;
}

.page-company .p-company-overview__map iframe {
  width: 100%;
  height: 500px;
  border: 0;
}

/* ----- 設備グリッド ----- */
.p-equipment__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1rem;
  margin: 0;
}

.p-equipment__item {
  text-align: center;
  padding: 1rem;
  background-color: var(--color-gray-100);
  border-radius: 8px;
}

.p-equipment__name {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 600;
}

/* ----- 技術・設備ページ専用 ----- */
.page-technology .p-kv {
  background-image: url("../images/technology/pc/kv_technology.webp");
}

.page-technology .p-kv__title {
  margin: 0;
}

.page-technology .l-section__title {
  margin-bottom: 2.75rem;
}

.page-technology .p-content {
  padding: 108px 0;
}

.page-technology .p-content__lead {
  font-size: 1rem;
  line-height: 2;
}

.page-technology .p-two-col {
  align-items: start;
  gap: 3rem;
}

.page-technology .p-content__link-wrap {
  margin-top: 2rem;
}

.page-technology .p-tech-copy {
  margin: 0;
}

.page-technology .p-tech-section--texture-light {
  background-color: #f6f6f4;
  background-image: url("../images/common/tc_img.webp");
  background-repeat: repeat;
  background-position: center top;
}

.page-technology .p-tech-strength .l-container {
  max-width: 1680px;
}

.page-technology .p-tech-strength__eyebrow {
  position: relative;
  margin: 0 0 1rem;
  text-align: center;
  font-size: 21px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--color-gold);
}

.page-technology .p-tech-strength__eyebrow::before,
.page-technology .p-tech-strength__eyebrow::after {
  content: "";
  display: inline-block;
  width: 84px;
  height: 1px;
  vertical-align: middle;
  margin: 0 14px;
}

.page-technology .p-two-col--strength {
  grid-template-columns: 5fr 7fr;
  gap: 3.5rem;
  align-items: center;
}

.page-technology .p-two-col--strength .p-two-col__body {
  align-self: center;
}

.page-technology .p-tech-color {
  padding-top: 0;
  padding-bottom: 0;
  background-color: #ffffff;
}

.page-technology .p-tech-color .l-container {
  max-width: none;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.page-technology .p-tech-color__head {
  text-align: center;
  padding: 86px 24px 52px;
}

.page-technology .p-tech-color__eyebrow {
  margin: 0 0 0.8rem;
  font-size: 21px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--color-gold);
}

.page-technology .p-tech-color__head .l-section__title {
  margin-bottom: 1.5rem;
}

.page-technology .p-tech-color__summary {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.85;
}

.page-technology .p-tech-color__stage {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background-color: #0f1f35;
}

.page-technology .p-tech-color__photo {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 17, 32, 0.2), rgba(8, 17, 32, 0.45)),
    url("../images/technology/pc/tech-color.webp") center / cover no-repeat;
  background-attachment: fixed;
}

/* PC：SP用画像は非表示（900px以下で表示切替） */
.page-technology .p-tech-color__img-sp {
  display: none;
  margin: 0;
}

.page-technology .p-tech-color__panel {
  position: absolute;
  right: 10%;
  bottom: 150px;
  width: min(480px, calc(100% - 92px));
  background-color: #efefef;
  border: 1px solid #c9c9c9;
  padding: 1.5rem;
  box-sizing: content-box;
}

.page-technology .p-tech-color__metrics {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin-bottom: 1rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid #cfcfcf;
}

.page-technology .p-tech-color__metrics::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background-color: #cdd2d9;
}

.page-technology .p-tech-color__metric {
  padding: 0 0.6rem;
}

.page-technology .p-tech-color__metric-label {
  margin: 0 0 0.25rem;
  font-size: 0.8rem;
  font-weight: 700;
  position: relative;
  padding-left: 1rem;
}

.page-technology .p-tech-color__metric-label::before {
  content: "";
  position: absolute;
  left: 0.15rem;
  top: 0.38rem;
  width: 7px;
  height: 7px;
  background-color: #c9a227;
  transform: rotate(45deg);
}

.page-technology .p-tech-color__metric-value {
  margin: 0 0 0.55rem;
  font-size: clamp(2rem, 2.5vw, 3rem);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: 0.01em;
  font-family: var(--font-mincho-title);
  white-space: nowrap;
}

.page-technology .p-tech-color__metric:nth-child(2) .p-tech-color__metric-value {
  font-size: clamp(2rem, 2.5vw, 3rem);
}

.page-technology .p-tech-color__metric-main {
  font-size: 1em;
  line-height: 1;
}

.page-technology .p-tech-color__metric-sub {
  font-size: 0.74em;
  margin-left: 0.08em;
}

.page-technology .p-tech-color__chips {
  display: flex;
  gap: 0.28rem;
  margin: 0;
}

.page-technology .p-tech-color__chips span {
  display: block;
  width: 24px;
  height: 14px;
}

.page-technology .p-tech-color__chips--colors span,
.page-technology .p-tech-color__chips--hardness span {
  transform: skewX(-18deg);
  transform-origin: center;
}

.page-technology .p-tech-color__chips--colors span:nth-child(1) { background: #2d7ec9; }
.page-technology .p-tech-color__chips--colors span:nth-child(2) { background: #0f5c8f; }
.page-technology .p-tech-color__chips--colors span:nth-child(3) { background: #1f8b52; }
.page-technology .p-tech-color__chips--colors span:nth-child(4) { background: #c8a32c; }
.page-technology .p-tech-color__chips--colors span:nth-child(5) { background: #d17f1c; }
.page-technology .p-tech-color__chips--colors span:nth-child(6) { background: #c73c52; }

.page-technology .p-tech-color__chips--hardness span:nth-child(1) { background: #9ea3a8; }
.page-technology .p-tech-color__chips--hardness span:nth-child(2) { background: #b6aa8b; }
.page-technology .p-tech-color__chips--hardness span:nth-child(3) { background: #c2a96b; }
.page-technology .p-tech-color__chips--hardness span:nth-child(4) { background: #b7852d; }
.page-technology .p-tech-color__chips--hardness span:nth-child(5) { background: #8a6326; }
.page-technology .p-tech-color__chips--hardness span:nth-child(6) { background: #4b3313; }

.page-technology .p-tech-color__copy {
  margin: 0;
  line-height: 1.95;
  letter-spacing: 0.01em;
}

.page-technology .p-tech-color__button-wrap {
  margin-top: 1rem;
  margin-bottom: 0;
}

.page-technology .p-tech-color__cta {
  padding: 0.8rem 1.25rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  background: transparent;
  border: 1px solid #8d8d8d;
  color: #1a1a1a;
  justify-content: flex-start;
  gap: 0.6em;
  white-space: nowrap;
}

.page-technology .p-tech-color__cta::after {
  content: "→";
  line-height: 1;
}

.page-technology .p-tech-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
}

.page-technology .p-tech-gallery__item {
  aspect-ratio: 1 / 1;
  border: 1px solid #d9dee5;
  background-color: #eef1f4;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(13, 27, 42, 0.18);
}

.page-technology .p-tech-gallery__item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-technology .p-two-col--urethane {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
}

.page-technology .p-image-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d9dee5;
  background-color: #e7ecf1;
  background-image: url("../images/top/pc/mv.webp");
  background-position: center;
  background-size: cover;
  color: #ffffff;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45);
}

.page-technology .p-image-fallback--wide {
  aspect-ratio: 16 / 9;
  min-height: 280px;
}

.page-technology .p-technology__cta-btn {
  min-width: 260px;
}

.page-technology .p-technology__link--outline {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5em;
  padding: 0.75rem 1.1rem;
  background: rgba(255, 255, 255, 0.72);
  color: #121212;
  border: 1px solid #9ea8b5;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.page-technology .p-tech-strength .p-technology__link--outline::after {
  content: "→";
  line-height: 1;
}

.page-technology .p-tech-strength .p-technology__link--outline,
.page-technology .p-tech-color__cta {
  min-inline-size: 14em;
}

.page-technology .p-technology-lot {
  background-color: #2f3043;
  background-image: none;
  color: var(--color-text-inverse);
  padding-top: 110px;
  padding-bottom: 110px;
}

.page-technology .p-technology-lot .l-container {
  max-width: 1200px;
}

.page-technology .p-technology-lot__eyebrow {
  position: relative;
  width: fit-content;
  margin: 0 auto 1.15rem;
  color: var(--color-gold);
  font-size: 21px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
}

.page-technology .p-technology-lot__eyebrow::before,
.page-technology .p-technology-lot__eyebrow::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 72px;
  height: 1px;
}

.page-technology .p-technology-lot__eyebrow::before {
  right: calc(100% + 14px);
}

.page-technology .p-technology-lot__eyebrow::after {
  left: calc(100% + 14px);
}

.page-technology .p-tech-equipment__eyebrow {
  position: relative;
  width: fit-content;
  margin: 0 auto 1.15rem;
  color: var(--color-gold);
  font-family: var(--font-mincho-title);
  font-size: 21px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
}

.page-technology .p-tech-equipment__eyebrow::before,
.page-technology .p-tech-equipment__eyebrow::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 72px;
  height: 1px;
}

.page-technology .p-tech-equipment__eyebrow::before {
  right: calc(100% + 14px);
}

.page-technology .p-tech-equipment__eyebrow::after {
  left: calc(100% + 14px);
}

/* 下層ページ共通：見出し上の英字 */
.page-technology .p-tech-strength__eyebrow,
.page-technology .p-tech-color__eyebrow,
.page-technology .p-technology-lot__eyebrow,
.page-technology .p-tech-equipment__eyebrow,
.page-company .p-company-section__eyebrow,
.p-product-catalog__eyebrow {
  position: relative;
  width: fit-content;
  margin: 0 auto 1.15rem;
  text-align: center;
  font-family: var(--font-mincho-title);
  font-size: 21px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--color-gold);
  line-height: 1.2;
  text-transform: uppercase;
}

.page-technology .p-tech-strength__eyebrow::before,
.page-technology .p-tech-strength__eyebrow::after,
.page-technology .p-tech-color__eyebrow::before,
.page-technology .p-tech-color__eyebrow::after,
.page-technology .p-technology-lot__eyebrow::before,
.page-technology .p-technology-lot__eyebrow::after,
.page-technology .p-tech-equipment__eyebrow::before,
.page-technology .p-tech-equipment__eyebrow::after,
.page-company .p-company-section__eyebrow::before,
.page-company .p-company-section__eyebrow::after,
.p-product-catalog__eyebrow::before,
.p-product-catalog__eyebrow::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 72px;
  height: 12px;
  margin: 0;
  transform: translateY(-50%);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.page-technology .p-tech-strength__eyebrow::before,
.page-technology .p-tech-color__eyebrow::before,
.page-technology .p-technology-lot__eyebrow::before,
.page-technology .p-tech-equipment__eyebrow::before,
.page-company .p-company-section__eyebrow::before,
.p-product-catalog__eyebrow::before {
  right: calc(100% + 14px);
  background-image: url("../images/common/dec_l.svg");
}

.page-technology .p-tech-strength__eyebrow::after,
.page-technology .p-tech-color__eyebrow::after,
.page-technology .p-technology-lot__eyebrow::after,
.page-technology .p-tech-equipment__eyebrow::after,
.page-company .p-company-section__eyebrow::after,
.p-product-catalog__eyebrow::after {
  left: calc(100% + 14px);
  background-image: url("../images/common/dec_r.svg");
}

.page-technology .p-technology-lot .l-section__title {
  color: var(--color-text-inverse);
  margin-bottom: 3.5rem;
  text-align: center;
}

.page-technology .p-lot-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  margin: 0;
}

.page-technology .p-lot-grid__item {
  border: 1px solid rgba(201, 162, 39, 0.66);
  padding: 1.7rem 1.45rem 1.8rem;
  background-color: transparent;
  text-align: left;
}

.page-technology .p-lot-grid__icon {
  display: block;
  margin: 0 auto 1.05rem;
  width: 44px;
  height: 44px;
  filter: brightness(0) saturate(100%) invert(100%);
}

.page-technology .p-lot-grid__title {
  margin: 0 0 1.35rem;
  padding-bottom: 0.95rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.45;
  text-align: center;
}

.page-technology .p-lot-grid__text {
  margin: 0;
  font-size: 18px;
  line-height: 2;
  color: rgba(255, 255, 255, 0.92);
}

.page-technology .p-equipment__grid--detail {
  display: block;
  max-width: 820px;
  margin: 0 auto;
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 4px;
  overflow: hidden;
}

.page-technology .p-equipment__grid {
  margin: 0 auto;
  padding: 5px 15px;
  list-style: none;
}

.page-technology .p-equipment__item {
  padding: 0;
  background-color: transparent;
  border-bottom: 1px solid #d9dee5;
  border-radius: 0;
  overflow: visible;
  text-align: left;
  box-shadow: none;
}

.page-technology .p-equipment__item:last-child {
  border-bottom: 0;
}

.page-technology .p-equipment__media,
.page-technology .p-equipment__img,
.page-technology .p-equipment__media-placeholder {
  display: none;
}

.page-technology .p-equipment__body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 1.25rem;
}

.page-technology .p-equipment__name {
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 700;
}

.page-technology .p-equipment__count {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: #404854;
  text-align: right;
  white-space: nowrap;
}

.page-technology .p-equipment__item--head .p-equipment__name,
.page-technology .p-equipment__item--head .p-equipment__count {
  font-size: 0.8125rem;
  line-height: 1.4;
  font-weight: 700;
  color: #2f3945;
}

/* ----- カテゴリタブ風（product） ----- */
.p-category-tabs {
  margin-bottom: 2rem;
  border-bottom: 2px solid var(--color-gray-200);
}

.p-category-tabs__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0;
}

.p-category-tabs__link {
  display: block;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  color: var(--color-text);
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: color 0.2s, border-color 0.2s;
}

.p-category-tabs__link:hover,
.p-category-tabs__link.is-current {
  color: var(--color-navy);
  border-bottom-color: var(--color-gold);
}

/* ----- 製品カテゴリページ（デモ） ----- */
.page-product-category .p-kv {
  background-image: url("../images/product/pc/kv_product.webp");
  min-height: 500px;
}

.page-product-category .p-kv::before {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
}

.p-product-kv__title-wrap {
  position: relative;
  z-index: 1;
}

.page-product-category .p-kv__title {
  margin: 0;
  text-align: center;
  color: #fff;
}

.p-product-intro {
  position: relative;
  background:
    linear-gradient(rgba(6, 21, 35, 0.5), rgba(6, 21, 35, 0.74)),
    url("../images/product/pc/bg_product_intro.webp") center / cover no-repeat fixed;
  padding: 100px 0;
  overflow: hidden;
}

.p-product-intro::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      0deg,
      rgba(139, 184, 213, 0.12) 0 1px,
      transparent 1px 86px
    ),
    repeating-linear-gradient(
      90deg,
      rgba(139, 184, 213, 0.12) 0 1px,
      transparent 1px 86px
    );
}

.p-product-intro__inner {
  position: relative;
  z-index: 2;
  width: min(1200px, calc(100% - 3rem));
  margin: 0 auto;
  padding: 3.25rem;
  display: grid;
  grid-template-columns: minmax(560px, 48%) minmax(0, 52%);
  gap: 2.25rem;
  background-color: rgba(0, 0, 0, 0.65);
  box-shadow: 0 12px 28px rgba(5, 11, 19, 0.38);
}

.p-product-intro__media {
  margin: 0;
}

.p-product-intro__media img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.p-product-intro__body {
  display: grid;
  align-content: start;
  gap: 0.9rem;
}

.p-product-intro__category-sub {
  margin: 0;
  font-size: 0.72rem;
  color: #c9d3dc;
  letter-spacing: 0.12em;
}

.p-product-intro__category-title {
  margin: -0.2rem 0 0;
  font-family: var(--font-mincho-title);
  font-size: 48px;
  line-height: 1.25;
  color: #fff;
  letter-spacing: 0.03em;
}

.p-product-intro__summary {
  margin: 0;
  font-size: 18px;
  padding-left: 10px;
  line-height: 1.8;
  color: rgba(241, 247, 252, 0.93);
}

.p-product-intro__specs {
  margin: 20px 0 0;
  padding-left: 10px;
  display: grid;
  gap: 0.3rem;
}

.p-product-intro__spec-item {
  position: relative;
  margin: 0;
  padding: 0.45rem 0 0.6rem 1.8rem;
  font-size: 18px;
  line-height: 1.55;
  color: rgba(245, 248, 251, 0.95);
  border-bottom: 1px solid rgba(196, 211, 223, 0.45);
}

.p-product-intro__spec-item::before {
  content: "";
  position: absolute;
  left: -14px;
  top: -9px;
  width: 50px;
  height: 60px;
  background-image: url("../images/product/pc/icon_check.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.page-product-category .p-content {
  padding: 104px 0 96px;
}

.p-product-catalog {
  background-color: #ececec;
  background-image: url("../images/common/tc_img.webp");
  background-repeat: repeat;
  background-position: center top;
}

.p-content--texture {
  background-color: #f5f5f5;
  background-image: url("../images/common/tc_img.webp");
  background-repeat: repeat;
  background-position: center top;
}

.p-product-catalog .l-container {
  max-width: 1680px;
}

.p-product-other {
  background-color: #fff;
  padding: 72px 0 84px;
}

.p-product-other .l-container {
  max-width: 1680px;
}

.p-product-catalog__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2.4rem;
  text-align: center;
}

.p-product-catalog__eyebrow {
  position: relative;
  width: fit-content;
  margin: 0 auto 0.45rem;
  font-family: var(--font-mincho-title);
  font-size: 21px;
  font-weight: 700;
  line-height: 1.2;
  color: #c9a227;
  letter-spacing: 0.08em;
}

.p-product-catalog__title {
  margin: 0 0 0.55rem;
  font-family: var(--font-mincho-title);
  font-size: 60px;
  font-weight: 700;
  line-height: 1.12;
  color: #222;
}

.p-product-catalog__sub {
  margin: 2rem 0 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  font-family: var(--font-mincho-title);
  font-size: 36px;
  font-weight: 500;
  line-height: 1.25;
  color: #000;
  letter-spacing: 0.04em;
}

.p-product-catalog__sub::before,
.p-product-catalog__sub::after {
  content: "";
  flex: 1;
  border-top: 1px solid #9b9b9b;
}

.p-product-catalog__grid {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.35rem;
}

.p-product-catalog-card {
  padding: 20px;
  border: 1px solid #c8c8c8;
  background-color: #fff;
}

.p-product-catalog-card--wide {
  grid-column: 1 / -1;
}

.p-product-catalog-card__media-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.p-product-catalog-card__cat {
  position: relative;
  margin: 0 0 0.7rem;
  padding-left: 15px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.01em;
  color: #000;
}

.p-product-catalog-card__cat::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 4px;
  height: 30px;
  height: 0.9em;
  background-color: #c9a227;
}

.p-product-catalog-card__media {
  margin: 0.25rem 0 0;
  position: relative;
  background-color: #d5d9dc;
  overflow: hidden;
}

.p-product-catalog-card__media img {
  display: block;
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.5s ease;
}

.p-product-catalog-card__media:hover img,
.p-product-catalog-card__media:focus-within img {
  transform: scale(1.1);
  filter: brightness(1.04);
}

.p-product-catalog-card__media::after {
  content: "";
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 24px;
  height: 24px;
  background: url("../images/product/pc/icon-zoom.svg") center / contain no-repeat;
  pointer-events: none;
}

/* ----- 製品画像モーダル ----- */
.p-image-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: none;
}

.p-image-modal.is-open {
  display: block;
}

.p-image-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
}

.p-image-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(92vw, 890px);
  max-height: 88vh;
  margin: 6vh auto 0;
  padding: 12px;
  overflow-y: auto;
  background: var(--product-card-bg-gradient);
}

.p-image-modal__gallery {
  display: grid;
  gap: 10px;
}

.p-image-modal__figure {
  margin: 0;
}

.p-image-modal__img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.p-image-modal__caption {
  margin: 6px 0 0;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.35;
}

.p-image-modal__body {
  margin-top: 20px;
}

.p-image-modal__title {
  margin: 0;
  color: #fff;
  font-family: var(--font-mincho-title);
  font-size: 2rem;
  line-height: 1.2;
}

.p-image-modal__summary {
  margin: 0.5rem 0 0;
  padding-top: 0.7rem;
  border-top: 1px solid rgba(224, 232, 242, 0.45);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.92rem;
  line-height: 1.75;
}

.p-image-modal__close {
  position: sticky;
  top: 0;
  right: 0;
  display: block;
  margin: 0 0 -44px auto;
  width: 44px;
  height: 44px;
  border: 1px solid #c8c8c8;
  background: #fff;
  color: #111;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  text-align: center;
  z-index: 5;
}

.p-image-modal__close::before {
  content: "×";
  display: block;
  margin-bottom: 1px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}

body.is-image-modal-open {
  overflow: hidden;
}

html.is-image-modal-open {
  overflow: hidden;
}

.p-product-catalog-card__name {
  margin: 0.85rem 0 0;
  padding: 0.15rem 0.2rem 0.05rem;
  font-family: var(--font-mincho-title);
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0.01em;
  color: #2f3640;
}

.p-product-catalog-nav {
  margin-top: 0;
  background-color: transparent;
  padding: 0;
}

.p-product-catalog-nav__lead {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin: 0 0 2rem;
  font-family: var(--font-mincho-title);
  font-size: 36px;
  line-height: 1.2;
  text-align: center;
  color: #222;
}

.p-product-catalog-nav__lead::before,
.p-product-catalog-nav__lead::after {
  content: "";
  flex: 1;
  border-top: 1px solid #9b9b9b;
}

.p-product-catalog-nav__list {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px 12px;
}

.p-product-catalog-nav__list a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-width: 0;
  height: 50px;
  padding: 0 16px;
  border: 1px solid #c7c7c7;
  border-radius: 999px;
  background-color: #fff;
  color: #2f3640;
  text-align: center;
  transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease;
}

.p-product-catalog-nav__list img {
  display: none;
}

.p-product-catalog-nav__list a:hover,
.p-product-catalog-nav__list a:focus-visible {
  border-color: var(--color-navy);
  background-color: var(--color-navy);
  color: #fff;
}

.p-product-catalog-nav__list span {
  display: inline-block;
  font-size: 15px;
  line-height: 1;
  font-weight: 500;
  color: inherit;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

/* ----- ページネーション ----- */
.p-pagination {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0.7rem;
  margin: 2.25rem 0 0;
  flex-wrap: wrap;
}

.p-pagination__link,
.p-pagination__span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  font-size: 0.9375rem;
  font-weight: 500;
  border: 1px solid #222;
  border-radius: 50%;
  background-color: var(--color-white);
  color: #222;
  line-height: 1;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.p-pagination__link:hover {
  background-color: #f3f3f3;
  color: #111;
  border-color: #111;
}

.p-pagination__span.is-current {
  background-color: var(--color-gold);
  color: var(--color-text-inverse);
  border-color: var(--color-gold);
}

@media (max-width: 768px) {
  .p-pagination {
    gap: 0.55rem;
    margin-top: 1.75rem;
  }

  .p-pagination__link,
  .p-pagination__span {
    width: 36px;
    height: 36px;
    font-size: 0.875rem;
  }
}

/* ----- フォーム（MW WP Form想定） ----- */
.p-form__row {
  margin-bottom: 1.5rem;
}

.p-form__label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.875rem;
  font-weight: 600;
}

.p-form__label--required::after {
  content: " ※";
  color: #c00;
}

.p-form__input,
.p-form__textarea,
.p-form__select {
  width: 100%;
  max-width: 100%;
  padding: 0.6rem 0.75rem;
  font-size: 1rem;
  font-family: inherit;
  border: 1px solid var(--color-gray-200);
  border-radius: 4px;
  background-color: var(--color-white);
}

.p-form__textarea {
  min-height: 120px;
  resize: vertical;
}

.p-form__submit {
  display: inline-block;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-navy);
  background-color: var(--color-gold);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: opacity 0.2s;
}

.p-form__submit:hover {
  opacity: 0.9;
}

.p-form fieldset {
  margin: 2rem 0;
  padding: 1.5rem;
  border: 1px solid var(--color-gray-200);
}

.p-form legend {
  padding: 0 0.5rem;
  font-weight: 600;
}

/* ----- お問い合わせ / 商談フォーム（共通デザイン） ----- */
.page-contact .p-content--texture,
.page-negotiation .p-content--texture {
  background-color: #f5f4f1;
  background-image: url("../images/common/tc_img.webp");
  background-repeat: repeat;
  background-position: center top;
}

.page-contact .cta-section,
.page-negotiation .cta-section {
  display: none;
}

.page-contact .p-form-page__intro {
  margin-bottom: 1rem;
  padding: 1.5rem 1.75rem;
  background: #f7f8fa;
  border: 1px solid #999;
}

.page-contact .p-form-page__subhead {
  margin: 0 0 0.8rem;
  font-size: 24px;
  line-height: 1.5;
  color: #1f2937;
}

.page-contact .p-form-page__subhead + p {
  margin: 0 0 1.2rem;
  line-height: 1.9;
  padding-left: 10px;
}

.page-contact .p-form-page__subhead:last-of-type + p {
  margin-bottom: 0;
}

.page-contact .p-form-page__note,
.page-negotiation .p-form-page__note {
  margin: 0 0 1rem;
  font-size: 0.875rem;
  line-height: 1.95;
  color: #4b5563;
}

.page-contact .p-form-page__required,
.page-negotiation .p-form-page__required {
  margin: 0 0 1.6rem;
  font-size: 0.95rem;
}

.page-negotiation .p-form-page__lead {
  margin: 0 0 1rem;
  padding: 1.5rem 1.75rem;
  background: #f7f8fa;
  border: 1px solid #999;
  font-size: 0.95rem;
  line-height: 1.95;
}

.page-contact .p-form__row,
.page-negotiation .p-form__row {
  margin-bottom: 1.4rem;
}

.page-contact .p-form__label,
.page-negotiation .p-form__label {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: #10233a;
}

.page-contact .p-form__label--required::after,
.page-negotiation .p-form__label--required::after {
  content: " 必須";
  display: inline-block;
  margin-left: 0.45rem;
  padding: 0.08rem 0.38rem;
  border-radius: 0.35rem;
  background-color: #d7352a;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  vertical-align: 0.12em;
}

.page-contact .p-form__input,
.page-contact .p-form__textarea,
.page-contact .p-form__select,
.page-negotiation .p-form__input,
.page-negotiation .p-form__textarea,
.page-negotiation .p-form__select {
  border: 1px solid #d4b16a;
  border-radius: 4px;
  background-color: #f6f7d9;
  padding: 0.8rem 0.9rem;
  min-height: 48px;
}

.page-contact .p-form__input:focus,
.page-contact .p-form__textarea:focus,
.page-contact .p-form__select:focus,
.page-negotiation .p-form__input:focus,
.page-negotiation .p-form__textarea:focus,
.page-negotiation .p-form__select:focus {
  outline: 2px solid rgba(201, 162, 39, 0.25);
  border-color: #c9a227;
}

.page-contact .p-form__textarea,
.page-negotiation .p-form__textarea {
  min-height: 140px;
}

.page-contact .p-form fieldset,
.page-negotiation .p-form fieldset {
  margin: 1.8rem 0;
  padding: 1rem;
  border: 1px solid #ddd6bf;
  border-radius: 6px;
  background-color: #fff;
}

.page-contact .p-form legend,
.page-negotiation .p-form legend {
  padding: 0 0.5rem;
  font-weight: 600;
  color: #10233a;
}

.page-contact .p-form-actions,
.page-negotiation .p-form-actions {
  margin-top: 1.75rem;
  text-align: center;
}

.page-contact .p-form__submit,
.page-negotiation .p-form__submit {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 320px;
  padding: 18px 25px;
  border: 1px solid #222;
  border-radius: 0;
  background-color: #fff;
  color: #222;
  font-weight: 600;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.page-contact .p-form__submit:hover,
.page-negotiation .p-form__submit:hover {
  opacity: 1;
  background-color: var(--color-navy);
  color: #fff;
}

/* ----- 商談フォーム再設計 ----- */
.page-negotiation .p-form,
.page-contact .p-form {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  padding: 40px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border-radius: 0;
}

.page-negotiation .p-form-section + .p-form-section,
.page-contact .p-form-section + .p-form-section {
  margin-top: 2.2rem;
}

.page-negotiation .p-form-section__title,
.page-contact .p-form-section__title {
  margin: 0 0 1.25rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid #d8dde3;
  font-size: 1.125rem;
  font-weight: 700;
  color: #10233a;
}

.page-negotiation .p-form-section__intro,
.page-contact .p-form-section__intro {
  margin: 0 0 1rem;
  color: #374151;
  line-height: 1.8;
}

.page-negotiation .p-form__row,
.page-contact .p-form__row {
  margin-bottom: 1rem;
}

.page-negotiation .p-form__label,
.page-contact .p-form__label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 15px;
  font-weight: 700;
  color: #1f2937;
}

.page-negotiation .p-form__input,
.page-negotiation .p-form__textarea,
.page-negotiation .p-form__select,
.page-contact .p-form__input,
.page-contact .p-form__textarea,
.page-contact .p-form__select {
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 0.78rem 0.9rem;
}

.page-negotiation .p-form__input:focus,
.page-negotiation .p-form__textarea:focus,
.page-negotiation .p-form__select:focus,
.page-contact .p-form__input:focus,
.page-contact .p-form__textarea:focus,
.page-contact .p-form__select:focus {
  border: 1px solid #b68c2c;
  box-shadow: 0 0 0 2px rgba(182, 140, 44, 0.1);
  outline: none;
}

.page-negotiation .p-form__group,
.page-contact .p-form__group {
  margin-top: 0.35rem;
}

.page-negotiation .p-form__group--check,
.page-contact .p-form__group--check {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.25rem;
}

.page-negotiation .p-form__group--radio,
.page-contact .p-form__group--radio {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.page-negotiation .p-form__group--check label,
.page-negotiation .p-form__group--radio label,
.page-contact .p-form__group--check label,
.page-contact .p-form__group--radio label {
  margin-bottom: 12px;
  line-height: 1.7;
}

.page-negotiation .p-form__group + .p-form__row,
.page-contact .p-form__group + .p-form__row {
  margin-top: 24px;
}

.page-negotiation .p-form-section--product .p-form__row,
.page-contact .p-form-section--product .p-form__row {
  margin-bottom: 40px;
}

.page-negotiation .p-form-section--product .p-form__row:last-child,
.page-contact .p-form-section--product .p-form__row:last-child {
  margin-bottom: 0;
}

.page-negotiation .p-form__input--other-shape {
  flex: 1;
  min-width: 220px;
  margin-top: 0;
}

.page-negotiation .p-form__group-other {
  flex-basis: 100%;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.2rem;
}

.page-negotiation .p-form__group-other label {
  margin-bottom: 0;
  white-space: nowrap;
}

.page-negotiation .p-form__row > label[for="neg-name"],
.page-negotiation .p-form__row > label[for="neg-other"],
.page-contact .p-form__row > label[for="contact-name"],
.page-contact .p-form__row > label[for="contact-body"] {
  text-align: left;
}

.page-contact .p-form__alert,
.page-negotiation .p-form__alert {
  margin: 0 0 1rem;
  padding: 0.75rem 1rem;
  border: 1px solid #dc2626;
  background: #fff7f7;
  color: #b91c1c;
}

.page-contact .p-form__error,
.page-negotiation .p-form__error {
  margin: 0.35rem 0 0;
  font-size: 0.875rem;
  color: #c52828;
}

.page-contact .p-form__input.is-error,
.page-contact .p-form__textarea.is-error,
.page-negotiation .p-form__input.is-error,
.page-negotiation .p-form__textarea.is-error {
  border-color: #c52828;
  background: #fff8f8;
}

.page-contact .p-form-confirm,
.page-negotiation .p-form-confirm {
  margin: 0;
}

.page-contact .p-form-confirm__row,
.page-negotiation .p-form-confirm__row {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 1rem;
  margin: 0;
  padding: 1rem 0;
  border-bottom: 1px solid #e5e7eb;
}

.page-contact .p-form-confirm__row:first-child,
.page-negotiation .p-form-confirm__row:first-child {
  border-top: 1px solid #e5e7eb;
}

.page-contact .p-form-confirm__label,
.page-negotiation .p-form-confirm__label {
  margin: 0;
  font-weight: 700;
  color: #1f2937;
}

.page-contact .p-form-confirm__value,
.page-negotiation .p-form-confirm__value {
  margin: 0;
  color: #111827;
  line-height: 1.9;
}

.page-contact .p-form-actions--stack,
.page-negotiation .p-form-actions--stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.page-contact .p-form-actions--stack form,
.page-negotiation .p-form-actions--stack form {
  width: 100%;
  max-width: 320px;
}

.page-contact .p-form__submit--secondary,
.page-negotiation .p-form__submit--secondary {
  border-color: #9ca3af;
  color: #4b5563;
}

.page-contact .p-form__submit--secondary:hover,
.page-negotiation .p-form__submit--secondary:hover {
  background-color: #4b5563;
  color: #fff;
}

.page-contact .p-form__submit--link,
.page-negotiation .p-form__submit--link {
  text-decoration: none;
}

.page-contact .p-form-page__note--complete,
.page-negotiation .p-form-page__note--complete {
  margin-bottom: 0;
}

.page-contact .p-form--complete,
.page-negotiation .p-form--complete {
  padding-top: 56px;
  padding-bottom: 52px;
  border-color: #d6dde6;
  box-shadow: 0 8px 24px rgba(16, 35, 58, 0.06);
}

.page-contact .p-form--complete .p-form-section__title,
.page-negotiation .p-form--complete .p-form-section__title {
  margin: 0 0 1.2rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid #d8dde3;
  font-size: clamp(1.35rem, 2.6vw, 1.7rem);
  text-align: center;
  letter-spacing: 0.02em;
}

.page-contact .p-form--complete .p-form-page__note--complete,
.page-negotiation .p-form--complete .p-form-page__note--complete {
  margin: 0 auto;
  max-width: 640px;
  text-align: center;
  color: #374151;
  line-height: 1.95;
}

.page-contact .p-form--complete .p-form-actions,
.page-negotiation .p-form--complete .p-form-actions {
  margin-top: 2rem;
}

/* ----- 記事詳細 ----- */
.p-article__meta {
  font-size: 0.875rem;
  color: var(--color-gray-500);
}

.p-article__title {
  margin: 0 0 5px;
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: 700;
}

.p-article__content-box {
  border-top: 1px solid #c9ced6;
  border-bottom: 1px solid #c9ced6;
  padding: 1.25rem 2rem;
  margin-bottom: 1.5rem;
}

.p-article__eyecatch {
  margin-bottom: 1.25rem;
  overflow: hidden;
  background-color: var(--color-gray-200);
}

.p-article__body {
  line-height: 1.9;
}

.p-article__body h1,
.p-article__body h2,
.p-article__body h3,
.p-article__body h4,
.p-article__body h5,
.p-article__body h6 {
  margin: 1.5em 0 0.6em;
  font-family: var(--font-mincho-title);
  font-weight: 700;
  line-height: 1.35;
  color: #10233a;
}

.p-article__body h1 { font-size: 2rem; }
.p-article__body h2 { font-size: 1.75rem; }
.p-article__body h3 { font-size: 1.5rem; }
.p-article__body h4 { font-size: 1.25rem; }
.p-article__body h5 { font-size: 1.1rem; }
.p-article__body h6 { font-size: 1rem; }

.p-article__body h1:first-child,
.p-article__body h2:first-child,
.p-article__body h3:first-child,
.p-article__body h4:first-child,
.p-article__body h5:first-child,
.p-article__body h6:first-child {
  margin-top: 0;
}

.p-article__body strong {
  font-weight: 700;
}

.p-article__body em {
  font-style: italic;
}

.p-article__body a {
  color: #0f5c8f;
  text-decoration: underline;
  text-underline-offset: 0.14em;
}

.p-article__body ul,
.p-article__body ol {
  margin: 0 0 1rem 1.35rem;
  padding: 0;
}

.p-article__body ul {
  list-style: disc;
}

.p-article__body ol {
  list-style: decimal;
}

.p-article__body li {
  margin-bottom: 0.45rem;
}

.p-article__body blockquote {
  margin: 0 0 1rem;
  padding: 0.75rem 1rem;
  border-left: 3px solid #c9a227;
  background-color: #f7f8fa;
  color: #374151;
}

.p-article__body hr {
  margin: 1.4rem 0;
  border: 0;
  border-top: 1px solid #d6dbe2;
}

.p-article__body .has-text-color {
  font-weight: 500;
}

.p-article__back {
  margin-top: 2rem;
  text-align: center;
}

.p-article__back-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 320px;
  padding: 18px 25px;
  background-color: #fff;
  color: #222;
  font-weight: 600;
  border: 1px solid #222;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.p-article__back-link:hover {
  background-color: var(--color-navy);
  color: #fff;
}

.p-article__back-link:hover .p-news__more-arrow {
  filter: brightness(0) invert(1);
  transform: translateX(2px);
}

/* ----- 個人情報保護方針ページ ----- */
.page-privacy .p-content {
  background-color: #fff;
  padding: 90px 0;
}

.page-privacy .p-article__body {
  color: #2f2f2f;
  font-size: 0.95rem;
  line-height: 1.95;
}

.page-privacy .p-article__body h2 {
  margin: 2rem 0 0.9rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid #cfd3d8;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  font-weight: 700;
  line-height: 1.45;
  color: #111827;
}

.page-privacy .p-article__body h2:first-child {
  margin-top: 0;
}

.page-privacy .p-article__body p {
  margin: 0 0 1rem;
}

.page-privacy .p-article__body ul {
  margin: 1rem 0;
  padding-left: 1.5rem;
  list-style: disc;
}

.page-privacy .p-article__body li {
  margin-bottom: 0.45rem;
}

.page-privacy .p-article__body p[style*="text-align:right"] {
  margin-top: 2rem !important;
}

/* ----- ユーティリティ ----- */
.u-fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.u-fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ----- Responsive: PC 1700px以下（TOPの左右余白調整） ----- */
@media (max-width: 1700px) {
  .page-technology .p-tech-strength .l-container {
    max-width: none;
    padding-left: 5%;
    padding-right: 5%;
  }
}

/* ----- Responsive: PC 1700px以上（製品ページ左右余白） ----- */
@media (max-width: 1700px) {
  .page-product-category .p-product-catalog .l-container,
  .page-product-category .p-product-other .l-container {
    max-width: none;
    padding-left: 5%;
    padding-right: 5%;
  }
}

/* ----- Responsive: 1440px以下（フッター左右余白） ----- */
@media (max-width: 1440px) {
  .p-footer__inner {
    padding-left: 5%;
    padding-right: 5%;
  }

  .p-footer__main {
    flex-direction: column;
    align-items: center;
    gap: 56px;
  }

  .p-footer__brand-area {
    align-items: center;
    text-align: center;
  }

  .p-footer__brand {
    font-size: clamp(2rem, 3.1vw, 2.5rem);
    margin-bottom: 1rem;
  }

  .p-footer__address,
  .p-footer__tel,
  .p-footer__fax {
    font-size: clamp(1rem, 1.45vw, 1.125rem);
  }

  .p-footer__contact {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
  }

  .p-footer__nav-area {
    max-width: 100%;
  }
}

/* ----- Responsive: ノートPC 1300px以下（フッター調整） ----- */
@media (max-width: 1300px) {
  .p-pickup .l-container,
  .p-product .l-container,
  .p-technology .l-container,
  .p-stats .l-container {
    padding-left: 5%;
    padding-right: 5%;
  }
  .page-technology .p-technology-lot .l-container,
  .page-technology .p-tech-equipment .l-container {
    max-width: none;
    padding-left: 5%;
    padding-right: 5%;
  }

  .p-footer {
    padding: 60px 0 20px;
  }

  .p-footer__inner {
    max-width: 1120px;
    padding: 0 5%;
  }

  .p-footer__main {
    flex-direction: column;
    align-items: center;
    gap: 60px;
  }

  .p-footer__brand-area {
    align-items: center;
    text-align: center;
  }

  .p-footer__brand {
    font-size: clamp(2rem, 3.3vw, 2.625rem);
    margin-bottom: 1rem;
  }

  .p-footer__address {
    margin-bottom: 0.9rem;
    font-size: clamp(1rem, 1.7vw, 1.125rem);
  }

  .p-footer__contact {
    display: flex;
    justify-content: center;
    gap: 2.25rem;
    flex-wrap: wrap;
  }

  .p-footer__tel,
  .p-footer__fax {
    font-size: clamp(1rem, 1.6vw, 1.125rem);
  }

  .p-footer__nav-area {
    max-width: 900px;
    gap: 40px;
  }

  .p-footer__nav-block {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 26px 40px;
  }

  .p-footer__nav-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px 40px;
  }

  .p-footer__copy-wrap {
    padding-top: 0;
  }
}

/* ----- Responsive: タブレット 1024px（ハンバーガー＋ドロワー開始） ----- */
@media (max-width: 1024px) {
  .p-kv__title-en {
    font-size: 48px;
  }

  .p-kv__title-ja {
    font-size: 28px;
  }

  .p-product .l-container,
  .p-stats .l-container {
    padding-left: 5%;
    padding-right: 5%;
  }

  .p-news .l-container {
    padding-left: 5%;
    padding-right: 5%;
  }

  .page-technology .p-tech-strength .l-container,
  .page-technology .p-technology-lot .l-container,
  .page-technology .p-tech-equipment .l-container,
  .page-product-category .p-product-catalog .l-container,
  .page-product-category .p-product-other .l-container {
    padding-left: 5%;
    padding-right: 5%;
  }

  .page-technology .p-tech-color__panel {
    right: 5%;
  }

  .cta-section {
    padding: 80px 0;
  }

  .cta-section__inner {
    padding-left: 5%;
    padding-right: 5%;
  }

  .cta-section__body {
    gap: 2.5rem;
  }

  .cta-btn {
    width: min(520px, 100%);
  }

  .p-header__nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(320px, 90vw);
    max-width: 100%;
    height: 100vh;
    height: 100dvh;
    background-color: #fff;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
    flex-direction: column;
    justify-content: flex-start;
    padding: 50px 0;
    transform: translateX(100%);
    transition: transform 0.3s ease, visibility 0.3s ease;
    overflow-y: auto;
    gap: 0;
    z-index: 999;
    visibility: hidden;
  }

  .p-header__nav.is-open {
    transform: translateX(0);
    visibility: visible;
  }

  body.is-header-shrunk .p-header__nav {
    padding-top: calc(60px + 1.5rem);
  }

  .p-header__nav-list {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 0;
  }

  .p-header__nav-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }

  /* 製品案内：親行＋アコーディオン子メニュー（ドロワー専用） */
  .p-header__nav-item--dropdown .p-header__dropdown {
    position: static;
    z-index: auto;
    min-width: 0;
    margin: 0;
    padding: 0 0 10px;
    background-color: #eef0f3;
    border-radius: 0;
    box-shadow: none;
    overflow: visible;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    border-left: 3px solid rgba(201, 162, 39, 0.45);
  }

  .p-header__nav-item--dropdown:not(.is-dropdown-open) .p-header__dropdown {
    display: none;
  }

  .p-header__nav-item--dropdown .p-header__nav-link--product-root {
    display: block;
    width: 100%;
    box-sizing: border-box;
    position: relative;
    padding: 1.05rem 2.65rem 1.05rem 1.5rem;
    font-size: 15px;
    letter-spacing: 0.02em;
    color: #1a1a1a;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    border-bottom: none;
  }

  .p-header__nav-item--dropdown .p-header__nav-link--product-root::after {
    content: "";
    position: absolute;
    right: 1.45rem;
    top: 50%;
    width: 7px;
    height: 7px;
    margin-top: -5px;
    border-right: 2px solid #777;
    border-bottom: 2px solid #777;
    transform: rotate(45deg);
    transition: transform 0.2s ease, margin-top 0.2s ease;
    pointer-events: none;
  }

  .p-header__nav-item--dropdown.is-dropdown-open .p-header__nav-link--product-root::after {
    margin-top: -2px;
    transform: rotate(225deg);
  }

  .p-header__dropdown-item {
    margin: 0 12px 7px;
    border-bottom: none;
  }

  .p-header__dropdown-item:first-child {
    margin-top: 6px;
  }

  .p-header__dropdown-item:last-child {
    margin-bottom: 12px;
  }

  .p-header__dropdown-link {
    display: block;
    padding: 0.92rem 1rem 0.92rem 1.75rem;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.55;
    letter-spacing: 0.01em;
    color: #3a4250;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-radius: 6px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
    transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  }

  .p-header__dropdown-link:hover,
  .p-header__dropdown-link:focus-visible {
    color: #c9a227;
    background-color: #fffdf8;
    border-color: rgba(201, 162, 39, 0.35);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
    outline: none;
  }

  .p-header__nav-item--drawer-only {
    display: block;
  }

  .p-header__nav-link {
    display: block;
    padding: 1rem 1.5rem;
    font-size: 15px;
    border-bottom: none;
  }

  .p-header__nav-link--cta {
    display: block;
    margin: 0;
    padding: 1rem 1.5rem;
    background: none;
    color: #222;
    font-weight: 400;
    border-radius: 0;
    text-align: left;
  }

  .p-header__nav-link--cta .p-header__cta-icon {
    display: none;
  }

  .p-header__nav-link--cta:hover {
    background: none;
    color: #c9a227;
  }

  .p-technology__link--text {
    padding: 0.35rem 0.75rem;
    gap: 0.35rem;
  }

  .p-technology__link-line1 {
    font-size: 30px;
  }

  .p-technology__link-row {
    gap: 36px;
  }

  .p-technology__link-line2 {
    font-size: 30px;
  }

  .p-technology__link-arrow-img {
    width: 42px;
  }

  .p-technology__line {
      margin-top: 1rem;
      margin-bottom: 0;
  }
  
  .p-header__hamburger {
    display: flex;
    position: relative;
    z-index: 1000;
  }

  body.is-menu-open .p-header__hamburger {
    position: fixed;
    top: 24px;
    right: 20px;
    z-index: 1001;
    width: 40px;
    height: 40px;
    padding: 8px;
    gap: 6px;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 6px;
    box-shadow: none;
  }


  /* ドロワー背後のオーバーレイ（body.is-menu-open で表示・クリックで閉じる用はJSで制御） */
  .p-header__drawer-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  body.is-menu-open .p-header__drawer-backdrop {
    display: block;
    opacity: 1;
  }

  .p-footer__nav-block {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .p-footer__nav-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* ----- Responsive: 900px ----- */
@media (max-width: 900px) {
  .l-section__title {
    font-size: 36px;
  }

  .page-negotiation .p-form,
  .page-contact .p-form {
    padding: 28px 20px;
  }

  .page-contact .p-form-page__intro {
    padding: 1.25rem 1.35rem;
  }

  .page-negotiation .p-form-page__lead {
    padding: 1.25rem 1.35rem;
  }

  .page-contact .p-form-page__subhead {
    font-size: 1.4rem;
  }

  .page-contact .p-form-page__note,
  .page-negotiation .p-form-page__note {
    font-size: 0.84rem;
    line-height: 1.85;
  }

  .page-contact .p-content .l-container,
  .page-negotiation .p-content .l-container,
  .page-company .p-content .l-container {
    padding-left: 5%;
    padding-right: 5%;
  }

  .page-privacy .l-container {
    padding-left: 5%;
    padding-right: 5%;
  }

  .page-privacy .p-content {
    padding: 60px 0;
  }

  .page-privacy .p-article__body {
    font-size: 0.92rem;
    line-height: 1.9;
  }

  .page-privacy .p-article__body h2 {
    margin: 1.6rem 0 0.8rem;
    padding-bottom: 0.55rem;
    font-size: 1.2rem;
  }

  .p-article .l-container {
    padding-left: 5%;
    padding-right: 5%;
  }

  .p-article__content-box {
    padding: 1rem 1rem;
  }

  .p-article__body h1 { font-size: 1.75rem; }
  .p-article__body h2 { font-size: 1.55rem; }
  .p-article__body h3 { font-size: 1.35rem; }
  .p-article__body h4 { font-size: 1.2rem; }
  .p-article__body h5 { font-size: 1.05rem; }
  .p-article__body h6 { font-size: 0.95rem; }

  .p-article__body ul,
  .p-article__body ol {
    margin-left: 1.1rem;
  }

  .p-header {
    height: 80px;
  }

  .p-stats {
    padding-top: 0;
    padding-bottom: 0;
  }

  .p-header.is-shrunk {
    height: 45px;
  }

  .c-section-head {
    margin-bottom: 20px;
  }

  .c-section-head__title {
    font-size: 36px;
  }

  .c-section-head__subtitle {
    font-size: 15px;
  }

  .p-news .c-section-head {
    margin-bottom: 20px;
  }

  .cta-section__lead {
    margin: 0 0 20px;
  }

  .p-main {
    padding-top: 80px;
  }

  .l-section {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  :root {
    --section-padding: 50px;
  }

  .p-header__inner {
    padding-left: 12px;
    padding-right: 12px;
  }

  .p-header__tagline {
    font-size: 10px;
    padding-top: 8px;
    padding-bottom: 0;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .p-header__row {
    position: relative;
    padding-top: 4px;
    padding-bottom: 8px;
    padding-right: 48px;
  }

  .p-header__logo-img {
    height: 42px;
    max-width: calc(100vw - 84px);
  }

  .p-header__hamburger,
  body.is-menu-open .p-header__hamburger {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
  }

  .p-header__nav {
    width: min(320px, 88vw);
  }

  .p-fv {
    min-height: 58vh;
    padding-left: 14px;
    padding-right: 14px;
    background-position: center;
  }

  .p-fv__mv-txt {
    left: 14px;
    width: min(520px, calc(100% - 28px));
  }

  .p-fv__inner {
    width: 100%;
    max-width: 100%;
  }

  .p-fv__lead {
    font-size: clamp(18px, 6vw, 30px);
  }

  .p-fv__title {
    gap: 0.2rem;
    line-height: 1.3;
  }

  .p-fv__title-main {
    font-size: clamp(34px, 10.5vw, 56px);
    line-height: 1.22;
  }

  .p-fv__title-main span {
    font-size: clamp(22px, 6.4vw, 32px);
  }

  .p-fv__title-sub {
    font-size: clamp(20px, 6.2vw, 34px);
    line-height: 1.3;
  }

  .c-section-head__title {
    font-size: 36px;
  }

  .c-section-head__subtitle {
    font-size: 15px;
  }

  .p-news__link {
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem 0.75rem;
    padding: 16px 12px;
  }

  .p-news__title {
    flex: 0 0 100%;
    width: 100%;
    margin-top: 0.25rem;
  }

  .p-stats__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }

  .p-stats__item {
    border-left: none;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .p-stats__item:nth-child(1),
  .p-stats__item:nth-child(2) {
    border-top: none;
  }

  .p-stats__item:nth-child(2),
  .p-stats__item:nth-child(4) {
    border-left: 1px solid rgba(0, 0, 0, 0.08);
  }

  .p-stats__icon img {
    width: 36px;
    height: 36px;
  }

  .p-stats__icon--product img {
    width: 32px;
    height: auto;
  }

  .p-stats__number-row {
    font-size: 1rem;
  }

  .p-stats__number {
    font-size: 2.25em;
  }

  .p-stats__label {
    font-size: 18px;
  }

  .p-product__tabs {
    flex-wrap: wrap;
    justify-content: center;
  }

  .p-product__tab {
    padding: 0.5rem 1rem;
    font-size: 0.8125rem;
  }

  .p-product__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .p-product-card__title {
    font-size: 18px;
  }

  .p-technology__link-line1 {
    font-size: 22px;
  }

  .p-technology__link-line2 {
    font-size: 22px;
  }

  .p-technology__line {
    width: 80%;
    max-width: none;
  }

  .p-product-intro {
    padding-top: 56px;
    padding-bottom: 62px;
    background-attachment: scroll;
  }

  .p-product-intro__inner {
    width: min(840px, calc(100% - 1.75rem));
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }

  .p-product-intro__media img {
    aspect-ratio: 16 / 9;
  }

  .p-product-intro__spec-item {
    font-size: 0.82rem;
  }

  .p-product-catalog-nav__list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
  }

  .p-product-catalog-nav {
    margin-top: 0;
    padding: 0;
  }

  .p-product-other {
    padding: 58px 0 66px;
  }

  .p-product-catalog-nav__lead {
    margin-bottom: 1.5rem;
    gap: 18px;
    font-size: 28px;
  }

  .p-product-catalog-nav__lead::before,
  .p-product-catalog-nav__lead::after {
    width: auto;
  }

  .p-product-catalog-nav__list span {
    font-size: 15px;
  }

  .p-product-catalog__head {
    margin-bottom: 1.9rem;
  }

  .page-technology .p-tech-strength__eyebrow,
  .page-technology .p-tech-color__eyebrow,
  .page-technology .p-technology-lot__eyebrow,
  .page-technology .p-tech-equipment__eyebrow,
  .page-company .p-company-section__eyebrow,
  .p-product-catalog__eyebrow {
    font-size: 16px;
  }

  .p-product-catalog__title {
    font-size: 46px;
  }

  .p-product-catalog__sub {
    gap: 18px;
    font-size: 30px;
  }

  .p-product-catalog-card__cat {
    font-size: 24px;
  }

  .p-product-catalog-card__name {
    font-size: 0.88rem;
    line-height: 1.7;
  }

  .p-technology__visuals {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .p-technology__link-wrap {
    padding-top: 30px;
  }

  .p-footer {
    padding: 60px 0 50px;
  }

  .p-footer__main {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .p-footer__nav-area {
    gap: 1.75rem;
  }

  .p-footer__nav-block {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .p-footer__nav-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 2rem;
  }

  .p-footer__copy-wrap {
    padding-top: 2rem;
  }

  .p-footer__copy {
    padding-top: 1.25rem;
  }

  .p-two-col {
    grid-template-columns: 1fr;
  }

  .p-kv__title-ja {
    font-size: 36px;
  }

  /* 下層共通 KV（TOP の .p-fv は対象外） */
  .p-kv {
    min-height: 200px;
  }

  .page-product-category .p-kv {
    min-height: 200px;
  }

  .page-company .p-content {
    padding: 60px 0;
  }

  .page-company .l-section__title {
    margin-bottom: 1.8rem;
  }

  .page-company .p-company-message__visual {
    width: min(100%, 560px);
    margin-bottom: 1.8rem;
  }

  .page-company .p-company-message__photo {
    min-height: 140px;
    aspect-ratio: 16 / 9;
  }

  .page-company .p-content__lead {
    font-size: clamp(1.05rem, 2.7vw, 1.3rem);
    line-height: 1.85;
    text-align: left;
  }

  .page-company .p-company-message__sign {
    margin-top: 1.6rem;
    align-items: flex-start;
    gap: 0.1rem;
  }

  .page-company .p-company-message__accent {
    font-size: 28px;
  }

  .page-company .p-company-message__sign-role {
    font-size: 20px;
  }

  .page-company .p-company-message__sign-name {
    font-size: 40px;
  }

  .page-company .p-history__item {
    display: grid;
    grid-template-columns: 140px 1fr;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0.75rem 0.85rem;
  }

  .page-company .p-history__date {
    gap: 0.2rem;
    align-items: flex-start;
  }

  .page-company .p-history__era {
    font-size: 20px;
    padding-bottom: 2px;
  }

  .page-company .p-history__year {
    font-size: 48px;
  }

  .page-company .p-history__text {
    font-size: 1rem;
    line-height: 1.8;
  }

  .page-company .p-history__item::after {
    left: 70px;
  }

  .page-company .p-table th,
  .page-company .p-table td {
    font-size: 0.85rem;
    padding: 0.65rem 0.7rem;
  }

  .page-company .p-table th {
    width: 36%;
  }

  .page-company .p-company-overview__factory {
    grid-template-columns: 1fr;
  }

  .page-company .p-company-overview__map iframe {
    height: 260px;
  }

  .page-technology .l-section__title {
    margin-bottom: 1.75rem;
  }

  .page-technology .p-content {
    padding: 50px 0;
  }

  .page-technology .p-tech-color {
    padding: 50px 0 0;
  }

  .page-technology .p-two-col {
    gap: 1.5rem;
  }

  .page-technology .p-two-col--strength,
  .page-technology .p-two-col--urethane {
    grid-template-columns: 1fr;
  }

  .page-technology .p-tech-color .l-container {
    padding-left: 0;
    padding-right: 0;
  }

  .page-technology .p-tech-color__head {
    padding: 0 0 30px;
  }

  .page-technology .p-tech-color__summary {
    font-size: 0.9rem;
    line-height: 1.75;
  }

  /* カラーウレタン：SPは img ＋ 其の下に白背景のテキスト・ボタン（重ねない） */
  .page-technology .p-tech-color__stage {
    display: flex;
    flex-direction: column;
    min-height: 0;
    position: relative;
    overflow: visible;
    background-color: #ffffff;
  }

  .page-technology .p-tech-color__photo {
    display: none;
  }

  .page-technology .p-tech-color__img-sp {
    display: block;
    margin: 0;
    padding: 0;
    width: 100%;
    line-height: 0;
  }

  .page-technology .p-tech-color__img-sp-img {
    display: block;
    width: 100%;
    height: auto;
  }

  .page-technology .p-tech-color__panel {
    position: static;
    right: auto;
    top: auto;
    bottom: auto;
    transform: none;
    margin: 0;
    width: 100%;
    max-width: none;
    box-sizing: border-box;
    background-color: #ffffff;
    border: none;
    border-top: 1px solid #e8eaed;
    padding: 1.25rem 5% 1.75rem;
  }

  .page-technology .p-tech-color__metric-value {
    font-size: 1.8rem;
  }

  .page-technology .p-tech-color__metric:nth-child(2) .p-tech-color__metric-value {
    font-size: 1.8rem;
  }

  .page-technology .p-tech-color__chips span {
    width: 18px;
    height: 10px;
  }

  .page-technology .p-tech-color__copy {
    font-size: 0.88rem;
    line-height: 1.85;
    color: #2a2a2a;
  }

  .page-technology .p-tech-color__cta {
    padding: 0.6rem 0.8rem;
    width: auto;
    max-width: 100%;
    white-space: normal;
  }

  .page-technology .p-tech-color__cta::after {
    font-size: 1em;
  }

  .page-technology .p-tech-strength__eyebrow {
    margin-bottom: 0.6rem;
  }

  .page-technology .p-tech-strength__eyebrow::before,
  .page-technology .p-tech-strength__eyebrow::after {
    width: 52px;
    margin: 0 8px;
  }

  .page-technology .p-two-col--strength {
    gap: 1.8rem;
  }

  .page-technology .p-tech-strength .p-technology__link--outline {
    width: auto;
  }

  .page-technology .p-tech-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-technology .p-tech-gallery__item {
    aspect-ratio: 2 / 1;
  }

  .page-technology .p-lot-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .page-technology .p-technology-lot {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .page-technology .p-technology-lot__eyebrow,
  .page-technology .p-tech-equipment__eyebrow {
    font-size: 16px;
  }

  .page-technology .p-technology-lot__eyebrow::before,
  .page-technology .p-technology-lot__eyebrow::after,
  .page-technology .p-tech-equipment__eyebrow::before,
  .page-technology .p-tech-equipment__eyebrow::after {
    width: 40px;
  }

  .page-technology .p-lot-grid__item {
    min-height: 0;
    padding: 1.25rem 1rem 1.2rem;
    width: 70%;
    margin: 0 auto;
  }

  .page-technology .p-lot-grid__icon {
    width: 36px;
    height: 36px;
  }

  .page-technology .p-lot-grid__title {
    font-size: 1.45rem;
    margin-bottom: 1rem;
    padding-bottom: 0.65rem;
  }

  .page-technology .p-lot-grid__text {
    font-size: 0.95rem;
    line-height: 1.9;
  }

  .page-technology .p-equipment__grid--detail {
    max-width: none;
  }

  .page-technology .p-equipment__body {
    gap: 0.75rem;
    padding: 0.75rem 0.9rem;
    align-items: start;
  }

  .page-technology .p-equipment__name {
    font-size: 0.9rem;
  }

  .page-technology .p-equipment__count {
    font-size: 0.82rem;
    white-space: normal;
  }

  .p-table th {
    width: 35%;
  }
}

body.is-menu-open {
  overflow: hidden;
}

@media (max-width: 480px) {
  .p-header {
    height: 60px;
  }

  .p-header.is-shrunk {
    height: 40px;
  }

  .p-main,
  body.is-header-shrunk .p-main {
    padding-top: 60px;
  }

  .p-header__logo-img {
    height: 30px;
  }
  .p-header.is-shrunk .p-header__logo-img {
    height: 30px;
  }
  .page-negotiation .p-form,
  .page-contact .p-form {
    padding: 20px 12px;
  }

  .page-negotiation .p-form__label,
  .page-contact .p-form__label {
    font-size: 14px;
  }

  .page-negotiation .p-form__group--check {
    flex-direction: row;
    gap: 0.4rem 0.9rem;
  }

  .page-negotiation .p-form__group--check label,
  .page-negotiation .p-form__group--radio label {
    line-height: 1.8;
    margin-bottom: 0;
  }

  .page-negotiation .p-form__group-other {
    display: block;
  }

  .page-negotiation .p-form__input--other-shape {
    width: 100%;
    margin-top: 0.45rem;
  }

  .page-negotiation .p-form-section--product .p-form__row,
  .page-contact .p-form-section--product .p-form__row {
    margin-bottom: 30px;
  }

  .page-contact .p-form-page__intro {
    padding: 1rem 0.95rem;
    margin-bottom: 1.25rem;
  }

  .page-negotiation .p-form-page__lead {
    padding: 1rem 0.95rem;
    margin-bottom: 1.25rem;
  }

  .page-contact .p-form-page__subhead {
    font-size: 1.15rem;
    margin-bottom: 0.6rem;
  }

  .page-contact .p-form-page__subhead + p {
    line-height: 1.75;
  }

  .page-contact .p-form-page__required,
  .page-negotiation .p-form-page__required {
    font-size: 0.88rem;
  }

  .page-privacy .p-content {
    padding: 50px 0;
  }

  .page-privacy .p-article__body {
    font-size: 0.88rem;
    line-height: 1.85;
  }

  .page-privacy .p-article__body h2 {
    margin: 1.35rem 0 0.65rem;
    font-size: 1.05rem;
  }

  .page-privacy .p-article__body ul {
    padding-left: 1.25rem;
  }

  .page-company .p-content {
    padding: 50px 0;
  }

  .page-company .p-content__lead {
    font-size: 18px;
    line-height: 1.8;
  }

  .page-company .p-company-message__sign {
    margin-top: 1rem;
  }

  .page-company .p-company-message__sign-role {
    font-size: 16px;
  }

  .page-company .p-company-message__sign-name {
    font-size: 28px;
  }

  .page-company .p-history__item {
    display: block;
    padding: 1rem 0.25rem;
  }

  .page-company .p-history__date {
    margin-bottom: 0;
    gap: 0.15rem;
  }

  .page-company .p-history__era {
    font-size: 18px;
  }

  .page-company .p-history__year {
    font-size: 44px;
  }

  .page-company .p-history__text {
    font-size: 0.92rem;
    line-height: 1.8;
  }

  .page-company .p-history__item::after {
    left: 50%;
  }

  .l-section__title {
    font-size: 28px;
    margin-bottom: 1.5rem !important;
  }

  .p-article__meta {
    font-size: 0.8rem;
  }

  .p-article__title {
    margin-bottom: 0.7rem;
    font-size: 1.25rem;
  }

  .p-article__content-box {
    padding: 0.85rem 0.65rem;
  }

  .p-article__eyecatch {
    margin-bottom: 0.85rem;
  }

  .p-article__body {
    font-size: 0.95rem;
    line-height: 1.85;
  }

  .p-article__body h1 { font-size: 1.5rem; }
  .p-article__body h2 { font-size: 1.35rem; }
  .p-article__body h3 { font-size: 1.2rem; }
  .p-article__body h4 { font-size: 1.08rem; }
  .p-article__body h5 { font-size: 1rem; }
  .p-article__body h6 { font-size: 0.92rem; }

  .p-article__body blockquote {
    padding: 0.65rem 0.75rem;
  }

  .page-technology .p-tech-color__panel {
    padding: 1.05rem 5% 1.4rem;
  }

  .page-technology .p-tech-color__copy {
    font-size: 0.84rem;
  }

  .p-kv__title-en {
    font-size: 28px;
    line-height: 1.08;
  }

  .p-kv__title-ja {
    font-size: 18px;
    margin-top: 0.3em;
  }

  .p-fv {
    min-height: 52vh;
    padding-left: 12px;
    padding-right: 12px;
  }

  .p-fv__mv-txt {
    left: 12px;
    width: calc(100% - 50px);
  }

  .p-fv__lead {
    font-size: clamp(16px, 5.4vw, 22px);
  }

  .p-fv__title-main {
    font-size: clamp(30px, 9.2vw, 40px);
  }

  .p-fv__title-main span {
    font-size: clamp(19px, 5.5vw, 24px);
  }

  .p-fv__title-sub {
    font-size: clamp(18px, 5.7vw, 24px);
  }

  .page-technology .p-lot-grid__item {
    width: 100%;
  }

  .p-product__grid {
    grid-template-columns: 1fr;
  }

  .page-product-category .p-kv {
    padding-top: 56px;
    padding-bottom: 58px;
  }

  .p-product-intro {
    padding-top: 44px;
    padding-bottom: 50px;
  }

  .p-product-intro__inner {
    width: calc(100% - 1.25rem);
    grid-template-columns: 1fr;
    padding: 0.75rem;
    gap: 0.65rem;
  }

  .p-product-intro__summary {
    font-size: 0.82rem;
    line-height: 1.75;
    padding-left: 0;
  }

  .p-product-intro__category-title {
    font-size: 28px;
  }

  .p-product-intro__specs {
    margin: 0;
    padding-left: 0;
  }

  .page-product-category .p-content {
    padding: 50px 0;
  }

  .p-product-intro__spec-item {
    font-size: 0.78rem;
    padding-left: 1.3rem;
  }

  .p-product-catalog__grid {
    grid-template-columns: 1fr;
  }

  .p-product-catalog__head {
    margin-bottom: 1.45rem;
  }

  .page-technology .p-tech-strength__eyebrow,
  .page-technology .p-tech-color__eyebrow,
  .page-technology .p-technology-lot__eyebrow,
  .page-technology .p-tech-equipment__eyebrow,
  .page-company .p-company-section__eyebrow,
  .p-product-catalog__eyebrow {
    font-size: 13px;
  }

  .p-product-catalog__title {
    font-size: 28px;
  }

  .p-product-catalog__sub {
    margin-top: 0.35rem;
    gap: 12px;
    font-size: 24px;
  }

  .p-product-catalog-card__cat {
    font-size: 22px;
    padding-left: 0.75rem;
  }

  .p-product-catalog-card__cat::before {
    width: 1px;
  }

  .p-product-catalog-card__name {
    font-size: 0.82rem;
    line-height: 1.65;
  }

  .p-product-catalog-card--wide {
    grid-column: auto;
  }

  .p-product-catalog-card__media-grid {
    grid-template-columns: 1fr;
  }

  .p-product-catalog-nav__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .p-product-catalog-nav {
    margin-top: 0;
    padding: 0;
  }

  .p-product-other {
    padding: 44px 0 52px;
  }

  .p-product-catalog-nav__lead {
    margin-bottom: 1.2rem;
    gap: 12px;
    font-size: 22px;
  }

  .p-product-catalog-nav__lead::before,
  .p-product-catalog-nav__lead::after {
    width: auto;
  }

  .cta-section__lead {
    font-size: 16px;
    margin: 0 0 10px;
  }

  .p-product-catalog-nav__list span {
    font-size: 14px;
  }

  .p-footer {
    padding: 50px 0　20px;
  }

  .p-footer__nav-block {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .p-footer__nav-grid {
    grid-template-columns: 1fr;
  }

  .p-footer__copy-wrap {
    padding-top: 0;
  }

  .p-footer__copy {
    padding-top: 0;
  }

  .p-footer__contact {
    gap: 0;
  }

  .p-footer__address {
    margin-bottom: 0;
  }

  .p-footer__brand-area {
    text-align: left;
  }

  .cta-section {
    padding: 50px 0;
  }

  .cta-section__inner {
    padding-left: 4%;
    padding-right: 4%;
  }

  .cta-section__body {
    flex-direction: column;
    gap: 1.5rem;
  }

  .cta-section__col-left {
    text-align: center;
  }

  .cta-section__col-right,
  .cta-section__buttons {
    width: 100%;
  }

  .cta-section__tel {
    justify-content: center;
  }

  .cta-btn {
    width: 100%;
    max-width: none;
  }
}

/* ========================================
   Inline style migration
   ======================================== */
.p-kv--news {
  background-image: url("../images/news/pc/kv_news.webp");
}

.p-kv--contact {
  background-image: url("../images/contact/pc/kv_contact.webp");
}

.p-kv--privacy {
  background-image: url("../images/privacy/pc/kv_privacy.webp");
}

.l-container--narrow {
  max-width: 800px;
}

.l-container--form {
  max-width: 900px;
}

.p-news__category--offset {
  margin-left: 0.5rem;
}

.p-privacy-list {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.p-privacy-sign {
  margin-top: 3rem;
  text-align: right;
}

.has-text-color {
  color: #c9a227;
}

.has-background {
  background-color: #eef3f8;
  padding: 0.1em 0.35em;
}

/* ========================================
   TOP PRODUCT showcase layout
   ======================================== */
.p-product-zone {
  position: relative;
  background-color: #08131f;
  background-image: url("../images/top/pc/product_bk.webp");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.p-product-zone::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 10, 16, 0.78) 0%, rgba(6, 14, 24, 0.9) 100%);
  pointer-events: none;
}

.p-product-zone > .p-pickup,
.p-product-zone > .p-product {
  position: relative;
  z-index: 1;
  background: transparent;
}

.p-pickup {
  padding-top: 96px;
  padding-bottom: 56px;
}

.p-product {
  padding-top: 48px;
  padding-bottom: 88px;
}

.p-pickup .l-container,
.p-product .l-container,
.p-stats .l-container {
  max-width: 1320px;
}

.p-pickup .c-section-head {
  margin-bottom: 2.2rem;
}

.p-pickup .c-section-head__title,
.p-product .c-section-head__title {
  color: var(--color-gold);
}

.p-pickup .c-section-head__subtitle,
.p-product .c-section-head__subtitle {
  color: rgba(255, 255, 255, 0.92);
}

.p-pickup__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin: 0;
}

.p-pickup-card {
  height: 100%;
  background: var(--product-card-bg-gradient);
  border: 1px solid rgba(201, 162, 39, 0.95);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.45);
}

.p-pickup-card:hover {
  opacity: 1;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.52);
}

.p-pickup-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 0;
}

.p-pickup-card__thumb-wrap {
  display: block;
  aspect-ratio: 16 / 9;
}

.p-pickup-card__thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-pickup-card__body {
  display: flex;
  flex-direction: column;
  padding: 1rem 1.1rem 1.25rem;
}

.p-pickup-card__label {
  margin: 0;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.p-pickup-card__title {
  margin: 0.25rem 0 0;
  color: #fff;
  font-family: var(--font-mincho-title);
  font-size: clamp(1.35rem, 2.1vw, 2.2rem);
  font-weight: 700;
  line-height: 1.25;
}

.p-pickup-card__line {
  display: block;
  height: 1px;
  margin-top: 0.62rem;
  background: rgba(224, 232, 242, 0.45);
}

.p-pickup-card__summary {
  margin: 0.65rem 0 0;
  color: #fff;
  line-height: 1.7;
}

.p-pickup-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 1rem 0 0;
  padding: 0;
}

.p-pickup-card__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  padding: 0.15rem 0.65rem;
  border: 1px solid rgba(201, 162, 39, 0.9);
  border-radius: 999px;
  color: #fff;
}

.p-pickup-card__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(180px, 100%);
  margin: 1.5rem auto 0;
  padding: 0.62rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: #fff;
  font-size: 0.74rem;
  font-weight: 600;
  transition: background-color 0.25s ease, border-color 0.25s ease;
}

.p-pickup-card__button::after {
  content: "\2192";
  margin-left: 0.65rem;
}

.p-pickup-card:hover .p-pickup-card__button {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.68);
}

.p-product-slider {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.p-product-slider__viewport {
  container-type: inline-size;
  container-name: product-slider;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.p-product__grid--slider {
  margin: 0;
  padding: 6px 2px 14px;
  overflow: hidden;
}

.p-product__grid--slider .slider-track {
  display: flex;
  gap: 18px;
  width: max-content;
  will-change: transform;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.p-product__grid--slider .slider-track.slider-track--no-transition {
  transition: none !important;
}

.p-product__grid--slider .slider-track > .p-product-card {
  flex: 0 0 calc((100cqi - 36px) / 3);
  min-width: 0;
  box-sizing: border-box;
  background: var(--product-card-bg-gradient);
  border: 1px solid rgba(201, 162, 39, 0.32);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

@supports not (width: 1cqi) {
  .p-product__grid--slider .slider-track > .p-product-card {
    flex: 0 0 calc(33.333% - 12px);
  }
}

.p-product__grid--slider .p-product-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 0;
}

.p-product__grid--slider .p-product-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 10px;
}

.p-product__grid--slider .p-product-card__title {
  color: #fff;
  font-family: var(--font-mincho-title);
  font-size: 1.52rem;
  font-weight: 700;
  text-align: left;
  line-height: 1.25;
}

.p-product__grid--slider .p-product-card__line {
  display: block;
  height: 1px;
  margin-top: 0.62rem;
  background: rgba(224, 232, 242, 0.45);
}

.p-product__grid--slider .p-product-card__summary {
  margin: 0.65rem 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  line-height: 1.7;
}

.p-product__grid--slider .p-product-card__more {
  margin-top: auto;
  padding-top: 0.7rem;
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.76rem;
  font-weight: 700;
  text-align: right;
}

.p-product__grid--slider .p-product-card__more::after {
  content: "\2192";
  margin-left: 0.35rem;
}

/* PC：左に両矢印、右にドット／SP：左矢印・中央ドット・右矢印（DOM順 prev / dots / next） */
.p-product-slider__controls {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  width: 100%;
  margin-top: 18px;
}

.p-product-slider__arrow--prev {
  order: 1;
}

.p-product-slider__arrow--next {
  order: 2;
}

.p-product-slider__arrow {
  position: relative;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border: 1px solid var(--color-gold);
  border-radius: 50%;
  background-color: var(--color-gold);
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease, filter 0.2s ease;
}

.p-product-slider__arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 14px;
  background: url("../images/common/arrow_w.svg") center / contain no-repeat;
}

.p-product-slider__arrow--prev::before {
  transform: translate(-50%, -50%) rotate(180deg);
}

.p-product-slider__arrow--next::before {
  transform: translate(-50%, -50%);
}

.p-product-slider__arrow:hover {
  transform: translateY(-1px);
  filter: brightness(1.04);
}

.p-product-slider__arrow:disabled {
  opacity: 0.45;
  cursor: default;
  transform: none;
}

.p-product-slider__dots {
  position: static;
  order: 3;
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  min-width: 0;
  flex-wrap: wrap;
}

.p-product-slider__dot {
  display: block;
  width: 9px;
  height: 9px;
  padding: 0;
  border: none;
  border-radius: 50%;
  appearance: none;
  -webkit-appearance: none;
  background: rgba(255, 255, 255, 0.42);
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.p-product-slider__dot.is-active {
  background: var(--color-gold);
  transform: scale(1.12);
}

@media (max-width: 1200px) {
  .p-product__grid--slider .p-product-card__title {
    font-size: 1.3rem;
  }
}

@media (max-width: 900px) {
  .p-product-zone {
    background-attachment: scroll;
    background-position: center center;
  }

  .p-pickup {
    padding-top: 72px;
    padding-bottom: 42px;
  }

  .p-product {
    padding-top: 40px;
    padding-bottom: 64px;
  }

  .p-pickup__list {
    grid-template-columns: 1fr;
  }

  .p-pickup-card__tag {
    font-size: 14px;
  }

  .p-product__grid--slider .slider-track > .p-product-card {
    flex: 0 0 100cqi;
  }

  @supports not (width: 1cqi) {
    .p-product__grid--slider .slider-track > .p-product-card {
      flex: 0 0 100%;
    }
  }

  .p-product-slider__controls {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 8px;
  }

  .p-product-slider__arrow--prev,
  .p-product-slider__arrow--next {
    order: 0;
  }

  .p-product-slider__dots {
    order: 0;
    margin-left: 0;
    justify-content: center;
    justify-self: stretch;
  }

  .p-product__grid--slider .p-product-card__title {
    font-size: 1.1rem;
  }

  .p-product__grid--slider .p-product-card__summary {
    font-size: 0.82rem;
  }
}

/* ========================================
   Product list cards (page-product-category)
   ======================================== */
.page-product-category .p-product-catalog__grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px 18px;
}

.page-product-category .p-product-catalog-card {
  padding: 0;
  border: 1px solid #a8b0b7;
  background: var(--product-card-bg-gradient);
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.18);
}

.page-product-category .p-product-catalog-card__trigger {
  display: block;
  width: 100%;
  padding: 8px;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.page-product-category .p-product-catalog-card__cat {
  display: none;
}

.page-product-category .p-product-catalog-card__media {
  margin: 0;
}

.page-product-category .p-product-catalog-card__name {
  margin: 0;
  padding: 8px 0 2px;
  color: #fff;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.35;
}

@media (max-width: 1200px) {
  .page-product-category .p-product-catalog__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px 16px;
  }
}

@media (max-width: 900px) {
  .page-product-category .p-product-catalog__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 14px;
  }
}

@media (max-width: 640px) {
  .page-product-category .p-product-catalog__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-contact .p-form-confirm__row,
  .page-negotiation .p-form-confirm__row {
    grid-template-columns: 1fr;
    gap: 0.4rem;
  }

  .page-contact .p-form--complete,
  .page-negotiation .p-form--complete {
    padding-top: 40px;
    padding-bottom: 36px;
  }
}
