/* modal */
.bg {
  position: fixed;
  background: rgba(0, 0, 0, 0.6);
  content: '';
  width: 100%;
  height: 100%;
  z-index: 9999;
}
.modal {
  z-index: 10000;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  border-radius: 20px;
  background-color: #fff;
  max-width: 640px;
  width: 100%;
  overflow: hidden;
  display: none;
}
.modal-close {
  cursor: pointer;
  right: 24px;
}
.modal-title {
  padding: 20px 0;
}
.modal .cont {
  padding: 20px;
  gap: 24px;
  max-height: 700px;
  overflow-x: hidden;
  overflow-y: scroll;
  background-color: #fff;
}
.modal .cont::-webkit-scrollbar {
  width: 6px;
}
.modal .cont::-webkit-scrollbar-thumb {
  background: #E30613;
  border-radius: 3px;
}
.modal .cont::-webkit-scrollbar-track {
  background: transparent;
}
.modal .cont .box {
  gap: 32px;
  padding: 32px;
  align-items: flex-start;
  border: 2px solid #000;
  border-bottom: 4px solid #000;
  border-radius: 20px;
}
.modal .cont .box h2 {
  padding: 8px 20px;
  border-radius: 20px;
}
.modal .cont .box .item p span {
  border-bottom: 1px solid #6CBA48;
  margin-left: 10px;
  display: inline;
}
.modal .cont .box-1 > span {
  right: 25px;
  top: -20px;
}
.modal .cont .box-2 > span {
  top: 68px;
  right: 46px;
}
.modal .cont .box-3 > span {
  bottom: 22px;
  right: 30px;
}
.modal .cont .box span img {
  animation-name: moving_1;
  animation-duration: 2.5s;
  animation-delay: 1.5s;
  animation-iteration-count: infinite;
}
.modal .item-box {
  display: flex;
  flex-direction: column;
  gap:20px;
}

@media (max-width: 768px) {
  .modal .cont .box-1 > span {
    right: -16px;
    top: -20px;
    width: 80px;
  }
  .modal .cont .box-2 > span {
    top: 5px;
    right: 2px;
    width: 100px;
  }
  .modal .cont .box-3 > span {
    bottom: -20px;
    right: 1px;
    width: 107px;
  }
}
/* header */
.header {
  height: 88px;
  position: fixed;
  width: 100%;
  box-sizing: border-box;
  z-index: 999;
  transition: all 0.3s;
  padding: 0 40px;
}
.header > div {
  max-width: 1400px;
}
.header .logo {
  width: 153px;
  height: 48px;
}
.header ul {
  gap: 32px;
  display: flex;
}
.header ul li a {
  color: #555;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.2;
  display: block;
}
.header ul li a.link-btn {
  width: 140px;
  padding: 4px 0;
}
.header ul li:last-child {
  gap: 12px;
}
.header ul .last-menu {
  padding: 8px 34px;
  background-color: #E30613;
  color: #fff;
  font-family: 'SB-M';
  font-size: 17px;
  border-radius: 20px;
  white-space: nowrap;
  transition: all .3s;
}
.header ul .last-menu:hover {
  border-radius: 18px;
  box-shadow: 0 0 0 1px #E30613 inset;
  background: var(--FFF, #FFF);
  color: #E30613;
}
.header.active {
  background-color: #fff;
}
.header ul li a.active {
  color: #E30613;
  font-weight: 700;
}
.side-menu {
  left: 100%;
}
.side-menu .header,
.side-menu .middle-box {
  display: none;
}
.header .menu-btn {
  display: none;
}

/* btm-btn */
.btm-wrap {
  position: fixed;
  right: 40px;
  bottom: 40px;
  z-index: 999;
  gap: 6px;
}
.btm-wrap .apply-btn {
  text-align: center;
  font-family: 'Pretendard-Medium';
  font-size: 24px;
  line-height: 130%;
  border-radius: 50px;
  padding: 18px 0px 16px 24px;
  width: 240px;
  visibility: hidden;
  opacity: 0;
  transition: all .3s;
}
.btm-wrap .apply-btn:last-child {
  background-color: #007DBF;
  /* width: 260px; */
}
.btm-wrap .apply-btn:last-child:hover{
  background: #51ABDB;
}
.btm-wrap .apply-btn.active {
  visibility: visible;
  opacity: 1;
  transition: all .3s;
}
.apply-btn img {
  left: -30px;
  top:0;
  /* left: -50px;
  top: -50%; */
}
.btm-wrap .apply-btn.space40{
  margin-right: 40px;
}
/* 섹션1 */
section {
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}
.section-1 {
  /* background: #F6FAEC; */
  background: linear-gradient(1deg, #FFFDDD 10.18%, #CDE9EF 51.88%, #7DCCE5 98.91%);
  height: 1120px;
  position: relative;
}
.main-visual-wrap {
  position: relative;
  height: 100%;
  overflow: hidden;
}
.main-visual-wrap span {
  position: absolute;
}
.main-visual-wrap > span img {
  animation-name: action_1;
  animation-duration: 2.5s;
  animation-delay: 2s;
  animation-iteration-count: infinite;
}
.main-visual-wrap .item-1 {
  top: 0;
  left: calc(50% - 500px);
}
.main-visual-wrap .item-1 img {
  animation-name: none;
}
.main-visual-wrap .item-2 {
  top: 570px;
  left: calc(50% - 580px);
}
.main-visual-wrap .item-2 img {
  animation-name: none;
}
.main-visual-wrap .item-3 {
  top: 492px;
  left: calc(50% - 120px);
  transform: translateX(-50%);
}
.main-visual-wrap .item-4 {
  top: 40px;
  left: calc(50% + 30px);
  transform: translateX(-50%);
}
.main-visual-wrap .item-5 {
  top: 473px;
  left: calc(50% + 250px);
}
.main-visual-wrap .item-6 {
  top: 222px;
  left: calc(50% + 60px);
  transform: translateX(-50%);
}
.main-visual-wrap .item-7 {
  top: 300px;
  left: 50%;
  transform: translateX(-50%);
}
.main-visual-wrap .item-7 img {
  animation-name: none;
}
.main-visual-wrap .item-8 {
  top: 720px;
  left:  calc(50% - -136px);
  transform: translateX(-50%);
}
.main-visual-wrap .item-9 {
  top: 820px;
  left: calc(50% - 370px);
  transform: translateX(-50%);
}
.main-visual-wrap .item-10 {
  top: 810px;
  left:  calc(50% + 320px);
  transform: translateX(-50%);
}
.main-visual-wrap .item-11 {
  top: 165px;
  left: 13%;
}
.main-visual-wrap .item-11 img {
  animation-name: none;
}
.main-visual-wrap .item-12 {
  top: 720px;
  left: 50%;
  transform: translateX(-50%);
}
.main-visual-wrap .item-12 img {
  animation-name: none;
}
.main-visual-wrap .item-13 {
  top: -10%;
  right: -5%;
  /* transform: translateX(-50%); */
}
.main-visual-wrap .item-13 img {
  animation-name: none;
}

.section-1 .btn-wrap {
  gap: 12px;
  left: 15%;
  position: relative;
  top: 620px;
}
.section-1 .btn-wrap .apply-btn {
  text-align: center;
  font-family: 'Pretendard-Medium';
  font-size: 24px;
  line-height: 130%;
  border-radius: 50px;
  width: 252px;
  padding: 18px 0;
}
.section-1 .btn-wrap .apply-btn:last-child {
  /* width: 300px; */
  background-color: #007DBF;
}
.section-1 .btn-wrap .apply-btn:last-child:hover{
   background-color: #51ABDB;
}
/* //섹션1 */

/* 섹션2 */
.section-2 {
  /* background: linear-gradient(180deg, #DEEAF4 0%, #3E627E 100%);
  padding: 200px 44px; */
}
.section-2 > img {
  top: 0;
  left: 0;
}
.section-2 > img:last-child {
  top: auto;
  bottom: 0;
}
.section-2 .info {
  padding: 60px 0 0;
}
.section-2 p.info-2 {
  padding: 30px 0;
}

.section-2 .info span {
  /* border-bottom: 6px solid #24A33A; */
  position: relative;
  z-index: 1;
}
.section-2 .info span::before {
  position: absolute;
  content: '';
  width: 100%;
  background-color: #F3AECC;
  height: 8px;
  bottom: 1px;
  left: 0;
  z-index: -1;
}
.section-2 .info span.noUnder::before {
  display: none;
}
.job-tag {
  background: #fff;
  width: 100%;
  max-width: 880px;
  border-radius: 30px;
  border: 3px dashed rgb(0, 0, 0);
  border-image: initial;
  margin: 0px auto;
  padding: 60px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 24px 20px;
}
.job-tag > span {
  right: -7vw;
  bottom: -2vw;
}
.job-tag > span img {
  animation-name: moving_1;
  animation-duration: 2.5s;
  animation-delay: 1.5s;
  animation-iteration-count: infinite;
}
.job-tag ul {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.job-tag ul li {
  padding: 12px 28px;
  border-radius: 8px;
  font-family: 'Pretendard-Medium';
  font-size: 24px;
  line-height: 1.6;
}
.job-tag ul:first-child li {
  color: #fff;
  background-color: #E4789B;
}
.job-tag ul:first-child li:nth-child(n+6) {
  color: #fff;
  background-color: #e97E4B;
}
.job-tag ul:first-child li:nth-child(n+7) {
  color: #000;
  background-color: #FDE0A9;
}
.job-tag ul:first-child li:nth-child(n+12) {
  color: #000;
  background-color: #C7DF95;
}
.job-tag ul:first-child li:nth-child(n+14) {
  color: #000;
  background-color:  #7CCBE7;
}
.job-tag ul:first-child li:nth-child(n+22) {
  color: #fff;
  background-color:  #2C4D9F; 
}
.job-tag ul:first-child li:nth-child(n+23) {
  color: #fff;
  background-color:  #B97DB3;
}
/* .job-tag ul:nth-child(2) li:nth-child(-n+3) {
  background-color: #FDE0A9;
}
.job-tag ul:nth-child(2) li:nth-child(n+4) {
  background-color: #C7DF95;
}
.job-tag ul:nth-child(3) {
  max-width: 800px;
}
.job-tag ul:nth-child(3) li {
  background-color: #C7DF95;
}
.job-tag ul:nth-child(3) li:nth-child(n+3) {
  background-color: #2C4D9F; 
  color: #fff;
}

.job-tag ul:nth-child(4) li{
  color: #fff;
  background-color: #7CCBE7;
}
.job-tag ul:nth-child(4) li:nth-child(n+5) {
  color: #fff;
  background-color: #B97DB3;
  border: 1px solid #FCA3BB;
} */
.p-box {
  gap: 40px;
  padding: 60px 0 0 0;
}
.p-box ul li {
  font-size: 22px;
}
.section-2 .box > div {
  background-color: #fff;
  border: 3px solid #000;
  border-bottom: 6px solid #000;
  border-radius: 40px;
  padding: 40px 80px;
}
.section-2 .down3-ico {
  padding: 80px 0;
}
.section-2 .intro-box {
  gap: 48px;
  width: 100%;
  /* max-width: 1000px; */
}
.section-2 .intro-box .item {
    background: #fff;
    width: 760px;
    box-sizing: border-box;
    border: 3px solid #48BDEE;
    border-radius: 40px;
    max-width: 880px;
    padding: 40px;
    gap: 40px;
    z-index: 2;
    position: relative;
}
.section-2 .intro-box .item-wrap {
  width: 100%;
  gap: 40px;
  grid-template-columns: 1fr auto 1fr;
}
.section-2 .intro-box .item-wrap .item {
  width: 100%;
}
.section-2 .intro-box .item-wrap .zone-down {
  transform: rotate(-90deg);
}
/* .section-2 .intro-box .item:nth-child(2n){
  background: linear-gradient(120deg, #A7DCF7 0%, #EBEBEB  100%);
}
.section-2 .intro-box .item:nth-child(2) p:last-child {
  padding-top: 20px;
}
.section-2 .intro-box .item:nth-child(4){
  padding: 32px;
} */

.section-2 .bottom-info {
  padding-top: 92px;
}
.section-2 .intro-box .item-1 {
  top: -70px;
  left: 0;
}
.section-2 .intro-box .item-2 {
  right: -30px;
  bottom: 0;
}
.section-2 .intro-box .item-3 {
  top: 30px;
  left: -20px;
}
.section-2 .intro-box .item-4 {
  right: -20px;
  bottom: -60px;
}
.section-2 .intro-box .item-01 {
    top: 340px;
    right: 50px;
}
.section-2 .intro-box .item-02 {
    top: 1100px;
    left: -160px;
}
.section-2 .intro-box .item-03 {
    top: 195px;
    right: -98px;
}
.section-2 .intro-box .item-04 {
    top: 420px;
    left: 0;
}
.section-2 .intro-box .item-05 {
    top: 60%;
    right: 40px;
}
.section-2 .intro-box .item-01.img-box img,
.section-2 .intro-box .item-02.img-box img,
.section-2 .intro-box .item-03.img-box img {
  animation-name: none;
}
.section-2 .intro-box .img-box img {
  animation-name: moving_1;
  animation-duration: 2.5s;
  animation-delay: 1.5s;
  animation-iteration-count: infinite;
}
@media (max-width: 1200px) {
  .section-2 .intro-box .item-01 {
    top: 440px;
    right: 140px;
    width: 100px;
  }
  .section-2 .intro-box .item-04 {
      top: 420px;
      left: 100px;
      width: 90px;
  }
  .section-2 .intro-box .item-02 {
    top: 950px;
    left: 130px;
    width: 120px;
  }
  .section-2 .intro-box .item-03 {
    top: 195px;
    right: -58px;
    width: 80px;
  }
  .section-2 .intro-box .item-05 {
    top: 1250px;
    right: 100px;
    width: 80px;
  }
  .section-2 .intro-box .item-wrap {
    display: flex;
    flex-direction: column;
    max-width: 640px;
  }
  .section-2 .intro-box .item-wrap .zone-down {
    transform: rotate(0);
  }
}
@media (max-width: 1024px) {
    .section-2 .intro-box .item-01 {
        right: 60px;
    }
    .section-2 .intro-box .item-04 {
      left: 0;
    }
}
@media (max-width: 768px) {
    .section-2 .intro-box .item-01,
    .section-2 .intro-box .item-02,
    .section-2 .intro-box .item-03,
    .section-2 .intro-box .item-04,
    .section-2 .intro-box .item-05 {
      display: none;
    }
    .section-2 .intro-box .item-wrap {
      gap: 16px;
    }
    .section-2 .intro-box .item-wrap .item:first-child .zone-box h5 {
      padding: 12px 8px;
    }
}
/* //섹션2 */

/* 섹션3 */
.section-3 {
  z-index: 1;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.10) 0%, rgba(80, 194, 241, 0.10) 31.5%, rgba(255, 250, 238, 0.10) 100%);
}
.section-3 > img {
  z-index: -1;
  width: 100%;
}
.section-3 .tab-cnt-box-1 {
  width: 100%;
}
.section-3 .tab-cnt-box-1 > li {
  padding: 48px 44px;
  background-color: #fff;
  border: 3px solid #000;
  border-bottom: 6px solid #000;
  border-radius: 30px;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}
.section-3 .tab-cnt-box-1 .cont {
  width: 100%;
  max-width: 540px;
  margin: 0 auto;
}
.section-3 .tab-cnt-box-1 .cont .box-1 {
  gap: 24px;
  padding: 60px 0;
}
.section-3 .tab-cnt-box-1 .cont .box-1 p {
  white-space: nowrap;
}
.section-3 .tab-cnt-box-1 .cont .box-1 > div {
  padding: 20px 85px;
  background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' rx='16' ry='16' stroke='%23333' stroke-width='3' stroke-dasharray='5%2c10' stroke-dashoffset='0' stroke-linecap='round'/%3e%3c/svg%3e");
  border-radius: 16px;
}
.section-3 .tab-cnt-box-1 .box-2 {
  gap: 40px;
}
.section-3 .tab-cnt-box-1 h3 {
  padding: 22px;
  border-radius: 16px;
}
.section-3 .tab-cnt-box-1 table {
  width: 100%;
}
.section-3 .tab-cnt-box-1 .table-1 thead {
  background-color: #A7DCF7;
}
.section-3 .tab-cnt-box-1 .table-1 th {
  font-size: 22px;
  font-family: 'Pretendard-Regular';
}
.section-3 .tab-cnt-box-1 table td {
  font-size: 20px;
  font-family: 'Pretendard-Regular';
}
.section-3 .tab-cnt-box-1 .box-3 ul {
  gap: 16px;
}
.section-3 .tab-cnt-box-1 .box-3 li {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  font-size: 20px;
  line-height: 1.6;
  height: 88px;
  border-radius: 12px;
}
.section-3 .tab-cnt-box-1 .box-3 li.last {
  height: 120px;
}
.section-3 .tab-cnt-box-1 .box-3 li:first-child {
  height: 64px;
}
.section-3 .tab-cnt-box-1 .box-3 {
  padding-top: 40px;
}
.section-3 .tab-cnt-box-1 .box-3 li p {
  width: 100%;
  text-align: center;
}
.section-3 .tab-cnt-box-1 .box-3 li .pp-wrap {
  width: 100%;
}
.section-3 .tab-cnt-box-1 .box-3 li .pp-wrap:not(:first-child) p:first-child {
  font-family: 'Pretendard-Regular';
  font-weight: 400;
}
.section-3 .tab-cnt-box-1 .box-3 li:not(:first-child) p:first-child {
  font-family: 'Pretendard-Bold';
  font-weight: 700;
}
.section-3 .tab-cnt-box-1 .box-3 li:not(:first-child) p:last-child {
  /* font-family: 'Pretendard-Regular';; */
}
.section-3 .tab-cnt-box-1 #tab1-3 {
  max-width: 100%;
}
.section-3 .tab-cnt-box-1 #tab1-3 .cont {
  max-width: 100%;
}
.section-3 .tab-cnt-box-1 #tab1-3 .cont-box {
  width: 100%;
  gap: 36px;
}
.section-3 .tab-cnt-box-1 #tab1-3 .cont-box .box-wrap {
  width: 100%;
}
.section-3 .tab-cnt-box-1 .img-box img {
  animation-name: moving_1;
  animation-duration: 2.5s;
  animation-delay: 1.5s;
  animation-iteration-count: infinite;
}
.section-3 .tab-cnt-box-1 .img-1 {
  right: 100px;
  top: -280px;
}
.section-3 .tab-cnt-box-1 .img-2 {
  width: 140px;
  left: 100px;
  bottom: 30%;
}
.section-3 .tab-cnt-box-1 .img-4 {
  width: 140px;
  left: -10%;
  /* bottom: 320px; */
  top: 600px;
}
.section-3 .tab-cnt-box-1 .img-3 {
  bottom: -4%;
  right: -8%;
}
/* //섹션3 */

/* 섹션4 */
.section-4 {
  padding: 150px 44px 440px 44px;
  background:linear-gradient(180deg, #80CDE6 0%, #CDE9EF 50%, #FFFDDD 100%);
  z-index: 1;
}
.section-4 > img {
  top: 0;
  left: 0;
}
.section-4 .airplane {
  top: 30px;
  right: 0;
}
.section-4 .airplane img {
  animation-name: moving_1;
  animation-duration: 2.5s;
  animation-delay: 1.5s;
  animation-iteration-count: infinite;
}
.section-4 .title-box {
  padding-bottom: 40px;
}
.section-4 .title-box h1 {
  padding: 16px 80px;
}
.section-4 .cont-1 {
  gap: 28px;
  width: 100%;
  max-width: 972px;
}
.section-4 .cont-1 .box {
  width: 100%;
  background-color: #fff;
  padding: 48px 0;
  border-radius: 20px;
  border: 2px solid #000;
  border-bottom: 4px solid #000;
  gap: 44px;
}
.section-4 .cont-1 .img-box {
  width: 120px;
}
.section-4 .cont-1 .text-box {
  padding-top: 20px;
  gap: 20px;
}
.section-4 .cont-2 {
  gap: 30px;
  padding-top: 40px;
  padding-bottom: 80px;
  width: 100%;
  max-width: 972px;
}
.section-4 .cont-2 .box {
  background: linear-gradient(180deg, #FCA3BB 0%, #F5B4AB 100%);
  border: 2px solid #000;
  border-bottom: 4px solid #000;
  border-radius: 20px;
  width: 100%;
  padding: 60px 0;
  gap: 24px;
}


.section-4 > span {
  z-index: -1;
  bottom: 0;
  width: 100%;
}
.section-4 .item-1 {
  width: 100%;
  left: 0;
}
.section-4 .item-2 {
  max-width: 14vw;
  bottom: 5vw;
  left: 29%;
}
.section-4 .item-3 {
  max-width: 15vw;
  bottom: 4vw;
  right: 26%;
}
.section-4 .item-2 img,
.section-4 .item-3 img {
  animation-name: moving_1;
  animation-duration: 2.5s;
  animation-delay: 1.5s;
  animation-iteration-count: infinite;
}
.section-4 .item-4 {
  max-width: 1400px;
}
/* //섹션4 */

/* 섹션5 */
.section-5 {
  /* padding: 300px 44px 180px 44px; */
}
.section-5 > img {
  top: 0;
  left: 0;
}
.section-5 h1 {
  padding: 16px 80px;
}
.section-5 .tab-cnt-box-2 {
  width: 100%;
}
.section-5 .tab-cnt-box-2 li {
  width: 100%;
  border: 3px solid #000;
  border-bottom: 6px solid #000;
  border-radius: 30px;
  padding: 48px;
}
.section-5 .tab-cnt-box-2 .cont {
  gap: 24px;
}
.section-5 .tab-cnt-box-2 .sub-title {
  gap: 20px;
}
.section-5 .tab-cnt-box-2 .job-box {
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  width: 100%;
}
.section-5 .tab-cnt-box-2 .job-box > div {
  padding: 16px;
  border-radius: 12px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
}
.section-5 .tab-cnt-box-2 .job-box > div p {
  line-height: 1.6;
  font-size: 20px;
  font-family: 'Pretendard-Regular';;
}
.section-5 .tab-cnt-box-2 .job-box > div p:first-child {
  font-family: 'Pretendard-Bold';
}
.section-5 .item-1 {
  bottom: -80px;
  right: -30px;
}
.section-5 .item-1 img {
  animation-name: moving_1;
  animation-duration: 2.5s;
  animation-delay: 1.5s;
  animation-iteration-count: infinite;
}
.section-5 .item-2 {
  top: 3vw;
  left: 10vw;
}
.section-5 .item-3 {
  right: 4vw;
  top: 0;
}
/* //섹션5 */

/* 섹션6 */
.section-6 {
  background: #EBF6F8;
}
.section-6 > img {
  top: 0;
  left: 0;
}
.section-6 .title-box {
  padding: 52px 0;
}
.section-6 .item-1 {
  right: 200px;
  top: 340px;
}
.section-6 .item-2 {
  /* bottom: 6vw; */
  width: 16vw;
  bottom: 5%;
  right: 8vw;
  z-index: 10;
}
.section-6 .img-box > img {
  animation-name: moving_1;
  animation-duration: 2.5s;
  animation-delay: 2s;
  animation-iteration-count: infinite;
}
.section-6 .cnt-box {
  gap: 30px;
  margin-top: 80px;
}
.section-6 .cnt-box > li {
  width: calc(33.3333% - 20px);
  box-sizing: border-box;
  padding: 24px;
  border-radius: 12px;
  border: 2px solid #000;
  border-bottom: 4px solid #000;
  overflow: hidden;
  background: #fff;
}
.section-6 .cnt-box > li > h3 {
  font-size: 24px;
  font-family: 'Pretendard-Medium';
}
.section-6 .cnt-box > li > h4 {
  font-size: 20px;
  margin-top: 68px;
  font-family: 'Pretendard-Regular';;
  line-height: 1.3;
}
.section-6 .cnt-box > li .hover-box {
  width: 0;
  height: 0;
  opacity: 0;
  background: linear-gradient(107deg,#A5DAC2 0%, #5EB9E9 100%);
  border-radius: 12px;
  transition: all 0.3s;
}
.section-6 .cnt-box > li:hover .hover-box,
.section-6 .cnt-box > li.active .hover-box {
  width: 100%;
  height: 100%;
  opacity: 1;
}

.section-6 .cnt-box > li p {
  width: 100%;
  opacity: 0;
  font-size: 22px;
  transition: all 0.3s;
}
.section-6 .cnt-box > li:hover p {
  opacity: 1;
  font-size: 22px;
}
/* //섹션6 */

/* 섹션7 */
.section-7 {
  /* background: rgb(193, 214, 170, 0.3); */
  /* padding: 150px 44px 150px 44px; */
}
.section-7 > img {
  top: 0;
  left: 0;
}
.section-7 .cont {
  margin-top: 100px;
  padding: 80px 100px;
  border-radius: 30px;
  border: 3px solid #000;
  border-bottom: 6px solid #000;
  background-color: #fff;
}
.section-7 .video-area .youtube-video-box {
  border-radius: 20px;
  width: 100%;
  height: auto;
  box-sizing: border-box;
  position: relative;
  padding-bottom: 57.25%;
}
.section-7 .video-area .youtube-video-box iframe {
  z-index: 1;
  top: 0;
  left: 0;
  position: absolute;
  width: 100%;
  height: 100%;
}
.section-7 .item-1 {
  top: -5vw;
  left: -6.5vw;
}
.section-7 .item-2 {
  right: -5vw;
  bottom: -5vw;
}
.section-7 .item-1 img,
.section-7 .item-2 img {
  animation-name: moving_1;
  animation-duration: 2.5s;
  animation-delay: 1.5s;
  animation-iteration-count: infinite;
}
.section-7 h1.faq {
  padding-top: 180px;
  padding-bottom: 80px;
}
.section-7 .cont-2 {
  background: #fff;
  border-radius: 30px;
  border: 3px solid #000;
  border-bottom: 6px solid #000;
  padding: 48px;
}
.section-7 .cont-2 > span {
  right: -10vw;
  bottom: -4vw;
}
.section-7 .cont-2 > span img {
  animation-name: moving_1;
  animation-duration: 2.5s;
  animation-delay: 1.5s;
  animation-iteration-count: infinite;
}
.section-7 .cont-2 .cont-box-2 .box-wrap {
  padding: 60px 60px 80px 60px;
}
.section-7 .faq-list:not(:nth-child(4)) {
  padding-bottom: 20px;
  border-bottom: 1px solid #E30613;
}
.section-7 .faq-list:not(:first-child) {
  margin-top: 40px;
}
.section-7 .faq-list p:first-child {
  margin-bottom: 16px;
  color: #E30613;
  font-family: 'Pretendard-Bold';
}
.section-7 .faq-list .crying {
  width: 20px;
  height: 20px;
  margin-top: 5px;
}
/* //섹션7 */

/* 섹션8 */
.section-8 {
  background: #FFF6F8;
}
.section-8 > img {
  top: 0;
  left: 0;
}
.section-8 .cont {
  padding-top: 80px;
  gap: 100px;
  width: 100%;
  max-width: 956px;
  margin: 0 auto;
}
.section-8 .cont .box {
  gap: 48px;
  width: 100%;
}
.section-8 .cont .box button {
  width: 100%;
  max-width: 480px;
  height: 100px;
  border-radius: 20px;
  font-size: 26px;
  line-height: 1.4;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Pretendard-Medium';
}
.section-8 .cont .box-1 button {
  background-color: #FF647D;
  border: 2px solid #E30613;
  color: #fff;
  gap: 8px;
}
.section-8 .cont .box-1 button:hover{
  background: #FF4E6B;
}
.section-8 .cont .box-1 button img {
  margin-top: 2px;
}
.section-8 .cont .box-2 button {
  background-color: #FFE812;
  border: 2px solid #000;
  gap: 4px;
}
.section-8 .cont .box-2 button:hover{
  border-color: #F3DC00;
}
.section-8 .cont .box-3 .item-box {
  gap: 28px;
  width: 100%;
}
.section-8 .cont .box-3 .item-box .item {
  gap: 20px;
  width: 100%;
  height: 240px;
  border: 2px solid #000;
  border-radius: 20px;
}
.section-8 .cont .box-3 .item-box .item:hover{
  background: rgb(255, 100, 125,0.05);
}
/* //섹션8 */

/* footer */
.footer {
  height: 80px;
  border-top: 1px solid #000;
}
/* //footer */


/* ------------------------------------------------------------------------------- */


/* 반응형 */

/* 1320 */
@media (max-width:1320px) {

  /* 공통 */
  .title-box p {
    font-size: 44px;
  }
  .title-box h1 {
    font-size: 48px;
  }
  .tab-menu {
    padding: 80px 0 60px 0;
  }
  .tab-menu li a {
    padding: 16px 28px;
    font-size: 26px;
  }
  .table-1 th, .table-1 td {
    font-size: 20px;
  }

  /* header */
  body.active {
    overflow: hidden;
  }
  .header {
    height: 64px;
  }
  .header ul {
    display: none;
  }
  .header .logo {
    width: 102px;
    height: auto;
  }
  .header .menu-btn {
    display: block;
  }
  .side-menu {
    z-index: 1000;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100%;
    background-color: #fff;
    position: fixed;
    transition: all .3s;
  }
  .side-menu.active {
    left: 0;
  }
  .side-menu .header {
    position: relative;
    display: flex;
  }
  .side-menu .middle-box {
    display: block;
    margin-top: 72px;
  }
  .side-menu ul {
    gap: 40px 0;
  }
  .side-menu ul li a {
    font-size: 18px;
    font-weight: 700;
    display: flex;
  }
  .side-menu ul li:last-child {
    gap: 12px;
  }
  .side-menu ul li:last-child a {
    padding: 15px;
    width: 220px;
    justify-content: center;
  }
  .side-menu ul li:last-child a:last-child {
    background-color: #00A374;
  }
  .side-menu ul li a.active {
    color: #E30613;
  }
  .side-menu .apply-btn {
    top: 64px;
    left: calc(50% - 100px);
    font-size: 18px;
    padding: 10px 35px 10px 58px;
  }
  .btm-button {
    background-color: #FF647D;
    color: #fff;
    width: 100%;
    height: 60px;
    position: fixed;
    left: 0;
    bottom: 0;
    border: 0;
    z-index: 999;
    line-height: 130%;
    font-family: 'SB-M';
    font-size: 22px;
    display: block;
  }
  /* //사이드메뉴 */

  /* 섹션2 */
  .job-tag {
    padding: 48px 20;
  }
  .section-2 .info {
    font-size: 26px;
    padding: 40px 0 0;
  }
  .section-2 p.info-2 {
    padding: 24px 0;
  }
  .job-tag ul li {
    padding: 12px 20px;
    font-size: 20px;
  }
  .job-tag > span {
    display: none;
  }
  .section-2 .gom-img {
    display: block;
    margin-top: 132px;
  }
  .p-box {
    padding-top: 50px;
    gap: 48px;
  }
  .p-box p {
    font-size: 26px;
  }
  .p-box ul li {
    font-size: 18px;
  }
  .section-2 .box > div {
    font-size: 26px;
  }
  .section-2 .down3-ico {
    padding: 60px 0;
    width: 40px;
  }
  .section-2 .intro-box .item p {
    font-size: 24px;
  }
  .section-2 .intro-box .item p:nth-child(2) {
    font-size: 18px;
    padding-top: 12px;
  }
  .section-2 .intro-box .item-1 {
    width: 112px;
  }
  .section-2 .intro-box .item-2 {
    width: 105px;
  }
  .section-2 .intro-box .item-3 {
    width: 67px;
  }
  .section-2 .intro-box .item-4 {
    width: 100px;
  }
  .section-2 .bottom-info {
    font-size: 18px;
    padding-top: 40px;
    line-height: 1.6;
    text-align: center;
  }
  .section-2 .bottom-info br {
    display: block;
  }
  .section-2 .font-s20 {
    padding-top: 16px;
  }
  /* //섹션2 */

  /* 섹션3 */
  .section-3 .tab-cnt-box-1 .cont h2 {
    font-size: 30px;
  }
  .section-3 .tab-cnt-box-1 .cont .box-1 {
    padding: 44px 0;
  }
  .section-3 .tab-cnt-box-1 .cont .box-1 p {
    font-size: 20px;
  }
  .section-3 .tab-cnt-box-1 h3 {
    padding: 18px;
    font-size: 24px;
  }
  .section-3 .tab-cnt-box-1 .table-1 th,
  .section-3 .tab-cnt-box-1 .table-1 td {
    font-size: 20px;
  }
  .section-3 .tab-cnt-box-1 .box-3 li {
    min-height: 88px;
    height: auto;
    padding: 4px;
    box-sizing: border-box;
  }
  .section-3 .tab-cnt-box-1 .box-3 li.last {
    height: auto
    }
  .section-3 .tab-cnt-box-1 .box-3 li:first-child {
    height: 60px;
  }
  .section-3 .tab-cnt-box-1 .box-3 li p {
    font-size: 18px;
  }
  .section-3 .tab-cnt-box-1 #tab1-3 .cont-box {
    flex-direction: column;
    width: 100%;
    gap: 60px;
  }
  /* //섹션3 */

  /* 섹션4 */

  .section-4 .airplane {
    width: 100px;
  }
  .section-4 .cont-1 .box {
    padding: 24px;
    gap: 0;
    flex-direction: column;
  }
  .section-4 .cont-1 .img-box {
    width: 100px;
  }
  .section-4 .cont-1 .text-box h3 {
    font-size: 28px;
  }
  .section-4 .cont-1 .text-box p {
    font-size: 20px;
  }
  .section-4 .cont-2 .box {
    padding: 30px 0;
  }
  .section-4 .cont-2 .box .img-box {
    width: 100px;
  }
  .section-4 .cont-2 .box h3 {
    font-size: 28px;
  }
  .section-4 .cont-2 .box p {
    font-size: 18px;
  }
  .section-4 .cont-3 {
    font-size: 18px;
  }
  /* //섹션4 */

  /* 섹션5 */
  .section-5 .tab-cnt-box-2 .cont {
    flex-direction: column;
    gap: 28px;
  }
  .section-5 .tab-cnt-box-2 .sub-title {
    flex-direction: row;
    gap: 0;
    align-items: flex-end;
    justify-content: center;
  }
  .section-5 .tab-cnt-box-2 .sub-title img {
    content: url('../images/main-visual-title-m.svg');
  }
  .section-5 .tab-cnt-box-2 .sub-title p {
    font-size: 28px;
  }
  .section-5 .tab-cnt-box-2 .job-box {
    gap: 8px;
  }
  .section-5 .tab-cnt-box-2 .job-box > div p {
    font-size: 17px;
  }
  .section-5 .item-2 {
    top: 3vw;
    left: 4vw;
    width: 40px;
  }
  .section-5 .item-3 {
    right: 2vw;
    top: 0;
    width: 100px;
  }
  .section-5 .item-1 {
    bottom: -50px;
    width: 180px;
}
  /* //섹션5 */

  /* 섹션6 */
  .section-6 .cnt-box {
    gap: 20px;
    margin-top: 86px;
  }
  .section-6 .cnt-box > li {
      width: calc(50% - 10px);
  }
  .section-6 .cnt-box > li > h3 {
      font-size: 22px;
  }
  .section-6 .cnt-box > li > h4 {
      font-size: 18px;
      margin-top: 48px;
  }
  .section-6 .cnt-box > li p,
  .section-6 .cnt-box > li:hover p {
      font-size: 20px;
  }
  .section-6 .wrap .text-1 {
    font-size: 28px;
  }
  .section-6 .wrap .text-2 {
    font-size: 20px;
  }
  .section-6 .item-1 {
    right: 40px;
    top: 380px;
    width: 80px;
  }
  .section-6 .item-2 {
    bottom: 80px;
    right: 20px;
    width: 200px;
  }
  /* //섹션6 */

  /* 섹션7 */
  .section-7 h1 {
    font-size: 44px;
  }
  .section-7 h1 span {
    font-size: 48px;
  }
  .section-7 .cont {
    padding: 20px 30px;
    border-radius: 20px;
  }
  .section-7 .cont > span {
    z-index: 10;
  }
  .section-7 .item-1 {
    top: 20px;
    left: -80px;
    width: 120px;
  }
  .section-7 .item-2 {
    width: 176px;
  }
  .section-7 .faq-lis p {
    font-size: 18px;
  }
  .section-7 .faq-list p:first-child {
    font-size: 20px;
  }
  .section-7 .cont-2 > span {
    right: -40px;
    bottom: -60px;
    width: 120px;
  }
  /* //섹션7 */

  /* 섹션8 */
  .section-8 .cont {
    gap: 80px;
  }
  .section-8 .cont .box {
    gap: 40px;
  }
  .section-8 h1 {
    font-size: 48px;
  }
  .section-8 h2 {
    font-size: 26px;
  }
  .section-8 .cont .box-1 button {
    font-size: 24px;
    height: 80px
  }
  .section-8 .cont .box-3 .item-box {
    gap: 20px;
  }
  .section-8 .cont .box-3 .item-box .item p {
    font-size: 20px;
  }
}

/* 1200 */
@media (max-width: 1200px) {

  /* section-1 */

  .main-visual-wrap .btn-wrap {
    left: 8%;
    top:500px;
  }
  .section-1 {
    height: 1110px;
  }
  .main-visual-wrap span {
    transform: scale(.7);
  }
  .main-visual-wrap .btn-wrap {
    left: 10%;
  }

  .main-visual-wrap .item-1 {
    left: calc(50% - 450px);
    top: -10%;
  }
  .main-visual-wrap .item-2 {
    top: 630px;
    left: calc(50% - 460px);
  }
  .main-visual-wrap .item-3 {
    top: 380px;
    left: calc(50% + 56px);
    transform: translateX(-50%) scale(.7);
  }
  .main-visual-wrap .item-4 {
    left: calc(50% + 165px);
    transform: translateX(-50%) scale(.7);
    top: 0%;
  }
  .main-visual-wrap .item-6 {
    top: 170px;
    left: calc(50% - -26px);
    transform: translateX(0) scale(.7);
  }
  .main-visual-wrap .item-7 {
    top: 320px;
    left: calc(50% + 100px);
  }
  .main-visual-wrap .item-7 img {
    width: 1600px;
  }
  .main-visual-wrap .item-8 {
    top: 620px;
    left: calc(50% + 172px);
    transform: translateX(0) scale(.65);
  }
  .main-visual-wrap .item-9 {
    top: 650px;
    left: calc(50% - 380px);
    transform: scale(.7);
  }
  .main-visual-wrap .item-10 {
    top: 650px;
    left: calc(50% + 150px);
    transform: scale(.7);
  }
  .main-visual-wrap .item-11 {
    left: 3%;
    top: 50px;
  }
  .main-visual-wrap .item-12 {
    top: 540px;
    left: 50%;
    transform: translateX(-50%) scale(.7);
  }
  .main-visual-wrap .item-13 {
    top: -15%;
    right: -15%;
    /* transform: translateX(-50%);*/
  }
  .section-2 .intro-box .item {
    width: 640px;
  }
  .section-4 {
    padding: 120px 44px 400px 44px;
  }
  .section-3 .tab-cnt-box-1 .img-1 {
    right: 50px;
    top: -180px;
    width: 100px;
  }
  .section-3 .tab-cnt-box-1 .img-3 {
    bottom: 0;
  }

}


/* 767 */
@media (max-width:768px) {

  /* 공통 */
  .btm-wrap .apply-btn {
    padding-left: 0;
  }
  .btm-wrap .apply-btn.space40{
    margin-right: 0px;
  }

  section {
    padding: 100px 20px !important;
  }
  .section-1 {
    padding: 0 !important;
  }
  .title-box p {
    font-size: 28px;
  }
  .title-box h1 {
    font-size: 32px;
    text-align: center;
    border-radius: 28px;
  }
  .tab-menu {
    gap: 4px;
    padding-top: 50px;
    padding-bottom: 48px;
  }
  .tab-menu li a {
    font-size: 19px;
    padding: 12px 20px;
  }

  /* 섹션2 */
  .section-2 .info {
    font-size: 20px;
    /* padding-left: 0;
    padding-right: 0;
    padding-bottom: 40px; */
  }

  .section-2 .info {
    padding: 24px 0 0;
  }
  .section-2 p.info-2 {
    font-size: 20px;
    padding: 20px 0;
  }


  .section-2 .info br {
    display: block;
  }
  .job-tag {
    padding: 20px 16px;
    border: 2px dashed rgb(0, 0, 0);
    gap: 8px;
  }
  .job-tag ul {
    gap: 8px;
  }
  .job-tag ul li {
    padding: 8px 10px;
    font-size: 18px;
  }
  .section-2 .gom-img {
    margin-top: 50px;
  }
  .p-box {
    padding-top: 32px;
    gap: 32px;
    /* padding-bottom: 80px; */
  }
  .p-box p {
    font-size: 20px;
  }
  .p-box p br {
    display: block;
  }
  .p-box ul li {
    font-size: 15px;
  }
  .section-2 .box > div {
    font-size: 22px;
    padding: 32px 20px;
    border-radius: 20px;
  }
  .section-2 .down3-ico {
    padding-top: 40px;
  }
  .section-2 .intro-box {
    gap: 16px;
  }
  .section-2 .intro-box .item {
    border-radius: 16px;
    padding: 26px;
  }
  .section-2 .intro-box .item p {
    font-size: 18px;
  }
  .section-2 .intro-box .item p:nth-child(2) {
    font-size: 15px;
  }
  .section-2 .intro-box .item:nth-child(4){
    padding: 20px;
  }
  .section-2 .intro-box .item p br {
    display: block;
  }
  .section-2 .intro-box .item-1 {
    width: 74px;
    top: -40px;
    left: -30px;
  }
  .section-2 .intro-box .item-2 {
    width: 74px;
  }
  .section-2 .intro-box .item-3 {
    width: 50px;
    top: -10px;
  }
  .section-2 .intro-box .item-4 {
    width: 80px;
    bottom: -20px;
  }
  .section-2 .bottom-info {
    font-size: 15px;
  }
  .section-2 .font-s20 {
    padding-top: 12px;
  }
  .section-2 .info span::before {
    width: 113px;
    left: -14px;
  }
  .section-2 .info span.cE30613::after {
    position: absolute;
    content: '';
    width: 200px;
    background-color: #F3AECC;
    height: 8px;
    top: 20px;
    left: 0;
    z-index: -1;
  }
  /* //섹션2 */

  /* 섹션3 */
  .section-3 .tab-cnt-box-1 .img-1 {
    display: none;
  }
  .section-3 .tab-cnt-box-1 > li {
    padding: 48px 16px;
    border-radius: 16px;
  }
  .section-3 .tab-cnt-box-1 .cont h2 {
    font-size: 24px;
  }
  .section-3 .tab-cnt-box-1 .cont .box-1 {
    padding: 40px 0;
  }
  .section-3 .tab-cnt-box-1 .cont .box-1 > div {
    padding: 16px 20px;
    gap: 20px;
    margin: 0 16px;
  }
  .section-3 .tab-cnt-box-1 .cont .box-1 p {
    font-size: 16px;
    margin-right: 0;
  }
  .section-3 .tab-cnt-box-1 h3 {
    padding: 13px;
    font-size: 17px;
    border-radius: 8px;
  }
  .section-3 .tab-cnt-box-1 .table-1 th, .section-3 .tab-cnt-box-1 .table-1 td {
    font-size: 16px;
    letter-spacing: -0.5px;
  }
  .section-3 .tab-cnt-box-1 .box-3 ul {
    gap: 10px;
  }
  .section-3 .tab-cnt-box-1 .box-3 li{
    height: auto;
    min-height: 72px;
    box-sizing: border-box;
  }
  .section-3 .tab-cnt-box-1 .box-3 li:first-child {
    height: 58px;
  }
  .section-3 .tab-cnt-box-1 .box-3 li p {
    font-size: 15px;
    letter-spacing: -1px;
  }
  .section-3 .tab-cnt-box-1 .img-2 {
    width: 56px;
    left: -30px;
    bottom: 400px;
  }
  .section-3 .tab-cnt-box-1 .img-3 {
    bottom: -40px;
    right: 0;
    width: 80px;
  }
  .section-3 .tab-cnt-box-1 .img-4 {
    width: 72px;
    left: -40px;
    bottom: 500px;;
  }
  /* //섹션3 */

  /* 섹션4 */
  .section-4 {
    padding: 80px 44px 200px 44px;
  }

  .section-4 .cont-1 {
    gap: 16px;
    flex-direction: column;
  }
  .section-4 .cont-1 .box {
    border-radius: 16px;
    flex-direction: row;
    gap: 20px;
  }
  .section-4 .cont-1 .text-box {
    padding-top: 0;
  }
  .section-4 .cont-1 .text-box h3 {
    font-size: 24px;
  }
  .section-4 .cont-1 .text-box p {
    font-size: 18px;
  }
  .section-4 .cont-1 .img-box {
    width: 80px;
  }
  .section-4 .airplane {
    width: 80px;
    top: 60px;
  }
  .section-4 .cont-2 {
    flex-direction: column;
    gap: 12px;
  }
  .section-4 .cont-2 .box {
    padding: 24px 0;
    gap: 16px;
    border-radius: 16px;
  }
  .section-4 .cont-2 .box .img-box {
    width: 80px;
  }
  .section-4 .cont-2 .box h3 {
    font-size: 22px;
  }
  .section-4 .cont-2 .box p {
    font-size: 16px;
  }
  .section-4 .cont-3 {
    font-size: 16px;
    margin-bottom: 60px;
  }
  /* //섹션4 */

  /* 섹션5 */
  .section-5 .tab-cnt-box-2 li {
    padding: 24px 20px;
    border-radius: 20px;
  }
  .section-5 .tab-cnt-box-2 .sub-title img {
    width: 125px;
  }
  .section-5 .tab-cnt-box-2 .sub-title p {
    font-size: 24px;
  }
  .section-5 .tab-cnt-box-2 .job-box {
    grid-template-columns: 1fr;
  }
  .section-5 .tab-cnt-box-2 .job-box > div {
    gap: 8px;
  }
  .section-5 .tab-cnt-box-2 .job-box > div p {
    font-size: 15px;
  }
  .section-5 .item-1 {
    width: 126px;
  }
  /* //섹션5 */

  /* 섹션6 */
  .section-6 .wrap .text-1 {
    text-align: center;
    font-size: 19px;
  }
  .section-6 .title-box {
    padding-top: 20px;
    padding-bottom: 28px;
  }
  .section-6 .title-box p {
    text-align: center;
    line-height: 1.4;
  }
  .section-6 .title-box h1 br,
  .section-6 .wrap .text-1 br,
  .section-6 .title-box p br {
    display: block;
  }
  .section-6 .wrap .text-2 {
    font-size: 15px;
  }
  .section-6 .cnt-box {
    gap: 8px;
    margin-top: 48px;
  }
  .section-6 .cnt-box > li {
      width: 100%;
      /* padding: 24px; */
  }
  .section-6 .cnt-box > li > h3 {
      font-size: 20px;
  }
  .section-6 .cnt-box > li > h4 {
      font-size: 15px;
      margin-top: 24px;
  }
  .section-6 .cnt-box > li p,
  .section-6 .cnt-box > li:hover p {
      font-size: 16px;
  }
  .section-6 .item-1 {
    display: none;
  }
  .section-6 .item-2 {
    bottom: 40px;
    width: 120px;
  }
  /* //섹션6 */

  /* 섹션7 */
  .section-7 h1 {
    font-size: 28px;
  }
  .section-7 h1 span {
    font-size: 32px;
  }
  .section-7 .faq-list p {
    font-size: 22px;
  }
  .section-7 .faq-list p:not(:first-child) {
    font-size: 18px;
  }
  .section-7 .faq-list .crying {
    width: 16px;
    margin-top: 0;
  }
  .section-7 .cont {
    padding: 12px;
    border-radius: 16px;
    margin-top: 40px;
  }
  .section-7 .item-1 {
    top: -40px;
    left: -40px;
    width: 56px;
  }
  .section-7 .item-2 {
    width: 88px;
    bottom: -10vw;
  }
  .section-7 h1.faq {
    padding-top: 88px;
    padding-bottom: 32px;
  }
  .section-7 .cont-2 {
    border-radius: 16px;
    padding:24px;
  }
  .section-7 .faq-list p:first-child {
    font-size: 17px;
  }
  .section-7 .faq-list p:not(:first-child) {
    font-size: 16px;
  }
  .section-7 .cont-2 > span {
    display: none;
  }
  /* //섹션7 */

  /* 섹션8 */
  .section-8 h1 {
    text-align: center;
    font-size: 32px;
  }
  .section-8 .cont {
    gap: 40px;
  }
  .section-8 h2 {
    font-size: 20px;
  }
  .section-8 h2 br {
    display: block;
  }
  .section-8 .cont .box button {
    font-size: 18px;
    height: 68px;
    gap: 8px;
  }
  .section-8 .cont .box-1 button img {
    /* margin-top: -26px;
    margin-left: -12px; */
    width: 60px;
  }
  .section-8 .cont .box-3 .item-box {
    flex-direction: column;
  }
  .section-8 .cont .box-3 .item-box .item {
    flex-direction: row;
    padding: 20px;
    height: auto;
  }
  .section-8 .cont .box-3 .item-box .item:nth-child(2) img {
    width: 60px;
  }
  .section-8 .cont .box-3 .item-box .item img {
    width: 80px;
  }
  /* //섹션8 */



  
  /* btm-wrap */
  .btm-wrap {
    width: 100%;
    left: 0;
    bottom: 0;
    gap: 0;
  }
  .btm-wrap .apply-btn {
    border-radius: 0;
    width: 100%;
    height: 60px;
    border: 0;
    border-top: 1px solid #000;
    font-size: 18px;
  }
  .btm-wrap .apply-btn:last-child {
    width: 100%;
  }
  .btm-wrap .apply-btn img {
    display: none;
  }

  /* modal */
  .modal {
    position: fixed;
    height: 100vh;
    border-radius: 0;
  }
  .modal .cont {
    padding-bottom: 60px;
  }
  .modal h1 {
    font-size: 20px;
  }
  .modal-close {
    width: 20px;
  }
  .modal .cont .box {
    padding: 28px;
    gap: 24px;
    align-items:center;
  }
  .modal .cont .box h2 {
    font-size: 18px;
  }
  .modal .cont .box .item p {
    font-size: 15px;
  }
  .modal .cont .box .item p span {
    margin-left: 8px;
  }

}

@media (max-width: 680px) {
  .section-2 .intro-box .item {
    width: 100%;
  }
}

/* 580 */
@media (max-width: 580px) {

  .section-2 .intro-box .item {
    padding: 20px;
  }

 /* 애니메이션 조정 */
  @keyframes animate__fadeInUp2 {
    0% {
      opacity: 0;
      transform: translateY(20px) scale(.4);
    }
    
    100% {
        opacity: 1;
        transform: translateY(0) scale(.4);
    }
  }
  @keyframes fadeInDownBig {
    0% {opacity: 0;
      transform: translateY(-2000px) translateX(-50%) scale(.4);}
      100% {
        opacity: 1;
        transform: translateY(0) translateX(-50%) scale(.4);
      }
  }
  @keyframes zoomIn {
    0% {
      opacity: 0;
      transform: scale3d(.3,.3,.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    100% {
        transform: scale(.4);
    }
  }
  @keyframes fadeInTopRight {
    0% {
      opacity: 0;
      transform: translate3d(100%, -100%, 0);
    }
    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(.4);
    }
  }
  @keyframes fadeInTopRight2 {
    0% {
      opacity: 0;
      transform: translate3d(100%, -100%, 0);
    }
    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
  }

  /* 헤더 */
  .header {
    padding: 0 20px;
    height: 56px;
  }

  /* section-1 */
  .section-1 {
    height: 730px;
  }
  .main-visual-wrap span {
  transform: scale(.4);
  }
  .main-visual-wrap .item-1 {
    top: 0px;
    left: calc(50% - 0px);
    transform: translateX(-50%) scale(.4);
  }
  .main-visual-wrap .item-2 {
    top: 412px;
    left: calc(50% - 490px);
  }
  .main-visual-wrap .item-3 {
    top: 390px;
    left: calc(50% - 57px);
    transform: translateX(-50%) scale(.35);
  }
  .main-visual-wrap .item-4 {
    top: 84px;
    left: 50%;
    transform: translateX(-50%) scale(.4);
  }
  .main-visual-wrap .item-5 {
    top: 428px;
    left: calc(50% + -42px);
  }
  .main-visual-wrap .item-6 {
    left: calc(50% - 150px);
    transform: translateX(0) scale(.4);
    top: 240px;
  }
  .main-visual-wrap .item-7 {
    left: 50%;
    transform: translateX(-50%) scale(.4);
    top: 260px;
  }
  .main-visual-wrap .item-8 {
    top: 572px;
    left: calc(50% - 6px);
    transform: translateX(0) scale(.32);
  }
  .main-visual-wrap .item-9 {
    top: 578px;
    left: calc(50% - 234px);
    transform: scale(.35);
  }
  .main-visual-wrap .item-10 {
    top: 582px;
    left: calc(50% - 57px);
    transform: scale(.32);
  }
  .main-visual-wrap .item-11 {
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    width: 250px;
  }
  .main-visual-wrap .item-11 img {
    width: 250px;
  }
  .main-visual-wrap .item-12 {
    top: 588px;
  }
  .main-visual-wrap .item-12 > img {
    width: 800px;
  }
  .main-visual-wrap .item-13 {
    top: -25%;
    left: 0;
  }
  .section-1 .btn-wrap {
    left: 50%;
    transform: translateX(-50%);
    top: 400px;
  }
  .section-1 .btn-wrap .apply-btn {
    display: none;
    font-size: 18px;
    padding: 12px 30px;
    width: auto;
  }
  .apply-btn img {
    left: -50px;
    top: -70%;
    z-index: 10;
    width: 80px;
  }
  .footer {
    padding-bottom: 60px;
    height: 140px;
  }

}

.desc {
  font-size: 20px;
}
br.mb-ver {
  display: none;
}

@media (max-width:1320px) {
  .desc{
    font-size: 18px;
  }
}
@media (max-width:768px) {
  .desc{
    font-size: 16px;
  }
  br.mb-ver {
    display: block;
  }
  br.pc-ver {
    display: none;
  }
}