/* 네비게이션 시작 */

#navigation {
  width: 100%;
  height: 50px;
  background: #fff;
  border-top: 1px solid #d9d9d9;
  border-bottom: 1px solid #d9d9d9;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 9;
  margin-top: 80px;
}

#navigation .wrap {
  width: 100%;
  max-width: 1400px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

#navigation .wrap .home {
  width: 50px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
}

#navigation .wrap .home img {
  width: auto;
  height: auto;
}

#navigation .wrap .home::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 30px;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: #d9d9d9;
}

#navigation .wrap .parent_menu {
  width: 100%;
  max-width: 200px;
  height: 100%;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  max-height: 100%;
}

#navigation .wrap .parent_menu.action {
  max-height: 9999px;
  overflow: unset;
}

#navigation .wrap .parent_menu::after {
  content: "";
  width: 10px;
  height: 5px;
  background: url(../img/sub/black_arrow.png) no-repeat center / cover;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

#navigation .wrap .parent_menu::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 30px;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: #d9d9d9;
}

#navigation .wrap .parent_menu .main_category {
  width: 100%;
  height: 100%;
  display: block;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background: #fff;
  padding-left: 20px;
  font-family: 'PB_R';
	font-weight: normal;
  font-size: 16px;
  border-top: 1px solid #d9d9d9;
}

#navigation .wrap .parent_menu .main_category a {
  color: #222;
}

#navigation .wrap .parent_menu .main_category:first-of-type {
  border-top: none;
}

#navigation .wrap .parent_menu .main_category:last-of-type {
  border-bottom: 1px solid #d9d9d9;
}

#navigation .wrap .child_menu {
  width: 100%;
  max-width: 200px;
  height: 100%;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  max-height: 100%;
}

#navigation .wrap .child_menu.action {
  max-height: 9999px;
  overflow: unset;
}

#navigation .wrap .child_menu::after {
  content: "";
  width: 10px;
  height: 5px;
  background: url(../img/sub/black_arrow.png) no-repeat center / cover;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

#navigation .wrap .child_menu::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 30px;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: #d9d9d9;
}

#navigation .wrap .child_menu .sub_category {
  width: 100%;
  height: 100%;
  display: block;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background: #fff;
  padding-left: 20px;
  font-family: 'PB_R';
	font-weight: normal;
  font-size: 16px;
  border-top: 1px solid #d9d9d9;
}

#navigation .wrap .child_menu .sub_category:first-of-type {
  border-top: none;
}

#navigation .wrap .child_menu .sub_category:last-of-type {
  border-bottom: 1px solid #d9d9d9;
}

#navigation .wrap .child_menu .sub_category a {
  color: #222;
}

@media (max-width: 700px) {
  #navigation .wrap .parent_menu .main_category {
    padding-left: 10px;
    font-size: 14px;
  }

  #navigation .wrap .parent_menu::after {
    right: 10px;
  }

  #navigation .wrap .child_menu .sub_category {
    padding-left: 10px;
    font-size: 14px;
  }

  #navigation .wrap .child_menu::after {
    right: 10px;
  }

  #navigation .wrap .parent_menu {
    max-width: 130px;
  }

  #navigation .wrap .child_menu {
    max-width: 130px;
  }
}

@media (max-width: 500px) {
  #navigation {
    margin-top: 50px;
  }
}

@media (max-width: 400px) {
  #navigation {
    height: 40px;
  }

  #navigation .wrap .home {
    width: 40px;
  }

  #navigation .wrap .parent_menu .main_category {
    font-size: 14px;
  }

  #navigation .wrap .child_menu .sub_category {
    font-size: 14px;
  }

  #navigation .wrap .parent_menu {
    max-width: 110px;
  }

  #navigation .wrap .child_menu {
    max-width: 110px;
  }
}

/* 네비게이션 종료 */

/* 배너 공통 */
#banner {
  width: 100%;
  height: auto;
  padding: 50px 0;
}

#banner h2 {
  width: 100%;
  max-width: 1400px;
  height: auto;
  margin: 50px auto;
  font-family: 'PB_B';
	font-weight: bold;
  font-size: 50px;
  color: #222;
}

#banner .background {
  width: 100%;
  height: 480px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  clip-path: circle(0% at 0% 50%);
  animation: fillBackground 3s ease-out forwards;
}

@keyframes fillBackground {
  0% {
    clip-path: circle(0% at 0% 50%);
  }
  100% {
    clip-path: circle(150% at 50% 50%);
  }
}

@media (max-width: 1400px) {
  #banner h2 {
    max-width: 90%;
  }
}

@media (max-width: 1200px) {
  #banner h2 {
    font-size: 36px;
    margin: 30px auto;
  }

  #banner .background {
    height: 300px;
  }
}

@media (max-width: 500px) {
  #banner h2 {
    margin: 0 auto 30px;
    font-size: 24px;
  }

  #banner .background {
    height: 250px;
  }
}

@media (max-width: 400px) {
  #banner h2 {
    font-size: 20px;
  }

  #banner .background {
    height: 200px;
  }
}
/* 배너 종료 */

/* 인사말 시작 */
#company_1 {
  width: 100%;
  height: auto;
  text-align: center;
  background: url(../img/sub/company_item_01.png) no-repeat right bottom / cover;
  padding: 100px 0;
}

#company_1 h2 {
  font-family: 'PB_B';
	font-weight: bold;
  font-size: 30px;
  color: #222;
  margin-bottom: 50px;
}

#company_1 h3 {
  font-family: 'PB_R';
	font-weight: normal;
  font-size: 25px;
  color: #222;
  margin-bottom: 50px;
}

#company_1 h3 span {
  font-family: 'PB_B';
	font-weight: bold;
}

#company_1 h4 {
  font-family: 'PB_L';
	font-weight: 100;
  font-size: 20px;
  color: #000;
}

#company_1 h4 span {
  font-family: 'PB_B';
	font-weight: bold;
  font-size: 30px;
}

@media (max-width: 1200px) {
  #company_1 h2 {
    font-size: 24px;
  }

  #company_1 h3 {
    font-size: 20px;
  }

  #company_1 h4 {
    font-size: 18px;
  }

  #company_1 h4 span {
    font-size: 24px;
  }
}

@media (max-width: 700px) {
  #company_1 h2 {
    font-size: 20px;
  }

  #company_1 h3 {
    font-size: 16px;
  }

  #company_1 h4 {
    font-size: 16px;
  }

  #company_1 h4 span {
    font-size: 20px;
  }
}

@media (max-width: 500px) {
  #company_1 {
    padding: 50px 0;
  }

  #company_1 h2 {
    font-size: 18px;
  }

  #company_1 h3 {
    font-size: 14px;
  }
}

@media (max-width: 400px) {
  #company_1 {
    padding: 50px 5%;
  }

  #company_1 h2 {
    font-size: 14px;
  }

  #company_1 h3 {
    font-size: 12px;
  }

  #company_1 h3 br {
    display: none;
  }

  #company_1 h4 {
    font-size: 10px;
  }

  #company_1 h4 span {
    font-size: 14px;
  }
}
/* 인사말 종료 */

/* 연혁 시작 */
#history_1 {
  width: 100%;
  height: auto;
  padding: 100px 0;
}

#history_1 .tit_box {
  width: 100%;
  height: auto;
  text-align: center;
  position: relative;
  margin-bottom: 120px;
}

#history_1 .tit_box h2 {
  font-family: 'PB_B';
	font-weight: bold;
  font-size: 50px;
  color: #222;
}

#history_1 .tit_box img {
  width: auto;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

#history_1 .history_box {
  width: 100%;
  max-width: 1400px;
  height: auto;
  margin: 0 auto;
  position: relative;
}

#history_1 .history_box .box {
  width: 100%;
  height: auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 165px;
}

#history_1 .history_box .box:last-of-type {
  margin-bottom: 0;
}

#history_1 .history_box .box .time {
  width: 170px;
  height: auto;
  position: relative;
}

#history_1 .history_box .box .time::after {
  content: "";
  width: 365px;
  height: 1px;
  background-image: linear-gradient(90deg, #c8c8c8, #c8c8c8 50%, transparent 50%, transparent 100%);
  background-size: 10px 1px;
  position: absolute;
  left: calc(100% + 57px);
  top: 30px;
}

#history_1 .history_box .box .time h2 {
  text-align: left;
  font-family: 'PB_B';
	font-weight: bold;
  font-size: 50px;
  color: #77b746;
}

#history_1 .history_box .box .time h3 {
  text-align: right;
  font-family: 'PB_B';
	font-weight: bold;
  font-size: 30px;
  color: #c8c8c8;
}

#history_1 .history_box .box .info {
  width: 100%;
  max-width: 575px;
  height: auto;
}

#history_1 .history_box .box .info p {
  font-family: 'PB_R';
	font-weight: normal;
  font-size: 20px;
  color: #222;
  margin-bottom: 20px;
  position: relative;
}

#history_1 .history_box .box .info p::before {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  background: #77b746;
  top: 50%;
  transform: translateY(-50%);
  left: -25px;
  border-radius: 50%;
}

#history_1 .history_box .box .info p:last-of-type {
  margin-bottom: 0;
}

#history_1 .history_box .line {
  width: 1px;
  height: 100%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  background: linear-gradient(to bottom, #77B746 0%, #77B746 0%, #C8C8C8 0%);
}

@media (max-width: 1400px) {
  #history_1 .history_box {
    max-width: 90%;
  }

  #history_1 .history_box .box .time::after {
    width: 250px;
  }

  #history_1 .history_box .box .info {
    max-width: 450px;
  }
}

@media (max-width: 1200px) {
  #history_1 .tit_box h2 {
    font-size: 36px;
  }

  #history_1 .history_box .box .time h2 {
    font-size: 36px;
  }

  #history_1 .history_box .box .time h3 {
    font-size: 24px;
  }

  #history_1 .history_box .box .time {
    width: 130px;
  }

  #history_1 .history_box .box .info p {
    font-size: 16px;
  }

  #history_1 .history_box .box .info {
    max-width: 350px;
  }

  #history_1 .history_box .box .time::after {
    width: 200px;
  } 
}

@media (max-width: 900px) {
  #history_1 .tit_box h2 {
    font-size: 28px;
  }

  #history_1 .tit_box img {
    width: 120px;
  }

  #history_1 .history_box .box {
    justify-content: flex-start;
    margin-bottom: 100px;
    flex-wrap: wrap;
  }

  #history_1 .history_box .box .info {
    max-width: 96%;
    margin-left: 4%;
  }

  #history_1 .history_box .box .time {
    margin-bottom: 30px;
  }

  #history_1 .history_box .line {
    left: -5%;
    transform: unset;
    width: 3px;
  }

  #history_1 .history_box .box .time::after {
    display: none;
  }

  #history_1 .history_box {
    max-width: 80%;
  }

  #history_1 .history_box .box .info p::before {
    width: 12px;
    height: 12px;
  }
}

@media (max-width: 500px) {
  #history_1 {
    padding: 50px 0;
  }

  #history_1 .tit_box h2 {
    font-size: 18px;
  }

  #history_1 .tit_box img {
    width: 80px;
  }

  #history_1 .tit_box {
    margin-bottom: 80px;
  }

  #history_1 .history_box .line {
    left: -10%;
  }

  #history_1 .history_box .box .time h2 {
    font-size: 20px;
  }

  #history_1 .history_box .box .time h3 {
    font-size: 16px;
  }

  #history_1 .history_box .box .time {
    width: 80px;
  }

  #history_1 .history_box .box .info {
    max-width: 93%;
    margin-left: 7%;
  }

  #history_1 .history_box .box .info p::before {
    width: 10px;
    height: 10px;
  }

  #history_1 .history_box .box .info p {
    font-size: 14px;
  }
}

@media (max-width: 400px) {
  #history_1 .tit_box h2 {
    font-size: 16px;
  }

  #history_1 .tit_box img {
    width: 60px;
  }

  #history_1 .tit_box {
    margin-bottom: 60px;
  }

  #history_1 .history_box .box {
    margin-bottom: 50px;
  }

  #history_1 .history_box .box .time h2 {
    font-size: 16px;
  }

  #history_1 .history_box .box .time h3 {
    font-size: 12px;
  }

  #history_1 .history_box .box .time {
    width: 65px;
  }

  #history_1 .history_box .box .info p {
    font-size: 12px;
  }

  #history_1 .history_box .box .info p::before {
    width: 8px;
    height: 8px;
  }

  #history_1 .history_box .box .info p::before {
    left: -20px;
  }
}
/* 연혁 종료 */

/* 조직도 시작 */
#organization_1 {
  width: 100%;
  height: auto;
  padding: 100px 0;
  text-align: center;
}

#organization_1 img {
  width: auto;
  height: auto;
}

@media (max-width: 900px) {
  #organization_1 img {
    width: 90%;
  }
}

@media (max-width: 500px) {
  #organization_1 {
    padding: 50px 0;
  }
}
/* 조직도 종료 */

/* 본사 및 운영사 시작 */
#location_1 {
  width: 100%;
  height: auto;
  padding: 100px 0;
}

#location_1 .wrap {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

#location_1 h2 {
  width: 100%;
  font-family: 'PB_B';
	font-weight: bold;
  font-size: 50px;
  color: #222;
  margin-bottom: 50px;
}

#location_1 .root_daum_roughmap {
  width: 100%;
  height: 400px;
  margin-bottom: 50px;
}

#location_1 .info {
  display: flex;
  align-items: flex-end;
}

#location_1 .info h3 {
  font-family: 'PB_B';
	font-weight: bold;
  font-size: 30px;
  color: #77B746;
  margin-right: 50px;
}

#location_1 .info p {
  font-family: 'PB_R';
	font-weight: normal;
  font-size: 20px;
  color: #222;
}

#location_1 .box {
  width: 100%;
  height: auto;
  background: #FBFBFB;
  padding: 100px 0;
  margin-top: 100px;
}

#location_1 .box .wrap {
  width: 100%;
  height: auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}

#location_1 .box .item {
  width: 100%;
  max-width: 47%;
}

#location_1 .root_daum_roughmap .wrap_map {
  height: 100%;
}

@media (max-width: 3000px) {
  #location_1 .info {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  #location_1 .info h3 {
    font-size: 20px;
    width: 100%;
    margin-bottom: 10px;
  }
}

@media (max-width: 1400px) {
  #location_1 .wrap {
    max-width: 90%;
  }
}

@media (max-width: 1200px) {
  #location_1 h2 {
    font-size: 36px;
  }

  #location_1 .info h3 {
    font-size: 24px;
  }

  #location_1 .info p {
    font-size: 16px;
  }
}

@media (max-width: 900px) {
  #location_1 .box .item {
    max-width: 100%;
  }

  #location_1 .box .item:first-of-type {
    margin-bottom: 50px;
  }
}

@media (max-width: 500px) {
  #location_1 {
    padding: 50px 0;
  }

  #location_1 h2 {
    font-size: 24px;
  }

  #location_1 .root_daum_roughmap {
    height: 250px;
    margin-bottom: 30px;
  }
}

@media (max-width: 400px) {
  #location_1 h2 {
    font-size: 20px;
  }

  #location_1 .root_daum_roughmap {
    height: 200px;
  }

  #location_1 .info h3 {
    font-size: 16px;
  }

  #location_1 .info p {
    font-size: 14px;
  }

  #location_1 .box {
    padding: 50px 0;
    margin-top: 50px;
  }
}
/* 본사 및 운영사 종료 */

/* 특허 및 인증 시작 */
#patent_1 {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 0;
}

#patent_1 .wrap {
  width: 100%;
  max-width: 1400px;
  height: auto;
  display: flex;
  align-items: flex-start;
}

#patent_1 .wrap .item {
  width: 50%;
  height: auto;
}

.patent h2 {
  font-family: 'PB_B';
	font-weight: bold;
  font-size: 30px;
  color: #77b746;
  margin-bottom: 50px;
}

#patent_1 .wrap .item .box {
  width: 100%;
  text-align: center;
}

#patent_1 .wrap .item .box img {
  width: auto;
  height: auto;
}

#patent_2 {
  width: 100%;
  height: auto;
  padding: 100px 0;
  background: #FBFBFB;
}

#patent_2 .wrap {
  width: 100%;
  max-width: 1400px;
  height: auto;
  margin: 0 auto;
}

#patent_2 .wrap .inner {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

#patent_2 .wrap .inner img.large {
  width: auto;
  height: auto;
  margin-right: 100px;
}

#patent_2 .wrap .inner .box {
  width: 100%;
  max-width: 740px;
  height: auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}

#patent_2 .wrap .inner .box img {
  width: auto;
  height: auto;
}

#patent_2 .wrap .inner .box img:nth-of-type(n+4) {
  margin-top: 30px;
}

#patent_3 {
  width: 100%;
  height: auto;
  padding: 100px 0;
}

#patent_3 .wrap {
  width: 100%;
  max-width: 1400px;
  height: auto;
  margin: 0 auto;
}

#patent_3 .box {
  width: 100%;
  max-width: 999px;
  height: auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0 auto;
}

#patent_3 .box img {
  width: auto;
  height: auto;
}

#patent_3 .box img:nth-of-type(n+5) {
  margin-top: 30px;
}

@media (max-width: 1400px) {
  #patent_1 .wrap {
    max-width: 90%;
  }

  #patent_2 .wrap {
    max-width: 90%;
  }

  #patent_3 .wrap {
    max-width: 90%;
  }
}

@media (max-width: 1200px) {
  .patent h2 {
    font-size: 24px;
  }

  #patent_1 .wrap .item .box img {
    width: 250px;
  }

  #patent_2 .wrap .inner img.large {
    width: 300px;
    margin-right: 50px;
  }

  #patent_2 .wrap .inner .box img {
    width: 160px;
  }

  #patent_2 .wrap .inner .box {
    max-width: 635px;
  }

  #patent_3 .box img {
    width: 170px;
  }

  #patent_3 .box {
    max-width: 845px;
  }
}

@media (max-width: 900px) {
  #patent_2 .wrap .inner {
    flex-wrap: wrap;
  }

  #patent_2 .wrap .inner img.large {
    margin-right: 0;
    margin-bottom: 50px;
  }

  #patent_2 .wrap .inner .box img {
    width: 120px;
  }

  #patent_2 .wrap .inner .box img {
    width: 30%;
  }

  #patent_3 .box {
    max-width: 100%;
  }

  #patent_3 .box img {
    width: 24%;
  }
}

@media (max-width: 700px) {
  .patent h2 {
    font-size: 20px;
    margin-bottom: 30px;
  }

  #patent_1 .wrap .item .box img {
    width: 80%;
  }
}

@media (max-width: 500px) {
  #patent_1 {
    padding: 50px 0;
  }

  #patent_1 .wrap {
    flex-wrap: wrap;
  }

  #patent_1 .wrap .item {
    width: 100%;
  }

  #patent_1 .wrap .item:first-of-type {
    margin-bottom: 50px;
  }

  #patent_1 .wrap .item .box img {
    width: 60%;
  }

  #patent_2 {
    padding: 50px 0;
  }

  #patent_2 .wrap .inner .box img {
    width: 45%;
    height: auto;
  }

  #patent_2 .wrap .inner .box img:nth-of-type(n+3) {
    margin-top: 30px;
  }

  #patent_3 {
    padding: 50px 0;
  }

  #patent_3 .box img {
    width: 45%;
  }

  #patent_3 .box img:nth-of-type(n+3) {
    margin-top: 30px;
  }
}

@media (max-width: 400px) {
  .patent h2 {
    font-size: 18px;
  }

  #patent_1 .wrap .item .box img {
    width: 70%;
  }

  #patent_2 .wrap .inner img.large {
    width: 80%;
  }

  #patent_2 .wrap .inner .box img {
    width: 46%;
  }

  #patent_3 .box img {
    width: 46%;
  }
}
/* 특허 및 인증 종료 */

/* 미디어센터 시작 */
#media_1 {
  width: 100%;
  height: auto;
}

#media_1 .box {
  width: 100%;
  height: auto;
  padding: 100px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

#media_1 .box:nth-of-type(2) {
  background: #FBFBFB;
}

#media_1 .box .wrap {
  width: 100%;
  max-width: 1400px;
  height: auto;
}

#media_1 .box .wrap h2 {
  font-family: 'PB_B';
	font-weight: bold;
  font-size: 50px;
  color: #222;
  margin-bottom: 50px;
}

#media_1 .box .wrap h3 {
  font-family: 'PB_B';
	font-weight: bold;
  font-size: 30px;
  color: #77B746;
  margin-bottom: 10px;
}

#media_1 .box .wrap img {
  width: 100%;
  height: auto;
  cursor: pointer;
}

@media (max-width: 1400px) {
  #media_1 .box .wrap {
    max-width: 90%;
  }

  #media_1 .box .wrap h2 {
    font-size: 36px;
  }
}

@media (max-width: 900px) {
  #media_1 .box .wrap h2 {
    font-size: 24px;
  }

  #media_1 .box .wrap h3 {
    font-size: 20px;
  }
}

@media (max-width: 500px) {
  #media_1 .box {
    padding: 50px 0;
  }

  #media_1 .box .wrap h2 {
    font-size: 20px;
  }

  #media_1 .box .wrap h3 {
    font-size: 16px;
  }
}
/* 미디어센터 종료 */

/* 사업소개 시작 */
#business_01 {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 0;
}

.business .wrap {
  width: 100%;
  max-width: 1400px;
  height: auto;
}

.business h2 {
  font-family: 'PB_B';
	font-weight: bold;
  font-size: 50px;
  color: #222;
  margin-bottom: 50px;
}

#business_01 .wrap .inner {
  display: flex;
  align-items: center;
  justify-content: center;
}

#business_01 .wrap .inner img {
  width: auto;
  height: auto;
  margin: 0;
}

#business_01 .wrap .inner img.plus {
  margin: 0 10px;
}

#business_01 .wrap img {
  width: auto;
  height: auto;
  display: block;
  margin: 0 auto;
}

#business_01 .wrap .arrow,
#business_02 .wrap .arrow {
  width: auto;
  height: auto;
  margin: 30px auto;
  display: block;
}

#business_02 {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 0;
  background: #FBFBFB;
}

#business_02 .inner_1,
#business_02 .inner_2 {
  width: 100%;
  max-width: 890px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
}

#business_02 .inner_1 img {
  width: auto;
  height: auto;
}

#business_02 .inner_2 img {
  width: auto;
  height: auto;
}

@media (max-width: 1400px) {
  .business .wrap {
    max-width: 90%;
  }
}

@media (max-width: 1200px) {
  .business h2 {
    font-size: 36px;
  }
}

@media (max-width: 900px) {
  .business h2 {
    font-size: 28px;
  }

  #business_01 .wrap .inner {
    display: block;
  }

  #business_01 .wrap .inner img {
    margin: 0 auto;
  }

  #business_01 .wrap .inner img.plus {
    margin: 10px auto;
  }

  #business_02 .inner_1, #business_02 .inner_2 {
    display: block;
  }

  #business_02 .inner_1 img {
    display: block;
    margin: 0 auto 10px;
  }

  #business_02 .inner_1 img:last-of-type {
    margin-bottom: 0;
  }

  #business_02 .inner_2 img {
    display: block;
    margin: 0 auto;
  }

  #business_02 .inner_2 img:nth-of-type(2) {
    transform: rotate(90deg);
    margin: 30px auto;
  }
}

@media (max-width: 700px) {
  .business h2 {
    font-size: 24px;
  }

  #business_01 .wrap img {
    width: 100%;
  }
}

@media (max-width: 500px) {
  #business_01 {
    padding: 50px 0;
  }

  #business_02 {
    padding: 50px 0;
  }

  #business_02 .inner_2 img {
    width: 100%;
  }

  #business_02 .inner_2 img:nth-of-type(2) {
    width: auto;
  }
}

@media (max-width: 400px) {
  .business h2 {
    font-size: 20px;
  }
}
/* 사업소개 종료 */

/* 제품소개 시작 */
.product {
  width: 100%;
  height: auto;
  padding: 100px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product .wrap {
  width: 100%;
  max-width: 1400px;
  height: auto;
}

.product .wrap h2 {
  font-family: 'PB_B';
	font-weight: bold;
  font-size: 50px;
  color: #222;
  margin-bottom: 50px;
}

.product .wrap h3 {
  font-family: 'PB_B';
	font-weight: bold;
  font-size: 30px;
  color: #77B746;
  margin-bottom: 50px;
}

.product .wrap img {
  width: auto;
  height: auto;
  display: block;
  margin: 0 auto;
}

#product_02 {
  background: #FBFBFB;
}

#product_02 .wrap {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
} 

#product_02 .wrap .box {
  width: auto;
  height: auto;
}

@media (max-width: 1400px) {
  .product .wrap {
    max-width: 90%;
  }

  .product .wrap img {
    width: 100%;
  }

  #product_02 .wrap .box {
    width: 49%;
  }
}

@media (max-width: 1200px) {
  .product .wrap h2 {
    font-size: 36px;
  }

  .product .wrap h3 {
    font-size: 24px;
  }
}

@media (max-width: 700px) {
  .product .wrap h2 {
    font-size: 24px;
  }

  .product .wrap h3 {
    font-size: 18px;
    margin-bottom: 30px;
  }

  #product_02 .wrap {
    flex-wrap: wrap;
  }

  #product_02 .wrap .box {
    width: 100%;
  }

  #product_02 .wrap .box:first-of-type {
    margin-bottom: 50px;
  }
}

@media (max-width: 500px) {
  .product .wrap h2 {
    font-size: 20px;
  }

  .product .wrap h3 {
    font-size: 16px;
  }

  .product {
    padding: 50px 0;
  }
}
/* 제품소개 종료 */

/* 문의하기 시작 */
#contact_01 {
  width: 100%;
  height: auto;
  padding: 100px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

#contact_01 .wrap {
  width: 100%;
  max-width: 1400px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#contact_01 .wrap .information {
  width: 100%;
  max-width: 47%;
  height: auto;
}

#contact_01 .wrap .information .box {
  width: 100%;
  height: auto;
  padding: 35px 0;
  border-bottom: 1px solid #222;
}

#contact_01 .wrap .information .box:first-of-type {
  padding-top: 0;
}

#contact_01 .wrap .information .box:last-of-type {
  border-bottom: 0;
}

#contact_01 .wrap .information .box table {
  width: auto;
  height: auto;
  display: block;
  border-collapse: collapse;
}

#contact_01 .wrap .information .box table tr {
  display: block;
}

#contact_01 .wrap .information .box table tr:first-of-type {
  margin-bottom: 10px;
}

#contact_01 .wrap .information .box table .type {
  width: 90px;
  height: auto;
  font-family: 'PB_B';
	font-weight: bold;
}

#contact_01 .wrap .information .box table td {
  font-family: 'PB_R';
	font-weight: normal;
  font-size: 20px;
  color: #222;
}

#contact_01 .wrap .information .box h3 {
  font-family: 'PB_B';
	font-weight: bold;
  font-size: 30px;
  color: #222;
  margin-bottom: 10px;
}

#contact_01 .wrap .information .box p {
  font-family: 'PB_R';
	font-weight: normal;
  font-size: 20px;
  color: #222;
}

#contact_01 .wrap form {
  width: 100%;
  max-width: 47%;
  height: auto;
}

#contact_01 .wrap form .box {
  width: 100%;
  height: 50px;
  padding: 5px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #222;
  margin-bottom: 20px;
}

#contact_01 .wrap form .box label {
  width: 180px;
  height: 100%;
  border-right: 1px solid #222;
  flex-shrink: 0;
  padding-left: 50px;
  display: flex;
  align-items: center;
  font-family: 'PB_M';
	font-weight: normal;
  font-size: 18px;
  color: #222;
}

#contact_01 .wrap form .box input {
  width: 100%;
  height: 100%;
  border: none;
  background: none;
  padding: 0 10px;
  font-family: 'PB_M';
	font-weight: normal;
  font-size: 18px;
  color: #222;
}

#contact_01 .wrap form .box.text_box {
  height: 130px;
}

#contact_01 .wrap form .box.text_box textarea {
  width: 100%;
  height: 100%;
  border: none;
  background: none;
  padding: 10px;
  font-family: 'PB_M';
	font-weight: normal;
  font-size: 18px;
  color: #222;
  resize: none;
}

#contact_01 .wrap form .checkbox {
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
  border: 1px solid #222;
  margin-bottom: 20px;
  padding-left: 50px;
}

#contact_01 .wrap form .checkbox input {
  width: 20px;
  height: 20px;
  background: #f5f5f5;
  border: 1px solid #222;
  margin-right: 10px;
}

#contact_01 .wrap form .checkbox label {
  font-family: 'PB_R';
	font-weight: normal;
  font-size: 15px;
  color: #222;
}

#contact_01 .wrap form input[type=submit] {
  width: 100%;
  height: 50px;
  background: #222;
  color: #fff;
  font-family: 'PB_B';
	font-weight: bold;
  font-size: 20px;
}

@media (max-width: 1400px) {
  #contact_01 .wrap {
    max-width: 90%;
  }
}

@media (max-width: 1200px) {
  #contact_01 .wrap .information .box table td {
    font-size: 18px;
  }

  #contact_01 .wrap .information .box table .type {
    width: 80px;
  }

  #contact_01 .wrap .information .box h3 {
    font-size: 24px;
  }

  #contact_01 .wrap .information .box p {
    font-size: 18px;
  }

  #contact_01 .wrap form .box label {
    width: 130px;
    padding-left: 30px;
    font-size: 16px;
  }

  #contact_01 .wrap form .box input {
    font-size: 16px;
  }

  #contact_01 .wrap form .box.text_box textarea {
    font-size: 16px;
  }

  #contact_01 .wrap form .checkbox {
    padding-left: 30px;
  }
}

@media (max-width: 900px) {
  #contact_01 .wrap {
    flex-wrap: wrap;
  } 

  #contact_01 .wrap .information {
    max-width: 100%;
    margin-bottom: 30px;
  }

  #contact_01 .wrap form {
    max-width: 100%;
  }
}

@media (max-width: 500px) {
  #contact_01 {
    padding: 50px 0;
  }

  #contact_01 .wrap .information .box table td {
    font-size: 16px;
  }

  #contact_01 .wrap .information .box table .type {
    width: 70px;
  }

  #contact_01 .wrap .information .box {
    padding: 20px 0;
  }

  #contact_01 .wrap .information .box h3 {
    font-size: 18px;
  }

  #contact_01 .wrap .information .box p {
    font-size: 16px;
  }

  #contact_01 .wrap form .box label {
    width: 115px;
    font-size: 14px;
  }

  #contact_01 .wrap form .box.text_box textarea {
    font-size: 14px;
  }

  #contact_01 .wrap form .checkbox input {
    width: 15px;
    height: 15px;
  }

  #contact_01 .wrap form .checkbox label {
    font-size: 12px;
  }

  #contact_01 .wrap form input[type=submit] {
    font-size: 16px;
    height: 40px;
  }

  #contact_01 .wrap form .box {
    height: 40px;
    margin-bottom: 10px;
  }

  #contact_01 .wrap form .box.text_box {
    height: 100px;
  }

  #contact_01 .wrap form .checkbox {
    height: 40px;
    margin-bottom: 10px;
  }
}

@media (max-width: 400px) {
  #contact_01 .wrap .information .box table td {
    font-size: 14px;
  }

  #contact_01 .wrap .information .box table .type {
    width: 60px;
  }

  #contact_01 .wrap .information .box h3 {
    font-size: 16px;
    margin-bottom: 5px;
  }

  #contact_01 .wrap .information .box p {
    font-size: 14px;
  }

  #contact_01 .wrap form .box label {
    width: 90px;
    font-size: 12px;
    padding-left: 20px;
  }

  #contact_01 .wrap form .box input {
    font-size: 12px;
  }

  #contact_01 .wrap form .box.text_box textarea {
    font-size: 12px;
  }

  #contact_01 .wrap form .box.text_box {
    height: 80px;
  }

  #contact_01 .wrap form .box {
    height: 35px;
  }

  #contact_01 .wrap form .checkbox {
    height: 35px;
    padding-left: 20px;
  }

  #contact_01 .wrap form .checkbox input {
    width: 12px;
    height: 12px;
  }

  #contact_01 .wrap form .checkbox label {
    font-size: 10px;
  }

  #contact_01 .wrap form input[type=submit] {
    font-size: 14px;
    height: 35px;
  }
}
/* 문의하기 종료 */

/* 사업구조 시작 */
.structure {
  width: 100%;
  height: auto;
  padding: 100px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.structure .wrap {
  width: 100%;
  max-width: 1400px;
  height: auto;
}

.structure .wrap h2 {
  font-family: 'PB_B';
	font-weight: bold;
  font-size: 30px;
  color: #77B746;
  margin-bottom: 50px;
}

#structure_01 .wrap img {
  width: auto;
  height: auto;
  text-align: center;
}

#structure_02  {
  background: #FBFBFB;
}

#structure_02 .wrap {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

#structure_02 .wrap p {
  font-family: 'PB_B';
	font-weight: bold;
  font-size: 18px;
  color: #222;
  margin-bottom: 10px;
}

#structure_02 .wrap img {
  width: auto;
  height: auto;
}

@media (max-width: 1400px) {
  .structure .wrap {
    max-width: 90%;
  }

  #structure_01 .wrap img {
    width: 100%;
  }

  #structure_02 .wrap .box {
    width: 47%;
  }

  #structure_02 .wrap img {
    width: 100%;
  }
}

@media (max-width: 1200px) {
  .structure .wrap h2 {
    font-size: 24px;
  }

  #structure_02 .wrap p {
    font-size: 16px;
  }

  #structure_02 .wrap {
    align-items: flex-end;
  }
}

@media (max-width: 900px) {
  .structure .wrap h2 {
    font-size: 20px;
    margin-bottom: 30px;
  }

  #structure_02 .wrap {
    flex-wrap: wrap;
  }

  #structure_02 .wrap .box {
    width: 100%;
  }

  #structure_02 .wrap .box:first-of-type {
    margin-bottom: 50px;
  }
}

@media (max-width: 500px) {
  .structure {
    padding: 50px 0;
  }

  .structure .wrap h2 {
    font-size: 18px;
  }

  #structure_02 .wrap p {
    font-size: 14px;
  }
}

@media (max-width: 400px) {
  .structure .wrap h2 {
    font-size: 16px;
  }

  #structure_02 .wrap p {
    font-size: 12px;
  }
}
/* 사업구조 종료 */

/* 프로젝트 시작 */
.project {
  width: 100%;
  height: auto;
  padding: 100px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.project .wrap {
  width: 100%;
  max-width: 1400px;
  height: auto;
}

.project .wrap h2 {
  font-family: 'PB_B';
	font-weight: bold;
  font-size: 30px;
  color: #77b746;
  margin-bottom: 50px;
}

.project .wrap img {
  width: 100%;
  height: auto;
}

#project_02 {
  background: #FBFBFB;
}

@media (max-width: 1400px) {
  .project .wrap {
    max-width: 90%;
  }
}

@media (max-width: 1200px) {
  .project .wrap h2 {
    font-size: 24px;
  }
}

@media (max-width: 900px) {
  .project .wrap h2 {
    font-size: 20px;
  }
}

@media (max-width: 500px) {
  .project {
    padding: 50px 0;
  }

  .project .wrap h2 {
    font-size: 16px;
  }
}

@media (max-width: 400px) {
  .project .wrap h2 {
    font-size: 14px;
  }
}
/* 프로젝트 종료 */

/* ESG 경영 시작 */
.management {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 0;
}

.management .wrap {
  width: 100%;
  max-width: 1400px;
  height: auto;
}

.management .wrap h2 {
  font-family: 'PB_B';
	font-weight: bold;
  font-size: 50px;
  color: #222;
  margin-bottom: 50px;
}

.management .wrap h3 {
  font-family: 'PB_B';
	font-weight: bold;
  font-size: 30px;
  color: #77B746;
  text-align: center;
  margin-bottom: 30px;
}

.management .wrap h4 {
	font-family: 'PB_R';
	font-weight: normal;
  font-size: 20px;
  color: #222;
  text-align: center;
  margin-bottom: 50px;
}

.management .wrap h4 span {
  font-family: 'PB_B';
	font-weight: bold;
}

#management_01 .inner {
  width: 100%;
  max-width: 700px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
}

#management_01 .inner .item {
  text-align: center;
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid #77B746;
}

#management_01 .inner .item h5 {
  font-family: 'PB_B';
	font-weight: bold;
  font-size: 14px;
  color: #000;
  margin-bottom: 10px;
}

#management_01 .inner .item p {
  font-family: 'PB_R';
	font-weight: normal;
  font-size: 12px;
  color: #000;
}

#management_02 {
  background: #FBFBFB;
}

#management_02 .container {
  width: 100%;
  max-width: 1000px;
  height: auto;
  margin: 0 auto;
  border-radius: 50px;
  border: 1px dashed #77B746;
  padding: 100px;
}

#management_02 .container .box {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 47px;
}

#management_02 .container .box img {
  width: auto;
  height: auto;
  margin-right: 75px;
}

#management_02 .container .box .info {
  width: auto;
  height: auto;
}

#management_02 .container .box .info h5 {
  font-family: 'PB_B';
	font-weight: bold;
  font-size: 30px;
  color: #77B746;
  margin-bottom: 10px;
}

#management_02 .container .box .info p {
  font-family: 'PB_R';
	font-weight: normal;
  font-size: 20px;
  color: #000;
}

#management_02 .container .line {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin: 40px auto;
}

#management_02 .container .line img {
  width: auto;
  height: auto;
}

#management_02 .container .line img:first-of-type {
  margin-right: 143px;
}

@media (max-width: 1400px) {
  .management .wrap {
    max-width: 90%;
  }
}

@media (max-width: 1200px) {
  .management .wrap h2 {
    font-size: 36px;
  }

  .management .wrap h3 {
    font-size: 24px;
  }

  .management .wrap h4 {
    font-size: 18px;
  }

  #management_01 .inner .item h5 {
    font-size: 18px;
  }

  #management_01 .inner .item p {
    font-size: 16px;
  }

  #management_01 .inner .item {
    width: 170px;
    height: 170px;
  }

  #management_01 .inner {
    max-width: 600px;
  }

  #management_02 .container {
    padding: 50px;
  }

  #management_02 .container .box img {
    width: 150px;
  }

  #management_02 .container .box .info h5 {
    font-size: 24px;
  }

  #management_02 .container .box .info p {
    font-size: 18px;
  }

  #management_02 .container {
    max-width: 800px;
  }

  #management_02 .container .line img:first-of-type {
    margin-right: 70px;
  }
}

@media (max-width: 900px) {
  .management .wrap h2 {
    font-size: 28px;
  }

  .management .wrap h3 {
    font-size: 20px;
  }

  .management .wrap h4 {
    font-size: 16px;
  }

  #management_01 .inner .item h5 {
    font-size: 14px;
  }

  #management_01 .inner .item p {
    font-size: 12px;
  }

  #management_01 .inner .item {
    width: 150px;
    height: 150px;
  }

  #management_01 .inner {
    max-width: 470px;
  }

  #management_02 .container .line {
    justify-content: center;
  }

  #management_02 .container .line img {
    display: none;
  }

  #management_02 .container .line img:first-of-type {
    display: block;
    margin-right: 0;
  }

  #management_02 .container .box {
    justify-content: center;
    text-align: center;
    flex-wrap: wrap;
    padding-left: 0;
  }

  #management_02 .container .box img {
    margin-right: 0;
  }

  #management_02 .container .box .info {
    width: 100%;
  }
}

@media (max-width: 500px) {
  .management {
    padding: 50px 0;
  }

  .management .wrap h2 {
    font-size: 24px;
  }

  .management .wrap h3 {
    font-size: 18px;
  }

  .management .wrap h4 {
    font-size: 14px;
  }

  #management_01 .inner {
    max-width: 330px;
    justify-content: center;
    flex-wrap: wrap;
  }

  #management_01 .inner .item:first-of-type {
    margin-right: 30px;
  }

  #management_02 .container .box img {
    width: 120px;
  }

  #management_02 .container .box .info h5 {
    font-size: 18px;
  }

  #management_02 .container .box .info p {
    font-size: 14px;
  }
}

@media (max-width: 400px) {
  .management .wrap h2 {
    font-size: 20px;
  }

  .management .wrap h3 {
    font-size: 16px;
  }

  .management .wrap h4 {
    font-size: 12px;
  }

  #management_01 .inner .item h5 {
    font-size: 10px;
  }

  #management_01 .inner .item p {
    font-size: 8px;
  }

  #management_01 .inner .item {
    width: 120px;
    height: 120px;
  }

  #management_01 .inner {
    max-width: 260px;
  }

  #management_01 .inner .item:first-of-type {
    margin-right: 20px;
  }

  #management_02 .container .box img {
    width: 100px;
  }

  #management_02 .container {
    border-radius: 30px;
  }

  #management_02 .container .box .info h5 {
    font-size: 14px;
  }

  #management_02 .container .box .info p {
    font-size: 12px;
  }

  #management_02 .container .line {
    margin: 20px auto;
  }

  .management .wrap h4 br {
    display: none;
  }

  #management_02 .container .box .info p br {
    display: none;
  }
}
/* ESG 경영 종료 */