/*　home 共通
------------------------------------------------------------------------------------------------*/

.fv {
  height: 80vh;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  padding-top: 0rem;
  color: #fff;
  text-align: left;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.fv::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 24, 44, 0.42) 0%, rgba(8, 24, 44, 0.18) 42%, rgba(4, 12, 24, 0.34) 100%);
  z-index: -1;
}

.fv-slides {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.fv-slide {
  position: absolute;
  inset: 0;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0;
  transform: scale(1);
  transition: opacity 1.4s ease;
  will-change: opacity, transform;
  z-index: 0;
}

.fv-slide-1 {
  background-image: url(../images/home/fv-bg.jpg);
}

.fv-slide-2 {
  background-image: url(../images/home/fv-bg_2.jpg);
}

.fv-slide-3 {
  background-image: url(../images/home/fv-bg_3.jpg);
}

.fv-slide-4 {
  background-image: url(../images/home/fv-bg_4.jpg);
}

.fv-slide-5 {
  background-image: url(../images/home/fv-bg_5.jpg);
}

.fv-slide.is-current,
.fv-slide.is-entering {
  opacity: 1;
  animation: fvActiveZoom 7.6s linear forwards;
}

.fv-slide.is-current {
  z-index: 1;
}

.fv-slide.is-entering {
  z-index: 2;
}

@keyframes fvActiveZoom {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.08);
  }
}

.fv .content {
  width: auto;
  max-width: none;
  padding: 0;
  position: absolute;
  left: 4.8rem;
  bottom: 4.8rem;
  z-index: 1;
}

.fv-copy {
  opacity: 1;
}

.fv-title-line,
.fv-copy .h1-btm,
.fv-copy .fv-links {
  opacity: 0;
}

.fv-title-line {
  display: block;
}

.fv-copy.load .fv-title-line {
  animation: fvTitleReveal 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.fv-copy.load .fv-title-line:nth-child(2) {
  animation-delay: 0.18s;
}

.fv-copy.load .h1-btm {
  animation: fvCopyFadeIn 0.8s ease 0.55s both;
}

.fv-copy.load .fv-links {
  animation: fvCopyFadeIn 0.8s ease 0.8s both;
}

.fv-links {
  display: flex;
  gap: 1.6rem;
  margin-top: 2.4rem;
}

.fv-product-link {
  border-color: #fff;
  color: #fff;
}

.line-arrow-link.fv-product-link::before {
  border-color: #fff;
}

.line-arrow-link.fv-product-link::after {
  background: #fff;
}

.line-arrow-link.fv-product-link:hover {
  color: #17191d;
}

.line-arrow-link.fv-product-link:hover::before {
  border-color: #17191d;
}

.home .ttl-1-en,
.home h2.ttl-1 {
  opacity: 0;
  transform: translateY(1.6rem);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.home .ttl-1-en + h2.ttl-1 {
  transition-delay: 0.12s;
}

.home .ttl-1-en.is-visible,
.home h2.ttl-1.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fvTitleReveal {
  from {
    opacity: 0;
    clip-path: inset(0 100% 0 0);
    transform: translateX(-2.4rem);
  }

  to {
    opacity: 1;
    clip-path: inset(0);
    transform: translateX(0);
  }
}

@keyframes fvCopyFadeIn {
  from {
    opacity: 0;
    transform: translateY(1rem);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fv h1 {
  max-width: 66rem;
  font-size: 4.8rem;
  line-height: 1.35;
  letter-spacing: 0.04em;
  font-weight: 600;
}

.fv .h1-btm {
  max-width: 66rem;
  font-weight: 600;
  font-size: 1.8rem;
  line-height: 1.95;
  margin-top: 1.6rem;
}

.fv img.logo {
  width: 25.5rem;
  margin: 7rem auto 0;
}

.fv .scroll {
  display: inline-block;
  font-size: 1.2rem;
  line-height: 0.9;
  font-weight: 600;
  writing-mode: vertical-rl;
  padding-bottom: 12rem;
  position: absolute;
  right: 4rem;
  bottom: 4.8rem;
  z-index: 1;
}

.fv .scroll::before,
.fv .scroll::after {
  content: "";
  display: block;
  width: 1px;
  background: #fff;
  position: absolute;
  left: 50%;
  margin-left: -0.5px;
}

.fv .scroll::before {
  opacity: 0.4;
  height: 10rem;
  bottom: 0;
}

.fv .scroll::after {
  animation: scroll 3s infinite;
}

@keyframes scroll {
  from {
    height: 4rem;
    bottom: 6rem;
    opacity: 0;
  }

  20% {
    height: 4rem;
  }

  30% {
    opacity: 1;
  }

  to {
    height: 0;
    bottom: 0;
  }
}

/* PICK UP
-------------------------------------------------------------------------------------------------*/

.home-pickup {
  padding: 4rem 0 0;
  overflow: hidden;
}

.home-pickup-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 4rem;
}

.home-pickup .ttl-1 {
  margin-bottom: 0;
}

.pickup-controls {
  display: flex;
  gap: 1.2rem;
}

.pickup-arrow {
  width: 5.2rem;
  height: 5.2rem;
  border: 1px solid #17191d;
  border-radius: 0;
  background: #fff;
  position: relative;
  cursor: pointer;
  transition: background-color 0.3s, border-color 0.3s;
}

.pickup-arrow::before {
  content: "";
  width: 0.8rem;
  height: 0.8rem;
  border-top: 1px solid #17191d;
  border-right: 1px solid #17191d;
  position: absolute;
  top: 50%;
  left: 50%;
}

.pickup-prev::before {
  transform: translate(-35%, -50%) rotate(-135deg);
}

.pickup-next::before {
  transform: translate(-65%, -50%) rotate(45deg);
}

.pickup-arrow:hover {
  background: #17191d;
  border-color: #17191d;
}

.pickup-arrow:hover::before {
  border-color: #fff;
}

.pickup-arrow:disabled {
  opacity: 0.3;
  cursor: default;
}

.pickup-slider {
  margin-left: 0;
}

.pickup-track {
  display: flex;
  gap: 2.4rem;
  padding-left: max(5rem, calc((100vw - 118rem) / 2 + 5rem));
  padding-right: max(5rem, calc((100vw - 118rem) / 2 + 5rem));
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-left: max(5rem, calc((100vw - 118rem) / 2 + 5rem));
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.pickup-track::-webkit-scrollbar {
  display: none;
}

.pickup-card {
  flex: 0 0 calc((108rem - 4.8rem) / 3);
  min-width: 0;
  border: 1px solid #d7dcde;
  scroll-snap-align: start;
  background: #fff;
}

.pickup-card > a {
  display: block;
  height: 100%;
}

.pickup-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: #fff;
  overflow: hidden;
}

.pickup-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.pickup-card:hover .pickup-image img {
  transform: scale(1.04);
}

.pickup-card-body {
  padding: 2rem;
  border-top: 1px solid #d7dcde;
}

.pickup-maker,
.product-maker {
  display: inline-block;
  margin-bottom: 0.8rem;
  padding: 0.3rem 0.8rem;
  background: #f4f4f4;
  color: #8a9398;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.2;
}

.pickup-card h3 {
  min-height: 2.8rem;
  margin-bottom: 1.6rem;
  font-size: 2rem;
  line-height: 1.4;
}

.pickup-card p {
  min-height: 5.8rem;
  font-size: 1.5rem;
  line-height: 1.8;
}

.pickup-list-cta {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 3.2rem;
  margin-top: 3.2rem;
}

.pickup-list-cta .line-arrow-link {
  flex: 0 0 auto;
}

.home-logo-marquee {
  margin-top: 2rem;
  overflow: hidden;
}

.home-logo-track {
  display: flex;
  width: max-content;
  animation: logo-marquee 32s linear infinite;
}

.home-logo-group {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 0rem;
  padding-right: 0;
}

.home-logo-item {
  width: 18rem;
  min-height: 10rem;
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
}

.home-logo-item img {
  max-width: 16rem;
  max-height: 8rem;
  object-fit: contain;
}

@keyframes logo-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-logo-track {
    animation-play-state: paused;
  }

  .fv-title-line,
  .fv-copy .h1-btm,
  .fv-copy.load .fv-title-line,
  .fv-copy.load .h1-btm {
    opacity: 1;
    animation: none;
    clip-path: none;
    transform: none;
  }
}

.home-about {
  padding: 4rem 0 10rem;
}

footer .content {
  align-items: stretch;
  justify-content: space-between;
}

footer .logo {
  flex: 0 0 auto;
  margin-right: 4rem;
}

footer .txt {
  flex-grow: 0;
  flex-direction: column;
  align-items: flex-end;
  gap: 0;
}

footer ul.footer-nav {
  justify-content: flex-end;
}

footer .copy {
  margin-top: 3rem;
  text-align: right;
}

footer .footer-legal {
  width: 100%;
  margin-top: auto;
  padding-top: 1.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

footer .footer-legal .copy {
  margin-top: 0;
}

.home-about .content {
  max-width: 118rem;
}

.home-about-main {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 10rem;
}

.home-about-copy {
  max-width: 86rem;
  flex: 1 1 auto;
}

.home-about-image {
  width: 40rem;
  /* flex: 0 0 32rem; */
  object-fit: cover;
}

.home-about .ttl-1 {
  margin-bottom: 6.4rem;
}

.home-about-lead {
  font-size: 3.4rem;
  line-height: 1.35;
  font-weight: 600;
  margin-bottom: 2.8rem;
}

.home-about .btn-wrap {
  display: flex;
  gap: 5rem;
  margin-top: 3rem;
}

.about .about-overview {
  padding: 8rem 0 10rem;
}

.about .about-main {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 6rem;
}

.about .about-copy {
  flex: 1 1 auto;
}

.about .about-image {
  width: 36rem;
  flex: 0 0 32rem;
}

.about .about-overview .ttl-1:not(.home-about-lead) {
  margin-bottom: 2rem;
}

.home-business {
  padding: 8rem 0 8rem;
}

.home-business .business-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--color-border);
  border-left: 1px solid var(--color-border);
}

.home-business .business-lead {
  margin: 0 0 4rem;
}

.home-business .business-grid>* {
  border-right: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.home-business .business-grid-card {
  min-height: 28rem;
  padding: 2rem;
  background: #fff;
}

.home-business .business-grid-image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  margin-bottom: 2rem;
}

.home-business .business-grid-en {
  display: block;
  margin-bottom: 0.8rem;
  color: #8a9398;
  font-size: 1.2rem;
  font-weight: 400;
}

.home-business .business-grid-card h3 {
  font-size: 2rem;
  line-height: 1.4;
  margin-bottom: 1rem;
}

.line-arrow-link {
  display: inline-flex;
  align-items: center;
  width: 24rem;
  min-height: 5.6rem;
  padding: 0 5.6rem 0 2rem;
  border: 1px solid var(--color-border);
  position: relative;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  overflow: hidden;
  transition: color 0.3s, border-color 0.3s;
  z-index: 0;
}

.line-arrow-link::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #17191d;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  transform: translateX(-100%);
  transition: transform 0.3s;
}

.line-arrow-link::before {
  content: "";
  width: 0.8rem;
  height: 0.8rem;
  border-top: 1.5px solid #17191d;
  border-right: 1.5px solid #17191d;
  position: absolute;
  top: 50%;
  right: 2.2rem;
  transform: translateY(-50%) rotate(45deg);
  transition: border-color 0.3s;
}

.line-arrow-link:hover {
  opacity: 1;
  color: #fff;
}

.line-arrow-link:hover::after {
  transform: translateX(0);
}

.line-arrow-link:hover::before {
  border-color: #fff;
}

.line-arrow-link-left {
  padding: 0 6rem 0 8rem;
}

.line-arrow-link-left::before {
  left: 2.2rem;
  right: auto;
  transform: translateY(-50%) rotate(-135deg);
}

.home-business .business-grid-card p {
  font-size: 1.5rem;
  line-height: 1.8;
}

.home-business .business-grid-link {
  flex-shrink: 0;
  display: flex;
}

.home-business .business-grid-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 4rem;
  margin-top: 4rem;
}

.home-business .business-grid-note {
  font-size: 1.6rem;
  line-height: 1.8;
}

.home-banner img {
  display: block;
  width: 100%;
  height: auto;
}

.home-banner .sp {
  display: none;
}

.home-news {
  padding: 4rem 0 14rem;
}

.home-news .ttl-1 {
  margin-bottom: 0;
}

.home-news-main {
  display: grid;
  grid-template-columns: 40rem 1fr;
  align-items: start;
}

.home-news-side {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.home-news-head {
  margin-bottom: 3rem;
}

.home-news-link {
  justify-content: flex-start;
  margin-top: auto;
}

.home-news-list {
  list-style: none;
  margin: 0;
  margin-right: 4rem;
  padding: 0;
  border-top: 1px solid #d9d9d9;
}

.home-news-list li {
  border-bottom: 1px solid #d9d9d9;
}

.home-news-list li a {
  display: grid;
  grid-template-columns: 14rem 1fr;
  gap: 3rem;
  align-items: center;
  padding: 2.4rem 0;
}

.news-date {
  display: block;
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  line-height: 1;
}


/*　business 共通
------------------------------------------------------------------------------------------------*/

.business .business-services {
  margin: 0 auto 8rem;
}

.business .sec-intro {
  padding: 8rem 0 8rem;
}

.business .sec-intro p + p {
  margin-top: 2.4rem;
}

.business .business-services ul li {
  display: grid;
  grid-template-columns: 40rem 1fr;
  align-items: stretch;
  min-height: 28rem;
  border: 1px solid var(--color-border);
  overflow: hidden;
}

.manufacturers .business-services ul li {
  background: #FFFFFF;
}

.business .business-services ul li+li {
  margin-top: -1px;
}

.business .business-services ul li img.img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.manufacturers .manufacturer-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 28rem;
  padding: 0rem;
}

.manufacturers .manufacturer-logo img {
  display: block;
  width: 100%;
  max-width: 30rem;
  height: auto;
  max-height: 12rem;
  object-fit: contain;
}

.manufacturers .manufacturer-biopac-note {
  margin-top: 3rem;
  padding: 2.4rem 3rem;
  border: 1px solid var(--color-border);
  font-size: 1.5rem;
  line-height: 1.8;
}

.manufacturers .manufacturer-link {
  margin-top: 3rem;
}

.business .business-services ul li .txt {
  width: 100%;
  padding: 4.8rem 5rem;
}

.business .business-en {
  display: block;
  color: #8a9398;
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 1.2rem;
  line-height:1;
}

.business .business-services ul li .txt h3 {
  font-size: 3rem;
  margin-bottom: 2rem;
}

.business .business-services ul li .txt p + p {
  margin-top: 2rem;
}

.business .sec-approach {
  padding: 2rem 0 10rem;
}

.business .sec-approach .ttl-1 {
  margin-bottom: 4rem;
}

.business .sec-approach p {
  font-size: 1.8rem;
  line-height: 2;
}

.business .sec-approach p + p {
  margin-top: 2.4rem;
}

.product-filter-heading span,
.product-list-heading span {
  display: block;
  order: 2;
  margin-bottom: 0;
  color: #8a9398;
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.08em;
}

.product-search-area {
  padding: 6rem 0 10rem;
  /* background: #fff; */
}

.product-filter-group {
  scroll-margin-top: 10rem;
}

.product-filter-group + .product-filter-group {
  margin-top: 3.6rem;
}

.product-filter-heading {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  margin-bottom: 2rem;
}

.product-filter-heading > svg {
  flex: 0 0 auto;
  order: 0;
  width: 2.8rem;
  height: 2.8rem;
  color: #0047ab;
  stroke-width: 1.8;
}

.product-filter-heading h2,
.product-list-heading h2 {
  order: 1;
}

.product-list-heading > div {
  display: flex;
  align-items: baseline;
  gap: 1.6rem;
}

.product-filter-heading h2,
.product-list-heading h2 {
  font-size: 2.8rem;
  line-height: 1.5;
}

.product-filter-options {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.product-filter-options button {
  -webkit-appearance: none;
  appearance: none;
  min-height: 4.8rem;
  padding: 1rem 2rem;
  border: 1px solid #bfc5c7;
  background: #fff;
  color: #17191d;
  font-family: inherit;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.4;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.product-filter-options button:hover,
.product-filter-options button.is-active {
  color: #fff;
  border-color: #0047ab;
  background: #0047ab;
}

.product-maker-note {
  margin-top: 2rem;
  font-size: 1.4rem;
  line-height: 1.8;
}

.product-list-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  scroll-margin-top: 10rem;
  margin: 8rem 0 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--color-border);
}

.product-list-heading p {
  font-size: 1.4rem;
}

.product-list-heading p strong {
  margin-right: 0.4rem;
  font-size: 2.4rem;
}

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

.product-card {
  border: 1px solid #d7dcde;
  background: #fff;
}

.product-card[hidden] {
  display: none;
}

.product-card > img,
.product-card-link > img,
.product-image-placeholder {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: #fff;
}

.product-image-placeholder {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #78858a;
  background: linear-gradient(135deg, #f1f4f5, #e2e8ea);
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.product-card-body {
  padding: 2rem;
}

.product-card h3 {
  min-height: 2.8rem;
  margin-bottom: 0.8rem;
  font-size: 2rem;
  line-height: 1.4;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.product-tags span {
  padding: 0.2rem 0.6rem;
  border: 1px solid var(--color-border);
  background: transparent;
  font-size: 1.1rem;
  line-height: 1.4;
}

.product-empty {
  padding: 6rem 2rem;
  background: #fff;
  text-align: center;
  font-size: 1.6rem;
}

/* product detail
-------------------------------------------------------------------------------------------------*/

.product-detail-breadcrumb {
  padding-top: 4rem;
}

.product-detail-hero {
  padding: 6rem 0 4rem;
}

.product-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 7rem;
  align-items: start;
}

.product-gallery {
  min-width: 0;
}

.product-gallery-placeholder .product-gallery-main {
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-gallery-placeholder .product-image-placeholder,
.product-content-card > .product-image-placeholder {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
}

.product-content-card > .product-image-placeholder {
  margin-bottom: 1.6rem;
}

.product-gallery-main {
  aspect-ratio: 4 / 3;
  border: 1px solid var(--color-border);
  position: relative;
  overflow: hidden;
  background: #fff;
}

.product-gallery-slides,
.product-gallery-slide {
  width: 100%;
  height: 100%;
}

.product-gallery-slide {
  display: none;
  justify-content: center;
  align-items: center;
}

.product-gallery-slide.is-active {
  display: flex;
}

.product-gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-gallery-arrow {
  width: 4.8rem;
  height: 4.8rem;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}

.product-gallery-arrow::before {
  content: "";
  width: 0.9rem;
  height: 0.9rem;
  border-top: 1px solid #17191d;
  border-right: 1px solid #17191d;
  position: absolute;
  top: 50%;
  left: 50%;
}

.product-gallery-prev {
  left: 2rem;
}

.product-gallery-prev::before {
  transform: translate(-35%, -50%) rotate(-135deg);
}

.product-gallery-next {
  right: 2rem;
}

.product-gallery-next::before {
  transform: translate(-65%, -50%) rotate(45deg);
}

.product-gallery-arrow:disabled {
  display: none;
}

.product-gallery-count {
  padding: 0.7rem 1.2rem;
  background: rgba(23, 23, 23, 0.82);
  color: #fff;
  position: absolute;
  right: 1.6rem;
  bottom: 1.6rem;
  font-size: 1.2rem;
}

.product-gallery-thumbnails {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.2rem;
}

.product-gallery-thumb {
  aspect-ratio: 4 / 3;
  padding: 0;
  border: 1px solid var(--color-border);
  background: #fff;
  cursor: pointer;
}

.product-gallery-thumb.is-active {
  border: 2px solid #0047ab;
}

.product-gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-detail-maker {
  display: inline-block;
  margin-bottom: 0.8rem;
  padding: 0.3rem 0.8rem;
  background: #f4f4f4;
  color: #8a9398;
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.2;
}

.product-detail-category {
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: 700;
}

.product-detail-copy h1 {
  margin-bottom: 2rem;
  font-family: 'Inter', sans-serif;
  font-size: 4.8rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.product-detail-copy h2 {
  margin-bottom: 3.2rem;
  padding-bottom: 3.2rem;
  border-bottom: 1px solid var(--color-border);
  font-size: 2.8rem;
  line-height: 1.5;
}

.product-detail-description p + p {
  margin-top: 1.8rem;
}

.product-detail-actions {
  display: grid;
  gap: 1.2rem;
  width: 28rem;
  margin-top: 4rem;
}

.product-detail-actions .line-arrow-link {
  width: 100%;
}

.product-detail-overview {
  padding: 4rem 0;
}

.product-detail-section-heading {
  display: flex;
  align-items: baseline;
  gap: 1.6rem;
  margin-bottom: 4rem;
}

.product-detail-section-heading h2 {
  padding-left: 2.4rem;
  position: relative;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.1;
}

.product-detail-section-heading h2::before {
  content: "";
  width: 0.5rem;
  height: 100%;
  background: #0047ab;
  position: absolute;
  top: 0;
  left: 0;
  transform: skewX(-18deg);
  transform-origin: center;
}

.product-detail-section-heading span {
  color: #8a9398;
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.08em;
}

.product-overview-lead {
  padding-bottom: 2rem;
}

.product-overview-lead h3 {
  margin-bottom: 2rem;
  font-size: 2.4rem;
  line-height: 1.5;
}

.product-overview-lead h3 small {
  color: #8a9398;
  font-family: 'Inter', sans-serif;
  font-size: 1.3rem;
}

.product-overview-lead p + p {
  margin-top: 1.4rem;
}

.product-spec-grid {
  margin-top: 0;
}

.product-spec-card,
.product-content-block {
  padding: 1.4rem 0;
}

.product-spec-card h3,
.product-content-block > h3 {
  display: flex;
  align-items: baseline;
  gap: 1.2rem;
  margin-bottom: 1.4rem;
  font-size: 2.4rem;
}

.product-spec-card h3 span,
.product-content-block > h3 span {
  color: #8a9398;
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
}

.product-spec-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-spec-card li {
  padding: 1rem 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 1.5rem;
  line-height: 1.5;
}

.product-spec-card li:first-child {
  border-top: 1px solid var(--color-border);
}

.product-spec-card li small {
  color: #657077;
  font-size: 1.2rem;
}

.product-content-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-left: 1px solid var(--color-border);
}

.product-content-grid article {
  min-height: 19rem;
  border-top: 1px solid var(--color-border);
  border-right: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  background: #fff;
}

.product-content-grid article > a,
.product-content-card {
  display: block;
  height: 100%;
  padding: 2rem;
  color: inherit;
  text-decoration: none;
}

.product-content-grid article > a > img,
.product-content-card > img {
  width: 100%;
  aspect-ratio: 4 / 3;
  margin-bottom: 1.6rem;
  object-fit: contain;
  background: #fff;
}

.product-content-grid h4 {
  margin-bottom: 1.2rem;
  font-size: 1.8rem;
}

.product-content-grid p {
  font-size: 1.4rem;
  line-height: 1.8;
}

.product-technical-specs {
  margin-top: 3.5rem;
}

.product-technical-specs .product-detail-section-heading {
  margin-bottom: 2.4rem;
}

.product-spec-table-wrap {
  width: 100%;
  max-width: 100%;
  border-top: 1px solid var(--color-border);
  overflow: hidden;
}

.product-spec-table {
  width: 100%;
  max-width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.product-spec-table,
.product-spec-table tbody,
.product-spec-table tr,
.product-spec-table th,
.product-spec-table td {
  box-sizing: border-box;
}

.product-spec-table th,
.product-spec-table td {
  padding: 1.2rem 1.8rem;
  border-bottom: 1px solid var(--color-border);
  font-size: 1.5rem;
  line-height: 1.6;
  text-align: left;
  vertical-align: top;
  overflow-wrap: anywhere;
}

.product-spec-table th {
  width: 28%;
  background: #f5f7f8;
  font-weight: 700;
}

.product-note,
.product-research-note {
  margin-top: 2rem;
  padding: 1.2rem 1.2rem;
  background: #f5f7f8;
  color: #657077;
  font-size: 1.2rem;
  line-height: 1.5;
}

.product-videos {
  margin-top: 6rem;
}

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

.product-video {
  aspect-ratio: 16 / 9;
  background: #000;
}

.product-video iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.product-detail-back {
  padding: 2rem 0 10rem;
}

.product-card > a.product-card-link {
  display: block;
  height: 100%;
}

@media screen and (max-width: 767px) {
  .product-search-area {
    padding: 4rem 0 6rem;
  }

  .product-filter-heading {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    column-gap: 1rem;
    row-gap: 0;
    align-items: center;
  }

  .product-filter-heading > svg {
    grid-column: 1;
    grid-row: 1 / 3;
  }

  .product-filter-heading h2 {
    grid-column: 2;
    grid-row: 1;
  }

  .product-filter-heading span {
    grid-column: 2;
    grid-row: 2;
  }

  .product-list-heading > div {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
  }

  .product-filter-group + .product-filter-group {
    margin-top: 2.8rem;
  }

  .product-filter-heading h2,
  .product-list-heading h2 {
    font-size: 2rem;
  }

  .product-filter-options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem;
  }

  .product-filter-options button {
    min-height: 4rem;
    padding: 0.4rem 0.4rem;
    font-size: 1.4rem;
  }

  .product-list-heading {
    scroll-margin-top: 8.8rem;
    margin: 6rem 0 2.4rem;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.2rem;
  }

  .product-card-body {
    padding: 1.2rem;
  }

  .product-card h3 {
    min-height: 2rem;
    font-size: 1.5rem;
  }

  .product-detail-breadcrumb {
    padding-top: 1.6rem;
  }

  .product-detail-hero {
    padding: 2rem 0;
  }

  .product-detail-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .product-gallery-arrow {
    width: 4rem;
    height: 4rem;
  }

  .product-gallery-prev {
    left: 1rem;
  }

  .product-gallery-next {
    right: 1rem;
  }

  .product-detail-copy h1 {
    font-size: 2.8rem;
    margin-bottom: 1.4rem;
  }

  .product-detail-copy h2 {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    font-size: 1.8rem;
  }

  .product-spec-card li {
    font-size: 1.4rem;
  }

  .product-detail-actions {
    width: 100%;
    margin-top: 3rem;
  }

  .product-detail-overview {
    padding: 4rem 0;
  }

  .product-detail-section-heading {
    gap: 1rem;
    margin-bottom: 2.8rem;
  }

  .product-detail-section-heading h2 {
    font-size: 2.4rem;
  }

  .product-overview-lead {
    padding-bottom: 2rem;
  }

  .product-overview-lead h3 {
    font-size: 1.8rem;
  }

  .product-spec-grid {
    margin-top: 0;
  }

  .product-spec-card,
  .product-content-block {
    padding: 1.2rem 0;
  }

  .product-spec-card h3,
  .product-content-block > h3 {
    margin-bottom: 1.2rem;
    font-size: 1.8rem;
  }

  .product-technical-specs {
    margin-top: 3rem;
  }

  .product-spec-table,
  .product-spec-table tbody,
  .product-spec-table tr,
  .product-spec-table th,
  .product-spec-table td {
    display: block;
    width: 100%;
    font-size: 1.4rem;
    line-height: 1.6;
  }

  .product-spec-table th {
    padding: 0.4rem 1.2rem;
    border-bottom: 0;
  }

  .product-spec-table td {
    padding: 0.8rem 1.2rem;
  }

  .product-videos {
    margin-top: 4rem;
  }

  .product-video-grid {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }

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

  .product-content-grid article {
    min-height: auto;
  }

  .product-content-grid article > a,
  .product-content-card {
    padding: 2rem;
  }

  .product-detail-back {
    padding: 4rem 0 7rem;
  }

  .line-arrow-link.line-arrow-link-left {
    justify-content: center;
    padding: 0 6rem;
    text-align: center;
  }

  .line-arrow-link.line-arrow-link-left::before {
    left: 2.8rem;
    right: auto;
  }
}




/*　company 共通
------------------------------------------------------------------------------------------------*/

.company .company-profile {
  padding: 4rem 0 8rem;
}

.company .company-profile .content {
  max-width: 80rem;
  padding: 0;
}

.company .company-map-wrap {
  margin-top: 6rem;
}

.company .company-map {
  display: block;
  width: 100%;
  height: 42rem;
  border: 0;
  filter: grayscale(1);
}


form {
  display: block;
  max-width: 108rem;
  margin: 4rem auto 0;
  /* padding: 4rem; */
  /* background: #F4F4F4; */
}

form dl dt.required::after {
  content: "*";
  color: #C5302C;
  margin-left: 0.5em;
}

form dl dt {
  color: #17191d;
  font-weight: 500;
  margin-bottom: 0.4em;
}

form dl dd {
  margin-bottom: 2.8rem;
}

form input[type="text"],
form input[type="email"],
form textarea {
  display: block;
  width: 100%;
  padding: 0.8em 0.8em;
  font-size: 1.6rem;
  border: 1px solid var(--color-border);
}

form textarea {
  height: 28rem;
  resize: none;
}

form select {
  display: block;
  width: 100%;
  padding: 0.8em 3em 0.8em 1em;
  font-size: 1.6rem;
  border: 0;
  background: #fff url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2010%206%22%3E%3Cpath%20d%3D%22M1%201l4%204%204-4%22%20fill%3D%22none%22%20stroke%3D%22%23001624%22%20stroke-width%3D%221%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%3C%2Fsvg%3E') no-repeat right 1.2rem center;
  background-size: 1.2rem auto;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.select-wrap.birth-select {
  display: flex;
  gap: 1rem;
}

.select-wrap.birth-select select {
  flex: 1;
}

form input[type="submit"] {
  display: block;
  width: 100%;
  line-height: 6rem;
  color: #fff;
  background: #17191d;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='16' viewBox='0 0 10 16'%3E%3Cpath d='M1 1l7 7-7 7' fill='none' stroke='%23ffffff' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 2.4rem center;
  background-size: 1rem auto;
  border: 0;
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
  margin: 0 auto;
  transition: opacity 0.3s;
}

form input[type="submit"]:hover {
  opacity: 0.6;
}


.checkbox {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.checkbox label {
  position: relative;
}

.checkbox input[type=checkbox] {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
}

.checkbox input[type=checkbox]+span {
  display: inline-block;
  padding-left: calc(1.6rem + 0.8em);
  line-height: 2rem;
  cursor: pointer;
  position: relative;
}

.checkbox input[type=checkbox]+span::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 1.6rem;
  height: 1.6rem;
  box-sizing: border-box;
  border: 1px solid #17191d;
  background: #fff;
}

.checkbox input[type=checkbox]:checked+span::before {
  background: #17191d;
}

.checkbox input[type=checkbox]:checked+span::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  margin-top: -0.7rem;
  left: 0.52rem;
  width: 0.4rem;
  height: 0.9rem;
  transform: rotate(43deg);
  border-bottom: 0.2rem solid #fff;
  border-right: 0.2rem solid #fff;
}





/*　contact 共通
------------------------------------------------------------------------------------------------*/

.contact .contact-form-section {
  padding: 4rem 0 10rem;
}

.contact .contact-form-section .content {
  max-width: 80rem;
  padding: 0;
}

.contact .contact-form-section big {
  display: block;
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 5rem;
}

.contact .contact-form-section .box {
  display: grid;
  grid-template-columns: 60rem 1fr;
  border: 2px solid #17191d;
  padding: 2rem 0;
  margin-bottom: 10rem;
}

.contact .contact-form-section .box>* {
  padding: 3rem 6rem;
}

.contact .contact-form-section .box>*+* {
  border-left: 1px solid #17191d;
}

.contact .contact-form-section .box .tel {
  font-weight: 500;
}

.contact .contact-form-section .box .tel a {
  font-size: 4rem;
  line-height: 1.3;
}

.privacy-policy .privacy-policy-section {
  padding: 4rem 0 8rem;
}

.privacy-policy .privacy-policy-copy {
  max-width: 68rem;
  margin: 0 auto;
}




/*　スマホ
------------------------------------------------------------------------------------------------*/
@media (max-width: 768px) {
  form {
    padding: 0;
    margin: 1rem auto 0;
  }

  form dl dd {
    margin-bottom: 2rem;
  }


  /*　home SP
------------------------------------------------------------------------------------------------*/

  .home-pickup {
    padding: 3rem 0 0;
  }

  .home-pickup-head {
    margin-bottom: 2rem;
  }

  .pickup-controls {
    display: flex;
  }

  .pickup-arrow {
    width: 4.2rem;
    height: 4.2rem;
  }

  .pickup-slider {
    margin-left: 0;
  }

  .pickup-track {
    gap: 1.2rem;
    padding-left: 2rem;
    padding-right: 2rem;
    scroll-padding-left: 2rem;
  }

  .pickup-card {
    flex-basis: 68vw;
    min-width: 0;
  }

  .pickup-image {
    height: auto;
  }

  .pickup-card-body {
    padding: 1.6rem;
  }

  .pickup-card h3 {
    min-height: 2.8rem;
    margin-bottom: 1rem;
    font-size: 1.8rem;
  }

  .pickup-card p {
    min-height: 0;
    font-size: 1.4rem;
    line-height: 1.6;
  }

  .home-logo-marquee {
    margin-top: 2rem;
  }

  .home-logo-track {
    animation-duration: 24s;
  }

  .home-logo-group {
    gap: 0;
    padding-right: 0;
  }

  .home-logo-item {
    width: 12rem;
    min-height: 4.5rem;
  }

  .home-logo-item img {
    max-width: 12rem;
    /* max-height: 5.5rem; */
  }

  .fv {
    height: 52vh;
    min-height: 52rem;
    justify-content: center;
    align-items: center;
  }

  .fv-slide {
    background-position: 58% center;
    will-change: opacity;
  }

  .fv-slide-1 {
    background-image: url(../images/home/fv-bg_sp.jpg);
  }

  .fv-slide-2 {
    background-image: url(../images/home/fv-bg_2_sp.jpg);
  }

  .fv-slide-3 {
    background-image: url(../images/home/fv-bg_3_sp.jpg);
  }

  .fv-slide-4 {
    background-image: url(../images/home/fv-bg_4_sp.jpg);
  }

  .fv-slide-5 {
    background-image: url(../images/home/fv-bg_5.jpg);
  }

  .fv-slide.is-current,
  .fv-slide.is-entering {
    animation: none;
    transform: none;
  }

  .fv h1 {
    font-size: 2.6rem;
  }

  .fv .h1-btm {
    font-size: 1.5rem;
    margin-top: 1em;
  }

  .fv img.logo {
    width: 17rem;
    margin: 5rem 0 0;
  }

  .fv .scroll {
    display: inline-block;
    padding-bottom: 7.5rem;
  }

  .fv .scroll::before {
    height: 5.5rem;
  }

  @keyframes scroll {
    from {
      height: 2.5rem;
      bottom: 3rem;
      opacity: 0;
    }

    20% {
      height: 2.5rem;
    }

    30% {
      opacity: 1;
    }

    to {
      height: 0;
      bottom: 0;
    }
  }


  .home-about {
    min-height: unset;
    padding: 4rem 0;
  }

  .home-about::before {
    display: none;
  }

  .home-about .content {
    padding-left: 2.2rem;
    padding-bottom: 0rem;
  }

  .home-about-main {
    display: block;
  }

  .home-about-copy {
    max-width: none;
  }

  .home-about-image {
    width: 100%;
    margin-top: 4rem;
  }

  .home-about .ttl-1-en,
  .home-about .ttl-1 {
    padding-left: 0rem;
  }

  .home-about .ttl-1 {
    margin-bottom: 4rem;
    font-size: 1.6rem;
  }

  .home-about-lead {
    font-size: 2rem;
    margin-bottom: 2.4rem;
  }

  footer .content {
    display: flex;
    flex-direction: column;
  }

  footer .logo {
    display: block;
    width: 15rem;
    margin: 0 0 3rem;
  }

  footer .txt {
    width: 100%;
    align-items: stretch;
    padding-top: 0;
  }

  footer ul.footer-nav {
    text-align: left;
  }

  footer .copy {
    text-align: left;
  }

  footer .footer-legal {
    margin-top: 3rem;
  }

  .home-about .btn-wrap {
    gap: 3rem;
  }

  .about .about-overview {
    padding: 3rem 0 6rem;
  }

  .about .about-overview .content {
    padding-left: 2.2rem;
  }

  .about .about-main {
    display: block;
  }

  .about .about-image {
    width: 100%;
    margin-top: 3rem;
  }

  .home-business {
    padding: 6rem 0 2rem;
  }

  .home-business .business-grid {
    grid-template-columns: 1fr;
  }

  .home-business .business-lead {
    margin-bottom: 2.8rem;
  }

  .home-business .business-grid-card {
    min-height: auto;
    padding: 1.6rem;
  }

  .home-business .business-grid-image {
    margin-bottom: 1.6rem;
  }

  .home-business .business-grid-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    line-height: 1.4rem;
  }

  .home-business .business-grid-card p {
    font-size: inherit;
    line-height: inherit;
  }

  .home-business .business-grid-footer {
    display: block;
    margin-top: 2.4rem;
  }

  .home-business .business-grid-note {
    font-size: 1.5rem;
    line-height: 1.8;
    margin-bottom: 2.4rem;
  }

  .home-business .business-grid-link {
    margin: 0 0 0 auto;
  }

  .line-arrow-link {
    width: 100%;
    min-height: 4.8rem;
    padding: 0 6rem 0 2rem;
    font-size: 1.4rem;
  }

  .line-arrow-link::before {
    width: 1rem;
    height: 1rem;
    right: 2.8rem;
  }

  .home-news {
    padding: 2rem 0 8rem;
  }

  .home-banner img {
    min-height: 20rem;
    object-fit: cover;
  }

  .home-banner .pc {
    display: none !important;
  }

  .home-banner .sp {
    display: block !important;
  }

  .home-news-main {
    display: flex;
    flex-direction: column;
  }

  .home-news-side {
    display: contents;
  }

  .home-news-head {
    order: 1;
    width: 100%;
    margin-bottom: 2.8rem;
  }

  .home-news-list {
    order: 2;
    width: 100%;
    margin-right: 0;
  }

  .home-news-link {
    order: 3;
    margin-top: 2.4rem;
  }

  .home-news-list li a {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 2rem 0;
  }

  /*　business SP
------------------------------------------------------------------------------------------------*/

  .business .business-services ul li {
    display: block;
    min-height: unset;
  }

  .business .sec-intro {
    padding: 3rem 0 2rem;
  }

  .business .sec-intro p + p {
    margin-top: 1.8rem;
  }

  .business .business-services ul li+li {
    margin-top: -1px;
  }

  .business .business-services ul li img.img {
    width: 100%;
    height: 24rem;
    object-fit: cover;
    position: unset;
    margin: 0;
  }

  .manufacturers .manufacturer-logo {
    min-height: 20rem;
    padding: 4rem;
  }

  .manufacturers .manufacturer-logo img {
    max-width: 20rem;
    max-height: 9rem;
  }

  .manufacturers .manufacturer-biopac-note {
    margin-top: 2rem;
    padding: 2rem;
    font-size: 1.4rem;
  }

  .manufacturers .manufacturer-link {
    margin-top: 2.4rem;
  }

  .business .business-services ul li .txt {
    width: 100%;
    padding: 2.4rem 2rem 2.8rem;
  }

  .business .business-en {
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }

  .business .business-services ul li .txt h3 {
    font-size: 2rem;
    margin-bottom: 0.5em;
  }

  .business .business-services ul li .txt p + p {
    margin-top: 1.4rem;
  }

  .business .sec-approach {
    padding: 2rem 0 6rem;
  }

  .business .sec-approach .ttl-1 {
    margin-bottom: 2rem;
  }

  .business .sec-approach p {
    font-size: 1.5rem;
    line-height: 1.8;
  }

  .business .sec-approach p + p {
    margin-top: 1.8rem;
  }




  /*　company SP
------------------------------------------------------------------------------------------------*/

  .company .company-profile {
    padding: 4rem 0 4rem;
  }

  .company .company-profile .content {
    padding: 0 2rem;
  }

  .company .company-map-wrap {
    margin-top: 4rem;
  }

  .company .company-map {
    height: 27rem;
  }


  form {
    padding: 0;
  }

  form dl dd {
    margin-bottom: 2rem;
  }

  form input[type="submit"] {
    width: 100%;
    min-height: 4.8rem;
    line-height: 4.8rem;
    font-size: 1.6rem;
  }




  /*　contact SP
------------------------------------------------------------------------------------------------*/

  .contact .contact-form-section {
    padding: 4rem 0 8rem;
  }

  .contact .contact-form-section .content {
    padding: 0 2rem;
  }

  .contact .contact-form-section big {
    font-size: 1.5rem;
    margin-bottom: 4rem;
  }

  .contact .contact-form-section .box {
    grid-template-columns: 1fr;
    padding: 0 3rem;
    margin-bottom: 6rem;
  }

  .contact .contact-form-section .box>* {
    padding: 2rem 0;
  }

  .contact .contact-form-section .box>*+* {
    border-left: none;
    border-top: 1px solid #17191d;
  }

  .contact .contact-form-section .box .tel {
    text-align: center;
  }

  .contact .contact-form-section .box .tel a {
    font-size: 3.6rem;
  }

  .privacy-policy .privacy-policy-section {
    padding: 4rem 0 4rem;
  }

  .privacy-policy .privacy-policy-copy {
    max-width: none;
  }




}

/*　スマホここまで */


/*　activities 共通
------------------------------------------------------------------------------------------------*/

.news-archive {
  margin-top: 3rem;
  padding: 1rem 0 10rem;
}

.news-archive-list {
  list-style: none;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0;
  border-top: 1px solid #d9d9d9;
}

.news-archive-list li {
  border-bottom: 1px solid #d9d9d9;
}

.news-archive-list li a {
  display: grid;
  grid-template-columns: 14rem 1fr;
  gap: 3rem;
  align-items: center;
  padding: 2.4rem 0;
}

.news-archive-list .txt {
  display: block;
  font-size: 1.6rem;
  line-height: 1.8;
}

.news #wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.news main,
.news-detail-page main {
  flex: 1;
}

.news-detail-page #wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.news-detail {
  padding: 6rem 0 10rem;
}

.news-detail .content {
  max-width: 80rem;
  padding: 0;
}

.news-back {
  margin-top: 5rem;
}

.news-detail time {
  display: block;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  margin-bottom: 1.2rem;
  line-height:1;
}

.news-detail h2 {
  font-size: 2.8rem;
  line-height: 1.35;
  margin-bottom: 4rem;
}

.news-detail p + p {
  margin-top: 2.4rem;
}

@media (max-width: 768px) {
  .news-archive {
    margin-top: 2rem;
    padding: 1rem 0 6rem;
  }

  .news-archive-list li a {
    grid-template-columns: 1fr;
    gap: 0.6rem;
    padding: 2rem 0;
  }

  .news-archive-list .txt {
    font-size: inherit;
    line-height: inherit;
  }

  .news-date {
    font-size: 1.4rem;
  }

  .news-detail {
    padding: 1rem 0 6rem;
  }

  .news-detail .content {
    padding: 4rem 2rem;
  }

  .news-back {
    margin-top: 4rem;
  }

  .news-detail h2 {
    font-size: 2.2rem;
    margin-bottom: 2.8rem;
  }

}


form dd .radio-wrap {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

form dd label {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-weight: 500;
  background: #fff;
  padding: 1rem 2rem;
  border: 1px solid transparent;
  transition: border-color 0.3s;
}

form dd label:has(input[type="radio"]:checked) {
  border-color: #17191d;
}

form dd input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  width: 2rem;
  height: 2rem;
  border: 2px solid #17191d;
  border-radius: 50%;
  margin-right: 1rem;
  position: relative;
  cursor: pointer;
}

form dd input[type="radio"]:checked::after {
  content: "";
  display: block;
  width: 1rem;
  height: 1rem;
  background: #17191d;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media (max-width: 768px) {
  .pickup-list-cta {
    display: block;
    margin-top: 2.4rem;
  }

  .pickup-list-cta p {
    margin-bottom: 1.6rem;
  }

  .pickup-list-cta .line-arrow-link {
    width: 100%;
  }

  .fv-links {
    gap: 1rem;
  }

  .fv-links .line-arrow-link {
    flex: 1 1 0;
    width: auto;
  }

  .fv .content {
    width: auto;
    max-width: none;
    padding: 0;
    position: absolute;
    left: 2rem;
    right: 2rem;
    bottom: 4rem;
    margin-top: 0;
  }

  .fv h1 {
    max-width: none;
    font-size: 3rem;
    line-height: 1.5;
  }

  .fv .h1-btm {
    max-width: none;
    font-size: 1.5rem;
    line-height: 1.8;
    margin-top: 1.2rem;
  }

  .fv .scroll {
    display: none;
  }

  form dd .radio-wrap {
    flex-direction: column;
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .home-pickup .ttl-1-en,
  .home-pickup h2.ttl-1 {
    opacity: 1;
    transform: none;
    transition: none;
  }

  body:not(.product-detail-page):not(.home) main .content {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
