@charset "UTF-8";
.content {
  padding: 5rem 0;
}

/*
공통
*/
/*비주얼*/
.visual {
  width: 100%;
  height: 55rem;
}
.visual .inner {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: 100%;
}
.visual .visual-txt {
  padding-top: 2rem;
  text-align: left;
  color: #fff;
}
.visual .visual-txt .sm-txt {
  opacity: 0.5;
  font-size: 2rem;
  font-weight: 700;
}
.visual .visual-txt .page-tit {
  opacity: 0.9;
  font-size: 7rem;
  font-weight: 500;
}

@media all and (max-width: 85.375rem) {
  .visual {
    width: 100%;
    height: 39rem;
  }
  .visual .visual-txt .sm-txt {
    font-size: 1.8rem;
  }
  .visual .visual-txt .page-tit {
    font-size: 5rem;
  }
}
@media all and (max-width: 62.5rem) {
  .visual {
    width: 100%;
    height: 25rem;
  }
  .visual .visual-txt .sm-txt {
    font-size: 1.5rem;
  }
  .visual .visual-txt .page-tit {
    font-size: 4rem;
  }
}
@media all and (max-width: 47.9375rem) {
  .visual .visual-txt .page-tit {
    font-size: 3rem;
  }
}
/* 섹션*/
.section {
  position: relative;
  left: 0;
  top: 0;
  margin: 6rem 0;
}
.section:last-child {
  margin-bottom: 0;
}

@media all and (max-width: 64rem) {
  .section {
    margin: 0;
  }
}
/* 섹션 제목*/
.sec-header {
  padding: 1rem 0;
}
.sec-header .sec-tit {
  line-height: 1;
  font-size: 3.8rem;
}
.sec-header .sec-tit.sm {
  font-size: 3rem;
}
.sec-header .sec-tit > span {
  font-size: 0.6em;
}

.sub-tit {
  line-height: 5rem;
  font-size: 2.2rem;
  font-weight: 600;
  color: #217ea6;
}

/* 텍스트 블록*/
.desc-wrap {
  margin: 2rem 0 4rem;
}
.desc-wrap .desc {
  line-height: 4rem;
  font-size: var(--desc-font);
  font-weight: 300;
}

.txt-block {
  padding: 2rem 0;
}
.txt-block p {
  line-height: 4rem;
  font-size: var(--desc-font);
  font-weight: 300;
}

@media all and (max-width: 47.9375rem) {
  .sec-header .sec-tit {
    line-height: 1.2;
    font-size: 2.8rem;
  }
  .sec-header .sec-tit.sm {
    font-size: 2.7rem;
  }
  .sub-tit {
    line-height: 3.5rem;
    font-size: 2rem;
  }
  .desc-wrap {
    margin: 1rem 0 2rem;
  }
  .desc-wrap .desc {
    line-height: 3.5rem;
  }
}
/* 텍스트 컬럼*/
.txt-column {
  display: flex;
  justify-content: center;
  margin: 5rem 0;
  padding: 7rem 0;
  background-color: #f7f9fd;
}
.txt-column > dl {
  margin: 0 4rem;
  width: 34.5%;
}
.txt-column > dl dt {
  margin-bottom: 2rem;
  padding: 1.95rem;
  text-align: center;
  line-height: 1;
  font-size: var(--desc-font);
  font-weight: 500;
  background-color: #fff;
  border: 1px solid #387eff;
  border-radius: 3rem;
  -webkit-border-radius: 3rem;
  -moz-border-radius: 3rem;
  -ms-border-radius: 3rem;
  -o-border-radius: 3rem;
}
.txt-column > dl dd {
  padding-left: 3rem;
}
.txt-column > dl dd .bar {
  line-height: 4rem;
  font-size: var(--desc-font);
  font-weight: 300;
}
.txt-column > dl dd .bar::before {
  top: 2rem;
}

@media all and (max-width: 64rem) {
  .txt-column > dl dt {
    padding: 1.5rem;
  }
}
@media all and (max-width: 62.5rem) {
  .txt-column {
    margin: 0;
    flex-direction: column;
  }
  .txt-column > dl {
    margin: 0 0 2rem;
    padding: 0 4rem;
    width: 100%;
  }
  .txt-column > dl:last-child {
    margin-bottom: 0;
  }
}
/* 사이드 꾸밈 텍스트*/
.side-txt {
  display: block;
  position: absolute;
  line-height: 1;
  font-size: 1.5rem;
  font-weight: 700;
  color: #000;
}

.side-txt.left {
  left: 3.6%;
  transform: rotate(90deg);
  transform-origin: left bottom;
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
}

.side-txt.right {
  right: 3.6%;
  transform: rotate(90deg);
  transform-origin: right bottom;
}

@media all and (max-width: 47.9375rem) {
  .side-txt {
    font-size: 1rem;
  }
}
/* 이미지 박스*/
/*꽉찬 이미지*/
.full-img-box {
  margin: 5rem 0;
  width: 100%;
}
.full-img-box .figure {
  overflow: hidden;
}
.full-img-box .figure .img {
  transform: scale(1);
  transition: transform 2s linear;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  -webkit-transition: transform 2s linear;
  -moz-transition: transform 2s linear;
  -ms-transition: transform 2s linear;
  -o-transition: transform 2s linear;
}
.full-img-box .figure:hover .img {
  transform: scale(1.1);
  transition: transform 2s linear;
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  -webkit-transition: transform 2s linear;
  -moz-transition: transform 2s linear;
  -ms-transition: transform 2s linear;
  -o-transition: transform 2s linear;
}

/* 제목 있는 이미지*/
.img-wrap-box {
  position: relative;
  left: 0;
  top: 0;
  margin: 5rem 0;
  padding: 6.5rem 2rem;
  width: 100%;
  text-align: center;
}
.img-wrap-box .figure {
  margin-bottom: 4rem;
  font-size: 0;
}
.img-wrap-box .img-txt {
  position: absolute;
  right: 4rem;
  bottom: 2rem;
  font-size: 1.4rem;
}
.img-wrap-box .img-txt.center {
  left: 50%;
  right: auto;
  bottom: 3rem;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}
.img-wrap-box .img-txt.r-box {
  padding: 1rem 1.5rem;
  line-height: 1;
  font-size: 1.5rem;
  color: #666;
  background-color: #e9e9e9;
  border-radius: 1.7rem;
  -webkit-border-radius: 1.7rem;
  -moz-border-radius: 1.7rem;
  -ms-border-radius: 1.7rem;
  -o-border-radius: 1.7rem;
}

@media all and (max-width: 47.9375rem) {
  .img-wrap-box {
    margin: 3rem 0;
    padding: 3rem 2rem 1rem;
  }
  .img-wrap-box .img-txt {
    position: static;
    margin: 2rem auto;
    text-align: center;
  }
  .img-wrap-box .img-txt.center {
    left: 0;
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
  }
  .img-wrap-box .img-txt.r-box {
    display: inline-block;
    width: 80%;
    word-break: break-all;
    line-height: 1.2;
  }
}
/*이미지+텍스트*/
.float-box {
  padding: 2rem 0;
}
.float-box .txt-box {
  line-height: 4rem;
  font-size: var(--desc-font);
  font-weight: 300;
}
.float-box .img-box {
  float: right;
  margin: 2rem 0 2rem 8rem;
  width: 44.5rem;
}

@media all and (max-width: 64rem) {
  .float-box .img-box {
    margin: 2rem 0 0 4rem;
    width: 40%;
  }
}
@media all and (max-width: 62.5rem) {
  .float-box .txt-box {
    line-height: 3.5rem;
  }
}
@media all and (max-width: 47.9375rem) {
  .float-box .img-box {
    float: none;
    margin: 0;
    width: 100%;
  }
}
.column-box {
  display: flex;
  justify-content: space-between;
  height: 65rem;
}
.column-box .txt-box {
  position: relative;
  left: 0;
  top: 0;
  width: 50%;
  background-color: #f6f6f6;
  border: 1px solid #dfdfdf;
}
.column-box .txt-box .box-inner {
  position: absolute;
  top: 42%;
  padding-left: 8rem;
  font-size: 1.8rem;
  font-weight: 300;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}
.column-box .txt-box.flex-cl .box-inner {
  top: 50%;
}
.column-box .txt-box .color-tit-box {
  margin-top: 7rem;
  font-size: 1.6rem;
}
.column-box .txt-box .color-tit-box > dt span {
  display: inline-block;
  padding: 1.3rem 1rem;
  min-width: 11rem;
  text-align: center;
  line-height: 1;
  background-color: #d7f0ff;
  border-radius: 2.1rem;
  -webkit-border-radius: 2.1rem;
  -moz-border-radius: 2.1rem;
  -ms-border-radius: 2.1rem;
  -o-border-radius: 2.1rem;
}
.column-box .txt-box .color-tit-box > dd {
  margin-top: 2rem;
  font-size: 1.125em;
}
.column-box .slider-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  left: 0;
  top: 0;
  width: 50%;
  height: 100%;
  background-color: #d9d9d9;
}
.column-box .slider-wrap .slider-container {
  height: inherit;
}
.column-box .slider-wrap .slider-container .item {
  display: flex;
  justify-content: center;
  align-items: center;
  height: inherit;
}
.column-box .slider-wrap .prev-btn,
.column-box .slider-wrap .next-btn {
  z-index: 2;
  position: absolute;
  top: 50%;
  width: 7rem;
  height: 7rem;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.4);
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}
.column-box .slider-wrap .prev-btn:hover,
.column-box .slider-wrap .next-btn:hover {
  background-color: rgba(0, 0, 0, 0.2);
}
.column-box .slider-wrap .next-btn {
  right: 0;
}
.column-box .slider-wrap .prev-btn {
  left: 0;
}

@media all and (max-width: 85.375rem) {
  .column-box {
    height: 44rem;
  }
  .column-box .txt-box .box-inner {
    padding-left: 2rem;
    font-size: 1.5rem;
  }
  .column-box .txt-box .color-tit-box {
    margin-top: 2rem;
  }
  .column-box .txt-box .color-tit-box > dt > span {
    padding: 1rem;
  }
  .column-box .txt-box .color-tit-box > dd {
    font-size: 1.5rem;
  }
  .column-box .slider-wrap .prev-btn,
  .column-box .slider-wrap .next-btn {
    width: 4rem;
    height: 4rem;
  }
  .column-box .slider-wrap .prev-btn img,
  .column-box .slider-wrap .next-btn img {
    width: 1rem;
  }
}
@media all and (max-width: 64rem) {
  .products .section {
    margin-bottom: 6rem;
  }
  .products .section:last-child {
    margin-bottom: 0;
  }
  .item.bg-wt {
    padding: 2rem;
    width: 100% !important;
    border-width: 1px;
  }
  .item.bg-wt img {
    width: auto;
    height: 100%;
  }
  .column-box .txt-box .box-inner {
    width: 100%;
    padding-left: 4rem;
  }
}
@media all and (max-width: 62.5rem) {
  .column-box {
    flex-direction: column;
    height: auto;
  }
  .column-box .txt-box {
    padding: 4rem 0;
    width: 100%;
  }
  .column-box .txt-box .box-inner {
    position: static;
    top: 0;
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
  }
  .column-box .txt-box .color-tit-box {
    margin-top: 2rem;
    font-size: 1.4rem;
  }
  .column-box .slider-wrap {
    width: 100%;
    min-height: 39rem;
  }
}
@media all and (max-width: 47.9375rem) {
  .column-box .slider-wrap {
    min-height: 0;
  }
}
/*목록스타일*/
.bar {
  position: relative;
  left: 0;
  top: 0;
  padding-left: 1.4rem;
}
.bar::before {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  width: 0.8rem;
  height: 0.1rem;
  background-color: #a5a6a9;
}

.dot-list li {
  position: relative;
  left: 0;
  top: 0;
  padding-left: 2rem;
  line-height: 4.5rem;
}
.dot-list li::before {
  position: absolute;
  left: 0;
  top: 0;
  content: "·";
  font-size: 1.5em;
}

@media all and (max-width: 85.375rem) {
  .dot-list li {
    line-height: 3.5rem;
  }
}
/*이미지만 있는 박스*/
.col-img-wrap {
  display: flex;
  justify-content: space-between;
  margin: 7rem 0;
  width: 100%;
  font-size: 0;
}

@media all and (max-width: 47.9375rem) {
  .col-img-wrap {
    flex-direction: column;
    margin: 4rem 0;
  }
}
/* 탭 */
.tap-wrap {
  margin-bottom: 8rem;
  padding: 0 4rem;
}
.tap-wrap::-webkit-scrollbar {
  width: 0;
  height: 0;
}
.tap-wrap .tap {
  margin: 0 auto 4rem;
  display: flex;
  justify-content: center;
  gap: 0 1rem;
}
.tap-wrap .tap li {
  font-weight: 300;
  border: 1px solid #bfbfbf;
  border-radius: 4rem;
  -webkit-border-radius: 4rem;
  -moz-border-radius: 4rem;
  -ms-border-radius: 4rem;
  -o-border-radius: 4rem;
}
.tap-wrap .tap li a {
  display: block;
  padding: 2.7rem 1rem;
  line-height: 1;
  text-align: center;
  font-size: 1.7rem;
}
.tap-wrap .tap li a.sm {
  min-width: 16rem;
}
.tap-wrap .tap li a.lg {
  min-width: 23rem;
}
.tap-wrap .tap li.active {
  font-weight: 700;
  border: 2px solid #666;
}
.tap-wrap .tap li span {
  display: block;
  padding: 2.7rem 1rem;
  line-height: 1;
  text-align: center;
  font-size: 1.7rem;
}
.tap-wrap .tap li span.lg {
  min-width: 23rem;
}

@media all and (max-width: 85.375rem) {
  .tap-wrap {
    overflow-x: auto;
  }
  .tap-wrap .tap {
    width: 100%;
  }
  .products .tap-wrap {
    padding-left: 4rem;
  }
  .products .tap-wrap .tap {
    justify-content: flex-start;
  }
}
@media all and (max-width: 64rem) {
  .tap-wrap {
    margin: 0 auto 5rem;
  }
  .tap-wrap .tap li a {
    display: block;
    padding: 1.7rem 1rem;
    font-size: 1.4rem;
  }
  .tap-wrap .tap li a.sm {
    min-width: 10rem;
  }
  .tap-wrap .tap li a.lg {
    min-width: 17rem;
  }
  .tap-wrap .tap li span {
    padding: 1.7rem 1rem;
    font-size: 1.4rem;
  }
  .tap-wrap .tap li span.lg {
    min-width: 17rem;
  }
}
@media all and (max-width: 47.9375rem) {
  .tap-wrap {
    margin: 0 auto;
  }
  .tap-wrap .tap li:nth-of-type(odd) {
    margin-left: 0;
  }
  .tap-wrap .tap li:nth-of-type(even) {
    margin-right: 0;
  }
  .tap-wrap .tap li a.sm {
    min-width: 10rem;
  }
}
sup.fc-blue {
  color: #0034dc;
}

/* 테이블 */
.table-wrap {
  margin: 12rem 0 7rem;
  width: 100%;
}
.table-wrap table {
  width: 100%;
}
.table-wrap .td-center {
  text-align: center;
}
.table-wrap th {
  vertical-align: middle;
}
.table-wrap .table-type-1 {
  font-size: 1.7rem;
}
.table-wrap .table-type-1 thead th {
  padding: 2.2rem 2rem 2.15rem;
  font-weight: 400;
  border-style: solid;
  border-width: 0 1px 1px 0;
}
.table-wrap .table-type-1 thead th:last-child {
  border-right: 0 none;
}
.table-wrap .table-type-1 tbody th {
  padding: 1.225rem 2rem;
  font-weight: 400;
  border-style: solid;
  border-width: 0 1px 1px 0;
}
.table-wrap .table-type-1 tbody td {
  padding: 1.225rem 1rem;
  vertical-align: middle;
  height: 5.1rem;
  border-style: solid;
  border-width: 0 1px 1px 0;
}
.table-wrap .table-type-1 tbody td:last-child {
  border-right: 0 none;
}
.table-wrap .table-type-1 tbody tr:last-child th,
.table-wrap .table-type-1 tbody tr:last-child td {
  border-bottom: 0 none;
}
.table-wrap .border-type-1 {
  border: 1px solid #a3d0e4;
}
.table-wrap .border-type-1 thead th {
  border-color: transparent #c9e3ee #c9e3ee transparent;
}
.table-wrap .border-type-1 tbody th {
  border-color: transparent #c9e3ee #c9e3ee transparent;
}
.table-wrap .border-type-1 tbody td {
  border-color: transparent #c9e3ee #c9e3ee transparent;
}
.table-wrap .border-type-2 {
  border: 1px solid #ccc;
}
.table-wrap .border-type-2 thead th {
  border-color: transparent #ddd #ddd transparent;
}
.table-wrap .border-type-2 thead th:first-child {
  color: #217ea6;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
.table-wrap .border-type-2 tbody th {
  border-color: transparent #ccc #ddd transparent;
}
.table-wrap .border-type-2 tbody td {
  border-color: transparent #ddd #ddd transparent;
}

.th-left th {
  text-align: left;
}

.th-color-1 th {
  background-color: #eff6f9;
}

.th-color-2 th {
  background-color: #f9f9f9;
}

.table-type-1 .img-box td {
  padding: 0;
  background-color: #f6f6f6;
}

.stripe-table tbody tr:nth-of-type(odd) td {
  background-color: #f2f3f7;
}
.stripe-table tbody tr:nth-of-type(even) td {
  background-color: #fff;
}

.flex-between.mb-table .table {
  width: calc(50% - 2rem);
}
.flex-between.mb-table .color-caption {
  margin-bottom: 1.5rem;
  line-height: 1;
  text-align: left;
  font-size: 2.2rem;
  font-weight: 600;
  color: #217ea6;
}

.row-dl {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 2rem;
  font-size: 1.5rem;
}
.row-dl dt {
  margin-right: 1rem;
  padding: 0.7rem 1.3rem;
  line-height: 1;
  font-size: 0.867em;
  font-weight: 500;
  background-color: #cee8f4;
  border-radius: 1.3rem;
  -webkit-border-radius: 1.3rem;
  -moz-border-radius: 1.3rem;
  -ms-border-radius: 1.3rem;
  -o-border-radius: 1.3rem;
}
.row-dl dd {
  font-weight: 300;
}

.btn-box.bottom {
  margin: 8rem 0 7rem;
  width: 100%;
  text-align: center;
}
.btn-box.bottom .btn {
  display: inline-block;
  padding: 2.32rem 4rem 2.317rem 3.2rem;
  font-size: 2.1rem;
  color: #fff;
  background-color: rgb(var(--btn-blue));
  border-radius: 4rem;
  -webkit-border-radius: 4rem;
  -moz-border-radius: 4rem;
  -ms-border-radius: 4rem;
  -o-border-radius: 4rem;
}
.btn-box.bottom .btn:hover {
  background-color: rgba(var(--btn-blue), 0.7);
  transition: background-color 0.2s linear;
  -webkit-transition: background-color 0.2s linear;
  -moz-transition: background-color 0.2s linear;
  -ms-transition: background-color 0.2s linear;
  -o-transition: background-color 0.2s linear;
}
.btn-box.bottom .icon {
  display: inline-block;
  margin-right: 1.5rem;
}
.btn-box.bottom span {
  vertical-align: middle;
  line-height: 1;
}

@media all and (max-width: 64rem) {
  .table-wrap {
    margin: 7rem 0 7rem;
  }
  .table-wrap .border-type-1 {
    font-size: 1.5rem;
  }
  .flex-between.mb-table .table {
    width: calc(50% - 0.5rem);
  }
  .btn-box.bottom {
    margin-top: 4rem;
  }
  .btn-box.bottom .btn {
    padding: 1.2rem 2rem 1.2rem 2rem;
    font-size: 1.8rem;
  }
  .btn-box.bottom .icon {
    margin-right: 0.5rem;
    width: 1.8rem;
    height: 1.9rem;
  }
  .row-dl {
    flex-direction: column;
    gap: 1rem 0;
  }
}
@media all and (max-width: 62.5rem) {
  .table-wrap {
    margin: 5rem 0 5rem;
  }
  .table-wrap .table.over-table {
    position: relative;
    left: 0;
    top: 0;
    overflow: hidden;
    overflow-x: auto;
    width: 100%;
    border-left: 1px solid #a3d0e4;
    border-right: 1px solid #a3d0e4;
  }
  .table-wrap .table.over-table table {
    border-left: 0 none;
  }
  .table-wrap .table.over-table.type-2 {
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
  }
  .table-wrap .table.over-table.type-2 table {
    border-left: 0 none;
  }
  .table-wrap .table.over-table table {
    min-width: 80rem;
  }
  .table-wrap .table.over-table table th:first-child {
    z-index: 1;
    position: sticky;
    left: 0;
    border-left: 0 none;
  }
  .table-wrap .table.over-table.sm-over {
    border-left: 0 none;
    border-right: 0 none;
  }
  .table-wrap .table.over-table.sm-over table {
    min-width: 70rem;
  }
  .table-wrap .table.over-table.wid-over table {
    min-width: 120rem;
  }
  .table-wrap .table tr.img-box img {
    max-width: 45rem;
  }
  .flex-between.mb-table {
    flex-direction: column;
  }
  .flex-between.mb-table .table {
    margin-bottom: 4rem;
    width: 100%;
  }
}
@media all and (max-width: 47.9375rem) {
  .table-wrap {
    margin: 5rem 0 5rem;
  }
  .table-wrap .border-type-1 thead {
    padding: 1.225rem;
  }
  .table-wrap .border-type-1 tbody th {
    padding: 1.225rem;
  }
  .table-wrap .border-type-1 tbody .fix {
    position: static !important;
  }
  .table-wrap .table.over-table table th:first-child {
    position: static;
  }
}
.hash-wrap {
  overflow: hidden;
  opacity: 0 !important;
  margin: -1px;
  width: 0;
  height: 0;
  max-width: 140rem;
  text-align: center;
}

.bg-wt {
  padding: 4rem;
  background-color: #fff !important;
  border-width: 1px 0 1px 1px;
  border-style: solid;
  border-color: #dfdfdf;
}

.sub-tit + .bg-wt {
  border-width: 1px !important;
}

.caption {
  margin-bottom: 1rem;
  font-size: 1.7rem;
  font-weight: 600;
}

/*페이지*/
/*
company
*/
.company .visual {
  background-image: url("../img/sub/company.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.company .sec-1 {
  padding: 12rem 0 4rem;
}
.company .sec-1 .col-box {
  margin: 11rem 0;
  display: flex;
  justify-content: flex-start;
}
.company .sec-1 .col-item {
  position: relative;
  left: 0;
  top: 0;
  margin-right: 6rem;
  width: calc((100% - 12rem) / 3);
}
.company .sec-1 .col-item:last-child {
  margin-right: 0;
}
.company .sec-1 .col-item .figure {
  margin-bottom: 2.5rem;
  height: 16.3rem;
}
.company .sec-1 .col-item .figure .img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.company .sec-1 .col-item:first-child {
  padding-right: 4rem;
}
.company .sec-1 .col-item:first-child + .col-item .figure {
  display: block;
  margin-left: -6rem;
}
.company .sec-1 .col-item:last-child {
  padding-left: 2.5rem;
}
.company .sec-1 .col-desc {
  font-size: 2.6rem;
  font-weight: 300;
}
.company .sec-1 .side-txt.left {
  bottom: 23.8rem;
}
.company .sec-2 {
  padding: 21rem 0;
  width: 100%;
  background: linear-gradient(-15deg, #fde9e4, #c8d6e2);
}
.company .sec-2 .col-box {
  display: flex;
  justify-content: flex-start;
  margin-top: 2rem;
}
.company .sec-2 .col-item:first-child {
  margin-right: 12.5rem;
  padding: 0;
}
.company .sec-2 .col-item:last-child dl {
  display: flex;
  justify-content: flex-start;
  margin: 1rem 0;
  padding-bottom: 0.4rem;
  font-size: 1.8rem;
}
.company .sec-2 .col-item:last-child dl dt {
  margin-right: 3.5rem;
  min-width: 12.5rem;
  font-weight: 500;
}
.company .sec-2 .col-item:last-child dl dd {
  font-weight: 300;
}
.company .sec-3 {
  padding: 7rem 0 5rem;
}
.company .sec-3 .history ul {
  margin: 11.5rem auto 0;
  max-width: 98rem;
}
.company .sec-3 .history ul li {
  position: relative;
  left: 0;
  top: 0;
  margin-bottom: 12rem;
}
.company .sec-3 .history ul li > span {
  position: absolute;
  left: 50%;
  top: -6rem;
  font-size: 3rem;
  font-weight: 700;
  font-family: "GmarketSans", sans-serif;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}
.company .sec-3 .history ul li .txt-box {
  position: absolute;
}
.company .sec-3 .history ul li .figure {
  overflow: hidden;
  width: calc(50% - 6rem);
}
.company .sec-3 .history ul li .figure .img {
  transform: scale(1);
  transition: transform 1s linear;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  -webkit-transition: transform 1s linear;
  -moz-transition: transform 1s linear;
  -ms-transition: transform 1s linear;
  -o-transition: transform 1s linear;
}
.company .sec-3 .history ul li:not(:last-child) .figure:hover .img {
  transform: scale(1.1);
  transition: transform 1s linear;
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  -webkit-transition: transform 1s linear;
  -moz-transition: transform 1s linear;
  -ms-transition: transform 1s linear;
  -o-transition: transform 1s linear;
}
.company .sec-3 .history ul li .dot {
  position: relative;
  left: 0;
  top: 0;
  padding-left: 1.7rem;
  line-height: 1.7;
  font-size: var(--desc-font);
  font-weight: 300;
}
.company .sec-3 .history ul li .dot > b {
  margin-right: 1.5rem;
  font-weight: 600;
}
.company .sec-3 .history ul li .dot::before {
  position: absolute;
  left: 0;
  top: 0;
  content: "·";
  font-weight: 700;
}
.company .sec-3 .history ul li::before {
  z-index: 1;
  position: absolute;
  left: 50%;
  top: 0;
  content: "";
  width: 1.5rem;
  height: 1.5rem;
  background-color: #fff;
  border-radius: 0.7rem;
  border: 0.5rem solid #000;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  -webkit-border-radius: 0.7rem;
  -moz-border-radius: 0.7rem;
  -ms-border-radius: 0.7rem;
  -o-border-radius: 0.7rem;
}
.company .sec-3 .history ul li::after {
  position: absolute;
  left: 50%;
  top: 0;
  content: "";
  width: 1px;
  height: 100%;
  background-color: #e5e5e5;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}
.company .sec-3 .history ul li.left .txt-box {
  left: calc(50% + 6rem);
  top: 0;
}
.company .sec-3 .history ul li.right .figure {
  margin-left: calc(50% + 6rem);
}
.company .sec-3 .history ul li.right .txt-box {
  right: calc(50% + 6rem);
}
.company .sec-3 .history ul li:first-child .figure {
  position: relative;
  left: 0;
  top: 0;
}
.company .sec-3 .history ul li:first-child .figure::before {
  z-index: 0;
  position: absolute;
  left: -18.6%;
  top: -28%;
  content: "";
  width: 15rem;
  height: 15rem;
  background: url("../img/sub/deco.png") center/cover no-repeat;
}
.company .sec-3 .history ul li:first-child .figure .figure {
  z-index: 1;
  position: relative;
  left: 0;
  top: 0;
}
.company .sec-3 .history ul li:last-child {
  margin-bottom: 0;
}
.company .sec-3 .history ul li:last-child .figure {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}
.company .sec-3 .side-txt.left {
  bottom: 55%;
}
.company .sec-3 .side-txt.item-1 {
  top: 20%;
}
.company .sec-3 .side-txt.item-2 {
  bottom: 32%;
}
.company .sec-4 {
  margin-top: 0;
  padding: 4rem 0;
}
.company .sec-4 .img-wrap {
  margin-top: 4rem;
  padding: 3rem 0;
}
.company .sec-4 .img-wrap .figure {
  overflow: hidden;
  padding: 0;
  margin-right: 1rem;
  margin-bottom: 1rem;
  font-size: 0;
}
.company .sec-4 .img-wrap .figure .img {
  transform: scale(1);
  transition: transform 2s;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  -webkit-transition: transform 2s;
  -moz-transition: transform 2s;
  -ms-transition: transform 2s;
  -o-transition: transform 2s;
}
.company .sec-4 .img-wrap .figure:hover .img {
  transform: scale(1.05);
  transition: transform 2s;
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
  -webkit-transition: transform 2s;
  -moz-transition: transform 2s;
  -ms-transition: transform 2s;
  -o-transition: transform 2s;
}
.company .sec-4 .img-wrap .figure:first-child {
  width: 54.514%;
  max-width: 78.5rem;
}
.company .sec-4 .img-wrap .figure:nth-of-type(2) {
  position: absolute;
  right: 0;
  top: 15rem;
  margin-right: 0;
  width: 45.49%;
  max-width: 65.6rem;
}
.company .sec-4 .img-wrap .figure:last-child {
  margin-bottom: 0;
  width: 54.514%;
  max-width: 78.5rem;
}

@media all and (max-width: 85.375rem) {
  .company .sec-1 .col-desc {
    font-size: 2rem;
  }
}
@media all and (max-width: 64rem) {
  .company .sec-1 .col-item:first-child + .col-item .figure {
    margin-left: 0;
  }
  .company .sec-1 .col-desc {
    font-size: 1.8rem;
  }
  .company .sec-2 {
    padding: 15rem 0;
  }
}
@media all and (max-width: 62.5rem) {
  .company .sec-1 .col-box {
    flex-wrap: wrap;
    margin: 4rem 0;
  }
  .company .sec-1 .col-item {
    margin-bottom: 6rem;
    width: calc((100% - 6rem) / 2);
  }
  .company .sec-1 .col-item:nth-of-type(even) {
    margin-right: 0;
  }
  .company .sec-1 .col-item:last-child {
    padding-left: 0;
  }
  .company .sec-2 {
    padding: 8rem 0;
  }
  .company .sec-2 .col-box {
    flex-direction: column;
  }
  .company .sec-2 .col-item:first-child {
    margin-bottom: 4rem;
  }
  .company .sec-3 .history ul li {
    padding-left: 6rem;
  }
  .company .sec-3 .history ul li::after, .company .sec-3 .history ul li::before {
    left: 0;
  }
  .company .sec-3 .history ul li > span {
    left: 0;
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
  }
  .company .sec-3 .history ul li .txt-box {
    position: relative;
    margin-top: 2rem;
  }
  .company .sec-3 .history ul li.left .txt-box {
    left: 0;
  }
  .company .sec-3 .history ul li.right {
    display: flex;
    flex-direction: column-reverse;
  }
  .company .sec-3 .history ul li.right .txt-box {
    right: 0;
  }
  .company .sec-3 .history ul li.right .figure {
    margin-left: 0;
  }
  .company .sec-3 .history ul li:last-child .figure {
    padding: 0;
  }
}
@media all and (max-width: 47.9375rem) {
  .company .sec-1 .col-box {
    flex-wrap: wrap;
  }
  .company .sec-1 .col-item {
    margin-bottom: 6rem;
    margin-right: 0;
    padding: 0;
    width: 100%;
  }
  .company .sec-1 .col-item:first-child {
    padding: 0;
  }
  .company .sec-1 .col-item .figure {
    height: 10rem;
  }
  .company .sec-1 .col-item:nth-of-type(even) {
    margin-right: 0;
  }
  .company .sec-1 .col-item:last-child {
    padding-left: 0;
  }
  .company .sec-3 .history ul li {
    padding-left: 4rem;
  }
  .company .sec-3 .history ul li .txt-box {
    position: relative;
    margin-top: 2rem;
  }
  .company .sec-3 .history ul li .figure {
    width: 70%;
  }
  .company .sec-3 .history ul li:first-child .figure::before {
    left: -18%;
    top: -20%;
    width: 7rem;
    height: 7rem;
  }
}
/*
Technology
*/
.technology .visual {
  background-image: url("../img/sub/technology.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.technology .sec-1 {
  margin-top: 0;
  padding-top: 6rem;
}
.technology .sec-1 .side-txt.left.item-1 {
  top: 38%;
}
.technology .sec-1 .side-txt.left.item-2 {
  bottom: 26%;
}
.technology .sec-1 .side-txt.right.item-1 {
  top: 48%;
}
.technology .sec-1 .side-txt.right.item-2 {
  bottom: 12%;
}
.technology .sec-2 {
  margin-bottom: 0;
  padding: 12rem 0 10rem;
}
.technology .sec-2 .full-img-box {
  margin-top: 6rem;
}
.technology .sec-2 .side-txt.left.item-1 {
  top: 22%;
}
.technology .sec-2 .side-txt.left.item-2 {
  bottom: 40%;
}
.technology .sec-2 .side-txt.right.item-1 {
  top: 30%;
}
.technology .sec-2 .side-txt.right.item-2 {
  bottom: 25%;
}
.technology .sec-3 {
  margin-top: 0;
  padding: 12rem 0 2rem;
}
.technology .sec-3 .dot-list {
  margin: 1rem;
}
.technology .sec-3 .side-txt.left.item-1 {
  top: 26%;
}
.technology .sec-3 .side-txt.left.item-2 {
  bottom: -15rem;
}
.technology .sec-3 .side-txt.right {
  top: 40%;
}

@media all and (max-width: 85.375rem) {
  .technology .sec-2 {
    padding: 6rem 0 3rem;
  }
}
@media all and (max-width: 64rem) {
  .technology .sec-2 {
    padding: 6rem 0 3rem;
  }
  .technology .sec-3 {
    padding: 6rem 0 2rem;
  }
}
@media all and (max-width: 47.9375rem) {
  .technology .sec-1 .img-wrap-box .img-txt {
    width: 80%;
    text-align: center;
  }
}
/*
Products
*/
.products .visual {
  background-image: url("../img/sub/product.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.products .embedded_m .sec-1 .side-txt.left.item-1 {
  top: 27%;
}
.products .embedded_m .sec-1 .side-txt.left.item-2 {
  bottom: 42%;
}
.products .embedded_m .sec-1 .side-txt.right.item-1 {
  top: 33.5%;
}
.products .embedded_m .sec-1 .side-txt.right.item-2 {
  bottom: 34%;
}
.products .embedded_m .table table {
  left: -15rem;
}
.products .embedded_xm .sec-1 .side-txt.left.item-1 {
  top: 38%;
}
.products .embedded_xm .sec-1 .side-txt.left.item-2 {
  bottom: 22%;
}
.products .embedded_xm .sec-1 .side-txt.right.item-1 {
  top: 47%;
}
.products .embedded_xm .sec-1 .side-txt.right.item-2 {
  bottom: 10%;
}
.products .img-wrap-box .figure {
  margin-bottom: 5rem;
}

@media all and (max-width: 85.375rem) {
  .embedded_xm .column-box .txt-box .box-inner {
    position: static;
    margin: 2rem 0;
    width: 100%;
    top: 0;
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
  }
}
@media all and (max-width: 62.5rem) {
  .embedded_xm .column-box .txt-box .box-inner {
    margin: 0;
  }
  .products .img-wrap-box .figure {
    margin-bottom: 2.5rem;
  }
}
.gnss .sec-1 .side-txt.left.item-1 {
  top: 29%;
}
.gnss .sec-1 .side-txt.left.item-2 {
  bottom: 46%;
}
.gnss .sec-1 .side-txt.right.item-1 {
  top: 33%;
}
.gnss .sec-1 .side-txt.right.item-2 {
  bottom: 10%;
}
.gnss .table-wrap .img-table tbody tr:last-child td {
  padding: 5rem 1rem 3rem;
}
.gnss .table-wrap thead th {
  font-weight: 600;
}
.gnss .table-wrap + .table-wrap {
  margin-top: 8rem !important;
}

.sub-tit + .img-wrap-box {
  margin: 0 0 1rem;
  padding: 9rem 6.8% 6rem 13%;
}
.sub-tit + .img-wrap-box .figure img {
  width: 100%;
}

.box-br {
  border: 1px solid #ddd;
}
.box-br .figure {
  padding: 0 2rem;
}

@media all and (max-width: 62.5rem) {
  .gnss .sub-tit + .img-wrap-box {
    margin: 0 0 1rem;
    padding: 5rem 1rem 4rem 1rem;
  }
  .gnss .sub-tit + .img-wrap-box .figure img {
    width: 100%;
  }
  .gnss .table-wrap .table tbody .fix {
    z-index: 2;
    position: sticky;
    left: 9rem;
  }
}
@media all and (max-width: 47.9375rem) {
  .gnss .sub-tit + .img-wrap-box {
    margin: 0 0 1rem;
    padding: 5rem 1rem 4rem 1rem;
  }
  .gnss .sub-tit + .img-wrap-box .figure img {
    width: 100%;
  }
  .gnss .table-wrap.over-table .table table {
    width: 90rem;
  }
  .gnss .table-wrap.over-table .mb-table .table {
    overflow: hidden;
    overflow-x: auto;
    width: 100%;
  }
  .gnss .table-wrap.over-table .mb-table .table table {
    width: 100%;
    width: 50rem;
  }
}
.rf .sec-1 .side-txt.left.item-1 {
  top: 37%;
}
.rf .sec-1 .side-txt.left.item-2 {
  bottom: 30%;
}
.rf .sec-1 .side-txt.right.item-1 {
  top: 41%;
}
.rf .sec-1 .side-txt.right.item-2 {
  bottom: 15%;
}
.rf .table-wrap + .table-wrap {
  margin-top: 8rem;
}

@media all and (max-width: 64rem) {
  .rf .column-box + .table-wrap .table.over-table {
    position: relative;
    left: 0;
    top: 0;
    overflow: hidden;
    overflow-x: auto;
    width: 100%;
    border-left: 1px solid #a3d0e4;
    border-right: 1px solid #a3d0e4;
  }
  .rf .column-box + .table-wrap .table.over-table table {
    min-width: 120rem;
  }
}
@media all and (max-width: 62.5rem) {
  .rf .column-box + .table-wrap colgroup col:nth-of-type(1) {
    width: 13% !important;
  }
}
/*
news
*/
.news .visual {
  background-image: url("../img/sub/news.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.news .sec-1 .table-wrap {
  margin: 2rem 0;
}

/* 게시판 */
.board .th-color {
  background-color: #edeff1;
}
.board thead {
  border: 1px solid #e5e5e1;
}
.board thead th {
  padding: 2.35rem 0;
  line-height: 1;
  font-size: 1.7rem;
}
.board thead th span {
  display: inline-block;
  width: 100%;
  border-left: 1px solid #d2d2d3;
  border-right: 1px solid #d2d2d3;
}
.board thead th:first-child, .board thead th:last-child {
  padding-left: 1rem;
  padding-right: 1rem;
}
.board thead th:last-child span {
  border: 0 none;
}
.board tbody tr {
  border-bottom: 1px solid #e4e5e5;
}
.board tbody td {
  padding: 1rem 1rem;
  height: 6.5rem;
  text-align: center;
  font-size: 1.9rem;
  font-weight: 300;
  color: #333;
}
.board tbody td.tit {
  padding: 1.5rem 4rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.board tbody td.tit > a {
  max-width: calc(100% - 13rem);
  overflow: hidden;
  font-weight: 400;
  color: #000;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.board tbody td.name {
  overflow: hidden;
  max-width: 20rem;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.board .flag {
  display: inline-block;
  margin: 1rem;
  padding: 0.85rem 1rem;
  line-height: 1;
  font-size: 1.1rem;
  color: #fff;
  background-color: #001a48;
  border: 1px solid #21170b;
  border-radius: 1.7rem;
  -webkit-border-radius: 1.7rem;
  -moz-border-radius: 1.7rem;
  -ms-border-radius: 1.7rem;
  -o-border-radius: 1.7rem;
}

@media all and (max-width: 62.5rem) {
  .board {
    border-top: 1px solid #e4e5e5;
  }
  .board colgroup {
    display: none;
  }
  .board .mo {
    display: none;
  }
  .board tbody tr {
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px solid #e4e5e5;
  }
  .board tbody td {
    padding: 1rem 0.5rem 0.5rem;
    height: 4rem;
    font-size: 1.5rem;
  }
  .board tbody td.num {
    width: 5rem;
    min-width: 5rem;
  }
  .board tbody td.tit {
    order: 4;
    padding: 0 1rem 1rem;
    width: 100%;
  }
  .board tbody td.tit > a {
    display: block;
    max-width: 100%;
  }
  .board tbody td.date {
    margin-left: auto;
    padding: 0.5rem 1rem;
    height: 2.5rem;
    text-align: right;
  }
  .board .flag {
    margin-right: 1.5rem;
    padding: 0.5rem 1rem;
    line-height: 1;
    font-size: 1.25rem;
  }
}
/*
contact
*/
.contact .visual {
  background-image: url("../img/sub/contact.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.contactus {
  padding-bottom: 0;
}
.contactus .icon-tit {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 2rem;
  font-size: 2.2rem;
  font-weight: 600;
}
.contactus .icon-tit .icon {
  display: block;
  margin-right: 1.5rem;
  width: 4.1rem;
  height: 4.1rem;
  -o-object-position: center;
     object-position: center;
}
.contactus .info-list {
  margin-bottom: 5rem;
  padding: 1rem 0;
}
.contactus .info-list > dl {
  display: flex;
  justify-content: flex-start;
  margin: 1.2rem 0;
  font-size: 1.9rem;
}
.contactus .info-list > dl dt {
  margin-right: 2rem;
  font-weight: 700;
}
.contactus .info-list > dl .num {
  display: inline-block;
  margin: 0 0.5rem 0 1rem;
  padding: 0.6rem 0.943rem;
  line-height: 1;
  font-size: 0.842em;
  color: #fff;
  border-radius: 1.4rem;
  -webkit-border-radius: 1.4rem;
  -moz-border-radius: 1.4rem;
  -ms-border-radius: 1.4rem;
  -o-border-radius: 1.4rem;
}
.contactus .info-list > dl dd {
  font-weight: 300;
}
.contactus .info-list > dl dd .num {
  background-color: #758002;
}
.contactus .info-list.item-1 dl dt {
  position: relative;
  left: 0;
  top: 0;
  margin-right: 1rem;
  padding-right: 2rem;
  min-width: 19rem;
  font-weight: 700;
}
.contactus .info-list.item-1 dl dt::before {
  position: absolute;
  right: -0.25rem;
  top: 50%;
  content: "|";
  font-size: 2.5rem;
  font-weight: 100;
  color: #ccc;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}
.contactus .info-list.item-1 > dl:nth-of-type(1) dt {
  color: #020880;
}
.contactus .info-list.item-1 > dl:nth-of-type(1) dt .num {
  background-color: #020880;
}
.contactus .info-list.item-1 > dl:nth-of-type(2) dt {
  color: #020880;
}
.contactus .info-list.item-1 > dl:nth-of-type(2) dt .num {
  background-color: #020880;
}
.contactus .info-list.item-1 > dl:nth-of-type(3) dt {
  color: #19b200;
}
.contactus .info-list.item-1 > dl:nth-of-type(3) dt .num {
  background-color: #19b200;
}
.contactus .info-list.item-2 dl dt {
  min-width: 19rem;
  color: #144e8c;
}
.contactus .info-list.item-3 {
  margin-bottom: 2rem;
}
.contactus .info-list.item-3 dl,
.contactus .info-list.item-3 dd {
  margin-top: 0;
}
.contactus .map-wrap {
  width: 100%;
  height: 70rem;
}
.contactus .map-wrap .root_daum_roughmap {
  width: inherit;
  height: inherit;
}
.contactus .map-wrap .root_daum_roughmap .wrap_map {
  width: inherit;
  height: inherit;
}

@media all and (max-width: 85.375rem) {
  .contactus .info-list.item-1 dl dt::before {
    top: 25%;
  }
}
@media all and (max-width: 64rem) {
  .contactus .info-list {
    margin-bottom: 3rem;
    padding: 1rem 0;
  }
  .contactus .info-list > dl {
    flex-direction: column;
  }
  .contactus .info-list > dl dd {
    margin-top: 1rem;
  }
  .contactus .info-list > dl dd .num {
    margin-left: 0;
  }
  .contactus .info-list.item-1 dl {
    margin-bottom: 2.5rem;
  }
  .contactus .info-list.item-1 dl dt::before {
    left: 0;
    top: -0.5rem;
    width: 2rem;
    height: 0.1rem;
    content: "";
    background-color: #ccc;
  }
  .contactus .map-wrap {
    height: 50rem;
  }
}
@media all and (max-width: 47.9375rem) {
  .contactus .icon-tit {
    margin-bottom: 1.5rem;
    font-size: 2rem;
  }
  .contactus .icon-tit .icon {
    margin-right: 1.2rem;
    width: 3.7rem;
    height: 3.7rem;
  }
}
/* 공지사항 상세 */
.view-wrap {
  margin-bottom: 7rem;
}
.view-wrap .tit-wrap {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding-bottom: 3rem;
  line-height: 1;
  font-size: 3.2rem;
  border-bottom: 1px solid #e4e5e5;
}
.view-wrap .tit-wrap .tit-box {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  width: 100%;
}
.view-wrap .tit-wrap .tit-box .up-date {
  margin-left: auto;
  font-size: 0.7em;
  font-weight: 300;
}
.view-wrap .tit-wrap .flag {
  display: inline-block;
  margin-right: 1rem;
  padding: 0.8rem 1.5rem;
  font-size: 0.6em;
  color: #fff;
  background-color: #020880;
  border-radius: 3rem;
  -webkit-border-radius: 3rem;
  -moz-border-radius: 3rem;
  -ms-border-radius: 3rem;
  -o-border-radius: 3rem;
}
.view-wrap .view-txt-box {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  margin-bottom: 3rem;
  padding: 3rem 0;
  min-height: 56vh;
  border-bottom: 1px solid #e4e5e5;
}
.view-wrap .view-txt-box .box-inner {
  flex: 1;
  padding: 3rem 0;
  line-height: 2;
  font-size: 1.6rem;
}
.view-wrap .view-txt-box .box-inner .figure {
  margin: 2rem auto;
  max-width: 80%;
  /*240514*/
}
.view-wrap .view-txt-box .box-inner .figure img {
  width: none;
  -o-object-fit: contain;
     object-fit: contain;
  /*240514*/
}
.view-wrap .view-txt-box .file-wrap {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}
.view-wrap .view-txt-box .file-wrap dt {
  padding-top: 1.5rem;
  min-width: 6.5rem;
  font-weight: 600;
}
.view-wrap .view-txt-box .file-wrap dd {
  padding-left: 2rem;
  font-weight: 200;
}
.view-wrap .view-txt-box .file-wrap dd > div {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin: 0.5rem;
}
.view-wrap .view-txt-box .file-wrap dd > div > span {
  display: block;
  overflow: hidden;
  margin-right: 1rem;
  max-width: 13rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.view-wrap .view-txt-box .file-wrap dd .btn {
  margin-left: auto;
  padding: 0.5rem 1rem;
}
.view-wrap .view-txt-box .file-wrap dd .btn > img {
  width: 1rem;
}
.view-wrap .btn-box {
  text-align: center;
}
.view-wrap .btn-box > .btn {
  display: inline-block;
  white-space: nowrap;
}

@media all and (max-width: 64rem) {
  .view-wrap .tit-wrap {
    padding-bottom: 1.5rem;
    font-size: 2rem;
  }
}
/*
글쓰기
*/
.rfq-write .form-wrap {
  margin-bottom: 39.8vh;
  padding: 5rem 4.5rem;
  border-top: 3px solid #000;
  background-color: #f9f9f9;
}
.rfq-write .form-wrap .btn-box {
  margin: 5rem auto 0.5rem;
  text-align: center;
}
.rfq-write .input-group {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin: 2rem 0;
  width: 100%;
}
.rfq-write .input-group .label {
  display: inline-block;
  padding-left: 3.5rem;
  width: 17.5rem;
  min-width: 11rem;
  font-size: 1.9rem;
  font-weight: 300;
}
.rfq-write .input-group .label > span {
  display: inline-block;
  height: 4.6rem;
  line-height: 4.6rem;
}
.rfq-write .input-group .label .req {
  position: relative;
  left: 0;
  top: 0;
}
.rfq-write .input-group .label .req::before {
  position: absolute;
  left: -1rem;
  top: -0.5rem;
  content: "*";
  font-size: 0.894em;
  color: #d30000;
}
.rfq-write .input-group .label + input {
  flex: 1 1 0;
}
.rfq-write .input-group .label + input.col-3 {
  width: 33.5rem;
}
.rfq-write .input-group .label + div {
  flex: 1 1 0;
}
.rfq-write .input-group .label + div .col-3 {
  width: 33.5rem;
}
.rfq-write .input-group .label + div .col-3 input:first-child {
  width: 12rem;
}
.rfq-write .input-group .label + div .col-3 input:first-child + span {
  display: inline-block;
  width: 2rem;
  text-align: center;
}
.rfq-write .input-group .label + div .col-3 input:nth-of-type(2) {
  flex: 1 1 0;
  min-width: 0;
}
.rfq-write .input-group .textarea {
  flex: 1 1 0;
  padding: 0.7rem 1rem;
  height: 4.6rem;
  min-height: 4.6rem;
  font-size: 1.7rem;
  background-color: #fff;
  border: 1px solid #dadada;
}
.rfq-write .input-group .file-wrap {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 4.6rem;
  background-color: #fff;
  border: 1px solid #dadada;
}
.rfq-write .input-group .file-wrap input {
  padding: 0 1rem;
  border: 0 none;
}
.rfq-write .input-group .file-wrap .btn {
  margin-left: auto;
  margin-right: 1rem;
}

@media all and (max-width: 62.5rem) {
  .rfq-write .form-wrap {
    margin-bottom: 10vh;
    padding: 3rem 2.5rem;
  }
  .rfq-write .form-wrap .input-group .label {
    padding-left: 0;
    width: 11rem;
  }
  .rfq-write .form-wrap .input-group .label + input {
    flex: 1 1 0;
    width: 100%;
  }
  .rfq-write .form-wrap .input-group .label + input.col-3 {
    width: 100%;
  }
  .rfq-write .form-wrap .input-group .label + div .col-3 {
    margin-bottom: 0.5rem;
    margin-right: 1rem;
    width: 100%;
  }
  .rfq-write .form-wrap .input-group .label + div .col-3 input:nth-of-type(2) {
    width: 10%;
    min-width: 0;
  }
  .rfq-write .form-wrap .input-group .label + div .select-wrap {
    margin-left: 0;
  }
  .rfq-write .form-wrap .input-group .textarea {
    flex: 1 1 0;
    width: 100%;
    resize: vertical;
  }
}
@media all and (max-width: 47.9375rem) {
  .rfq-write .form-wrap .input-group {
    flex-direction: column;
    align-items: flex-start;
    margin: 1rem 0;
    height: auto;
  }
  .rfq-write .form-wrap .input-group .label {
    width: 100%;
    font-size: 1.5rem;
  }
  .rfq-write .form-wrap .input-group .label + input {
    flex: none;
  }
  .rfq-write .form-wrap .input-group:nth-of-type(3) > div {
    flex-direction: column;
    align-items: flex-start;
  }
  .rfq-write .form-wrap .input-group .file-wrap {
    width: 100%;
  }
  .rfq-write .form-wrap .input-group .file-wrap input {
    min-width: 0;
    width: 100%;
  }
  .rfq-write .form-wrap .input-group .textarea {
    flex: none;
    height: 30rem;
  }
}
/*
문의 리스트
*/
.rfq-list .tap-wrap {
  margin-bottom: 3rem;
}
.rfq-list .section {
  margin: 3rem 0 15rem;
}
.rfq-list .table-wrap:nth-of-type(1) {
  margin-top: 0;
}
.rfq-list .table-top {
  margin-bottom: 1.5rem;
  text-align: right;
}
.rfq-list .table-top .btn {
  display: inline-block;
  padding: 1.375rem;
  white-space: nowrap;
}
.rfq-list .table-top .btn .icon {
  display: inline-block;
  width: 2.1rem;
  height: 1.6rem;
  vertical-align: middle;
}
.rfq-list .board td .icon {
  display: block;
  position: relative;
  left: 0;
  top: 0;
  margin-right: 1.6rem;
  width: 2rem;
  height: 2.5rem;
  font-size: 0;
}
.rfq-list .board td .icon.rock::before {
  position: absolute;
  left: 0;
  top: 0;
  width: inherit;
  height: inherit;
  content: url("../img/icon/rock.svg");
}
.rfq-list .board td .icon.open::before {
  position: absolute;
  left: 0;
  top: 0;
  width: inherit;
  height: inherit;
  content: url("../img/icon/rock-open.svg");
}
.rfq-list .board td a {
  max-width: 60vw;
  overflow: hidden;
  font-weight: 400;
  color: #000;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.rfq-list .board .reply .icon {
  display: inline-block;
  margin-left: 4rem;
  width: 2.7rem;
  height: 2.6rem;
}

@media all and (max-width: 62.5rem) {
  .rfq-list .section {
    margin: 3rem 0 8rem;
  }
  .rfq-list .table-wrap:nth-of-type(1) {
    margin-top: 0;
  }
  .rfq-list .table-top .btn {
    display: inline-block;
    padding: 1rem;
  }
  .rfq-list .board td .icon::before {
    transform: scale(0.6);
    -webkit-transform: scale(0.6);
    -moz-transform: scale(0.6);
    -ms-transform: scale(0.6);
    -o-transform: scale(0.6);
  }
}
/*
아코디언
*/
.accordion-wrap {
  padding: 2rem 0;
}

.accordion-list {
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}
.accordion-list .accordion {
  width: 100%;
  font-size: 1.7rem;
}
.accordion-list .accordion .accordion-header {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 3rem 0;
  width: 100%;
  font-size: 1.1176em;
  border-bottom: 1px solid #e5e5e5;
}
.accordion-list .accordion .accordion-header > span:first-child {
  padding: 0 2.5rem;
  font-size: 1.47em;
  border-right: 1px solid #e5e5e5;
}
.accordion-list .accordion .accordion-header .header-txt {
  position: relative;
  left: 0;
  top: 0;
  flex: 1 1 0;
  padding: 0 2.7rem;
  line-height: 3.7rem;
  text-align: left;
  font-size: inherit;
}
.accordion-list .accordion .accordion-header .icon {
  margin-left: auto;
  margin-right: 2rem;
  padding: 0.2rem;
  width: 3.7rem;
  height: 3.7rem;
  border: 1px solid #e5e5e5;
}
.accordion-list .accordion .accordion-header .icon > img {
  margin-top: 50%;
  transform-origin: top center;
  transform: rotate(0) translateY(-50%);
  transition: transform 0.3s;
  -webkit-transform: rotate(0) translateY(-50%);
  -moz-transform: rotate(0) translateY(-50%);
  -ms-transform: rotate(0) translateY(-50%);
  -o-transform: rotate(0) translateY(-50%);
  -webkit-transition: transform 0.3s;
  -moz-transition: transform 0.3s;
  -ms-transition: transform 0.3s;
  -o-transition: transform 0.3s;
}
.accordion-list .accordion .accordion-body {
  display: none;
  padding: 4.5rem 0;
  font-size: 1em;
  background-color: #f2f3f7;
}
.accordion-list .accordion .accordion-body > div > div:first-child {
  padding: 0 2.8rem;
}
.accordion-list .accordion .accordion-body > div > div:first-child span {
  font-size: 1.47em;
  font-weight: 600;
  color: #57311a;
  border-bottom: 2px solid #57311a;
}
.accordion-list .accordion .accordion-body .accordion-inner {
  padding: 0 2.7rem;
  line-height: 3.5rem;
}
.accordion-list .accordion.open .accordion-header {
  border-bottom-color: transparent;
}
.accordion-list .accordion.open .accordion-header .icon > img {
  transform: rotate(180deg);
  transition: transform 0.3s;
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  -webkit-transition: transform 0.3s;
  -moz-transition: transform 0.3s;
  -ms-transition: transform 0.3s;
  -o-transition: transform 0.3s;
}

@media all and (max-width: 62.5rem) {
  .accordion-list .accordion {
    font-size: 1.5rem;
  }
  .accordion-list .accordion .accordion-header {
    padding: 2rem 0;
  }
  .accordion-list .accordion .accordion-header > span:first-child {
    padding: 0 1.5rem;
  }
  .accordion-list .accordion .accordion-header .header-txt {
    padding: 0 1.7rem;
    line-height: 3rem;
  }
  .accordion-list .accordion .accordion-header .icon {
    width: 3rem;
    height: 3rem;
  }
  .accordion-list .accordion .accordion-body {
    padding: 3.5rem 0;
  }
  .accordion-list .accordion .accordion-body > div > div:first-child {
    padding: 0 1.8rem;
  }
  .accordion-list .accordion .accordion-body .accordion-inner {
    padding: 0 1.7rem;
  }
}
@media all and (max-width: 47.9375rem) {
  .accordion-list .accordion {
    font-size: 1.5rem;
  }
  .accordion-list .accordion .accordion-header {
    padding: 2rem 0;
  }
  .accordion-list .accordion .accordion-header > span:first-child {
    padding: 0 1.5rem;
  }
  .accordion-list .accordion .accordion-header .header-txt {
    padding: 0 1.7rem;
    line-height: 2.5rem;
  }
  .accordion-list .accordion .accordion-header .icon {
    width: 2.5rem;
    height: 2.5rem;
  }
  .accordion-list .accordion .accordion-body {
    padding: 3.5rem 0;
  }
  .accordion-list .accordion .accordion-body > div > div:first-child {
    padding: 0 1.8rem;
  }
  .accordion-list .accordion .accordion-body .accordion-inner {
    line-height: 2.5rem;
  }
}
/*
페이지네이션
*/
.pagination {
  display: flex;
  justify-content: center;
  margin: 3rem 0 15rem;
  align-items: center;
}
.pagination > button {
  width: 2rem;
  height: 2.5rem;
  text-indent: -9999px;
  background-repeat: no-repeat;
  background-position: center;
}
.pagination > button:hover {
  opacity: 0.5;
}
.pagination > button.start-page {
  background-image: url("../img/icon/start.svg");
}
.pagination > button.prev-page {
  background-image: url("../img/icon/prev.svg");
}
.pagination > button.next-page {
  background-image: url("../img/icon/next.svg");
}
.pagination > button.end-page {
  background-image: url("../img/icon/end.svg");
}
.pagination ul {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 1rem;
}
.pagination ul li {
  margin: 0 1rem;
}
.pagination ul li a {
  display: inline-block;
  width: 2rem;
  height: 2.5rem;
  text-align: center;
  line-height: 2rem;
  font-size: 1.6rem;
  font-weight: 300;
  color: #111;
}
.pagination ul li a > span {
  position: relative;
  left: 0;
  top: 0;
  display: inline-block;
  padding: 0 0.3rem;
}
.pagination ul li:hover a {
  font-weight: 800;
  color: #000;
}
.pagination ul li.active a {
  font-weight: 800;
  color: #000;
}
.pagination ul li.active a > span::after {
  position: absolute;
  left: 0;
  bottom: -0.5rem;
  content: "";
  width: 100%;
  height: 0.2rem;
  background-color: #111;
}

@media all and (max-width: 62.5rem) {
  .pagination {
    display: flex;
    justify-content: center;
    margin: 3rem 0 4rem;
  }
}
/* 글 비밀번호 확인*/
.rfq-pwck .form-wrap {
  margin-bottom: 15rem;
  padding: 5rem 4.5rem;
  border-top: 3px solid #000;
  background-color: #f9f9f9;
}
.rfq-pwck .form-wrap .input-group {
  display: flex;
  justify-content: center;
  align-items: center;
}
.rfq-pwck .form-wrap .input-group .label {
  display: inline-block;
  width: 15rem;
  min-width: 11rem;
  font-size: 1.9rem;
  font-weight: 300;
}
.rfq-pwck .form-wrap .input-group .label + input {
  width: 20rem;
}
.rfq-pwck .form-wrap .btn-box {
  margin-top: 5rem;
  text-align: center;
}

@media all and (max-width: 62.5rem) {
  .rfq-pwck .form-wrap {
    padding: 3rem 2.5rem;
  }
}
@media all and (max-width: 47.9375rem) {
  .rfq-pwck .form-wrap .input-group .label {
    width: 10rem;
    font-size: 1.5rem;
  }
}