@charset "UTF-8";

/* .font29 {
  --fontsize: 2.9rem;
  font-size: var(--fontsize);
}

.font36 {
  --fontsize: 3.6rem;
  font-size: var(--fontsize);
}

.font40 {
  --fontsize: 4rem;
  font-size: var(--fontsize);
}

.font42 {
  --fontsize: 4.2rem;
  font-size: var(--fontsize);
}

.font46 {
  --fontsize: 4.6rem;
  font-size: var(--fontsize);
}

.font48 {
  --fontsize: 4.8rem;
  font-size: var(--fontsize);
}

.font52 {
  --fontsize: 5.2rem;
  font-size: var(--fontsize);
}

.font54 {
  --fontsize: 5.4rem;
  font-size: var(--fontsize);
}

.font58 {
  --fontsize: 5.8rem;
  font-size: var(--fontsize);
}

.font64 {
  --fontsize: 6.4rem;
  font-size: var(--fontsize);
}

.font96 {
  --fontsize: 9.6rem;
  font-size: var(--fontsize);
} */

/*
font-family: 'Nanum Gothic', sans-serif;
font-family: 'Noto Sans KR', sans-serif;
font-family: 'Kanit', sans-serif;
font-family: 'Montserrat', sans-serif;
*/

/*safari input*/
input[type="button"],
input[type="submit"] {
  -webkit-appearance: none;
}

/* input 기본 스타일 초기화 */
input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* IE10 이상에서 input box 에 추가된 지우기 버튼 제거 */
input::-ms-clear {
  display: none;
}

/* input type number 에서 화살표 제거 */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* Select box 스타일 초기화  */
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* IE 에서 Select box 화살표 제거 */
select::-ms-expand {
  display: none;
}

/*드래그색상 정의*/
/* ::-moz-selection { background:#263658; color:#fff; }
::selection { background:#263658; color:#fff; } */

/*기본태그 정의*/
html,
body {
  margin: 0;
  padding: 0;
  word-break: keep-all;
  font-size: 62.5%;
}

/* 모바일 가로모드 폰트확대 방지 */
body {
  -webkit-text-size-adjust: none;
}

html,
body,
table,
input,
textarea {
  color: #666666;
}

article,
aside,
details,
figcaption,
figure,
hgroup,
menu,
nav,
section {
  display: block;
}

img {
  display: inline-block;
}

button {
  padding: 0;
  outline: none;
}

/* for AXISJ */
/* body,
select,
input,
a,
button {
  line-height: 1.2;
} */

/* 링크 테두리 제거 */
a {
  outline: none;
}

/* 마진과 패딩의 초기화 */
div,
pre,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
address,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
input,
select,
textarea {
  margin: 0;
  padding: 0;
}

/* 헤더 폰트 사이즈 초기화 */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

/* 리스트의 스타일 제거 */
ul,
ol,
li {
  list-style: none;
}

em,
address {
  font-style: normal;
}

/* 테이블 스타일 초기화 */
table {
  border-collapse: collapse;
  border-spacing: 0;
  table-layout: fixed;
  width: 100%;
  border: 0;
}

table th {
  word-wrap: break-word;
}

table td {
  word-wrap: break-word;
}

.animation {
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}

.animation.down {
  -webkit-transform: translateY(-60px);
  transform: translateY(-60px);
}

.animation.up {
  -webkit-transform: translateY(60px);
  transform: translateY(60px);
}

.animation.left {
  -webkit-transform: translateX(60px);
  transform: translateX(60px);
}

.animation.right {
  -webkit-transform: translateX(-60px);
  transform: translateX(-60px);
}

.animation.opacity {
  opacity: 0;
}

.animation.on.down,
.animation.on.up {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.animation.on.left,
.animation.on.right {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.animation.on.opacity {
  opacity: 1;
}

.flexBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.flexBox.column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.tabContents > div {
  position: absolute;
  top: -222222px;
  left: -222222px;
}

.tabContents > div.on {
  position: relative;
  top: auto;
  left: auto;
}

.colorM {
  color: #3465bf !important;
  font-weight: bold !important;
}

/**************** 팝업 *******************/
.popup {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  display: none;
  z-index: 999;
}

.popup .pop_close {
  position: absolute;
  top: 5%;
  right: 5%;
  color: white;
  font-size: 20px;
}

.popup img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media screen and (max-width: 768px) {
  .popup img {
    width: 100%;
  }
}

/* 서브영역 */

#sv {
  width: 100%;
  padding: 0;
  margin-bottom: 30px;
}

#sv .bg {
  padding: 13.54185% 0;
  position: relative;
  -o-object-fit: cover;
  object-fit: cover;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  border-radius: 25px;
}

#sv .bg.bg1 {
  background-image: url("../../img/sub/product_img01_Turbo.jpg");
}

#sv .bg.bg2 {
  background-image: url("../../img/sub/product_img02_Sirocco.jpg");
}

#sv .bg.bg3 {
  background-image: url("../../img/sub/product_img03_Airfoil.jpg");
}

#sv .bg.bg4 {
  background-image: url("../../img/sub/product_img04_Portable.jpg");
}

#sv .bg.bg5 {
  background-image: url("../../img/sub/product_img05_Duct_In_Line-Fan.jpg");
}

#sv .bg::after {
  content: "";
  display: block;
  background: #ffffff;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
  width: 100%;
  height: 100%;
}

#sv .bg.on::after {
  width: 0;
}

#sv .sub-titleBox {
  margin-bottom: 50px;
}

#sv h2 {
  color: #111111;
  font-weight: 600;
  font-size: 32px;
}

#sv #lnb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 60px;
  margin: 60px 0 45px;
}

#sv #lnb br {
  display: none;
}

#sv #lnb li * {
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

#sv #lnb li a {
  color: #cccccc;
  font-size: 16px;
  font-weight: 700;
  position: relative;
  font-family: "Noto Sans KR", sans-serif;
}

#sv #lnb li a::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background: #3465bf;
  position: absolute;
  left: 0;
  bottom: -4px;
}

#sv #lnb li:hover a,
#sv #lnb li.on a {
  color: #3465bf;
}

#sv #lnb li.on a::after {
  width: 100%;
}

/* .subPage {
  padding: 150px 0 200px;
} */

.subPage * {
  font-family: "Noto Sans KR", sans-serif !important;
  font-weight: 500;
}

.subPage em {
  font-style: normal !important;
}

.subPage .flexBox.flexBox2 {
  gap: 30px;
  margin-bottom: 70px;
}

.subPage .flexBox.flexBox2 .boxBox {
  flex: 1;
}

.subPage .flexBox.flexBox2 .boxBox .product_table {
  width: 100%;
}

.subPage .flexBox.flexBox2 .boxBox .product_table thead {
  background-color: #f5f5f5;
}

.subPage .flexBox.flexBox2 img {
  max-width: 100%;
}

.subPage .flexBox.flexBox2 .center_img {
  display: block;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .subPage .flexBox.flexBox2 {
    flex-direction: column;
  }
}

.subPage .subTitle {
  margin: 0 0 120px;
}

.subPage .subTitle b {
  display: block;
  margin: 0 0 20px;
}

.subPage .subTitle p {
  color: #333333;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5555;
  margin: 15px 0 0;
}

.subPage .subTitle p.list-style {
  padding-left: 10px;
  position: relative;
}

.subPage .subTitle p.list-style::before {
  content: " · ";
  display: inline-block;
  position: absolute;
  left: 0;
}

.subPage .smallTitle {
  color: #3465bf;
  font-size: 2rem;
  font-weight: 600;
}

.subPage h3 {
  color: #111111;
  font-size: 28px;
  margin-bottom: 30px;
}

.subPage .product_chart {
  width: 100%;
}

.subPage .product_chart .product_chart_title {
  text-align: center;
  margin-bottom: 30px;
  padding-bottom: 15px;
  position: relative;
}

.subPage .product_chart .product_chart_title::after {
  content: "";
  position: absolute;
  display: inline-block;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 1px;
  background-color: #3465bf;
}

.subPage .product_chart ul {
  cursor: pointer;
}

.subPage .product_chart img {
  display: block;
  margin: 0 auto;
  width: 70%;
}

@media screen and (max-width: 1080px) {
  .subPage h3 {
    font-size: 18px;
  }

  .subPage .product_chart img {
    width: 80%;
  }
}

@media screen and (max-width: 768px) {
  .subPage h3 {
    font-size: 16px;
  }
  .subPage .product_chart img {
    width: 90%;
  }
}

@media screen and (max-width: 500px) {
  .subPage .product_chart img {
    width: 100%;
  }
}

.subPage .font52:not(.textCenter) {
  color: #aaaaaa;
}

.subPage .font52 {
  font-weight: 700;
  line-height: 1.3076;
}

.subPage h5 {
  color: #3465bf;
  font-size: 2.4rem;
  font-weight: 700;
}

.subPage h5.small_tit {
  font-size: 20px;
  margin-top: 30px;
}

.subPage h5.black {
  color: #111111;
}

.subPage h6,
.subPage p.big {
  font-size: 18px;
}

.subPage p.big {
  color: #333333;
  font-weight: 500;
  line-height: 1.7;
}

.subFlex > * {
  width: 100%;
}

.subFlex > *:first-child {
  max-width: 300px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.subFlex > h3 {
  color: #111111;
  font-weight: 600;
  line-height: 1.3076;
}

.grid3Box {
  display: -ms-grid;
  display: grid;
  /* -ms-grid-columns: (1fr) [3]; */
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.grid3Box.imgBox img {
  width: 100%;
}
.grid4Box.certifi {
  display: -ms-grid;
  display: grid;
  /* -ms-grid-columns: (1fr) [4]; */
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.gap180 {
  gap: 180px 0;
}

.gap150 {
  gap: 150px 0;
}

.gap120 {
  gap: 120px 0;
}

.gap80 {
  gap: 80px 0;
}

.bg {
  background: #f8f8f8;
}

.border {
  border: 1px solid #dddddd;
}

.textCenter {
  text-align: center;
}

.paddingBox {
  padding: 180px 0;
}

.paddingBox.topX {
  padding: 0 0 180px;
}

.paddingBox.bottomX {
  padding: 180px 0 0;
}

.background {
  position: relative;
}

.infoBox h5 {
  margin: 0 0 20px;
}

.infoBox p {
  color: #555555;
  font-size: 2rem;
  font-weight: 300;
  margin: 20px 0 0;
}

.scrollTab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 10px;
}

.scrollTab li button {
  width: 100%;
  min-height: 100%;
  background: #eeeeee;
  border-radius: 100px;
  color: #cccccc;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.2;
  padding: 26px 60px;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  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;
}

.scrollTab li:hover button,
.scrollTab li.on button {
  background: #3465bf;
  color: #ffffff;
}

.tableBox table {
  border: 1px solid #000000;
}

.tableBox table th,
.tableBox table td {
  height: 45px;
}

.tableBox table th:last-child,
.tableBox table td:last-child {
  border-left-width: 1px;
  border-left-style: solid;
  border-right: none;
}

.tableBox table th {
  background: #222222;
  border-right: 1px solid #ffffff;
  border-bottom: 1px solid #ffffff;
  border-left-color: #ffffff;
  color: #ffffff;
  font-size: 1.7rem;
  font-weight: 500;
}

.tableBox table td {
  border-right: 1px solid #000000;
  border-bottom: 1px solid #000000;
  border-left-color: #000000;
  color: #333333;
  font-size: 1.5rem;
  font-weight: 500;
  text-align: center;
}

.circleNumber {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 25px 0;
  padding: 40px;
}

.circleNumber li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 15px;
}

.circleNumber em {
  width: 24px;
  height: 24px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  background: #3465bf;
  border-radius: 50%;
  color: #ffffff;
  font-size: 1.7rem;
  font-weight: 600;
  margin: 0.2em 0 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;
}

.circleNumber p,
.circleNumber p b {
  line-height: 1.7;
}

.circleNumber p {
  color: #555555;
  font-size: 1.8rem;
  font-weight: 300;
}

.circleNumber p b {
  font-weight: 700;
}

.overview .information .item {
  border: 1px solid #dddddd;
  border-radius: 10px;
  padding: 40px 30px;
}

.overview .information dl {
  margin: 100px 0 0;
}

.overview .information dl dt {
  color: #aaaaaa;
  font-size: 1.8rem;
  font-weight: 500;
  margin: 0 0 20px;
}

.overview .information dl dd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: 0 5px;
  color: #333333;
  font-size: 2.4rem;
  font-weight: 700;
}

.overview .information dl dd em {
  font-size: 1.8rem;
  font-weight: 400;
}

.overview h5 {
  margin: 0 0 30px;
}

.overview .business .itemBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 90px;
}

.overview .business .itemBox * {
  text-align: center;
}

.overview .business .item {
  width: 100%;
}

.overview .business .item:nth-child(2) .circle::before,
.overview .business .item:nth-child(2) .circle::after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background: url("/img/sub/overviewPlus.png") no-repeat center/cover;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.overview .business .item:nth-child(2) .circle::before {
  left: -55px;
}

.overview .business .item:nth-child(2) .circle::after {
  right: -55px;
}

.overview .business .circle {
  width: 100%;
  background: #f8f8f8;
  border-radius: 50%;
  padding: 50% 0;
  position: relative;
  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;
}

.overview .business .inner {
  padding: 95px 0 0;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.overview .business .icon {
  margin: 0 0 40px;
}

.overview .business h6 {
  color: #333333;
  font-size: 2.2rem;
  font-weight: 600;
}

.overview .business h6 em {
  display: block;
  color: #666666;
  font-size: 1.8rem;
  font-weight: 400;
  margin: 10px 0 0;
}

.overview .business p {
  color: #555555;
  margin: 40px 0 0;
}

.overview .certification h6 {
  color: #222;
  font-size: 2rem;
}

.overview .certification .itemBox {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(3, minmax(auto, 285px));
  gap: 60px 20px;
  margin: 20px 0 0;
}

.overview .certification .item {
  width: 100%;
}

.overview .certification .img {
  width: 100%;
  padding: 67.545% 0;
  position: relative;
}

.overview .certification .img img {
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.overview .certification p {
  font-size: 1.8rem;
  letter-spacing: -0.02em;
  text-align: center;
  margin: 20px 0 0;
}

.philosophy .vision {
  padding: 22.365% 0;
  margin: 0 0 200px;
  position: relative;
  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;
}

.philosophy .vision::before,
.philosophy .vision::after {
  content: "";
  width: 100vw;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.philosophy .vision::before {
  background: url("/img/sub/philosophyImg1.jpg") no-repeat left center/50% auto;
}

.philosophy .vision::after {
  top: 72%;
  background: url("/img/sub/philosophyPoint.png") no-repeat center bottom/100%
    auto;
}

.philosophy .vision .text {
  width: 50%;
  padding: 0 0 0 100px;
  margin: 0 0 0 auto;
}

.philosophy .vision h3 {
  font-weight: 200;
  line-height: 1.2931;
  margin: 20px 0 0;
}

.philosophy .value {
  margin: 40px 0 0;
}

.philosophy .value .itemBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 100px 0;
  margin: 120px 0 0;
}

.philosophy .value .item {
  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;
}

.philosophy .value .circle,
.philosophy .value p {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.philosophy .value .circle {
  width: 200px;
  height: 200px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 35px 0;
  border-radius: 50%;
  color: #333333;
  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;
}

.philosophy .value .circle.blue,
.philosophy .value .circle.gray {
  color: #ffffff;
}

.philosophy .value .circle.blue {
  background: #3465bf;
}

.philosophy .value .circle.gray {
  background: #333333;
}

.philosophy .value .circle.border {
  border: 1px solid #dddddd;
}

.philosophy .value h6 {
  font-size: 2.2rem;
  font-weight: 700;
}

.philosophy .value .line {
  width: 100%;
  gap: 0 10px;
  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;
}

.philosophy .value .line span {
  width: 100%;
  display: block;
  background: #dddddd;
}

.philosophy .value .line span:first-child {
  height: 1px;
}

.philosophy .value .line span:last-child {
  width: 5px;
  height: 5px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  border-radius: 50%;
}

.philosophy .value p {
  width: 100%;
  max-width: 1080px;
  background: #f8f8f8;
  color: #555555;
  line-height: 1.7;
  padding: 70px 60px;
}

.history .itemBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 0 11.2%;
}

.history .imgBox {
  width: 100%;
  max-width: 670px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding: 25.8335% 0;
  position: relative;
  overflow: hidden;
}

.history .item .img,
.history .item span {
  opacity: 0;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}

.history .item .img {
  width: 100%;
  height: 0;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  overflow: hidden;
}

.history .item .img img {
  position: absolute;
}

.history .item span {
  color: #ffffff;
  font-size: 6.8rem;
  font-weight: 600;
  letter-spacing: 0.4em;
  position: absolute;
  top: 60px;
  right: 40px;
}

.history .item.on .img,
.history .item.on span {
  opacity: 1;
}

.history .item.on .img {
  height: 100%;
}

.history .item.on span {
  letter-spacing: -0.02em;
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}

.history .textBox,
.history .listBox,
.history .list,
.history dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.history .textBox {
  width: 100%;
  position: relative;
}

.history .bar {
  width: 1px;
  height: calc(100% - 1.2em);
  background: #dddddd;
  margin: 1.2em 0 0;
  position: absolute;
  left: 4.5px;
  overflow: hidden;
}

.history .bar span {
  display: block;
  width: 1px;
  height: 0;
  background: #3465bf;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.history .listBox,
.history .list {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.history .listBox {
  width: 100%;
  gap: 200px 0;
  padding: 0 45px;
  overflow-y: scroll;
}

.history .listBox::-webkit-scrollbar {
  width: 0;
}

.history .list {
  gap: 100px 0;
}

.history dl {
  position: relative;
}

.history dl::before {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  background: #3465bf;
  border-radius: 50%;
  position: absolute;
  top: 1.12em;
  left: -43.5px;
}

.history dl dt {
  width: 145px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  color: #111111;
  font-size: 3.2rem;
  font-weight: 600;
  line-height: 1.4;
  font-family: "Noto Sans KR", sans-serif;
}

.history dl p,
.history dl p b {
  line-height: 2.2;
}

.history dl p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 5px;
  color: #555555;
  font-size: 2rem;
  font-weight: 300;
}

.history dl p::before {
  content: "-";
}

.organization .imgBox {
  text-align: center;
}

.ci h6 {
  color: #333333;
  font-weight: 500;
  line-height: 1.3;
  margin: 0 0 20px;
}

.ci p {
  color: #555555;
  font-size: 1.7rem;
  font-weight: 300;
  line-height: 1.5555;
}

.ci .br640 {
  display: none;
}

.ci .border,
.ci .bg {
  text-align: center;
}

.ci .border p,
.ci .bg p {
  text-align: left;
}

.ci .info h6 {
  margin: 0 0 10px;
}

.ci .grid2Box {
  display: -ms-grid;
  display: grid;
  /* -ms-grid-columns: (1fr) [2]; */
  grid-template-columns: repeat(2, 1fr);
}

.ci .grid2Box .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.ci .grid2Box .item h6 {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.ci .grid2Box .item .border {
  height: 100%;
}

.ci .border {
  padding: 60px 30px;
}

.ci .concept .border {
  padding: 120px 20px;
}

.ci .concept .text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 60px 0;
}

.ci .concept .download {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  gap: 0 10px;
}

.ci .concept .download a {
  width: 280px;
  height: 74px;
  gap: 0 20px;
  border: 1px solid #3465bf;
  border-radius: 10px;
  color: #3465bf;
  font-size: 1.8rem;
  font-weight: 500;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  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;
}

.ci .concept .download a img {
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.ci .concept .download a:hover {
  background: #3465bf;
  color: #ffffff;
}

.ci .concept .download a:hover img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}

.ci .basic .itemBox {
  gap: 40px 20px;
}

.ci .basic .border {
  padding: 60px 30px;
}

.ci .basic img {
  max-width: 230px;
}

.ci .basic img.gray {
  filter: grayscale(1) brightness(2.2);
}

.ci .basic img.korean {
  max-width: 156px;
}

.ci .basic .withText {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 60px 0;
  padding: 60px 30px 30px;
}

.ci .basic .withText dl {
  text-align: left;
  margin: auto 0 0;
}

.ci .basic .withText dl dt {
  color: #333333;
  font-size: 1.7rem;
  font-weight: 600;
}

.ci .basic .withText dl .pBox {
  margin: 10px 0;
}

.ci .basic .withText dl p,
.ci .basic .withText dl span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 4px;
}

.ci .basic .withText dl p {
  line-height: 1.2941;
}

.ci .basic .withText dl p::before {
  content: "-";
}

.ci .basic .withText dl span {
  color: #888888;
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1.2666;
}

.ci .basic .withText dl span::before {
  content: "*";
}

.ci .sloganA h6 {
  color: #111;
  margin: 0 0 2px;
}

.ci .sloganA .itemBox {
  /* -ms-grid-rows: (1fr) [2]; */
  grid-template-rows: repeat(2, 1fr);
  gap: 25px 20px;
  margin: -50px 0 0;
}

.ci .sloganA .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 40px 0;
  padding: 60px 30px 40px;
}

.ci .sloganA .item img {
  margin: auto 0;
}

.ci .sloganA .item p {
  font-size: 1.6rem;
}

.ci .sloganA .item p b {
  display: inline-block;
  width: 100%;
  font-weight: 500;
}

.ci .sloganB .bg,
.ci .sloganB .logoBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 60px 0;
}

.ci .sloganB .bg {
  padding: 60px 30px 40px;
}

.ci .caution .itemBox {
  gap: 0 20px;
}

.ci .caution .logoX ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 12px;
  margin: 0 0 20px;
}

.ci .caution .border {
  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;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.ci .caution .withText {
  gap: 40px 0;
  padding: 60px 30px 30px;
}

.place .scrollTab {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.place .itemBox {
  margin: 120px 0 0;
}

.place hr {
  width: 100%;
  height: 1px;
  background: #dddddd;
  border: none;
  margin: 0;
}

.place .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 40px;
}

.place .text,
.place .img {
  width: 100%;
}

.place .text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 30px 0 0;
}

.place .text a {
  width: 100%;
  height: 75px;
  gap: 0 20px;
  border: 1px solid #dddddd;
  border-radius: 5px;
  color: #333333;
  font-size: 2rem;
  font-weight: 600;
  margin: auto 0 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;
}

.place h3 {
  color: #111111;
  font-weight: 500;
  line-height: 1.2;
}

.place .info {
  margin: 60px 0 0;
}

.place .info dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.place .info dl * {
  font-size: 1.8rem;
  line-height: 2.2;
}

.place .info dl dt {
  width: 145px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  color: #333333;
  font-weight: 500;
}

.place .info dl dd {
  color: #555555;
  font-weight: 300;
}

.place .img {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  max-width: 840px;
}

.place .thumbsSlide {
  width: 100%;
  overflow: hidden;
}

.place .thumbs img,
.place .swiper-slide img {
  min-width: 100%;
  min-height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.place .thumbs {
  width: 100%;
  padding: 28.5725% 0;
  position: relative;
}

.place .listSlideBox {
  margin: 20px 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;
}

.place .listSlideBox .swiper-slide {
  padding: 4.6095% 0;
  cursor: pointer;
}

.place .listSlideBox button {
  display: block;
  width: 8px;
  height: 16px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.place .listSlideBox .prevButton {
  left: 0;
}

.place .listSlideBox .nextButton {
  right: 0;
}

.place .listSlide {
  width: 100%;
  max-width: 781px;
  max-width: calc(100% - 59px);
  overflow: hidden;
}

.capabillity p {
  line-height: 1.5555;
}

.capabillity .infoBox p {
  font-size: 1.8rem;
}

.system .itemBox {
  display: -ms-grid;
  display: grid;
  /* -ms-grid-columns: (1fr) [4]; */
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.system .item .img {
  border: 1px solid #dddddd;
  padding: 42.615% 0;
  position: relative;
}

.system .item .img img {
  max-width: calc(100% - 40px);
  max-height: calc(100% - 60px);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.system .item p {
  background: #3465bf;
  color: #ffffff;
  font-size: 1.7rem;
  padding: 15px 10px;
  margin: 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;
}

.pouch .infoBox .border {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 80px 50px;
  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;
}

.pouch .infoBox .border .img {
  width: 60%;
}

.pouch .infoBox .border .img img {
  width: 100%;
}

.pouch .infoBox .tableBox {
  max-width: 350px;
}

.pouch .imgBox {
  margin: 40px 0;
}

.pouch .imgBox img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease-in;
}

.pouch .imgBox img:hover {
  transform: translateY(-10px);
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 1);
}

.circle .border,
.square .border {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 40px;
}

.circle .grid3Box,
.square .grid3Box {
  gap: 22px 10px;
}

.circle .item p,
.square .item p {
  color: #333333;
  font-size: 1.5rem;
  text-align: center;
  margin: 15px 0 0;
}

.circle .border {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.circle .arrow {
  margin: auto -10px;
  position: relative;
  z-index: 1;
}

.square .border {
  gap: 0 30px;
}

.square .itemBox {
  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;
}

.square .itemBox > p {
  color: #333333;
  font-size: 1.5rem;
  font-weight: 600;
  gap: 0 10px;
  margin: 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;
}

.square .itemBox .triangle {
  width: 0;
  height: 0;
  border-bottom: 10px solid #333333;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
}

.square .arrow {
  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;
}

.square .imgBox.big {
  width: 57.8285%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 0 20px;
}

.square .imgBox.big .img {
  width: calc(50% - 10px);
  padding: 23.7815% 0;
  position: relative;
}

.square .imgBox.big .img img {
  width: auto;
  max-width: inherit;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
}

.ethical .charter *,
.ethical .code * {
  font-family: "Noto Sans KR", sans-serif;
}

.ethical .management .itemBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 0 20px;
}

.ethical .management .circle {
  border-radius: 50%;
  position: relative;
}

.ethical .management .inner {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 25px 0;
  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;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.ethical .management .logo {
  width: 20%;
  background: #3465bf;
  padding: 10% 0;
}

.ethical .management .logo img {
  max-width: 120px;
}

.ethical .management .lineBox {
  width: 11%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.ethical .management .line {
  width: 100%;
  height: 0;
  border: 1px dashed #dddddd;
  position: relative;
}

.ethical .management .line span {
  display: block;
  width: 6px;
  height: 6px;
  background: #3465bf;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.ethical .management .textBox {
  width: calc(69% - 40px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 0 20px;
}

.ethical .management .item {
  width: 100%;
}

.ethical .management .item .circle {
  border: 1px solid rgba(45, 58, 128, 0.1);
  background: #ffffff;
  padding: 50% 0;
}

.ethical .management .item h6 {
  color: #111111;
  font-size: 2rem;
  font-weight: 600;
}

.ethical .management .pBox {
  padding: 0 20px;
  margin: 30px 0 0;
}

.ethical .management .pBox p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 5px;
  color: #555555;
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1.3076;
}

.ethical .management .pBox p::before {
  content: "·";
}

.ethical .code .scroll {
  height: 480px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 60px 0;
  padding: 40px;
  overflow-y: scroll;
}

.ethical .code .scroll::-webkit-scrollbar {
  width: 23px;
}

.ethical .code .scroll::-webkit-scrollbar-thumb {
  background: #cccccc;
  border-radius: 100px;
  background-clip: padding-box;
  border: 10px solid transparent;
}

.ethical .code .scroll::-webkit-scrollbar-track {
  background: #eeeeee;
  border-radius: 100px;
  border: 10px solid white;
}

.ethical .code h6 {
  color: #333333;
  font-size: 2rem;
  font-weight: 500;
}

.ethical .code .dlBox {
  margin: 20px 0 0;
}

.ethical .code .dlBox dl * {
  color: #555555;
  font-size: 1.7rem;
  line-height: 1.8;
}

.ethical .code .dlBox dl dt {
  font-weight: 500;
}

.ethical .code .dlBox p {
  font-weight: 300;
}

.ethical .informant .big {
  background: #f8f8f8;
  font-size: 1.8rem;
  padding: 40px;
  margin: 0 0 40px;
}

.ethical .informant ul li,
.ethical .informant ul p {
  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;
}

.ethical .informant ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 60px;
}

.ethical .informant ul .icon {
  width: 24px;
  height: 24px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  background: #3465bf;
  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;
}

.ethical .informant ul p {
  color: #333333;
  font-size: 1.8rem;
}

.ethical .informant ul p b {
  font-weight: 600;
}

.esg .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;
}

.esg .item > div {
  width: 50%;
}

.esg .text {
  padding: 0 0 0 100px;
}

.esg dl dt {
  color: #111111;
  font-weight: 500;
  margin: 10px 0 40px;
}

.esg dl p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 15px;
}

.esg dl p::before {
  content: "";
  display: block;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 3px;
  height: 3px;
  background: #3465bf;
  border-radius: 50%;
  margin: 0.8em 0 0;
}

.social .contents {
  margin: 60px 0 0;
}

.talent .itemBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.talent .item {
  width: 100%;
  text-align: center;
}

.talent hr {
  width: 1px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  background: #dddddd;
  border: none;
  margin: 0;
}

.talent .text {
  margin: 40px 0 0;
}

.talent h4 {
  color: #111111;
  font-weight: 700;
}

.talent .smallTitle {
  display: inline-block;
  margin: 10px 0 30px;
}

.talent p {
  color: #555555;
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1.5;
}

.personnel .itemBox {
  display: -ms-grid;
  display: grid;
  /* -ms-grid-columns: (1fr) [4]; */
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.personnel .item {
  height: 280px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 40px 0;
  border: 1px solid #dddddd;
  border-radius: 10px;
  text-align: center;
  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;
}

.personnel .item * {
  line-height: 1.5;
}

.personnel p {
  color: #333333;
  font-size: 2rem;
  font-weight: 600;
}

.personnel p em {
  display: block;
  color: #555555;
  font-size: 1.7rem;
  font-weight: 300;
}

.personnel span {
  font-size: 1.3rem;
  position: absolute;
  top: 20px;
  right: 20px;
}

.personnel hr {
  width: 100%;
  height: 1px;
  background: #dddddd;
  border: none;
  margin: 0;
}

.job .scrollTab {
  margin: -40px 0 80px;
}

.job dl {
  margin: 40px 0 0;
}

.job dl dt {
  gap: 0 20px;
  color: #111111;
  font-weight: 500;
  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;
}

.job dl dt em {
  font-weight: 700;
}

.job dl dd {
  color: #333333;
  font-size: 2.2rem;
  font-weight: 300;
  line-height: 1.3;
  margin: 30px 0 60px;
}

.job .tagBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px;
}

.job .tagBox span {
  display: inline-block;
  border: 2px solid #dddddd;
  border-radius: 100px;
  color: #cccccc;
  font-size: 1.8rem;
  font-weight: 700;
  padding: 10px 30px;
}

.recruit .contents,
.news .contents {
  margin: 60px 0 0;
}

.recruit .itemBox {
  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;
}

.recruit .item {
  border: 1px solid #dddddd;
  border-radius: 10px;
  position: relative;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.recruit .item::before {
  content: "";
  display: block;
  -webkit-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  opacity: 0;
  z-index: -1;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.recruit .item a {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 0 20px;
  padding: 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;
}

.recruit .text {
  width: 100%;
}

.recruit h5 {
  color: #111111;
  font-size: 2.8rem;
  font-weight: 500;
  margin: 0 0 15px;
  -webkit-line-clamp: 1;
  overflow: hidden;
  word-wrap: break-word;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

.recruit .date {
  color: #555555;
  font-weight: 300;
}

.recruit .state {
  width: 100px;
  height: 100px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  border-radius: 50%;
  font-size: 1.8rem;
  font-weight: 700;
  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 .state.on {
  background: #3465bf;
  color: #ffffff;
}

.recruit .state.off {
  color: #aaaaaa;
  background: #dddddd;
}

.recruit .item:hover {
  border-color: #000000;
}

.recruit .item:hover::before {
  opacity: 1;
}

/* form */
.paging {
  margin: 120px 0 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;
}

.paging a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #333333;
  font-size: 1.7rem;
  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;
}

.paging ul {
  gap: 0 5px;
  padding: 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;
}

.paging ul li {
  margin: 0 !important;
}

.paging ul li a {
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.paging ul li:hover a,
.paging ul li.on a {
  background: #3465bf;
  color: #ffffff;
  font-weight: 600;
}

.paging .arr {
  gap: 0 10px;
  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;
}

.paging .arr a {
  border: 1px solid #ddd;
}

select {
  border: none;
  outline: none;
  appearance: none;
  -o-appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  background: #f8f8f8 url("/img/sub/selectArrow.png") no-repeat
    calc(100% - 20px) center;
}

select::-ms-expand {
  display: none;
}
.selectX {
  display: none;
}
.searchBox.typeF {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 10px;
  margin: 0 0 80px;
}

.searchBox.typeF * {
  font-size: 1.8rem;
}

.searchBox.typeF > * {
  width: 100%;
  height: 80px;
  border-radius: 10px;
  padding: 0 20px;
}

.searchBox.typeF .select,
.searchBox.typeF button {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.searchBox.typeF .select {
  width: 23.35%;
  background: #f8f8f8;
  background: #f8f8f8 url("/img/sub/selectArrow.png") no-repeat
    calc(100% - 20px) center;
  color: #333333;
  font-weight: 500;
  position: relative;
}

.searchBox.typeF .selectCustom {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.searchBox.typeF .selectOptions {
  background: #ffffff;
  border-radius: 10px;
  border: 1px solid #dddddd;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 2;
  display: none;
}

.searchBox.typeF .selectOptions li {
  padding: 20px;
  cursor: pointer;
}

.searchBox.typeF .selectOptions li:not(:last-child) {
  border-bottom: 1px solid #dddddd;
}

.searchBox.typeF label {
  background: #f8f8f8;
}

.searchBox.typeF label input {
  background: transparent;
  width: 100%;
  height: 100%;
}

.searchBox.typeF label input::-webkit-input-placeholder {
  color: #999999;
  font-weight: 300;
}

.searchBox.typeF label input:-ms-input-placeholder {
  color: #999999;
  font-weight: 300;
}

.searchBox.typeF label input::-ms-input-placeholder {
  color: #999999;
  font-weight: 300;
}

.searchBox.typeF label input::placeholder {
  color: #999999;
  font-weight: 300;
}

.searchBox.typeF button {
  width: 13.35%;
  gap: 0 20px;
  background: #3465bf;
  color: #ffffff;
  font-weight: 500;
  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;
}

.searchBox.typeF button img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}

.searchBox.typeS {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin: 0 0 40px;
}

.searchBox.typeS label {
  width: 100%;
  max-width: 380px;
  gap: 0 20px;
  border-bottom: 1px solid #dddddd;
  padding: 0 0 10px;
  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;
}

.searchBox.typeS input {
  width: 100%;
}

.searchBox.typeS input::-webkit-input-placeholder {
  color: #999999;
  font-size: 1.7rem;
  font-weight: 300;
}

.searchBox.typeS input:-ms-input-placeholder {
  color: #999999;
  font-size: 1.7rem;
  font-weight: 300;
}

.searchBox.typeS input::-ms-input-placeholder {
  color: #999999;
  font-size: 1.7rem;
  font-weight: 300;
}

.searchBox.typeS input::placeholder {
  color: #999999;
  font-size: 1.7rem;
  font-weight: 300;
}

.searchBox.typeS button {
  width: 22px;
  height: 22px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.boardBox {
  margin: 40px 0 0;
}

.boardBox table {
  border-top: 1px solid #000000;
  table-layout: fixed;
}

.boardBox table th,
.boardBox table td {
  text-align: center;
  border-bottom: 1px solid #dddddd;
}

.boardBox table th {
  height: 85px;
  color: #111111;
  font-size: 1.9rem;
  font-weight: 500;
}

.boardBox table td {
  height: 70px;
  color: #555555;
  font-size: 1.7rem;
  font-weight: 300;
}

.boardBox table td > a {
  color: #555555;
}

.boardBox table td.left {
  text-align: left;
}

.boardBox table td.subject {
  padding: 0 20px;
}

.boardBox table td.subject a {
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  overflow: hidden;
  word-wrap: break-word;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

.galleryBox {
  display: -ms-grid;
  display: grid;
  /*  -ms-grid-columns: (1fr) [3]; */
  grid-template-columns: repeat(3, 1fr);
  gap: 80px 28px;
}

.galleryBox .imgBox {
  position: relative;
}

.galleryBox .img {
  border-radius: 20px;
  padding: 34.1895% 0;
  position: relative;
  overflow: hidden;
}

.galleryBox .img::before {
  content: "";
  display: block;
  width: 0;
  height: 100%;
  background: rgba(45, 58, 128, 0.9);
  border-radius: 0;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 1;
  -webkit-transition: all 0.48s ease-in-out;
  transition: all 0.48s ease-in-out;
}

.galleryBox .img img {
  min-width: 100%;
  min-height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: all 0.48s ease-in-out;
  transition: all 0.48s ease-in-out;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.galleryBox .circle {
  width: 70px;
  height: 70px;
  background: #ffffff;
  border-radius: 50%;
  z-index: 1;
  opacity: 0;
  -webkit-transition: all 0.48s ease-in-out;
  transition: all 0.48s ease-in-out;
  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%);
}

.galleryBox .text {
  margin: 15px 0 0;
}

.galleryBox h6 {
  color: #111111;
  font-size: 2.4rem;
  font-weight: 500;
  margin: 0 0 15px;
  -webkit-line-clamp: 1;
  overflow: hidden;
  word-wrap: break-word;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

.galleryBox .date {
  color: #999999;
}

.galleryBox .item:hover .img::before {
  width: 100%;
  border-radius: 20px;
}

.galleryBox .item:hover .img img {
  -webkit-transform: translate(-50%, -50%) scale(1.2);
  transform: translate(-50%, -50%) scale(1.2);
}

.galleryBox .item:hover .circle {
  opacity: 1;
}

.viewBox .title {
  gap: 0 30px;
  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;
}

.viewBox .state {
  display: inline-block;
  border-radius: 5px;
  font-size: 1.7rem;
  font-weight: 600;
  padding: 10px 25px;
}

.viewBox .state.on {
  background: #3465bf;
  color: #ffffff;
}

.viewBox .state.off {
  color: #aaaaaa;
  background: #dddddd;
}

.viewBox h4 {
  color: #111111;
  font-weight: 700;
  -webkit-line-clamp: 1;
  overflow: hidden;
  word-wrap: break-word;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

.viewBox .inner {
  border-top: 1px solid #000000;
  border-bottom: 1px solid #000000;
  margin: 45px 0 30px;
}

.viewBox .top {
  gap: 0 20px;
  border-bottom: 1px solid #dddddd;
  padding: 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;
}

.viewBox .top em {
  color: #888888;
  font-size: 1.4rem;
}

.viewBox .top hr {
  width: 1px;
  height: 18px;
  background: #dddddd;
  border: none;
  margin: 0;
}

.viewBox .text {
  padding: 40px;
}

.viewBox .files > div {
  gap: 0 15px;
  background: #f8f8f8;
  padding: 30px 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;
}

.viewBox .files > div:not(:first-child) {
  border-top: 1px solid #dddddd;
}

.viewBox .files em a {
  color: #444444;
  font-size: 1.5rem;
  font-weight: 300;
}

.viewBox .preview {
  height: 68px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
  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;
}

.viewBox .preview .list {
  width: 68px;
  height: 68px;
  display: -ms-grid;
  display: grid;
  gap: 4px;
  /* -ms-grid-rows: (4px) [3]; */
  grid-template-rows: repeat(3, 4px);
  /* -ms-grid-columns: (4px) [3]; */
  grid-template-columns: repeat(3, 4px);
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: #3465bf;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.viewBox .preview .list span {
  background: #ffffff;
  width: 100%;
  height: 100%;
}

.viewBox .preview .link {
  width: calc(50% - 34px);
  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;
}

.viewBox .preview .link p {
  color: #111111;
  -webkit-line-clamp: 1;
  overflow: hidden;
  word-wrap: break-word;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

.viewBox .preview .next {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

@media (max-width: 1400px) {
  .searchBox.typeF > * {
    height: 70px;
  }
}

@media (max-width: 1200px) {
  .galleryBox {
    gap: 40px 20px;
  }
  .viewBox .inner {
    margin: 30px 0;
  }
  .viewBox .files > div {
    padding: 20px;
  }
}

@media (max-width: 960px) {
  .searchBox.typeF {
    margin: 0 0 60px;
  }
  .searchBox.typeF button {
    gap: 0 10px;
  }
  .boardBox table th {
    height: 75px;
  }
  .viewBox .title {
    gap: 0 20px;
  }
  .viewBox .preview {
    height: 40px;
  }
  .viewBox .preview .list {
    width: 40px;
    height: 40px;
    gap: 3px;
    /* -ms-grid-rows: (3px) [3]; */
    grid-template-rows: repeat(3, 3px);
    /* -ms-grid-columns: (3px) [3]; */
    grid-template-columns: repeat(3, 3px);
  }
  .viewBox .preview .link {
    width: calc(50% - 30px);
  }
}

@media (max-width: 768px) {
  .searchBox.typeF > * {
    height: 60px;
  }
  .searchBox.typeF button {
    width: 18%;
  }
  .boardBox table colgroup,
  .boardBox table thead,
  .boardBox table th:first-child,
  .boardBox table td:first-child {
    display: none;
  }
  .boardBox table tr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 15px 0;
    border-bottom: 1px solid #dddddd;
    padding: 20px;
    position: relative;
  }
  .boardBox table td {
    height: auto;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    border-bottom: none;
  }
  .boardBox table td.subject {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    width: 100%;
    padding: 0;
  }
  .boardBox table td.subject a {
    text-align: left;
  }
  .boardBox table td.after::after {
    content: "|";
    color: #999999;
    font-size: 1.4rem;
    margin: 0 10px;
  }
  .boardBox table td.marginRight {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
    margin: 0 0 0 auto;
  }
  .galleryBox {
    /* -ms-grid-columns: (1fr) [2]; */
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .paging {
    margin: 40px 0 0;
  }
  .paging ul {
    padding: 0 10px;
  }
  .paging a {
    width: 32px;
    height: 32px;
  }
  .paging .arr {
    gap: 0 5px;
  }
  .searchBox.typeF {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 10px;
  }
  .searchBox.typeF > * {
    height: 55px;
  }
  .searchBox.typeF * {
    font-size: 1.6rem;
  }
  .searchBox.typeF .select {
    width: 44%;
  }
  .searchBox.typeF label {
    width: calc(78% - 10px);
  }
  .searchBox.typeF button {
    width: 22%;
  }
  .boardBox table tr {
    padding: 20px 10px;
  }
  .galleryBox {
    /* -ms-grid-columns: (1fr) [1]; */
    grid-template-columns: repeat(1, 1fr);
    gap: 30px 0;
  }
  .galleryBox h6 {
    margin: 0 0 10px;
  }
  .viewBox .title {
    gap: 0 10px;
  }
  .viewBox .state {
    font-size: 1.5rem;
    padding: 10px 15px;
  }
  .viewBox .inner {
    margin: 20px 0 30px;
  }
  .viewBox .top,
  .viewBox .files > div {
    padding: 15px 10px;
  }
  .viewBox .text {
    padding: 20px;
  }
  .viewBox .files > div {
    gap: 0 10px;
  }
  .viewBox .preview .link {
    gap: 0 10px;
  }
}

/* 반응형 */

@media (max-width: 1760px) {
  /*  .font96 {
    font-size: calc(var(--fontsize) * 0.88);
  }
  .w1720,
  .w1500 {
    padding: 0 20px;
  } */

  .ci p br {
    display: none;
  }
  .ethical .charter p br,
  .ethical .code p br,
  .ethical .informant p br {
    display: none;
  }
}

@media (max-width: 1600px) {
  /* .font96 {
    font-size: calc(var(--fontsize) * 0.72);
  }
  .font64 {
    font-size: calc(var(--fontsize) * 0.82);
  }
  .font58 {
    font-size: calc(var(--fontsize) * 0.86);
  }
  .font54,
  .font52 {
    font-size: calc(var(--fontsize) * 0.88);
  }
  .font48,
  .font46 {
    font-size: calc(var(--fontsize) * 0.9);
  }
  .font42,
  .font40 {
    font-size: calc(var(--fontsize) * 0.92);
  } */

  .scrollTab li button {
    padding: 0 40px;
  }
  .philosophy .vision {
    padding: 16% 0px;
  }
  .history .itemBox {
    gap: 0 60px;
  }
  .place .img {
    width: 55%;
  }
  .place .info dl dt {
    width: 130px;
  }
  .capabillity p br {
    display: none;
  }
  .ethical .informant ul {
    gap: 0 30px;
  }
  .ethical .informant ul li,
  .ethical .informant ul p {
    gap: 0 10px;
  }
}

@media (max-width: 1400px) {
  /* .font96 {
    font-size: calc(var(--fontsize) * 0.66);
  }
  .font64 {
    font-size: calc(var(--fontsize) * 0.76);
  }
  .font58 {
    font-size: calc(var(--fontsize) * 0.8);
  }
  .font54,
  .font52 {
    font-size: calc(var(--fontsize) * 0.82);
  }
  .font48,
  .font46 {
    font-size: calc(var(--fontsize) * 0.84);
  }
  .font42,
  .font40 {
    font-size: calc(var(--fontsize) * 0.86);
  }
  .font36 {
    font-size: calc(var(--fontsize) * 0.9);
  } */

  .subPage h6,
  .subPage p.big {
    font-size: 16px;
  }
  .paddingBox {
    padding: 100px 0;
  }
  .paddingBox.topX {
    padding: 0 0 100px;
  }
  .paddingBox.bottomX {
    padding: 100px 0 0;
  }
  .gap180,
  .gap150,
  .gap120 {
    gap: 100px 0;
  }
  .scrollTab li button {
    font-size: 1.8rem;
    padding: 15px 25px;
  }
  .overview .information .itemBox {
    gap: 20px;
  }
  .overview .information dl {
    margin: 80px 0 0;
  }
  .overview .business .itemBox {
    gap: 0 30px;
  }
  .overview .business .item:nth-child(2) .circle::before {
    left: -25px;
  }
  .overview .business .item:nth-child(2) .circle::after {
    right: -25px;
  }
  .overview .business .inner {
    padding: 22% 0 0;
  }
  .overview .business p {
    font-size: 1.8rem;
    margin: 30px 0 0;
  }
  .philosophy .vision {
    margin: 0 0 100px;
  }
  .philosophy .vision .text {
    padding: 0 0 0 40px;
  }
  .philosophy .value .itemBox {
    gap: 60px 0;
    margin: 80px 0 0;
  }
  .philosophy .value .line {
    display: none;
  }
  .philosophy .value p {
    -ms-flex-negative: inherit;
    flex-shrink: inherit;
    padding: 40px;
  }
  .philosophy .value p br {
    display: none;
  }
  .history .imgBox {
    width: 45%;
  }
  .history .item span {
    font-size: 4.6rem;
    top: 40px;
  }
  .history .listBox {
    gap: 120px 0;
  }
  .history .list {
    gap: 60px 0;
  }
  .history dl dt {
    width: 100px;
    font-size: 2.8rem;
  }
  .history dl p {
    font-size: 1.8rem;
  }
  .place .itemBox {
    margin: 80px 0 0;
  }
  .place .item {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .place .info dl * {
    font-size: 1.7rem;
  }
  .place .info dl dt {
    width: 100px;
  }
  .place .text a {
    height: 65px;
    font-size: 1.8rem;
    margin: 40px 0 0;
  }
  .pouch .infoBox .border {
    gap: 0 40px;
    padding: 60px;
  }
  .ethical .management .pBox {
    padding: 0;
  }
  .ethical .management .pBox p {
    font-size: 1.7rem;
  }
  .ethical .informant ul {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px 30px;
  }
  .ethical .informant ul li:last-child {
    width: 100%;
  }
  .esg .text {
    padding: 0 0 0 60px;
  }
  .personnel .itemBox {
    /* -ms-grid-columns: (1fr) [3]; */
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1199px) {
  /* .font96 {
    font-size: calc(var(--fontsize) * 0.62);
  }
  .font64 {
    font-size: calc(var(--fontsize) * 0.72);
  }
  .font58 {
    font-size: calc(var(--fontsize) * 0.76);
  }
  .font54,
  .font52 {
    font-size: calc(var(--fontsize) * 0.78);
  }
  .font48,
  .font46 {
    font-size: calc(var(--fontsize) * 0.8);
  }
  .font42,
  .font40 {
    font-size: calc(var(--fontsize) * 0.82);
  }
  .font36 {
    font-size: calc(var(--fontsize) * 0.86);
  }
  .font29 {
    font-size: calc(var(--fontsize) * 0.92);
  } */

  #sv {
    padding: 0;
  }
  #sv #lnb {
    gap: 0 30px;
  }
  .subPage {
    padding: 0 0 100px;
  }
  .subPage .subTitle {
    margin: 0 0 80px;
  }
  .subFlex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px 0;
  }
  .subFlex > *:first-child {
    max-width: 100%;
  }
  .subFlex > *:first-child br {
    display: none;
  }
  .gap80 {
    gap: 60px 0;
  }
  .overview .contents {
    gap: 80px 0;
  }
  .overview .business .inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 0;
  }
  .philosophy .value .itemBox {
    margin: 40px 0 0;
  }
  .philosophy .value .circle {
    width: 160px;
    height: 160px;
    gap: 20px 0;
  }
  .history dl {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px 0;
  }
  .history dl dt {
    width: 100%;
  }
  .place .info {
    margin: 40px 0 0;
  }
  .place .text a {
    height: 55px;
  }
  .pouch .infoBox .border {
    padding: 40px;
  }
  .esg .text {
    padding: 0 0 0 40px;
  }
  .recruit .item a {
    padding: 40px;
  }
}

@media (max-width: 960px) {
  /* .font96 {
    font-size: calc(var(--fontsize) * 0.56);
  }
  .font64 {
    font-size: calc(var(--fontsize) * 0.66);
  }
  .font58 {
    font-size: calc(var(--fontsize) * 0.7);
  }
  .font54,
  .font52 {
    font-size: calc(var(--fontsize) * 0.72);
  }
  .font48,
  .font46 {
    font-size: calc(var(--fontsize) * 0.74);
  }
  .font42,
  .font40 {
    font-size: calc(var(--fontsize) * 0.76);
  }
  .font36 {
    font-size: calc(var(--fontsize) * 0.78);
  }
  .font29 {
    font-size: calc(var(--fontsize) * 0.82);
  } */

  #sv h2 {
    font-size: 24px;
  }
  #sv #lnb {
    display: none;
  }
  .grid3Box {
    gap: 15px;
  }
  .scrollTab {
    display: none;
  }
  .overview .information .item {
    padding: 30px 20px;
  }
  .overview .information dl {
    margin: 60px 0 0;
  }
  .overview .business .icon {
    height: 60px;
    margin: 0 0 20px;
  }
  .overview .business .icon img {
    width: auto;
    height: 100%;
  }
  .overview .certification .itemBox {
    grid-template-columns: repeat(3, minmax(auto, 1fr));
  }
  .philosophy .vision {
    margin: 0 0 80px;
  }
  .philosophy .vision .text {
    padding: 0 20px;
  }
  .philosophy .value .itemBox {
    gap: 30px 0;
  }
  .history .itemBox {
    gap: 0 40px;
  }
  .history .item span {
    font-size: 3.2rem;
    top: 20px;
    right: 20px;
  }
  .history .listBox {
    gap: 70px 0;
    padding: 0 30px;
  }
  .history .list {
    gap: 30px 0;
  }
  .history dl::before {
    top: 0.82em;
    left: -28.5px;
  }
  .history dl dt {
    font-size: 2.5rem;
  }
  .ci .concept .border {
    padding: 80px 20px;
  }
  .ci .concept .text {
    gap: 40px 0;
  }
  .ci .grid2Box {
    /* -ms-grid-columns: (1fr) [1]; */
    grid-template-columns: repeat(1, 1fr);
  }
  .ci .basic .itemBox,
  .ci .caution .itemBox {
    gap: 40px 0;
  }
  .ci .sloganA .itemBox {
    gap: 20px 0;
    -ms-grid-rows: inherit;
    grid-template-rows: inherit;
    margin: 0;
  }
  .ci .caution .logoX ul {
    gap: 0 10px;
  }
  .place .itemBox {
    margin: 0;
  }
  .place .item {
    width: 100%;
    max-width: 840px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 40px 0;
  }
  .place .img {
    width: 100%;
  }
  .system .itemBox {
    /* -ms-grid-columns: (1fr) [3]; */
    grid-template-columns: repeat(3, 1fr);
  }
  .pouch .infoBox .border {
    gap: 0 20px;
    padding: 30px;
  }
  .pouch .infoBox .tableBox {
    max-width: 260px;
  }
  .circle .border,
  .square .border {
    padding: 20px;
  }
  .square .border {
    gap: 0;
  }
  .ethical .management .lineBox {
    width: 8%;
  }
  .ethical .management .textBox {
    width: calc(72% - 40px);
  }
  .ethical .code .scroll {
    height: 280px;
    gap: 40px 0;
  }
  .talent .itemBox {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 60px 0;
    position: relative;
  }
  .talent .itemBox::before,
  .talent .itemBox::after {
    content: "";
    display: block;
    background: #dddddd;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  .talent .itemBox::before {
    width: 100%;
    height: 1px;
  }
  .talent .itemBox::after {
    width: 1px;
    height: 100%;
  }
  .talent .item {
    width: calc(50% - 1px);
  }
  .talent hr {
    display: none;
  }
  .personnel .item {
    height: auto;
    gap: 30px 0;
    padding: 40px 0;
  }
  .job dl dd {
    margin: 20px 0 40px;
  }
  .recruit h5 {
    font-size: 2.4rem;
  }
}

@media (max-width: 768px) {
  /* .font96 {
    font-size: calc(var(--fontsize) * 0.48);
  }
  .font64 {
    font-size: calc(var(--fontsize) * 0.56);
  }
  .font58 {
    font-size: calc(var(--fontsize) * 0.58);
  }
  .font54,
  .font52 {
    font-size: calc(var(--fontsize) * 0.6);
  }
  .font48,
  .font46 {
    font-size: calc(var(--fontsize) * 0.62);
  }
  .font42,
  .font40 {
    font-size: calc(var(--fontsize) * 0.64);
  }
  .font36 {
    font-size: calc(var(--fontsize) * 0.66);
  }
  .font29 {
    font-size: calc(var(--fontsize) * 0.86);
  } */

  #sv {
    padding: 0;
  }
  #sv #lnb {
    gap: 0 30px;
  }
  #sv #lnb li a {
    font-size: 14px;
  }
  .subPage {
    padding: 0 0 70px;
  }
  .subPage .subTitle {
    margin: 0 0 60px;
  }

  .subPage .subTitle p {
    font-size: 20px;
  }

  .subPage .subTitle p span {
    display: block;
  }

  .subPage h6,
  .subPage p.big {
    font-size: 14px;
  }

  .gap180,
  .gap150,
  .gap120 {
    gap: 80px 0;
  }
  .circleNumber {
    gap: 20px 0;
    padding: 30px 20px;
  }
  .overview .information .itemBox {
    /* -ms-grid-columns: (1fr) [2]; */
    grid-template-columns: repeat(2, 1fr);
  }
  .overview .business .icon {
    height: 45px;
  }
  .overview .business h6 {
    font-size: 1.8rem;
  }
  .overview .business h6 em {
    font-size: 1.6rem;
  }
  .overview .certification .itemBox {
    gap: 40px 10px;
  }
  .philosophy .vision {
    padding: 8% 0;
  }
  .philosophy .value .item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px 0;
  }
  .philosophy .value p {
    padding: 30px;
  }
  .history .imgBox {
    display: none;
  }
  .history .item {
    position: relative;
  }
  .history .item .img,
  .history .item .img img {
    position: relative;
    top: auto;
    left: auto;
    bottom: auto;
  }
  .history .textBox {
    max-width: 670px;
  }
  .history .list {
    margin: -30px 0 0;
  }
  .ci .caution .logoX ul {
    display: -ms-grid;
    display: grid;
    /* -ms-grid-columns: (minmax(auto, 190px)) [3]; */
    grid-template-columns: repeat(3, minmax(auto, 190px));
    gap: 20px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .product .tableBox:not(.scrollX) {
    overflow-x: scroll;
  }
  .product .tableBox:not(.scrollX) table {
    width: 728px;
  }
  .pouch .infoBox .border {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 40px 0;
  }
  .pouch .infoBox .tableBox {
    max-width: 100%;
  }
  .circle .border,
  .square .border {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px 0;
  }
  .circle .arrow,
  .square .arrow {
    margin: 0;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
  .square .imgBox.big {
    width: 100%;
  }
  .grid4Box.certifi {
    gap: 10px;
  }
  .ethical .management .itemBox {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 30px 0;
  }
  .ethical .management .logo {
    width: 32%;
    padding: 16% 0;
  }
  .ethical .management .lineBox {
    display: none;
  }
  .ethical .management .textBox {
    width: 100%;
    gap: 0 2%;
  }
  .ethical .code .scroll,
  .ethical .informant .big {
    padding: 30px 20px;
  }
  .esg .item {
    width: 100%;
    max-width: 735px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 30px 0;
  }
  .esg .item > div {
    width: 100%;
  }
  .esg .img {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .esg .text {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    padding: 0 20px;
  }
  .esg dl dt {
    margin: 10px 0 20px;
  }
  .talent .icon {
    height: 60px;
  }
  .talent .icon img {
    width: auto;
    height: 100%;
  }
  .talent .text {
    margin: 30px 0 0;
  }
  .talent .smallTitle {
    margin: 10px 0 20px;
  }
  .personnel .itemBox {
    gap: 10px;
  }
  .personnel .item {
    padding: 30px 5px;
  }
  .personnel .icon {
    height: 60px;
  }
  .personnel .icon img {
    width: auto;
    height: 100%;
  }
  .personnel p {
    font-size: 1.8rem;
  }
  .personnel span {
    top: 10px;
    right: 10px;
  }
  .job dl dd {
    font-size: 1.8rem;
    margin: 20px 0 30px;
  }
  .job .tagBox span {
    font-size: 1.6rem;
    padding: 10px 20px;
  }
  .recruit .item a {
    padding: 30px 20px;
  }
  .recruit h5 {
    font-size: 2.2rem;
  }
  .recruit .state {
    width: 70px;
    height: 70px;
  }
}

@media (max-width: 640px) {
  .font96 {
    font-size: calc(var(--fontsize) * 0.38);
  }
  .font64 {
    font-size: calc(var(--fontsize) * 0.46);
  }
  .font58 {
    font-size: calc(var(--fontsize) * 0.48);
  }
  .font54,
  .font52 {
    font-size: calc(var(--fontsize) * 0.5);
  }
  .font48,
  .font46 {
    font-size: calc(var(--fontsize) * 0.54);
  }
  .font42,
  .font40 {
    font-size: calc(var(--fontsize) * 0.58);
  }
  .font36 {
    font-size: calc(var(--fontsize) * 0.6);
  }
  .font29 {
    font-size: calc(var(--fontsize) * 0.8);
  }
  .allMenu #snb {
    padding: 20px 0;
  }

  #sv {
    padding: 0;
  }
  #sv .bg {
    padding: 20% 0;
  }

  #sv .sub-titleBox {
    margin-bottom: 30px;
  }

  /* .subPage {
    padding: 50px 0 60px;
  } */
  .subPage .subTitle {
    margin: 0 0 40px;
  }
  .subPage .smallTitle {
    font-size: 1.8rem;
  }
  .subPage h5 {
    font-size: 2.1rem;
  }
  .gap180,
  .gap150,
  .gap120 {
    gap: 60px 0;
  }
  .gap80 {
    gap: 40px 0;
  }
  .grid3Box {
    /* -ms-grid-columns: (1fr) [2]; */
    grid-template-columns: repeat(2, 1fr);
  }
  .circleNumber {
    gap: 10px 0;
    padding: 20px;
  }
  .circleNumber em {
    width: 20px;
    height: 20px;
    font-size: 1.5rem;
  }
  .circleNumber li {
    gap: 0 10px;
  }
  .circleNumber p {
    font-size: 1.6rem;
  }
  .overview .information .itemBox {
    /* -ms-grid-columns: (1fr) [1]; */
    grid-template-columns: repeat(1, 1fr);
    gap: 20px 0;
  }
  .overview .information .item {
    gap: 0 40px;
    padding: 30px 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;
  }
  .overview .information .icon {
    width: 60px;
    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;
  }
  .overview .information dl {
    margin: 0;
  }
  .overview .information dl dt {
    font-size: 1.6rem;
    margin: 0 0 10px;
  }
  .overview .information dl dd {
    font-size: 2.1rem;
  }
  .overview .business .itemBox {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 40px 20px;
  }
  .overview .business .item {
    width: calc(50% - 10px);
  }
  .overview .business .item:nth-child(2) .circle::before,
  .overview .business .item:nth-child(2) .circle::after {
    display: none;
  }
  .overview .business p {
    margin: 20px 0 0;
  }
  .overview .certification .itemBox {
    gap: 30px 20px;
    /* -ms-grid-columns: (1fr) [2]; */
    grid-template-columns: repeat(2, 1fr);
  }
  .philosophy .vision {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    gap: 30px 0;
    padding: 0;
  }
  .philosophy .vision::before {
    background-size: 100% auto;
    padding: 28% 0;
    position: relative;
    top: auto;
    left: auto;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  .philosophy .vision .text {
    width: 100%;
    padding: 0;
    margin: 0;
  }
  .philosophy .value p {
    padding: 20px;
  }
  .ci .br640 {
    display: block;
  }
  .ci .border {
    padding: 40px 20px;
  }
  .ci .concept .border img,
  .ci .basic .border img {
    width: 240px;
  }
  .ci .concept .border {
    padding: 60px 20px;
  }
  .ci .concept .download a {
    width: auto;
    height: auto;
    padding: 15px 20px;
  }
  .ci .basic .withText,
  .ci .sloganA .item,
  .ci .sloganB .bg,
  .ci .caution .withText {
    padding: 40px 20px 20px;
  }
  .ci .caution .logoX ul {
    gap: 10px;
  }
  .place .info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px 0;
    margin: 30px 0 0;
  }
  .place .info dl {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px 0;
  }
  .place .info dl * {
    line-height: 1.4;
  }
  .place .info dl dt {
    width: 100%;
  }
  .place .listSlideBox .swiper-slide {
    padding: 6.8095% 0;
  }
  .system .itemBox {
    /* -ms-grid-columns: (1fr) [2]; */
    grid-template-columns: repeat(2, 1fr);
  }
  .grid4Box.certifi {
    grid-template-columns: repeat(2, 1fr);
  }
  .ethical .management .itemBox {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px 0;
  }
  .ethical .management .logo,
  .ethical .management .item {
    width: calc(50% - 10px);
  }
  .ethical .management .logo {
    padding: calc((50% - 10px) / 2) 0;
  }
  .ethical .management .textBox {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .ethical .management .pBox {
    margin: 10px 0;
  }
  .ethical .informant ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px 0;
  }
  .ethical .informant ul p {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 5px 0;
    font-size: 1.6rem;
  }
  .ethical .informant ul p b {
    width: 100%;
  }
  .talent .itemBox {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0;
  }
  .talent .itemBox::before,
  .talent .itemBox::after {
    display: none;
  }
  .talent .item {
    width: 100%;
    padding: 20px 0;
  }
  .talent .item:not(:last-child) {
    border-bottom: 1px solid #dddddd;
  }
  .personnel .itemBox {
    /* -ms-grid-columns: (1fr) [2]; */
    grid-template-columns: repeat(2, 1fr);
  }
  .personnel p {
    font-size: 1.6rem;
  }
  .personnel p em {
    font-size: 1.5rem;
  }
  .job .tagBox {
    gap: 5px;
  }
  .recruit .item a {
    padding: 20px;
  }
  .recruit h5 {
    font-size: 1.9rem;
  }
  .recruit .state {
    width: 60px;
    height: 60px;
    font-size: 1.6rem;
  }
}

@media (max-width: 640px) {
  .subPage .subTitle p {
    font-size: 16px !important;
  }
}

@media (max-width: 435px) {
  .subPage .subTitle p {
    font-size: 14px !important;
  }
}
