@charset "UTF-8";
.mian-con1 {
  position: relative;
  margin: 0 auto;
  top: -70px;
  z-index: 999;
  text-align:center; 
}
.main-con1-box {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  height: 100vh;
  background-color: #e5a600;
  padding: 48px 41px;
  width: 300px;
  height: 280px;
  line-height: 17px;
  cursor: pointer;
  text-align: left;
}
.main-con1-box .txt {
  color: #ffffff;
}
.main-con1-box .txt h5 {
  font-weight: bold;
  margin-bottom: 10px;
}
.main-con1-box .txt span {
  font-weight: 300;
  font-size: 13px;
}
.main-con1-box .img {
  text-align: right;
}
.swiper-slide h1 {
  color: #fff; font-size: 45px; line-height: 65px
}
.swiper-slide p {
  color: #fff; font-size: 18px; line-height: 30px
}
.only_mb {display: none;}
.only_pc {display:block}
@media (max-width: 600px) {
  .only_pc {display: none;}
  .only_mb {display:block}
  .main-con1-box {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    height: 100vh;
    background-color: #e5a600;
    padding: 48px 41px;
    width: 100%;
    height: 250px;
    line-height: 17px;
    cursor: pointer;
    text-align: center;
  }
  .main-con1-box .txt {
    color: #ffffff;
  }
  .main-con1-box .txt h5 {
    font-weight: bold;
    margin-bottom: 10px;
  }
  .main-con1-box .txt span {
    font-weight: 300;
    font-size: 13px;
  }
  .main-con1-box .img {
    text-align: center;
  }
  
  .swiper-slide h1 {
    font-size: 22px;
    line-height: 30px;
  }
  .swiper-slide p {
    color: #fff; font-size: 14px; line-height: 23px
  }
}

/* 왼쪽 메뉴 Start */
.side-title {
  border-bottom: 2px #e5a600 solid;
  font-size: 25px;
  font-weight: 600;
  color: #e5a600;
  padding: 0 0 20px 0;
  margin: 0 0 0 0;
}

.side-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.side-list li {
  border-bottom: 1px #dddddd solid;
  padding: 15px 0 10px 2px;
}
@media (max-width: 600px) {
  .side-title {
    display: none;
  }
  .side-list {
    display: none;
  }
  .side-list li {
    display: none;
  }
}
/* 왼쪽 메뉴 End */

ul.content-navi {
  list-style-type: none; /* 기본 목록 스타일 제거 */
  padding: 0; /* 기본 패딩 제거 */
  display: flex; /* 항목들을 가로로 배열 */
  align-items: center; /* 항목들을 세로 중앙 정렬 */
  font-family: Arial, sans-serif;
  font-size: 14px;
}

ul.content-navi li {
  margin-right: 10px; /* 항목 사이의 여백 */
}

ul.content-navi li:not(:last-child):after {
  content: "|"; /* 마지막 항목을 제외하고 항목 뒤에 세로 막대 추가 */
  margin-left: 10px;
  color: #dddddd;
}
ul.content-navi .active {
  color: #000;
  font-weight: bold;
}

table.basic th{
  border: 1px solid #dddddd;
  padding: 5px 10px;
  background-color: #f0f0f0;
  text-align: center;
}
table.basic td{
  border: 1px solid #dddddd;
  padding: 15px 10px;
}

/* 연혁 Start */
.history {
  display: flex;
  justify-content: space-between;
}
.history .left, .history .right {
  width: 48%;
  text-align: right; /* .left에 대해서만 적용됩니다. */
  padding-bottom: 20px;
  display: flex; /* flexbox 사용 */
  flex-direction: column; /* 아이템을 세로로 정렬 */
  justify-content: center; /* 세로 방향 중앙 정렬 */
}
.history .right {
  text-align: left;
}
.history .center {
  width: 4%;
  text-align: center;
  position: relative;
}
.history .center::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
  width: 1px;
  background-color: #d0d0d0;
}
.history img {
  display: flex;
  justify-content: space-between;
}
/* 연혁 End */

/* CEO Start */
.ceo {
  display: flex;
}
.ceo .left {
  width: 30%;
}
.ceo .right {
  display: flex;
  align-items: center;
  padding-left: 20px;
}
.ceo span {
  font-weight: bold;
  font-size: 16px;
}
.ceo ul {
  padding-top: 15px;
}
.ceo ul li {
  padding-left: -10px;
  margin-left: -10px;
}
/* CEO End */

/* 게시판 */
.board-title {
  margin: 10px 0 15px 0;
}
.board-title span {
  background-color: #a0a0a0;
  padding: 5px 10px;
  margin-right: 5px;
  color: #ffffff;
  font-weight: bolder;
}