* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Pretendard", "Noto Sans KR", Arial, sans-serif;
  font-size: 15px;
  color: #0b1f35;
  background: #fff;
}

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

.site-header {
  height: 110px;
  background: #fff;
  border-bottom: 1px solid #e9edf2;
  position: relative;
  z-index: 10;
}

.top-util {
  max-width: 1500px;
  height: 30px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 24px;
  padding: 0 40px;
  font-size: 13px;
  color: #4b5563;
}

.nav-wrap {
  max-width: 1500px;
  height: 80px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 230px 1fr;
  align-items: center;
  padding: 0 40px;
}

.logo {
  display: inline-flex;
  align-items: center;
  width: max-content;
}

.logo img {
  display: block;
  width: 106px;
  height: 37px;
  object-fit: contain;
}

.gnb {
  display: flex;
  justify-content: center;
  gap: clamp(56px, 8vw, 132px);
  font-size: 19px;
  font-weight: 600;
  color: #101820;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid #dfe4ea;
  border-radius: 6px;
  background: #fff;
  cursor: pointer;
  place-items: center;
  padding: 9px;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #101820;
  transition: transform .2s ease, opacity .2s ease;
}

.site-header.is-menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.is-menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-item {
  position: relative;
}

.main-link {
  position: relative;
  display: block;
  padding: 16px 0;
}

.main-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 8px;
  width: 0;
  height: 3px;
  background: #ff6b00;
  transform: translateX(-50%);
  transition: width .25s ease;
}

.nav-item:hover .main-link::after,
.nav-item:focus-within .main-link::after,
.main-link.is-current::after {
  width: 100%;
}

.main-link.is-current {
  color: #082a4a;
  font-weight: 700;
}

.submenu-row {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  width: max-content;
  min-width: 0;
  background: #fff;
  border: 1px solid #e5eaf0;
  border-top: 3px solid #ff6b00;
  border-radius: 6px;
  box-shadow: 0 12px 24px rgba(15, 23, 42, .12);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -6px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  z-index: 20;
  list-style: none;
  margin: 0;
  padding: 10px;
  display: grid;
  gap: 2px;
}

.submenu-row::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -8px;
  width: 10px;
  height: 10px;
  background: #ff6b00;
  transform: translateX(-50%) rotate(45deg);
}

.nav-item:hover .submenu-row,
.nav-item:focus-within .submenu-row {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.submenu-row li {
  color: #667085;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  white-space: nowrap;
}

.submenu-row a {
  display: block;
  padding: 8px 14px;
  border-radius: 4px;
  transition: color .18s ease;
}

.submenu-row a:hover,
.submenu-row a:focus {
  background: #f2f8fc;
  color: #0097d7;
}

.hero-slider {
  position: relative;
  height: 450px;
  overflow: hidden;
  background: #06192b;
}

.slides,
.slide {
  position: absolute;
  inset: 0;
}

.slide {
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 900ms ease, transform 4500ms ease;
  background-position: center;
  background-size: cover;
}

.slide.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.slide01 {
  background-image: url("../images/hero-01-ship-rope.jpg");
}

.slide02 {
  background-image: url("../images/hero-02-stadium-wire.jpg");
}

.slide03 {
  background-image: url("../images/hero-03-rope-wire.jpg");
}

.slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 13, 26, .9) 0%, rgba(4, 21, 38, .72) 34%, rgba(4, 21, 38, .32) 64%, rgba(4, 21, 38, .62) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, .1), rgba(0, 0, 0, .4));
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(1500px, calc(100% - 80px));
  margin: 0 auto;
  padding-top: 58px;
  padding-left: 30px;
  color: #fff;
}

.eyebrow {
  margin: 0;
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 800;
  line-height: .95;
  letter-spacing: -1px;
}

.hero-copy h1 {
  margin: 4px 0 14px;
  font-size: clamp(30px, 3.4vw, 50px);
  font-weight: 800;
  line-height: .95;
  letter-spacing: -1px;
}

.hero-copy h1 span {
  color: #ff6b00;
}

.subtitle {
  margin: 0 0 18px;
  font-size: 17px;
  font-weight: 700;
}

.subtitle::after {
  content: "";
  display: block;
  width: 54px;
  height: 3px;
  margin-top: 15px;
  background: #ff6b00;
}

.hero-tags {
  list-style: none;
  display: flex;
  gap: 24px;
  margin: 0 0 22px;
  padding: 0;
}

.hero-tags li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
}

.tag-icon {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, .75);
  border-radius: 8px;
  font-size: 11px;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 126px;
  height: 44px;
  padding: 0 20px;
  background: #ff6b00;
  border-radius: 5px;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 14px 24px rgba(255, 107, 0, .25);
}

.hero-pager {
  position: absolute;
  z-index: 5;
  right: 56px;
  top: 50%;
  transform: translateY(-50%);
  display: grid;
  gap: 16px;
}

.pager-btn {
  width: 78px;
  height: 30px;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, .68);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  font-size: 17px;
  font-weight: 800;
}

.pager-btn::after {
  content: "";
  width: 24px;
  height: 2px;
  background: rgba(255, 255, 255, .55);
  display: block;
  transition: all .25s ease;
}

.pager-btn.is-active {
  color: #fff;
}

.pager-btn.is-active::after {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ff6b00;
  box-shadow: 18px 0 0 rgba(255, 255, 255, .75);
}

.difference {
  width: min(1500px, calc(100% - 80px));
  margin: 0 auto;
  padding: 46px 0;
  display: grid;
  grid-template-columns: 300px minmax(360px, 430px) minmax(340px, 1fr);
  gap: 30px;
  align-items: start;
}

.diff-copy h2,
.portfolio-board h2,
.products h2 {
  margin: 0;
  color: #082a4a;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -1px;
}

.diff-copy h2::after,
.portfolio-board h2::after,
.products h2::after {
  content: "";
  display: block;
  width: 42px;
  height: 3px;
  margin: 16px 0 32px;
  background: #ff6b00;
}

.diff-copy ul {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: grid;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
}

.diff-copy li::before {
  content: "";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 7px;
  height: 7px;
  margin-right: 10px;
  border: 0;
  background: #ff6b00;
  border-radius: 50%;
  color: #ff6b00;
  vertical-align: middle;
}

.portfolio-board {
  width: min(100%, 430px);
  min-height: 230px;
  padding: 0;
}

.portfolio-board ul {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 2px solid #082a4a;
}

.portfolio-board li {
  border-bottom: 1px solid #dfe4ea;
}

.portfolio-board li a {
  display: block;
  padding: 14px 4px;
  color: #4b5563;
  font-size: 15px;
  line-height: 1.3;
  transition: color .18s ease, padding-left .18s ease;
}

.portfolio-board li a:hover,
.portfolio-board li a:focus {
  padding-left: 10px;
  color: #ff6b00;
}

.catalog-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 218px;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid #ff6b00;
  border-radius: 6px;
  background: #ff6b00;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
  box-shadow: 0 10px 20px rgba(255, 107, 0, .2);
  transition: background .18s ease, color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.catalog-btn:hover,
.catalog-btn:focus {
  background: #fff;
  color: #ff6b00;
  box-shadow: 0 8px 16px rgba(255, 107, 0, .14);
  transform: translateY(-1px);
}

.pdf-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 26px;
  height: 22px;
  border: 2px solid currentColor;
  border-radius: 3px;
  font-size: 8px;
  font-weight: 900;
  line-height: 1;
}

.pdf-icon::after {
  content: "";
  position: absolute;
  top: -2px;
  right: -2px;
  width: 8px;
  height: 8px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  background: #ff6b00;
}

.catalog-btn:hover .pdf-icon::after,
.catalog-btn:focus .pdf-icon::after {
  background: #fff;
}

.video-box {
  background: #0a1b2e;
  border-radius: 8px;
  overflow: hidden;
  margin-top: 20px;
  align-self: start;
  box-shadow: 0 22px 40px rgba(10, 27, 46, .18);
}

.video-thumb {
  position: relative;
  height: 260px;
  background: #06192b;
  overflow: hidden;
}

.video-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .22), rgba(0, 0, 0, .38)),
    linear-gradient(90deg, rgba(4, 15, 29, .4), rgba(4, 15, 29, .08));
  pointer-events: none;
}

.youtube-badge {
  position: absolute;
  z-index: 1;
  left: 20px;
  top: 18px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #ef3f82;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 900;
}

.video-title {
  position: absolute;
  z-index: 1;
  left: 76px;
  top: 20px;
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .35);
}

.play {
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 76px;
  height: 54px;
  border: 0;
  border-radius: 16px;
  background: #ff0000;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 22px;
  line-height: 1;
  box-shadow: 0 12px 24px rgba(0, 0, 0, .28);
  cursor: pointer;
}

.youtube-link {
  position: absolute;
  z-index: 1;
  right: 18px;
  bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .35);
}

.youtube-play {
  width: 34px;
  height: 24px;
  border-radius: 7px;
  background: #fff;
  color: #ff0000;
  display: grid;
  place-items: center;
  font-size: 12px;
  text-shadow: none;
}

.products {
  width: min(1500px, calc(100% - 80px));
  margin: 0 auto;
  padding: 10px 0 64px;
}

.products h2 {
  text-align: center;
  margin-bottom: 36px;
}

.products h2::after {
  margin-left: auto;
  margin-right: auto;
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.product-card {
  display: grid;
  grid-template-columns: 310px 1fr;
  gap: 26px;
  align-items: center;
  border: 1px solid #e1e7ef;
  border-radius: 8px;
  padding: 22px;
  background: #fff;
}

.product-card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: 7px;
}

.product-card h3 {
  margin: 0;
  font-size: 22px;
  color: #082a4a;
}

.product-card .en {
  margin: 2px 0 14px;
  font-size: 13px;
  color: #6b7280;
  font-weight: 800;
}

.product-card p {
  font-size: 14px;
  line-height: 1.65;
}

.product-card a {
  display: inline-flex;
  margin-top: 8px;
  padding: 8px 18px;
  border: 1px solid #0b2b4a;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  color: #0b2b4a;
}

.site-footer {
  border-top: 1px solid #e1e7ef;
  background: #f7f9fc;
  color: #4b5563;
  font-size: 13px;
}

.footer-inner {
  width: min(1500px, calc(100% - 80px));
  margin: 0 auto;
  padding: 28px 0;
  text-align: center;
  line-height: 1.7;
}

.footer-inner p {
  margin: 0;
}

.copyright {
  margin-top: 6px !important;
  color: #0b1f35;
  font-weight: 800;
}

.subpage {
  background: #fff;
}

.sub-hero {
  height: 220px;
  background:
    linear-gradient(90deg, rgba(2, 13, 26, .86), rgba(4, 21, 38, .46)),
    url("../images/hero-03-rope-wire.jpg") center/cover;
  color: #fff;
}

.sub-hero-inner {
  width: min(1500px, calc(100% - 80px));
  height: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sub-hero p {
  margin: 0 0 8px;
  color: #ff8a2a;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
}

.sub-hero h1 {
  margin: 0;
  font-size: 34px;
  font-weight: 900;
  letter-spacing: -1px;
}

.sub-layout {
  width: min(1500px, calc(100% - 80px));
  margin: 0 auto;
  padding: 58px 0 88px;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 64px;
}

.sub-sidebar {
  align-self: start;
  border-top: 3px solid #082a4a;
}

.sub-sidebar h2 {
  margin: 0;
  padding: 22px 0;
  color: #082a4a;
  font-size: 24px;
  font-weight: 900;
}

.sub-sidebar nav {
  display: grid;
  border-top: 1px solid #dfe4ea;
}

.sub-sidebar a {
  position: relative;
  display: block;
  padding: 16px 18px;
  border-bottom: 1px solid #dfe4ea;
  color: #4b5563;
  font-size: 15px;
  font-weight: 700;
  transition: color .18s ease, background .18s ease;
}

.sub-sidebar a::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 50%;
  width: 7px;
  height: 7px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}

.sub-sidebar a:hover,
.sub-sidebar a:focus,
.sub-sidebar a.is-active {
  background: #fff7f0;
  color: #ff6b00;
}

.sub-title {
  padding-bottom: 24px;
  border-bottom: 1px solid #e5eaf0;
}

.sub-title p {
  margin: 0 0 6px;
  color: #ff6b00;
  font-size: 13px;
  font-weight: 800;
}

.sub-title h2 {
  margin: 0;
  color: #082a4a;
  font-size: 30px;
  font-weight: 900;
  letter-spacing: -1px;
}

.catalog-layout {
  width: min(1220px, calc(100% - 80px));
  margin: 0 auto;
  padding: 54px 0 98px;
}

.catalog-title {
  border-bottom: 1px solid #c9ced6;
}

.catalog-title h2 {
  margin: 0;
  color: #222;
  font-size: 42px;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: 0;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding-top: 62px;
}

.catalog-download-card {
  min-height: 86px;
  border: 1px solid #e1e1e1;
  background: #fff;
  display: grid;
  grid-template-columns: 1fr 34px 56px;
  align-items: center;
  gap: 16px;
  padding: 18px 22px 18px 38px;
  color: #4b4f56;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .015);
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.catalog-download-card:hover,
.catalog-download-card:focus {
  border-color: #9ed7e9;
  box-shadow: 0 14px 24px rgba(15, 23, 42, .08);
  transform: translateY(-2px);
}

.catalog-download-card strong {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -1px;
  white-space: nowrap;
}

.catalog-arrow {
  position: relative;
  width: 30px;
  height: 2px;
  background: #20a9c9;
}

.catalog-arrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 12px;
  height: 12px;
  border-top: 2px solid #20a9c9;
  border-right: 2px solid #20a9c9;
  transform: translateY(-50%) rotate(45deg);
}

.catalog-pdf-icon {
  position: relative;
  width: 56px;
  height: 54px;
  border-radius: 7px;
  background: linear-gradient(145deg, #f31a1f, #b90008);
  color: #fff;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 8px;
  font-size: 9px;
  font-weight: 900;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .28), 0 2px 5px rgba(177, 0, 7, .22);
}

.recruit-banner {
  margin-top: 34px;
  min-height: 170px;
  border: 1px solid #dce4ec;
  border-radius: 6px;
  background:
    linear-gradient(120deg, rgba(33, 195, 218, .88), rgba(255, 255, 255, .78) 48%, rgba(213, 248, 255, .92)),
    repeating-linear-gradient(140deg, rgba(255, 255, 255, .3) 0 1px, transparent 1px 84px);
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
  align-items: center;
  overflow: hidden;
  position: relative;
}

.recruit-banner::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 44px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, .55));
  pointer-events: none;
}

.recruit-banner-copy {
  position: relative;
  z-index: 1;
  padding: 30px 36px 24px;
}

.recruit-banner-copy p {
  margin: 0 0 6px;
  color: #07304e;
  font-size: 21px;
  font-weight: 800;
}

.recruit-banner-copy strong {
  display: block;
  color: #07304e;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -1px;
}

.recruit-tags {
  display: flex;
  gap: 10px;
  margin-top: 28px;
}

.recruit-tags span {
  min-width: 136px;
  padding: 15px 18px;
  border-radius: 6px;
  background: #26aec8;
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-weight: 900;
  box-shadow: 0 22px 20px rgba(11, 118, 143, .14);
}

.recruit-brand {
  min-height: 170px;
  position: relative;
  z-index: 1;
}

.recruit-brand img {
  position: absolute;
  left: 42px;
  top: 72px;
  width: 120px;
  height: auto;
  object-fit: contain;
}

.paper-plane {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 52px solid #0b7edb;
  filter: drop-shadow(0 5px 4px rgba(16, 92, 160, .18));
  transform: rotate(-12deg);
}

.plane-one {
  right: 46px;
  top: 18px;
}

.plane-two {
  right: 164px;
  top: 28px;
  border-left-color: #149ee8;
  transform: scale(.62) rotate(16deg);
}

.runner-figure {
  position: absolute;
  right: 92px;
  bottom: 18px;
  width: 112px;
  height: 130px;
  transform: rotate(-6deg);
}

.runner-head {
  position: absolute;
  right: 30px;
  top: 8px;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: #f7a456;
}

.runner-body {
  position: absolute;
  right: 38px;
  top: 30px;
  width: 30px;
  height: 54px;
  border-radius: 9px;
  background: #3a2b1c;
  transform: rotate(-24deg);
}

.runner-arm,
.runner-leg {
  position: absolute;
  display: block;
  height: 13px;
  border-radius: 999px;
  background: #3a2b1c;
  transform-origin: left center;
}

.runner-arm {
  right: 20px;
  top: 54px;
  width: 58px;
  transform: rotate(42deg);
}

.runner-leg.front {
  right: 40px;
  top: 82px;
  width: 78px;
  transform: rotate(38deg);
}

.runner-leg.back {
  right: 3px;
  top: 88px;
  width: 72px;
  transform: rotate(132deg);
}

.recruit-info-grid {
  display: grid;
  gap: 36px;
  margin-top: 46px;
}

.recruit-info-card {
  padding-left: 2px;
}

.recruit-info-card h3 {
  margin: 0 0 8px;
  color: #b34bd7;
  font-size: 20px;
  font-weight: 900;
}

.recruit-info-card h3::before {
  content: "_";
  color: currentColor;
}

.recruit-info-card p,
.recruit-info-card li {
  color: #5d6570;
  font-size: 18px;
  line-height: 1.6;
}

.recruit-info-card p {
  margin: 0;
}

.recruit-info-card ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.recruit-empty {
  margin-top: 34px;
  padding: 48px 34px;
  border: 1px solid #e5eaf0;
  background: #f8fafc;
  text-align: center;
}

.recruit-empty strong {
  display: block;
  color: #082a4a;
  font-size: 22px;
  font-weight: 900;
}

.recruit-empty p {
  margin: 10px 0 0;
  color: #667085;
  font-size: 15px;
}

.recruit-board {
  margin-top: 34px;
}

.board-summary {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: 14px;
  color: #667085;
  font-size: 14px;
}

.board-summary p {
  margin: 0;
  color: #27364a;
  font-weight: 700;
}

.board-summary strong {
  color: #ff6b00;
}

.board-table-wrap {
  border-top: 2px solid #082a4a;
}

.recruit-board-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  color: #4b5563;
  font-size: 15px;
}

.recruit-board-table caption {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.recruit-board-table th {
  padding: 15px 12px;
  border-bottom: 1px solid #cfd7e2;
  background: #f5f8fb;
  color: #082a4a;
  font-weight: 800;
}

.recruit-board-table td {
  padding: 18px 12px;
  border-bottom: 1px solid #e5eaf0;
  text-align: center;
}

.recruit-board-table th:nth-child(1) {
  width: 80px;
}

.recruit-board-table th:nth-child(2) {
  width: auto;
}

.recruit-board-table th:nth-child(3) {
  width: 150px;
}

.recruit-board-table th:nth-child(4),
.recruit-board-table th:nth-child(5) {
  width: 90px;
}

.board-number {
  color: #ff6b00;
  font-weight: 800;
}

.board-title {
  text-align: left !important;
}

.board-title a {
  color: #1f2937;
  font-size: 16px;
  font-weight: 800;
}

.board-title a:hover,
.board-title a:focus {
  color: #ff6b00;
}

.board-title p {
  margin: 6px 0 0;
  color: #8a94a3;
  font-size: 13px;
}

.board-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  height: 28px;
  border-radius: 999px;
  background: #eef7fb;
  color: #1698bd;
  font-size: 13px;
  font-weight: 800;
}

.board-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-top: 26px;
}

.board-search {
  display: flex;
  gap: 6px;
}

.board-search select,
.board-search input,
.board-search button {
  height: 38px;
  border: 1px solid #d7dee8;
  background: #fff;
  color: #4b5563;
  font: inherit;
  font-size: 14px;
}

.board-search select {
  width: 92px;
  padding: 0 10px;
}

.board-search input {
  width: 210px;
  padding: 0 10px;
}

.board-search button {
  width: 68px;
  background: #082a4a;
  color: #fff;
  border-color: #082a4a;
  font-weight: 800;
  cursor: pointer;
}

.board-pagination {
  display: flex;
  justify-content: center;
  gap: 6px;
}

.board-pagination span {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d7dee8;
  color: #667085;
  font-size: 14px;
}

.board-pagination .is-current {
  border-color: #082a4a;
  background: #082a4a;
  color: #fff;
  font-weight: 800;
}

.customer-board {
  margin-top: 34px;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.portfolio-card {
  min-height: 210px;
  padding: 28px 24px;
  border: 1px solid #dfe7f0;
  background: #fff;
  display: flex;
  flex-direction: column;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.portfolio-card:hover,
.portfolio-card:focus {
  transform: translateY(-3px);
  border-color: #ffb178;
  box-shadow: 0 16px 28px rgba(15, 23, 42, .08);
}

.portfolio-card span {
  color: #ff6b00;
  font-size: 13px;
  font-weight: 900;
}

.portfolio-card strong {
  margin-top: 26px;
  color: #082a4a;
  font-size: 21px;
  font-weight: 900;
  line-height: 1.35;
}

.portfolio-card p {
  margin: 14px 0 0;
  color: #667085;
  font-size: 14px;
  line-height: 1.7;
}

.portfolio-button-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.portfolio-button-grid button {
  min-height: 132px;
  border: 1px solid #dfe7f0;
  background: #fff;
  padding: 22px 18px;
  text-align: left;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.portfolio-button-grid button:hover,
.portfolio-button-grid button:focus {
  transform: translateY(-3px);
  border-color: #ff9a52;
  box-shadow: 0 16px 28px rgba(15, 23, 42, .08);
  outline: none;
}

.portfolio-button-grid span {
  color: #ff6b00;
  font-size: 13px;
  font-weight: 900;
}

.portfolio-button-grid strong {
  margin-top: 18px;
  color: #082a4a;
  font-size: clamp(15px, 1.05vw, 18px);
  font-weight: 900;
  line-height: 1.35;
  word-break: keep-all;
}

.portfolio-button-grid em {
  margin-top: auto;
  padding-top: 14px;
  color: #7b8794;
  font-size: 13px;
  font-style: normal;
  line-height: 1.4;
}

.is-modal-open {
  overflow: hidden;
}

.portfolio-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 42px 24px;
}

.portfolio-modal[hidden] {
  display: none;
}

.portfolio-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 13, 24, .66);
}

.portfolio-modal-panel {
  position: relative;
  z-index: 1;
  width: min(980px, 100%);
  max-height: calc(100vh - 84px);
  overflow-y: auto;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 24px 60px rgba(2, 8, 23, .28);
}

.portfolio-modal-close {
  position: sticky;
  top: 0;
  margin-left: auto;
  width: 48px;
  height: 48px;
  border: 0;
  background: #ff6b00;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
}

.portfolio-modal-body {
  padding: 0 52px 54px;
}

.portfolio-detail header {
  padding: 8px 0 24px;
  border-bottom: 1px solid #e5eaf0;
}

.portfolio-detail header p {
  margin: 0 0 8px;
  color: #ff6b00;
  font-size: 13px;
  font-weight: 900;
}

.portfolio-detail header h3 {
  margin: 0;
  color: #082a4a;
  font-size: 30px;
  font-weight: 900;
  letter-spacing: -1px;
}

.portfolio-detail-section {
  padding-top: 34px;
}

.portfolio-detail-section h4 {
  margin: 0 0 22px;
  color: #111827;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.5;
}

.portfolio-detail-section figure {
  margin: 0 auto 22px;
  max-width: 720px;
}

.portfolio-detail-section img {
  display: block;
  width: 100%;
  height: auto;
}

.portfolio-detail-section .portfolio-small-figure {
  max-width: 360px;
  margin-left: 42px;
}

.portfolio-detail-section .portfolio-medium-figure {
  max-width: 520px;
}

.portfolio-image-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 720px;
  margin: 0 auto 22px;
  align-items: start;
}

.portfolio-image-pair figure {
  margin: 0;
}

.portfolio-detail-section p,
.portfolio-detail.is-simple > p {
  margin: 0;
  color: #374151;
  font-size: 15px;
  line-height: 1.85;
  word-break: keep-all;
}

.portfolio-detail-section p {
  max-width: 740px;
  margin-inline: auto;
}

.portfolio-detail.is-simple {
  min-height: 260px;
}

.portfolio-detail.is-simple > p {
  padding-top: 32px;
}

.customer-news-table th:nth-child(1) {
  width: 90px;
}

.customer-news-table th:nth-child(3) {
  width: 150px;
}

.customer-news-table th:nth-child(4) {
  width: 90px;
}

.inquiry-layout {
  margin-top: 34px;
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 34px;
}

.inquiry-info {
  padding: 32px 28px;
  background: #082a4a;
  color: #fff;
}

.inquiry-info h3 {
  margin: 0;
  font-size: 24px;
  font-weight: 900;
}

.inquiry-info p {
  margin: 14px 0 28px;
  color: rgba(255, 255, 255, .78);
  font-size: 14px;
  line-height: 1.7;
}

.inquiry-info dl {
  display: grid;
  gap: 16px;
  margin: 0;
}

.inquiry-info dl div {
  display: grid;
  gap: 4px;
}

.inquiry-info dt {
  color: #ffb178;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.inquiry-info dd {
  margin: 0;
  color: #fff;
  font-size: 14px;
  line-height: 1.5;
}

.inquiry-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.inquiry-form label {
  display: grid;
  gap: 7px;
  color: #27364a;
  font-size: 14px;
  font-weight: 800;
}

.inquiry-form .full {
  grid-column: 1 / -1;
}

.inquiry-form input,
.inquiry-form textarea {
  width: 100%;
  border: 1px solid #d7dee8;
  background: #fff;
  padding: 12px 13px;
  color: #27364a;
  font: inherit;
  font-size: 14px;
}

.inquiry-form textarea {
  resize: vertical;
  min-height: 150px;
}

.inquiry-form button {
  grid-column: 1 / -1;
  justify-self: end;
  min-width: 140px;
  height: 44px;
  border: 0;
  background: #ff6b00;
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  cursor: pointer;
}

.certificate-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: minmax(280px, 520px) 1fr;
  gap: 34px;
  align-items: start;
}

.certificate-grid figure {
  margin: 0;
  padding: 16px;
  border: 1px solid #dfe7f0;
  background: #fff;
}

.certificate-grid img {
  display: block;
  width: 100%;
  height: auto;
}

.certificate-grid figcaption {
  margin-top: 12px;
  color: #082a4a;
  font-size: 14px;
  font-weight: 900;
  text-align: center;
}

.certificate-note {
  padding: 30px 28px;
  border-top: 3px solid #ff6b00;
  background: #f8fafc;
}

.certificate-note strong {
  display: block;
  color: #082a4a;
  font-size: 22px;
  font-weight: 900;
}

.certificate-note p {
  margin: 14px 0 0;
  color: #667085;
  font-size: 15px;
  line-height: 1.8;
}

.certificate-intro {
  margin-top: 34px;
  padding: 28px 30px;
  border-top: 3px solid #ff6b00;
  background: #f8fafc;
}

.certificate-intro strong {
  display: block;
  color: #082a4a;
  font-size: 22px;
  font-weight: 900;
}

.certificate-intro p {
  margin: 12px 0 0;
  color: #667085;
  font-size: 15px;
  line-height: 1.8;
}

.certificate-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 28px;
}

.certificate-gallery figure {
  margin: 0;
  padding: 14px;
  border: 1px solid #dfe7f0;
  background: #fff;
}

.certificate-gallery img {
  display: block;
  width: 100%;
  height: auto;
}

.certificate-gallery figcaption {
  margin-top: 12px;
  color: #082a4a;
  font-size: 14px;
  font-weight: 900;
  text-align: center;
}

.mission-card {
  margin-top: 34px;
  padding: 42px;
  border: 1px solid #dfe7f0;
  background:
    linear-gradient(135deg, rgba(8, 42, 74, .95), rgba(8, 42, 74, .74)),
    url("../images/hero-01-ship-rope.jpg") center/cover;
  color: #fff;
}

.mission-card span {
  color: #ffb178;
  font-size: 13px;
  font-weight: 900;
}

.mission-card strong {
  display: block;
  margin-top: 12px;
  max-width: 720px;
  font-size: 28px;
  font-weight: 900;
  line-height: 1.35;
}

.mission-card p {
  max-width: 760px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, .82);
  font-size: 16px;
  line-height: 1.8;
}

.mission-card ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.mission-card li {
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, .24);
  background: rgba(255, 255, 255, .08);
  font-size: 14px;
  font-weight: 800;
}

.mission-for-you {
  display: grid;
  gap: 28px;
  margin-top: 34px;
}

.mission-visual-card {
  display: grid;
  grid-template-columns: minmax(280px, 44%) 1fr;
  align-items: center;
  gap: 34px;
  padding: 26px;
  border: 1px solid #dfe7f0;
  background: #fff;
}

.mission-visual-card.reverse {
  grid-template-columns: 1fr minmax(280px, 44%);
}

.mission-visual-card.reverse img {
  order: 2;
}

.mission-visual-card img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid #e5eaf0;
}

.mission-visual-card span {
  color: #ff6b00;
  font-size: 13px;
  font-weight: 900;
}

.mission-visual-card strong {
  display: block;
  margin-top: 10px;
  color: #082a4a;
  font-size: 25px;
  font-weight: 900;
  line-height: 1.35;
  word-break: keep-all;
}

.mission-visual-card p {
  margin: 16px 0 0;
  color: #667085;
  font-size: 15px;
  line-height: 1.8;
}

.mission-values {
  padding: 30px 32px;
  background: #082a4a;
  color: #fff;
}

.mission-values strong {
  display: block;
  color: #ffb178;
  font-size: 18px;
  font-weight: 900;
}

.mission-values ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.mission-values li {
  padding: 15px 16px;
  border: 1px solid rgba(255, 255, 255, .22);
  background: rgba(255, 255, 255, .08);
  font-size: 14px;
  font-weight: 800;
  text-align: center;
}

.sub-content-panel {
  display: none;
}

.sub-content-panel.is-active {
  display: block;
}

.greeting-card {
  padding: 44px 0 0;
}

.greeting-lead {
  margin: 0 0 36px;
  color: #0b1f35;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.45;
  letter-spacing: -1px;
}

.greeting-body {
  display: grid;
  gap: 24px;
  color: #27364a;
  font-size: 18px;
  line-height: 1.9;
  letter-spacing: -0.2px;
}

.greeting-body p {
  margin: 0;
}

.greeting-body strong {
  color: #082a4a;
  font-weight: 900;
}

.signature {
  margin-top: 28px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 14px;
  color: #111827;
}

.signature span {
  font-size: 14px;
  font-weight: 800;
}

.signature img {
  display: block;
  max-width: 120px;
  height: auto;
}

.overview-card {
  padding: 38px 0 0;
}

.overview-lead {
  margin: 0 0 30px;
  color: #0b1f35;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.55;
  letter-spacing: -0.7px;
}

.overview-highlight {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 36px;
}

.overview-highlight div {
  min-height: 150px;
  padding: 22px;
  border: 1px solid #e5eaf0;
  border-top: 3px solid #ff6b00;
  border-radius: 8px;
  background: #fff;
}

.overview-highlight span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: #fff2e8;
  color: #ff6b00;
  font-size: 13px;
  font-weight: 900;
}

.overview-highlight strong {
  display: block;
  margin-bottom: 10px;
  color: #082a4a;
  font-size: 17px;
  font-weight: 900;
}

.overview-highlight p {
  margin: 0;
  color: #5b6675;
  font-size: 14px;
  line-height: 1.65;
}

.overview-body {
  display: grid;
  gap: 22px;
  color: #27364a;
  font-size: 16px;
  line-height: 1.9;
}

.overview-body p {
  margin: 0;
}

.location-card {
  padding-top: 38px;
  display: grid;
  grid-template-columns: minmax(360px, 1fr) 420px;
  gap: 34px;
  align-items: stretch;
}

.map-visual {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(8, 42, 74, .94), rgba(8, 42, 74, .72)),
    url("../images/hero-01-ship-rope.jpg") center/cover;
  box-shadow: 0 18px 36px rgba(10, 27, 46, .16);
}

.map-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .1) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: .45;
}

.map-grid::before,
.map-grid::after {
  content: "";
  position: absolute;
  background: rgba(255, 255, 255, .2);
  transform-origin: center;
}

.map-grid::before {
  left: -10%;
  top: 42%;
  width: 120%;
  height: 18px;
  transform: rotate(-12deg);
}

.map-grid::after {
  left: 18%;
  top: -20%;
  width: 18px;
  height: 140%;
  transform: rotate(28deg);
}

.map-pin {
  position: absolute;
  left: 50%;
  top: 45%;
  width: 68px;
  height: 68px;
  border-radius: 50% 50% 50% 0;
  background: #ff6b00;
  transform: translate(-50%, -50%) rotate(-45deg);
  box-shadow: 0 16px 30px rgba(255, 107, 0, .35);
}

.map-pin span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fff;
  transform: translate(-50%, -50%);
}

.map-label {
  position: absolute;
  left: 50%;
  top: calc(45% + 58px);
  min-width: 250px;
  padding: 16px 20px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .96);
  color: #0b1f35;
  text-align: center;
  transform: translateX(-50%);
  box-shadow: 0 12px 26px rgba(0, 0, 0, .14);
}

.map-label strong {
  display: block;
  margin-bottom: 6px;
  color: #082a4a;
  font-size: 17px;
  font-weight: 900;
}

.map-label p {
  margin: 0;
  color: #5b6675;
  font-size: 13px;
}

.location-info {
  padding: 34px;
  border: 1px solid #e5eaf0;
  border-radius: 8px;
  background: #fff;
}

.location-kicker {
  margin: 0 0 8px;
  color: #ff6b00;
  font-size: 13px;
  font-weight: 900;
}

.location-info h3 {
  margin: 0 0 26px;
  color: #082a4a;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -1px;
}

.location-info dl {
  margin: 0;
  display: grid;
  gap: 18px;
}

.location-info dl div {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid #edf1f5;
}

.location-info dt {
  color: #0b1f35;
  font-size: 14px;
  font-weight: 900;
}

.location-info dd {
  margin: 0;
  color: #4b5563;
  font-size: 15px;
  line-height: 1.65;
}

.map-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.map-buttons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  height: 44px;
  padding: 0 18px;
  border-radius: 5px;
  background: #082a4a;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  transition: background .18s ease, transform .18s ease;
}

.map-buttons a:first-child {
  background: #ff6b00;
}

.map-buttons a:hover,
.map-buttons a:focus {
  transform: translateY(-1px);
}

.product-hero {
  background:
    linear-gradient(90deg, rgba(2, 13, 26, .86), rgba(4, 21, 38, .46)),
    url("../images/fiber-rope.png") center/cover;
}

.product-layout {
  grid-template-columns: 260px minmax(0, 1fr);
}

.product-title h2 {
  font-size: 38px;
}

.product-type-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  padding: 34px 0 28px;
}

.product-type-tabs a {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: #667085;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.2;
}

.product-type-tabs a::before {
  content: "";
  width: 0;
  height: 0;
  margin-right: 7px;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 11px solid #6b7280;
}

.product-type-tabs a.is-active,
.product-type-tabs a:hover,
.product-type-tabs a:focus {
  color: #082a4a;
}

.product-type-tabs a.is-active::before,
.product-type-tabs a:hover::before,
.product-type-tabs a:focus::before {
  border-left-color: #ff6b00;
}

.spec-section {
  padding-top: 8px;
}

.product-type-panel {
  display: none;
}

.product-type-panel.is-active {
  display: block;
}

.is-page-hidden,
[hidden].is-page-hidden {
  display: none !important;
}

.spec-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 34px;
}

.spec-heading span {
  width: 15px;
  height: 15px;
  border: 2px solid #1b1684;
  transform: rotate(45deg);
}

.spec-heading h3 {
  margin: 0;
  color: #1b1684;
  font-size: 24px;
  font-weight: 900;
}

.spec-category {
  display: grid;
  grid-template-columns: 110px repeat(3, minmax(0, 1fr));
  margin-bottom: 34px;
  border: 2px solid #b7a1ff;
  border-radius: 4px;
  overflow: hidden;
}

.spec-category-label {
  display: grid;
  align-content: center;
  padding: 8px 12px;
  background: #b7a1ff;
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  line-height: 1.2;
}

.spec-category-label span,
.spec-category-label strong {
  display: block;
}

.spec-category button {
  min-height: 34px;
  border: 0;
  border-left: 1px dashed #d6caff;
  background: #fff;
  color: #5d6270;
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
}

.spec-category button.is-active {
  color: #8a6cff;
  background: #faf8ff;
}

.sling-category {
  grid-template-columns: 80px .7fr .9fr .7fr 3fr .7fr;
}

.sling-category button {
  font-size: 13px;
  line-height: 1.25;
}

.road-category {
  grid-template-columns: 80px repeat(3, minmax(0, 1fr));
}

.road-category button {
  font-size: 13px;
}

.opg-category {
  grid-template-columns: 80px 1fr 1fr;
}

.opg-category button {
  font-size: 13px;
}

.general-rope-category {
  grid-template-columns: 80px .8fr .8fr 2fr 1.8fr .8fr;
}

.general-rope-category button {
  font-size: 13px;
  line-height: 1.25;
}

.tail-category {
  grid-template-columns: 80px 1fr 1fr;
}

.tail-category button {
  font-size: 13px;
}

.playing-category {
  grid-template-columns: 80px 1fr 1fr;
}

.playing-category button {
  font-size: 13px;
}

.basic-rope-category {
  grid-template-columns: 80px minmax(120px, 1fr);
}

.basic-rope-category button {
  font-size: 13px;
}

.basic-rope-spec {
  display: grid;
  gap: 28px;
}

.stainless-category {
  grid-template-columns: 80px minmax(170px, 1fr);
}

.stainless-category button {
  font-size: 13px;
}

.stainless-wire-category {
  grid-template-columns: 80px minmax(180px, 1fr) minmax(180px, 1fr);
}

.stainless-wire-category.single {
  grid-template-columns: 80px minmax(180px, 1fr);
}

.stainless-wire-category button {
  font-size: 13px;
}

.wire-rope-category {
  grid-template-columns: 80px minmax(150px, 1fr) minmax(150px, 1fr) minmax(180px, 1fr);
}

.wire-rope-category.steel {
  grid-template-columns: 80px repeat(6, minmax(120px, 1fr));
}

.wire-rope-category button {
  font-size: 13px;
}

.sling-panel {
  display: none;
}

.sling-panel.is-active {
  display: block;
}

.sling-feature {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 30px;
  align-items: center;
  padding: 28px;
  border: 1px solid #e5eaf0;
  border-radius: 8px;
  background: #fff;
}

.sling-visual {
  min-height: 220px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #f7f9fc;
}

.sling-visual img {
  width: min(250px, 100%);
  height: auto;
}

.sling-copy h4,
.sling-info-box h4 {
  margin: 0 0 12px;
  color: #082a4a;
  font-size: 23px;
  font-weight: 900;
}

.sling-copy p,
.sling-info-box p {
  margin: 0;
  color: #4b5563;
  font-size: 15px;
  line-height: 1.75;
}

.sling-copy ul {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  color: #4b5563;
  font-size: 14px;
  line-height: 1.6;
}

.sling-copy li::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 9px;
  border-radius: 50%;
  background: #ff6b00;
  vertical-align: 1px;
}

.sling-spec-table {
  border-top: 2px solid #082a4a;
}

.sling-info-box {
  padding: 28px;
  border: 1px solid #e5eaf0;
  border-left: 4px solid #ff6b00;
  border-radius: 8px;
  background: #fff;
}

.sling-cert-content {
  display: grid;
  gap: 24px;
}

.sling-cert-copy {
  padding: 24px 26px;
  border: 1px solid #e5eaf0;
  border-left: 4px solid #ff6b00;
  border-radius: 8px;
  background: #fff;
}

.sling-cert-copy h4 {
  margin: 0 0 10px;
  color: #082a4a;
  font-size: 22px;
  font-weight: 900;
}

.sling-cert-copy p:last-child {
  margin: 0;
  color: #4b5563;
  font-size: 15px;
  line-height: 1.7;
}

.sling-cert-image {
  margin: 0;
  padding: 24px;
  border: 1px solid #e5eaf0;
  border-radius: 8px;
  background: #fff;
  overflow-x: auto;
}

.sling-cert-image img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

.sling-compare-content .spec-table-wrap {
  margin-top: 0;
}

.sling-compare-table {
  min-width: 930px;
  width: 100%;
  border-collapse: collapse;
  border-bottom: 2px solid #75aee0;
  color: #6c7280;
  font-size: 16px;
}

.sling-compare-table th,
.sling-compare-table td {
  border: 1px solid #8d8d8d;
  text-align: center;
  vertical-align: middle;
}

.sling-compare-table thead th {
  padding: 14px 18px;
  background: #8fbbe0;
  color: #fff;
  font-size: 17px;
  font-weight: 800;
}

.sling-compare-table thead th:first-child {
  width: 110px;
}

.sling-compare-table tbody th {
  width: 110px;
  padding: 12px 14px;
  background: #efefef;
  color: #6c7280;
  font-size: 16px;
  font-weight: 500;
}

.sling-compare-table tbody td {
  width: calc((100% - 110px) / 2);
  padding: 11px 28px;
  background: #fff;
  color: #6c7280;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.25;
}

.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.compare-grid article {
  padding: 28px;
  border: 1px solid #e5eaf0;
  border-radius: 8px;
  background: #fff;
}

.compare-grid h4 {
  margin: 0 0 12px;
  color: #082a4a;
  font-size: 20px;
  font-weight: 900;
}

.compare-grid p {
  margin: 0;
  color: #4b5563;
  font-size: 15px;
  line-height: 1.75;
}

.sling-feature-detail {
  display: grid;
  gap: 28px;
}

.sling-feature-detail > h4 {
  margin: 0;
  color: #3f8ed5;
  font-size: 19px;
  font-weight: 500;
}

.sling-intro {
  display: grid;
  grid-template-columns: 370px 1fr;
  gap: 26px;
  align-items: center;
}

.sling-intro img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 6px;
}

.sling-intro p {
  margin: 0;
  color: #6c7280;
  font-size: 16px;
  line-height: 1.2;
}

.sling-intro p + p {
  margin-top: 4px;
}

.sling-intro strong {
  color: #2671ff;
  font-weight: 600;
}

.sling-feature-title h5 {
  margin: 0 0 8px;
  color: #3f8ed5;
  font-size: 18px;
  font-weight: 500;
}

.sling-feature-title p {
  margin: 0;
  color: #6c7280;
  font-size: 15px;
}

.chemical-table {
  min-width: 760px;
}

.chemical-table th,
.chemical-table td {
  width: 50%;
}

.sling-stability {
  display: grid;
  grid-template-columns: minmax(420px, 690px) 1fr;
  gap: 28px;
  align-items: center;
}

.sling-stability img {
  display: block;
  width: 100%;
  height: auto;
}

.sling-stability h5 {
  margin: 0 0 20px;
  color: #6c7280;
  font-size: 17px;
  font-weight: 500;
}

.sling-stability h5::before {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  margin-right: 6px;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 10px solid #6c7280;
}

.sling-stability ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #6c7280;
  font-size: 15px;
  line-height: 1.55;
}

.sling-stability li {
  position: relative;
  padding-left: 12px;
}

.sling-stability li::before {
  content: "-";
  position: absolute;
  left: 0;
}

.spec-panel {
  display: none;
}

.spec-panel.is-active {
  display: block;
}

.spec-summary {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 28px;
  align-items: center;
  padding: 26px;
  border: 1px solid #e5eaf0;
  border-radius: 8px;
  background: #fff;
}

.spec-summary img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 6px;
  background: #f3f6f9;
}

.spec-kicker {
  margin: 0 0 8px;
  color: #ff6b00;
  font-size: 13px;
  font-weight: 900;
}

.spec-summary h4 {
  margin: 0 0 12px;
  color: #082a4a;
  font-size: 23px;
  font-weight: 900;
}

.spec-summary p {
  margin: 0;
  color: #4b5563;
  font-size: 15px;
  line-height: 1.75;
}

.spec-table-wrap {
  margin-top: 24px;
  overflow-x: auto;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  border-top: 2px solid #082a4a;
  font-size: 14px;
}

.spec-table th,
.spec-table td {
  padding: 14px 16px;
  border-bottom: 1px solid #dfe4ea;
  text-align: left;
}

.spec-table th {
  background: #f7f9fc;
  color: #082a4a;
  font-weight: 900;
}

.spec-table td {
  color: #4b5563;
}

.rope-spec-sheet h4 {
  margin: 0 0 26px;
  color: #3f8ed5;
  font-size: 19px;
  font-weight: 500;
}

.rope-spec-table {
  min-width: 860px;
  border-top: 0;
  border-bottom: 2px solid #75aee0;
  color: #6c7280;
  font-size: 15px;
}

.rope-spec-table th,
.rope-spec-table td {
  padding: 6px 18px;
  border-bottom: 0;
  text-align: center;
}

.rope-spec-table thead th {
  background: #8fbbe0;
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.35;
}

.rope-spec-table thead tr:first-child th {
  padding-top: 12px;
  padding-bottom: 5px;
}

.rope-spec-table thead tr:nth-child(2) th {
  padding-top: 4px;
  padding-bottom: 10px;
}

.rope-spec-table tbody tr:nth-child(odd) {
  background: #fff;
}

.rope-spec-table tbody tr:nth-child(even) {
  background: #f5f5f5;
}

.rope-spec-table tbody td {
  color: #6c7280;
  font-size: 15px;
  font-weight: 400;
}

.sling-load-spec {
  display: grid;
  gap: 18px;
}

.sling-load-spec .spec-table-wrap {
  margin-top: 0;
}

.load-table {
  min-width: 940px;
  width: 100%;
  border-collapse: collapse;
  border-bottom: 2px solid #8fbbe0;
  color: #6c7280;
  font-size: 15px;
}

.load-table th,
.load-table td {
  padding: 5px 12px;
  border: 1px solid #d4d4d4;
  text-align: center;
}

.load-table thead th {
  background: #8fbbe0;
  border-color: #8fbbe0;
  color: #fff;
  font-weight: 700;
  line-height: 1.08;
}

.load-table .swl-head,
.load-table .factor-head {
  width: 150px;
  font-size: 16px;
}

.load-table .use-form-head {
  padding: 8px 12px 2px;
  font-size: 18px;
}

.load-table .load-use-row th {
  height: 90px;
  padding-top: 8px;
  vertical-align: top;
}

.load-table tbody td {
  color: #6c7280;
  font-size: 16px;
  font-weight: 400;
}

.load-table-purple tbody tr {
  background: #f7e8fa;
}

.load-table:not(.load-table-purple) tbody tr:nth-child(odd) {
  background: #fff;
}

.load-table:not(.load-table-purple) tbody tr:nth-child(even) {
  background: #f5f5f5;
}

.load-icon {
  position: relative;
  display: block;
  width: 58px;
  height: 42px;
  margin: 12px auto 0;
  color: #2d82ce;
}

.load-icon::before,
.load-icon::after {
  content: "";
  position: absolute;
  box-sizing: border-box;
}

.load-icon.vertical::before {
  left: 18px;
  top: 0;
  width: 22px;
  height: 40px;
  border: 3px double currentColor;
  border-radius: 13px;
}

.load-icon.choker::before {
  left: 15px;
  bottom: 1px;
  width: 28px;
  height: 28px;
  border: 3px solid currentColor;
  border-radius: 50%;
}

.load-icon.choker::after {
  left: 27px;
  top: 0;
  width: 6px;
  height: 28px;
  border-left: 3px solid currentColor;
  border-right: 3px solid currentColor;
  border-radius: 4px;
}

.load-icon.angle45::before,
.load-icon.angle60::before {
  left: 8px;
  bottom: 6px;
  width: 42px;
  height: 20px;
  border-bottom: 4px double currentColor;
  border-left: 4px double currentColor;
  border-right: 4px double currentColor;
  border-radius: 0 0 6px 6px;
}

.load-icon.angle45::after {
  left: 9px;
  bottom: 18px;
  width: 44px;
  height: 4px;
  border-top: 4px double currentColor;
  transform: rotate(-28deg);
  transform-origin: center;
}

.load-icon.angle60::after {
  left: 10px;
  bottom: 20px;
  width: 42px;
  height: 4px;
  border-top: 4px double currentColor;
  transform: rotate(-38deg);
  transform-origin: center;
}

.load-icon.basket::before,
.load-icon.basket::after {
  top: 2px;
  width: 18px;
  height: 38px;
  border: 3px double currentColor;
  border-radius: 12px;
}

.load-icon.basket::before {
  left: 12px;
}

.load-icon.basket::after {
  right: 12px;
}

.sling-notes {
  display: grid;
  gap: 10px;
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
  color: #6c7280;
  font-size: 15px;
  line-height: 1.55;
}

.sling-notes li {
  position: relative;
  padding-left: 18px;
}

.sling-notes li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: #b9a6ff;
  box-shadow: inset 0 0 0 2px #dcd4ff;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.case-grid article {
  padding: 24px;
  border: 1px solid #e5eaf0;
  border-radius: 8px;
  background: #fff;
}

.case-grid span {
  display: inline-flex;
  width: 32px;
  height: 32px;
  margin-bottom: 18px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fff2e8;
  color: #ff6b00;
  font-size: 13px;
  font-weight: 900;
}

.case-grid h4 {
  margin: 0 0 10px;
  color: #082a4a;
  font-size: 18px;
}

.case-grid p {
  margin: 0;
  color: #5b6675;
  font-size: 14px;
  line-height: 1.65;
}

.case-showcase {
  display: grid;
  gap: 26px;
}

.case-copy {
  padding: 24px 26px;
  border: 1px solid #e5eaf0;
  border-left: 4px solid #ff6b00;
  border-radius: 8px;
  background: #fff;
}

.case-copy h4 {
  margin: 0 0 10px;
  color: #082a4a;
  font-size: 23px;
  font-weight: 900;
}

.case-copy p:last-child {
  margin: 0;
  color: #4b5563;
  font-size: 15px;
  line-height: 1.75;
}

.case-image {
  margin: 0;
  padding: 24px;
  border: 1px solid #e5eaf0;
  border-radius: 8px;
  background: #fff;
  overflow-x: auto;
}

.case-image img {
  display: block;
  width: auto;
  max-width: none;
  height: auto;
  margin: 0 auto;
}

.sling-case-content {
  display: grid;
  gap: 24px;
}

.sling-case-copy {
  padding: 24px 26px;
  border: 1px solid #e5eaf0;
  border-left: 4px solid #ff6b00;
  border-radius: 8px;
  background: #fff;
}

.sling-case-copy h4 {
  margin: 0 0 10px;
  color: #082a4a;
  font-size: 22px;
  font-weight: 900;
}

.sling-case-copy p:last-child {
  margin: 0;
  color: #4b5563;
  font-size: 15px;
  line-height: 1.7;
}

.sling-case-image {
  margin: 0;
  padding: 24px;
  border: 1px solid #e5eaf0;
  border-radius: 8px;
  background: #fff;
  overflow-x: auto;
}

.sling-case-image img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

.road-panel {
  display: none;
}

.road-panel.is-active {
  display: block;
}

.road-feature {
  display: grid;
  gap: 22px;
}

.road-spec-content {
  display: grid;
  gap: 46px;
}

.road-spec-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: stretch;
  border-bottom: 2px solid #75aee0;
}

.road-spec-sheet h4,
.road-compare-block h4 {
  margin: -18px 0 0;
  color: #3f8ed5;
  font-size: 17px;
  font-weight: 500;
}

.road-spec-sheet .spec-table-wrap,
.road-compare-block .spec-table-wrap {
  margin-top: 0;
}

.road-spec-table,
.road-compare-table {
  min-width: 740px;
  width: 100%;
  border-collapse: collapse;
  color: #6c7280;
  font-size: 16px;
}

.road-spec-table th,
.road-spec-table td,
.road-compare-table th,
.road-compare-table td {
  border: 1px solid #b9b9b9;
  text-align: center;
  vertical-align: middle;
}

.road-spec-table thead th {
  padding: 8px 12px;
  background: #8fbbe0;
  color: #fff;
  font-weight: 800;
  line-height: 1.1;
}

.road-spec-table td {
  padding: 5px 10px;
  background: #f7f7f7;
}

.road-compare-block h4 {
  margin: 0 0 24px 10px;
}

.road-compare-table {
  min-width: 900px;
  border-bottom: 2px solid #52b2bf;
}

.road-compare-table thead th {
  padding: 8px 14px;
  background: #77c0c8;
  color: #fff;
  font-size: 16px;
  font-weight: 800;
}

.road-compare-table tbody th {
  width: 130px;
  padding: 8px 12px;
  background: #efefef;
  color: #6c7280;
  font-weight: 500;
}

.road-compare-table tbody td {
  width: calc((100% - 130px) / 2);
  padding: 9px 12px;
  background: #fff;
  color: #6c7280;
  font-weight: 400;
  line-height: 1.35;
}

.road-warning {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 6px;
  align-items: start;
  color: #6c7280;
}

.road-warning > span {
  display: inline-flex;
  width: 52px;
  height: 16px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #ffc034;
  color: #fff;
  font-size: 8px;
  font-weight: 900;
}

.road-warning h4 {
  margin: 0 0 4px;
  color: #6c7280;
  font-size: 16px;
  font-weight: 800;
}

.road-warning ol {
  margin: 0;
  padding-left: 0;
  list-style-position: inside;
  color: #6c7280;
  font-size: 15px;
  line-height: 1.35;
}

.road-case-content {
  display: grid;
  gap: 24px;
}

.road-case-copy {
  padding: 24px 26px;
  border: 1px solid #e5eaf0;
  border-left: 4px solid #ff6b00;
  border-radius: 8px;
  background: #fff;
}

.road-case-copy h4 {
  margin: 0 0 10px;
  color: #082a4a;
  font-size: 22px;
  font-weight: 900;
}

.road-case-copy p:last-child {
  margin: 0;
  color: #4b5563;
  font-size: 15px;
  line-height: 1.7;
}

.road-case-image {
  margin: 0;
  padding: 24px;
  border: 1px solid #e5eaf0;
  border-radius: 8px;
  background: #fff;
  overflow-x: auto;
}

.road-case-image img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

.road-review-content {
  display: grid;
  gap: 22px;
}

.road-review-head,
.road-review-body,
.road-review-notice article {
  border: 1px solid #e5eaf0;
  border-radius: 8px;
  background: #fff;
}

.road-review-head {
  padding: 26px;
  border-left: 4px solid #ff6b00;
}

.road-review-head h4 {
  margin: 0 0 20px;
  color: #082a4a;
  font-size: 22px;
  font-weight: 900;
}

.road-review-head dl {
  display: grid;
  gap: 8px;
  margin: 0;
}

.road-review-head dl div {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 12px;
  align-items: start;
}

.road-review-head dt {
  color: #082a4a;
  font-size: 14px;
  font-weight: 900;
}

.road-review-head dd {
  margin: 0;
  color: #5b6675;
  font-size: 14px;
  line-height: 1.45;
}

.road-review-body {
  padding: 30px;
  color: #3f4a5a;
  font-size: 15px;
  line-height: 1.85;
}

.road-review-body p {
  margin: 0;
}

.road-review-body p + p {
  margin-top: 16px;
}

.road-review-notice {
  display: grid;
  gap: 14px;
}

.road-review-notice article {
  padding: 22px 24px;
  border-left: 4px solid #8fbbe0;
}

.road-review-notice h5 {
  margin: 0 0 8px;
  color: #082a4a;
  font-size: 16px;
  font-weight: 900;
}

.road-review-notice p {
  margin: 0;
  color: #4b5563;
  font-size: 14px;
  line-height: 1.75;
}

.opg-panel {
  display: none;
}

.opg-panel.is-active {
  display: block;
}

.opg-spec-content {
  display: grid;
  gap: 36px;
}

.opg-spec-block h4 {
  margin: 0 0 8px;
  color: #3f8ed5;
  font-size: 18px;
  font-weight: 500;
}

.opg-spec-block-teal h4 {
  color: #1b9fc0;
}

.opg-spec-block .spec-table-wrap {
  margin-top: 0;
}

.opg-spec-table {
  min-width: 820px;
  width: 100%;
  border-collapse: collapse;
  border-bottom: 2px solid #75aee0;
  color: #6c7280;
  font-size: 16px;
}

.opg-spec-table th,
.opg-spec-table td {
  padding: 5px 14px;
  border: 0;
  text-align: center;
}

.opg-spec-table thead th {
  background: #8fbbe0;
  color: #fff;
  font-size: 17px;
  font-weight: 800;
}

.opg-spec-block-teal .opg-spec-table {
  border-bottom-color: #69c0cc;
}

.opg-spec-block-teal .opg-spec-table thead th {
  background: #77c0c8;
}

.opg-spec-table tbody tr:nth-child(odd) {
  background: #fff;
}

.opg-spec-table tbody tr:nth-child(even) {
  background: #f5f5f5;
}

.opg-spec-table tbody td {
  color: #6c7280;
  font-weight: 400;
}

.opg-info-box {
  padding: 26px;
  border: 1px solid #e5eaf0;
  border-left: 4px solid #ff6b00;
  border-radius: 8px;
  background: #fff;
}

.opg-info-box h4 {
  margin: 0 0 12px;
  color: #082a4a;
  font-size: 22px;
  font-weight: 900;
}

.opg-info-box p:last-child {
  margin: 0;
  color: #4b5563;
  font-size: 15px;
  line-height: 1.7;
}

.opg-case-content {
  display: grid;
  gap: 24px;
}

.opg-case-copy {
  padding: 24px 26px;
  border: 1px solid #e5eaf0;
  border-left: 4px solid #ff6b00;
  border-radius: 8px;
  background: #fff;
}

.opg-case-copy h4 {
  margin: 0 0 10px;
  color: #082a4a;
  font-size: 22px;
  font-weight: 900;
}

.opg-case-copy p:last-child {
  margin: 0;
  color: #4b5563;
  font-size: 15px;
  line-height: 1.7;
}

.opg-case-image {
  margin: 0;
  padding: 24px;
  border: 1px solid #e5eaf0;
  border-radius: 8px;
  background: #fff;
  overflow-x: auto;
}

.opg-case-image img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

.fiber-general-page {
  display: none;
}

.stainless-special-page,
.stainless-wire-page,
.wire-rope-page {
  display: none;
}

.fiber-general-page.is-active,
.stainless-special-page.is-active,
.stainless-wire-page.is-active,
.wire-rope-page.is-active {
  display: block;
}

.fiber-general-title {
  padding-bottom: 10px;
  border-bottom: 1px solid #c8cdd4;
}

.fiber-general-title h2 {
  margin: 0;
  font-size: 38px;
}

.general-type-tabs {
  padding-top: 38px;
}

.stainless-special-title,
.stainless-wire-title,
.wire-rope-title {
  padding-bottom: 10px;
  border-bottom: 1px solid #c8cdd4;
}

.stainless-special-title h2,
.stainless-wire-title h2,
.wire-rope-title h2 {
  margin: 0;
  font-size: 38px;
}

.stainless-type-tabs,
.stainless-wire-type-tabs,
.wire-rope-type-tabs {
  padding-top: 38px;
}

.general-type-panel,
.general-rope-panel,
.tail-panel,
.playing-panel,
.basic-rope-panel,
.stainless-type-panel,
.accessory-panel,
.stainless-wire-panel,
.wire-rope-panel {
  display: none;
}

.general-type-panel.is-active,
.general-rope-panel.is-active,
.tail-panel.is-active,
.playing-panel.is-active,
.basic-rope-panel.is-active,
.stainless-type-panel.is-active,
.accessory-panel.is-active,
.stainless-wire-panel.is-active,
.wire-rope-panel.is-active {
  display: block;
}

.general-rope-info {
  padding: 26px;
  border: 1px solid #e5eaf0;
  border-left: 4px solid #ff6b00;
  border-radius: 8px;
  background: #fff;
}

.general-rope-info h4 {
  margin: 0 0 12px;
  color: #082a4a;
  font-size: 22px;
  font-weight: 900;
}

.general-rope-info p:last-child {
  margin: 0;
  color: #4b5563;
  font-size: 15px;
  line-height: 1.7;
}

.general-spec-sheet h4 {
  margin: 0 0 12px;
  color: #3f8ed5;
  font-size: 18px;
  font-weight: 500;
}

.general-st-table,
.general-st12-table {
  min-width: 0;
  width: 100%;
  border-collapse: collapse;
  color: #6c7280;
  table-layout: fixed;
  font-size: 12px;
}

.general-st-table th,
.general-st-table td,
.general-st12-table th,
.general-st12-table td {
  padding: 5px 3px;
  border: 1px solid #8d8d8d;
  text-align: center;
  vertical-align: middle;
  font-weight: 400;
  word-break: keep-all;
  white-space: normal;
}

.general-st-table thead th,
.general-st12-table thead th {
  background: #fff;
  color: #6c7280;
  font-size: 12px;
  line-height: 1.15;
  overflow-wrap: anywhere;
}

.general-st-table col.dia-mm,
.general-st12-table col.dia-mm {
  width: 5%;
}

.general-st-table col.dia-inch,
.general-st12-table col.dia-inch {
  width: 7%;
}

.general-st-table col:not(.dia-mm):not(.dia-inch),
.general-st12-table col:not(.dia-mm):not(.dia-inch) {
  width: 7.33%;
}

.general-st-table .dia-head,
.general-st-table tbody td:nth-child(1),
.general-st-table tbody td:nth-child(2),
.general-st-table .superdan-head,
.general-st-table tbody td:nth-child(12),
.general-st-table tbody td:nth-child(13),
.general-st-table tbody td:nth-child(14),
.general-st12-table .dia-head,
.general-st12-table tbody td:nth-child(1),
.general-st12-table tbody td:nth-child(2),
.general-st12-table .superdan-head,
.general-st12-table tbody td:nth-child(12),
.general-st12-table tbody td:nth-child(13),
.general-st12-table tbody td:nth-child(14) {
  background: #cfe8f7;
}

.general-st-table .superflex-head,
.general-st-table tbody td:nth-child(6),
.general-st-table tbody td:nth-child(7),
.general-st-table tbody td:nth-child(8),
.general-st12-table .superflex-head,
.general-st12-table tbody td:nth-child(6),
.general-st12-table tbody td:nth-child(7),
.general-st12-table tbody td:nth-child(8) {
  background: #fffeca;
}

.general-st-table .blank-cell {
  background: #cfe8f7;
  color: #6c7280;
  letter-spacing: 2px;
}

.special-mooring-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 46px;
  align-items: start;
}

.special-mooring-table h4 {
  margin: 0 0 18px;
  color: #6c7280;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
}

.special-mooring-table .spec-table-wrap {
  margin-top: 0;
}

.special-mooring-spec {
  width: 100%;
  border-collapse: collapse;
  color: #6c7280;
  font-size: 15px;
}

.special-mooring-spec th,
.special-mooring-spec td {
  padding: 3px 12px;
  border: 1px solid #8d8d8d;
  text-align: center;
  font-weight: 400;
}

.special-mooring-spec thead th {
  color: #6c7280;
  font-size: 16px;
  font-weight: 600;
}

.special-mooring-note {
  margin: 12px 0 0;
  color: #2358ff;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.45;
}

.special-mooring-visual {
  display: grid;
  justify-items: center;
  gap: 14px;
  padding-top: 34px;
  color: #6c7280;
}

.special-mooring-visual img {
  display: block;
  width: 250px;
  height: 260px;
  border: 4px solid #ffa500;
  object-fit: cover;
}

.special-mooring-visual h5 {
  margin: 0;
  color: #6c7280;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
}

.special-mooring-visual ul {
  margin: 0;
  padding: 0;
  list-style: none;
  color: #6c7280;
  font-size: 16px;
  line-height: 1.2;
}

.general-case-content {
  display: grid;
  gap: 24px;
}

.general-case-copy {
  padding: 24px 26px;
  border: 1px solid #e5eaf0;
  border-left: 4px solid #ff6b00;
  border-radius: 8px;
  background: #fff;
}

.general-case-copy h4 {
  margin: 0 0 10px;
  color: #082a4a;
  font-size: 22px;
  font-weight: 900;
}

.general-case-copy p:last-child {
  margin: 0;
  color: #4b5563;
  font-size: 15px;
  line-height: 1.7;
}

.general-case-image {
  margin: 0;
  padding: 24px;
  border: 1px solid #e5eaf0;
  border-radius: 8px;
  background: #fff;
  overflow-x: auto;
}

.general-case-image img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

.tail-feature-content {
  display: grid;
  gap: 34px;
  color: #6c7280;
}

.tail-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 40px;
  align-items: start;
}

.tail-intro p {
  margin: 0;
  color: #6c7280;
  font-size: 16px;
  line-height: 1.45;
}

.tail-intro p + p {
  margin-top: 4px;
}

.tail-intro img {
  display: block;
  width: 300px;
  height: auto;
  margin-left: auto;
}

.tail-methods {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: end;
}

.tail-methods figure {
  margin: 0;
}

.tail-methods figcaption {
  min-height: 42px;
  color: #3f8ed5;
  font-size: 16px;
  line-height: 1.15;
}

.tail-methods img {
  display: block;
  width: 310px;
  max-width: 100%;
  height: auto;
  border: 1px solid #d6dbe1;
  border-radius: 3px;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, .12);
}

.tail-methods figure:nth-child(2) img {
  margin-left: auto;
}

.tail-spec-table {
  min-width: 920px;
  width: 100%;
  border-collapse: collapse;
  border-bottom: 2px solid #75aee0;
  color: #6c7280;
  font-size: 14px;
}

.tail-spec-table th,
.tail-spec-table td {
  padding: 5px 8px;
  border: 0;
  text-align: center;
  vertical-align: middle;
  font-weight: 400;
  line-height: 1.2;
}

.tail-spec-table thead th {
  background: #8fbbe0;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
}

.tail-spec-table tbody tr:nth-child(odd) {
  background: #fff;
}

.tail-spec-table tbody tr:nth-child(even) {
  background: #f5f5f5;
}

.tail-notice {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 8px;
  padding: 8px 10px;
  border: 1px solid #e0e0e0;
  color: #6c7280;
}

.tail-notice span {
  display: inline-flex;
  width: 34px;
  height: 18px;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  background: #ffaf23;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.tail-notice ol {
  margin: 0;
  padding-left: 0;
  list-style-position: inside;
  font-size: 14px;
  line-height: 1.35;
}

.tail-case-content {
  display: grid;
  gap: 24px;
}

.tail-case-copy {
  padding: 24px 26px;
  border: 1px solid #e5eaf0;
  border-left: 4px solid #ff6b00;
  border-radius: 8px;
  background: #fff;
}

.tail-case-copy h4 {
  margin: 0 0 10px;
  color: #082a4a;
  font-size: 22px;
  font-weight: 900;
}

.tail-case-copy p:last-child {
  margin: 0;
  color: #4b5563;
  font-size: 15px;
  line-height: 1.7;
}

.tail-case-image {
  margin: 0;
  padding: 24px;
  border: 1px solid #e5eaf0;
  border-radius: 8px;
  background: #fff;
  overflow-x: auto;
}

.tail-case-image img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

.playing-feature-content {
  display: grid;
  gap: 26px;
}

.playing-copy {
  padding: 8px 18px;
  border: 1px solid #e5eaf0;
  color: #6c7280;
  font-size: 16px;
  line-height: 1.35;
}

.playing-copy p {
  margin: 0;
}

.playing-copy strong {
  font-weight: 900;
}

.playing-spec-area h4 {
  margin: 0 0 8px;
  color: #3f8ed5;
  font-size: 17px;
  font-weight: 700;
}

.playing-spec-body {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(420px, 1.6fr);
  gap: 10px;
  align-items: center;
}

.playing-photo {
  margin: 0;
  overflow: hidden;
}

.playing-photo img {
  display: block;
  width: 100%;
  height: auto;
}

.playing-spec-table-wrap {
  display: grid;
  justify-items: center;
  gap: 28px;
}

.playing-spec-table {
  width: min(500px, 100%);
  border-collapse: collapse;
  border: 3px solid #1c1c1c;
  color: #1f2f3a;
  font-size: 16px;
}

.playing-spec-table th,
.playing-spec-table td {
  padding: 4px 16px;
  border: 2px solid #1c1c1c;
  text-align: center;
  font-weight: 600;
}

.playing-spec-table thead th {
  background: #d4f5e7;
}

.playing-spec-table-wrap p {
  margin: 0;
  color: #6c7280;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.35;
  text-align: center;
}

.playing-case-content {
  display: grid;
  gap: 24px;
}

.playing-case-copy {
  padding: 24px 26px;
  border: 1px solid #e5eaf0;
  border-left: 4px solid #ff6b00;
  border-radius: 8px;
  background: #fff;
}

.playing-case-copy h4 {
  margin: 0 0 10px;
  color: #082a4a;
  font-size: 22px;
  font-weight: 900;
}

.playing-case-copy p:last-child {
  margin: 0;
  color: #4b5563;
  font-size: 15px;
  line-height: 1.7;
}

.playing-case-image {
  margin: 0;
  padding: 24px;
  border: 1px solid #e5eaf0;
  border-radius: 8px;
  background: #fff;
  overflow-x: auto;
}

.playing-case-image img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

.three-strand-table {
  min-width: 880px;
  width: 100%;
  border-collapse: collapse;
  color: #8a8f94;
  font-size: 12px;
}

.three-strand-table th,
.three-strand-table td {
  padding: 3px 8px;
  border: 1px solid #9b9b9b;
  text-align: center;
  font-weight: 400;
  line-height: 1.15;
}

.three-strand-table thead th {
  background: #cfe8f7;
  color: #70767a;
  font-weight: 700;
}

.three-strand-table tbody tr:nth-child(odd) {
  background: #fff;
}

.three-strand-table tbody tr:nth-child(even) {
  background: #f7f7f7;
}

.accessory-wire-content {
  display: grid;
  gap: 28px;
}

.accessory-wire-copy {
  padding: 8px 10px;
  border: 1px solid #e5eaf0;
  color: #6c7280;
  font-size: 16px;
  line-height: 1.45;
}

.accessory-wire-copy h4,
.accessory-showcase h4,
.accessory-spec-block h4 {
  margin: 0 0 8px;
  color: #3f8ed5;
  font-size: 17px;
  font-weight: 700;
}

.accessory-wire-copy p {
  margin: 0;
}

.accessory-wire-copy strong {
  font-weight: 900;
}

.accessory-warning {
  color: #ff7a00;
  font-weight: 900;
}

.accessory-subcopy {
  margin-top: 24px !important;
}

.accessory-showcase figure {
  margin: 0;
  padding: 24px;
  border: 1px solid #e5eaf0;
  background: #fff;
  text-align: center;
}

.accessory-showcase img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

.accessory-spec-block .spec-table-wrap {
  margin-top: 0;
}

.accessory-wire-table {
  min-width: 820px;
  width: 100%;
  border-collapse: collapse;
  border-bottom: 2px solid #75aee0;
  color: #6c7280;
  font-size: 15px;
}

.accessory-wire-table th,
.accessory-wire-table td {
  padding: 6px 14px;
  border: 0;
  text-align: center;
  vertical-align: middle;
  font-weight: 400;
}

.accessory-wire-table thead th {
  background: #8fbbe0;
  color: #fff;
  font-weight: 800;
}

.accessory-wire-table tbody tr:nth-child(odd) {
  background: #fff;
}

.accessory-wire-table tbody tr:nth-child(even) {
  background: #f5f5f5;
}

.accessory-wire-table tbody td:first-child {
  background: #efefef;
}

.functional-wire-content {
  display: grid;
  gap: 38px;
  margin-top: 30px;
}

.functional-wire-block {
  display: grid;
  gap: 20px;
}

.functional-wire-block h4 {
  margin: 0;
  color: #3f8ed5;
  font-size: 18px;
  font-weight: 600;
}

.functional-wire-copy {
  margin: 0;
  padding: 12px 14px;
  border: 1px solid #d8dce2;
  color: #6c7280;
  font-size: 16px;
  line-height: 1.45;
}

.functional-wire-layout {
  display: grid;
  grid-template-columns: minmax(180px, 330px) minmax(0, 1fr);
  align-items: center;
  gap: 28px;
}

.functional-wire-layout-small {
  grid-template-columns: minmax(160px, 250px) minmax(0, 1fr);
}

.functional-wire-layout-stack {
  grid-template-columns: minmax(180px, 250px) minmax(0, 1fr);
  align-items: start;
}

.functional-wire-layout figure,
.rollkin-image {
  margin: 0;
}

.functional-wire-layout img,
.rollkin-image img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
}

.functional-wire-layout .spec-table-wrap,
.functional-wire-block > .spec-table-wrap {
  margin-top: 0;
}

.functional-wire-table {
  min-width: 720px;
  width: 100%;
  border-collapse: collapse;
  border-top: 2px solid #202020;
  color: #4f5967;
  font-size: 15px;
}

.functional-wire-table th,
.functional-wire-table td {
  padding: 7px 10px;
  border: 1px solid #555;
  text-align: center;
  vertical-align: middle;
  line-height: 1.2;
  font-weight: 400;
}

.functional-wire-table thead th {
  background: #8fbbe0;
  color: #fff;
  font-weight: 800;
}

.functional-wire-table tbody tr:nth-child(odd) {
  background: #fff;
}

.functional-wire-table tbody tr:nth-child(even) {
  background: #f2f2f2;
}

.functional-wire-table tbody td:first-child {
  background: #efefef;
}

.functional-wire-table.compact {
  min-width: 560px;
}

.rollkin-table {
  min-width: 780px;
}

.functional-wire-notes {
  margin: 10px 0 0;
  padding-left: 20px;
  color: #6c7280;
  font-size: 13px;
  line-height: 1.45;
}

.rollkin-image {
  text-align: center;
}

.rollkin-image img {
  margin: 0 auto;
}

.spring-wire-content {
  display: grid;
  gap: 34px;
  margin-top: 28px;
}

.spring-wire-category-panel {
  display: none;
}

.spring-wire-category-panel.is-active {
  display: block;
}

.spring-wire-copy {
  margin: 0;
  padding: 10px 12px;
  border: 1px solid #e0e3e8;
  color: #7a828d;
  font-size: 15px;
  line-height: 1.55;
}

.spring-wire-copy strong {
  color: #3f8ed5;
  font-weight: 800;
}

.spring-wire-block h4 {
  margin: 0 0 18px;
  color: #3f8ed5;
  font-size: 17px;
  font-weight: 700;
}

.spring-wire-block .spec-table-wrap {
  margin-top: 0;
}

.spring-wire-table {
  min-width: 820px;
  width: 100%;
  border-collapse: collapse;
  color: #8a929b;
  font-size: 15px;
}

.spring-wire-table th,
.spring-wire-table td {
  padding: 7px 10px;
  border: 1px solid #9f9f9f;
  text-align: center;
  vertical-align: middle;
  line-height: 1.25;
  font-weight: 400;
}

.spring-wire-table thead th {
  background: #cfe7f7;
  color: #6f7882;
  font-weight: 800;
}

.spring-wire-table tbody tr:nth-child(even) {
  background: #f7f7f7;
}

.spring-jis-table {
  min-width: 860px;
}

.spring-jis-table thead th {
  padding: 9px 10px;
}

.spring-jis-table tbody tr:nth-child(even) {
  background: #fff;
}

.spring-jis-table td {
  height: 28px;
}

.spring-jis-table td:first-child {
  width: 90px;
}

.spring-wire-image {
  margin: 0;
  text-align: center;
}

.spring-wire-image img {
  display: inline-block;
  width: auto;
  max-width: 230px;
  height: auto;
  border: 1px solid #d3d6db;
}

.piano-chem-table {
  min-width: 820px;
}

.piano-pack-table,
.piano-spec-table {
  min-width: 980px;
}

.piano-spec-table {
  font-size: 14px;
}

.piano-wire-notes {
  margin-top: 12px;
  color: #7a828d;
  font-size: 13px;
  line-height: 1.45;
}

.piano-wire-notes p {
  margin: 0;
}

.piano-wire-image img {
  max-width: 360px;
}

.cold-heading-wire-content {
  display: grid;
  gap: 34px;
  margin-top: 28px;
}

.cold-limit-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 330px);
  align-items: center;
  gap: 28px;
}

.cold-limit-layout .spec-table-wrap {
  margin-top: 0;
}

.cold-limit-layout figure,
.cold-graph-image {
  margin: 0;
}

.cold-limit-layout img,
.cold-graph-image img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
}

.cold-limit-table {
  min-width: 620px;
  color: #111;
}

.cold-limit-table th,
.cold-spec-table th {
  background: #d8e0f3;
  color: #111;
  font-weight: 800;
}

.cold-limit-table th,
.cold-limit-table td,
.cold-spec-table th,
.cold-spec-table td {
  border-color: #1d1d1d;
}

.cold-spec-table {
  min-width: 920px;
  color: #111;
  font-size: 15px;
}

.cold-spec-table tbody tr:nth-child(even) {
  background: #fff;
}

.cold-spec-table .cold-spec-highlight,
.cold-spec-table .cold-spec-highlight td {
  background: #fffecb;
}

.cold-unit-note {
  margin: 10px 0 0;
  color: #111;
  font-size: 14px;
  font-weight: 700;
}

.cold-bottom-grid {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 28px;
  align-items: end;
}

.cold-graph-image {
  max-width: 360px;
}

.cold-pack-table {
  min-width: 640px;
  border-bottom: 2px solid #75aee0;
}

.cold-pack-table thead th {
  background: #8fbbe0;
  color: #fff;
}

.cold-pack-table th,
.cold-pack-table td {
  border: 0;
}

.cold-pack-table tbody tr:nth-child(even) {
  background: #f5f5f5;
}

.general-stainless-wire-content {
  display: grid;
  gap: 34px;
  margin-top: 28px;
}

.general-wire-feature-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #cfd7e4;
  border-bottom: 2px solid #19cdd2;
  color: #6f7780;
  font-size: 16px;
}

.general-wire-feature-table th,
.general-wire-feature-table td {
  padding: 0;
  border: 1px solid #d7dee9;
  text-align: center;
  vertical-align: middle;
  font-weight: 400;
}

.general-wire-feature-table thead th {
  background: #d8e0f3;
  color: #606873;
  padding: 14px 18px;
  font-weight: 800;
}

.general-wire-feature-table td {
  height: auto;
  line-height: 1.45;
}

.general-wire-feature-table td span {
  display: block;
  padding: 12px 18px;
  border-bottom: 1px solid #e4e9f1;
}

.general-wire-feature-table td span:last-child {
  border-bottom: 0;
}

.general-wire-spec-table {
  min-width: 980px;
  color: #69727d;
  font-size: 15px;
}

.general-wire-spec-table thead th {
  background: #cfe7f7;
  color: #5f6a74;
  font-weight: 800;
}

.general-wire-spec-table tbody tr:nth-child(even) {
  background: #fff;
}

.general-wire-spec-table th,
.general-wire-spec-table td {
  border-color: #8d8d8d;
}

.general-wire-spec-table td {
  height: 28px;
}

.general-wire-notes {
  margin-top: 16px;
  color: #69727d;
  font-size: 15px;
  line-height: 1.45;
}

.general-wire-notes p {
  margin: 0;
}

.sts-wire-rope-content {
  display: grid;
  gap: 34px;
  margin-top: 28px;
}

.stainless-rope-category-panel {
  display: none;
}

.stainless-rope-category-panel.is-active {
  display: block;
}

.sts-rope-feature-table {
  border-bottom-color: #19cdd2;
}

.sts-rope-group {
  display: grid;
  gap: 18px;
}

.sts-rope-group h4 {
  margin: 0;
  color: #3f8ed5;
  font-size: 16px;
  font-weight: 700;
}

.sts-rope-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px 22px;
}

.sts-rope-spec {
  min-width: 0;
}

.sts-rope-spec-head {
  display: flex;
  align-items: end;
  gap: 12px;
  min-height: 74px;
  margin-bottom: 8px;
  color: #5f6a74;
  font-size: 13px;
  font-weight: 700;
}

.sts-rope-spec-head.multi {
  flex-wrap: wrap;
}

.sts-rope-spec-head figure {
  margin: 0;
}

.sts-rope-spec-head img {
  display: block;
  width: auto;
  max-width: 70px;
  height: auto;
  border: 1px solid #d8dde5;
  border-radius: 3px;
}

.sts-rope-spec .spec-table-wrap {
  margin-top: 0;
}

.sts-rope-table {
  min-width: 420px;
  font-size: 12px;
  color: #7b838c;
}

.sts-rope-table th,
.sts-rope-table td {
  padding: 5px 6px;
  border-color: #c6cbd2;
}

.sts-rope-table thead th {
  background: #cfe7f7;
  color: #5f6a74;
  font-weight: 800;
}

.sts-rope-table tbody tr:nth-child(even) {
  background: #f7f7f7;
}

.sts-cable-table {
  min-width: 430px;
}

.teflon-rope-title {
  display: flex;
  align-items: end;
  gap: 28px;
}

.teflon-rope-title figure {
  display: flex;
  gap: 12px;
  margin: 0;
}

.teflon-rope-title img {
  display: block;
  width: auto;
  max-width: 92px;
  height: auto;
  border: 1px solid #d8dde5;
  border-radius: 3px;
}

.teflon-rope-title h4 {
  margin: 0 0 6px;
  color: #5f6a74;
  font-size: 17px;
  font-weight: 700;
}

.teflon-rope-table {
  min-width: 760px;
  font-size: 15px;
  color: #69727d;
}

.teflon-rope-table th,
.teflon-rope-table td {
  padding: 8px 12px;
  border-color: #8d8d8d;
}

.teflon-rope-table thead th {
  background: #cfe7f7;
  color: #5f6a74;
}

.teflon-rope-table tbody tr:nth-child(even) {
  background: #f7f7f7;
}

.steel-rope-category-panel {
  display: none;
}

.steel-rope-category-panel.is-active {
  display: block;
}

.steel-wire-rope-content {
  display: grid;
  gap: 34px;
  margin-top: 28px;
}

.steel-rope-pair-head {
  display: flex;
  align-items: end;
  gap: 22px;
  color: #5f6a74;
  font-size: 13px;
}

.steel-rope-pair-head figure {
  display: flex;
  gap: 12px;
  margin: 0;
}

.steel-rope-pair-head img {
  display: block;
  width: auto;
  max-width: 72px;
  height: auto;
  border: 1px solid #d8dde5;
  border-radius: 3px;
}

.steel-rope-pair-head strong {
  font-size: 13px;
  line-height: 1.35;
}

.steel-rope-pair-head span {
  margin-left: auto;
  text-align: right;
}

.steel-nonrotating-table {
  min-width: 980px;
  font-size: 12px;
  color: #7b838c;
}

.steel-single-rope-table {
  min-width: 760px;
  font-size: 12px;
  color: #7b838c;
}

.powerflex-single-table {
  min-width: 760px;
  font-size: 12px;
  color: #7b838c;
}

.powerflex-dual-table {
  min-width: 980px;
  font-size: 12px;
  color: #7b838c;
}

.crane-rope-table {
  min-width: 1100px;
  font-size: 12px;
  color: #7b838c;
}

.elevator-rope-table {
  min-width: 900px;
}

.steel-nonrotating-table th,
.steel-nonrotating-table td,
.steel-single-rope-table th,
.steel-single-rope-table td,
.powerflex-single-table th,
.powerflex-single-table td,
.powerflex-dual-table th,
.powerflex-dual-table td,
.crane-rope-table th,
.crane-rope-table td {
  padding: 5px 7px;
  border-color: #c6cbd2;
}

.steel-nonrotating-table thead th,
.steel-single-rope-table thead th,
.powerflex-single-table thead th,
.powerflex-dual-table thead th,
.crane-rope-table thead th {
  background: #cfe7f7;
  color: #5f6a74;
  font-weight: 800;
}

.steel-nonrotating-table tbody tr:nth-child(even),
.steel-single-rope-table tbody tr:nth-child(even),
.powerflex-single-table tbody tr:nth-child(even),
.powerflex-dual-table tbody tr:nth-child(even),
.crane-rope-table tbody tr:nth-child(even) {
  background: #f7f7f7;
}

.elevator-rope-table .remarks-cell {
  text-align: left;
  vertical-align: middle;
  line-height: 1.45;
}

.crane-rope-head figure {
  min-width: 220px;
}

.seesaw-rope-head {
  display: grid;
  grid-template-columns: 220px 1fr auto;
  align-items: end;
  gap: 20px;
  color: #5f6a74;
}

.seesaw-rope-head figure {
  margin: 0;
}

.seesaw-rope-head img {
  display: block;
  width: auto;
  max-width: 220px;
  height: auto;
  border: 1px solid #d8dde5;
}

.seesaw-rope-head strong {
  font-size: 16px;
  line-height: 1.35;
}

.seesaw-rope-head span {
  font-size: 13px;
  text-align: right;
}

.seesaw-rope-table {
  min-width: 980px;
  font-size: 15px;
  color: #69727d;
}

.seesaw-rope-table th,
.seesaw-rope-table td {
  padding: 8px 10px;
  border-color: #8d8d8d;
}

.seesaw-rope-table thead th {
  background: #cfe7f7;
  color: #5f6a74;
}

.seesaw-rope-table tbody tr:nth-child(even) {
  background: #f7f7f7;
}

.road-feature-copy,
.road-info-box {
  padding: 26px;
  border: 1px solid #e5eaf0;
  border-left: 4px solid #ff6b00;
  border-radius: 8px;
  background: #fff;
}

.road-feature-copy h4,
.road-info-box h4 {
  margin: 0 0 12px;
  color: #082a4a;
  font-size: 22px;
  font-weight: 900;
}

.road-feature-copy p:last-child,
.road-info-box p:last-child {
  margin: 0;
  color: #4b5563;
  font-size: 15px;
  line-height: 1.7;
}

.road-spec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.road-spec-grid article {
  padding: 24px;
  border: 1px solid #e5eaf0;
  border-radius: 8px;
  background: #fff;
}

.road-spec-grid span {
  display: inline-flex;
  width: 32px;
  height: 32px;
  margin-bottom: 16px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fff2e8;
  color: #ff6b00;
  font-size: 13px;
  font-weight: 900;
}

.road-spec-grid h5 {
  margin: 0 0 10px;
  color: #082a4a;
  font-size: 18px;
  font-weight: 900;
}

.road-spec-grid p {
  margin: 0;
  color: #5b6675;
  font-size: 14px;
  line-height: 1.65;
}

@media (max-width: 980px) {
  .site-header {
    height: auto;
  }

  .top-util {
    display: none;
  }

  .submenu-row {
    display: none;
  }

  .nav-wrap {
    height: auto;
    grid-template-columns: 1fr auto;
    padding: 18px 20px;
    gap: 16px;
  }

  .menu-toggle {
    display: grid;
    justify-self: end;
  }

  .gnb {
    display: none;
    grid-column: 1 / -1;
    width: 100%;
    padding: 12px 0 4px;
    border-top: 1px solid #e9edf2;
    gap: 0;
    font-size: 15px;
    font-weight: 600;
  }

  .site-header.is-menu-open .gnb {
    display: grid;
  }

  .nav-item {
    border-bottom: 1px solid #edf1f5;
  }

  .main-link {
    padding: 14px 4px;
  }

  .main-link::after {
    left: 0;
    bottom: 8px;
    transform: none;
  }

  .nav-item:hover .main-link::after,
  .nav-item:focus-within .main-link::after,
  .main-link.is-current::after {
    width: 42px;
  }

  .submenu-row {
    position: static;
    width: 100%;
    margin: 0 0 10px;
    padding: 0 0 6px 12px;
    display: grid;
    gap: 0;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: transparent;
  }

  .submenu-row::before {
    display: none;
  }

  .submenu-row li {
    font-size: 13px;
  }

  .submenu-row a {
    padding: 6px 4px;
  }

  .hero-slider {
    height: 450px;
  }

  .hero-copy {
    width: calc(100% - 40px);
    padding-top: 52px;
    padding-left: 0;
  }

  .hero-tags {
    flex-wrap: wrap;
    gap: 18px;
  }

  .hero-pager {
    right: 18px;
  }

  .difference,
  .product-grid,
  .product-card {
    grid-template-columns: 1fr;
  }

  .difference,
  .products,
  .footer-inner,
  .sub-hero-inner,
  .sub-layout,
  .catalog-layout {
    width: calc(100% - 40px);
  }

  .sub-hero {
    height: 180px;
  }

  .sub-layout {
    padding: 36px 0 58px;
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .sub-sidebar h2 {
    padding: 18px 0;
    font-size: 22px;
  }

  .sub-title h2 {
    font-size: 26px;
  }

  .catalog-layout {
    padding: 36px 0 64px;
  }

  .catalog-title h2 {
    font-size: 34px;
  }

  .catalog-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-top: 34px;
  }

  .catalog-download-card {
    min-height: 76px;
    grid-template-columns: 1fr 28px 50px;
    padding: 16px 16px 16px 22px;
  }

  .catalog-download-card strong {
    font-size: 22px;
  }

  .catalog-pdf-icon {
    width: 50px;
    height: 48px;
  }

  .recruit-banner {
    grid-template-columns: 1fr;
  }

  .recruit-banner-copy {
    padding: 28px 22px 20px;
  }

  .recruit-banner-copy p {
    font-size: 17px;
  }

  .recruit-banner-copy strong {
    font-size: 23px;
  }

  .recruit-tags {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 22px;
  }

  .recruit-tags span {
    min-width: 0;
    padding: 13px 16px;
    font-size: 15px;
  }

  .recruit-brand {
    min-height: 118px;
  }

  .recruit-brand img {
    left: 22px;
    top: 38px;
    width: 106px;
  }

  .runner-figure {
    right: 42px;
    bottom: 0;
    transform: scale(.74) rotate(-6deg);
    transform-origin: right bottom;
  }

  .plane-one {
    right: 26px;
  }

  .plane-two {
    right: 110px;
  }

  .recruit-info-grid {
    gap: 28px;
    margin-top: 34px;
  }

  .recruit-info-card p,
  .recruit-info-card li {
    font-size: 16px;
  }

  .board-summary,
  .board-footer,
  .board-search {
    align-items: stretch;
    flex-direction: column;
  }

  .board-table-wrap {
    overflow-x: auto;
  }

  .recruit-board-table {
    min-width: 720px;
    font-size: 14px;
  }

  .board-search select,
  .board-search input,
  .board-search button {
    width: 100%;
  }

  .board-pagination {
    justify-content: flex-start;
  }

  .portfolio-grid,
  .portfolio-button-grid,
  .inquiry-layout,
  .certificate-grid,
  .certificate-gallery,
  .mission-card ul {
    grid-template-columns: 1fr;
  }

  .portfolio-card {
    min-height: 0;
  }

  .portfolio-button-grid button {
    min-height: 108px;
  }

  .portfolio-modal {
    padding: 18px 12px;
  }

  .portfolio-modal-panel {
    max-height: calc(100vh - 36px);
  }

  .portfolio-modal-body {
    padding: 0 20px 34px;
  }

  .portfolio-detail header h3 {
    font-size: 24px;
  }

  .portfolio-detail-section h4 {
    font-size: 16px;
  }

  .portfolio-detail-section .portfolio-small-figure {
    max-width: 100%;
    margin-left: auto;
  }

  .portfolio-image-pair {
    grid-template-columns: 1fr;
  }

  .inquiry-form {
    grid-template-columns: 1fr;
  }

  .mission-card {
    padding: 30px 24px;
  }

  .mission-card strong {
    font-size: 23px;
  }

  .mission-visual-card,
  .mission-visual-card.reverse,
  .mission-values ul {
    grid-template-columns: 1fr;
  }

  .mission-visual-card {
    padding: 18px;
    gap: 22px;
  }

  .mission-visual-card.reverse img {
    order: 0;
  }

  .mission-visual-card strong {
    font-size: 21px;
  }

  .greeting-card {
    padding-top: 30px;
  }

  .greeting-lead {
    font-size: 20px;
  }

  .greeting-body {
    gap: 18px;
    font-size: 15px;
    line-height: 1.8;
  }

  .overview-card {
    padding-top: 30px;
  }

  .overview-lead {
    font-size: 19px;
  }

  .overview-highlight {
    grid-template-columns: 1fr;
  }

  .overview-body {
    gap: 18px;
    font-size: 15px;
    line-height: 1.8;
  }

  .location-card {
    padding-top: 30px;
    grid-template-columns: 1fr;
  }

  .map-visual {
    min-height: 280px;
  }

  .location-info {
    padding: 26px 22px;
  }

  .location-info dl div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .product-title h2 {
    font-size: 30px;
  }

  .product-type-tabs {
    gap: 14px;
    padding: 28px 0 24px;
  }

  .product-type-tabs a {
    font-size: 15px;
  }

  .road-spec-top {
    grid-template-columns: 1fr;
    border-bottom: 0;
  }

  .road-spec-sheet h4,
  .road-compare-block h4 {
    margin-top: 0;
  }

  .road-warning {
    grid-template-columns: 1fr;
  }

  .general-st-table,
  .general-st12-table {
    min-width: 980px;
  }

  .three-strand-table {
    min-width: 760px;
  }

  .special-mooring-content {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .special-mooring-visual {
    padding-top: 0;
  }

  .tail-intro,
  .tail-methods {
    grid-template-columns: 1fr;
  }

  .tail-intro img,
  .tail-methods figure:nth-child(2) img {
    margin-left: 0;
  }

  .tail-notice {
    grid-template-columns: 1fr;
  }

  .playing-spec-body {
    grid-template-columns: 1fr;
  }

  .functional-wire-layout,
  .functional-wire-layout-small,
  .functional-wire-layout-stack {
    grid-template-columns: 1fr;
  }

  .cold-limit-layout,
  .cold-bottom-grid,
  .sts-rope-grid {
    grid-template-columns: 1fr;
  }

  .teflon-rope-title {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .steel-rope-pair-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .steel-rope-pair-head span {
    margin-left: 0;
    text-align: left;
  }

  .seesaw-rope-head {
    grid-template-columns: 1fr;
  }

  .seesaw-rope-head span {
    text-align: left;
  }

  .functional-wire-copy {
    font-size: 14px;
  }

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

  .spec-category button {
    border-left: 0;
    border-top: 1px dashed #d6caff;
  }

  .spec-summary,
  .case-grid,
  .road-spec-grid,
  .sling-feature,
  .compare-grid,
  .sling-intro,
  .sling-stability {
    grid-template-columns: 1fr;
  }

  .sling-intro p {
    font-size: 15px;
    line-height: 1.45;
  }

  .footer-inner {
    text-align: left;
  }
}
