@charset "UTF-8";
.font24 {
  --fontsize: 2.4rem;
  font-size: var(--fontsize);
}

.font30 {
  --fontsize: 3.0rem;
  font-size: var(--fontsize);
}

.font34 {
  --fontsize: 3.4rem;
  font-size: var(--fontsize);
}

.font40 {
  --fontsize: 4.0rem;
  font-size: var(--fontsize);
}

.font45 {
  --fontsize: 4.5rem;
  font-size: var(--fontsize);
}

.font50 {
  --fontsize: 5.0rem;
  font-size: var(--fontsize);
}

.font55 {
  --fontsize: 5.5rem;
  font-size: var(--fontsize);
}

.font60 {
  --fontsize: 6.0rem;
  font-size: var(--fontsize);
}

.font70 {
  --fontsize: 7.0rem;
  font-size: var(--fontsize);
}

.font80 {
  --fontsize: 8.0rem;
  font-size: var(--fontsize);
}

.font90 {
  --fontsize: 9.0rem;
  font-size: var(--fontsize);
}

.font100 {
  --fontsize: 10.0rem;
  font-size: var(--fontsize);
}

.font110 {
  --fontsize: 11.0rem;
  font-size: var(--fontsize);
}

#wrap {
  background-color: rgba(0, 0, 0, 0);
  -webkit-transition: all 1s;
  transition: all 1s;
}

#wrap.white {
  background-color: #f3f3f3;
}

.wrapColorOff {
  background: #f3f3f3;
}

.changeColor {
  color: #ffffff !important;
  -webkit-transition: all 1s;
  transition: all 1s;
}

.changeColor.black {
  color: #111111 !important;
}

.stroke.changeColor {
  color: transparent !important;
  -webkit-text-stroke: 1px #ffffff !important;
}

.stroke.changeColor.black {
  color: transparent !important;
  -webkit-text-stroke: 1px #111111 !important;
}

#sv {
  width: 100%;
  height: 100vh;
}

#sv .bgBox,
#sv .bg {
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

#sv .bgBox {
  position: fixed;
  z-index: -2;
}

#sv .bg {
  position: absolute;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

#sv .flexBox {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  width: 100%;
  height: 100%;
}

#sv .flexBox * {
  color: #ffffff;
}

#sv .centerTitle p {
  opacity: 0;
  -webkit-transform: translateY(60px);
          transform: translateY(60px);
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  font-family: 'pretendard',
 sans-serif;
}

#sv .h2Box {
  margin: 0 0 40px;
}

#sv .h2Box h2 {
  opacity: 0;
  -webkit-transition: all 1s cubic-bezier(1, -0.18, 0.33, 1.21);
  transition: all 1s cubic-bezier(1, -0.18, 0.33, 1.21);
}

#sv .h2Box h2:first-child {
  -webkit-transform: translateX(-100px);
          transform: translateX(-100px);
}

#sv .h2Box h2:last-child {
  -webkit-transform: translateX(100px);
          transform: translateX(100px);
}

#sv .stroke {
  color: transparent;
  -webkit-text-stroke: 1px #ffffff;
}

#sv .bottomTitle {
  position: absolute;
  right: 0;
  bottom: 20px;
}

#sv.on p {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}

#sv.on .h2Box h2 {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.lnbBox {
  height: 80px;
  position: relative;
  z-index: 4;
  -webkit-transition: all 0.6s linear;
  transition: all 0.6s linear;
}

.lnbBox::before {
  content: "";
  width: 100vw;
  height: 100%;
  background: #333333;
  z-index: -1;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.lnbBox ul {
  max-width: 1600px;
  margin: 0 auto;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.lnbBox ul li {
  height: 100%;
  padding: 0 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.lnbBox ul li a,
.lnbBox ul li button {
  height: 100%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #ffffff;
  font-size: 2.0rem;
/*  text-transform: uppercase;*/
  position: relative;
  -webkit-transition: all 0.4s cubic-bezier(1, -0.18, 0.33, 1.21);
  transition: all 0.4s cubic-bezier(1, -0.18, 0.33, 1.21);
}

.lnbBox ul li a::after,
.lnbBox ul li button::after {
  content: "";
  display: block;
  width: 0;
  height: 3px;
  background: #5c85c3;
  position: absolute;
  left: 50%;
  bottom: 0px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: all 0.4s cubic-bezier(1, -0.18, 0.33, 1.21);
  transition: all 0.4s cubic-bezier(1, -0.18, 0.33, 1.21);
}

.lnbBox ul li:hover a,
.lnbBox ul li.on a,
.lnbBox ul li:hover button,
.lnbBox ul li.on button {
  color: #5c85c3;
}

.lnbBox ul li:hover a::after,
.lnbBox ul li.on a::after,
.lnbBox ul li:hover button::after,
.lnbBox ul li.on button::after {
  width: 100%;
}

.lnbBox .menu02 li {
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.lnbBox .menu02 li a {
  white-space: nowrap;
}

.lnbBox .menu02 li:first-child {
  background: #5c85c3;
}

.lnbBox .menu02 li:first-child a {
  color: #ffffff;
}

.lnbBox.fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

.paddingBox {
  padding: 140px 0;
}

.paddingBox.paddingBottomX {
  padding: 140px 0 0;
}

.paddingTop60 {
  padding-top: 60px;
}

.marginTop40 {
  margin-top: 40px;
}

.marginTop60 {
  margin-top: 60px;
}

.marginTop80 {
  margin-top: 80px;
}

.marginTop100 {
  margin-top: 100px;
}

.subFlex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.subFlex > * {
  width: 100%;
}

.subFlex > *:first-child {
  max-width: 380px;
}

.subColumn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 180px 0;
}

.subColumn.gap140 {
  gap: 140px 0;
}

.subColumn.gap70 {
  gap: 70px 0;
}

.subColumn.gap50 {
  gap: 50px 0;
}

.hoverBox .item {
  border: 1px solid transparent;
  position: relative;
  cursor: pointer;
  -webkit-transition: all 0.4s cubic-bezier(1, -0.18, 0.33, 1.21);
  transition: all 0.4s cubic-bezier(1, -0.18, 0.33, 1.21);
}

.hoverBox .circle {
  width: 52px;
  height: 52px;
  background: #5c85c3;
  border-radius: 50%;
  position: absolute;
  right: -20px;
  bottom: 0;
  opacity: 0;
  -webkit-transition: all 0.4s cubic-bezier(1, -0.18, 0.33, 1.21);
  transition: all 0.4s cubic-bezier(1, -0.18, 0.33, 1.21);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.hoverBox .circle i {
  color: #ffffff;
}

.hoverBox .item:hover, .hoverBox .item.on {
  border: 1px solid #5c85c3;
  border-bottom-right-radius: 100px;
}

.hoverBox .item:hover .circle, .hoverBox .item.on .circle {
  right: 0;
  opacity: 1;
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

.bgColor {
  position: relative;
}

.bgColor::before {
  content: "";
  display: block;
  width: 100vw;
  height: 100%;
  z-index: -2;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.bgColor.bgGray::before {
  background: #f3f3f3;
}

.tabTitle,
.tabTitle li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.tabTitle {
  height: 65px;
}

.tabTitle * {
  font-family: 'pretendard',
 sans-serif;
}

.tabTitle li {
  width: 100%;
  max-width: 300px;
  height: 100%;
  border-top: 1px solid #dddddd;
  border-right: 1px solid #dddddd;
  border-bottom: 1px solid #dddddd;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  cursor: pointer;
}

.tabTitle li:first-child {
  border-left: 1px solid #dddddd;
}

.tabTitle a,
.tabTitle button {
  color: #111111;
  font-size: 2.2rem;
  font-weight: 600;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.tabTitle li:hover, .tabTitle li.on {
  background: #5c85c3;
}

.tabTitle li:hover a,
.tabTitle li:hover button, .tabTitle li.on a,
.tabTitle li.on button {
  color: #ffffff;
}

.dot {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 6px;
}

.dot::before {
  content: "•";
}

.dot.big {
  gap: 0 16px;
}

.dot.big::before {
  content: "•";
  font-weight: 700;
}

.dot.none::before {
  content: "";
}

.moreButton {
  width: 200px;
  height: 55px;
  gap: 0 18px;
  margin: 55px 0 0;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.moreButton::before {
  content: "";
  border-radius: 27px;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.4s cubic-bezier(1, -0.18, 0.33, 1.21);
  transition: all 0.4s cubic-bezier(1, -0.18, 0.33, 1.21);
}

.moreButton p {
  font-family: 'Fira Sans Condensed', sans-serif !important;
  font-size: 1.4rem;
  font-weight: 500;
}

.moreButton em {
  -webkit-transition: all 0.4s cubic-bezier(1, -0.18, 0.33, 1.21);
  transition: all 0.4s cubic-bezier(1, -0.18, 0.33, 1.21);
}

.moreButton:hover::before {
  width: 55px;
  border-radius: 28px;
}

.moreButton:hover em {
  -webkit-transform: translateX(24px);
          transform: translateX(24px);
}

.viewMore {
  gap: 15px 0;
  margin: 50px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
	display: none;
}

.viewMore p {
  font-size: 12px;
  font-family: 'pretendard',
 sans-serif;
}

.searchP {
  color: #111111;
  font-size: 1.8rem;
  font-weight: 300;
  margin-bottom: 15px;
  font-family: 'pretendard',
 sans-serif;
}

.ceo .flexBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

.ceo .flexBox .textBox {
  margin: 70px 0 0;
}

.ceo .flexBox .textBox * {
  font-family: 'pretendard',
 sans-serif;
}

.ceo .flexBox h3 {
  line-height: 1.2727;
}

.ceo .flexBox .pBox {
  gap: 35px 0;
  margin: 60px 0 110px;
}

.ceo .flexBox p,
.ceo .flexBox dl * {
  letter-spacing: -0.025em;
}

.ceo .flexBox p {
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1.7777;
}

.ceo .flexBox dl {
  gap: 0 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.ceo .flexBox dl dt {
  font-size: 2.0rem;
  font-weight: 300;
}

.ceo .flexBox dl dd {
  font-size: 2.4rem;
  font-weight: 700;
}

.ceo .flexBox .imgBox {
  position: absolute;
  top: 0;
  right: -100px;
}

.ceo .future h4,
.ceo .future h5 {
  color: #111111;
}

.ceo .future h4 {
  line-height: 1.1666;
  font-family: 'pretendard',
 sans-serif;
}

.ceo .future .itemBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.ceo .future .item,
.ceo .future .inner {
  border-radius: 50%;
}

.ceo .future .item {
  width: 34.85%;
  background: rgba(92, 133, 195, 0.1);
  padding: 17.425% 0;
  position: relative;
}

.ceo .future .inner {
  width: calc(100% - 40px);
  height: calc(100% - 40px);
  border: 1px dashed rgba(92, 133, 195, 0.4);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.ceo .future .center {
  width: 40%;
  background: rgba(255, 255, 255, 0.4);
  border: 1px dashed rgba(92, 133, 195, 0.4);
  padding: 20% 0;
  margin: 0 -5.70%;
  z-index: 2;
}

.ceo .future .center::before, .ceo .future .center::after {
  content: "";
  display: block;
  width: 31px;
  height: 31px;
  background: url("/img/sub/boldPlus.png") no-repeat center/cover;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.ceo .future .center::before {
  left: -16px;
}

.ceo .future .center::after {
  right: -16px;
}

.ceo .future .center .inner {
  width: calc(100% - 70px);
  height: calc(100% - 70px);
  border: 24px solid rgba(92, 133, 195, 0.1);
}

.ceo .future .center .inner::before {
  content: "";
  display: block;
  background: #ffffff;
  -webkit-box-shadow: 0 0 30px rgba(92, 133, 195, 0.1);
          box-shadow: 0 0 30px rgba(92, 133, 195, 0.1);
  border-radius: 50%;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.ceo .future .logo {
  width: 184px;
  height: 48px;
  position: relative;
}

.ceo .future .logo .logoCls-1 {
  fill: #0e1555;
}

.ceo .future .logo .logoCls-2 {
  fill: #5d85c3;
}

.group * {
  font-family: 'pretendard',
 sans-serif;
}

.group .flexBox .imgBox {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(auto, 350px))[2];
      grid-template-columns: repeat(2, minmax(auto, 350px));
}

.group .flexBox .imgBox .imgRight {
  margin: 80px 0 0;
}

.group .flexBox .textBox {
  padding: 140px 0 0 100px;
}

.group .flexBox .textBox h3 {
  line-height: 1.3;
  margin: 0 0 50px;
}

.group .flexBox .textBox p {
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1.7777;
}

.group .ware {
  width: 100%;
  height: 100vh;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: #111111;
  position: relative;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.group .ware p {
  width: 100%;
  position: absolute;
  top: calc(50% + 60px);
  left: 50%;
  opacity: 0;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.group .ware .smallText.on {
  opacity: 1;
  top: 50%;
}

.group .ware .smallText.off {
  opacity: 0;
  top: 30%;
}

.group .ware .bigText {
  line-height: 1.2222;
}

.group .ware .bigText.on {
  opacity: 1;
  top: 50%;
}

.group .introduction,
.group .introduction ul {
	display: flex;
	flex-direction: column;
}

.group .introduction {
	gap: 120px 0;
}

.group .introduction h5 {
	color: #111;
	font-family: 'Russo One';
	margin: 25px 0 0;
}

.group .introduction ul {
	gap: 20px 0;
}

.group .introduction ul li {
  display: flex;
  gap: 0 100px;
}

.group .introduction .img {
  flex-shrink: 0;
}

.group .introduction .text {
  display: flex;
  flex-direction: column;
  padding: 30px 0 20px;
}

.group .introduction .logo {
  margin: 0 0 20px;
  mix-blend-mode: multiply;
}

.group .introduction p {
  color: #111111;
  font-weight: 300;
  letter-spacing: -0.010em;
  line-height: 1.875;
}

.group .introduction a {
  display: flex;
  align-items: center;
  gap: 0 6px;
  color: #5c85c5;
  font-weight: 700;
  margin: auto 0 0 5px;
}

.group .introduction .icon {
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #5c85c5;
}

.group .itemBox {
  gap: 0 25px;
}

.group .itemBox .item,
.group .itemBox .icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.group .itemBox .item {
  height: 550px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 95px 0;
  background: #ffffff;
}

.group .itemBox .icon {
  height: 115px;
}

.group .itemBox dl {
  text-align: center;
}

.group .itemBox dl * {
  color: #111111;
  letter-spacing: -0.025em;
}

.group .itemBox dl dt {
  margin: 0 0 35px;
}

.group .itemBox dl dd {
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1.6666;
}
.history * {
  color: #111111;
}

.history h3 {
  line-height: 1.2727;
}

.history .historyTab {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 40px;
  margin: 80px 0 40px;
}

.history .historyTab li {
  color: #767676;
  font-size: 2.0rem;
}

.history .historyTab li button {
  color: #111111;
  font-size: 2.4rem;
  font-weight: 700;
  position: relative;
  transition: all 0.4s;
}

.history .historyTab li button::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background: #5c85c3;
  position: absolute;
  left: 50%;
  bottom: -2px;
  transform: translateX(-50%);
  transition: all 0.4s;
}

.history .historyTab li:hover button,
.history .historyTab li.on button {
  color: #5c85c3;
}

.history .historyTab li:hover button::after,
.history .historyTab li.on button::after {
  width: 100%;
}

.history .flexBox {
  gap: 160px 0;
}

.history .imgBox {
  padding: 12.5% 0;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.history .imgBox.imgBox1 {
  background-image: url("/img/sub/about/historyImg1.jpg");
}

.history .imgBox.imgBox2 {
  background-image: url("/img/sub/about/historyImg2.jpg");
}

.history .imgBox.imgBox3 {
  background-image: url("/img/sub/about/historyImg3.jpg");
}

.history .imgBox.imgBox4 {
  background-image: url("/img/sub/about/historyImg4.jpg");
}

.history .imgBox dl {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.history .imgBox dl dt,
.history .imgBox dl dd {
  color: #ffffff;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.history .imgBox dl dt {
  margin: 0 0 10px;
}

.history .textBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 150px 0 0;
}

.history .number {
  width: 28.55%;
}

.history .number * {
  color: #111111;
}

.history .number .top {
  width: 100%;
  text-align: right;
}

.history .number .top span {
  font-size: 10rem;/*22.12.26 15에서 10으로 줄임*/
}

.history .number .top em {
  display: inline-block;
  font-size: 1.6rem;
}

/*.history ul {*/
/*  width: 100%;*/
/*  display: -webkit-box;*/
/*  display: -ms-flexbox;*/
/*  display: flex;*/
/*  -webkit-box-pack: end;*/
/*      -ms-flex-pack: end;*/
/*          justify-content: flex-end;*/
/*  gap: 0 40px;*/
/*  margin: 130px 0 0;*/
/*}*/
/**/
/*.history ul * {*/
/*  font-style: italic;*/
/*}*/
/**/
/*.history ul li {*/
/*  position: relative;*/
/*}*/
/**/
/*.history ul li::after {*/
/*  content: "";*/
/*  display: block;*/
/*  width: 0;*/
/*  height: 2px;*/
/*  background: #adc2e1;*/
/*  position: absolute;*/
/*  right: 0;*/
/*  bottom: 0;*/
/*  -webkit-transition: all 0.4s cubic-bezier(1, -0.18, 0.33, 1.21);*/
/*  transition: all 0.4s cubic-bezier(1, -0.18, 0.33, 1.21);*/
/*}*/
/**/
/*.history ul li button {*/
/*  font-size: 2.0rem;*/
/*  -webkit-transition: all 0.4s cubic-bezier(1, -0.18, 0.33, 1.21);*/
/*  transition: all 0.4s cubic-bezier(1, -0.18, 0.33, 1.21);*/
/*}*/
/**/
/*.history ul li:hover::after, .history ul li.on::after {*/
/*  width: 100%;*/
/*}*/
/**/
/*.history ul li:hover button, .history ul li.on button {*/
/*  color: #5c85c3;*/
/*}*/

.history .listBox {
  width: 55%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 65px 0;
}

.history .listBox dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.history .listBox dl dt {
  width: 42.85%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.history .listBox dl dt * {
  line-height: 1.38885;
}

.history .listBox h6,
.history .listBox p {
  font-family: 'pretendard',
 sans-serif;
}

.history .listBox em {
  display: block;
  width: 70px;
  flex-shrink: 0;
  font-size: 2.0rem;
}

.history .listBox h6,
.history .listBox p {
  color: #111111;
}

.history .listBox h6 {
  font-size: 2.4rem;
  font-weight: 700;
}

.history .listBox p {
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1.7777;
}

.location * {
  color: #111111;
}

.location .itemBox,
.location ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.location .itemBox {
  gap: 100px 0;
}

.location .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.location .mapBox {
  width: 50%;
  height: 500px;
}

.location .root_daum_roughmap,
.location .root_daum_roughmap .wrap_map {
  width: 100%;
  height: 100%;
}

.root_daum_roughmap_landing .border2 {
  display: block !important;
}

.location .root_daum_roughmap .wrap_btn_zoom {
  display: none;
}

.location .textBox {
  padding: 0 0 0 90px;
}

.location h4 {
  font-weight: 500;
  margin: 20px 0 80px;
}

.location .icon.changeColor {
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}

.location .icon.changeColor.black {
  -webkit-filter: inherit;
          filter: inherit;
}

.location ul {
  gap: 25px 0;
}

.location ul li {
  gap: 0 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.location .icon {
  width: 34px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.location dl {
  gap: 0 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.location dl.column {
  gap: 12px 0;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.location dl dt {
  font-size: 2.0rem;
}

.location dl dd,
.location dl dd * {
  font-family: 'pretendard',
 sans-serif;
}

.location dl dd p,
.location dl dd span {
  font-weight: 300;
}

.location dl dd p {
  font-size: 1.8rem;
}

.location dl dd span {
  display: block;
  margin: 5px 0 0;
}

.communication h4 {
  color: #111111;
}

.press * {
  font-family: 'pretendard',
 sans-serif;
}

.press .itemBox {
  gap: 60px 25px;
}

.press .itemBox > div {
	width: 100%;
	overflow: hidden;
}

.press .itemBox .item {
  width: 100%;
  background: #f5f5f5;
  padding: 45px 55px 70px;
}

.press .itemBox .item:hover {
  background: #ffffff;
}

.press .itemBox a {
  display: block;
  width: 100%;
  overflow: hidden;
}

.press .itemBox .date {
  font-size: 1.4rem;
}

.press .itemBox dl {
  margin: 30px 0 0;
}

.press .itemBox dl dt,
.press .itemBox dl dd {
  -webkit-line-clamp: 3;
  overflow: hidden;
  word-wrap: break-word;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

.press .itemBox dl dt {
  height: 3.9999em;
  color: #111111;
  line-height: 1.3333;
  margin: 0 0 30px;
}

.press .itemBox dl dd {
  height: 5.2941em;
  color: #666666;
  font-size: 1.7rem;
  line-height: 1.7647;
}

.press .itemBox .circle {
  width: 88px;
  height: 88px;
}

.press .itemBox .item:hover {
  border-bottom-right-radius: 150px;
}

.education .apply {
  gap: 0 85px;
  background: rgba(92, 133, 195, 0.1);
  border-radius: 140px;
  padding: 40px 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.education .apply * {
  font-family: 'pretendard',
 sans-serif;
}

.education .apply .icon,
.education .apply .arrow {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.education .apply .icon {
  width: 200px;
  height: 200px;
  background: #ffffff;
}

.education .apply dl dt,
.education .apply dl dd {
  color: #111111;
}

.education .apply dl dt {
  margin: 0 0 30px;
}

.education .apply dl dd {
  font-size: 2.0rem;
  font-weight: 300;
  line-height: 1.8;
}

.education .apply a {
  gap: 0 20px;
  margin: 0 0 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.education .apply p {
  color: #111111;
  font-size: 2.0rem;
}

.education .apply .arrow {
  width: 85px;
  height: 85px;
  background: #111111;
  color: #ffffff;
  position: relative;
}

.education .apply .arrow span,
.education .apply .arrow img {
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.education .apply .arrow img {
  opacity: 0;
}

.education .apply a:hover .arrow span {
  opacity: 0;
}

.education .apply a:hover .arrow img {
  opacity: 1;
}

.education .month {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 0 25px;
}

.education .month * {
  color: #111111;
}

.education .month button {
  gap: 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.education .month .icon {
  width: 50px;
  height: 50px;
  background: #eeeeee;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.education .month span {
  font-size: 1.4rem;
}

.education .month i {
  font-size: 1.5rem;
  font-weight: 600;
}

.education .month .center {
  text-align: center;
}

.education .schedule {
  border-bottom: 1px solid #777777;
}

.education .schedule .colorRed {
  color: #ff0000;
}

.education .schedule .colorBlue {
  color: #5c85c3;
}

.education .schedule .opacity span {
  opacity: 0.2;
}

.education .schedule table {
  border-top: 2px solid #111111;
}

.education .schedule th,
.education .schedule td {
  color: #111111;
}

.education .schedule th:not(:last-child),
.education .schedule td:not(:last-child) {
  border-right: 1px solid #e1e1e1;
}

.education .schedule th {
  height: 80px;
  background: #f5f5f5;
  border-bottom: 1px solid #777777;
  font-size: 1.8rem;
}

.education .schedule td {
  height: 200px;
  border-bottom: 1px solid #e1e1e1;
  font-size: 2.0rem;
  padding: 15px;
  vertical-align: top;
  position: relative;
}

.education .schedule div {
  width: 100%;
  max-width: calc(100% - 30px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px 0;
  position: absolute;
  left: 15px;
  bottom: 15px;
}

.education .schedule a {
  gap: 0 10px;
  color: #111111;
  font-weight: 300;
  font-family: 'pretendard',
 sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.education .schedule a::before {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background: #5c85c3;
  border-radius: 50%;
}

.featuresBox {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.featuresBox * {
  color: #111111;
}

.featuresBox .item {
  background: #ffffff;
  padding: 32px 32px 64px 60px;
}

.featuresBox h5 {
  line-height: 1.3333;
  margin: 0;
}

.featuresBox .top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 0 0 30px;
}

.featuresBox .top .icon {
  height: 95px;
  margin: 0 0 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.featuresBox .pBox {
  gap: 12px 0;
}

.featuresBox .pBox * {
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1.3333;
  letter-spacing: -0.025em;
}

.featuresBox .pBox em {
  display: block;
}

.featuresBox .pBox .colorGray {
  color: #777777;
}

.featuresBox .pBox .colorRed {
  color: #de0515;
}

.featuresBox.gap1,
.featuresBox.gap15 {
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
}

.featuresBox.gap1 {
  gap: 1px;
}

.featuresBox.gap15 {
  gap: 15px;
}

.featuresBox.gap1 * {
  letter-spacing: -0.010em;
}

.featuresBox.gap1 .top {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.featuresBox.gap1 h5 {
  letter-spacing: -0.025em;
  line-height: 1.1538;
}

.featuresBox.gap1 .icon {
  height: 80px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.featuresBox.gap1 .item {
  padding: 45px 10px 50px 35px;
}

.featuresBox.gap1 p,
.featuresBox.gap1 span {
  font-size: 1.6rem;
  line-height: 1.375;
}

.featuresBox.gap1 p em,
.featuresBox.gap1 span em {
  font-size: 1.4rem;
}

.featuresListBox * {
  font-family: 'pretendard',
 sans-serif;
}

.featuresListBox ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px 0;
}

.featuresListBox ul li {
  width: 100%;
  height: 110px;
  gap: 0 25px;
  background: #ffffff;
  border-left: 5px solid #5c85c3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.featuresListBox .icon {
  width: 200px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.featuresListBox p {
  color: #111111;
  font-size: 2.0rem;
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.featuresListBox p em {
  color: #777777;
  font-size: 1.8rem;
  font-weight: 300;
  margin: 0 0 0 45px;
}

.productsCategory {
  width: 300px;
  height: 45px;
  background: #5c85c3;
  color: #ffffff;
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  margin: 0 0 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.productsBox {
  gap: 15px;
}

.productsBox * {
  color: #111111;
  letter-spacing: -0.010em;
}

.productsBox .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: #ffffff;
  text-align: center;
}

.productsBox .item > p {
  font-size: 2.0rem;
  font-weight: 500;
  line-height: 1.2;
  margin: auto 0 0;
}

.productsBox .img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.productsBox.height300 .item {
  height: 300px;
}

.productsBox.height350 .item {
  height: 350px;
}

.productsBox.height400 .item {
  height: 400px;
}

.circleNumber h5 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 20px;
  color: #111111;
  letter-spacing: -0.025em;
  line-height: 1.28;
  margin: 0 0 30px;
}

.circleNumber h5 em {
  width: 40px;
  height: 40px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background: #111111;
  border-radius: 50%;
  color: #ffffff;
  font-size: 2.0rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.business .listTitle b {
  color: #5c85c3;
  font-weight: 400;
}

.business .listTitle h3,
.business .listTitle p {
  font-family: 'pretendard',
 sans-serif;
}

.business .listTitle h3 {
  line-height: 1.3;
  margin: 60px 0 40px;
}

.business .listTitle p {
  font-size: 2.0rem;
  font-weight: 300;
  letter-spacing: -0.025em;
  line-height: 1.3;
}

.business.listPage .listBox {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
      grid-template-columns: repeat(4, 1fr);
  gap: 80px 20px;
}

.business.listPage .listBox .item {
  height: 550px;
  padding: 10px;
  position: relative;
  -webkit-transition: all 0.4s cubic-bezier(1, -0.18, 0.33, 1.21);
  transition: all 0.4s cubic-bezier(1, -0.18, 0.33, 1.21);
}

.business.listPage .listBox .item .img {
  position: relative;
  padding: 35% 0;
  overflow: hidden;
}

.business.listPage .listBox .item .img img {
  min-width: 100%;
  min-height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.business.listPage .listBox dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px 0;
  padding: 65px 20px 0;
}

.business.listPage .listBox dl dt,
.business.listPage .listBox dl dd {
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.business.listPage .listBox dl dt {
  color: #111111;
  line-height: 0.92;
}

.business.listPage .listBox dl dd {
  color: #666666;
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1.5555;
  font-family: 'pretendard',
 sans-serif;
}

.business.listPage .listBox .arrow {
  width: 95px;
  height: 95px;
  background: #111111;
  border-radius: 50%;
  position: absolute;
  right: -20px;
  bottom: 0;
  opacity: 0;
  -webkit-transition: all 0.4s cubic-bezier(1, -0.18, 0.33, 1.21);
  transition: all 0.4s cubic-bezier(1, -0.18, 0.33, 1.21);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.business.listPage .listBox .item:hover {
  background: #5c85c3;
  border-bottom-right-radius: 150px;
  -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
          box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

.business.listPage .listBox .item:hover dl dt,
.business.listPage .listBox .item:hover dl dd {
  color: #ffffff;
}

.business.listPage .listBox .item:hover .arrow {
  right: 0;
  opacity: 1;
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

.business.listPage .listBox.hoverNone .item {
  pointer-events: none;
}

.solutions .listTitle h3 {
  margin: 0 0 40px;
}

.solutions .info * {
  font-family: 'pretendard',
 sans-serif;
}

.solutions .info .text,
.solutions .info .itemBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.solutions .info .text {
  gap: 0 60px;
  color: #ffffff;
  padding: 0 20px;
}

.solutions .info .text span {
  font-weight: 500;
}

.solutions .info .itemBox {
  gap: 0 2.5%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.solutions .info .item {
  width: 30%;
  background: #5c99c3;
  border-radius: 50%;
  color: #ffffff;
  padding: 15% 0;
  position: relative;
}

.solutions .info .item.dark {
  background: #5c85c3;
}

.solutions .info .inner,
.solutions .info .icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.solutions .info .inner {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.solutions .info .icon {
  height: 78px;
}

.solutions .info dl {
  text-align: center;
  margin: 45px 0 0;
}

.solutions .info dl dt {
  margin: 0 0 20px;
}

.solutions .info dl dd {
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1.6666;
  opacity: 0.7;
}

.solutions .listBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 150px;
}

.solutions .listBox .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.solutions .listBox .item > div {
  width: 50%;
}

.solutions .listBox .text.right {
  padding: 0 0 0 95px;
}

.solutions .listBox h4,
.solutions .listBox h4 em {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.solutions .listBox h4,
.solutions .listBox dl dt {
  color: #111111;
  font-weight: 500;
  margin: 0 0 40px;
}

.solutions .listBox h4 {
  gap: 0 10px;
  font-family: 'pretendard',
 sans-serif;
}

.solutions .listBox h4 em {
  gap: 0 4px;
  font-size: 1.6rem;
  margin: 0 0 0.1em;
  font-family: 'Russo One',
 sans-serif;
}

.solutions .listBox h4 em::before {
  content: "";
  display: block;
  width: 25px;
  height: 1px;
  background: #5c85c3;
  -webkit-transform: translateY(-0.2em);
          transform: translateY(-0.2em);
}

.solutions .listBox dl * {
  font-family: 'pretendard',
 sans-serif;
}

.solutions .listBox dl dt {
  line-height: 1.5;
}

.solutions .listBox dl dd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px 0;
}

.solutions .listBox dl dd p {
  font-size: 1.8rem;
  line-height: 1.5555;
}

.solutions .listBox dl dd p em {
  display: block;
  font-size: 1.6rem;
  margin: 10px 0 0;
}

.solutions .listBox .moreButton::before {
  border: 1px solid #eeeeee;
}

.solutions .listBox .moreButton p {
  color: #111111;
}

.solutions .listBox .moreButton em {
  color: #5c85c3;
}

.solutions .listBox .moreButton:hover::before {
  background: #5c85c3;
  border-color: #5c85c3;
}

.solutions .listBox .moreButton:hover em {
  color: #ffffff;
}

.it .youtube * {
  font-family: 'pretendard',
 sans-serif;
}

.it .youtube h6 {
  font-size: 2.0rem;
  margin: 0 0 20px;
}

.it .youtube ul {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1.128fr 1fr;
      grid-template-columns: 1fr 1fr 1.128fr 1fr;
  gap: 0 12px;
}

.it .youtube ul li {
  width: 100%;
  height: 65px;
  background: #ffffff;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.it .youtube a {
  gap: 0 15px;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.it .youtube a * {
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.it .youtube .icon {
  width: 28px;
}

.it .youtube p {
  color: #111111;
}

.it .youtube ul li:hover {
  background: #d1252a;
}

.it .youtube ul li:hover .youtubeCls-1 {
  fill: #ffffff;
}

.it .youtube ul li:hover p {
  color: #ffffff;
}

.detailPageTop {
  background: #111111;
  padding: 160px 0 120px;
}

.menuBox,
.menuBox > * {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.menuBox {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 20px;
  margin: 0 0 70px;
}

.menuBox .list {
  gap: 0 20px;
}

.menuBox .list .icon {
  width: 40px;
  height: 40px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  padding: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.menuBox .list .icon span {
  width: 4px;
  height: 4px;
  background: #ffffff;
}

.menuBox .list em {
  color: #ffffff;
  font-size: 1.7rem;
	font-size: 2.0rem;
  letter-spacing: 0.025em;
}

.dropMenu {
  gap: 0 60px;
}

.dropMenu button {
  gap: 0 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.dropMenu button * {
  color: #ffffff;
}

.dropMenu button.on i {
  transform: rotate(180deg);
}

.dropMenu span {
  font-size: 1.4rem;
  letter-spacing: 0.025em;
}

.dropMenu i {
  font-size: 1.6rem;
}

.dropMenu > div {
  position: relative;
}

.dropMenu > div ul {
  width: 135px;
  width: auto;
  background: #ffffff;
	background: transparent;
  padding: 15px 18px 15px;
  position: absolute;
  top: calc(100% + 10px);
  right: -20px;
  display: none;
}

.dropMenu > div ul * {
  font-family: 'pretendard',
 sans-serif;
}

.dropMenu > div ul li a,
.dropMenu > div ul li button {
  display: inline-block;
  color: #111111;
  color: #ffffff;
  font-size: 1.4rem;
  line-height: 1.2;
  letter-spacing: 0.025em;
  white-space: nowrap;
  padding: 6px 0;
}

.dropMenu .drop2 i,
.dropMenu .drop3 i {
  color: #5c85c3;
}

.dropMenu > div ul li.on a,
.dropMenu > div ul li.on button {
  color: #5c85c3;
  text-decoration: underline;
  text-underline-position: under;
}

.detailPageTop .detailTop {
  gap: 0 90px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.detailPageTop .detailTop::before {
  content: "";
  display: block;
  width: 100vw;
  z-index: -2;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.detailPageTop .detailTop .imgBox,
.detailPageTop .detailTop .img {
  width: 100%;
  max-width: 670px;
  flex-shrink: 0;
}

.detailPageTop .detailTop .imgBox > p {
  color: #999;
  font-weight: 300;
  line-height: 1.625;
  text-align: center;
  margin: 25px 0;
}

.detailPageTop .detailTop .imgBox > p em {
  color: #fff;
}

.detailPageTop .detailTop .imgBox ul,
.detailPageTop .detailTop .imgBox ul li,
.detailPageTop .detailTop .imgBox .icon {
  display: flex;
  align-items: center;
}

.detailPageTop .detailTop .imgBox ul {
  justify-content: center;
  gap: 0 28px;
}

.detailPageTop .detailTop .imgBox ul li {
  gap: 0 6px;
}

.detailPageTop .detailTop .imgBox .icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  justify-content: center;
}

.detailPageTop .detailTop .imgBox .icon img {
  width: 17px;
  filter: brightness(0) invert(1);
}

.detailPageTop .detailTop .imgBox ul li:first-child .icon {
  background: #5c85c3;
}

.detailPageTop .detailTop .imgBox ul li:last-child .icon {
  background: #5c99c3;
}

.detailPageTop .detailTop .imgBox ul li p {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 600;
}

.detailPageTop .detailTop h2,
.detailPageTop .detailTop h5 {
  color: #ffffff;
  margin: 0 0 35px;
}

.detailPageTop .detailTop h5,
.detailPageTop .detailTop p {
  font-family: 'pretendard',
 sans-serif;
}

.detailPageTop .detailTop h5 {
  font-size: 2.4rem;
  line-height: 1.28;
}

.detailPageTop .detailTop p {
  color: #999999;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.7777;
}

.detailPageTop .detailTop p.big {
  font-size: 2.1rem;
  margin: 0 0 30px;
}

.detailPageTop .detailTop .flexBox {
  gap: 0 30px;
}

.detailPageTop .detailTop .flexBox b {
  font-size: 2.1rem;
  line-height: 1.5;
  font-family: 'pretendard', sans-serif;
}

.detailPageTop .detailTop .download {
  gap: 0 50px;
  margin: 50px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.detailPageTop .detailTop .download .moreButton {
  border: 1px solid rgba(213, 212, 212, 0.3);
  border-radius: 27px;
  margin: 0;
}

.detailPageTop .detailTop .download .moreButton * {
  color: #ffffff;
  font-size: 1.4rem;
  line-height: 1;
}

.detailPageTop .detailTop .download .moreButton p {
  letter-spacing: 0.05em;
}

.business.detailPage .leftTitle * {
  color: #111111;
  letter-spacing: -0.025em;
  font-family: 'pretendard',
 sans-serif;
}

.business.detailPage .leftTitle h3 {
  line-height: 1.3333;
}

.business.detailPage .leftTitle h3 em {
  display: block;
  font-size: 2.4rem;
  margin: 25px 0 0;
}

.business.detailPage .leftTitle ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px 0;
  margin: 70px 0 0;
  display: none;
}

.business.detailPage .leftTitle ul li button {
  font-size: 1.8rem;
  font-weight: 700;
  position: relative;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.business.detailPage .leftTitle ul li button::before {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  background: #5c85c3;
  position: absolute;
  left: 0;
  bottom: -2px;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.business.detailPage .leftTitle ul li ul {
  gap: 15px 0;
  margin: 15px 0 0;
}

.business.detailPage .leftTitle ul li ul li {
  font-size: 1.5rem;
  font-weight: 500;
}

.business.detailPage .leftTitle ul li ul li.on {
  color: #5c85c3;
}

.business.detailPage .leftTitle ul li.on button {
  color: #5c85c3;
  font-size: 2.6rem;
}

.business.detailPage .leftTitle ul li.on button::before {
  width: 100%;
}

.business.detailPage .leftTitle ul li.on button em {
  color: #5c85c3;
  font-size: 1.8rem;
  font-weight: 500;
}

.business.detailPage table {
  border-top: 2px solid #111111;
  border-bottom: 1px solid #777777;
}

.business.detailPage table th,
.business.detailPage table td {
  border-right: 1px solid #dddddd;
  border-bottom: 1px solid #dddddd;
  letter-spacing: -0.010em;
  line-height: 1.25;
}

.business.detailPage table th {
  color: #111111;
  font-weight: 600;
  background: #ededed;
}

.business.detailPage table td {
  color: #777777;
  font-weight: 300;
  text-align: center;
  padding: 20px 0;
}

.business.detailPage table td.medium {
  color: #111111;
  font-weight: 500;
}

.business.detailPage table td.bgColor {
  background: rgba(92, 133, 195, 0.4);
}

.detailPage * {
  font-family: 'pretendard',
 sans-serif;
}

.meta.detailPage .featuresBox {
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
}

.meta.detailPage .featuresBox .item {
  padding: 40px;
}

.meta.detailPage .featuresBox .item .top .icon {
  height: 42px;
}

.meta.detailPage .featuresBox .pBox * {
  font-size: 2.0rem;
  font-weight: 500;
}

.meta.detailPage .featuresBox .pBox em {
  display: inline;
  font-size: 1.8rem;
  font-weight: 400;
}

.smart .lam h5,
.smart .mas h5 {
  color: #111111;
  letter-spacing: -0.025em;
}

.smart .las .features .item {
  width: calc(50% + 20px);
  height: 120px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center center;
  gap: 6px 0;
  text-align: center;
  color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.smart .las .features .item.item1 {
  background-image: url("/img/sub/business/smart/las1Point1-1.png");
}

.smart .las .features .item.item2 {
  background-image: url("/img/sub/business/smart/las1Point1-2.png");
}

.smart .las .features .item p {
  font-size: 2.4rem;
  font-weight: 600;
}

.smart .las .features .item p.font18 {
  font-size: 1.8rem;
  font-weight: 300;
}

.smart .las .features .item p.font16 {
  font-size: 1.6rem;
  font-weight: 400;
}

.smart .las .features .item1 {
  margin: 0 -35px 0 0;
  position: relative;
  z-index: 2;
}

.smart .las .features ul {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
  -ms-grid-rows: (120px)[2];
      grid-template-rows: repeat(2, 120px);
  gap: 6px;
  margin: 50px 0 0;
}

.smart .las .features ul li {
  background: #ffffff;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.smart .las .features ul li p {
  color: #111111;
  font-size: 2.0rem;
  font-weight: 600;
  line-height: 1.4;
}

.smart .las .features ul li .icon {
  width: 70px;
  height: 70px;
  background: #e1e1e1;
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.smart .las .features ul li.rightBottom .icon, .smart .las .features ul li.leftBottom .icon {
  bottom: 0;
  padding-top: 10px;
}

.smart .las .features ul li.rightTop .icon, .smart .las .features ul li.leftTop .icon {
  top: 0;
  padding-bottom: 10px;
}

.smart .las .features ul li.rightBottom .icon, .smart .las .features ul li.rightTop .icon {
  right: 0;
  padding-left: 10px;
}

.smart .las .features ul li.leftBottom .icon, .smart .las .features ul li.leftTop .icon {
  left: 0;
  padding-right: 10px;
}

.smart .las .features ul li.rightBottom {
  border-bottom-right-radius: 30px;
}

.smart .las .features ul li.rightBottom .icon {
  border-top-left-radius: 100%;
}

.smart .las .features ul li.leftBottom {
  border-bottom-left-radius: 30px;
}

.smart .las .features ul li.leftBottom .icon {
  border-top-right-radius: 100%;
}

.smart .las .features ul li.rightTop {
  border-top-right-radius: 30px;
}

.smart .las .features ul li.rightTop .icon {
  border-bottom-left-radius: 100%;
}

.smart .las .features ul li.leftTop {
  border-top-left-radius: 30px;
}

.smart .las .features ul li.leftTop .icon {
  border-bottom-right-radius: 100%;
}

.smart .las .benefits * {
  letter-spacing: -0.010em;
}

.smart .las .benefits ol {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 10px;
}

.smart .las .benefits ol li {
  width: 100%;
  background: #ffffff;
  padding: 55px 25px;
}

.smart .las .benefits .icon {
  height: 58px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.smart .las .benefits p {
  color: #111111;
  font-size: 2.0rem;
  font-weight: 600;
  line-height: 1.5;
  margin: 55px 0 0;
}

.smart .lam .design .itemBox {
  gap: 0 15px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: #ffffff;
  padding: 55px 60px 125px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.smart .lam .design .itemBox .item {
  position: relative;
}

.smart .lam .design .itemBox i {
  color: #aaaaaa;
}

.smart .lam .design .itemBox .text {
  background: #5c85c3;
  border-radius: 20px;
  color: #ffffff;
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  white-space: nowrap;
  padding: 10px 20px;
  position: absolute;
  left: 50%;
  bottom: -65px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.smart .lam .temperature .itemBox p {
  color: #111111;
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: -0.010em;
}

.smart .lam .temperature .itemBox .item {
  gap: 0 16px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 45px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.smart .lam .temperature .itemBox .text {
  width: 29.70%;
  height: 70px;
  border-radius: 35px;
  color: #ffffff;
  font-size: 2.0rem;
  font-weight: 700;
  letter-spacing: -0.010em;
  white-space: nowrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.smart .lam .temperature .itemBox .text.gray20 {
  background: rgba(0, 0, 0, 0.2);
}

.smart .lam .temperature .itemBox .text.gray50 {
  background: rgba(0, 0, 0, 0.5);
}

.smart .lam .temperature .itemBox .text.gray80 {
  background: rgba(0, 0, 0, 0.8);
}

.smart .lam .stage .itemBox,
.smart .lam .laser .itemBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.smart .lam .stage .itemBox > *,
.smart .lam .laser .itemBox > * {
  width: 50%;
}

.smart .lam .stage .itemBox dl *,
.smart .lam .laser .itemBox dl * {
  color: #111111;
  letter-spacing: -0.010em;
}

.smart .lam .stage .itemBox dl dt,
.smart .lam .laser .itemBox dl dt {
  font-weight: 600;
  margin: 0 0 40px;
}

.smart .lam .stage .itemBox dl dd,
.smart .lam .laser .itemBox dl dd {
  font-size: 2.0rem;
  font-weight: 300;
  line-height: 2;
}

.smart .lam .stage dl {
  padding: 0 0 0 60px;
}

.smart .mas h5 {
  line-height: 1.28;
  margin: 30px 0 0;
}

.smart .mas .imgBox {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.smart .mas .pBox {
  gap: 10px 0;
  margin: 50px 0 0;
}

.smart .mas .pBox p {
  color: #111111;
  font-weight: 300;
  letter-spacing: -0.025em;
  line-height: 1.28;
}

.smart .mas .pBox p b {
  font-weight: 700;
}

.smart .mas hr {
  width: 100%;
  height: 1px;
  background: #000000;
  border: none;
  margin: 20px 0;
}

.smart .mas .fulfillment {
	display: flex;
	flex-direction: column;
}

.smart .mas .fulfillment .iconBox {
  gap: 0 20px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin: 50px 0 0 auto;
  display: inline-flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
	position: relative;
}

.smart .mas .fulfillment .iconBox > h6 {
	color: #000;
	font-size: 2.0rem;
	font-weight: 500;
	white-space: nowrap;
	position: absolute;
	top: -30px;
	left: 50%;
	transform: translateX(-50%);
}

.smart .mas .fulfillment .iconBox .border {
  position: relative;
}

.smart .mas .fulfillment .iconBox .icon {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.smart .mas .robot .item {
  position: relative;
}

.smart .mas .robot dl {
  position: absolute;
  left: 30px;
  bottom: 35px;
  z-index: 2;
}

.smart .mas .robot dl * {
  color: #ffffff;
  letter-spacing: -0.020em;
}

.smart .mas .robot dl dt {
  font-size: 2.8rem;
  margin: 0 0 16px;
}

.smart .mas .robot dl dd {
  height: 3.3332em;
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1.6666;
  opacity: 0.7;
}

.control.detailPage .titleBox,
.control.detailPage .title {
  color: #111111;
}

.control.detailPage .titleBox p {
  font-size: 1.8rem;
  font-weight: 300;
  letter-spacing: -0.025em;
  margin: 30px 0 0;
}

.control.detailPage .title {
  gap: 0 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.control.detailPage .imgBox {
  margin: 40px 0 0;
}

.control.detailPage .featuresBox .item {
  padding: 35px 30px 40px 45px;
}

.control.detailPage .featuresBox .item .top .icon {
  height: 60px;
}

.control.detailPage .featuresBox .pBox * {
  line-height: 1.6666;
}

.control.detailPage .featuresBox .pBox em {
  font-size: 1.6rem;
  font-weight: 400;
  margin: 5px 0 0;
}

.control.detailPage table th {
  padding: 25px 0;
}

.control.detailPage table td.left {
  text-align: left;
  text-indent: 25px;
}

.control.detailPage .manual .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.control.detailPage .manual .item .text *:not(em) {
  color: #111111;
}

.control.detailPage .manual .item .pBox {
  margin: 30px 0 0 15px;
}

.control.detailPage .manual .item .dot {
  gap: 0 15px;
}

.control.detailPage .manual .item p {
  font-size: 1.8rem;
  letter-spacing: -0.010em;
  line-height: 2.1111;
}

.control .cluster .title {
  margin: 0 0 30px;
}

.control .cluster table th {
  padding: 22px 0;
}

.control .cluster .software ul li,
.control .cluster .software span,
.control .cluster .software p {
  display: flex;
  align-items: center;
}

.control .cluster .software ul {
  display: flex;
  flex-direction: column;
  gap: 3px 0;
}

.control .cluster .software ul * {
  letter-spacing: -0.025em;
}

.control .cluster .software ul li {
  background: #dee7f3;
}

.control .cluster .software span {
  width: 200px;
  flex-shrink: 0;
  justify-content: center;
  color: #5d86c3;
  font-size: 2.0rem;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
}

.control .cluster .software .pBox {
  width: 100%;
  gap: 10px 0;
  background: #fff;
  padding: 26px;
}

.control .cluster .software p {
  color: #111;
  font-size: 1.8rem;
}

.control .cluster .featuresBox.gap15 .item {
  height: 354px;
  border-top-left-radius: 30px;
  position: relative;
}

.control .cluster .featuresBox.gap15 h5 {
  margin: 0 0 20px;
}

.control .cluster .featuresBox.gap15 p {
  color: #111;
  font-size: 1.7rem;
  font-weight: 300;
  letter-spacing: -0.025em;
  line-height: 1.6470;
}

.control .cluster .featuresBox.gap15 .icon {
  position: absolute;
  right: 45px;
  bottom: 55px;
}

.control .mfi .type ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px 5px;
}

.control .mfi .type span {
  height: 55px;
  background: #5c85c3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: -0.025em;
}

.control .manual > .pBox {
  gap: 15px 0;
  margin: 40px 0 0;
}

.control .manual > .pBox p {
  color: #111;
  font-size: 1.8rem;
  letter-spacing: -0.010em;
}

.it .radware .featuresBox .item.bottom {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-area: 3/1/3/3;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 55px 100px 40px 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.it .radware .featuresBox .item.bottom h5 {
  line-height: 1.5;
}

.it .radware .featuresBox .item.bottom .itemBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 120px;
}

.it .radware .featuresBox .item.bottom .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  padding: 0;
}

.it .radware .featuresBox .item.bottom .item * {
  font-size: 1.8rem;
  font-weight: 600;
}

.it .radware .featuresBox .item.bottom em {
  color: #111111;
  margin: 15px 0 25px;
}

.it .radware .featuresBox .item.bottom p {
  width: 120px;
  height: 40px;
  background: #5c85c3;
  border-radius: 20px;
  color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.it .radware .virtualization > p,
.it .radware .appliance > p {
  color: #111111;
  font-size: 1.8rem;
  font-weight: 300;
  letter-spacing: -0.010em;
}

.it .radware .virtualization {
  position: relative;
}

.it .radware .virtualization .iconBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 15px;
  text-align: center;
  position: absolute;
  top: 0;
  right: 0;
}

.it .radware .virtualization .iconBox em {
  color: #111111;
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  text-align: center;
}

.it .radware .virtualization .border {
  margin: 0 0 16px;
  position: relative;
}

.it .radware .virtualization .border .icon {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.it .radware .productsBox {
  margin: 40px 0 0;
}

.it .radware .productsBox .item {
  padding: 65px 20px 60px;
}

.it .radware .productsBox .img {
  height: 120px;
}

.it .efficient .subColumn * {
  color: #111111;
}

.it .efficient .lineup .title,
.it .efficient .imgBox .title {
  gap: 0 25px;
  margin: 0 0 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.it .efficient table th {
  height: 42px;
}

.it .huawei .productsBox em,
.it .huawei .productsBox small.block {
  display: block;
}

.it .huawei .productsBox em,
.it .huawei .productsBox small {
  font-size: 1.6rem;
}

.it .huawei .productsBox em {
  font-weight: 500;
  margin: 16px 0 0;
}

.it .huawei .productsBox small.block {
  margin: 5px 0 0;
}

.it .huawei .productsBox.height400 .item {
  padding: 40px 20px 45px;
}

.it .huawei .productsBox.height400 .img {
  height: 195px;
}

.it .huawei .productsBox.height350 .item {
  padding: 60px 20px 50px;
}

.it .huawei .productsBox.height350 .img {
  height: 150px;
}

.it .alcatel .productsBox p {
  font-weight: 700;
}

.it .alcatel .productsBox.height300 .item {
  padding: 55px 20px 60px;
}

.it .alcatel .productsBox.height300 .img {
  height: 120px;
}

.it .alcatel .productsBox.height380 .item {
  padding: 30px 20px 35px;
}

.it .alcatel .productsBox.height380 .img {
  height: 230px;
}

.it .alcatel .productsBox.height380 .withoutP .img {
  height: auto;
}

.it .alcatel .lineup .topText {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #111111;
}

.it .alcatel .lineup .topText h5 {
  width: 380px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.it .alcatel .lineup .topText p {
  font-size: 2.0rem;
  font-weight: 500;
  letter-spacing: -0.010em;
}

.it .alcatel .lineup .topText ol {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px 0;
}

.it .alcatel .lineup .topText ol li {
  gap: 0 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.it .alcatel .lineup .topText ol em {
  width: 26px;
  height: 26px;
  background: #111111;
  border-radius: 50%;
  color: #ffffff;
  font-size: 1.8rem;
  font-weight: 300;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.it .alcatel .tabTitle,
.it .alcatel .tabTitle li {
  border: none;
}

.it .alcatel .tabTitle {
  height: 60px;
  gap: 0 1px;
  border: none;
}

.it .alcatel .tabTitle li {
  width: calc((100% - 3px) / 3);
  background: #333333;
}

.it .alcatel .tabTitle button {
  color: #ffffff;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.28;
}

.it .alcatel .tabTitle li:hover, .it .alcatel .tabTitle li.on {
  background: #5c85c3;
}

.it .alcatel .access .productsDetailBox,
.it .alcatel .core .productsDetailBox {
  margin: 60px 0 0;
}

.it .alcatel .core .none {
  display: none;
}

.it .alcatel .metro .imgBox {
  background: #ffffff;
  padding: 70px 20px 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.it .alcatel .metro h4 {
  color: #111111;
  letter-spacing: -0.025em;
  text-align: center;
  margin: 20px 0 40px;
}

.it .alcatel .metro hr {
  width: 100%;
  height: 1px;
  background: #dddddd;
  border: none;
  margin: 65px 0;
}

.it .alcatel .metro .info > ul {
  border-top: 1px solid #777777;
}

.it .alcatel .metro .info > ul > li {
  border-bottom: 1px solid #dddddd;
  padding: 24px 44px;
}

.it .alcatel .metro .info > ul > li ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px 0;
  padding: 25px 0 25px 140px;
}

.it .alcatel .metro .info > ul > li ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 12px;
  color: #111111;
  font-weight: 300;
  letter-spacing: -0.010em;
}

.it .alcatel .metro .info > ul > li ul li::before {
  content: "-";
  font-size: 2.0rem;
  font-weight: 500;
  -webkit-transform: translateY(-0.15em);
          transform: translateY(-0.15em);
}

.it .alcatel .metro .info p {
  color: #111111;
  font-size: 2.0rem;
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.it .alcatel .metro .info p em {
  font-size: 1.6rem;
  font-weight: 300;
  margin: 0 0 0 45px;
}

.it .alcatel .metro .info span {
  display: block;
  font-weight: 600;
  letter-spacing: -0.010em;
  padding: 24px 44px;
}

.it .alcatel .metro .os {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
  gap: 30px 10px;
}

.it .alcatel .metro .os .productsCategory {
  width: 290px;
  margin: 0 0 -30px;
  position: relative;
  z-index: 1;
}

.it .alcatel .metro .os .img {
  height: 250px;
  background: #ffffff;
  padding: 30px 10px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.it .alcatel .core .productsDetailBox,
.it .alcatel .wlan .productsDetailBox {
  width: 100%;
}

.it .alcatel .core .productsDetailBox .inner,
.it .alcatel .wlan .productsDetailBox .inner {
  background: #ffffff;
  padding: 60px;
}

.it .alcatel .core .productsDetailBox .img,
.it .alcatel .wlan .productsDetailBox .img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.it .alcatel .core .productsDetailBox .information li,
.it .alcatel .wlan .productsDetailBox .information li {
  padding: 20px 0;
}

.it .alcatel .core .productsDetailBox .information .pBox,
.it .alcatel .wlan .productsDetailBox .information .pBox {
  width: 60%;
  gap: 6px 0;
  margin: 0 0 0 auto;
}

.it .alcatel .core .productsDetailBox .information em,
.it .alcatel .wlan .productsDetailBox .information em {
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 400;
  margin: 0 0 0 40px;
}

.it .alcatel .core .productsDetailBox .img {
  margin: 0 0 60px;
}

.it .alcatel .wlan .productsBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
}

.it .alcatel .wlan .productsBox .item {
  width: calc((100% - 30px) / 3);
  -webkit-transition: border 0.4s cubic-bezier(1, -0.18, 0.33, 1.21), border-radius 0.4s cubic-bezier(1, -0.18, 0.33, 1.21);
  transition: border 0.4s cubic-bezier(1, -0.18, 0.33, 1.21), border-radius 0.4s cubic-bezier(1, -0.18, 0.33, 1.21);
}

.it .alcatel .wlan .productsDetailBox {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 2;
}

.it .alcatel .wlan .productsDetailBox .img {
  margin: 60px 0;
}

.it .alcatel .wlan .productsBox {
  position: relative;
}

.it .soosan .pBox {
  gap: 12px 0;
}

.it .soosan .features {
  gap: 20px;
}

.it .soosan .features .item {
  background: #ffffff;
  color: #111111;
  padding: 60px 60px 50px;
}

.it .soosan .features .img {
  height: 23px;
}

.it .soosan .features h5 {
  line-height: 1.28;
  margin: 20px 0 45px;
}

.it .soosan .features h6 {
  font-size: 2.0rem;
  letter-spacing: -0.025em;
  line-height: 1.5;
  margin: 0 0 20px;
}

.it .soosan .features p {
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1.3333;
}

.it .soosan .lineup .title {
  color: #111111;
  margin: 0 0 50px;
}

.it .soosan .lineup .title * {
  letter-spacing: -0.025em;
}

.it .soosan .lineup .title p {
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1.28;
  margin: 35px 0 0;
}

.it .soosan .productsBox .item {
  padding: 60px 20px 50px;
}

.it .soosan .productsBox em {
  color: #777777;
  font-weight: 300;
  margin: 10px 0 0;
}

.it .soosan .productsBox .circle {
  width: 52px;
  height: 52px;
}

.it .soosan .productsBox .circle i {
  color: #ffffff;
}

.it .soosan .productsBox .img {
  height: 90px;
}

.it .soosan .marginMinus h5 {
  margin-top: -1.1666em;
}

.it .soosan .skill .list {
  border-top: 2px solid #111111;
  border-bottom: 1px solid #aaaaaa;
}

.it .soosan .skill .list dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  border-bottom: 1px solid #dddddd;
  padding: 20px 15px 35px;
}

.it .soosan .skill .list dl * {
  color: #111111;
  letter-spacing: -0.010em;
}

.it .soosan .skill .list dl dt {
  width: 100%;
  max-width: 280px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  gap: 0 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.it .soosan .skill .list .icon {
  width: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.it .soosan .skill .list .pBox {
  padding-top: 0.8em;
}

.it .soosan .skill .list p {
  font-size: 1.7rem;
  font-weight: 300;
}

.it .sgn .featuresBox p {
  color: #111111;
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1.6666;
}

/* core */
#sv.sv02-core {
  height: 465px;
  position: relative;
}

#sv.sv02-core .bottomTitle {
  color: #fff;
  white-space: nowrap;
  left: 50%;
  right: auto;
  bottom: 20%;
  transform: translateX(-50%);
}

#sv.sv02-core .menuBox {
  padding: 130px 20px 0;
}

.lnbBox .coreMenu li,
.lnbBox .coreMenu li button {
  width: 100%;
}

.lnbBox .coreMenu li {
  padding: 0;
}

.lnbBox .coreMenu li button {
  justify-content: center;
}

.core.business.listPage {
  padding: 60px 0 140px;
}

.core.business > .coreMenu {
  display: none;
}

.core.business .listTitle h3 {
  font-family: 'Russo One',
  sans-serif;
}

.core.business.detailPage table {
  border: none;
}

.core .tableBox table th,
.core .tableBox table td {
  border-right: 1px solid #f3f3f3;
  border-bottom: 1px solid #f3f3f3;
  font-size: 2.0rem;
}

.core .tableBox table th {
  height: 80px;
  background: #5c85c3;
  color: #fff;
  font-weight: 600;
}

.core .tableBox table td {
  height: 75px;
  background: #fff;
  color: #111;
  font-weight: 400;
}

.core .da .img {
  text-align: center;
}

.core .featuresListBox ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px 22px;
}

.core .featuresListBox ul li {
  gap: 0;
}

.core .dms .featuresListBox ul li {
  height: 130px;
}

.core .mes .featuresListBox ul li {
  height: 200px;
}

.core .featuresListBox .icon {
  width: 155px;
}

.productsPopup *,
.productsDetailBox * {
  color: #111111;
}

.productsPopup .popupClose,
.productsPopup .detailClose,
.productsDetailBox .popupClose,
.productsDetailBox .detailClose {
  position: absolute;
  top: 30px;
  right: 30px;
}

.productsPopup .xi-close-thin,
.productsDetailBox .xi-close-thin {
  font-size: 2.4rem;
}

.productsPopup .title,
.productsDetailBox .title {
  gap: 0 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.productsPopup .information,
.productsDetailBox .information {
  border-top: 1px solid #777777;
}

.productsPopup .information li,
.productsDetailBox .information li {
  border-bottom: 1px solid #dddddd;
  padding: 20px 40px;
}

.productsPopup p,
.productsDetailBox p {
  font-size: 1.8rem;
  letter-spacing: -0.025em;
}

.productsPopup {
  width: 100%;
  width: auto;
  height: 0;
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 6;
  opacity: 0;
  overflow: hidden;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: opacity 0.6s 0.2s;
  transition: opacity 0.6s 0.2s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.productsPopup .inner {
  width: 100%;
  max-height: calc(100vh - 80px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow-y: scroll;
}

.productsPopup .information {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.productsPopup .popupTableBox table {
  border-top: 2px solid #111111;
  table-layout: inherit;
}

.productsPopup .popupTableBox table * {
  letter-spacing: -0.010em;
}

.productsPopup .popupTableBox table th,
.productsPopup .popupTableBox table td {
  border-bottom: 1px solid #dddddd;
}

.productsPopup .popupTableBox table th:not(:last-child),
.productsPopup .popupTableBox table td:not(:last-child) {
  border-right: 1px solid #dddddd;
}

.productsPopup .popupTableBox table th {
  color: #111111;
}

.productsPopup .popupTableBox table thead th {
  height: 55px;
  font-size: 1.8rem;
  font-weight: 700;
  background: #f5f5f5;
}

.productsPopup .popupTableBox table tbody * {
  font-size: 1.6rem;
  text-align: left;
  padding: 15px 35px;
}

.productsPopup .popupTableBox table tbody th {
  font-weight: 500;
}

.productsPopup .popupTableBox table tbody td {
  color: #777777;
}

.productsPopup.on {
  height: auto;
  opacity: 1;
  overflow: inherit;
}

.productsDetailBox {
  display: none;
}

.productsDetailBox .productsDetailTab {
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 5px;
  display: none;
}

.productsDetailBox .productsDetailTab li {
  height: 100%;
  background: #ffffff;
  border: 1px solid #dddddd;
  border-bottom: none;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  position: relative;
}

.productsDetailBox .productsDetailTab li::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background: #ffffff;
  position: absolute;
  left: 50%;
  bottom: -1px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.productsDetailBox .productsDetailTab button {
  color: #999999;
  font-size: 1.8rem;
  font-weight: 700;
  padding: 0 45px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  width: 100%;
  height: 100%;
  font-family: 'pretendard',
 sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.productsDetailBox .productsDetailTab li.on::after {
  width: 100%;
}

.productsDetailBox .productsDetailTab li.on button {
  color: #111111;
  font-size: 2.4rem;
}

.productsDetailBox .featuresBox {
  border-top: 1px solid #dddddd;
}

.radwarePopup * {
  white-space: nowrap;
}

.radwarePopup .inner {
  padding: 60px 50px;
}

.radwarePopup ul,
.radwarePopup .popupTableBox {
  margin: 40px 0 0;
}

.radwarePopup ul li {
  color: #111111;
  font-weight: 300;
  letter-spacing: -0.010em;
}

.huaweiPopup {
  width: 100%;
  max-width: 860px;
}

.huaweiPopup .inner {
  padding: 60px 30px 30px;
}

.huaweiPopup .itemBox {
  padding: 0 100px 50px;
}

.huaweiPopup .img {
  padding: 80px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.huaweiPopup p span {
  display: block;
  font-size: 1.6rem;
  font-weight: 400;
  margin: 8px 0;
}

.alcatelPopup {
  max-width: 1200px;
}

.alcatelPopup .itemBox {
  padding: 0 100px 50px;
}

.alcatelPopup .img {
  padding: 80px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.alcatelPopup ul {
  border-top: 1px solid #777777;
}

.alcatelPopup ul li {
  border-bottom: 1px solid #dddddd;
  padding: 20px 40px;
}

.alcatelPopup p {
  font-size: 1.8rem;
  letter-spacing: -0.025em;
}

.alcatelPopup p span {
  display: block;
  font-size: 1.6rem;
  font-weight: 400;
  margin: 8px 0;
}

.support * {
  font-family: 'pretendard',
 sans-serif;
}

.support .subFlex > *:first-child {
  max-width: 450px;
  padding: 0 60px 0 0;
}

.support.detailPage .leftTitle ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.support.detailPage .leftTitle ul li ul {
  gap: 20px 0;
  margin: 20px 0 0;
}

.support.detailPage .leftTitle ul li ul li {
  cursor: pointer;
}

.support.detailPage .leftTitle p {
  gap: 0 6px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.support.detailPage .leftTitle p em {
  display: block;
  width: 8px;
}

.support .checkList {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (auto)[3];
      grid-template-columns: repeat(3, auto);
  gap: 10px 14px;
  margin: 20px 0 0;
}

.support .checkList label {
  gap: 0 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.support .checkList label input {
  width: 16px;
  height: 16px;
  border: 1px solid #d6d6d6;
  cursor: pointer;
}

.support .checkList label input:checked {
  background: url("/img/sub/checkIcon.png") no-repeat center;
}

.support .checkList label span {
  color: #777777;
  font-size: 1.4rem;
  font-weight: 300;
}

.support .searchBox {
  width: 450px;
  height: 45px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-bottom: 1px solid #111111;
  padding: 0 6px;
  margin: 0 0 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.support .searchBox input {
  width: calc(100% - 35px);
  height: 100%;
  font-size: 1.8rem;
}

.support .searchBox input::-webkit-input-placeholder {
  color: #cccccc;
  font-size: 1.8rem;
  font-weight: 300;
}

.support .searchBox input:-ms-input-placeholder {
  color: #cccccc;
  font-size: 1.8rem;
  font-weight: 300;
}

.support .searchBox input::-ms-input-placeholder {
  color: #cccccc;
  font-size: 1.8rem;
  font-weight: 300;
}

.support .searchBox input::placeholder {
  color: #cccccc;
  font-size: 1.8rem;
  font-weight: 300;
}

.support .searchBox i {
  color: #111111;
  font-size: 2.4rem;
}

.support h4 {
  color: #111111;
  margin: 50px 0 15px;
}

.support .tableBox {
  border-top: 2px solid #111111;
  border-bottom: 1px solid #777777;
}

.support table th,
.support table td {
  height: 55px;
  border-bottom: 1px solid #dddddd;
}

.support table th {
  background: #f5f5f5;
  color: #111111;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -0.010em;
}

.support table td {
  color: #777777;
  font-size: 1.5rem;
  font-weight: 300;
  text-align: center;
}

.support table td.subject {
  color: #111111;
  font-size: 1.7rem;
  font-weight: 500;
}

.support table td.left {
  text-align: left;
	padding: 20px;
}

.careers h3 {
  line-height: 1.2727;
  font-family: 'pretendard',
 sans-serif;
}

.careers h6 {
  font-size: 2.4rem;
  margin: 0 0 40px;
}

.ir *,
.financial * {
	color: #111;
  font-family: 'pretendard',
 sans-serif;
}

.financial p {
	margin: 10px 0 20px;
}

.financial .boardBox table td.left {
	color: #222;
	font-size: 1.8rem;
	font-weight: 500;
	padding: 0 20px;
}

.financial .boardBox table td.left.sub {
	color: #333;
	font-size: 1.7rem;
	font-weight: 400;
	padding: 0 30px;
}

.talent .icon {
  background: #ffffff;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.talent .imgBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 18.95% 100px 0;
  overflow: hidden;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.talent .imgBox.img1 {
  background-image: url("/img/sub/careers/talentImg1-1.jpg");
}

.talent .imgBox.img2 {
  background-image: url("/img/sub/careers/talentImg1-2.jpg");
}

.talent .imgBox.img3 {
  background-image: url("/img/sub/careers/talentImg1-3.jpg");
}

.talent .imgBox.img4 {
  background-image: url("/img/sub/careers/talentImg1-4.jpg");
}

.talent .imgBox.img5 {
  background-image: url("/img/sub/careers/talentImg1-5.jpg");
}


.talent .imgBox .icon {
  width: 185px;
  height: 185px;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
}

.talent .imgBox em {
  color: #ffffff;
  -webkit-transform: translateY(0.175em);
          transform: translateY(0.175em);
}

.talent dl {
  padding: 60px 90px 130px;
}

.talent dl * {
  color: #111111;
}

.talent dl.left {
  text-align: left;
}

.talent dl.right {
  text-align: right;
}

.talent dl dt {
  margin: 0 0 25px;
}

.talent dl dd {
  font-size: 2.0rem;
  font-weight: 300;
  letter-spacing: -0.025em;
  line-height: 1.28;
}

.talent .gridBox {
  gap: 15px;
}

.talent .gridBox .item {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 50px 0;
  background: #f5f5f5;
  padding: 55px 0 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.talent .gridBox .icon {
  width: 190px;
  height: 190px;
}

.talent .gridBox p {
  color: #111111;
  font-size: 2.4rem;
  font-weight: 700;
  font-family: 'pretendard',
 sans-serif;
}

.recruit .step .itemBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.recruit .step .item,
.recruit .step .arrow {
  border-radius: 50%;
}

.recruit .step .item {
  width: calc((100% - 48px) / 4);
  background: #ffffff;
  border-radius: 50%;
  padding: calc(((100% - 48px)/4) / 2) 0;
  position: relative;
}

.recruit .step .inner {
  width: 100%;
  gap: 35px 0;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.recruit .step .arrow {
  width: 36px;
  height: 36px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background: #5c85c3;
  color: #ffffff;
  margin: 0 -10px;
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.recruit .step h5 {
  color: #111111;
}

.recruit .step em {
  font-size: 1.4rem;
}

.recruit .job .itemBox {
  border-top: 1px solid #111111;
}

.recruit .job .item {
  border-bottom: 1px solid #e1e1e1;
  padding: 45px 45px 45px 0;
}

.recruit .job .item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.recruit .job .item a > *:not(dl) {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.recruit .job .item a em {
  width: 215px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.recruit .job dl *,
.recruit .job .date {
  font-family: 'pretendard',
 sans-serif;
}

.recruit .job dl dt {
  font-size: 2.0rem;
  margin: 0 0 25px;
}

.recruit .job dl dd {
  height: 1.08em;
  color: #111111;
  -webkit-line-clamp: 1;
  overflow: hidden;
  word-wrap: break-word;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

.recruit .job .date {
  display: block;
  color: #aaaaaa;
  font-size: 1.8rem;
  margin: 0 80px 0 auto;
}

.recruit .job .state {
  width: 125px;
  height: 125px;
  background: #f5f5f5;
  border-radius: 50%;
  color: #5c85c3;
  font-size: 2.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.recruit .job .state.off {
  color: #777777;
}

.recruit .job .more {
  width: 290px;
  height: 75px;
  background: #111111;
  color: #ffffff;
  font-size: 2.0rem;
  margin: 60px auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.accounting * {
  color: #111;
  font-family: "Pretendard", sans-serif
}

.accounting .tabTitle {
  justify-content: flex-start;
}

.accounting .contents > div {
  margin: 90px 0 0;
}

.accounting .textBox,
.accounting .dlBox,
.accounting .contents ul,
.accounting .contents ol {
  display: flex;
  flex-direction: column
}

.accounting .contents p,
.accounting .contents span {
  font-size: 1.8rem;
  line-height: 1.5555;
}

.accounting .contents ul li,
.accounting .contents ol li {
  display: flex;
  gap: 0 5px;
}

.accounting .contents ul li span,
.accounting .contents ol li span {
  display: block;
  width: 15px;
}

.accounting .chapter .textBox {
  gap: 100px 0;
}

.accounting .chapter .title {
  margin: 0 0 50px
}

.accounting .chapter .title b {
  color: #5c85c3;
  font-size: 2.0rem
}

.accounting .chapter .title h4 {
  color: #222;
  font-weight: 700;
  margin: 25px 0 0
}

.accounting .chapter .dlBox {
  gap: 60px 0
}

.accounting .chapter dl dt {
  font-size: 2.4rem;
  font-weight: 700;
  margin: 0 0 20px
}

.accounting .chapter ul {
  gap: 15px 0;
  padding: 10px;
}

.accounting .chapter ol {
  gap: 12px 0;
  padding: 12px 0 0;
}

.accounting .chapter ul li {
  font-size: 1.8rem;
}

.accounting .chapter ol li {
  font-weight: 300
}

.accounting .apply p.colorM {
  margin: 40px 0 30px;
}

.accounting .apply h5 {
  font-size: 1.9rem;
  font-weight: 500;
  margin: 40px 0 10px;
}

.accounting .enquiryBox {
  border-top: 1px solid #111;
}

.accounting .enquiryBox ul li {
  gap: 0 20px;
}
.accounting .enquiryBox .inputFile span {
  width: 100%;
  display: flex;
}


/*2022-12-22 김승준 */
.borad_list .table_box {
    margin-top: 15px;
}
.borad_list .table_box table {}
.borad_list .table_box table tbody {
    border-top: 1px solid #222222;
}
.borad_list .table_box table tbody th {
    position: relative;
    font-weight: 500;
    font-size: 15px;
    color: #222;
    text-transform: uppercase;
    border-bottom: 1px solid #dddddd;
    padding: 20px 0;
    box-sizing: border-box;
}
.borad_list .table_box table tbody th::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 1px;
    height: 10px;
    background: #ddd;
    transform: translateY(-50%);
}
.borad_list .table_box table tbody th:last-of-type::after {
    display: none;
}
.borad_list .table_box table tbody td {
    font-weight: 300;
    font-size: 16px;
    color: #999999;
    text-transform: uppercase;
    border-bottom: 1px solid #dddddd;
    text-align: center;
    padding: 20px 0;
    box-sizing: border-box;
}
.borad_list .table_box table tbody td a {
    display: inline-block;
    vertical-align: top;
    width: 100%;
    font-size: 16px;
    font-weight: 400;
    color: #444444;
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.5;
}
.borad_list .table_box table tbody td a .lock {
    color: #009ce1;
}
.borad_list .table_box table tbody td a .comment {
    font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
    color: #0f4391;
    position: relative;
    top: -1px;
}
/* 상세 */
.view_ctn {
    border-top: 1px solid #222; margin-top: 80px;
}
.view_ctn .tit {
    text-align: center;
    border-bottom: 1px solid #dddddd;
    box-sizing: border-box;
    padding: 30px 0;
}
.view_ctn .tit h4 {
    font-weight: 600;
    font-size: 32px;
    color: #222;
    margin-bottom: 15px;
}
.view_ctn .tit p {
    font-weight: 300;
    font-size: 16px;
    color: #999;
}
.view_ctn .tit p i {}
.view_ctn .info {
    box-sizing: border-box;
    padding: 30px 0;
    font-size: 16px;
}
.view_ctn .view_page {
    border-top: 1px solid #ddd;
}
.view_ctn .view_page dl {
    display: flex;
}
.view_ctn .view_page dl dt {
    width: 200px;
    position: relative;
    border-bottom: 1px solid #ddd;
    font-weight: 500;
    font-size: 16px;
    color: #666;
    padding: 20px;
}
.view_ctn .view_page dl dt i {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}
.view_ctn .view_page dl dt::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -1px;
    width: 1px;
    height: 14px;
    background: #ddd;
    transform: translateY(-50%);
}
.view_ctn .view_page dl dd {
    width: calc(100% - 200px);
    border-bottom: 1px solid #ddd;
    padding: 20px 25px;
}
.view_ctn .view_page dl dd a {
    display: inline-block;
    vertical-align: top;
    width: 100%;
    font-size: 16px;
    color: #666;
    line-height: 1.5;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.view_ctn .comment_box {
    background: #f9f9f9;
    box-sizing: border-box;
    padding: 45px;
    margin-top: 50px;
}
.view_ctn .comment_box dl {
    display: flex;
}
.view_ctn .comment_box dl dt {
    position: relative;
    width: 230px;
    font-weight: 600;
    font-size: 18px;
    color: #009ce1;
}
.view_ctn .comment_box dl dt::after {
    content: "";
    position: absolute;
    top: 7px;
    right: -1px;
    width: 1px;
    height: 14px;
    background: #ddd;
}
.view_ctn .comment_box dl dt i {
    position: relative;
    top: 2px;
    margin-right: 5px;
}
.view_ctn .comment_box dl dd {
    width: calc(100% - 230px);
    margin-top: 2px;
    box-sizing: border-box;
    padding-left: 30px;
}
.view_ctn .comment_box dl dd p {
    font-size: 16px;
    color: #666666;
}
.view_ctn .comment_box dl dd ul {
    display: flex;
    margin-top: 30px;
}
.view_ctn .comment_box dl dd ul li {
    position: relative;
    font-weight: 300;
    font-size: 15px;
    color: #999;
    margin-right: 30px;
}
.view_ctn .comment_box dl dd ul li::after {
    content: "";
    position: absolute;
    top: 4px;
    right: -16px;
    width: 1px;
    height: 14px;
    background: #ddd;
}
.view_ctn .comment_box dl dd ul li:last-of-type::after {
    display: none;
}
.view_ctn .go_list {
    text-align: center;
    margin-top: 50px;
}
.view_ctn .go_list a {
    display: inline-block;
    vertical-align: top;
    width: 220px;
    height: 60px;
    line-height: 60px;
    font-weight: 500;
    font-size: 17px;
    color: #fff;
    background: #009ce1;
}
.view_ctn .go_list a i {
    margin-right: 6px;
    position: relative;
    top: 1px;
}