@charset "UTF-8";
/* 共通ボタン */
@import url("https://fonts.googleapis.com/css2?family=M+PLUS+1:wght@700&family=Noto+Sans+JP:wght@400;500;700;900&display=swap");
:root {
  --primary: #990100;
  --text: #2c2222;
  --muted: #6f6f6f;
  --border: #d9d9d9;
  --bg-gray: #eeeeee;
  --light-gray: #f8f8f8;
  --white: #fff;
}

:root {
  --font-family-base: "Noto Sans JP", "Inter", sans-serif;
  --font-sans: var(--font-family-base);
  --font-serif: var(--font-family-base);
  --font-mono: var(--font-family-base);
  --default-font-family: var(--font-family-base);
  --default-mono-font-family: var(--font-family-base);
}

:root {
  /* セクション外枠の最大幅（ヒーロー等の広いエリア） */
  --layout-section-width: 1440px;
  /* セクション外枠の最大幅（サービスページ等フル表示） */
  --layout-section-width-full: 1920px;
  /* コンテンツエリアの最大幅（テキスト・カード等） */
  --layout-content-width: 1280px;
  /* 左右の余白 */
  --layout-padding-desktop: 60px;
  --layout-padding-tablet: 40px;
  --layout-padding-mobile: 20px;
  /* セクション上下の余白 */
  --layout-section-padding-y-desktop: 80px;
  --layout-section-padding-y-tablet: 60px;
  --layout-section-padding-y-mobile: 40px;
}

:root {
  --z-index-header: 30;
  --z-index-background: 1;
  --z-index-default: 2;
  --z-index-content: 3;
  --z-index-negative: 0;
}

/* TOP共通: セクション上部の一覧ボタン */
.section--top__button {
  display: inline-flex;
  align-items: center;
  gap: 1.6rem;
  border-bottom: 1px solid #565656;
  color: var(--text);
  text-decoration: none;
  padding: 0.5625rem 1.25rem 0.5625rem 0;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.section--top__button--primary {
  border-bottom-color: var(--primary);
  color: var(--primary);
}

.section--top__button--white {
  border-bottom-color: var(--white);
  color: var(--white);
}

/* TOP共通: ボタン内のCSS矢印 */
.section--top__button-arrow {
  position: relative;
  width: 0.8394rem;
  height: 0.5796rem;
  display: block;
  flex-shrink: 0;
}

.section--top__button-arrow::before,
.section--top__button-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
}

.section--top__button-arrow::before {
  left: 0;
  width: 100%;
  border-top: 1px solid currentColor;
  transform: translateY(-50%);
}

.section--top__button-arrow::after {
  right: 0;
  width: 0.35rem;
  height: 0.35rem;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}

@media (hover: hover) and (pointer: fine) {
  .section--top__button {
    transition: color 0.3s ease;
  }
  .section--top__button-arrow {
    transition: transform 0.3s ease;
  }
  .section--top__button:hover,
  .section--top__button:focus-visible {
    color: var(--primary);
  }
  .section--top__button--white:hover,
  .section--top__button--white:focus-visible {
    color: var(--white);
  }
  .section--top__button:hover .section--top__button-arrow,
  .section--top__button:focus-visible .section--top__button-arrow {
    transform: translateX(2px);
  }
}
/* 製品検索バー */
.product-search {
  padding-bottom: 6rem;
}

.search-container {
  width: 100%;
  background-color: var(--white);
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-sizing: border-box;
}

.search-label {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--muted);
  white-space: nowrap;
}

.product-search .form-control {
  height: 3rem;
  background-color: var(--light-gray);
  border-radius: 0;
  font-size: 0.95rem;
  color: var(--text);
  box-sizing: border-box;
}

.product-search .form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 1px var(--primary);
}

.product-search .form-control.custom-select:focus,
.product-search .form-control.custom-select:focus-visible,
.product-search .form-control.search-input:focus,
.product-search .form-control.search-input:focus-visible {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 1px var(--primary);
}

.select-wrapper {
  position: relative;
  width: 16rem;
  flex: 0 0 auto;
}

.custom-select {
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  padding: 0 2.5rem 0 0.9rem;
  font-weight: 700;
  cursor: pointer;
}

.select-arrow {
  position: absolute;
  right: 0.9rem;
  top: 50%;
  width: 0.85rem;
  height: 0.85rem;
  transform: translateY(-50%);
  color: var(--primary);
  pointer-events: none;
}

.input-wrapper {
  position: relative;
  flex: 1 1 auto;
  min-width: 14rem;
}

.search-input {
  width: 100%;
  padding: 0 3.1rem 0 0.9rem;
}

.search-input::placeholder {
  color: #999;
}

.search-btn {
  position: absolute;
  right: 0;
  top: 0;
  width: 3rem;
  height: 100%;
  border: 0;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  cursor: pointer;
  transition: transform 0.12s ease;
}

.search-btn:hover {
  transform: scale(1.04);
}

.search-btn:active {
  transform: scale(0.96);
}

.search-icon {
  width: 1.25rem;
  height: 1.25rem;
  stroke-width: 2.3;
}

.search-results-title__count {
  font-size: 0.67em;
}

.product-search-results {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.product-search-results__empty {
  margin: 0;
  color: #3f3f46;
  font-size: 1rem;
  line-height: 1.5;
}

.product-search-card-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.5rem;
}

.product-search-card-link {
  display: block;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.product-search-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding-top: 0.8125rem;
  background-color: #f9f9f9;
  transition: background-color 200ms ease;
}

.product-search-card__content {
  padding-inline: 1.25rem;
}

.product-search-card__media {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 1rem;
  overflow: hidden;
  aspect-ratio: 4/3;
  background-color: #fff;
}

.product-search-card__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-search-card__no-image {
  color: #71717a;
  font-size: 0.75rem;
  line-height: 1rem;
}

.product-search-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1rem;
}

.product-search-card__category {
  margin: 0;
  color: #71717a;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.5;
}

.product-search-card__title {
  margin: 0;
  color: #18181b;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5rem;
  transition: color 200ms ease;
}

.product-search-card__summary {
  margin: 0;
  color: #52525b;
  font-size: 0.875rem;
  line-height: 1.5;
}

.product-search-card__footer {
  display: flex;
  justify-content: flex-end;
  margin-top: auto;
  padding-top: 1rem;
}

.product-search-card__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.4375rem;
  height: 2rem;
  background-color: #990100;
}

.product-search-card__arrow-image {
  display: block;
  width: 1.0375rem;
  height: 0.52575rem;
}

@media (hover: hover) {
  .product-search-card-link:hover .product-search-card {
    background-color: #f2f2f2;
  }
  .product-search-card-link:hover .product-search-card__title {
    color: var(--primary-red, var(--primary));
  }
}
@media (min-width: 640px) {
  .product-search-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .product-search-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .product-search-card__title {
    font-size: 1.125rem;
  }
  .product-search-card__summary {
    font-size: 1rem;
  }
  .product-search-card__category {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 768px) {
  .product-search {
    padding-bottom: 2.75rem;
  }
  .search-container {
    flex-direction: column;
    align-items: stretch;
    padding: 1.25rem;
    gap: 0.75rem;
  }
  .search-label {
    font-size: 0.875rem;
  }
  .select-wrapper,
  .input-wrapper {
    width: 100%;
    min-width: 0;
  }
}
/* News一覧アイテム */
.news__list {
  display: flex;
  flex-direction: column;
  gap: 11px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.news__list > li {
  margin: 0;
}

.news__item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid #ababab;
  padding: 0.875rem 1.125rem 2.5rem 1.125rem;
}

@media screen and (max-width: 640px) {
  .news__item {
    gap: 0.6875rem;
    padding: 0.625rem 0 1.75rem 0;
  }
}
.news__meta {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #565656;
  font-size: 1rem;
  line-height: 1.6;
  letter-spacing: 0.05em;
}

.news__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: #e7e7e7;
  padding: 1px 10px;
  font-size: 0.625rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.05em;
}

.news__tag-list {
  display: inline-flex;
  align-items: center;
}

.news__tag-list a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: #e7e7e7;
  padding: 1px 10px;
  font-size: 0.625rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.05em;
  text-decoration: none;
}

.news__tag-list a + a {
  display: none;
}

.news-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding-top: 2rem;
}

.news-pagination .page-numbers,
.news-pagination .wp-block-query-pagination-previous,
.news-pagination .wp-block-query-pagination-next {
  display: inline-flex;
  min-height: 2.5rem;
  min-width: 2.5rem;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--primary);
  background-color: var(--white);
  padding: 0 0.75rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.news-pagination .page-numbers.current {
  background-color: var(--primary);
  color: #fff;
}

.news-pagination .page-numbers.dots {
  min-width: auto;
  border: none;
  padding: 0 0.125rem;
}

.single-news__breadcrumb-date,
.single-news__date {
  display: inline-flex;
  align-items: center;
  margin: 0;
  color: inherit;
  font-size: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}

@media screen and (min-width: 768px) {
  .news__item-title {
    font-size: 1.0625rem;
  }
}
.single-post article img {
  display: block;
  max-width: 100%;
  height: auto;
  margin-bottom: 0.5rem;
}

/* パンくずリスト */
.breadcrumb {
  margin-top: 4rem;
}

@media (max-width: 1024px) {
  nav[aria-label=パンくずリスト] {
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }
  nav[aria-label=パンくずリスト] > * {
    flex: 0 0 auto;
  }
}
@media (max-width: 768px) {
  .page-header {
    padding: 3rem 1rem;
  }
  .page-header .container {
    padding-right: 0;
    padding-left: 0;
  }
}
/* 共通お問い合わせセクション */
.contact-section {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.contact-section__background,
.contact-section__overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.contact-section__background {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-section__overlay {
  background: rgba(65, 65, 65, 0.9);
}

.contact-section__inner {
  position: relative;
  width: 100%;
  margin-inline: auto;
  padding: 3.5rem 1rem;
}

.contact-section__heading {
  display: flex;
  align-items: flex-end;
  gap: 0.625rem;
  margin-bottom: 2.25rem;
}

.contact-section__title,
.contact-section__label {
  margin: 0;
  color: var(--white, #fff);
}

.contact-section__title {
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.02em;
}

.contact-section__label {
  font-weight: 500;
}

.contact-section__actions {
  display: grid;
  grid-template-columns: 1fr;
  grid-auto-rows: 1fr;
  gap: 0.4375rem;
}

.contact-section__card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  text-decoration: none;
}

.contact-section__card--primary {
  color: var(--white, #fff);
  background: var(--primary);
}

.contact-section__card--phone {
  color: #2c2222;
  background: #ececec;
}

.contact-section__card-head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
}

.contact-section__icon {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 3rem;
}

.contact-section__icon--supplier {
  width: 3rem;
  overflow: hidden;
}

.contact-section__icon-image {
  max-width: none;
  object-fit: contain;
}

.contact-section__icon-image--mail {
  width: 2.375rem;
  height: 1.875rem;
}

.contact-section__icon-image--supplier {
  width: 2.9645rem;
  height: 2.355rem;
}

.contact-section__icon-image--phone {
  width: 2.5rem;
  height: 3rem;
}

.contact-section__card-title {
  margin: 0;
  color: inherit;
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.contact-section__card--phone .contact-section__card-title {
  color: var(--primary);
}

.contact-section__card-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-left: 1rem;
}

.contact-section__card-description,
.contact-section__phone-details {
  margin: 0;
  padding: 0 0 1.5rem 0.125rem;
}

.contact-section__card-description {
  font-size: 0.875rem;
  letter-spacing: 0.05em;
}

.contact-section__phone-number,
.contact-section__phone-hours {
  margin: 0;
  letter-spacing: 0.05em;
}

.contact-section__phone-number {
  font-size: 1.3125rem;
  font-weight: 700;
}

.contact-section__phone-hours {
  font-size: 0.875rem;
}

.contact-section__arrow {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 2.8125rem;
  height: 1.4375rem;
  border-top: 1px solid;
  border-left: 1px solid;
}

.contact-section__arrow--primary {
  border-color: var(--white, #fff);
  background: var(--primary);
}

.contact-section__arrow--phone {
  border-color: var(--primary);
  background: #ececec;
}

.contact-section__arrow-image {
  width: 1rem;
  height: 0.625rem;
}

@media screen and (min-width: 640px) {
  .contact-section__inner {
    max-width: 40rem;
    padding-inline: 1.5rem;
  }
  .contact-section__card-description {
    font-size: 1rem;
  }
}
@media screen and (min-width: 768px) {
  .contact-section__inner {
    max-width: 48rem;
    padding-block: 5rem;
  }
  .contact-section__title {
    font-size: 4.125rem;
  }
  .contact-section__actions {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: auto;
    height: 13.125rem;
  }
  .contact-section__card-title {
    font-size: 1.25rem;
  }
  .contact-section__arrow {
    width: 4.25rem;
    height: 2.1875rem;
  }
}
@media screen and (min-width: 1024px) {
  .contact-section__inner {
    max-width: 64rem;
    padding-inline: 2rem;
  }
  .contact-section__card-title {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 1280px) {
  .contact-section__inner {
    max-width: 80rem;
  }
}
@media screen and (min-width: 1536px) {
  .contact-section__inner {
    max-width: 96rem;
  }
}
/* セクション見出し（記事内 h2/h4 共通） */
.heading-section {
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.4;
  margin-top: 4rem;
  margin-bottom: 1.5rem;
}
.heading-section:first-child {
  margin-top: 0;
}
.heading-section--bar {
  font-size: 1.5rem;
  padding: 0.25rem 0 0.25rem 1rem;
  border-left: 4px solid var(--primary);
}
@media (min-width: 768px) {
  .heading-section--bar {
    font-size: 1.875rem;
  }
}
.heading-section--sub {
  font-size: 1.25rem;
  color: #2c2222;
  margin-top: 2.5rem;
}
@media (min-width: 768px) {
  .heading-section--sub {
    font-size: 1.4rem;
  }
}
.heading-section--accent {
  font-size: 1.125rem;
  color: var(--primary);
  margin-top: 2.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #e4e4e7;
}
@media (min-width: 768px) {
  .heading-section--accent {
    font-size: 1.25rem;
  }
}

.product-content h3:not([class]) {
  font-size: 1.2rem;
  font-weight: 700;
  color: #2c2222;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-left: 0.75rem;
  border-left: 3px solid #cacaca;
}
@media (min-width: 768px) {
  .product-content h3:not([class]) {
    font-size: 1.35rem;
  }
}

/* 横並びレイアウト（汎用） */
.row-center, .row-end {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.row-end {
  align-items: flex-end;
}

.row-center {
  align-items: center;
}

/* 画像 max-width 制御（汎用） */
.img-max-220 {
  max-width: 220px;
}
.img-max-220 > img {
  max-width: 100%;
  height: auto;
}

.img-max-400 {
  max-width: 400px;
}
.img-max-400 > img {
  max-width: 100%;
  height: auto;
}

.img-max-600 {
  max-width: 600px;
}
.img-max-600 > img {
  max-width: 100%;
  height: auto;
}

.img-max-800 {
  max-width: 800px;
}
.img-max-800 > img {
  max-width: 100%;
  height: auto;
}

.img-max-1000 {
  max-width: 1000px;
}
.img-max-1000 > img {
  max-width: 100%;
  height: auto;
}

.img-max-1280 {
  max-width: 1280px;
}
.img-max-1280 > img {
  max-width: 100%;
  height: auto;
}

.img-max-full {
  max-width: 100%;
}

.img-220 {
  max-width: 100%;
  width: 220px;
  height: auto;
}

.img-400 {
  max-width: 100%;
  width: 400px;
  height: auto;
}

.img-600 {
  max-width: 100%;
  width: 600px;
  height: auto;
}

.img-800 {
  max-width: 100%;
  width: 800px;
  height: auto;
}

.img-1000 {
  max-width: 100%;
  width: 1000px;
  height: auto;
}

.img-1280 {
  max-width: 100%;
  width: 1280px;
  height: auto;
}

/* 固定ページ内の多列表 */
.page-content-table--standard {
  min-width: 860px;
}

.page-content-table--wide {
  min-width: 1400px;
}

.page-content-table--sticky-col > thead > tr > th:first-child {
  position: sticky;
  left: 0;
  z-index: 3;
  background-color: var(--color-zinc-900, #18181b);
}
.page-content-table--sticky-col > tbody > tr > td:first-child {
  position: sticky;
  left: 0;
  z-index: 1;
  background-color: #fff;
}

/* 固定ページの表内にある製品型番リンク */
table a[href*="/products/item/"] {
  display: inline-block;
  padding-left: 13px;
  text-indent: -13px;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}
table a[href*="/products/item/"]::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 6px;
  vertical-align: 0.05em;
  background-color: currentColor;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath d='M1 1.1L4.8 4L1 6.9' fill='none' stroke='%23000' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath d='M1 1.1L4.8 4L1 6.9' fill='none' stroke='%23000' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
}

@media (hover: hover) {
  table a[href*="/products/item/"]:hover {
    color: var(--primary);
  }
}
/* 製品コンテンツ専用コンポーネント一式（image-pair / media-text / hero-split / feature-card / spec-table） */
/* 画像 2 枚の横並びレイアウト（比較画像、関連画像） */
.image-pair {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .image-pair {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr auto auto;
    gap: 2rem;
  }
}
@media (min-width: 768px) {
  .image-pair--wide-left {
    grid-template-columns: 2fr 1fr;
  }
}
@media (min-width: 768px) {
  .image-pair--triple {
    grid-template-columns: repeat(3, 1fr);
  }
}
.image-pair--diagram {
  grid-template-rows: none;
}
@media (min-width: 768px) {
  .image-pair--diagram {
    grid-template-rows: none;
    align-items: start;
  }
}
.image-pair--diagram figure {
  grid-template-rows: auto;
  grid-row: auto;
  gap: 0;
}
@media (min-width: 768px) {
  .image-pair--diagram figure {
    grid-template-rows: auto;
    grid-row: auto;
  }
}
.image-pair figure {
  margin: 0;
  padding: 1rem;
  background-color: #fff;
  border: 1px solid #e4e4e7;
  display: grid;
  grid-template-rows: 1fr repeat(2, auto);
  gap: 1rem;
}
@media (min-width: 768px) {
  .image-pair figure {
    grid-template-rows: subgrid;
    grid-row: span 3;
  }
}
@media (min-width: 768px) {
  .image-pair figure.image-pair__figure--img-only, .image-pair figure:not(:has(.image-pair__title, .image-pair__caption)) {
    grid-template-rows: auto;
    grid-row: auto;
  }
}
.image-pair figure > img, .image-pair figure > picture, .image-pair figure > a {
  display: block;
  margin: auto;
  max-width: 100%;
  height: auto;
}
.image-pair__caption-group {
  display: contents;
}
.image-pair__title, .image-pair__caption {
  background-color: transparent;
  border: none;
  text-align: left;
  letter-spacing: 0.04em;
}
.image-pair__title {
  margin: 0 0 0.625rem;
  padding: 0 0 0.3125rem;
  border-bottom: 1px solid #d4d4d8;
  font-size: 1.125rem;
  font-weight: 700;
}
.image-pair__caption {
  margin: 0;
  padding: 0;
  font-size: 0.875rem;
  font-weight: 400;
}

/* 画像 N 枚のグリッドギャラリー（採用実績・事例写真） */
.image-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin: 1.5rem 0;
}
@media (min-width: 768px) {
  .image-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}
@media (min-width: 1280px) {
  .image-gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}
.image-gallery figure {
  margin: 0;
  padding: 1rem;
  background-color: #fff;
  border: 1px solid #e4e4e7;
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 0.75rem;
}
.image-gallery figure > img, .image-gallery figure > picture {
  display: block;
  margin: auto;
  max-width: 100%;
  height: auto;
}
.image-gallery__caption {
  margin: 0;
  padding: 0;
  text-align: left;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #2c2222;
}
.image-gallery__note {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.8rem;
  font-weight: 400;
  color: #6f6868;
}

/* 画像 + テキストの左右レイアウト（製品説明） */
.media-text {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: start;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .media-text {
    grid-template-columns: 5fr 6fr;
    gap: 2.5rem;
  }
}
@media (min-width: 768px) {
  .media-text--reverse {
    grid-template-columns: 6fr 5fr;
  }
  .media-text--reverse .media-text__media {
    order: 2;
  }
}
@media (min-width: 768px) {
  .media-text--media-fit {
    display: flex;
    align-items: flex-start;
  }
}
.media-text__media {
  margin: 0;
}
.media-text__media img {
  display: block;
  width: 100%;
  height: auto;
}
.media-text__body > p {
  margin-bottom: 1rem;
}
.media-text__body > p:last-child {
  margin-bottom: 0;
}

/* 隣接 2 つの h2 セクション（製品外観 + 結線図など）を 2 カラム grid（VT/EVT 向け） */
.section-columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem 2.5rem;
  margin: 1.5rem 0;
}
@media (min-width: 768px) {
  .section-columns {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}
.section-columns__col {
  min-width: 0;
}
.section-columns__col > .heading-section:first-child {
  margin-top: 0;
}
.section-columns .product-content__figure {
  margin: 1rem 0 0;
}
.section-columns .product-content__image {
  max-width: 100%;
  height: auto;
}

/* テキスト copy + 画像 (1〜N 枚) の 2 カラム hero（1 画像でも 2 カラム維持） */
.product-content__hero-split {
  display: grid;
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: start;
  padding: clamp(1.25rem, 3vw, 2.5rem);
  margin-bottom: 2rem;
  background: #fafafa;
  border: 1px solid #e0e0e0;
  min-width: 0;
}
@media (min-width: 900px) {
  .product-content__hero-split {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
    align-items: center;
  }
}
.product-content__hero-split__copy {
  display: grid;
  gap: 1rem;
  min-width: 0;
}
.product-content__hero-split__title {
  margin: 0;
  color: #1f1f1f;
  font-size: clamp(1.65rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.35;
}
.product-content__hero-split__lead {
  margin: 0;
  color: var(--primary);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 700;
  line-height: 1.55;
}
.product-content__hero-split__intro {
  display: grid;
  gap: 0.75rem;
  line-height: 1.9;
}
.product-content__hero-split__intro p {
  margin: 0;
}
.product-content__hero-split__media {
  display: grid;
  gap: 1rem;
  min-width: 0;
}
.product-content__hero-split__media figure {
  margin: 0;
  min-width: 0;
}
.product-content__hero-split__media img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}
.product-content__hero-split__media--row {
  grid-auto-flow: column;
  grid-auto-columns: minmax(0, 1fr);
  align-items: start;
}

/* 「特徴」「用途」のボーダー付き 2 カラムカード */
.feature-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 768px) {
  .feature-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

.feature-card {
  border: 1px solid #e4e4e7;
  background-color: #fff;
}
.feature-card__heading {
  background-color: #e4e4e7;
  padding: 0.75rem 1rem;
}
.feature-card__body {
  border-top: 1px solid #e4e4e7;
  padding: 0.75rem 1rem;
}

/* 特長セクション専用 grid block（タイトル + 本文、PDF 番号付きリスト向け） */
.feature-grid {
  list-style: none;
  margin: 0 0 2rem;
  padding: 1.25rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  counter-reset: feature;
  background-color: #f4f4f5;
}
@media (min-width: 768px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}
@media (min-width: 1280px) {
  .feature-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.feature-grid__item {
  counter-increment: feature;
  padding: 1.25rem;
  background-color: #fff;
}
.feature-grid__title {
  margin: 0 0 0.6rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.4;
}
.feature-grid__title::before {
  content: counter(feature) ". ";
}
.feature-grid__body {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.75;
}

/* 仕様表（spec-table-wrap + spec-table、全 th/td に border・min-width） */
.spec-table-wrap {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow-x: auto;
  margin-bottom: 2rem;
  -webkit-overflow-scrolling: touch;
}
.spec-table-wrap--fit-content {
  max-width: 100%;
  overflow-x: auto;
}
.spec-table-wrap--fit-content .spec-table {
  min-width: 0;
  width: 100%;
}
@media (min-width: 1280px) {
  .spec-table-wrap--fit-desktop .spec-table {
    min-width: 0;
  }
}
.spec-table-wrap--scroll-y {
  overflow-y: auto;
  max-height: 70vh;
}
.spec-table-wrap--scroll-y > .spec-table > thead {
  position: sticky;
  top: 0;
  z-index: 2;
}
.spec-table-wrap--scroll-y > .spec-table {
  border-collapse: separate;
  border-spacing: 0;
  border-width: 1px 0 0 1px;
}
.spec-table-wrap--scroll-y > .spec-table > thead > tr > th,
.spec-table-wrap--scroll-y > .spec-table > thead > tr > td,
.spec-table-wrap--scroll-y > .spec-table > tbody > tr > th,
.spec-table-wrap--scroll-y > .spec-table > tbody > tr > td,
.spec-table-wrap--scroll-y > .spec-table > tfoot > tr > th,
.spec-table-wrap--scroll-y > .spec-table > tfoot > tr > td {
  border-width: 0 1px 1px 0;
}
.spec-table-wrap--sticky-col > .spec-table > thead > tr > th:first-child {
  position: sticky;
  left: 0;
  z-index: 3;
}
.spec-table-wrap--sticky-col > .spec-table > tbody > tr > th:first-child {
  position: sticky;
  left: 0;
  z-index: 1;
  background-color: #f7f5f3;
}

.spec-table {
  width: 100%;
  min-width: 950px;
  border-collapse: collapse;
  background-color: #fff;
  border: 1px solid #cacaca;
  font-size: 0.875rem;
  line-height: 1.6;
}
.spec-table--compact {
  min-width: 480px;
}
.spec-table--narrow {
  min-width: 720px;
}
.spec-table--xl {
  min-width: 1300px;
}
.spec-table--wide {
  min-width: 1600px;
}
.spec-table--inline {
  min-width: 0;
  margin: 0 0 0.5rem;
  background-color: #fff;
}
.spec-table--inline > thead > tr > th {
  background-color: #2c2222;
  color: #fff;
}
.spec-table--inline > tbody > tr > th {
  background-color: #f7f5f3;
  color: inherit;
}
.spec-table--inline > tbody > tr:nth-child(even) > td {
  background-color: transparent;
}
.spec-table th,
.spec-table td {
  border: 1px solid #cacaca;
  padding: 0.6rem 0.9rem;
  vertical-align: middle;
  text-align: left;
}
.spec-table thead th {
  background-color: #2c2222;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-align: center;
  border-color: rgba(255, 255, 255, 0.25);
}
.spec-table tbody th {
  background-color: #f7f5f3;
  font-weight: 600;
  text-align: left;
  white-space: nowrap;
}
.spec-table tbody tr:nth-child(even) td {
  background-color: #fafafa;
}

:root {
  --base: 1440;
}
@media screen and (max-width: 768px) {
  :root {
    --base: 1024;
  }
}

html {
  scroll-behavior: smooth;
}

body {
  line-height: 1.7;
  font-size: 16px;
  font-family: var(--font-family-base);
  color: var(--text);
  font-weight: 400;
  letter-spacing: 500;
}

.br-pc {
  display: block;
}
@media screen and (max-width: 1024px) {
  .br-pc {
    display: none;
  }
}

.br-sp {
  display: none;
}
@media screen and (max-width: 1024px) {
  .br-sp {
    display: block;
  }
}

.header {
  --header-desktop-height: 5.3125rem;
  --header-contact-button-width: 9.6875rem;
  --header-language-icon: url("../images/common/language-en.svg");
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-index-header);
  transition: background-color 0.3s ease;
}
.header.is-scrolled {
  background-color: var(--white);
}
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: var(--header-desktop-height);
}
@media screen and (max-width: 1024px) {
  .header__inner {
    align-items: center;
    height: 4.0625rem;
    padding-right: 0;
  }
}
.header__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 10rem;
  height: 100%;
  padding-inline: 1.25rem;
  background-color: var(--white);
  box-sizing: border-box;
}
@media screen and (max-width: 1024px) {
  .header__logo {
    width: 8.3125rem;
    height: 4.0625rem;
    padding-inline: 0.75rem;
  }
}
.header__logo a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.header__logo img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
}
.header__nav {
  margin-top: 0;
  height: var(--header-desktop-height);
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .header__nav {
    position: fixed;
    inset: 0;
    padding: 8rem 2rem 2.5rem;
    background-color: rgba(44, 34, 34, 0.96);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.35s ease, opacity 0.35s ease, visibility 0.35s ease;
    z-index: calc(var(--z-index-header) + 1);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    overflow-y: auto;
    height: auto;
  }
}
.header__nav-list {
  display: flex;
  gap: 3.8194444444vw;
  font-weight: 700;
  font-size: 1.0625rem;
}
@media screen and (max-width: 1024px) {
  .header__nav-list {
    width: 100%;
    flex-direction: column;
    gap: 0;
    font-size: 1.25rem;
    letter-spacing: 0.04em;
  }
}
@media screen and (max-width: 640px) {
  .header__nav-list {
    font-size: 1rem;
  }
}
@media screen and (max-width: 1024px) {
  .header__nav-item {
    color: var(--white);
  }
  .header__nav-item a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 2rem 1rem;
    border-bottom: 1px solid #fff;
    color: inherit;
  }
}
@media screen and (max-width: 1024px) and (max-width: 640px) {
  .header__nav-item a {
    padding: 1.25rem 1rem;
  }
}
@media screen and (max-width: 1024px) {
  .header__nav-item a::after {
    content: "";
    width: 0.6875rem;
    height: 0.6875rem;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    transform: rotate(45deg);
    flex-shrink: 0;
  }
}
.header__mobile-actions {
  display: none;
}
@media screen and (max-width: 1024px) {
  .header__mobile-actions {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top: 1.5rem;
    gap: 0.625rem;
  }
}
.header__mobile-action {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-decoration: none;
  font-weight: 700;
}
.header__mobile-action--contact {
  min-height: 5.3125rem;
  padding: 0.625rem;
  background-color: var(--primary);
  color: var(--white);
  font-size: 1.0625rem;
  line-height: 1.4706;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
@media screen and (min-width: 641px) and (max-width: 1024px) {
  .header__mobile-actions {
    display: flex;
    grid-template-columns: none;
  }
  .header__mobile-action {
    width: 100%;
    min-width: 100%;
    flex: 0 0 100%;
  }
}
.header__mobile-controls {
  display: none;
}
@media screen and (max-width: 1024px) {
  .header__mobile-controls {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-left: auto;
    position: relative;
    z-index: calc(var(--z-index-header) + 2);
  }
}
.header__action-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
@media screen and (max-width: 1024px) {
  .header__action-wrap {
    display: none;
  }
}
.header__actions {
  display: flex;
  align-items: center;
}
.header__action-link {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  margin-right: 2rem;
  color: var(--text);
}
.header__action-link--mobile {
  display: none;
  margin-right: 0;
}
@media screen and (max-width: 1024px) {
  .header__action-link--mobile {
    display: inline-flex;
    color: var(--text);
  }
}
.header__action-text {
  color: inherit;
}
.header__action-icon {
  display: block;
  width: 1.3125rem;
  height: 1.3125rem;
  flex-shrink: 0;
  background-color: currentColor;
  -webkit-mask: var(--header-language-icon) center/contain no-repeat;
  mask: var(--header-language-icon) center/contain no-repeat;
}
.header__action-button {
  display: flex;
  padding: 2em 3em;
  background-color: var(--primary);
  color: var(--white);
  justify-content: center;
  align-items: center;
}
.header__action-button--contact {
  width: var(--header-contact-button-width);
  min-width: var(--header-contact-button-width);
  height: 5.3125rem;
  padding: 0.625rem;
}
.header__action-button--contact {
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.4706;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.header__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.front-page .header:not(.is-scrolled) .header__nav-item > a,
.front-page .header:not(.is-scrolled) .header__action-link {
  color: var(--white);
}

.header.is-menu-open .header__nav {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.header.is-menu-open .header__toggle-bar {
  background-color: var(--white);
}

/* ハンバーガーメニュー */
.header__toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.3125rem;
  width: 4.0625rem;
  height: 4.0625rem;
  flex-shrink: 0;
  background-color: var(--primary);
  border: none;
  border-radius: 0;
  cursor: pointer;
  padding: 0;
}
.header__toggle-bar {
  display: block;
  width: 1.5625rem;
  height: 0.125rem;
  background-color: var(--white);
  border-radius: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
@media screen and (max-width: 1024px) {
  .header__toggle {
    display: flex;
  }
}

.header__toggle.is-active .header__toggle-bar:nth-child(1) {
  transform: translateY(0.4375rem) rotate(45deg);
}

.header__toggle.is-active .header__toggle-bar:nth-child(2) {
  opacity: 0;
}

.header__toggle.is-active .header__toggle-bar:nth-child(3) {
  transform: translateY(-0.4375rem) rotate(-45deg);
}

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

@media screen and (min-width: 1025px) {
  /* デスクトップ時: ヘッダーの透明な空白領域は下層要素へイベントを透過 */
  .header {
    pointer-events: none;
  }
  /* 実際に操作する要素だけイベントを受け取る */
  .header a,
  .header button {
    pointer-events: auto;
  }
  .header__nav-item > a,
  .header__action-link {
    transition: color 0.3s ease;
  }
  .header__nav-item > a {
    position: relative;
    display: inline-block;
  }
  .header__nav-item > a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.25rem;
    width: 100%;
    height: 1px;
    background-color: var(--primary);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.3s ease;
  }
  .header__nav-item > a:hover,
  .header__nav-item > a:focus-visible {
    color: var(--primary);
  }
  .header__nav-item > a:hover::after,
  .header__nav-item > a:focus-visible::after {
    transform: scaleX(1);
  }
  .header__action-link:hover,
  .header__action-link:focus-visible {
    color: var(--primary);
  }
}
/* Footer */
.site-footer {
  background: #f7f7f7;
  padding: 92px 45px 0;
  color: var(--text);
}

.site-footer__inner {
  max-width: 1225px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.site-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-top: 15px;
}

.site-footer__logo {
  width: 218px;
  height: 73px;
}

.site-footer__logo a {
  display: block;
  width: 100%;
  height: 100%;
}

.site-footer__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-footer__address p {
  margin: 0 0 10px;
  font-size: 15px;
  letter-spacing: 0.6px;
  color: var(--text);
}

.site-footer__address p:first-child {
  font-size: 19px;
  color: #5b5b5b;
  letter-spacing: 0.76px;
  margin-bottom: 12px;
}

.site-footer__menus {
  display: flex;
  gap: 40px;
}

.site-footer__menu {
  display: flex;
  flex-direction: column;
  gap: 23px;
  min-width: 200px;
}

.site-footer__menu-title {
  margin: 0;
  font-size: 17px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.68px;
}

.site-footer__menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.site-footer__menu li {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 1.8px;
}

.site-footer__menu li img {
  width: 8px;
  height: 2px;
}

.site-footer__menu a {
  color: inherit;
  text-decoration: none;
}

.site-footer__menu--links {
  gap: 38px;
  width: 170px;
}

.site-footer__menu--links a {
  font-size: 17px;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  display: block;
}

.site-footer__bottom {
  border-top: 1px solid #b3b3b3;
  margin: 60px auto 0;
  max-width: 1350px;
  padding: 8px 10px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: #b3b3b3;
  letter-spacing: 0.44px;
}

.site-footer__bottom a {
  color: var(--text);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.52px;
}

@media (hover: hover) {
  .site-footer__bottom a:hover {
    text-decoration: underline;
  }
}
.site-footer__bottom a:focus-visible {
  text-decoration: underline;
}

@media (max-width: 1200px) {
  .site-footer__inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .site-footer__menus {
    flex-wrap: wrap;
  }
}
@media (max-width: 768px) {
  .site-footer {
    padding: 60px 20px 20px;
  }
  .site-footer__bottom {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }
}
@media (max-width: 640px) {
  .site-footer {
    padding: 0 1.25rem;
    background: #f7f7f7;
  }
  .site-footer__inner {
    width: 100%;
    padding: 3.75rem 0 3.4375rem;
    gap: 3.125rem;
  }
  .site-footer__brand {
    padding-top: 0;
    gap: 1.25rem;
  }
  .site-footer__logo {
    width: 11.9375rem;
    height: 4rem;
  }
  .site-footer__address p {
    margin: 0;
    font-size: 0.8125rem;
    letter-spacing: 0.04em;
    color: var(--text);
  }
  .site-footer__address p:first-child {
    margin-bottom: 0;
    font-size: 1rem;
    letter-spacing: 0.04em;
    color: #5b5b5b;
  }
  .site-footer__menus {
    width: 100%;
    flex-wrap: wrap;
    align-items: flex-start;
    align-content: flex-start;
    gap: 2.5rem;
  }
  .site-footer__menu {
    min-width: 0;
    gap: 0.8125rem;
  }
  .site-footer__menu:first-child {
    width: 14.375rem;
  }
  .site-footer__menu:nth-child(2) {
    width: 8.625rem;
  }
  .site-footer__menu-title {
    font-size: 1rem;
    line-height: 1.5;
    letter-spacing: 0.04em;
  }
  .site-footer__menu ul {
    gap: 0.8125rem;
  }
  .site-footer__menu li {
    font-size: 0.875rem;
    letter-spacing: 0.12em;
  }
  .site-footer__menu--links {
    width: auto;
    gap: 1.25rem;
  }
  .site-footer__menu--links a {
    font-size: 1rem;
    line-height: 1.5;
    letter-spacing: 0.04em;
  }
  .site-footer__bottom {
    margin-top: 0;
    width: 100%;
    padding: 1rem 0;
    border-top: 1px solid #b3b3b3;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4375rem;
  }
  .site-footer__bottom a {
    order: 1;
    font-size: 0.8125rem;
    letter-spacing: 0.04em;
    color: var(--text);
  }
  .site-footer__bottom p {
    order: 2;
    margin: 0;
    font-size: 0.6875rem;
    letter-spacing: 0.04em;
    color: #b3b3b3;
  }
}
.side {
  position: relative;
}

.side__inner {
  position: sticky;
  top: 7rem;
}
@media screen and (max-width: 1024px) {
  .side__inner {
    position: static;
    top: auto;
  }
}

.sidebar-nav--section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.25rem;
}
@media screen and (min-width: 1024px) {
  .sidebar-nav--section {
    grid-template-columns: 1fr;
  }
}
.sidebar-nav--section .sidebar-nav__link {
  display: block;
}
.sidebar-nav--section .sidebar-nav__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 6px 6px 6px 12px;
  background-color: var(--white);
  box-shadow: 0 0 14px 0 #e0e0e0;
  transition: background-color 0.2s ease;
}
.sidebar-nav--section .sidebar-nav__text {
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.3333333;
  transition: color 0.2s ease;
}
@media screen and (min-width: 1024px) {
  .sidebar-nav--section .sidebar-nav__text {
    font-size: 0.875rem;
    line-height: 1.4285714;
  }
}
.sidebar-nav--section .sidebar-nav__icon {
  position: relative;
  display: flex;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  background-color: var(--primary);
  transition: background-color 0.2s ease;
}
.sidebar-nav--section .sidebar-nav__icon-img {
  width: 14px;
  height: 10px;
  transition: opacity 0.2s ease;
}
.sidebar-nav--section .sidebar-nav__icon-img--default {
  opacity: 1;
}
.sidebar-nav--section .sidebar-nav__icon-img--hover {
  position: absolute;
  pointer-events: none;
  opacity: 0;
  filter: brightness(0) saturate(100%) invert(9%) sepia(96%) saturate(6235%) hue-rotate(2deg) brightness(82%) contrast(122%);
}
.sidebar-nav--section .sidebar-nav__link:hover .sidebar-nav__item,
.sidebar-nav--section .sidebar-nav__link:focus-visible .sidebar-nav__item {
  background-color: var(--primary);
}
.sidebar-nav--section .sidebar-nav__link:hover .sidebar-nav__text,
.sidebar-nav--section .sidebar-nav__link:focus-visible .sidebar-nav__text {
  color: var(--white);
}
.sidebar-nav--section .sidebar-nav__link:hover .sidebar-nav__icon,
.sidebar-nav--section .sidebar-nav__link:focus-visible .sidebar-nav__icon {
  background-color: var(--white);
}
.sidebar-nav--section .sidebar-nav__link:hover .sidebar-nav__icon-img--default,
.sidebar-nav--section .sidebar-nav__link:focus-visible .sidebar-nav__icon-img--default {
  opacity: 0;
}
.sidebar-nav--section .sidebar-nav__link:hover .sidebar-nav__icon-img--hover,
.sidebar-nav--section .sidebar-nav__link:focus-visible .sidebar-nav__icon-img--hover {
  opacity: 1;
}

/* 下層ページ共通の背景色をトップページと統一 */
.subpage-layout {
  background-color: var(--bg-gray);
  overflow-x: clip;
}

/* 下層ページ共通でplaidラッパー内のレイアウトを維持 */
.subpage-layout > .plaid {
  min-height: 100%;
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
}

.subpage-hero {
  position: relative;
  overflow: visible;
}

.subpage-hero__ellipse {
  position: absolute;
  top: 4rem;
  left: -15vw;
  width: clamp(43rem, 37vw, 52rem);
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: linear-gradient(270deg, rgba(245, 245, 245, 0) 0%, var(--white) 52.28%);
  opacity: 0.55;
  pointer-events: none;
  z-index: 0;
}

.subpage-hero > :not(.subpage-hero__ellipse) {
  position: relative;
  z-index: 1;
}

.subpage-layout .page-header {
  padding: 5rem 5rem 3rem;
}

@media (max-width: 768px) {
  .subpage-hero__ellipse {
    top: 1.5rem;
    left: -60%;
    width: 145vw;
    opacity: 0.48;
  }
  .subpage-layout .page-header {
    padding: 5rem 1rem 1rem;
  }
  .subpage-layout .page-header .container {
    padding-right: 0;
    padding-left: 0;
  }
}
/* TOP共通: セクション全体 */
.section--top {
  position: relative;
  z-index: var(--z-index-content);
  width: 100%;
}

/* TOP共通: セクション内側レイアウト（content-width含む） */
.section--top__inner {
  max-width: var(--layout-content-width);
  margin: 0 auto;
  padding: 6rem 1rem;
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  gap: 3rem;
}

/* TOP共通: 見出しブロック */
.section--top__heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2.5rem;
}

@media screen and (max-width: 1024px) {
  .section--top__heading {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 1rem;
  }
}
/* TOP共通: タイトル周辺 */
.section--top__title-wrap {
  width: 100%;
  max-width: 15.875rem;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.section--top__kicker {
  display: flex;
  align-items: center;
  gap: 9px;
  padding-left: 6px;
}

.section--top__dot {
  width: 7px;
  height: 7px;
  display: block;
  background: #b3b3b3;
}

.section--top__en {
  font-family: "M PLUS 1", "Noto Sans JP", sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.04em;
  color: var(--text);
}

.section--top__title {
  margin: 0;
  color: var(--primary);
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.06em;
}

.section--top__date {
  font-style: normal;
  font-weight: 700;
}

/* TOP共通: 768px以上 */
@media screen and (min-width: 768px) {
  .section--top__inner {
    padding-right: 2rem;
    padding-left: 2rem;
  }
  .section--top__title {
    font-size: 3.5rem;
  }
}
/* TOP共通: 1025px以上 */
@media screen and (min-width: 1025px) {
  .section--top__inner {
    grid-template-columns: 15.875rem minmax(0, 1fr);
    gap: 5.5rem;
    padding-top: 10rem;
    padding-bottom: 10rem;
  }
  .section--top__heading {
    gap: 3.125rem;
  }
  .section--top__title {
    font-size: 4.75rem;
  }
}
/* TOP共通: 1280px以上 */
@media screen and (min-width: 1280px) {
  .section--top__inner {
    gap: 7.8125rem;
  }
}
@media screen and (max-width: 1024px) {
  .section--top__inner {
    padding: 6rem 2.5rem;
    gap: 4.5rem;
  }
  .section--top__title-wrap {
    width: auto;
  }
}
@media screen and (max-width: 640px) {
  .section--top__inner {
    padding: 5rem 1.25rem;
    gap: 4.5rem;
  }
  /* TOP共通: Newsセクションの下余白調整 */
  .section--top__inner--news {
    padding-bottom: 2rem;
  }
  .section--top__en {
    font-size: 1.125rem;
  }
  .section--top__title {
    font-size: 2.8rem;
  }
}
.front-page {
  color: var(--text);
  font-family: var(--font-family-base);
  background-color: var(--bg-gray);
  position: relative;
  z-index: var(--z-index-negative);
  overflow: hidden;
}

.plaid {
  background-color: transparent;
  background-image: linear-gradient(90deg, rgba(214, 214, 214, 0.5019607843) 1px, transparent 1px), linear-gradient(rgba(214, 214, 214, 0.5019607843) 1px, transparent 1px);
  background-position: 10px 10px;
  background-size: 41px 41px;
  z-index: var(--z-index-background);
}

.front-page *,
.front-page *::before,
.front-page *::after {
  box-sizing: border-box;
}

.front-page img {
  max-width: 100%;
  height: auto;
  display: block;
}

.mv {
  position: relative;
  height: 100vh;
  min-height: 700px;
  max-height: 1200px;
  background-color: #2c2222;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .mv {
    min-height: 640px;
    max-height: 800px;
  }
}
@media screen and (max-width: 640px) {
  .mv {
    min-height: 500px;
    max-height: 700px;
  }
}

.mv__slides {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: #2c2222;
}

.mv__slides::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.45) 48%, rgba(0, 0, 0, 0.25) 100%);
  pointer-events: none;
  z-index: 4;
}

.mv__slide {
  position: absolute;
  inset: 0;
  height: 100%;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 1;
  transition: opacity 0.8s ease;
}

.mv__slide--kv01 {
  background-image: url("../images/top/mv/kv01-v2.webp");
  background-position: 40% center;
}

.mv__slide--kv02 {
  background-image: url("../images/top/mv/kv02-v2.webp");
  background-position: 40% center;
}

.mv__slide--kv03 {
  background-image: url("../images/top/mv/kv03-v2.webp");
  background-position: center center;
}

.mv__slide--kv04 {
  background-image: url("../images/top/mv/kv04-v2.webp");
  background-position: 50% center;
}

.mv__slide--kv05 {
  background-image: url("../images/top/mv/kv05-v2.webp");
  background-position: 61% center;
}

.mv__slide--kv06 {
  background-image: url("../images/top/mv/kv06-v2.webp");
  background-position: 61% center;
}

.mv__slide--kv07 {
  background-image: url("../images/top/mv/kv07-v2.webp");
  background-position: 78% center;
}

.mv__slide--kv08 {
  background-image: url("../images/top/mv/kv08-v2.webp");
  background-position: 60% center;
}

.mv__slide--kv09 {
  background-image: url("../images/top/mv/kv09-v2.webp");
  background-position: 60% center;
}

.mv__slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 2;
}

.mv__slide.is-entering {
  opacity: 1;
  visibility: visible;
  z-index: 3;
}

.mv__slide-content {
  position: relative;
  z-index: 5;
  width: calc(100% - 160px);
  max-width: 1600px;
  height: 100%;
  margin: 0 auto;
  padding: clamp(122px, 12vh, 190px) 0 clamp(80px, 8vw, 112px);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: clamp(1.5rem, 2.5vw, 3rem);
}
@media screen and (max-width: 1024px) {
  .mv__slide-content {
    width: calc(100% - 80px);
    padding: 7rem 0 5rem;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 2.5rem;
  }
}
@media screen and (max-width: 640px) {
  .mv__slide-content {
    width: calc(100% - var(--layout-padding-mobile) * 2);
    padding: 7rem 0 4rem;
    gap: 1.5rem;
  }
}

.mv__message {
  align-self: stretch;
  flex: 1 0 60%;
  min-width: 0;
  max-width: 42rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 2.75rem;
}
@media screen and (max-width: 1024px) {
  .mv__message {
    flex: 0 1 auto;
    align-self: flex-start;
    justify-content: flex-end;
    gap: 2rem;
  }
}
@media screen and (max-width: 640px) {
  .mv__message {
    gap: 1.5rem;
  }
}

.mv__headline {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  color: var(--white);
  line-height: 1;
}

.mv__headline-line {
  display: flex;
  align-items: flex-end;
  gap: 0.5rem;
  flex-wrap: nowrap;
}
@media screen and (max-width: 640px) {
  .mv__headline-line {
    gap: 0.35rem;
  }
}

.mv__headline-main {
  font-size: clamp(2.75rem, 6.6vw, 5.9375rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
@media screen and (max-width: 1024px) {
  .mv__headline-main {
    font-size: clamp(2.25rem, 10vw, 4.5rem);
  }
}
@media screen and (max-width: 640px) {
  .mv__headline-main {
    font-size: clamp(2rem, 11vw, 3rem);
  }
}

.mv__headline-sub {
  font-size: clamp(2.25rem, 5.5vw, 5rem);
  font-weight: 400;
  letter-spacing: 0.08em;
  padding-bottom: 0.08em;
  white-space: nowrap;
}
@media screen and (max-width: 1024px) {
  .mv__headline-sub {
    font-size: clamp(1.75rem, 8.2vw, 3.75rem);
  }
}
@media screen and (max-width: 640px) {
  .mv__headline-sub {
    font-size: clamp(1.5rem, 8vw, 2.2rem);
  }
}

.mv__description {
  margin: 0 0 0 auto;
  flex: 0 0 clamp(22rem, 31%, 28.125rem);
  min-width: 22rem;
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.125rem;
  letter-spacing: 0.03em;
  text-align: left;
}
@media screen and (max-width: 1024px) {
  .mv__description {
    flex: 0 0 auto;
    margin-left: auto;
    width: 100%;
    min-width: 0;
    max-width: 22rem;
    font-size: 1rem;
  }
}
@media screen and (max-width: 640px) {
  .mv__description {
    max-width: 100%;
    font-size: 0.875rem;
    text-align: left;
  }
}

/* TOPページ News */
.news__item-title {
  margin: 0;
  color: var(--text);
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.05em;
  overflow-wrap: anywhere;
}

@media screen and (min-width: 768px) {
  .news__item-title {
    font-size: 1.0625rem;
  }
}
/* TOPページ 商品を探す（カテゴリ一覧） */
.top-products {
  padding-inline: 1rem;
  padding-bottom: 4rem;
}

.top-products__inner-wrap {
  max-width: 1440px;
  margin-inline: auto;
}

.section--top__inner--products {
  grid-template-columns: 1fr;
}

/* タイトルとコンテンツ間の余白はcompanyセクションと同値 */
.top-products__layout {
  display: flex;
  flex-direction: column;
  gap: 3.125rem;
}

.top-products__heading {
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
}

.top-products__title-wrap {
  max-width: none;
}

.top-products__categories {
  display: flex;
  flex-direction: column;
  gap: 4.5rem;
}

.top-products__category {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.top-products__category-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.top-products__category-title {
  margin: 0;
  color: var(--primary);
  font-size: 1.6875rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.03em;
}

.top-products__link {
  display: inline-flex;
  align-items: center;
  gap: 1.6rem;
  border-bottom: 1px solid #565656;
  color: var(--text);
  text-decoration: none;
  padding: 0.5625rem 1.25rem 0.5625rem 0;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.top-products__link--primary {
  border-bottom-color: var(--primary);
  color: var(--primary);
}

.top-products__link-arrow {
  position: relative;
  width: 0.8394rem;
  height: 0.5796rem;
  display: block;
  flex-shrink: 0;
}

.top-products__link-arrow::before,
.top-products__link-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
}

.top-products__link-arrow::before {
  left: 0;
  width: 100%;
  border-top: 1px solid currentColor;
  transform: translateY(-50%);
}

.top-products__link-arrow::after {
  right: 0;
  width: 0.35rem;
  height: 0.35rem;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}

.top-products__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.0625rem;
}

.top-products__item {
  min-width: 0;
  min-height: 19.023rem;
  display: block;
  background: #f9f9f9;
  color: #000;
  text-decoration: none;
}

.top-products__item-card {
  min-height: inherit;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  justify-content: space-between;
  padding-top: 0.9375rem;
  background: #f9f9f9;
}

.top-products__item-content {
  padding-inline: 0.9375rem;
}

.top-products__item-media {
  width: 100%;
  aspect-ratio: 244.25/188.368;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--white);
}

.top-products__item-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
}

.top-products__item-body {
  margin-top: 1rem;
}

.top-products__item-title {
  align-self: start;
  margin: 1rem 0 0;
  color: #000;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.05em;
  min-height: 4rem;
  max-height: 4.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  overflow-wrap: anywhere;
}

.top-products__item-cta {
  width: 3.2145rem;
  height: 1.8793rem;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: end;
  background: var(--primary);
  flex-shrink: 0;
}

.top-products__item-cta-row {
  display: flex;
  justify-content: flex-end;
}

.top-products__item-cta img {
  width: 0.8462rem;
  height: 0.5125rem;
  display: block;
  max-width: none;
  object-fit: contain;
}

@media (hover: hover) and (pointer: fine) and (min-width: 1025px) {
  .top-products__link {
    transition: color 0.3s ease;
  }
  .top-products__link-arrow {
    transition: transform 0.3s ease;
  }
  .top-products__link:hover,
  .top-products__link:focus-visible {
    color: var(--primary);
  }
  .top-products__link:hover .top-products__link-arrow,
  .top-products__link:focus-visible .top-products__link-arrow {
    transform: translateX(2px);
  }
  .top-products__item-media img {
    transition: transform 0.4s ease;
  }
  .top-products__item-title {
    transition: color 0.3s ease;
  }
  .top-products__item:hover .top-products__item-media img {
    transform: scale(1.04);
  }
  .top-products__item:hover .top-products__item-title {
    color: var(--primary);
  }
}
@media screen and (max-width: 1024px) {
  .top-products__layout {
    gap: 4.5rem;
  }
  .top-products__heading {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .top-products__categories {
    gap: 4rem;
  }
  .top-products__category-title {
    font-size: 1.5rem;
  }
  .top-products__link {
    padding-right: 1rem;
    font-size: 0.875rem;
  }
  .top-products__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .top-products__item {
    min-height: 17rem;
  }
  .top-products__item-card {
    padding-top: 0.75rem;
  }
  .top-products__item-content {
    padding-inline: 0.75rem;
  }
  .top-products__item-title {
    font-size: 1rem;
    min-height: 3.75rem;
  }
  .top-products__item-cta {
    width: 3rem;
    height: 1.75rem;
  }
}
@media screen and (max-width: 640px) {
  .section--top__inner--products {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  .top-products {
    padding-bottom: 2rem;
  }
  .top-products__layout {
    gap: 4.5rem;
  }
  .top-products__categories {
    gap: 4rem;
  }
  .top-products__category {
    gap: 1rem;
  }
  .top-products__category-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  .top-products__category-title {
    font-size: 1.375rem;
    line-height: 1.35;
  }
  .top-products__link {
    padding: 0.5rem 1rem 0.5rem 0;
    font-size: 0.8125rem;
  }
  .top-products__grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }
  .top-products__item {
    min-height: 13.5rem;
  }
  .top-products__item-card {
    padding-top: 0.625rem;
  }
  .top-products__item-content {
    padding-inline: 0.625rem;
  }
  .top-products__item-title {
    font-size: 0.875rem;
    min-height: 2.8rem;
    letter-spacing: 0.08em;
  }
  .top-products__item-cta {
    width: 3.4375rem;
    height: 2rem;
  }
  .top-products__item-cta img {
    width: 1.0375rem;
    height: 0.5258rem;
  }
}
/* TOPページ 採用情報 */
.section--top__inner--recruit {
  grid-template-columns: 1fr;
  padding-top: 7rem;
  padding-bottom: 5rem;
}

.top-recruit__panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  min-height: 400px;
  padding: 3.875rem 4.9375rem;
}

.top-recruit__bg,
.top-recruit__gradient {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.top-recruit__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 19%;
}

/* グラデーションは画像に含めずCSSで再現 */
.top-recruit__gradient {
  background: linear-gradient(90deg, var(--primary) 34.518%, rgba(153, 1, 0, 0) 75.191%);
}

.top-recruit__content {
  position: relative;
  z-index: var(--z-index-content);
  width: min(100%, 32.5rem);
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  color: var(--white);
}

/* タイトル周辺は共通(section--top__title-wrap)を使用し、色差分のみmodifierで上書き */
.section--top__en.top-recruit__en {
  color: var(--white);
}

.section--top__title.top-recruit__title {
  color: var(--white);
}

.top-recruit__desc {
  margin: 0;
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.top-recruit__button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  text-decoration: none;
  background: var(--white);
  color: var(--primary);
  padding: 14px 14px 14px 31px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.12em;
  width: fit-content;
  min-width: 180px;
}

.top-recruit__button .section--top__arrow {
  width: 0.8394rem;
  height: 0.5796rem;
  max-width: none;
  min-width: 0.8394rem;
  object-fit: contain;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

@media (hover: hover) and (pointer: fine) {
  .top-recruit__button:hover .section--top__arrow,
  .top-recruit__button:focus-visible .section--top__arrow {
    transform: translateX(2px);
  }
}
@media screen and (max-width: 640px) {
  .top-recruit__button {
    padding: 12px 10px 12px 26px;
    font-size: 0.875rem;
    min-width: 140px;
  }
}
@media screen and (max-width: 1024px) {
  .top-recruit__panel {
    min-height: 22rem;
    padding: 3.5rem 2.75rem;
  }
  .top-recruit__content {
    gap: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .top-recruit__panel {
    min-height: 31.25rem;
    padding: 3rem 1.5rem 2.5rem;
    gap: 1.5rem;
  }
  .section--top__inner--recruit {
    padding-top: 3.75rem;
    padding-bottom: 1.75rem;
  }
  .top-recruit__content {
    width: 100%;
    gap: 1.5rem;
  }
  .top-recruit__bg img {
    object-position: center bottom;
    transform: none;
    transform-origin: center bottom;
  }
  .top-recruit__gradient {
    background: linear-gradient(180deg, var(--primary) 0%, rgba(153, 1, 0, 0) 72%);
  }
  .top-recruit__desc {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 640px) {
  .top-recruit__panel {
    min-height: 33.25rem;
    padding: 2.75rem 1.25rem 2.25rem;
  }
}
/* TOPページ 企業情報 */
.top-company {
  position: relative;
  overflow: hidden;
  color: var(--white);
}

.top-company .section--top__inner {
  position: relative;
  z-index: var(--z-index-content);
  grid-template-columns: 1fr;
  gap: 0;
}

.top-company__bg,
.top-company__bg-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.top-company__bg {
  background-image: url("../images/top/company/bg-frame.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.top-company__bg-overlay {
  background: linear-gradient(180deg, rgba(59, 59, 59, 0.9) 0%, #3b3b3b 100%);
}

.top-company__layout {
  display: flex;
  flex-direction: column;
  gap: 3.125rem;
}

.top-company__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
}

.top-company__title-wrap {
  max-width: none;
}

.section--top__en.top-company__en {
  color: var(--white);
}

.section--top__title.top-company__title {
  color: var(--white);
}

.top-company__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.149fr) repeat(3, minmax(0, 1fr));
  grid-template-rows: repeat(2, 13.125rem);
  gap: 0.8125rem;
}

.top-company__card {
  position: relative;
  min-width: 0;
  display: block;
  overflow: hidden;
  text-decoration: none;
  color: var(--white);
  background: #595959;
}

.top-company__card--large {
  grid-row: 1/3;
}

.top-company__card-media {
  position: absolute;
  inset: 0;
}

.top-company__card-media img {
  width: 100%;
  height: 100%;
  display: block;
}

.top-company__card:not(.top-company__card--philosophy) .top-company__card-media img {
  object-fit: cover;
}

.top-company__card--philosophy .top-company__card-media img {
  object-fit: cover;
  object-position: 30% bottom;
}

@media screen and (max-width: 1024px) {
  .top-company__card--philosophy .top-company__card-media img {
    object-position: 30% 10%;
  }
}
.top-company__card--overview .top-company__card-media img {
  object-position: 50% 34%;
}

.top-company__card--locations .top-company__card-media img {
  object-position: 38% 18%;
}

.top-company__card--greeting .top-company__card-media img {
  object-position: 34% 26%;
}

.top-company__card--history .top-company__card-media img {
  object-position: center;
}

.top-company__card--non-production .top-company__card-media img {
  object-position: 45% 52%;
}

.top-company__card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
  mix-blend-mode: multiply;
  pointer-events: none;
}

.top-company__card-footer {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.top-company__card-label {
  padding: 0 0 0.5625rem 0.625rem;
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.1em;
  text-shadow: 0 0.25rem 0.625rem rgba(0, 0, 0, 0.35);
}

.top-company__card--large .top-company__card-label {
  padding: 0 0 0.875rem 1.125rem;
  font-size: 1.5625rem;
}

.top-company__card-cta {
  width: 3.902rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--primary);
}

.top-company__card-cta img {
  width: 1.0269rem;
  height: 0.6824rem;
  display: block;
  max-width: none;
  object-fit: contain;
}

@media (hover: hover) and (pointer: fine) and (min-width: 1025px) {
  .top-company__card-media img {
    transition: transform 0.4s ease;
  }
  .top-company__card:hover .top-company__card-media img {
    transform: scale(1.04);
  }
}
@media screen and (max-width: 1024px) {
  .top-company__bg {
    background-image: url("../images/top/company/bg-frame-mobile.webp");
    background-position: center;
  }
  .top-company__layout {
    gap: 4.5rem;
  }
  .top-company__head {
    align-items: flex-start;
    flex-direction: column;
    gap: 1.25rem;
  }
  .top-company__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
    gap: 0.5rem;
  }
  .top-company__card {
    aspect-ratio: 171/114;
  }
  .top-company__card--large {
    grid-column: 1/-1;
    grid-row: auto;
    order: 0;
    aspect-ratio: 350/128;
  }
  .top-company__card--philosophy {
    aspect-ratio: 250/128;
  }
  .top-company__card--overview {
    order: 1;
  }
  .top-company__card--greeting {
    order: 2;
  }
  .top-company__card--locations {
    order: 3;
  }
  .top-company__card--history {
    order: 4;
  }
  .top-company__card--non-production {
    order: 5;
  }
  .top-company__card--news {
    order: 6;
  }
  .top-company__card-label {
    padding: 0 0 0.25rem 0.625rem;
    font-size: clamp(0.875rem, 1.6vw, 1rem);
    text-shadow: 0 0.1389rem 0.3472rem rgba(0, 0, 0, 0.35);
  }
  .top-company__card--large .top-company__card-label {
    padding: 0 0 0.25rem 0.625rem;
    font-size: clamp(0.875rem, 1.6vw, 1rem);
  }
  .top-company__card-cta {
    width: clamp(2.1528rem, 4vw, 2.8rem);
    height: clamp(1.1806rem, 2.2vw, 1.5rem);
  }
  .top-company__card-cta img {
    width: clamp(0.5705rem, 1.1vw, 0.75rem);
    height: clamp(0.2109rem, 0.4vw, 0.28rem);
  }
}
@media screen and (max-width: 640px) {
  .section--top__inner--company {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  .top-company__layout {
    gap: 4.5rem;
  }
  .top-company__head {
    gap: 1rem;
  }
  .top-company__card-label {
    font-size: 0.8681rem;
    letter-spacing: 0.1em;
  }
  .top-company__card-cta {
    width: 2.1528rem;
    height: 1.1806rem;
  }
  .top-company__card-cta img {
    width: 0.5705rem;
    height: 0.2109rem;
  }
}
/* TOPページ Link集 */
.section--top__inner--links {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.top-links__inner {
  grid-column: 1/-1;
  display: flex;
  flex-direction: column;
  gap: 2.1875rem;
}

.top-links__heading {
  width: 100%;
  padding-bottom: 0.9375rem;
  border-bottom: 1px solid #909090;
  gap: 0;
}

.top-links__title-wrap {
  width: auto;
  max-width: none;
  flex-direction: row-reverse;
  align-items: baseline;
  gap: 1rem;
}

.top-links__kicker {
  padding-left: 0;
  gap: 0;
}

.top-links__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem 2.6875rem;
}

.top-links__item {
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: #fff;
  box-shadow: 0 0 6px rgba(143, 143, 143, 0.25);
}

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

.top-links__item--allnight {
  background: var(--white);
  overflow: hidden;
}

@media screen and (max-width: 1024px) {
  .top-links__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }
}
@media screen and (max-width: 640px) {
  .section--top__inner--links {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .top-links__inner {
    gap: 1.5rem;
  }
  .top-links__title-wrap {
    gap: 0.5rem;
  }
  .top-links__grid {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
}
/* TOPページ Contact（Link集の下） */
.section--top__inner--contact {
  grid-template-columns: 1fr;
}

@media screen and (min-width: 1025px) {
  .section--top__inner--contact {
    max-width: 1440px;
    padding: 6rem 2.5rem 4rem;
  }
}
.top-contact__grid {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) 29.5625rem;
  grid-template-rows: 25.125rem 10.0625rem;
  gap: 0.625rem;
}

.top-contact__item {
  position: relative;
  display: flex;
  color: var(--white);
  text-decoration: none;
  overflow: hidden;
}

.top-contact__item--contact {
  grid-column: 1/3;
  grid-row: 1;
  flex-direction: column;
  justify-content: space-between;
  padding: 3.125rem;
  background: #3b3b3b;
}

.top-contact__item--catalog,
.top-contact__item--news {
  grid-row: 2;
  align-items: center;
  background: #8b8b8b;
}

.top-contact__item--catalog {
  grid-column: 1;
  padding: 1.75rem;
}

.top-contact__item--news {
  grid-column: 2;
  padding: 1.75rem;
}

.top-contact__item--sourcing {
  grid-column: 3;
  grid-row: 1/3;
  margin-left: 0.4375rem;
  flex-direction: column;
  justify-content: space-between;
  padding: 3.125rem 2.1875rem;
}

.top-contact__head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}

.top-contact__title {
  margin: 0;
  color: var(--white);
  font-family: "M PLUS 1", "Noto Sans JP", sans-serif;
  font-size: 3.75rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.07em;
}

.top-contact__subtitle {
  margin: 0;
  color: var(--white);
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.12em;
}

.top-contact__desc {
  margin: 0;
  color: var(--white);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.12em;
}

.top-contact__item-label {
  margin: 0;
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.12em;
}

.top-contact__item--catalog .top-contact__item-label {
  line-height: 1.6;
}

.top-contact__item--news .top-contact__item-label {
  line-height: 1.2;
  letter-spacing: 0.058em;
}

.top-contact__item-kicker {
  margin: 0;
  color: var(--white);
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.08em;
}

.top-contact__item-copy {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.top-contact__bg,
.top-contact__overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

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

.top-contact__overlay {
  background: rgba(153, 1, 0, 0.85);
}

.top-contact__body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.75rem;
  height: 100%;
}

.top-contact__item--sourcing .top-contact__desc {
  max-width: 15.8125rem;
}

.top-contact__cta {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 9.75rem;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  border-top: 2px solid var(--white);
  border-left: 2px solid var(--white);
  z-index: 2;
}

.top-contact__cta--sm {
  width: 4.875rem;
  height: 2.5rem;
  border-top-width: 1px;
  border-left-width: 1px;
}

.top-contact__arrow {
  display: block;
  max-width: none;
  object-fit: contain;
}

.top-contact__arrow--lg {
  width: 2.336rem;
  height: 1.4335rem;
}

.top-contact__arrow--sm {
  width: 1.1833rem;
  height: 0.726rem;
}

@media screen and (max-width: 1024px) {
  .top-contact__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto;
    row-gap: 0.3125rem;
    column-gap: 0.3125rem;
  }
  .top-contact__item--contact,
  .top-contact__item--catalog,
  .top-contact__item--news,
  .top-contact__item--sourcing {
    grid-row: auto;
    margin-left: 0;
  }
  .top-contact__item--contact {
    grid-column: 1/-1;
    min-height: 14.75rem;
    padding: 1.875rem 1.25rem 3.125rem;
  }
  .top-contact__item--catalog {
    grid-column: 1;
    min-height: 4.875rem;
    padding: 1.75rem;
  }
  .top-contact__item--news {
    grid-column: 2;
    min-height: 4.875rem;
    padding: 1.75rem 4rem 1.75rem 1.75rem;
  }
  .top-contact__item--sourcing {
    grid-column: 1/-1;
    min-height: 14.75rem;
    margin-top: 0.625rem;
    padding: 1.875rem 1.25rem 3.125rem;
  }
  .top-contact__title {
    font-size: 2.5rem;
  }
  .top-contact__subtitle {
    font-size: 0.9375rem;
  }
  .top-contact__desc {
    font-size: 1rem;
    letter-spacing: 0.12em;
  }
  .top-contact__item-label {
    font-size: 1rem;
  }
  .top-contact__item-kicker {
    font-size: 0.8125rem;
  }
  .top-contact__cta,
  .top-contact__cta--sm {
    width: 4.875rem;
    height: 2.5rem;
    border-top-width: 1px;
    border-left-width: 1px;
  }
  .top-contact__arrow--lg,
  .top-contact__arrow--sm {
    width: 1.1833rem;
    height: 0.726rem;
  }
}
@media screen and (max-width: 640px) {
  .section--top__inner--contact {
    padding: 2rem 1.25rem 3rem;
  }
  .top-contact__grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .top-contact__item--contact,
  .top-contact__item--catalog,
  .top-contact__item--news,
  .top-contact__item--sourcing {
    grid-column: 1;
  }
  .top-contact__item--catalog {
    padding: 1rem;
  }
  .top-contact__item--news {
    padding: 1.75rem 4rem 1.75rem 1.75rem;
  }
  .top-contact__cta,
  .top-contact__cta--sm {
    width: 3rem;
    height: 1.75rem;
  }
}
.recruit-menu-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background-color: #d4d4d8;
}

@media screen and (min-width: 1024px) {
  .recruit-menu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(0, 1fr));
  }
  .recruit-menu-grid .recruit-menu-card {
    min-height: 420px;
  }
  .recruit-menu-card--jobs {
    grid-column: 1/-1;
  }
}
.recruit-menu-card__button {
  height: 40px;
}

.recruit-job-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media screen and (min-width: 640px) {
  .recruit-menu-card__button {
    height: 44px;
  }
}
@media screen and (max-width: 640px) {
  .recruit-menu-card--new-graduate > img {
    object-position: 100% center;
  }
}
.recruit-menu-card__jobs-images {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
}

.recruit-menu-card__jobs-cell {
  position: relative;
  min-width: 0;
  overflow: hidden;
}

.recruit-menu-card__jobs-image {
  position: absolute;
  display: block;
  width: auto;
  max-width: none;
}

.recruit-menu-card__jobs-image--01 {
  top: -23.57%;
  left: -10.28%;
  height: 134%;
}

.recruit-menu-card__jobs-image--02 {
  top: -63.53%;
  left: -52%;
  height: 163.53%;
}

.recruit-menu-card__jobs-image--03 {
  top: -17.7%;
  left: -42.86%;
  height: 117.7%;
}

@media screen and (max-width: 1023px) {
  .recruit-menu-card__jobs-images {
    left: 50%;
    width: 122%;
    transform: translateX(-50%);
  }
  .recruit-menu-card__jobs-image {
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .recruit-menu-card__jobs-image--01 {
    object-position: 34% center;
  }
  .recruit-menu-card__jobs-image--02 {
    object-position: 42% center;
  }
  .recruit-menu-card__jobs-image--03 {
    object-position: 63% center;
  }
}
.group:hover .cta-link,
.group:focus-visible .cta-link,
.group:focus-within .cta-link {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

.group:hover .group-hover\:text-primary,
.group:focus-visible .group-hover\:text-primary,
.group:focus-within .group-hover\:text-primary {
  color: var(--primary);
}

.company-card-image {
  transition: transform 0.4s ease;
}

.group:hover .company-card-image,
.group:focus-visible .company-card-image,
.group:focus-within .company-card-image {
  transform: scale(1.04);
}

.philosophy-principles {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media screen and (min-width: 1024px) {
  .philosophy-principles {
    grid-template-columns: minmax(0, 410fr) minmax(0, 436fr);
    gap: 3rem 1.5rem;
    align-items: start;
  }
  .philosophy-principles__item {
    min-width: 0;
  }
  .philosophy-principles .philosophy-principles__media {
    display: flex;
    align-items: stretch;
    justify-content: center;
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }
  #philosophy .philosophy-principles__media {
    aspect-ratio: 300/436;
  }
  #conduct .philosophy-principles__media {
    aspect-ratio: 300/410;
  }
  .philosophy-principles .philosophy-principles__image {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}
.history-timeline-wrap {
  background-color: var(--white);
  padding: 1rem;
}
@media (min-width: 768px) {
  .history-timeline-wrap {
    padding: 1.5rem 2rem;
  }
}

.history-timeline {
  position: relative;
  padding-left: 2.5rem;
}
@media (min-width: 768px) {
  .history-timeline {
    padding-left: 4rem;
  }
}

.history-timeline__line {
  pointer-events: none;
  position: absolute;
  top: 1rem;
  right: auto;
  bottom: 1rem;
  left: 1.5rem;
  width: 1px;
  background-color: #e4e4e7;
}
@media (min-width: 768px) {
  .history-timeline__line {
    top: 1.5rem;
    bottom: 1.5rem;
    left: 2rem;
  }
}

.history-timeline__item {
  position: relative;
  display: grid;
  gap: 0.75rem;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.history-timeline__marker {
  position: absolute;
  top: 1.75rem;
  left: -1.5rem;
  width: 1rem;
  height: 1rem;
  border: 2px solid var(--primary);
  border-radius: 9999px;
  background-color: var(--white);
}
@media (min-width: 768px) {
  .history-timeline__marker {
    left: -2.5rem;
  }
}

.history-timeline__year {
  font-size: 1.5rem;
  line-height: 1 !important;
  font-weight: 700;
}

.history-timeline__text {
  font-size: 0.875rem;
}
@media (min-width: 768px) {
  .history-timeline__text {
    font-size: 1rem;
  }
}

.history-timeline__image {
  width: 100%;
  max-width: 21rem;
  height: auto;
  border-radius: 0.25rem;
  object-fit: cover;
  display: block;
}

.epoxy-molded-editor-content.space-y-12 > :first-child + * {
  margin-block-start: 5rem;
}

.industrial-product-sections {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}

.industrial-product-content {
  scroll-margin-top: 6rem;
}
.industrial-product-content > :not(:last-child):not(.industrial-product-content__title) {
  margin-block-end: 3rem;
}

.industrial-product-content__title {
  margin: 0;
  margin-bottom: 2rem;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 2rem;
  color: var(--primary);
  letter-spacing: -0.025em;
}

.industrial-product-category > :not(:last-child) {
  margin-block-end: 2rem;
}

.industrial-product-category__header {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding-left: 1rem;
  border-left: 4px solid #000;
}

.industrial-product-category__lead {
  margin: 0;
  font-size: 1rem;
  line-height: 1.625;
}

.industrial-product-category__title {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.75rem;
  letter-spacing: -0.025em;
  scroll-margin-top: 6rem;
}

.industrial-product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
  margin-bottom: 3rem;
}

.industrial-product-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.industrial-product-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 0.5rem;
  background-color: #f9f9f9;
  border: 1px solid #e4e4e7;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-duration: 150ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.industrial-product-card:hover {
  background-color: #f9f9f9;
}

.industrial-product-card__media {
  width: 100%;
  padding: 1rem;
  overflow: hidden;
  aspect-ratio: 4/3;
  background-color: #fff;
}

.industrial-product-card__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.industrial-product-card__body {
  margin-top: 1rem;
}
.industrial-product-card__body > :not(:last-child) {
  margin-block-end: 0.5rem;
}

.industrial-product-card__heading {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-height: 3rem;
}

.industrial-product-card__body > .industrial-product-card__heading:not(:last-child) {
  margin-block-end: 1rem;
}

.industrial-product-card__title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.5rem;
  color: #18181b;
  letter-spacing: -0.025em;
  transition: color 200ms cubic-bezier(0.4, 0, 0.2, 1);
}

.industrial-product-card__icon {
  flex-shrink: 0;
  width: 0.5rem;
  height: 0.5rem;
}

.industrial-product-card__meta {
  font-size: 0.75rem;
  line-height: 1rem;
  color: #71717a;
}

.industrial-product-card__description {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.25rem;
  color: #52525b;
}

.industrial-product-category-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  row-gap: 3rem;
}

@media (hover: hover) {
  .industrial-product-card-link:hover .industrial-product-card__title {
    color: var(--primary-red);
  }
}
@media (min-width: 640px) {
  .industrial-product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .industrial-product-category-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 0.5rem;
    row-gap: 3rem;
  }
  .industrial-product-category-row .industrial-product-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .industrial-product-card {
    padding: 1rem;
  }
  .industrial-product-card__meta {
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
  .industrial-product-card__description {
    font-size: 0.875rem;
  }
}
@media (min-width: 768px) {
  .industrial-product-content > :not(:last-child):not(.industrial-product-content__title) {
    margin-block-end: 5rem;
  }
  .industrial-product-content__title {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
  .industrial-product-category__title {
    font-size: 1.5rem;
    line-height: 2rem;
  }
  .industrial-product-grid {
    gap: 1rem;
  }
}
.product-anchor-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-anchor-item {
  list-style: none;
}

.product-anchor-link {
  position: relative;
  display: block;
  padding-left: 20px;
  font-size: 0.875rem;
  line-height: 1.65;
  color: inherit;
  text-decoration: none;
}

.product-anchor-link::before {
  content: "";
  position: absolute;
  top: 0.45em;
  left: 4px;
  width: 8px;
  height: 8px;
  border-right: 2px solid #990100;
  border-bottom: 2px solid #990100;
  transform: rotate(45deg);
}

.product-anchor-text {
  color: inherit;
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, color 0.25s ease;
}

@media (hover: hover) {
  .product-anchor-link:hover .product-anchor-text {
    color: var(--primary-red);
    border-bottom-color: var(--primary-red);
  }
}
@media (min-width: 1024px) {
  .product-anchor-list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .product-anchor-item {
    flex: 0 0 auto;
  }
}
.product-content__hero {
  background-color: #e4e4e7;
  padding: 1rem;
  margin-bottom: 3.5rem;
}
@media (min-width: 768px) {
  .product-content__hero:has(.product-content__hero-items--single) {
    max-width: 50%;
  }
}
@media (min-width: 768px) {
  .product-content__hero:has(.product-content__hero-item--split) {
    max-width: 100%;
  }
}
.product-content__hero-items {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
  grid-template-columns: 1fr;
}
.product-content__hero-items--single {
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .product-content__hero-items--double {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 768px) {
  .product-content__hero-items--triple {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1280px) {
  .product-content__hero-items--triple {
    grid-template-columns: repeat(3, 1fr);
  }
}
.product-content__hero-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
  background-color: #f4f4f5;
  padding: 1.25rem;
}
.product-content__hero-item-headlines {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.product-content__hero-item-tag {
  display: inline-flex;
  width: fit-content;
  margin: 0;
  padding: 0.25rem 0.625rem;
  background-color: var(--primary);
  color: #fff;
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.3;
}
.product-content__hero-item-title {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.3;
  color: #2c2222;
}
.product-content__hero-item-figure {
  margin: 0;
  overflow: hidden;
  width: 100%;
  display: flex;
  justify-content: center;
}
.product-content__hero-item-figure img {
  display: block;
  width: 70%;
  aspect-ratio: 4/3;
  object-fit: contain;
  object-position: top;
}
@media (min-width: 768px) {
  .product-content__hero-item-figure img {
    width: 50%;
  }
}
.product-content__hero-item-figure--landscape img {
  width: 80%;
  aspect-ratio: 2/1;
}
@media (min-width: 768px) {
  .product-content__hero-item-figure--landscape img {
    width: 80%;
  }
}
.product-content__hero-item-figure--large img {
  width: 100%;
}
@media (min-width: 768px) {
  .product-content__hero-item-figure--large img {
    width: 100%;
  }
}
.product-content__hero-item-figure--aspect-4-2 img {
  aspect-ratio: 4/2;
}
@media (min-width: 768px) {
  .product-content__hero-item--split {
    flex-direction: row;
    align-items: center;
    gap: 2.5rem;
  }
  .product-content__hero-item--split > .product-content__hero-item-main,
  .product-content__hero-item--split > .product-content__hero-item-figure {
    flex: 1 1 0;
    min-width: 0;
  }
}
.product-content__hero-item-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  width: 100%;
}
.product-content__hero-item-leads {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}
.product-content__hero-item-lead {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: #2c2222;
}
@media (min-width: 768px) {
  .product-content__hero-item-lead {
    font-size: 1.2rem;
  }
}
.product-content__hero-item-caption {
  margin: 0;
  font-size: 0.875rem;
  color: #6f6868;
}
.product-content__hero-item-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 0.5rem;
}
.product-content__hero-item-list > li {
  position: relative;
  margin: 0;
  padding-left: 1em;
  font-size: 0.875rem;
  color: #2c2222;
}
.product-content__hero-item-list > li::before {
  content: "・";
  position: absolute;
  left: 0;
  color: var(--primary);
}
.product-content__hero-item-list a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 0.15em;
  transition: color 0.15s ease;
}
.product-content__hero-item-list a:hover, .product-content__hero-item-list a:focus-visible {
  color: #d32f2f;
}
.product-content__hero-tagline {
  margin: 0;
  padding: 0;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--primary);
  text-align: left;
  grid-column: 1/-1;
}
@media (min-width: 768px) {
  .product-content__hero-tagline {
    font-size: 1.25rem;
  }
}
@media (min-width: 1280px) {
  .product-content__hero-tagline--span-1 {
    grid-column: span 1;
  }
}
@media (min-width: 1280px) {
  .product-content__hero-tagline--span-2 {
    grid-column: span 2;
  }
}
@media (min-width: 1280px) {
  .product-content__hero-tagline--span-3 {
    grid-column: span 3;
  }
}
.product-content__brand-tag {
  display: inline-block;
  width: fit-content;
  margin: 0;
  padding: 0.35rem 0.9rem;
  background-color: var(--primary);
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .product-content__brand-tag {
    font-size: 1.5rem;
  }
}
.product-content__cols {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: clamp(1rem, 2vw, 2rem);
  margin-bottom: 2rem;
}
.product-content__cols > * {
  flex: 1 1 20rem;
  min-width: 0;
}
.product-content__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .product-content__grid {
    gap: 2rem;
  }
}
@media (min-width: 768px) {
  .product-content__grid--cols-2 {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 768px) {
  .product-content__grid--cols-3 {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.product-content__credit {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: #6f6868;
  letter-spacing: 0.02em;
}
.product-content__paragraphs {
  margin-bottom: 2.5rem;
}
.product-content__paragraphs > p:last-child {
  margin-bottom: 0;
}
.product-content__figure {
  margin: 1.5rem 0;
  text-align: left;
}
.product-content__figure img {
  display: block;
}
.product-content__figure figcaption {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: #6f6868;
  letter-spacing: 0.02em;
}
.product-content__figure--full img {
  width: 100%;
  height: auto;
}
.product-content__figure--inline {
  display: inline-block;
  margin: 0.5rem;
  vertical-align: middle;
}
.product-content__figure--framed {
  background: #fff;
  border: 1px solid #e0e0e0;
  padding: 0.25rem;
}
.product-content__image {
  display: block;
  max-width: 100%;
  height: auto;
}
.product-content__list {
  margin-bottom: 1.5rem;
  padding-left: 1.25rem;
  list-style: none;
}
.product-content__list--inline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  padding-left: 0;
}
.product-content__list--numbered {
  list-style: decimal;
  padding-left: 1.5rem;
}
.product-content__list--numbered .product-content__list-item {
  padding-left: 0;
}
.product-content__list--numbered .product-content__list-item::before {
  content: none;
}
.product-content__list-item {
  position: relative;
  margin-bottom: 0.5rem;
  padding-left: 1rem;
}
.product-content__list-item::before {
  content: "";
  position: absolute;
  top: 0.75rem;
  left: 0;
  width: 6px;
  height: 6px;
  background-color: var(--primary);
}
.product-content__list-item a, .product-content p a, .product-content li a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 0.15em;
  transition: color 0.15s ease;
}
.product-content__list-item a:hover, .product-content__list-item a:focus-visible, .product-content p a:hover, .product-content p a:focus-visible, .product-content li a:hover, .product-content li a:focus-visible {
  color: #d32f2f;
}
.product-content__features, .product-content__usages {
  margin-bottom: 2rem;
}

.product-summary {
  display: grid;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .product-summary {
    grid-template-columns: 1.1fr 1fr;
    align-items: start;
  }
}
.product-summary__figure {
  overflow: hidden;
  margin: 0;
}
.product-summary__image {
  aspect-ratio: 4/3;
  width: 100%;
  object-fit: contain;
  object-position: top;
}
.product-summary__info > * + * {
  margin-top: 2rem;
}
.product-summary__cta {
  display: inline-flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  border: 1px solid #18181b;
  background-color: #18181b;
  padding: 0.75rem 1rem;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}
@media (hover: hover) {
  .product-summary__cta:hover, .product-summary__cta:focus-visible {
    background-color: #fff;
  }
}

.not-found-page {
  padding: 5rem 0 7rem;
  text-align: center;
}

.not-found-code {
  font-size: clamp(5rem, 12vw, 9rem);
  font-weight: 700;
  line-height: 1.1;
  color: #635b50;
  letter-spacing: 0.04em;
}

.not-found-page h1 {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  line-height: 1.6;
  margin-top: 1.75rem;
}

.not-found-description {
  line-height: 2;
  margin-top: 1.5rem;
}

.not-found-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.5rem;
}

.not-found-actions a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  padding: 1rem 1.5rem;
  border: 1px solid #635b50;
  border-radius: 3px;
  font-weight: 700;
}

.not-found-actions a:hover {
  text-decoration: underline;
  text-underline-offset: 0.25em;
}

.not-found-actions .not-found-home {
  background: #635b50;
  color: #fff;
}

@media (max-width: 600px) {
  .not-found-page {
    padding: 4rem 0;
  }
  .not-found-actions {
    flex-direction: column;
  }
}

/*# sourceMappingURL=style.css.map */
