﻿@charset "UTF-8";

:root {
  --bg: #fff;
  --ink: #111;
  --brand-red: #e30017;
  --brand-blue: #0c2f83;
  /* ロゴカラー基調のボタン用パレット（旧・青テーマの置き換え） */
  --brand-pink: #cc5d77;       /* 基本：枠線/文字色 */
  --brand-pink-dark: #be4f68;  /* やや濃いめ：塗りボタンのホバー、送信ボタン地色、小さめ文字 */
  --brand-pink-deep: #a23e55;  /* 濃いめ：company-band 等の背景、送信ボタンのホバー */
  --line: #b5b5b5;
  --site-header-height: 144px;
  --site-header-height-sp: 70px;
}

body {
  margin: 0;
  padding-top: var(--site-header-height);
  background: var(--bg);
  color: var(--ink);
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

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

.inner {
  width: min(1060px, calc(100% - 32px));
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  body {
    padding-top: var(--site-header-height-sp);
  }
}

.logo-main {
  margin: 0 auto 14px;
  width: 300px;
  height: 50px;
}

.logo-main img {
  width: 300px;
  height: 50px;
}


.hero {
  margin-top: 16px;
}

.hero-slider {
  height: 400px;
  overflow: hidden;
  position: relative;
}

.hero-slider-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  margin: 0;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  animation: heroFade 36s infinite ease-in-out;
}

.hero-slide:nth-child(1) { animation-delay: 0s; }
.hero-slide:nth-child(2) { animation-delay: 6s; }
.hero-slide:nth-child(3) { animation-delay: 12s; }
.hero-slide:nth-child(4) { animation-delay: 18s; }
.hero-slide:nth-child(5) { animation-delay: 24s; }
.hero-slide:nth-child(6) { animation-delay: 30s; }

.hero-slide:first-child { animation-name: heroFadeFirst; }

.hero-slide img {
  height: 100%;
 max-height: 400px;
  object-fit: cover;
}

@keyframes heroFade {
  0% { opacity: 0; }
  8% { opacity: 1; }
  40% { opacity: 1; }
  48% { opacity: 0; }
  100% { opacity: 0; }
}

@keyframes heroFadeFirst {
  0% { opacity: 1; }
  40% { opacity: 1; }
  48% { opacity: 0; }
  100% { opacity: 0; }
}

.category-links {
  margin-top: 12px;
}

.category-links ul {
  margin: 0;
  padding: 0;
  display: grid;
  column-gap: 41px;
  row-gap: 12px;
  grid-template-columns: repeat(4, 250px);
  justify-content: center;
}

.category-links li {
  margin: 0;
  padding: 0;
  width: 250px;
  height: 160px;
  position: relative;
}

.category-links li + li::before {
  content: "";
  position: absolute;
  left: -21px;
  top: 0;
  width: 1px;
  height: 160px;
  background: #ddd;
}

.category-card {
  width: 100%;
  height: 100%;
  display: block;
  overflow: hidden;
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-card strong {
  position: relative;
  z-index: 1;
  display: block;
  font-size: 32px;
  line-height: 0.95;
}

.category-card span {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 8px;
  font-size: 22px;
  font-weight: 700;
}

.news {
  padding: 40px 0 18px;
}

.news-index-link {
  margin: -8px 0 32px;
  text-align: center;
  font-size: 13px;
}

.news-index-link a {
  display: inline-flex;
  width: 150px;
  height: 24px;
  align-items: center;
  justify-content: center;
  color: var(--brand-pink);
  border: 1px solid var(--brand-pink);
  line-height: 1;
}

.news-index-link a:hover {
  background: var(--brand-pink-dark);
  color: #fff;
}

.section-title {
  margin: 0 0 22px;
  text-align: center;
  font-size: 28px;
  line-height: 1.1;
  font-weight: 700;
  position: relative;
}

.section-title::before,
.section-title::after {
  content: "";
  width: 70px;
  border-top: 1px solid #555;
  position: absolute;
  top: 50%;
}

.section-title::before {
  left: calc(50% - 250px);
}

.section-title::after {
  right: calc(50% - 250px);
}

.section-title small {
  display: block;
  margin-top: 5px;
  font-size: 14px;
  font-weight: 500;
}

.news-featured {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 30px;
  font-size: 10px;
}

.news-featured-item {
  width: 200px;
}

.news-featured-item a {
  display: block;
}

.news-image-wrap {
  width: 200px;
  height: 140px;
}

.news-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 1px solid #d0d0d0;
}

.news-tile-title {
  width: 200px;
  height: 90px;
  margin: -22px auto 0;
  padding: 10px;
  font-size: 10px;
  line-height: 1.5;
  background: #fff;
  border: 1px solid #d0d0d0;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
}

.news-tile-title .news-emphasis {
  color: var(--brand-red);
  font-weight: 700;
}

.news-list {
  padding: 0;
  margin: 22px 0 0;
}

.news-list li {
  display: grid;
  grid-template-columns: 120px 140px 1fr 112px;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid #d6d6d6;
}

.badge {
  justify-self: start;
  width: 120px;
  background: #FFFF00;
  border-radius: 999px;
  padding: 3px 16px;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}

.news-list time,
.news-list p {
  margin: 0;
}

.news-list time {
  font-size: 16px;
  white-space: nowrap;
}

.news-list p {
  font-size: 14px;
}

.more-btn {
  border: 1px solid var(--brand-pink);
  color: var(--brand-pink);
  text-align: center;
  font-size: 12px;
  padding: 5px 8px;
  transition: background-color 0.3s, color 0.3s;
}

.more-btn:hover {
  background: var(--brand-pink-dark);
  color: #fff;
}

.products {
  padding: 24px 0 48px;
}

.products-quality {
  padding-top: 0;
}

.product-row {
  display: grid;
  grid-template-columns: 650px 1fr;
  gap: 0;
  height: 350px;
  margin-bottom: 32px;
  background: #fff;
}

.product-row.reverse {
  grid-template-columns: 1fr 650px;
}

.product-media {
  width: 650px;
  height: 350px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.product-copy p {
    font-size: 12px;
  margin: 0 0 24px;
}
.product-copy {
  padding: 0 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.product-en {
    text-align: center;
    line-height: 1;
  margin: 6px !important;
  font-size: 13px;
  color: #444;
}

.product-copy h3 {
  margin: 4px 0 12px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}



.product-illust-wrap {
  width: 250px;
  height: 116px;
  margin: 0 0 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-illust {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.action-btn {
  width: 250px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--brand-pink);
  color: var(--brand-pink);
  padding: 0;
  font-weight: 700;
  transition: background-color 0.3s, color 0.3s;
}

.action-btn:hover {
  background: var(--brand-pink-dark);
  border-color: var(--brand-pink-dark);
  color: #fff;
}

.company-band {
  background: #b3b3b3;
  padding: 52px 0 60px;
}

.section-title-light {
  color: #fff;
}

.section-title-light::before,
.section-title-light::after {
  border-color: rgba(255, 255, 255, 0.7);
}

.company-card {
  width: min(760px, 100%);
  margin: 0 auto;
  background: #fff;
  padding: 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.company-card p {
  margin: 0 0 20px;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "MS PMincho", serif;
  font-weight: 600;
}

.company-card p.company-card-label {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
}

.company-card .company-card-image {
  margin: 0;
  width: auto;
  position: absolute;
  right: 0;
  bottom: 0;
  line-height: 0;
  z-index: 0;
}

.company-card .company-card-image img {
  width: auto;
  height: 140px;
  object-fit: cover;
}

.company-card .action-btn {
  position: relative;
  z-index: 1;
}

.company-card p,
.company-card .company-card-label {
  position: relative;
  z-index: 2;
  text-shadow:
    -1px -1px 0 #fff,
    1px -1px 0 #fff,
    -1px 1px 0 #fff,
    1px 1px 0 #fff;
}

.to-top-wrap {
  padding: 36px 0;
  text-align: center;
}

.to-top {
  display: inline-grid;
  place-items: center;
  width: 60px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 2px solid var(--brand-pink);
  color: var(--brand-pink);
  background: #fff;
}

@media (max-width: 900px) {
  .logo-main {
    font-size: 30px;
  }

  .category-links ul {
    grid-template-columns: 1fr 1fr;
  }

  .news-featured {
    flex-wrap: wrap;
  }

  .category-links li {
    width: auto;
  }

  .category-links li + li::before {
    display: none;
  }

  .section-title {
    font-size: 28px;
  }

  .news-list li {
    grid-template-columns: 1fr;
    justify-items: start;
    padding: 12px 0;
  }

  .more-btn {
    margin-top: 4px;
  }

  .product-row,
  .product-row.reverse {
    grid-template-columns: 1fr;
    margin-bottom: 0;
  }

  .product-media {
    width: 100%;
    height: 350px;
  }
}

@media (max-width: 560px) {
  .category-links ul {
    grid-template-columns: 1fr;
  }

  .inner {
    width: calc(100% - 24px);
  }

  .category-card strong {
    font-size: 26px;
  }

  .category-card span,
  .product-copy h3 {
    font-size: 28px;
  }

}

/* medical-device page */
.medical-device-page {
  /* background: #efefef; */
  padding-bottom: 48px;
}

.md-breadcrumb {
  font-size: 11px;
  padding: 10px;
}

.md-page-title-wrap {
  padding: 6px 0 14px;
}

.md-page-title {
  margin-bottom: 0;
}

.md-page-title br {
  display: block;
}

.section-title.md-page-title::before {
  left: 0;
}

.section-title.md-page-title::after {
  right: 0;
}

.md-page-hero {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.md-page-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.md-products-list {
  padding-top: 32px;
}

.md-product-item {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 44px;
  align-items: start;
}

.md-product-text {
  width: 100%;
  max-width: 100%;
}

.md-product-side {
  width: 100%;
  max-width: 440px;
  justify-self: start;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.md-product-text h2 {
  margin: 0;
  font-family: "Times New Roman", serif;
  font-style: italic;
  font-size: 32px;
  line-height: 1;
}

.md-product-jp {
    max-width: 270px;
    width: 100%;
  margin: 8px 0 12px;
  font-size: 20px;
  border-top: 1px solid #777;
  padding-top: 8px;
}

.md-feature-icons {
  width: 270px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 8px;
}

.md-feature-icons img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
}

.md-product-text p {
  margin: 0 0 8px;
  font-size: 14px;
  line-height: 1.6;
}

.md-product-actions {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  max-width: 280px;
}

.md-products-list .action-btn {
  width: 190px;
  height: 40px;
  font-size: 14px;
}

.md-pdf-btn {
  width: 150px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #7f7f7f;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  transition: background-color 0.3s;
}

.md-pdf-btn:hover {
  background: var(--brand-pink-dark);
}

.md-product-image {
  width: 100%;
  max-width: 440px;
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.md-product-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

@media (max-width: 767px) {
  .md-product-item {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .md-product-side {
    width: 100%;
    max-width: 440px;
    justify-self: start;
  }

  .md-product-image {
    width: 100%;
    max-width: 440px;
    height: auto;
  }

  .md-product-actions {
    justify-content: flex-start;
  }

  .md-product-image img {
    width: min(360px, 100%);
    margin: 0;
  }
}

/* needle page */
.needle-page {
  padding-bottom: 56px;
}

.needle-content {
  max-width: 860px;
}

.needle-head {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 24px;
  align-items: start;
}

.needle-title {
  margin: 0;
  font-family: "Times New Roman", serif;
  font-style: italic;
  font-size: 32px;
  line-height: 1;
}

.needle-subtitle {
  margin: 16px 0;
  padding-top: 10px;
  border-top: 1px solid #777;
  font-size: 16px;
  line-height: 1.3;
}

.needle-line {
  margin: 0 0 6px;
  font-size: 14px;
}

.needle-line-gap {
  margin-bottom: 12px;
}

.needle-icons {
  max-width: 270px;
  margin: 0 0 12px auto;
}

.needle-pdf-btn {
  width: 270px;
  margin-left: auto;
}

.needle-pdf-btn a {
  display: flex;
  width: 100%;
  height: 60px;
  align-items: center;
  justify-content: center;
  background: #7f7f7f;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  transition: background-color 0.3s;
}

.needle-pdf-btn a:hover {
  background: var(--brand-pink-dark);
}

.needle-gallery-wrap {
  margin-top: 26px;
}

.needle-gallery-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

.needle-gallery-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 6px;
  margin-top: 6px;
}

.needle-gallery-top img {
  width: 100%;
  aspect-ratio: 497 / 260;
  height: auto;
  object-fit: cover;
}

.needle-gallery-bottom img {
  width: 100%;
  aspect-ratio: 332 / 190;
  height: auto;
  object-fit: cover;
}

.needle-gallery-note {
  margin: 6px 0 0;
  font-size: 12px;
  color: #666;
}

.needle-specs {
  margin-top: 30px;
}

.needle-spec-block {
  margin-bottom: 22px;
}

.needle-spec-title {
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
}

.needle-spec-title::before {
  content: "";
  width: 12px;
  height: 20px;
  margin-right: 10px;
  background-color: #D7D7D7;
  flex: 0 0 auto;
}

.needle-spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.needle-spec-table thead tr {
  border-bottom: 1px solid #cfcfcf;
}

.needle-spec-table th,
.needle-spec-table td {
  padding: 6px 4px;
  text-align: left;
}

.needle-spec-table td {
  padding-top: 4px;
  padding-bottom: 4px;
}

.needle-spec-table-compact {
  width: 76%;
}

.needle-footnote {
  margin: 16px 0 0;
  font-size: 12px;
  color: #666;
}

.needle-back-wrap {
  margin: 48px 0 0;
  text-align: center;
}

.needle-back-btn {
  width: 280px;
}

.et-page {
  padding-bottom: 56px;
}

.et-content {
  max-width: 860px;
  padding-top: 10px;
}

.et-head {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 24px;
  align-items: start;
}

.et-title {
  margin: 0;
  font-family: "Times New Roman", serif;
  font-style: italic;
  font-size: 32px;
  line-height: 1;
}

.et-subtitle {
  margin: 8px 0 16px;
  padding-top: 10px;
  border-top: 1px solid #777;
  font-size: 16px;
  line-height: 1.3;
}

.et-line {
  margin: 0 0 12px;
  font-size: 14px;
}

.et-line-gap {
  margin-bottom: 12px;
}

.et-icons {
  max-width: 270px;
  margin: 0 0 12px auto;
}

.et-pdf-btn {
  width: 270px;
  margin-left: auto;
}

.et-pdf-btn a {
  display: flex;
  width: 100%;
  height: 60px;
  align-items: center;
  justify-content: center;
  background: #7f7f7f;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
}

.et-pdf-btn a:hover {
  background: var(--brand-pink-dark);
}

.et-specs {
  margin-top: 26px;
}

.et-spec-block {
  margin-bottom: 28px;
}

.et-gallery-2 {
  display: grid;
  grid-template-columns: 336fr 510fr;
  gap: 6px;
}

.et-gallery-2 img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.et-gallery-2 img:first-child {
  aspect-ratio: 336 / 258;
}

.et-gallery-2 img:last-child {
  aspect-ratio: 510 / 258;
}

.et-spec-title {
  margin: 10px 0 8px;
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
}

.et-spec-title::before {
  content: "";
  width: 12px;
  height: 20px;
  margin-right: 10px;
  background-color: #D7D7D7;
  flex: 0 0 auto;
}

.et-spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.et-spec-table thead tr {
  border-bottom: 1px solid #cfcfcf;
}

.et-spec-table th,
.et-spec-table td {
  padding: 6px 4px;
  text-align: left;
}

.et-spec-table td {
  padding-top: 4px;
  padding-bottom: 4px;
}

.et-mobile-break {
  display: none;
}

.et-note {
  margin: 8px 0 0;
  font-size: 12px;
  line-height: 1.7;
}

.et-footnote {
  margin: 16px 0 0;
  font-size: 12px;
  color: #666;
}

.iui-page {
  background: #efefef;
  padding-bottom: 56px;
}

.iui-content {
  max-width: 860px;
  padding-top: 10px;
}

.iui-head {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 24px;
  align-items: start;
}

.iui-title {
  margin: 0;
  font-family: "Times New Roman", serif;
  font-style: italic;
  font-size: 32px;
  line-height: 1;
}

.iui-subtitle {
  margin: 16px 0;
  padding-top: 10px;
  border-top: 1px solid #777;
  font-size: 16px;
  line-height: 1.3;
}

.iui-line {
  margin: 0 0 6px;
  font-size: 14px;
}

.iui-line-gap {
  margin-bottom: 12px;
}

.iui-icons {
  max-width: 270px;
  margin: 0 0 12px auto;
}

.iui-pdf-btn {
  width: 270px;
  margin-left: auto;
}

.iui-pdf-btn a {
  display: flex;
  width: 100%;
  height: 60px;
  align-items: center;
  justify-content: center;
  background: #7f7f7f;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
}

.iui-pdf-btn a:hover {
  background: var(--brand-pink-dark);
}

.iui-specs {
  margin-top: 26px;
}

.iui-spec-block {
  margin-bottom: 28px;
}

.iui-gallery-2 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 6px;
}

.iui-gallery-2 img {
  width: 100%;
  height: auto;
  aspect-ratio: 497 / 260;
  object-fit: cover;
}

.iui-spec-title {
  margin: 10px 0 8px;
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
}

.iui-spec-title::before {
  content: "";
  width: 12px;
  height: 20px;
  margin-right: 10px;
  background-color: #D7D7D7;
  flex: 0 0 auto;
}

.iui-spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.iui-spec-table thead tr {
  border-bottom: 1px solid #cfcfcf;
}

.iui-spec-table th,
.iui-spec-table td {
  padding: 6px 4px;
  text-align: left;
}

.iui-spec-table td {
  padding-top: 4px;
  padding-bottom: 4px;
}

.iui-footnote {
  margin: 16px 0 0;
  font-size: 12px;
  color: #666;
}

/* scientific instruments page */
.sci-page-title-wrap {
  padding: 6px 0 14px;
  text-align: center;
}

.sci-page-hero {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.sci-page-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sci-content {
  max-width: 1000px;
  padding-top: 36px;
}

.sci-product {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 420px);
  gap: 24px;
  align-items: start;
}

.sci-product-copy h2 {
  margin: 0;
  font-family: "Times New Roman", serif;
  font-style: italic;
  font-size: 32px;
  line-height: 1;
}

.sci-product-jp {
  margin: 8px 0 12px;
  max-width: 390px;
  width: 100%;
  border-top: 1px solid #777;
  padding-top: 10px;
  font-size: 16px;
  line-height: 1.3;
}

.sci-feature-icons {
  width: 270px;
  height: 60px;
  margin: 0 0 10px;
}

.sci-feature-icons img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.sci-product-copy p {
  margin: 0 0 10px;
  font-size: 14px;
  line-height: 1.6;
}

.sci-product-side {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sci-product-image-wrap {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 444 / 250;
  overflow: hidden;
  margin-bottom: 18px;
}

.sci-product-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sci-action-btn {
  width: 280px;
}

/* micropipettes page */
.micro-content {
  max-width: 860px;
  padding-top: 22px;
}

.micro-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 270px;
  gap: 24px;
  align-items: start;
}

.micro-title {
  margin: 0;
  font-family: "Times New Roman", serif;
  font-style: italic;
  font-size: 32px;
  line-height: 1;
}

.micro-subtitle {
  margin: 8px 0 12px;
  max-width: 520px;
  border-top: 1px solid #777;
  padding-top: 10px;
  font-size: 16px;
  line-height: 1.3;
}

.micro-summary p {
  margin: 0 0 10px;
  font-size: 14px;
  line-height: 1.6;
}

.micro-icons {
  width: 100%;
}

.micro-gallery {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.micro-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.micro-diagram-list {
  margin-top: 16px;
  display: grid;
  gap: 10px;
}

.micro-diagram-item {
  border-top: 1px solid #ddd;
  padding-top: 6px;
}

.micro-diagram-image-wrap {
  width: 100%;
  aspect-ratio: 800 / 150;
  overflow: hidden;
}

.micro-diagram-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.micro-specs {
  margin-top: 18px;
}

.micro-spec-block {
  margin-bottom: 16px;
}

.micro-spec-title {
  margin: 0 0 6px;
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
}

.micro-spec-title::before {
  content: "";
  width: 12px;
  height: 20px;
  margin-right: 10px;
  background-color: #D7D7D7;
  flex: 0 0 auto;
}

.micro-spec-table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  font-size: 12px;
}

.micro-spec-table thead tr {
  border-bottom: 1px solid #d5d5d5;
}

.micro-spec-table th,
.micro-spec-table td {
  text-align: left;
  padding: 4px 3px;
  overflow-wrap: break-word;
  vertical-align: top;
}

/* 旧コード列：参照用の二次情報として控えめに */
.micro-spec-table th:last-child,
.micro-spec-table td:last-child {
  color: #555;
}

@media screen and (min-width: 769px) {
  /* 形式列のコードを少し太字に */
  .micro-spec-table td:first-child { font-weight: 600; }

  /* 特徴列：長文が折返した際の行間を整える */
  .micro-spec-table td:nth-child(3) { line-height: 1.4; }

  /* 特徴列：特に長い文言は1行に収めるため縮小表示 */
  .micro-spec-table .micro-spec-long { font-size: 11px; }

  .micro-spec-table th:nth-child(1),
  .micro-spec-table td:nth-child(1) { width: 18%; }
  .micro-spec-table th:nth-child(2),
  .micro-spec-table td:nth-child(2) { width: 15%; }
  .micro-spec-table th:nth-child(3),
  .micro-spec-table td:nth-child(3) { width: 35%; }
  .micro-spec-table th:nth-child(4),
  .micro-spec-table td:nth-child(4) { width: 14%; }
  .micro-spec-table th:nth-child(5),
  .micro-spec-table td:nth-child(5) { width: 18%; }
}

.micro-footnote {
  margin: 10px 0 0;
  font-size: 12px;
  color: #666;
}

.micro-lineup {
  margin-top: 40px;
}

.micro-lineup-title {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 700;
}

.micro-lineup-sub {
  margin: 0 0 6px;
  font-size: 13px;
}

.micro-lineup-grid {
  display: grid;
  gap: 6px;
  margin-bottom: 10px;
}

.micro-lineup-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.micro-lineup-grid-2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 520px;
}

.micro-lineup-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.micro-back-wrap {
  margin: 40px 0 0;
  text-align: center;
}

.micro-back-btn {
  width: 280px;
}

/* quality page */
.quality-content {
  max-width: 860px;
  padding-top: 24px;
}

.quality-anchor-nav {
  margin: 0 0 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.quality-anchor-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid var(--brand-pink);
  color: var(--brand-pink);
  font-size: 13px;
}

.quality-section {
  position: relative;
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 18px;
  /* padding: 18px 0 20px; */
  border: none;
}

.quality-section + .quality-section {
  margin-top: 100px;
}

.quality-section::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 240px;
  width: 1px;
  background-color: #d9d9d9;
}

.quality-section-head {
  position: relative;
  display: block;
  align-self: start;
  font-size: 18px;
  line-height: 1.4;
  padding: 0 14px 0 22px;
}

.quality-section-head h2 {
  margin: 0;
  font-size: inherit;
  line-height: inherit;
}

.quality-section-head::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 12px;
  height: 1.4em;
  background-color: #D7D7D7;
}

.quality-section-body p {
  margin: 0 0 10px;
  font-size: 14px;
  line-height: 1.7;
}

.quality-03-text {
  margin: 24px 0;
}

#quality-03 .quality-images-vertical {
  gap: 24px;
}

.quality-images {
  margin: 6px 0 10px;
  width: 100%;
  /* max-width: 370px; */
}

.quality-images img {
  width: 100%;
  height: auto;
}

.quality-image-01-wrap {
  width: 100%;
  max-width: 370px;
  aspect-ratio: 1000 / 500;
}

.quality-image-01-zone-wrap {
  width: 100%;
  max-width: 450px;
  aspect-ratio: 1200 / 400;
}

.quality-image-02-1-wrap,
.quality-image-02-2-wrap {
  width: 100%;
  max-width: 410px;
}

.quality-image-02-1-wrap {
  aspect-ratio: 1100 / 451;
}

.quality-image-02-2-wrap {
  aspect-ratio: 1100 / 321;
}

.quality-image-03-wrap {
  width: 100%;
  max-width: 224px;
  aspect-ratio: 600 / 400;
}

.quality-image-01-wrap img,
.quality-image-01-zone-wrap img,
.quality-image-02-1-wrap img,
.quality-image-02-2-wrap img,
.quality-image-03-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quality-images-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.quality-images-vertical {
  grid-template-columns: 1fr;
  gap: 10px;
}

.quality-flow-grid {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
}

.quality-flow-main {
  flex: 0 0 200px;
  max-width: 200px;
}

.quality-flow-side {
  flex: 0 0 280px;
  max-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.quality-flow-chart-wrap {
  width: 100%;
  max-width: 200px;
}

.quality-flow-photo-wrap {
  width: 100%;
  max-width: 280px;
}

.quality-flow-chart-wrap img,
.quality-flow-photo-wrap img {
  width: 100%;
  height: auto;
}

.quality-flow-label {
  margin: 2px 0 0;
  padding-bottom: 1em;
  font-size: 12px;
  line-height: 1.4;
  text-align: center;
}

.quality-flow-label-line {
  border-bottom: 1px solid #d5d5d5;
}

.company-page {
  padding-bottom: 48px;
}

.company-page-hero {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.company-page-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.company-content {
  padding-top: 26px;
}

.company-section {
  position: relative;
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 18px;
  padding: 18px 0 20px;
}

.company-section + .company-section {
  margin-top: 80px;
}

.company-section::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 240px;
  width: 1px;
  background-color: #d9d9d9;
}

.company-section-head {
  position: relative;
  align-self: start;
  font-size: 18px;
  line-height: 1.4;
  padding: 0 14px 0 22px;
}

.company-section-head::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 12px;
  height: 1.4em;
  background-color: #D7D7D7;
}

.company-section-head h2 {
  margin: 0;
  font-size: inherit;
  line-height: inherit;
}

.company-section-body {
  font-size: 14px;
  line-height: 1.8;
}

.company-section-body dl {
  margin: 0;
}

.company-info-list,
.company-history-list,
.company-related-list {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  row-gap: 16px;
  column-gap: 12px;
}

.company-info-list dt,
.company-history-list dt,
.company-related-list dt {
  margin: 0;
  font-weight: 500;
}

.company-info-list dd,
.company-history-list dd,
.company-related-list dd {
  margin: 0;
}

.company-related-list {
  grid-template-columns: 1fr;
  row-gap: 4px;
}

.company-related-list dt:not(:first-child) {
  margin-top: 12px;
}

.company-intro {
  margin: 0;
}

.privacy-policy-page {
  padding-bottom: 48px;
}

.privacy-policy-content {
  max-width: 860px;
  padding-top: 26px;
}

.privacy-policy-content p {
  margin: 0 0 22px;
  font-size: 14px;
  line-height: 2;
}

.privacy-policy-content h2 {
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 1.6;
  font-weight: 700;
}

.alft-page {
  padding: 22px 0 48px;
}

.alft-content {
  max-width: 760px;
}

.alft-page p {
  font-size: 14px;
}

.alft-title {
  margin: 0;
  font-size: 28px;
  line-height: 1.25;
  text-align: center;
  font-weight: 400;
  white-space: nowrap;
}

.alft-title span {
  margin-right: 8px;
}

.alft-title-new {
  font-weight: 700;
}

.alft-lead {
  margin: 18px 0 10px;
  font-size: 14px;
  line-height: 1.9;
  text-align: center;
}

.alft-main-product {
  margin: 0 0 24px;
}

.alft-main-product img {
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
}

.alft-main-product figcaption {
  margin-top: 6px;
  font-size: 14px;
  text-align: center;
}

.alft-feature + .alft-feature {
  margin-top: 20px;
}

.alft-feature h2 {
  margin: 0 0 8px;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 700;
}

.alft-feature img {
  width: 100%;
  max-width: 460px;
}

.alft-feature p {
  margin: 8px 0 0;
  font-size: 14px;
  line-height: 1.85;
}

.alft-print-images {
  margin-top: 8px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

.alft-print-images img {
  max-width: none;
}

.alft-qa-band {
  margin-top: 32px;
  padding: 36px 0;
  border-top: 1px solid #d8d8d8;
  border-bottom: 1px solid #d8d8d8;
}

.alft-qa-title {
  margin: 0 0 14px;
  font-size: 20px;
  line-height: 1.4;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 12px;
}

.alft-qa-title span {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #5d5d5d;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.alft-qa-list {
  margin: 0;
}

.alft-qa-list dt,
.alft-qa-list dd {
  margin: 0;
  font-size: 14px;
  line-height: 1.9;
}

.alft-qa-list dd + dt {
  margin-top: 12px;
}

.alft-stand-section {
  padding-top: 30px;
}

.alft-stand-lead {
  margin: 0 0 12px;
  font-size: 28px;
  line-height: 1.8;
  text-align: center;
}

.alft-stand-lead span {
  color: #e30017;
}

.alft-stand-image {
  margin: 0 auto;
  max-width: 180px;
}

.alft-contact-link {
  margin: 26px auto 0;
  width: min(420px, 100%);
}

.alft-contact-link a {
  display: inline-flex;
  width: 100%;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--brand-pink);
  color: var(--brand-pink);
  font-size: 17px;
  font-weight: 700;
}

.news-archive-page {
  padding-bottom: 48px;
}

.news-archive-content {
  max-width: 760px;
  padding-top: 24px;
}

.news-archive-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.news-archive-list li + li {
  margin-top: 18px;
}

.news-archive-list a {
  display: block;
}

.news-archive-list a:hover time,
.news-archive-list a:hover p {
  color: var(--brand-pink);
}

.news-archive-list time {
  display: inline-block;
  font-size: 16px;
  line-height: 1.35;
  color: var(--brand-pink-deep);
  font-weight: 700;
}

.news-archive-list p {
  margin: 4px 0 0;
  font-size: 14px;
  line-height: 1.65;
}

.news-detail-page {
  padding-bottom: 48px;
}

.news-detail-content {
  max-width: 760px;
  padding-top: 24px;
}

.news-detail-item {
  scroll-margin-top: 220px;
}

.news-detail-item + .news-detail-item {
  margin-top: 36px;
  padding-top: 36px;
  border-top: 1px solid #d8d8d8;
}

.news-detail-item time {
  display: inline-block;
  font-size: 16px;
  line-height: 1.4;
  color: var(--brand-pink-deep);
  font-weight: 700;
}

.news-detail-item h2 {
  margin: 8px 0 12px;
  font-size: 16px;
  line-height: 1.7;
  font-weight: 700;
}

.news-detail-item p {
  margin: 0 0 8px;
  font-size: 12px;
  line-height: 1.85;
}

.news-detail-images {
  margin: 10px 0 12px;
  display: grid;
  gap: 8px;
}

.news-detail-images img {
  width: 100%;
}

.news-detail-images-1 {
  max-width: 320px;
}

.news-detail-images-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.news-detail-images-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.news-detail-images-ratio-253-173 .news-detail-image-box {
  aspect-ratio: 253 / 173;
  overflow: hidden;
}

.news-detail-images-ratio-253-173 .news-detail-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.news-detail-images-max255 {
  max-width: 255px;
}

.news-detail-images-ratio-577-276 .news-detail-image-box {
  aspect-ratio: 577 / 276;
  overflow: hidden;
}

.news-detail-images-ratio-577-276 .news-detail-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.news-detail-images-max560 {
  max-width: 560px;
}

.news20201005-layout {
  margin-top: 12px;
  display: grid;
  grid-template-columns: minmax(0, 320px) minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}

.news20201005-product {
  margin: 0 0 8px;
  padding-left: 22px;
  position: relative;
  font-size: 34px;
}

.news20201005-product::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 12px;
  height: 20px;
  background: #d7d7d7;
}

.news20201005-spec {
  margin-bottom: 14px;
}

.news20201005-spec-head,
.news20201005-spec p {
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 16px;
}

.news20201005-spec-head {
  padding-bottom: 5px;
  border-bottom: 1px solid #d1d1d1;
  font-weight: 700;
}

.news20201005-spec p {
  padding-top: 4px;
}

.news20201005-image img {
  width: 100%;
  max-width: 430px;
}

.news-inline-btn {
  display: inline-flex;
  min-height: 34px;
  padding: 0 14px;
  margin-right: 6px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--brand-pink);
  color: var(--brand-pink);
  font-size: 12px;
  line-height: 1;
}

.news-inline-btn:hover {
  background: var(--brand-pink-dark);
  color: #fff;
}

.supplement-page {
  padding-bottom: 48px;
}

.supplement-hero {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.supplement-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.supplement-content {
  max-width: 760px;
  padding-top: 28px;
}

.supplement-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 360px);
  gap: 24px;
  align-items: center;
}

.supplement-item + .supplement-item {
  margin-top: 42px;
}

.supplement-copy h2 {
  margin: 0 0 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid #777;
  font-family: "Times New Roman", serif;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 400;
}

.supplement-copy h2 small {
  font-size: 12px;
}

.supplement-copy p {
  margin: 0;
  font-size: 14px;
  line-height: 2;
}

.supplement-media {
  text-align: center;
}

.supplement-media img {
  width: 100%;
}

.supplement-media .action-btn {
  margin-top: 10px;
  width: min(100%, 250px);
}

.supplement-contact {
  margin: 80px auto 0;
  max-width: 340px;
  text-align: center;
}

.supplement-contact-mark {
  margin: 0 0 20px;
  letter-spacing: 0.5em;
}

.supplement-contact p {
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 1.8;
}

.supplement-contact .action-btn {
  width: 100%;
}

/* contact page */
.contact-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 10px 0 40px;
}

.contact-lead {
  margin: 10px 0 26px;
  text-align: center;
  font-size: 13px;
  color: #444;
}

.contact-form {
  display: grid;
  gap: 12px;
}

#mailformpro.contact-form {
  font-size: 13px;
  padding: 0;
}

.contact-row {
  display: grid;
  grid-template-columns: 160px 70px 1fr;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: #f6f6f6;
}

.contact-label {
  font-size: 13px;
  color: #333;
}

.contact-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 22px;
  border-radius: 3px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.contact-badge--required {
  background: var(--brand-red);
  color: #fff;
}

.contact-badge--optional {
  background: #bdbdbd;
  color: #fff;
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  max-width: 360px;
  border: 1px solid #cfcfcf;
  background: #fff;
  padding: 6px 8px;
  font-size: 13px;
  font-family: inherit;
  line-height: 1.4;
}

.contact-field input[type="checkbox"] {
  width: auto;
  max-width: none;
}

.contact-field textarea {
  max-width: 100%;
  min-height: 150px;
  resize: vertical;
}

.contact-row--textarea {
  align-items: start;
}

.contact-row--textarea .contact-label,
.contact-row--textarea .contact-badge {
  margin-top: 6px;
}

.contact-check {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #333;
}

.contact-actions {
  text-align: center;
  padding-top: 12px;
}

.contact-submit-button {
  min-width: 220px;
  padding: 10px 26px;
  border: 0;
  border-radius: 4px;
  background: var(--brand-pink-dark);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.contact-submit-button:hover {
  background: var(--brand-pink-deep);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(204, 93, 119, 0.25);
  border-color: var(--brand-pink);
}

@media (max-width: 768px) {
  .contact-content {
    padding: 6px 0 28px;
  }

  .contact-lead {
    margin-bottom: 18px;
    font-size: 12px;
    line-height: 1.6;
  }

  .contact-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .contact-badge {
    width: 48px;
    height: 20px;
  }

  .contact-field input,
  .contact-field textarea {
    max-width: 100%;
  }

  .contact-submit-button {
    width: 100%;
    max-width: 280px;
  }
}

/* ========================================
   TRANSPARENCY（透明性に関する指針）
======================================== */

.transparency-page {
  padding-bottom: 60px;
}

.transparency-content {
  padding-top: 8px;
  font-size: 14px;
  line-height: 1.9;
  color: #333;
}

.transparency-lead {
  margin: 0 0 28px;
  padding: 18px 22px;
  background: #fbeef1;
  border-left: 4px solid var(--brand-pink);
  font-size: 14px;
  line-height: 1.8;
}

.transparency-lead__title {
  display: block;
  margin-bottom: 6px;
  font-size: 16px;
  font-weight: 700;
  color: var(--brand-pink-deep);
}

.transparency-content h2 {
  margin: 36px 0 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--brand-pink);
  font-size: 18px;
  font-weight: 700;
  color: #333;
}

.transparency-content h3 {
  margin: 24px 0 10px;
  padding-left: 12px;
  border-left: 4px solid var(--brand-pink);
  font-size: 15px;
  font-weight: 700;
  color: #333;
}

.transparency-content h4 {
  margin: 18px 0 8px;
  font-size: 14px;
  font-weight: 700;
  color: #444;
}

.transparency-content p {
  margin: 0 0 14px;
}

.transparency-content ul {
  margin: 0 0 16px;
  padding-left: 0;
  list-style: none;
}

.transparency-content ul li {
  margin-bottom: 4px;
}

.transparency-content .transparency-notes {
  margin: 18px 0;
  padding: 12px 16px;
  background: #f6f6f6;
  font-size: 13px;
  line-height: 1.7;
}

.transparency-content .transparency-notes p {
  margin: 0 0 4px;
}

.transparency-meta {
  margin-top: 32px;
  font-size: 13px;
  color: #666;
  text-align: right;
}

.transparency-meta span + span {
  margin-left: 16px;
}

/* PDF 一覧 */
.transparency-pdf-section {
  margin-top: 48px;
}

.transparency-pdf-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid #ddd;
}

.transparency-pdf-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 8px;
  border-bottom: 1px solid #ddd;
}

.transparency-pdf-item__label {
  font-size: 15px;
  font-weight: 700;
  color: #333;
}

.transparency-pdf-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  height: 42px;
  padding: 0 18px;
  background: #7f7f7f;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 0.3s;
}

.transparency-pdf-btn:hover,
.transparency-pdf-btn:focus-visible {
  background: var(--brand-pink-dark);
  outline: none;
}

@media (max-width: 768px) {
  .transparency-page {
    padding-bottom: 40px;
  }

  .transparency-content {
    font-size: 13px;
    line-height: 1.85;
  }

  .transparency-content h2 {
    margin: 28px 0 12px;
    font-size: 16px;
  }

  .transparency-content h3 {
    margin: 20px 0 8px;
    font-size: 14px;
  }

  .transparency-pdf-item {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 14px 4px;
  }

  .transparency-pdf-item__label {
    font-size: 14px;
  }

  .transparency-pdf-btn {
    width: 100%;
    min-width: 0;
    height: 44px;
  }
}

/* ========================================
   ACCESSIBILITY UTILITIES（視覚非表示・SEO/スクリーンリーダー用）
======================================== */

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
