@charset "UTF-8";
.m-gnb {
  display: none;
}
.m-gnb.open {
  display: block;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  height: 126px;
  display: flex !important;
  justify-content: space-between;
  align-items: center;
  padding: 0 60px;
  font-family: "SUITE Variable", sans-serif;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: #fff;
  transition: top 0.3s ease;
}
.header__bg {
  position: absolute;
  left: 0;
  top: 100%;
  height: 0;
  transition: all 0.3s ease;
  border-top: 1px solid #ebeaef;
}
.header h1 {
  width: 193px;
  height: 40px;
  background: url(https://ocsandan.com/smg/assets/img/logo-wh.png) no-repeat center center;
}
.header h1 > a {
  display: block;
  width: 100%;
  height: 100%;
}
.header .gnb {
  height: 100%;
}
.header .gnb__link {
  display: flex;
  height: 100%;
}
.header .gnb__link > li {
  position: relative;
  width: 160px;
  height: 100%;
  text-align: center;
}
.header .gnb__link > li.over { /* hover 했을 시 */
  color: #00b7ce;
  font-weight: bold;
}
.header .gnb__link > li.over::after { /* 하단 바 */
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #00b7ce;
}
.header .gnb__link > li.over .gnb__sublist {
  font-weight: 500;
}
.header .gnb__link > li.over .gnb__sublist li.over {
  color: #00b7ce;
}
.header .gnb__link > li > a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  font-size: 18px;
}
.header .gnb__link > li .gnb__sublist {
  visibility: hidden;
  opacity: 0;
  width: 100%;
  position: absolute;
  top: calc(100% + 20px);
  color: #2e2f31;
  transition: all 0.2s ease;
}
.header .gnb__link > li .gnb__sublist > li {
  padding: 10px 0px;
  transition: all 0.3s ease;
}
.header .gnb__link > li .gnb__sublist > li > a > strong {
  display: block;
  font-size: 12px;
}
.header .tel {
  font-size: 24px;
  font-weight: bold;
}
.header.over { /* hover효과 */
  display: block;
  background-color: #fff;
  color: #2e2f31;
}
.header.over h1 {
  background: url(https://ocsandan.com/smg/assets/img/logo-color.png);
}
.header.over .header__bg {
  background-color: #fff;
  width: 100%;
  height: calc(100% + 200px);
}
.header.over .gnb .gnb__link li .gnb__sublist {
  visibility: visible;
  opacity: 1;
}
.header.over .tel {
  color: #295d60;
}
.header.open { /* subpage 기본상태 */
  background-color: #fff !important;
  color: #2e2f31;
  border-bottom: 1px solid #ebeaef;
}
.header.open h1 {
  background: url(https://ocsandan.com/smg/assets/img/logo-color.png);
}
.header.open h1 > a {
  display: block;
  width: 100%;
  height: 100%;
}
.header.open .tel {
  color: #295d60;
}
.header.scrolled {
  color: #2e2f31 !important;
  background-color: #fff;
}
.header.hidden {
  top: -150px;
}

.top {
  width: 1200px;
  height: 370px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: end;
  padding-bottom: 40px;
}
.top .title {
  font-family: "SUITE Variable", sans-serif;
}
.top .title__sub {
  color: #00b7ce;
  font-weight: 700;
  font-size: 20px;
}
.top .title__main {
  font-size: 65px;
  font-weight: 600;
  color: #1d1d1d;
}
.top .breadcrumb {
  color: #939d9e;
  font-weight: 600;
  display: flex;
  align-items: center;
}
.top .breadcrumb__link {
  position: relative;
  display: block;
  margin-left: 20px;
}
.top .breadcrumb__link.home {
  width: 16px;
  height: 16px;
}
.top .breadcrumb__link.home > img {
  width: 100%;
  height: 100%;
}
.top .breadcrumb__link.active {
  color: #00b7ce;
}
.top .breadcrumb__link:not(:first-child)::before {
  position: absolute;
  top: 50%;
  left: -10px;
  transform: translateY(-50%);
  content: "";
  width: 2px;
  height: 8px;
  background-color: rgba(147, 157, 158, 0.4235294118);
}

.visual {
  height: 2px !important;
  background: none !important;
  background-color: #ebebeb !important;
}

.container h3 {
  position: relative;
  margin: 100px 20px 40px;
  font-weight: 600;
  display: inline-block;
}
.container h3::before {
  content: "";
  position: absolute;
  left: -20px;
  width: 6px;
  height: 100%;
  background-color: #00b7ce;
}

@media (max-width: 1300px) {
  .m-gnb__top.mover {
    width: 100%;
    background-color: #fff;
    border-bottom: 1px solid #ebeaef;
  }
  .m-gnb__top.mover .m-gnb__top-logo {
    background: url(/assets/img/logo-color.png) no-repeat center center;
  }
  .m-gnb__top.mover .m-gnb__top-trigger > span {
    background-color: #295d60;
  }
  .top {
    width: 100%;
    padding: 0 40px 80px;
  }
}
@media (min-width: 768px) and (max-width: 1300px) {
  body.no-scroll {
    overflow: hidden;
    height: 100vh;
  }
  .m-gnb {
    display: block;
    position: fixed;
    z-index: 100000;
    width: 100%;
    overflow-y: auto;
    transition: 0.5s;
    /* open */
  }
  .m-gnb__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px;
    transition: 0.3s;
  }
  .m-gnb__top-logo {
    width: 193px;
    height: 40px;
    background: url(/assets/img/logo-wh.png) no-repeat center center;
  }
  .m-gnb__top-logo > a {
    display: block;
    width: 100%;
    height: 100%;
  }
  .m-gnb__top-trigger {
    width: 40px;
    height: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
  }
  .m-gnb__top-trigger > span {
    display: inline-block;
    width: 100%;
    height: 2px;
    background-color: #fff;
  }
  .m-gnb__link {
    display: none;
  }
  .m-gnb .tel {
    display: none;
  }
  .m-gnb.open {
    background-color: #fff;
    height: 100vh;
  }
  .m-gnb.open .m-gnb__top-logo {
    background: url(/assets/img/logo-color.png) no-repeat center center;
  }
  .m-gnb.open .m-gnb__top-trigger {
    position: relative;
  }
  .m-gnb.open .m-gnb__top-trigger > span {
    position: absolute;
    top: 50%;
    background-color: #295d60;
  }
  .m-gnb.open .m-gnb__top-trigger > span:nth-child(1) {
    transform: rotate(45deg) translateY(-50%);
  }
  .m-gnb.open .m-gnb__top-trigger > span:nth-child(2) {
    display: none;
  }
  .m-gnb.open .m-gnb__top-trigger > span:nth-child(3) {
    transform: rotate(-45deg) translateY(-50%);
  }
  .m-gnb.open .m-gnb__link {
    display: flex;
    flex-wrap: wrap;
  }
  .m-gnb.open .m-gnb__link > li {
    width: 50%;
    font-size: 16px;
    padding: 0 30px;
  }
  .m-gnb.open .m-gnb__link > li > a {
    display: block;
    font-weight: 600;
    font-size: 20px;
    padding: 20px 0 16px 10px;
    border-bottom: 1px solid #ddd;
  }
  .m-gnb.open .m-gnb__sublist {
    margin-top: 10px;
  }
  .m-gnb.open .m-gnb__sublist > li {
    padding: 10px 10px;
  }
  .m-gnb.open .m-gnb__sublist > li > a > strong {
    font-weight: 500;
  }
  .m-gnb.open .tel {
    display: block;
    margin: 40px;
    padding-top: 20px;
    font-size: 24px;
    font-weight: 600;
    border-top: 1px solid #ddd;
    color: #295d60;
  }
  .header {
    display: none !important;
  }
}
@media (max-width: 768px) {
  body.no-scroll {
    overflow: hidden;
    height: 100vh;
  }
  .m-gnb {
    display: block;
    position: fixed;
    z-index: 100000;
    width: 100%;
    overflow-y: auto;
    transition: 0.5s;
    /* open */
  }
  .m-gnb__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
  }
  .m-gnb__top-logo {
    width: 143px;
    height: 40px;
    background: url(/assets/img/logo-wh.png) no-repeat center center;
    background-size: contain;
  }
  .m-gnb__top-logo > a {
    display: block;
    width: 100%;
    height: 100%;
  }
  .m-gnb__top-trigger {
    width: 30px;
    height: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
  }
  .m-gnb__top-trigger > span {
    display: inline-block;
    width: 100%;
    height: 2px;
    background-color: #fff;
  }
  .m-gnb__top.mover .m-gnb__top-logo {
    width: 143px !important;
    height: 40px !important;
    background-size: contain;
  }
  .m-gnb__link {
    display: none;
  }
  .m-gnb .tel {
    display: none;
  }
  .m-gnb.open {
    display: block;
    background-color: #fff;
    height: 100vh;
  }
  .m-gnb.open .m-gnb__top-logo {
    background: url(/assets/img/logo-color.png) no-repeat center center;
    background-size: contain;
  }
  .m-gnb.open .m-gnb__top-trigger {
    position: relative;
  }
  .m-gnb.open .m-gnb__top-trigger > span {
    position: absolute;
    top: 50%;
    background-color: #295d60;
  }
  .m-gnb.open .m-gnb__top-trigger > span:nth-child(1) {
    transform: rotate(45deg) translateY(-50%);
  }
  .m-gnb.open .m-gnb__top-trigger > span:nth-child(2) {
    display: none;
  }
  .m-gnb.open .m-gnb__top-trigger > span:nth-child(3) {
    transform: rotate(-45deg) translateY(-50%);
  }
  .m-gnb.open .m-gnb__link {
    display: block;
  }
  .m-gnb.open .m-gnb__link > li {
    font-size: 14px;
    padding: 0 14px;
  }
  .m-gnb.open .m-gnb__link > li > a {
    display: block;
    font-weight: 600;
    font-size: 16px;
    padding: 20px 0 16px 10px;
    border-bottom: 1px solid #ddd;
  }
  .m-gnb.open .m-gnb__sublist {
    margin-top: 10px;
  }
  .m-gnb.open .m-gnb__sublist > li {
    padding: 10px 10px;
  }
  .m-gnb.open .m-gnb__sublist > li > a > strong {
    font-weight: 500;
  }
  .m-gnb.open .tel {
    display: block;
    margin: 20px;
    padding-top: 20px;
    font-size: 24px;
    font-weight: 600;
    border-top: 1px solid #ddd;
    color: #295d60;
  }
  .header {
    display: none !important;
  }
  .top {
    flex-direction: column;
    justify-content: end;
    align-items: start;
    gap: 40px;
    padding: 0 40px 40px;
    height: 420px;
  }
  .top .title__main {
    font-size: 50px;
  }
  .top .breadcrumb__link {
    margin-left: 0;
    margin-right: 20px;
  }
}
#footer {
  color: #fff;
}

.footer {
  width: 100%;
  height: 540px;
  background-color: #000;
  padding: 80px;
  color: #e4e4f0;
}
.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}
.footer__logo {
  width: 193px;
  height: 40px;
}
.footer hr {
  border: none;
  height: 1px;
  background-color: #545458;
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: start;
  padding-top: 40px;
}
.footer__links {
  display: flex;
  align-items: center;
}
.footer__link {
  position: relative;
  margin: 20px;
  font-size: 14px;
}
.footer__link:not(:first-child):before {
  content: "";
  position: absolute;
  left: -20px;
  width: 1px;
  height: 100%;
  background-color: #545458;
}
.footer__sitemap {
  display: flex;
}
.footer__sitemap-list {
  margin-right: 40px;
}
.footer__sitemap-list > li {
  margin-bottom: 10px;
}
.footer__select {
  width: 200px;
  height: 40px;
  display: flex;
  align-items: center;
  padding-left: 10px;
  padding-right: 10px;
  font-family: "Pretendard Variable", sans-serif;
  border-radius: 6px;
  background-color: rgba(255, 255, 255, 0.178);
  color: #fff;
}
.footer__select > option {
  background-color: #2d2d2d;
  padding: 10px;
}

@media (min-width: 768px) and (max-width: 1300px) {
  .footer {
    height: 440px;
    padding: 60px;
  }
  .footer__sitemap {
    font-size: 14px;
  }
  .footer__bottom {
    padding-top: 30px;
    flex-direction: column;
  }
  .footer__select {
    margin-top: 20px;
  }
}
@media (max-width: 768px) {
  .footer {
    height: 250px;
    padding: 20px;
  }
  .footer__inner > hr {
    display: none;
  }
  .footer__links {
    align-items: end;
    flex-direction: column;
  }
  .footer__link {
    margin: 0;
    margin-top: 10px;
  }
  .footer__link:not(:first-child):before {
    display: none;
  }
  .footer__top {
    align-items: start;
  }
  .footer__sitemap {
    display: none;
  }
  .footer__bottom {
    padding-top: 0;
    justify-content: end;
  }
  .footer__logo {
    width: 143px;
    height: 40px;
  }
  .footer__logo > img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}
.visual {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
  background: url("/assets/img/sales-back.jpg") no-repeat;
  background-size: cover;
  background-position: 50% 55%;
}
.visual > p {
  position: absolute;
}
.visual-text {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 36px;
  z-index: 1;
  text-shadow: rgba(0, 0, 0, 0.4745098039);
}

.industrial__tab {
  margin-top: 80px;
  margin-bottom: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.industrial__tab > li {
  position: relative;
  width: 260px;
  text-align: center;
  padding: 14px 32px;
  margin-right: 30px;
  font-size: 22px;
  font-weight: 500;
}
.industrial__tab > li:not(:first-child)::before {
  content: "";
  position: absolute;
  left: -15px;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 20px;
  background-color: #ddd;
}
.industrial__tab-link {
  display: block;
  width: 100%;
  height: 100%;
}
.industrial__tab-link.active::after, .industrial__tab-link:hover::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background-color: #00b7ce;
}
.industrial__title {
  width: 100%;
  height: 80px;
  display: flex;
  justify-content: end;
  align-items: center;
  flex-direction: column;
  padding: 30px;
  border-bottom: 1px solid #cbcfd1;
}
.industrial__title-maintxt {
  font-size: 44px;
  font-weight: 500;
}
.industrial__content {
  padding-top: 80px;
  padding-bottom: 200px;
}
.industrial__content .table-caption {
  display: none;
}
.industrial__content-img > img {
  width: 100%;
}
.industrial__content-img.mobile {
  display: none;
}
.industrial__content table {
  border-top: 2px solid #1d1d1d;
  border-bottom: 2px solid #1d1d1d;
  margin-top: 20px;
}
.industrial__content table tr th, .industrial__content table tr td {
  padding: 10px;
  font-size: 16px;
  border: 1px solid #cbcfd1;
  color: #2e2e31 !important;
}
.industrial__content table tr th.left, .industrial__content table tr td.left {
  text-align: left;
}
.industrial__content table tr th {
  font-weight: 600;
}
.industrial__content table tr td {
  text-align: center;
}
@media (max-width: 1300px) {
  .industrial {
    padding: 0 20px;
  }
  .industrial .table-wrap {
    width: 100%;
    overflow-x: scroll;
  }
  .industrial .table-wrap .table-caption {
    display: block;
    color: #707376;
  }
}
@media (max-width: 768px) {
  .industrial__title-maintxt {
    font-size: 32px;
  }
  .industrial__tab {
    flex-direction: column;
  }
  .industrial__tab > li {
    margin-right: 0;
  }
  .industrial__tab > li:not(:first-child)::before {
    display: none;
  }
  .industrial__tab-link.active::after {
    bottom: auto;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 30px;
  }
  .industrial__tab-link:not(.active)::after {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 30px;
    background-color: #ddd;
  }
  .industrial__content .table-caption {
    display: block;
    margin-top: 20px;
    font-size: 14px;
  }
  .industrial__content-img.pc {
    display: none;
  }
  .industrial__content-img.mobile {
    display: block !important;
  }
  .industrial__content table {
    width: 900px;
  }
  .industrial__content table tr th, .industrial__content table tr td {
    padding: 20px 10px;
    font-size: 16px;
  }
}