.company-subnav {
  background: #fff;
  border-bottom: 1px solid rgba(26, 26, 26, .1);
}

.company-subnav .container {
  display: flex;
  gap: 36px;
  min-height: 64px;
}

.company-subnav a {
  align-items: center;
  color: #5f625f;
  display: flex;
  font-size: 16px;
  position: relative;
}

.company-subnav a:after {
  background: #2f6948;
  bottom: 0;
  content: "";
  height: 3px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
  width: 100%;
}

.company-subnav a.active,
.company-subnav a:hover {
  color: #173c2a;
}

.company-subnav a.active:after,
.company-subnav a:hover:after {
  transform: scaleX(1);
}

.company-section {
  padding: 92px 0;
}

.company-section h2,
.company-qualification-link h2 {
  color: #16251d;
  font-size: 40px;
  line-height: 1.2;
  margin: 0 0 24px;
}

.company-section h3 {
  color: #16251d;
  font-size: 21px;
  margin: 0 0 8px;
}

.company-section p {
  color: #626862;
  line-height: 1.85;
}

.company-kicker {
  color: #b55d4c !important;
  font-size: 13px;
  font-weight: 700;
  margin: 0 0 14px;
  text-transform: uppercase;
}

.company-lead,
.company-intro-body p:first-child {
  color: #2d3932 !important;
  font-size: 18px;
}

.company-split,
.company-culture-layout {
  align-items: center;
  display: grid;
  gap: 72px;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.company-intro-body p {
  margin: 0 0 8px;
}

.company-intro-body p:last-child {
  margin-bottom: 0;
}

.company-product-slider {
  aspect-ratio: 4 / 3;
  background: #edf1ee;
  border-radius: 20px;
  box-shadow: 0 16px 40px rgba(22, 37, 29, .1);
  overflow: hidden;
  position: relative;
  width: 100%;
}

.company-product-track {
  height: 100%;
  position: relative;
  width: 100%;
}

.company-product-slide {
  height: 100%;
  inset: 0;
  margin: 0;
  opacity: 0;
  position: absolute;
  transition: opacity .5s ease;
  visibility: hidden;
  width: 100%;
}

.company-product-slide:first-child,
.company-product-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.company-product-slider.is-ready .company-product-slide:not(.is-active) {
  opacity: 0;
  visibility: hidden;
}

.company-product-slide img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.company-product-arrow {
  align-items: center;
  background: rgba(255, 255, 255, .88);
  border: 0;
  border-radius: 50%;
  color: #173c2a;
  cursor: pointer;
  display: flex;
  height: 44px;
  justify-content: center;
  opacity: 0;
  padding: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: background .25s ease, color .25s ease, opacity .25s ease;
  width: 44px;
  z-index: 2;
}

.company-product-arrow i {
  font-size: 24px;
}

.company-product-prev {
  left: 18px;
}

.company-product-next {
  right: 18px;
}

.company-product-slider:hover .company-product-arrow,
.company-product-slider:focus-within .company-product-arrow {
  opacity: 1;
}

.company-product-arrow:hover,
.company-product-arrow:focus-visible {
  background: #2f6948;
  color: #fff;
  outline: none;
}

.company-product-dots {
  align-items: center;
  bottom: 18px;
  display: flex;
  gap: 8px;
  justify-content: center;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  z-index: 2;
}

.company-product-dot {
  background: rgba(255, 255, 255, .72);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  height: 8px;
  padding: 0;
  transition: background .25s ease, width .25s ease;
  width: 8px;
}

.company-product-dot.is-active {
  background: #fff;
  border-radius: 8px;
  width: 24px;
}

.company-product-slider.is-static .company-product-arrow,
.company-product-slider.is-static .company-product-dots {
  display: none;
}

@media (prefers-reduced-motion: reduce) {
  .company-product-slide,
  .company-product-arrow,
  .company-product-dot {
    transition: none;
  }
}

.company-culture {
  background: #f3f6f4;
}

.company-heading {
  margin: 0 auto 48px;
  max-width: 720px;
  text-align: center;
}

.company-heading p:last-child {
  margin-bottom: 0;
}

.company-culture-layout {
  gap: 58px;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
}

.company-section-label {
  color: #2f6948 !important;
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 12px;
}

.company-culture-body h2 {
  color: #16251d;
  font-size: 34px;
  line-height: 1.35;
  margin: 0 0 24px;
}

.company-culture-body p {
  color: #59625c;
  line-height: 1.95;
  margin: 0 0 16px;
}

.company-culture-visual {
  aspect-ratio: 4 / 3;
  border-radius: 6px;
  margin: 0;
  overflow: hidden;
  position: relative;
}

.company-culture-visual img {
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  width: 100%;
}

.company-culture-visual:after {
  border: 1px solid rgba(47, 105, 72, .16);
  border-radius: 6px;
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.company-history {
  background: #173c2a;
}

.company-heading-light h2,
.company-heading-light p {
  color: #fff;
}

.company-heading-light p:last-child {
  color: rgba(255, 255, 255, .72);
}

.company-timeline {
  display: grid;
  gap: 0;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  list-style: none;
  margin: 0;
  padding: 34px 0 0;
  position: relative;
}

.company-timeline:before {
  background: rgba(255, 255, 255, .26);
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  right: 0;
  top: 8px;
}

.company-timeline li {
  padding: 0 28px 0 0;
  position: relative;
}

.company-timeline li:before {
  background: #d7806e;
  border: 4px solid #173c2a;
  border-radius: 50%;
  content: "";
  height: 15px;
  left: 0;
  position: absolute;
  top: -33px;
  width: 15px;
}

.company-timeline span {
  color: #e49a89;
  font-size: 13px;
  font-weight: 700;
}

.company-timeline h3 {
  color: #fff;
  margin-top: 13px;
}

.company-timeline p {
  color: rgba(255, 255, 255, .68);
  font-size: 13px;
  line-height: 1.75;
  margin-bottom: 0;
}

.company-factory-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.company-photo-slot {
  align-items: center;
  aspect-ratio: 4 / 3;
  background: #edf1ee;
  border: 1px dashed #aab8ae;
  border-radius: 6px;
  color: #2f6948;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 220px;
}

.company-photo-slot i {
  font-size: 34px;
  margin-bottom: 18px;
}

.company-photo-slot strong {
  color: #25372c;
  font-size: 18px;
}

.company-photo-slot span {
  color: #7a847d;
  font-size: 13px;
  margin-top: 7px;
}

.company-network {
  background: #f3f6f4;
}

.company-network-heading {
  margin: 0 auto 48px;
  max-width: 920px;
  text-align: center;
}

.company-network-heading h2 {
  margin-bottom: 12px;
}

.company-network-en {
  color: #66736b !important;
  font-size: 14px;
  margin: 0;
}

.company-network-stage {
  position: relative;
}

.company-network-map {
  background: #f8faf8;
  border-bottom: 1px solid #d8e2dc;
  border-top: 1px solid #d8e2dc;
  height: clamp(300px, 46vw, 560px);
  width: 100%;
}

.company-network-manifesto {
  background: rgba(243, 246, 244, .96);
  border-left: 3px solid #b55d4c;
  bottom: 26px;
  left: 26px;
  max-width: 430px;
  padding: 22px 26px 22px 38px;
  position: absolute;
  width: 38%;
  z-index: 2;
}

.company-network-manifesto > span {
  color: #b55d4c;
  font-family: Georgia, serif;
  font-size: 54px;
  left: 28px;
  line-height: 1;
  position: absolute;
  top: 12px;
  transform: translateX(-100%);
}

.company-network-manifesto p {
  color: #34483c;
  font-size: 15px;
  line-height: 1.9;
  margin: 0;
}

.company-blueprint-grid {
  display: grid;
  gap: 56px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 62px;
}

.company-blueprint-item {
  border-top: 2px solid #2f6948;
  padding-top: 24px;
}

.company-blueprint-item h3 {
  font-size: 24px;
  margin-bottom: 18px;
}

.company-blueprint-body p {
  color: #59665e;
  line-height: 1.8;
  margin: 0 0 5px;
}

.company-blueprint-body strong {
  color: #2f6948;
  font-weight: 700;
}

.company-qualification-link {
  background: #fff;
  border-top: 1px solid #e2e6e3;
  padding: 52px 0;
}

.company-qualification-link .container {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.company-qualification-link h2 {
  font-size: 30px;
  margin: 0;
}

.company-qualification-link a {
  border-bottom: 1px solid #2f6948;
  color: #173c2a;
  font-weight: 700;
  padding: 10px 0;
}

.company-qualification-link a span {
  margin-left: 9px;
}

.company-honor-page {
  padding: 84px 0 96px;
}

.company-honor-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.company-honor-card {
  background: #fff;
  border: 1px solid #e0e6e1;
  border-radius: 6px;
  overflow: hidden;
}

.company-honor-card > a {
  align-items: center;
  background: #f3f6f4;
  display: flex;
  justify-content: center;
  min-height: 260px;
  overflow: hidden;
  padding: 22px;
}

.company-honor-card img {
  max-height: 260px;
  object-fit: contain;
  transition: transform .3s ease;
  width: 100%;
}

.company-honor-card:hover img {
  transform: scale(1.03);
}

.company-honor-card h2 {
  font-size: 18px;
  margin: 0;
  padding: 20px;
  text-align: center;
}

.company-honor-card h2 a {
  color: #25372c;
}

.company-honor-detail {
  padding: 72px 0 92px;
}

.company-honor-detail article {
  margin: 0 auto;
  max-width: 860px;
  text-align: center;
}

.company-honor-detail h2 {
  color: #16251d;
  font-size: 32px;
  margin-bottom: 30px;
}

.company-honor-detail article > img {
  border: 1px solid #e0e6e1;
  border-radius: 6px;
  max-height: 620px;
  object-fit: contain;
}

.company-honor-detail .theme-detail-body {
  margin-top: 30px;
  text-align: left;
}

@media (max-width: 991px) {
  .company-section {
    padding: 68px 0;
  }

  .company-split,
  .company-culture-layout {
    gap: 44px;
    grid-template-columns: 1fr;
  }

  .company-product-slider {
    margin: 0 auto;
    max-width: 620px;
    width: 100%;
  }

  .company-timeline {
    gap: 28px 20px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .company-timeline:before,
  .company-timeline li:before {
    display: none;
  }

  .company-timeline li {
    border-top: 1px solid rgba(255, 255, 255, .2);
    padding: 22px 20px 0 0;
  }

  .company-honor-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .company-subnav .container {
    gap: 28px;
    min-height: 54px;
  }

  .company-subnav a {
    font-size: 15px;
  }

  .company-section {
    padding: 48px 0;
  }

  .company-honor-page,
  .company-honor-detail {
    padding: 48px 0 58px;
  }

  .company-honor-grid {
    grid-template-columns: 1fr;
  }

  .company-honor-card > a {
    min-height: 220px;
  }

  .company-section h2 {
    font-size: 30px;
    margin-bottom: 18px;
  }

  .company-heading {
    margin-bottom: 32px;
  }

  .company-lead,
  .company-intro-body p:first-child {
    font-size: 16px;
  }

  .company-product-slider {
    border-radius: 16px;
  }

  .company-product-arrow {
    height: 38px;
    opacity: 1;
    width: 38px;
  }

  .company-product-prev {
    left: 12px;
  }

  .company-product-next {
    right: 12px;
  }

  .company-product-dots {
    bottom: 14px;
  }

  .company-network-heading {
    margin-bottom: 34px;
  }

  .company-network-map {
    height: 300px;
    max-width: none;
    width: 100%;
  }

  .company-network-manifesto {
    background: transparent;
    bottom: auto;
    left: auto;
    margin-top: 24px;
    max-width: none;
    padding: 12px 0 12px 26px;
    position: relative;
    width: auto;
  }

  .company-blueprint-grid {
    gap: 34px;
    grid-template-columns: 1fr;
    margin-top: 46px;
  }

  .company-culture-body h2 {
    font-size: 27px;
  }

  .company-culture-visual {
    aspect-ratio: 4 / 3;
    margin: 0 auto;
    max-width: 620px;
    width: 100%;
  }

  .company-timeline,
  .company-factory-grid {
    grid-template-columns: 1fr;
  }

  .company-photo-slot {
    aspect-ratio: 16 / 10;
    min-height: 190px;
  }

  .company-qualification-link {
    padding: 38px 0;
  }

  .company-qualification-link .container {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }
}
