charset "UTF-8";

.wrap {
  width: 100%;
}

.sub-header {
  display: flex;
  justify-content: center;
  position: relative;
  width: 100%;
  height: 500px;
  background-color: #000;
}

.sub-header > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sub-header > h2 {
  position: absolute;
  top: 55%;
  left: 50%;
  font-size: 30px;
  font-weight: 800;
  color: #fff;
  transform: translateX(-50%);
}

.container {
  width: 100%;
  padding: 100px 0;
}

.contents-box {
  margin: 0 auto;
  width: 1400px;
}

.contents-box > h3 {
  padding-bottom: 100px;
  font-size: 30px;
  font-weight: 800;
  text-align: center;
  color: #242424;
}

.info {
  display: flex;
  justify-content: space-between;
}

.info > p {
  width: 45%;
  font-size: 18px;
  line-height: 30px;
}

.info-image {
  width: 45%;
  height: 450px;
}

.info-image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vision-box {
  margin-top: 130px;
}

.vision-box > h2,
.plan > h2,
.capa > h2 {
  padding-bottom: 60px;
  line-height: 40px;
  font-weight: 800;
  font-size: 26px;
  text-align: center;
}

.vision-wrap {
  border: 1px solid #ddd;
  display: flex;
  padding: 100px 50px;
}

.vision-wrap > ul:first-child {
  margin-right: 50px;
}

.vision-wrap > ul:last-child {
  margin-left: 50px;
}

.vision-wrap > ul > li {
  padding-bottom: 30px;
  font-size: 20px;
  line-height: 24px;
}

.vision-title {
  display: flex;
  justify-content: space-between;
}

.vision-title > p {
  width: 100px;
  padding-bottom: 10px;
  border-bottom: 5px solid #00a660;
  font-weight: 800;
}

.vision-title > p:nth-child(2) {
  text-align: right;
}

.vision-title > span {
  font-size: 14px;
}

.vision-wrap > ul > li >.vision-text {
  padding-top: 20px;
  font-size: 16px;
}

.vision-wrap > img {
  width: 30%;
}

.plan {
  margin-top: 130px;
}

.plan > ul {
  display: flex;
  justify-content: space-between;
}

.plan > ul > li {
  width: calc(100% / 3 - 50px);
  margin-right: 50px;
}

.plan > ul > li:last-child {
  margin-right: 0;
}

.plan > ul > li > p {
  padding: 20px;
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  border: 1px solid #ddd;
  margin-bottom: 20px;
}

.plan > ul > li > ol {
  height: 200px;
  padding: 30px;
  border: 1px solid #ddd;
}

.plan > ul > li > ol > li {
  padding: 10px 0 ;
}

.capa {
  margin-top: 130px;
}

.capa > ul {
  display: flex;
  justify-content: space-between;
}
.capa > ul > li {
  display: flex;
  align-items: center;
  width: calc(100% / 3 - 30px);
  margin-right: 30px;
}

.capa > ul > li:last-child {
  margin-right: 0;
}

.border-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50px;
  font-weight: 800;
  background-color: #f5f5f5;
  font-size: 20px;
}

.capa-text {
  width: 80%;
  line-height: 30px;
  padding-left: 30px;
  font-size: 18px;
}

.capa-image {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
}

.capa-image > .image-box {
  width: calc(100% / 2 - 30px);
  height: 400px;
  margin-right: 30px;
}

.capa-image > .image-box:last-child {
  margin-right: 0;
}

.capa-image > .image-box > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 반응형 추가 */
@media (max-width: 1024px) {
  .sub-header {
    height: 400px; 
  }

  .sub-header > h2 {
    font-size: 24px;
    top: 55%; 
  }

  .contents-box {
    width: 90%; 
  }
  
  .contents-box > ul > li {
    width: calc(50% - 30px);
    margin: 0px 0px 90px 0px;
  }

  .info, .vision-wrap, .plan > ul, .capa > ul {
    flex-direction: column;
    align-items: center;
  }

  .info > p, .info-image, .vision-wrap > ul, .vision-wrap > img, .plan > ul > li, .capa > ul > li {
    width: 100%;
    margin-right: 0;
  }

  .vision-wrap, .plan > ul > li > ol, .capa-text {
    padding: 50px;
  }

  .vision-wrap > ul:first-child {
    margin-right: 0;
  }

  .vision-wrap > ul:last-child {
    margin-left:0 ;
  }

  .vision-image, .capa-image {
    flex-direction: column;
  }

  .vision-wrap > img, .capa-image > .image-box {
    width: 100%;
    margin-right: 0;
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .contents-box > ul > li {
    margin: 0px 15px 0px 15px; /* 마진 조정 */
  }
}

@media (max-width: 480px) {
  .sub-header {
    height: 300px;
  }

  .contents-box > h3 {
    padding-bottom: 50px;
  }

  .contents-box > ul > li  {
    height: 300px;
  }
}


