@charset "UTF-8";
.global-cta {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  margin-top: 80px;
  background: #082555;
}
.global-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.03;
  pointer-events: none;
}
.global-cta .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .global-cta .container {
    padding: 0 20px;
  }
}
.global-cta__inner {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr auto;
  grid-template-columns: 1fr auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 80px;
}
@media (max-width: 1024px) {
  .global-cta__inner {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    text-align: center;
    gap: 48px;
  }
}
.global-cta__content {
  max-width: 600px;
}
@media (max-width: 1024px) {
  .global-cta__content {
    max-width: 100%;
  }
}
.global-cta__label {
  display: inline-block;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: #c8a45c;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.global-cta__title {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 16px;
  line-height: 1.3;
}
@media (max-width: 768px) {
  .global-cta__title {
    font-size: 24px;
  }
}
.global-cta__text {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.9;
  margin: 0;
}
@media (max-width: 768px) {
  .global-cta__text {
    font-size: 14px;
  }
}
.global-cta__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
@media (max-width: 1024px) {
  .global-cta__actions {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media (max-width: 768px) {
  .global-cta__actions {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
  }
}
.global-cta__btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  padding: 18px 32px;
  border-radius: 4px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  -webkit-transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.global-cta__btn--primary {
  background: #c8a45c;
  color: #ffffff;
}
.global-cta__btn--primary:visited {
  color: #ffffff;
}
.global-cta__btn--primary:hover {
  background: #d4b76e;
  color: #ffffff;
}
.global-cta__btn--primary:hover .global-cta__btn-icon {
  -webkit-transform: translateX(4px);
          transform: translateX(4px);
}
.global-cta__btn--secondary {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.global-cta__btn--secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}
.global-cta__btn--secondary .global-cta__btn-icon {
  color: #ffffff;
}
.global-cta__btn--secondary .global-cta__btn-icon svg {
  stroke: #ffffff;
}
.global-cta__btn--secondary .global-cta__btn-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  line-height: 1.3;
}
.global-cta__btn--secondary .global-cta__btn-text small {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
}
.global-cta__btn--secondary .global-cta__btn-text strong {
  font-family: "DM Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #ffffff;
}
.global-cta__btn-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: -webkit-transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  transition: -webkit-transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.global-cta__btn-icon svg {
  width: 20px;
  height: 20px;
}
@media (max-width: 768px) {
  .global-cta__btn {
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 16px 24px;
  }
}

.btn-primary,
.btn-secondary {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  padding: 16px 36px;
  border-radius: 4px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  -webkit-transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  letter-spacing: 0.08em;
}

.btn-primary {
  background: #c8a45c;
  color: #082555;
  border: none;
}
.btn-primary:hover {
  background: #ffffff;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: #0e3472;
  border: 1px solid #0e3472;
}
.btn-secondary:hover {
  background: #0e3472;
  color: #ffffff;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

.btn-white {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  padding: 16px 36px;
  border-radius: 4px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  -webkit-transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  letter-spacing: 0.08em;
  background: #ffffff;
  color: #0e3472;
  border: 1px solid #ffffff;
}
.btn-white:hover {
  background: #c8a45c;
  border-color: #c8a45c;
  color: #082555;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

.btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  padding: 16px 36px;
  border-radius: 4px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  -webkit-transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  letter-spacing: 0.08em;
}
.btn--primary {
  background: #c8a45c;
  color: #ffffff;
  border: none;
}
.btn--primary:visited {
  color: #ffffff;
}
.btn--primary:hover {
  background: #082555;
  color: #ffffff;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
.btn--secondary {
  background: transparent;
  color: #0e3472;
  border: 1px solid #0e3472;
}
.btn--secondary:hover {
  background: #0e3472;
  color: #ffffff;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
.btn--sm {
  padding: 12px 24px;
  font-size: 14px;
}
.btn--lg {
  padding: 20px 44px;
  font-size: 16px;
}

.card {
  background: #ffffff;
  border-radius: 12px;
  padding: 48px;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  -webkit-transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(224, 224, 224, 0.5);
}
.card:hover {
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
  -webkit-box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
          box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.glass-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 12px;
  padding: 48px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.page-equipment .site-content,
.page-eco-clean .site-content,
.page-antibacterial .site-content {
  padding-top: 0;
}

@media (max-width: 768px) {
  .sp-hide {
    display: none;
  }
}

.sp-only {
  display: none;
}
@media (max-width: 768px) {
  .sp-only {
    display: inline;
  }
}

.page-toc {
  background: #ffffff;
  border-bottom: 1px solid #e0e0e0;
  position: sticky;
  top: 0;
  z-index: 999;
}
.page-toc .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 768px) {
  .page-toc .container {
    padding: 0;
  }
}

.page-toc-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.page-toc-list::-webkit-scrollbar {
  display: none;
}
.page-toc-list {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
@media (max-width: 768px) {
  .page-toc-list {
    padding: 0 20px;
  }
}
.page-toc-list li {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.page-toc-list a {
  display: block;
  padding: 14px 20px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #5a5a5a;
  text-decoration: none;
  white-space: nowrap;
  -webkit-transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1), background 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1), background 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
.page-toc-list a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: #0e3472;
  -webkit-transition: width 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  transition: width 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.page-toc-list a:hover {
  color: #0e3472;
  background: rgba(14, 52, 114, 0.03);
}
.page-toc-list a:hover::after {
  width: 100%;
}
.page-toc-list a.is-active {
  color: #0e3472;
  font-weight: 600;
}
.page-toc-list a.is-active::after {
  width: 100%;
}
@media (max-width: 768px) {
  .page-toc-list a {
    padding: 12px 14px;
    font-size: 12px;
  }
}

.page-hero {
  position: relative;
  min-height: 70vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  color: #ffffff;
  overflow: hidden;
  padding-bottom: 50px;
}
@media (max-width: 768px) {
  .page-hero {
    min-height: 60vh;
    padding-bottom: 44px;
  }
}
.page-hero .page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-hero .page-hero-photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-animation: heroZoom 20s ease-out forwards;
          animation: heroZoom 20s ease-out forwards;
}
@-webkit-keyframes heroZoom {
  from {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  to {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes heroZoom {
  from {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  to {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.page-hero .page-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}
.page-hero .page-hero-overlay--equipment {
  background: rgba(0, 0, 0, 0.6);
}
.page-hero .page-hero-overlay--eco {
  background: -webkit-linear-gradient(315deg, rgba(26, 95, 42, 0.7) 0%, rgba(0, 0, 0, 0.6) 100%);
  background: linear-gradient(135deg, rgba(26, 95, 42, 0.7) 0%, rgba(0, 0, 0, 0.6) 100%);
}
.page-hero .page-hero-overlay--ikd {
  background: -webkit-linear-gradient(315deg, rgba(14, 52, 114, 0.7) 0%, rgba(0, 0, 0, 0.6) 100%);
  background: linear-gradient(135deg, rgba(14, 52, 114, 0.7) 0%, rgba(0, 0, 0, 0.6) 100%);
}
.page-hero .page-hero-content {
  position: relative;
  z-index: 1;
}
.page-hero .page-hero-content .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 768px) {
  .page-hero .page-hero-content .container {
    padding: 0 20px;
  }
}
.page-hero .page-hero-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-animation: fadeInUp 0.6s ease 0.2s forwards;
          animation: fadeInUp 0.6s ease 0.2s forwards;
}
.page-hero .page-hero-label .label-en {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #c8a45c;
}
.page-hero .page-hero-label .label-line {
  width: 40px;
  height: 1px;
  background: rgba(255, 255, 255, 0.4);
}
.page-hero .page-hero-title {
  margin: 0 0 24px;
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-animation: fadeInUp 0.6s ease 0.4s forwards;
          animation: fadeInUp 0.6s ease 0.4s forwards;
}
.page-hero .page-hero-title .title-en {
  display: block;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.02em;
  line-height: 1;
  color: rgba(255, 255, 255, 0.15);
  margin-bottom: -20px;
}
@media (max-width: 768px) {
  .page-hero .page-hero-title .title-en {
    font-size: clamp(32px, 12vw, 56px);
    margin-bottom: -10px;
  }
}
.page-hero .page-hero-title .title-jp {
  display: block;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3;
}
@media (max-width: 768px) {
  .page-hero .page-hero-title .title-jp {
    font-size: clamp(24px, 7vw, 32px);
  }
}
.page-hero .page-hero-title--large .title-main {
  display: block;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 8px;
}
@media (max-width: 768px) {
  .page-hero .page-hero-title--large .title-main {
    font-size: clamp(28px, 8vw, 40px);
  }
}
.page-hero .page-hero-title--large .title-sub {
  display: block;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
}
@media (max-width: 768px) {
  .page-hero .page-hero-title--large .title-sub {
    font-size: clamp(16px, 4.5vw, 20px);
  }
}
.page-hero .page-hero-desc {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  max-width: 600px;
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-animation: fadeInUp 0.6s ease 0.6s forwards;
          animation: fadeInUp 0.6s ease 0.6s forwards;
}
@media (max-width: 768px) {
  .page-hero .page-hero-desc {
    font-size: 16px;
  }
}
.page-hero .page-breadcrumb {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 0;
  background: rgba(0, 0, 0, 0.3);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  z-index: 2;
}
.page-hero .page-breadcrumb .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 768px) {
  .page-hero .page-breadcrumb .container {
    padding: 0 20px;
  }
}
.page-hero .breadcrumb-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 12px;
}
.page-hero .breadcrumb-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.page-hero .breadcrumb-list li::after {
  content: "/";
  color: rgba(255, 255, 255, 0.4);
}
.page-hero .breadcrumb-list li:last-child::after {
  display: none;
}
.page-hero .breadcrumb-list a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  -webkit-transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.page-hero .breadcrumb-list a:hover {
  color: #ffffff;
}
.page-hero .breadcrumb-list span {
  color: rgba(255, 255, 255, 0.5);
}
.page-hero .eco-hero-badge,
.page-hero .ikd-hero-badge {
  margin-bottom: 24px;
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-animation: fadeInUp 0.6s ease 0.1s forwards;
          animation: fadeInUp 0.6s ease 0.1s forwards;
}
.page-hero .eco-logo {
  max-width: 200px;
  height: auto;
}
@media (max-width: 768px) {
  .page-hero .eco-logo {
    max-width: 150px;
  }
}
.page-hero .eco-logo-group {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 12px 24px;
  background: rgba(46, 125, 50, 0.15);
  border: 1px solid rgba(46, 125, 50, 0.3);
  border-radius: 4px;
}
.page-hero .eco-logo-group .eco-label {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #2e7d32;
  line-height: 1;
}
.page-hero .eco-logo-group .eco-type {
  font-family: "DM Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 4px;
}
.page-hero .ikd-logo-group {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
}
.page-hero .ikd-logo-group .ikd-label {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #c8a45c;
  line-height: 1;
}
.page-hero .ikd-logo-group .ikd-type {
  font-family: "DM Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 4px;
}

@-webkit-keyframes fadeInUp {
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.section {
  padding: 160px 0;
}
@media (max-width: 768px) {
  .section {
    padding: 80px 0;
  }
}

.section-header-left {
  margin-bottom: 80px;
}
@media (max-width: 768px) {
  .section-header-left {
    margin-bottom: 48px;
  }
}

.section-header-center {
  text-align: center;
  margin-bottom: 80px;
}
@media (max-width: 768px) {
  .section-header-center {
    margin-bottom: 48px;
  }
}

.section-label {
  display: block;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #c8a45c;
  margin-bottom: 16px;
}

.section-title-lg {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: #0a0a0a;
  margin: 0 0 24px;
}
@media (max-width: 768px) {
  .section-title-lg {
    font-size: clamp(24px, 6vw, 32px);
  }
}

.section-desc {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 16px;
  color: #5a5a5a;
  line-height: 1.9;
  margin: 0;
  max-width: 700px;
}
.section-header-center .section-desc {
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 768px) {
  .section-desc {
    font-size: 14px;
  }
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
}

.container-half {
  max-width: 600px;
  padding: 0 80px;
}
@media (max-width: 768px) {
  .container-half {
    max-width: none;
    padding: 0 20px;
  }
}

.btn-outline {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  padding: 18px 40px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #0a0a0a;
  text-decoration: none;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  background: transparent;
  -webkit-transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-outline:hover {
  background: #0a0a0a;
  border-color: #0a0a0a;
  color: #ffffff;
}
.btn-outline:hover .btn-icon {
  -webkit-transform: translateX(4px);
          transform: translateX(4px);
}
.btn-outline--white {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.4);
}
.btn-outline--white:hover {
  background: #ffffff;
  border-color: #ffffff;
  color: #0a0a0a;
}
.btn-outline .btn-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: -webkit-transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  transition: -webkit-transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

a.btn-solid,
a.btn-solid:link,
a.btn-solid:visited {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  padding: 18px 40px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #ffffff;
  text-decoration: none;
  border: none;
  border-radius: 4px;
  background: #0e3472;
  -webkit-transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

a.btn-solid:hover {
  background: #c8a45c;
  color: #082555;
}
a.btn-solid:hover .btn-icon {
  -webkit-transform: translateX(4px);
          transform: translateX(4px);
}

.btn-solid--large {
  padding: 20px 48px;
  font-size: 16px;
}

.btn-solid .btn-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: -webkit-transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  transition: -webkit-transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.page-equipment {
  background: #ffffff;
}

.section--featured-equipment {
  background: #ffffff;
}

.featured-equipment-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 160px;
}
@media (max-width: 768px) {
  .featured-equipment-grid {
    gap: 80px;
  }
}

.featured-equipment-card {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 1024px) {
  .featured-equipment-card {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 48px;
  }
}
.featured-equipment-card--reverse .featured-equipment-photo {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
.featured-equipment-card--reverse .featured-equipment-content {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
@media (max-width: 1024px) {
  .featured-equipment-card--reverse .featured-equipment-photo {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .featured-equipment-card--reverse .featured-equipment-content {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

.featured-equipment-photo {
  position: relative;
}
.featured-equipment-photo .photo-wrapper {
  aspect-ratio: 4/3;
  border-radius: 12px;
  overflow: hidden;
  background: #f8f8f8;
}
.featured-equipment-photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.featured-equipment-photo .equipment-num {
  position: absolute;
  top: 24px;
  left: 24px;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 72px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.3);
  line-height: 1;
}
@media (max-width: 768px) {
  .featured-equipment-photo .equipment-num {
    font-size: 48px;
    top: 16px;
    left: 16px;
  }
}

.featured-equipment-content {
  padding: 48px;
}
@media (max-width: 768px) {
  .featured-equipment-content {
    padding: 16px 0;
  }
}

.equipment-header {
  margin-bottom: 24px;
}

.equipment-title {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #0a0a0a;
  margin: 0 0 16px;
}
@media (max-width: 768px) {
  .equipment-title {
    font-size: 24px;
  }
}

.equipment-specs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 48px;
}
@media (max-width: 768px) {
  .equipment-specs {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 8px;
  }
}

.spec-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 8px;
}
.spec-item .spec-label {
  font-size: 14px;
  color: #5a5a5a;
}
.spec-item .spec-value {
  font-family: "DM Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #0e3472;
}

.equipment-description {
  font-size: 16px;
  color: #1a1a1a;
  line-height: 1.9;
  margin: 0;
}

.section--equipment-list {
  background: #f8f8f8;
}

.section--equipment-category {
  background: #ffffff;
}
.section--equipment-category:nth-child(even) {
  background: #f8f8f8;
}
.section--equipment-category + .section--equipment-category {
  padding-top: 80px;
}

.equipment-table-wrapper {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
@media (max-width: 768px) {
  .equipment-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

.equipment-table {
  width: 100%;
  border-collapse: collapse;
}
.equipment-table th, .equipment-table td {
  padding: 16px 24px;
  text-align: left;
  border-bottom: 1px solid #e0e0e0;
}
@media (max-width: 768px) {
  .equipment-table th, .equipment-table td {
    padding: 16px;
  }
}
.equipment-table th {
  background: #0e3472;
  color: #ffffff;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 14px;
  font-weight: 600;
}
.equipment-table td {
  font-size: 14px;
  color: #1a1a1a;
}
.equipment-table .col-name {
  width: 40%;
}
@media (max-width: 768px) {
  .equipment-table .col-name {
    width: auto;
  }
}
.equipment-table .col-capability {
  width: 40%;
}
@media (max-width: 768px) {
  .equipment-table .col-capability {
    width: auto;
  }
}
.equipment-table .col-quantity {
  width: 20%;
  text-align: center;
}
@media (max-width: 768px) {
  .equipment-table .col-quantity {
    width: auto;
  }
}
.equipment-table tbody tr {
  -webkit-transition: background 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  transition: background 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.equipment-table tbody tr:hover {
  background: rgba(248, 248, 248, 0.5);
}
.equipment-table tbody tr.is-featured {
  background: rgba(200, 164, 92, 0.05);
}
.equipment-table tbody tr.is-featured .col-name {
  font-weight: 600;
  color: #0a0a0a;
}
.equipment-table .featured-badge {
  display: inline-block;
  padding: 2px 8px;
  font-size: 10px;
  font-weight: 600;
  color: #b08f4a;
  background: rgba(200, 164, 92, 0.15);
  border-radius: 3px;
  margin-right: 8px;
}

.no-equipment {
  padding: 80px;
  text-align: center;
  color: #5a5a5a;
}

.section--capabilities-link {
  background: #ffffff;
  padding: 80px 0;
}

.capabilities-link-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 48px;
  padding: 80px;
  background: #f8f8f8;
  border-radius: 12px;
}
@media (max-width: 1024px) {
  .capabilities-link-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
  }
}

.capabilities-link-content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.capabilities-link-title {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #0a0a0a;
  margin: 0 0 8px;
}

.capabilities-link-desc {
  font-size: 14px;
  color: #5a5a5a;
  margin: 0;
  line-height: 1.7;
}

.page-eco-clean {
  background: #ffffff;
}

.section--eco-benefits {
  background: #ffffff;
}

.eco-benefits-header {
  text-align: center;
  margin-bottom: 80px;
}

.eco-benefits-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 1024px) {
  .eco-benefits-grid {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .eco-benefits-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.eco-benefit-card {
  padding: 48px;
  background: #f8f8f8;
  border-radius: 12px;
  text-align: center;
  -webkit-transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.eco-benefit-card:hover {
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
  -webkit-box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
          box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}
.eco-benefit-card .benefit-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #ffffff;
  border-radius: 50%;
  color: #0e3472;
}
.eco-benefit-card .benefit-title {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #0a0a0a;
  margin: 0 0 8px;
}
.eco-benefit-card .benefit-desc {
  font-size: 14px;
  color: #5a5a5a;
  line-height: 1.7;
  margin: 0;
}

.section--eco-technology {
  background: #f8f8f8;
  padding: 0;
}

.eco-technology-layout {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 1024px) {
  .eco-technology-layout {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.eco-technology-visual {
  position: relative;
  min-height: 600px;
}
@media (max-width: 1024px) {
  .eco-technology-visual {
    min-height: 400px;
  }
}

.technology-image-stack {
  position: relative;
  height: 100%;
}
.technology-image-stack .tech-image {
  position: absolute;
  border-radius: 12px;
  overflow: hidden;
  -webkit-box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
          box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}
.technology-image-stack .tech-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.technology-image-stack .tech-image--main {
  top: 80px;
  left: 80px;
  right: 160px;
  bottom: 160px;
}
@media (max-width: 768px) {
  .technology-image-stack .tech-image--main {
    top: 16px;
    left: 16px;
    right: 80px;
    bottom: 80px;
  }
}
.technology-image-stack .tech-image--sub {
  width: 200px;
  height: 200px;
  right: 48px;
  bottom: 48px;
}
@media (max-width: 768px) {
  .technology-image-stack .tech-image--sub {
    width: 120px;
    height: 120px;
    right: 8px;
    bottom: 8px;
  }
}

.technology-image-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 80px;
  height: 100%;
}
@media (max-width: 768px) {
  .technology-image-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 24px;
  }
}
.technology-image-grid .tech-image-item {
  border-radius: 12px;
  overflow: hidden;
  -webkit-box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
          box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  background: #ffffff;
}
.technology-image-grid .tech-image-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}

.eco-technology-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 160px 80px;
}
@media (max-width: 768px) {
  .eco-technology-content {
    padding: 80px 20px;
  }
}

.technology-explanation {
  margin-top: 48px;
}

.tech-step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid #e0e0e0;
}
.tech-step:first-child {
  border-top: 1px solid #e0e0e0;
}
.tech-step .step-num {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 36px;
  font-weight: 400;
  color: #c8a45c;
  line-height: 1;
  width: 48px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.tech-step .step-content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.tech-step .step-title {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #0a0a0a;
  margin: 0 0 8px;
}
.tech-step .step-desc {
  font-size: 14px;
  color: #5a5a5a;
  line-height: 1.7;
  margin: 0;
}

.section--eco-comparison {
  background: #f8f8f8;
}

.comparison-table-wrapper {
  background: #ffffff;
  border-radius: 12px;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
}
.comparison-table th, .comparison-table td {
  padding: 16px 20px;
  text-align: center;
  border-bottom: 1px solid #e0e0e0;
  vertical-align: middle;
  font-size: 14px;
}
@media (max-width: 768px) {
  .comparison-table th, .comparison-table td {
    padding: 12px 8px;
    font-size: 12px;
  }
}
.comparison-table th:first-child, .comparison-table td:first-child {
  text-align: left;
  font-weight: 600;
  width: 35%;
}
@media (max-width: 768px) {
  .comparison-table th:first-child, .comparison-table td:first-child {
    width: 30%;
  }
}
.comparison-table thead th {
  background: #0a0a0a;
  color: #ffffff;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-weight: 600;
  border-bottom: none;
}
.comparison-table thead th.col-highlight {
  background: #0e3472;
}
.comparison-table tbody tr:last-child td {
  border-bottom: none;
}
.comparison-table tbody td:first-child {
  color: #0a0a0a;
}
.comparison-table tbody .col-highlight {
  background: rgba(14, 52, 114, 0.03);
}
.comparison-table .rating {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .comparison-table .rating {
    padding: 3px 6px;
    font-size: 10px;
  }
}
.comparison-table .rating--good {
  background: rgba(14, 52, 114, 0.1);
  color: #0e3472;
}
.comparison-table .rating--normal {
  background: #f8f8f8;
  color: #5a5a5a;
}

.comparison-note {
  text-align: center;
  font-size: 12px;
  color: #5a5a5a;
  margin-top: 16px;
}

.section--eco-usecases {
  background: #f8f8f8;
}

.usecases-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 768px) {
  .usecases-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.usecase-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  -webkit-transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.usecase-card:hover {
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
  -webkit-box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
          box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}
.usecase-card--large {
  -ms-grid-column-span: 2;
  grid-column: span 2;
}
@media (max-width: 768px) {
  .usecase-card--large {
    -ms-grid-column-span: 1;
    grid-column: span 1;
  }
}
.usecase-card .usecase-photo {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #f8f8f8;
}
.usecase-card .usecase-photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transition: -webkit-transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.usecase-card:hover .usecase-photo img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.usecase-card .usecase-content {
  padding: 24px;
}
.usecase-card .usecase-category {
  display: inline-block;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #c8a45c;
  margin-bottom: 4px;
}
.usecase-card .usecase-title {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #0a0a0a;
  margin: 0 0 8px;
}
.usecase-card .usecase-desc {
  font-size: 14px;
  color: #5a5a5a;
  line-height: 1.7;
  margin: 0;
}

.section--eco-products {
  background: #ffffff;
}

.eco-products-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 1024px) {
  .eco-products-grid {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .eco-products-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.eco-product-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  padding: 48px;
  background: #f8f8f8;
  border-radius: 12px;
  text-decoration: none;
  -webkit-transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.eco-product-link:hover {
  background: #0e3472;
}
.eco-product-link:hover .product-icon {
  color: #ffffff;
}
.eco-product-link:hover .product-name {
  color: #ffffff;
}
.eco-product-link--more {
  background: rgba(200, 164, 92, 0.1);
}
.eco-product-link--more:hover {
  background: #c8a45c;
}
.eco-product-link .product-icon {
  color: #0e3472;
  -webkit-transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.eco-product-link .product-name {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #0a0a0a;
  text-align: center;
  -webkit-transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.section--eco-overview {
  background: #ffffff;
}

.eco-overview-layout {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 1024px) {
  .eco-overview-layout {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.eco-overview-visual {
  aspect-ratio: 4/3;
  border-radius: 12px;
  overflow: hidden;
  -webkit-box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
          box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}
.eco-overview-visual img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.eco-overview-content {
  padding: 48px 0;
}
@media (max-width: 768px) {
  .eco-overview-content {
    padding: 16px 0;
  }
}

.overview-headline {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 700;
  color: #0a0a0a;
  line-height: 1.4;
  margin: 0 0 24px;
}
@media (max-width: 768px) {
  .overview-headline {
    font-size: clamp(20px, 5vw, 28px);
  }
}

.overview-text {
  font-size: 16px;
  color: #1a1a1a;
  line-height: 1.9;
  margin: 0 0 24px;
}
@media (max-width: 768px) {
  .overview-text {
    font-size: 14px;
  }
}

.overview-keywords {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.keyword-tag {
  display: inline-block;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  color: #0e3472;
  background: rgba(14, 52, 114, 0.08);
  border-radius: 4px;
}

.section--eco-technology {
  background: #f8f8f8;
}

.technology-keywords {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 48px;
}

.section--eco-proof {
  background: #f8f8f8;
}

.proof-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 768px) {
  .proof-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.proof-item {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  -webkit-transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.proof-item:hover {
  -webkit-box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
          box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

.proof-header {
  padding: 16px 24px;
  background: #0e3472;
  text-align: center;
}
.proof-header .proof-type {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
}

.proof-images {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr auto 1fr;
  grid-template-columns: 1fr auto 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 16px;
  gap: 8px;
}

.proof-before,
.proof-after {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}
.proof-before img,
.proof-after img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
}
.proof-before .proof-label,
.proof-after .proof-label {
  position: absolute;
  bottom: 8px;
  left: 8px;
  padding: 4px 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 4px;
}

.proof-before .proof-label {
  background: rgba(0, 0, 0, 0.85);
  color: #ffffff;
}

.proof-after .proof-label {
  background: #1a5f2a;
  color: #ffffff;
}

.proof-arrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 40px;
  color: #c8a45c;
}

.proof-result {
  padding: 16px 24px;
  background: #f8f8f8;
  text-align: center;
}
.proof-result .proof-result-badge {
  display: inline-block;
  padding: 4px 16px;
  background: #1a5f2a;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  border-radius: 20px;
  margin-bottom: 6px;
}
.proof-result .proof-caption {
  font-size: 12px;
  color: #5a5a5a;
  margin: 0;
  line-height: 1.5;
}

.proof-conditions {
  max-width: 600px;
  margin: 80px auto 0;
}

.proof-conditions-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 24px;
  padding: 24px;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e0e0e0;
}
@media (max-width: 768px) {
  .proof-conditions-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
  }
}

.proof-conditions-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #0a0a0a;
  margin: 0;
  white-space: nowrap;
  padding-right: 24px;
  border-right: 1px solid #e0e0e0;
}
@media (max-width: 768px) {
  .proof-conditions-title {
    padding-right: 0;
    border-right: none;
    padding-bottom: 16px;
    border-bottom: 1px solid #e0e0e0;
  }
}
.proof-conditions-title svg {
  color: #0e3472;
}

.proof-conditions-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 16px 48px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.proof-conditions-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-size: 14px;
}
.proof-conditions-list .condition-label {
  font-weight: 600;
  color: #0a0a0a;
}
.proof-conditions-list .condition-value {
  color: #1a1a1a;
}

.section--eco-specs {
  background: #ffffff;
}

.specs-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 768px) {
  .specs-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.spec-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: #f8f8f8;
  border-radius: 12px;
  overflow: hidden;
}
.spec-card--full {
  -ms-grid-column-span: 2;
  grid-column: span 2;
}
@media (max-width: 768px) {
  .spec-card--full {
    -ms-grid-column-span: 1;
    grid-column: span 1;
  }
}

.spec-card-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  padding: 24px;
  background: #0e3472;
  color: #ffffff;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.spec-card-header .spec-card-icon {
  width: 48px;
  height: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.spec-card-header .spec-card-title {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin: 0;
}

.spec-card-body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 24px;
}

.spec-data-table {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
  border-radius: 4px;
  overflow: hidden;
}
.spec-data-table th, .spec-data-table td {
  padding: 16px 24px;
  text-align: center;
  font-size: 14px;
}
@media (max-width: 768px) {
  .spec-data-table th, .spec-data-table td {
    padding: 8px;
    font-size: 12px;
  }
}
.spec-data-table thead th {
  background: rgba(14, 52, 114, 0.08);
  font-weight: 600;
  color: #0a0a0a;
  border-bottom: 2px solid #e0e0e0;
}
.spec-data-table tbody tr {
  border-bottom: 1px solid #e0e0e0;
}
.spec-data-table tbody tr:last-child {
  border-bottom: none;
}
.spec-data-table td {
  color: #1a1a1a;
}
.spec-data-table td strong {
  color: #0a0a0a;
}
.spec-data-table .result-ok {
  display: inline-block;
  padding: 3px 10px;
  background: rgba(26, 95, 42, 0.1);
  color: #1a5f2a;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
}
.spec-data-table .result-caution {
  display: inline-block;
  padding: 3px 10px;
  background: rgba(200, 164, 92, 0.15);
  color: #8a6d3b;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
}

.spec-feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.spec-feature-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 8px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(224, 224, 224, 0.5);
}
.spec-feature-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.spec-feature-list li:first-child {
  padding-top: 0;
}
.spec-feature-list .feature-icon {
  width: 20px;
  height: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #1a5f2a;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-top: 2px;
}
.spec-feature-list .feature-text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 14px;
  color: #1a1a1a;
  line-height: 1.5;
}
.spec-feature-list .feature-badge {
  display: inline-block;
  padding: 2px 8px;
  background: #1a5f2a;
  color: #ffffff;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 600;
  margin-left: 6px;
}
.spec-feature-list .feature-value {
  font-family: "DM Sans", "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  color: #0e3472;
  margin: 0 4px;
}

.temp-range {
  text-align: center;
  margin-bottom: 24px;
}

.temp-display {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 16px;
  margin-bottom: 8px;
}
.temp-display .temp-min,
.temp-display .temp-max {
  font-family: "DM Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 700;
  color: #0e3472;
}
.temp-display .temp-bar {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 200px;
  height: 8px;
  background: -webkit-gradient(linear, left top, right top, from(#3498db), color-stop(50%, #1a5f2a), to(#e74c3c));
  background: -webkit-linear-gradient(left, #3498db 0%, #1a5f2a 50%, #e74c3c 100%);
  background: linear-gradient(90deg, #3498db 0%, #1a5f2a 50%, #e74c3c 100%);
  border-radius: 4px;
}

.temp-label {
  font-size: 12px;
  color: #5a5a5a;
}

.usage-tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
}

.usage-tag {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
}
.usage-tag--ok {
  background: rgba(26, 95, 42, 0.1);
  color: #1a5f2a;
}
.usage-tag--ng {
  background: rgba(198, 40, 40, 0.1);
  color: #c62828;
}

.section--eco-safety {
  background: #f8f8f8;
}

.safety-badges {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 80px;
}
@media (max-width: 768px) {
  .safety-badges {
    gap: 8px;
  }
}

.safety-badge {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  padding: 24px 48px;
  background: #ffffff;
  border-radius: 12px;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
@media (max-width: 768px) {
  .safety-badge {
    width: 100%;
    padding: 12px 16px;
    gap: 12px;
  }
}

.safety-badge-icon {
  width: 56px;
  height: 56px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: rgba(26, 95, 42, 0.1);
  border-radius: 50%;
  color: #1a5f2a;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (max-width: 768px) {
  .safety-badge-icon {
    width: 40px;
    height: 40px;
  }
  .safety-badge-icon svg {
    width: 24px;
    height: 24px;
  }
}

.safety-badge-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2px;
}
@media (max-width: 768px) {
  .safety-badge-text {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 8px;
  }
}
.safety-badge-text .badge-title {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #0a0a0a;
}
@media (max-width: 768px) {
  .safety-badge-text .badge-title {
    font-size: 13px;
  }
}
.safety-badge-text .badge-status {
  font-size: 12px;
  font-weight: 600;
  color: #1a5f2a;
}
@media (max-width: 768px) {
  .safety-badge-text .badge-status {
    font-size: 12px;
  }
}

.safety-details {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1.2fr 1fr;
  grid-template-columns: 1.2fr 1fr;
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .safety-details {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.safety-table-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.safety-table-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  padding: 24px;
  margin: 0;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #0a0a0a;
  background: rgba(14, 52, 114, 0.05);
  border-bottom: 1px solid #e0e0e0;
}
.safety-table-title svg {
  color: #0e3472;
}

.safety-result-table {
  width: 100%;
  border-collapse: collapse;
}
.safety-result-table th, .safety-result-table td {
  padding: 16px;
  text-align: left;
  font-size: 14px;
}
@media (max-width: 768px) {
  .safety-result-table th, .safety-result-table td {
    padding: 8px;
    font-size: 12px;
  }
}
.safety-result-table thead th {
  background: #f8f8f8;
  font-weight: 600;
  color: #0a0a0a;
}
.safety-result-table tbody tr {
  border-bottom: 1px solid #e0e0e0;
}
.safety-result-table tbody tr:last-child {
  border-bottom: none;
}
.safety-result-table td {
  color: #1a1a1a;
}
.safety-result-table .judge-pass {
  display: inline-block;
  padding: 3px 12px;
  background: #1a5f2a;
  color: #ffffff;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
}

.safety-eco-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  padding: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.safety-eco-card .eco-card-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e0e0e0;
}
.safety-eco-card .eco-card-header svg {
  color: #1a5f2a;
}
.safety-eco-card .eco-card-header h4 {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #0a0a0a;
  margin: 0;
}
.safety-eco-card .eco-features {
  list-style: none;
  margin: 0;
  padding: 0;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.safety-eco-card .eco-features li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 8px;
  padding: 8px 0;
  font-size: 14px;
  color: #1a1a1a;
  line-height: 1.5;
}
.safety-eco-card .eco-features .eco-check {
  width: 20px;
  height: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: rgba(26, 95, 42, 0.1);
  border-radius: 50%;
  color: #1a5f2a;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-top: 2px;
}

.section--eco-care {
  background: #ffffff;
}

.care-cards {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 80px;
}
@media (max-width: 768px) {
  .care-cards {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.care-card {
  background: #f8f8f8;
  border-radius: 12px;
  overflow: hidden;
}

.care-card-header {
  padding: 24px;
}
.care-card--ok .care-card-header {
  background: #1a5f2a;
  color: #ffffff;
}
.care-card--ng .care-card-header {
  background: #c62828;
  color: #ffffff;
}

.care-card-badge {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.care-card-badge svg {
  opacity: 0.8;
}
.care-card-badge span {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.care-card-title {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin: 0;
}

.care-card-list {
  list-style: none;
  margin: 0;
  padding: 24px;
}
.care-card-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 8px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(224, 224, 224, 0.5);
}
.care-card-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.care-card-list li:first-child {
  padding-top: 0;
}

.care-item-icon {
  width: 20px;
  height: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-top: 2px;
}
.care-card--ok .care-item-icon {
  color: #1a5f2a;
}
.care-card--ng .care-item-icon {
  color: #c62828;
}

.care-item-text {
  font-size: 14px;
  color: #1a1a1a;
  line-height: 1.5;
}

.care-note {
  font-size: 12px;
  color: #5a5a5a;
  margin-left: 4px;
}

.care-tips-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 24px;
  padding: 24px;
  background: rgba(200, 164, 92, 0.08);
  border-radius: 12px;
  max-width: 800px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .care-tips-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
  }
}

.care-tips-icon {
  width: 48px;
  height: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #c8a45c;
  color: #082555;
  border-radius: 50%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.care-tips-content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.care-tips-title {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #0a0a0a;
  margin: 0 0 8px;
}

.care-tips-text {
  font-size: 14px;
  color: #1a1a1a;
  line-height: 1.7;
  margin: 0;
}

.care-notice-list {
  max-width: 900px;
  margin: 0 auto 80px;
}

.care-notice-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid #e0e0e0;
}
.care-notice-item:first-child {
  border-top: 1px solid #e0e0e0;
}
@media (max-width: 768px) {
  .care-notice-item {
    gap: 16px;
  }
}

.care-notice-num {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 32px;
  height: 32px;
  background: #0e3472;
  color: #ffffff;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 16px;
  font-weight: 700;
  border-radius: 50%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (max-width: 768px) {
  .care-notice-num {
    width: 28px;
    height: 28px;
    font-size: 14px;
  }
}

.care-notice-content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.care-notice-content p {
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
  color: #1a1a1a;
}
@media (max-width: 768px) {
  .care-notice-content p {
    font-size: 14px;
  }
}
.care-notice-content p strong {
  color: #0a0a0a;
}

.sample-notes {
  max-width: 800px;
  margin: 80px auto;
  padding: 24px;
  background: rgba(14, 52, 114, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(14, 52, 114, 0.1);
}

.sample-notes-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #0a0a0a;
  margin: 0 0 16px;
}
.sample-notes-title svg {
  color: #0e3472;
}

.sample-notes-list {
  margin: 0;
  padding-left: 1.2em;
}
.sample-notes-list li {
  font-size: 14px;
  color: #1a1a1a;
  line-height: 1.8;
  margin-bottom: 8px;
}
.sample-notes-list li:last-child {
  margin-bottom: 0;
}
.sample-notes-list li strong {
  color: #0a0a0a;
}

.tech-image-caption {
  font-size: 12px;
  color: rgba(26, 26, 26, 0.8);
  text-align: center;
  padding: 8px;
  margin: 0;
  background: rgba(8, 37, 85, 0.03);
  border-top: 1px solid #e0e0e0;
}

.temp-highlight {
  text-align: center;
  margin-bottom: 24px;
}
.temp-highlight .temp-value {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 48px;
  font-weight: 700;
  color: #c8a45c;
  letter-spacing: 0.08em;
}
@media (max-width: 768px) {
  .temp-highlight .temp-value {
    font-size: 36px;
  }
}

.result-excellent {
  display: inline-block;
  padding: 4px 12px;
  background: #1a5f2a;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  border-radius: 4px;
}

.spec-note {
  font-size: 12px;
  color: rgba(26, 26, 26, 0.7);
  margin-top: 16px;
}

.section--use-scenes-compact {
  background: #f8f8f8;
}

.use-scenes-compact-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 1024px) {
  .use-scenes-compact-grid {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .use-scenes-compact-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.use-scene-card-compact {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
          box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  -webkit-transition: -webkit-box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  transition: -webkit-box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  transition: box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1), transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  transition: box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1), transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), -webkit-box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.use-scene-card-compact:hover {
  -webkit-box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
          box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
}
.use-scene-card-compact:hover .use-scene-thumb img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.use-scene-card-compact:hover .use-scene-title {
  color: #0e3472;
}

.use-scene-thumb {
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.use-scene-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}

.use-scene-body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px;
}
@media (max-width: 768px) {
  .use-scene-body {
    padding: 16px;
  }
}

.use-scene-category {
  font-family: "DM Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #c8a45c;
  text-transform: uppercase;
}

.use-scene-title {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #0a0a0a;
  margin: 0;
  line-height: 1.5;
  -webkit-transition: color 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  transition: color 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 768px) {
  .use-scene-title {
    font-size: 14px;
  }
}

.use-scene-desc {
  font-size: 13px;
  color: #5a5a5a;
  line-height: 1.7;
  margin: 0;
}
@media (max-width: 768px) {
  .use-scene-desc {
    font-size: 12px;
  }
}

.use-scene-detail {
  font-size: 12px;
  color: rgba(26, 26, 26, 0.5);
  line-height: 1.6;
  margin: 4px 0 0;
}

.care-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 768px) {
  .care-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.care-block {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
}

.care-block-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  padding: 24px;
  color: #ffffff;
}
.care-block--ok .care-block-header {
  background: #1a5f2a;
}
.care-block--ng .care-block-header {
  background: #c62828;
}
.care-block-header .care-icon {
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
}
.care-block-header .care-block-title {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin: 0;
}

.care-list {
  list-style: none;
  margin: 0;
  padding: 24px;
}

.care-list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 8px;
  padding: 8px 0;
  font-size: 14px;
  color: #1a1a1a;
  line-height: 1.6;
}
.care-list-item::before {
  content: "";
  width: 6px;
  height: 6px;
  margin-top: 8px;
  border-radius: 50%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.care-block--ok .care-list-item::before {
  background: #1a5f2a;
}
.care-block--ng .care-list-item::before {
  background: #c62828;
}

.section--eco-sample {
  background: #ffffff;
}

.eco-sample-layout {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 1024px) {
  .eco-sample-layout {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.eco-sample-content {
  padding: 48px 0;
}

.sample-title {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 700;
  color: #0a0a0a;
  margin: 0 0 16px;
}

.sample-desc {
  font-size: 16px;
  color: #1a1a1a;
  line-height: 1.9;
  margin: 0 0 24px;
}

.sample-table-wrapper {
  margin: 24px 0;
  background: #f8f8f8;
  border-radius: 12px;
  overflow: hidden;
}

.sample-table {
  width: 100%;
  border-collapse: collapse;
}
.sample-table th, .sample-table td {
  padding: 16px;
  text-align: left;
  border-bottom: 1px solid #e0e0e0;
  font-size: 14px;
}
.sample-table th {
  background: rgba(14, 52, 114, 0.05);
  font-weight: 600;
  color: #0a0a0a;
  width: 35%;
}
.sample-table td {
  color: #1a1a1a;
}
.sample-table .price {
  font-family: "DM Sans", "Helvetica Neue", Arial, sans-serif;
  font-weight: 600;
  color: #0e3472;
}

.sample-note {
  font-size: 12px;
  color: #5a5a5a;
  margin: 16px 0 0;
  line-height: 1.6;
}

.eco-sample-visual {
  aspect-ratio: 4/3;
  border-radius: 12px;
  overflow: hidden;
  -webkit-box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
          box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}
.eco-sample-visual img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.section--eco-related {
  background: #f8f8f8;
}

.related-highlight {
  margin-top: 16px;
  padding: 16px;
  background: rgba(200, 164, 92, 0.1);
  border-radius: 4px;
  font-size: 14px;
  color: #0a0a0a;
  font-weight: 500;
}

.section--eco-faq {
  background: #ffffff;
  padding: 120px 0;
  border-top: 1px solid #e0e0e0;
}
@media (max-width: 768px) {
  .section--eco-faq {
    padding: 80px 0;
  }
}

.section--faq-archive {
  background: #f8f8f8;
  padding: 120px 0;
}
.section--faq-archive .container {
  max-width: 900px;
}
@media (max-width: 768px) {
  .section--faq-archive {
    padding: 80px 0;
  }
}

.faq-intro {
  max-width: 700px;
  margin: 0 auto 80px;
  text-align: center;
  font-size: 16px;
  color: #1a1a1a;
  line-height: 1.9;
}

.faq-more-link {
  text-align: center;
  margin-top: 80px;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}

.faq-item {
  position: relative;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid transparent;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04), 0 4px 16px rgba(0, 0, 0, 0.04);
          box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04), 0 4px 16px rgba(0, 0, 0, 0.04);
  -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 1px;
  background: -webkit-linear-gradient(315deg, transparent, transparent);
  background: linear-gradient(135deg, transparent, transparent);
  -webkit-mask: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff)) content-box, -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff));
  -webkit-mask: -webkit-linear-gradient(#fff 0 0) content-box, -webkit-linear-gradient(#fff 0 0);
  mask: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff)) content-box, -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff));
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.faq-item:hover {
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06), 0 12px 32px rgba(14, 52, 114, 0.08);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06), 0 12px 32px rgba(14, 52, 114, 0.08);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
.faq-item:hover::before {
  background: -webkit-linear-gradient(315deg, #0e3472, #c8a45c);
  background: linear-gradient(135deg, #0e3472, #c8a45c);
  opacity: 1;
}
.faq-item.is-open {
  -webkit-box-shadow: 0 8px 24px rgba(14, 52, 114, 0.12), 0 16px 48px rgba(0, 0, 0, 0.08);
          box-shadow: 0 8px 24px rgba(14, 52, 114, 0.12), 0 16px 48px rgba(0, 0, 0, 0.08);
}
.faq-item.is-open::before {
  background: -webkit-linear-gradient(315deg, #0e3472, #c8a45c);
  background: linear-gradient(135deg, #0e3472, #c8a45c);
  opacity: 1;
}

.section--eco-faq .faq-item {
  background: #f8f8f8;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.section--eco-faq .faq-item:hover {
  background: #ffffff;
}
.section--eco-faq .faq-item.is-open {
  background: #ffffff;
}

.faq-question {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  width: 100%;
  padding: 20px 24px;
  border: none;
  background: transparent;
  cursor: pointer;
  text-align: left;
  -webkit-transition: background 0.2s ease;
  transition: background 0.2s ease;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .faq-question {
    padding: 16px;
    gap: 16px;
  }
}
.faq-question:hover {
  background: rgba(14, 52, 114, 0.02);
}
.faq-question:focus {
  outline: none;
}
.faq-question:focus-visible {
  outline: 2px solid #0e3472;
  outline-offset: -2px;
  border-radius: 16px;
}
.faq-question .faq-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 4px;
  background: -webkit-linear-gradient(315deg, #0e3472 0%, rgb(9.5375, 35.425, 77.6625) 100%);
  background: linear-gradient(135deg, #0e3472 0%, rgb(9.5375, 35.425, 77.6625) 100%);
  color: #ffffff;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  border-radius: 10px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-shadow: 0 2px 8px rgba(14, 52, 114, 0.3);
          box-shadow: 0 2px 8px rgba(14, 52, 114, 0.3);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .faq-question .faq-icon {
    min-width: 32px;
    height: 32px;
    font-size: 14px;
    border-radius: 8px;
  }
}
.faq-question .faq-question-text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #0a0a0a;
  line-height: 1.6;
  letter-spacing: 0.02em;
}
@media (max-width: 768px) {
  .faq-question .faq-question-text {
    font-size: 14px;
  }
}
.faq-question .faq-toggle {
  position: relative;
  width: 32px;
  height: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #f8f8f8;
  border-radius: 50%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 768px) {
  .faq-question .faq-toggle {
    width: 28px;
    height: 28px;
  }
}
.faq-question .faq-toggle svg {
  width: 16px;
  height: 16px;
  color: #5a5a5a;
  -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 768px) {
  .faq-question .faq-toggle svg {
    width: 14px;
    height: 14px;
  }
}
.faq-question:hover .faq-toggle {
  background: #0e3472;
}
.faq-question:hover .faq-toggle svg {
  color: #ffffff;
}
.faq-question[aria-expanded=true] .faq-icon {
  background: -webkit-linear-gradient(315deg, #c8a45c 0%, rgb(180.1972477064, 140.3990825688, 60.8027522936) 100%);
  background: linear-gradient(135deg, #c8a45c 0%, rgb(180.1972477064, 140.3990825688, 60.8027522936) 100%);
  -webkit-box-shadow: 0 2px 8px rgba(200, 164, 92, 0.4);
          box-shadow: 0 2px 8px rgba(200, 164, 92, 0.4);
}
.faq-question[aria-expanded=true] .faq-toggle {
  background: #0e3472;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.faq-question[aria-expanded=true] .faq-toggle svg {
  color: #ffffff;
}

.faq-answer {
  display: none;
  position: relative;
  z-index: 1;
}

.faq-answer-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  padding: 0 24px 24px;
  padding-left: 84px;
  position: relative;
}
@media (max-width: 768px) {
  .faq-answer-inner {
    padding: 0 16px 20px;
    padding-left: 64px;
    gap: 16px;
  }
}
.faq-answer-inner::before {
  content: "";
  position: absolute;
  left: 42px;
  top: -16px;
  width: 2px;
  height: 16px;
  background: -webkit-gradient(linear, left top, left bottom, from(#e0e0e0), to(#c8a45c));
  background: -webkit-linear-gradient(top, #e0e0e0 0%, #c8a45c 100%);
  background: linear-gradient(180deg, #e0e0e0 0%, #c8a45c 100%);
  border-radius: 1px;
}
@media (max-width: 768px) {
  .faq-answer-inner::before {
    left: 32px;
    top: -12px;
    height: 12px;
  }
}

.faq-icon--answer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 4px;
  background: -webkit-linear-gradient(315deg, #c8a45c 0%, rgb(187.823853211, 146.3412844037, 63.376146789) 100%) !important;
  background: linear-gradient(135deg, #c8a45c 0%, rgb(187.823853211, 146.3412844037, 63.376146789) 100%) !important;
  color: #0a0a0a !important;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 15px !important;
  font-weight: 700;
  letter-spacing: 0.02em;
  border-radius: 10px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-shadow: 0 2px 8px rgba(200, 164, 92, 0.3);
          box-shadow: 0 2px 8px rgba(200, 164, 92, 0.3);
}
@media (max-width: 768px) {
  .faq-icon--answer {
    min-width: 32px !important;
    height: 32px !important;
    font-size: 14px !important;
    border-radius: 8px;
  }
}

.faq-answer-text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 14px;
  color: #1a1a1a;
  line-height: 1.8;
  letter-spacing: 0.02em;
  padding-top: 6px;
}
@media (max-width: 768px) {
  .faq-answer-text {
    font-size: 13px;
    padding-top: 4px;
  }
}
.faq-answer-text p {
  margin: 0 0 16px;
}
.faq-answer-text p:last-child {
  margin-bottom: 0;
}
.faq-answer-text a {
  color: #0e3472;
  text-decoration: underline;
  text-underline-offset: 3px;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
.faq-answer-text a:hover {
  color: #c8a45c;
}
.faq-answer-text ul, .faq-answer-text ol {
  margin: 16px 0;
  padding-left: 1.5em;
}
.faq-answer-text ul li, .faq-answer-text ol li {
  margin-bottom: 4px;
}

.related-box {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 3fr 2fr;
  grid-template-columns: 3fr 2fr;
  gap: 80px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 80px;
  background: #ffffff;
  border-radius: 20px;
  -webkit-box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
          box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}
@media (max-width: 1024px) {
  .related-box {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .related-box {
    padding: 24px;
    gap: 24px;
  }
}
.related-box--reverse {
  -ms-grid-columns: 2fr 3fr;
  grid-template-columns: 2fr 3fr;
}
.related-box--reverse .related-visual {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
.related-box--reverse .related-content {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
@media (max-width: 1024px) {
  .related-box--reverse {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .related-box--reverse .related-visual {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .related-box--reverse .related-content {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

@media (max-width: 768px) {
  .related-content {
    padding: 16px 0;
  }
}
.related-content .section-label {
  margin-bottom: 8px;
}

.related-title {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #0a0a0a;
  margin: 0 0 24px;
}
@media (max-width: 768px) {
  .related-title {
    font-size: 24px;
  }
}

.related-desc {
  font-size: 16px;
  color: #1a1a1a;
  line-height: 1.9;
  margin: 0 0 8px;
}

.related-sub {
  font-size: 14px;
  color: #5a5a5a;
  line-height: 1.9;
  margin: 0;
}

.related-content .btn-outline {
  margin-top: 24px;
}

.related-visual {
  aspect-ratio: 4/3;
  border-radius: 12px;
  overflow: hidden;
  background: #f8f8f8;
}
.related-visual img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.section--eco-contact,
.section--ikd-contact {
  padding: 0;
}

.eco-contact-inner,
.ikd-contact-inner {
  background: #0e3472;
  padding: 160px 0;
}
@media (max-width: 768px) {
  .eco-contact-inner,
  .ikd-contact-inner {
    padding: 80px 0;
  }
}

.eco-contact-content,
.ikd-contact-content {
  text-align: center;
  color: #ffffff;
}
.eco-contact-content .section-label,
.ikd-contact-content .section-label {
  color: #c8a45c;
}

.eco-contact-title,
.ikd-contact-title {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 700;
  margin: 0 0 16px;
}
@media (max-width: 768px) {
  .eco-contact-title,
  .ikd-contact-title {
    font-size: clamp(20px, 5vw, 28px);
  }
}

.eco-contact-desc,
.ikd-contact-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.9;
  margin: 0 0 48px;
}

.eco-contact-actions,
.ikd-contact-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.page-antibacterial {
  background: #ffffff;
}

.section--ikd-stats {
  background: #ffffff;
  padding: 80px 0;
}

.ikd-stats-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 768px) {
  .ikd-stats-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.ikd-stat-card {
  padding: 48px;
  background: #f8f8f8;
  border-radius: 12px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.ikd-stat-card .stat-number {
  margin-bottom: 16px;
}
.ikd-stat-card .stat-prefix {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 16px;
  color: #5a5a5a;
}
.ikd-stat-card .stat-value {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: clamp(48px, 8vw, 72px);
  font-weight: 400;
  color: #0e3472;
  line-height: 1;
}
.ikd-stat-card .stat-unit {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 24px;
  color: #0a0a0a;
}
.ikd-stat-card .stat-label {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #0a0a0a;
  margin-bottom: 8px;
}
.ikd-stat-card .stat-desc {
  font-size: 14px;
  color: #5a5a5a;
  line-height: 1.7;
  margin: 0;
}
.ikd-stat-card--featured {
  -ms-grid-column-span: 1;
  grid-column: span 1;
  background: #0e3472;
  color: #ffffff;
  padding: 80px;
}
@media (max-width: 1024px) {
  .ikd-stat-card--featured {
    -ms-grid-column-span: 1;
    grid-column: span 1;
  }
}
.ikd-stat-card--featured .stat-number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 16px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.ikd-stat-card--featured .stat-value-large {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: clamp(32px, 6vw, 48px);
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
}
.ikd-stat-card--featured .stat-value--accent {
  color: #c8a45c;
}
.ikd-stat-card--featured .stat-arrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: rgba(255, 255, 255, 0.5);
}
.ikd-stat-card--featured .stat-label {
  color: #ffffff;
}
.ikd-stat-card--featured .stat-desc {
  color: rgba(255, 255, 255, 0.85);
}

.section--ikd-technology {
  background: #f8f8f8;
}

.ikd-technology-layout {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 1024px) {
  .ikd-technology-layout {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.ikd-technology-content .tech-intro {
  font-size: 16px;
  color: #1a1a1a;
  line-height: 1.9;
  margin: 0 0 24px;
}
.ikd-technology-content .tech-intro strong {
  color: #0e3472;
  font-weight: 700;
}

.tech-features {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid #e0e0e0;
}

.tech-feature {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.tech-feature .tech-feature-icon {
  width: 24px;
  height: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #1a5f2a;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.tech-feature .tech-feature-text {
  font-size: 14px;
  color: #1a1a1a;
  font-weight: 500;
}

.ikd-mechanism {
  margin-top: 48px;
}

.mechanism-step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid #e0e0e0;
}
.mechanism-step:first-child {
  border-top: 1px solid #e0e0e0;
}
.mechanism-step .step-visual {
  width: 60px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.mechanism-step .step-num {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 48px;
  height: 48px;
  background: #0e3472;
  color: #ffffff;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 24px;
  border-radius: 50%;
}
.mechanism-step .step-content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.mechanism-step .step-title {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #0a0a0a;
  margin: 0 0 8px;
}
.mechanism-step .step-desc {
  font-size: 14px;
  color: #5a5a5a;
  line-height: 1.7;
  margin: 0;
}

.ikd-technology-visual .visual-wrapper {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff;
  -webkit-box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
          box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}
.ikd-technology-visual .visual-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.ikd-technology-visual .visual-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  width: 80px;
  height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #0e3472;
  border-radius: 50%;
}
.ikd-technology-visual .visual-badge .badge-text {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  text-align: center;
  line-height: 1.3;
}

.section--ikd-certifications {
  background: #ffffff;
}

.certifications-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 80px;
}
@media (max-width: 768px) {
  .certifications-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.certification-card {
  padding: 48px;
  background: #f8f8f8;
  border-radius: 12px;
  text-align: center;
}
.certification-card .cert-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #c8a45c;
}
.certification-card .cert-title {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #0a0a0a;
  margin: 0 0 8px;
}
.certification-card .cert-desc {
  font-size: 14px;
  color: #5a5a5a;
  line-height: 1.7;
  margin: 0;
}

.test-data-table {
  max-width: 800px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  padding: 48px;
}
@media (max-width: 768px) {
  .test-data-table {
    padding: 16px;
    border-radius: 4px;
  }
}
.test-data-table .table-title {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #0a0a0a;
  margin: 0 0 16px;
  text-align: center;
}
.test-data-table .table-wrapper {
  overflow-x: auto;
}
.test-data-table .data-table {
  width: 100%;
  border-collapse: collapse;
}
.test-data-table .data-table th, .test-data-table .data-table td {
  padding: 16px;
  text-align: center;
  border-bottom: 1px solid #e0e0e0;
}
.test-data-table .data-table th {
  background: #f8f8f8;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #0a0a0a;
}
.test-data-table .data-table td {
  font-size: 14px;
  color: #1a1a1a;
}
.test-data-table .data-table td.value {
  font-family: "DM Sans", "Helvetica Neue", Arial, sans-serif;
  font-weight: 600;
  color: #0e3472;
}
.test-data-table .data-table .badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
}
.test-data-table .data-table .badge--pass {
  background: rgba(26, 95, 42, 0.1);
  color: #1a5f2a;
}
.test-data-table .table-note {
  font-size: 12px;
  color: #5a5a5a;
  margin: 16px 0 0;
  text-align: center;
}

.section--ikd-usecases {
  background: #f8f8f8;
  padding: 0;
}

.ikd-usecases-layout {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 1024px) {
  .ikd-usecases-layout {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.ikd-usecases-visual {
  position: relative;
  min-height: 500px;
}
@media (max-width: 1024px) {
  .ikd-usecases-visual {
    min-height: 300px;
  }
}
.ikd-usecases-visual .visual-stack {
  position: relative;
  height: 100%;
}
.ikd-usecases-visual .stack-main {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.ikd-usecases-visual .stack-sub {
  position: absolute;
  bottom: 48px;
  right: 48px;
  width: 180px;
  height: 180px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
  border: 4px solid #ffffff;
  -webkit-box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
          box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}
@media (max-width: 768px) {
  .ikd-usecases-visual .stack-sub {
    width: 120px;
    height: 120px;
    bottom: 16px;
    right: 16px;
  }
}

.ikd-usecases-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 160px 80px;
  background: #ffffff;
}
@media (max-width: 768px) {
  .ikd-usecases-content {
    padding: 80px 20px;
  }
}

.usecases-list {
  list-style: none;
  margin: 48px 0 0;
  padding: 0;
}

.usecase-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid #e0e0e0;
}
.usecase-item:first-child {
  border-top: 1px solid #e0e0e0;
}
.usecase-item .usecase-icon {
  width: 48px;
  height: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #f8f8f8;
  border-radius: 4px;
  color: #0e3472;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.usecase-item .usecase-text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.usecase-item .usecase-text h4 {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #0a0a0a;
  margin: 0 0 4px;
}
.usecase-item .usecase-text p {
  font-size: 14px;
  color: #5a5a5a;
  margin: 0;
  line-height: 1.6;
}

.section--ikd-products {
  background: #ffffff;
}

.sample-products-table {
  max-width: 1000px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  -webkit-box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
          box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}
.sample-products-table .products-table {
  width: 100%;
  border-collapse: collapse;
}
.sample-products-table .products-table th, .sample-products-table .products-table td {
  padding: 16px;
  text-align: left;
  border-bottom: 1px solid #e0e0e0;
}
@media (max-width: 768px) {
  .sample-products-table .products-table th, .sample-products-table .products-table td {
    padding: 8px;
    font-size: 12px;
  }
}
.sample-products-table .products-table th {
  background: #0e3472;
  color: #ffffff;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .sample-products-table .products-table th {
    font-size: 12px;
  }
}
.sample-products-table .products-table td {
  font-size: 14px;
  color: #1a1a1a;
}
@media (max-width: 768px) {
  .sample-products-table .products-table td {
    font-size: 12px;
  }
}
.sample-products-table .products-table .col-name {
  font-weight: 600;
  color: #0a0a0a;
}
.sample-products-table .products-table .col-code {
  font-family: "DM Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 12px;
  color: #5a5a5a;
}
.sample-products-table .products-table .col-price {
  font-family: "DM Sans", "Helvetica Neue", Arial, sans-serif;
  font-weight: 600;
  color: #0e3472;
  text-align: right;
}
.sample-products-table .products-table tbody tr {
  -webkit-transition: background 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  transition: background 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.sample-products-table .products-table tbody tr:hover {
  background: rgba(248, 248, 248, 0.5);
}
.sample-products-table .table-note {
  font-size: 12px;
  color: #5a5a5a;
  padding: 16px;
  background: #f8f8f8;
  margin: 0;
}

.products-cta {
  text-align: center;
  margin-top: 48px;
}

.section--ikd-related {
  background: #f8f8f8;
}

@media (max-width: 768px) {
  .comparison-table,
  .data-table,
  .products-table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
.section--ikd-notes {
  background: #ffffff;
}

.notes-layout {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 80px;
}
@media (max-width: 768px) {
  .notes-layout {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.notes-card {
  background: #f8f8f8;
  border-radius: 12px;
  overflow: hidden;
}

.notes-card-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  padding: 24px;
}
.notes-card--premise .notes-card-header {
  background: #0e3472;
  color: #ffffff;
}
.notes-card--caution .notes-card-header {
  background: #c62828;
  color: #ffffff;
}

.notes-card-icon {
  width: 48px;
  height: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.notes-card-title {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin: 0;
}

.notes-list {
  list-style: none;
  margin: 0;
  padding: 24px;
}
.notes-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 8px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(224, 224, 224, 0.5);
}
.notes-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.notes-list li:first-child {
  padding-top: 0;
}

.notes-icon {
  width: 20px;
  height: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-top: 2px;
}
.notes-card--premise .notes-icon {
  color: #0e3472;
}
.notes-card--caution .notes-icon {
  color: #c62828;
}

.notes-text {
  font-size: 14px;
  color: #1a1a1a;
  line-height: 1.6;
}
.notes-text strong {
  color: #0a0a0a;
  font-weight: 600;
}

.siaa-notice {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 24px;
  padding: 24px;
  background: rgba(14, 52, 114, 0.05);
  border-radius: 12px;
  max-width: 900px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .siaa-notice {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
  }
}

.siaa-notice-icon {
  width: 48px;
  height: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #0e3472;
  color: #ffffff;
  border-radius: 50%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.siaa-notice-content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.siaa-notice-title {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #0e3472;
  margin: 0 0 8px;
}

.siaa-notice-text {
  font-size: 14px;
  color: #1a1a1a;
  line-height: 1.7;
  margin: 0;
}

.table-notes {
  padding: 16px 24px;
  background: #f8f8f8;
}

.sample-products-table .table-note {
  font-size: 12px;
  color: #5a5a5a;
  margin: 4px 0;
  line-height: 1.5;
}

.sample-usage-tip {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 24px;
  padding: 24px;
  background: rgba(200, 164, 92, 0.1);
  border-radius: 12px;
  max-width: 800px;
  margin: 48px auto;
}
@media (max-width: 768px) {
  .sample-usage-tip {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
  }
}

.sample-usage-tip .tip-icon {
  width: 48px;
  height: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #c8a45c;
  color: #082555;
  border-radius: 50%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.sample-usage-tip .tip-content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.sample-usage-tip .tip-title {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #0a0a0a;
  margin: 0 0 8px;
}

.sample-usage-tip .tip-text {
  font-size: 14px;
  color: #1a1a1a;
  line-height: 1.7;
  margin: 0;
}

.products-cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.section--ikd-oem {
  background: #f8f8f8;
}

.oem-banner {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1.2fr 1fr;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 80px;
  background: #0e3472;
  border-radius: 20px;
  color: #ffffff;
}
@media (max-width: 1024px) {
  .oem-banner {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.oem-banner-content .section-label {
  color: #c8a45c;
}

.oem-banner-title {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 16px;
}
@media (max-width: 768px) {
  .oem-banner-title {
    font-size: clamp(20px, 5vw, 28px);
  }
}

.oem-banner-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.9;
  margin: 0 0 24px;
}

.oem-features {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 16px 48px;
  list-style: none;
  margin: 0 0 48px;
  padding: 0;
}
@media (max-width: 1024px) {
  .oem-features {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.oem-features li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
}
.oem-features li svg {
  color: #c8a45c;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.oem-banner-visual {
  border-radius: 12px;
  overflow: hidden;
  -webkit-box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
          box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}
@media (max-width: 1024px) {
  .oem-banner-visual {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    max-width: 400px;
    margin: 0 auto;
  }
}
.oem-banner-visual img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
}

.test-conditions {
  max-width: 800px;
  margin: 0 auto 80px;
}

.test-conditions-inner {
  padding: 24px;
  background: rgba(14, 52, 114, 0.05);
  border-radius: 12px;
}

.test-conditions-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #0a0a0a;
  margin: 0 0 16px;
}
.test-conditions-title svg {
  color: #0e3472;
}

.test-conditions-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 48px;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (max-width: 768px) {
  .test-conditions-list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.test-conditions-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-size: 14px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(224, 224, 224, 0.5);
}
.test-conditions-list .condition-label {
  font-weight: 600;
  color: #0a0a0a;
  min-width: 80px;
}
.test-conditions-list .condition-value {
  color: #1a1a1a;
}

.mrsa-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 24px;
  padding: 24px;
  background: rgba(200, 164, 92, 0.08);
  border-radius: 12px;
  max-width: 800px;
  margin: 80px auto;
}
@media (max-width: 768px) {
  .mrsa-info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
  }
}

.mrsa-info-icon {
  width: 48px;
  height: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #c8a45c;
  color: #082555;
  border-radius: 50%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.mrsa-info-content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.mrsa-info-title {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #0a0a0a;
  margin: 0 0 8px;
}

.mrsa-info-text {
  font-size: 14px;
  color: #1a1a1a;
  line-height: 1.7;
  margin: 0;
}

.features-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 80px auto 0;
}
@media (max-width: 768px) {
  .features-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.feature-card {
  padding: 48px;
  background: #f8f8f8;
  border-radius: 12px;
  text-align: center;
  -webkit-transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.feature-card:hover {
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
  -webkit-box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
          box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.feature-card-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #ffffff;
  border-radius: 50%;
  color: #0e3472;
}

.feature-card-title {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #0a0a0a;
  margin: 0 0 8px;
}

.feature-card-desc {
  font-size: 14px;
  color: #5a5a5a;
  line-height: 1.7;
  margin: 0;
}

.data-table .row-highlight {
  background: rgba(14, 52, 114, 0.05);
}
.data-table .row-highlight td {
  font-weight: 600;
}
.data-table .value--accent {
  color: #1a5f2a !important;
}
.data-table .badge--normal {
  background: #f8f8f8;
  color: #5a5a5a;
}

.products-table .row-highlight {
  background: rgba(14, 52, 114, 0.05);
}
.products-table .row-highlight td {
  font-weight: 600;
}