/* intro1_wrap 시작 */

.main1_wrap {
  height: 720px;
  background: linear-gradient(360deg,rgba(255, 255, 255, 1) 0%, rgba(184, 227, 255, 1) 100%);
  background-image: url(../img/pages/index/main1_bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  color: var(--black-text);
  animation: main1_fadein 5s ease 1s;
  -webkit-animation: main1_fadein 1s;
  text-align: center;
  margin-top: 50px;
  overflow: hidden;
  position: relative;
}

@keyframes main1_fadein {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@-webkit-keyframes main1_fadein { /* Safari and Chrome */
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.main1_wrap .main1_content {
  margin-top: 130px;
}

.main1_wrap .main1_tit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  max-width: 1120px;
  margin: 0 auto;
  letter-spacing: -1.5px;
}

.main1_wrap .main1_tit h1 {
  font-size: 48px;
  font-weight: 300;
  line-height: 1.2;
}

.main1_wrap .main1_tit h1 span {
  font-weight: 600;
}

.main1_wrap .main1_tit h2 {
  color: var(--main-color);
  font-size: 32px;
  font-weight: 500;
}

.main1_wrap .main1_tit h6 {
  background: var(--main-color);
  color: var(--white-text);
  border-radius: 50px;
  padding: 10px 20px;
  font-size: 22px;
  font-weight: 300;
  position: relative;
  margin-top: 40px;
}

.main1_wrap .main1_tit h6::after {
  content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 0;
	height: 0;
	border: 20px solid transparent;
	border-top-color: var(--main-color);
	border-bottom: 0;
	margin-left: -20px;
	margin-bottom: -10px;
}

.main1_wrap .main1_tit h6 span {
  font-weight: 500;
}

.main1_wrap .main1_txt {
  margin-top: 35px;
}

.main1_wrap .main1_txt .main1_swiper {
  overflow: visible;
}

.main1_wrap .main1_txt .main1_swiper .swiper-slide {
  background: var(--white-text);
  border-radius: 10px;
  padding: 20px;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  scale: 0.9;
  opacity: 0.7;
  transition: 0.3s;
  height: 180px;
}

.main1_wrap .main1_txt .main1_swiper .swiper-slide p {
  font-size: 24px;
  line-height: 1.2;
  font-weight: 500;
  color: var(--gary-background60);
  padding-right: 35px;
  width: 100%;
  display: flex;
  align-items: flex-start;

}

.main1_wrap .main1_txt .main1_swiper .swiper-slide img {
  max-width: 100px;
}

.main1_wrap .main1_txt .main1_swiper .swiper-slide.swiper-slide-active {
  opacity: 1;
  box-shadow: 0px 0px 10px 5px rgb(0, 153, 255, 0.2);
}

.main1_wrap .main1_txt .main1_swiper .swiper-slide.swiper-slide-active p {
  color: var(--main-color);
}

.main1_wrap .main1_txt .main1_swiper .swiper-slide.swiper-slide-active.swiper-slide {
  scale: 1;
}

.main1_wrap > a {
  background: var(--bg5);
  color: var(--white-text);
  font-size: 24px;
  display: inline-flex;
  align-items: center;
  flex-direction: row;
  justify-content: center;
  font-weight: 500;
  gap: 10px;
  border-radius: 500px;
  padding: 15px 50px;
  z-index: 9;
  position: fixed;
  bottom: 20px;
  max-width: 1120px;
  width: 92%;
  left: 50%;
  transform: translate(-50%, 0%);
}

@media (max-width: 1400px) {
  .main1_wrap > a {
    width: 75%;
  }
}

@media (max-width: 1099px) {
  .main1_wrap > a {
    width: 70%;
    bottom: 25px;
  }
}

@media (max-width: 767px) {
  .main1_wrap .main1_content {
    margin-top: 160px;
  }

  .main1_wrap .main1_tit {
    width: 92%;
  }

  .main1_wrap .main1_tit h1 {
    font-size: 2.5rem;
  }

  .main1_wrap .main1_tit h2 {
    font-size: 1.8rem;
  }

  .main1_wrap .main1_tit h6 {
    font-size: 1.2rem;
    margin-top: 30px;
  }

  .main1_wrap .main1_txt .main1_swiper .swiper-slide p {
    font-size: 1.4rem;
  }
  

  .main1_wrap > a {
    width: 80%;
    left: 3%;
    transform: translate(0%, 0%);
    font-size: 1.2rem;
  }
}

@media (max-width: 575px) {

    .main1_wrap {
      height: 650px;
    }

    .main1_wrap .main1_content {
      margin-top: 130px;
    }

    .main1_wrap .main1_tit h1 {
      font-size: 1.7rem;
    }

    .main1_wrap .main1_tit h2 {
      font-size: 1.2rem;
    }

    .main1_wrap .main1_tit h6 {
      font-size: 1rem;
      margin-top: 20px;
    }

    .main1_wrap .main1_txt .main1_swiper .swiper-slide p {
      font-size: 1.3rem;
      padding-right: 0;
    }

  .main1_wrap > a {
    width: 72%;
    font-size: 1.2rem;
    padding: 10px;
  }

}

@media (max-width : 475px) {
  .main1_wrap .main1_txt p {
    font-size: 1rem;
  }

  .main1_wrap .main1_txt p.main1_p1 {
    top: 95px;
  }

  .main1_wrap .main1_txt p.main1_p2 {
    top: 270px;
  }

}

@media (max-width: 375px) {

  .main1_wrap {
    height: 550px;
  }
  .main1_wrap .main1_content {
    margin-top: 100px;
  }
  .main1_wrap .main1_tit h1 {
    font-size: 1.4rem;
  }

  .main1_wrap .main1_tit h2 {
    font-size: 1rem;
    line-height: 1.2;
  }

  .main1_wrap .main1_tit h6 {
    font-size: 1.2rem;
  }

  .main1_wrap .main1_txt .main1_swiper .swiper-slide {
    height: 160px;
  }

  .main1_wrap .main1_txt .main1_swiper .swiper-slide p {
    font-size: 1.1rem;
    padding-right: 0;
  }
  

  .main1_wrap > a {
    width: 68%;
    font-size: 1rem;
  }
}

@media (max-width: 325px) {
  .main1_wrap .main1_tit h1 {
    font-size: 1.2rem;
  }

  .main1_wrap .main1_tit h2 {
    font-size: 0.9rem;
  }

  .main1_wrap .main1_tit h6 {
    font-size: 1rem;
  }

  .main1_wrap .main1_txt .main1_swiper .swiper-slide p {
    font-size: 1rem;
    padding-right: 0;
  }

  .main1_wrap > a {
    width: 65%;
  }
}

/* main1_wrap 끝 */

/* b2b/b2c 겶제 프로세스 시작 */

.process_wrap {
  margin: 90px auto;
  text-align: center;
  background: var(--gary-background5);
  padding: 60px 30px;
}

.process_wrap .process_tit p {
  border-radius: 50px;
  border: 1px solid var(--main-color);
  color: var(--main-color);
  padding: 10px 20px;
  display: inline-block;
  font-size: 22px;
  margin-bottom: 10px;
}

.process_wrap .process_tit h3 {
  font-size: 38px;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 10px;
}

.process_wrap .process_tit h4 {
  font-size: 20px;
  font-weight: 300;
  line-height: 1.2;
  color: var(--black-text);
}

.process_wrap .process_txt .img_box {
  margin: 30px 0;
}

.process_wrap .process_txt .list_box {
  display: flex;
  max-width: 1120px;
  width: 100%;
  margin: 0px auto;
  gap: 20px;
}

.process_wrap .list_box .process {
  width: calc(50% - 20px);
  background: var(--white-text);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0px 0px 10px 5px rgb(255, 255, 255, 0.4);
  color: var(--gary-background60);
}

.process_wrap .list_box .process h4 {
  font-size: 32px;
  font-weight: 300;
}

.process_wrap .list_box .process h4 span {
  font-weight: 700;
}

.process_wrap .list_box .process h5 {
  font-size: 22px;
  font-weight: 500;
}

.process_wrap .list_box .process > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}

.process_wrap .list_box .process > div ul {
  display: flex;
  flex-wrap: wrap;  
  justify-content: center;
  gap: 15px;
}

.process_wrap .list_box .process > div ul li {
  background: var(--bg2);
  padding: 10px;
  border-radius: 5px;
  color: #194EFF;
}

.process_wrap .list_box .process > div img {
  width: 30px;
}

.process_wrap .list_box .process > div p {
  color: var(--main-color);
  font-size: 20px;
  line-height: 1.3;
  font-weight: 700;
  width: 70%;
}

@media (max-width: 1099px) {
  .process_wrap .list_box .process > div p {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .process_wrap .process_tit p {
    font-size: 1.2rem;
  }

  .process_wrap .process_tit h3 {
    font-size: 2.1rem;
  }

  .process_wrap .process_tit h4 {
    font-size: 1.2rem;
  }

  .process_wrap .process_txt .img_box img {
    width: 50%;
    margin: 0 auto;
  }

  .process_wrap .process_txt .list_box {
    flex-wrap: wrap;
  }
  
  .process_wrap .list_box .process {
    width: 100%;
    padding: 30px 20px;
  }

  .process_wrap .list_box .process h4 {
    font-size: 2rem;
  }
  .process_wrap .list_box .process h5 {
    font-size: 1.5rem;
  }

  .process_wrap .list_box .process > div p {
    font-size: 1.2rem;
  }
}

@media (max-width: 575px) {
  .process_wrap .process_tit p {
    font-size: 1rem;
  }

  .process_wrap .process_tit h3 {
    font-size: 1.6rem;
  }

  .process_wrap .process_tit h4 {
    font-size: 1rem;
  }

  .process_wrap .process_txt .img_box img {
    width: 70%;
  }

  .process_wrap .list_box .process h4 {
    font-size: 1.5rem;
  }
  .process_wrap .list_box .process h5 {
    font-size: 1.2rem;
  }

  .process_wrap .list_box .process > div {
    margin-top: 10px;
  }

  .process_wrap .list_box .process > div ul li {
    font-size: 1rem;
  }

  .process_wrap .list_box .process > div p {
    font-size: 1rem;
  }
}

@media (max-width : 375px) {
  .process_wrap .list_box .process h4 {
    font-size: 1.3rem;
  }
  .process_wrap .list_box .process h5 {
    font-size: 1rem;
  }

  .process_wrap .list_box .process > div ul {
    gap: 5px;
  }

  .process_wrap .list_box .process > div ul li {
    font-size: 0.8rem;
  }
  
  .process_wrap .list_box .process > div p {
    font-size: 0.9rem;
  }
}

@media (max-width : 325px) {
  .process_wrap .list_box .process > div ul li {
    font-size: 0.7rem;
  }

  .process_wrap .list_box .process > div p {
    font-size: 0.8rem;
  }
}

/* b2b/b2c 겶제 프로세스 끝 */

/* youtube 채널 시작 */

.youtube_wrap {
  max-width: 1120px;
  text-align: center;
  margin: 0 auto;
}

.youtube_wrap .youtube_tit p {
  border-radius: 50px;
  border: 1px solid var(--main-color);
  color: var(--main-color);
  padding: 10px 20px;
  display: inline-block;
  font-size: 22px;
  margin-bottom: 10px;
}

.youtube_wrap .youtube_tit h3 {
  font-size: 38px;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 10px;
}

.youtube_wrap .youtube_tit h4 {
  font-size: 20px;
  font-weight: 300;
  line-height: 1.2;
  color: var(--black-text);
}

.youtube_wrap .youtube_txt {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin: 30px 0 40px;
}

.youtube_wrap .youtube_txt .youtube_main {
  width: calc(75% - 0px);
}

.youtube_wrap .youtube_txt .youtube_main video {
  width: 100%;
}

.youtube_wrap .youtube_txt .youtube_short {
  width: calc(25% - 0px);
  max-height: 460px;
  height: 100%;
}

.youtube_wrap .youtube_txt .youtube_short img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.youtube_wrap > a {
  background: var(--gary-background60);
  color: var(--white-text);
  padding: 15px 20px;
  border-radius: 50px;
  margin-top: 50px;
  font-size: 22px;
  font-weight: 400;
}

@media (max-width : 1120px) {
  .youtube_wrap {
    width: 92%;
  }
}


@media (max-width : 767px) {
  .youtube_wrap .youtube_tit p {
    font-size: 1.2rem;
  }

  .youtube_wrap .youtube_tit h3 {
    font-size: 2.1rem;
  }

  .youtube_wrap .youtube_tit h4 {
    font-size: 1.2rem;
  }

  .youtube_wrap .youtube_txt {
    flex-wrap: wrap;
  }

  .youtube_wrap .youtube_txt .youtube_main {
    width: calc(100% - 0px);
    height: 45vw;
  }

  .youtube_wrap .youtube_txt .youtube_short {
    width: calc(100% - 0px);
    max-height: auto;
    margin-top: 50px;
  }

  .youtube_wrap > a {
    font-size: 1.2rem;
  }
}

@media (max-width : 575px) {
  .youtube_wrap .youtube_tit p {
    font-size: 1rem;
  }

  .youtube_wrap .youtube_tit h3 {
    font-size: 1.6rem;
  }

  .youtube_wrap .youtube_tit h4 {
    font-size: 1rem;
  }

  .youtube_wrap .youtube_txt {
    margin: 30px 0;
  }
  
  .youtube_wrap > a {
    font-size: 1rem;
  }

  .youtube_wrap .youtube_txt .youtube_short {
    margin-top: 30px;
  }
}

@media (max-width : 375px) {
  .youtube_wrap .youtube_txt .youtube_short {
      margin-top: 15px;
    }
}

/* youtube 채널 끝 */


/* review 채널 시작 */

.review_wrap {
  /* max-width: 1120px; */
  text-align: center;
  margin: 70px auto;
  background: var(--bg2);
  padding: 60px 30px;
}

.review_wrap .review_tit h3 {
  font-size: 38px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 10px;
}

.review_wrap .review_tit h4 {
  font-size: 20px;
  font-weight: 300;
  line-height: 1.3;
  color: var(--black-text);
  width: 600px;
  margin: 0 auto;
}

.review_wrap .review_swiper .swiper-wrapper {
  align-items: center;
}

.review_wrap .review_swiper .swiper-slide {
  background: var(--white-text);
  padding: 15px 20px;
  border-radius: 10px;
  text-align: left;
  display: flex;
  flex-direction: column;
  opacity: 0.5;
  scale: 0.9;
  transition: 0.3s;
}

.review_wrap .review_swiper .swiper-slide.swiper-slide-active {
  opacity: 1;
  box-shadow: 0px 0px 10px 5px rgb(0, 153, 255, 0.2);
  scale: 1;
}

.review_wrap .review_swiper {
  /* max-width: 1120px; */
  margin-top: 30px;
  overflow: visible;  
}

.review_wrap .review_swiper .list_tit > div {
  display: flex;
  align-items: center;
}


.review_wrap .review_swiper .list_tit > div h1 {
  display: flex;
  align-items: center;
  gap: 5px;
  width: 100%;
  font-size: 24px;
  font-weight: 500;
}

.review_wrap .review_swiper .list_tit > div h4 {
  color: var(--white-text);
  background: var(--main-color);
  padding: 5px 10px;
  border-radius: 50px;
  font-weight: 400;
  font-size: 14px;
}

.review_wrap .review_swiper .list_tit > div h1 img {
  max-width: 40px;
}

.review_wrap .review_swiper .list_txt:before {
  display: block;
  content: '';
  width: 100%;
  height: 1px;
  background: var(--gary-background30);
  margin: 15px auto;
}

.review_wrap .review_swiper .list_txt img {
  width: 100%;
}



@media (max-width : 767px) {
  .review_wrap {
    padding: 60px 0;
  }

  .review_wrap .review_tit {
    padding: 0 30px;
  }

  .review_wrap .review_tit h3 {
    font-size: 2.1rem;
  }

  .review_wrap .review_tit h4 {
    font-size: 1.2rem;
    width: 100%;
  }

  .review_wrap .review_swiper .swiper-slide {
    padding: 13px;
  }

  .review_wrap .review_swiper .list_tit > div h1 {
    font-size: 1.4rem;
  }

  .review_wrap .review_swiper .list_tit > div h4 {
    font-size: 1rem;
  }
  
}

@media (max-width : 575px) {
  .review_wrap .review_tit h3 {
    font-size: 1.6rem;
  }

  .review_wrap .review_tit h4 {
    font-size: 1rem;
  }

  .review_wrap .review_swiper .list_tit > div h1 {
    font-size: 1.2rem;
  }

  .review_wrap .review_swiper .list_tit > div h1 img {
    max-width: 30px;
  }

  .review_wrap .review_swiper .list_tit > div h4 {
    font-size: 0.9rem;
  }

}

/* review 채널 끝 */


/* event_wrap 시작 */

.event_wrap {
  max-width: 1120px;
  margin: 0 auto;
}

.event_wrap .eventmodal_btn {
    display: block;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: box-shadow 0.2s;
    overflow: hidden;
    height: 200px;
}

/*모달 팝업 영역 스타일링*/
.event_wrap .event_modal {
/*팝업 배경*/
	display: none; /*평소에는 보이지 않도록*/
    position: fixed;
    top:0;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: rgba(0,0,0,0.5);
    z-index: 99;
}
.event_wrap .event_modal .modal_popup {
/*팝업*/
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 20px;
}

.event_wrap .event_modal .modal_popup img {
  max-width: 600px;
  border-radius: 20px;
}

.event_wrap .event_modal .modal_popup .eventclose_btn {
  position: absolute;
  bottom: -25px;
  right: 0;
  color: var(--white-text);
  font-size: 16px;
}

.event_wrap .event_modal.on {
    display: block;
}

.event_wrap .event_txt {
  display: flex;
  flex-direction: row;
  gap: 20px;
  justify-content: center;
  margin-top: 15px;
}

.event_wrap .event_txt .event_winner {
  background: var(--bg2);
  padding: 20px;
  border-radius: 10px;
  width: calc(40% - 0px);
  text-align: center;
}

.event_wrap .event_txt .event_winner h4 {
  font-size: 22px;
  font-weight: 500;
}

.event_wrap .event_txt .event_winner p {
  font-size: 14px;
  font-weight: 300;
  color: var(--gary-background30);
}

.event_wrap .event_txt .event_winner .winner_list {
  background: var(--white-text);
  box-shadow: 0 0px 15px 0 rgba(0, 0, 0, 0.1), 0 0px 5px 0 rgba(0, 0, 0, 0.1);
  padding: 0 20px 20px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-top: 15px;
  border-radius: 10px;
}

.event_wrap .event_txt .event_winner .winner_list h6 {
  background: var(--gary-background30);
  color: var(--white-text);
  font-size: 16px;
  font-weight: 500;
  border-radius: 0 0 10px 10px;
  padding: 5px 10px;
}

.event_wrap .event_txt .event_winner .winner_list.today h6 {
  background: var(--main-color);
}

/* .event_wrap .event_txt .event_winner .winner_list.todaying {
  background: var(--gary-background20);
  color: var(--gary-background50);
  align-items: center;
  padding: 20px;
} */

.event_wrap .event_txt .event_winner .winner_list ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;

}

.event_wrap .event_txt .event_winner .winner_list ul li {
  width: calc(20% - 0px);
  font-size: 14px;
  color: var(--gary-background30);
}

.event_wrap .event_txt .event_winner .winner_list.today ul li {
  color: var(--black-text);
}

.event_wrap .event_txt .event_short {
  width: calc(60% - 0px);
}

.event_wrap .event_txt .event_short img {
  height: 100%;
  object-fit: cover;
}

.event_wrap .event_txt .event_short::after {
    /* display: block;
    content: "";
    width: 150px;
    height: 100%;
    background: linear-gradient(to right, rgb(235, 249, 255) 20%, rgba(235, 249, 255, 0) 100%);
    position: absolute;
    top: 0;
    left: -30px;
    z-index: 9; */
}

.event_wrap .event_txt .event_short::before {
    display: block;
    content: "";
    width: 150px;
    height: 100%;
    background: linear-gradient(to right, rgb(235, 249, 255, 0) 0%, rgba(235, 249, 255) 100%);
    position: absolute;
    top: 0;
    right: -30px;
    z-index: 9;
}

@media (max-width: 1120px) {
  .event_wrap {
    width: 92%;
  }
}

@media (max-width: 999px) {
  .event_wrap .event_txt .event_winner .winner_list ul li {
    width: calc(25% - 0px);
  }
}


@media (max-width: 767px) {
  .event_wrap .event_modal .modal_popup  {
    max-width: 92%;
    width: 100%;
  }

  .event_wrap .event_modal .modal_popup img {
    width: 100%;
  }

  .event_wrap .event_txt {
    flex-direction: column;
  }

  .event_wrap .event_txt .event_winner h4 {
    font-size: 1.5rem;
  }

  .event_wrap .event_txt .event_winner,
  .event_wrap .event_txt .event_short {
    width: calc(100% - 0px);
  }

  .event_wrap .event_txt .event_winner .winner_list ul li {
    width: calc(25% - 0px);
    font-size: 1rem;
  }

  .event_wrap .event_txt .event_winner p {
    font-size: 1rem;
  }

  .event_wrap .event_txt .event_winner .winner_list h6 {
    font-size: 1.2rem;
    padding: 5px 15px;
    width: 100%;
  }
}

@media (max-width: 575px) {
  
  .event_wrap .event_txt .event_winner h4 {
    font-size: 1.25rem;
  }

  .event_wrap .event_txt .event_winner .winner_list ul li {
    width: calc(33% - 0px);
    font-size: 1rem;
  }

  .event_wrap .event_txt .event_winner p {
    font-size: 0.9rem;
  }

  .event_wrap .event_txt .event_winner .winner_list h6 {
    font-size: 1rem;
  }
}

/* event_wratp 끝 */




/* main2_wrap 시작 */

.main2_wrap {
  max-width: 1120px;
  margin: 80px auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.main2_wrap .main2_tit p {
  border-radius: 50px;
  border: 1px solid var(--main-color);
  color: var(--main-color);
  padding: 10px 20px;
  display: inline-block;
  font-size: 22px;
  margin-bottom: 10px;
}

.main2_wrap .main2_tit h3 {
  font-size: 38px;
  font-weight: 500;
  line-height: 1.3;
}

.main2_wrap .main2_tit h3 span {
  color: var(--main-color);
}

.main2_wrap .main2_tit h4 {
  font-size: 20px;
  font-weight: 300;
  line-height: 1.2;
  color: var(--black-text);
}

.main2_wrap .main2_txt {
  gap: 20px;
  border-radius: 20px;
  border: 1px solid #DADCE7;
  background: var(--white-text);
  overflow: hidden;
}


.main2_wrap .main2_txt .main2_img {
  background-image: url(../img/pages/index/main2_bg.png);
  background-size: cover;
  background-position: center;
  object-fit: cover;
  height: 100%;
  width: calc(100% - 0px);
  height: 550px;
  position: relative;
}

.main2_wrap .main2_txt .main2_img img {
  width: 195px;
  position: absolute;
}

.main2_wrap .main2_txt .main2_img img:nth-child(1) {
  top: 60px;
  left: 280px;
}

.main2_wrap .main2_txt .main2_img img:nth-child(2) {
  top: 200px;
  right: 280px;
}

.main2_wrap .main2_txt .main2_img img:nth-child(3) {
  bottom: 20px;
  left: 320px;
}

.main2_wrap .main2_list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
  border-radius: 20px;
  border: 3px solid var(--main-color);
}


.main2_wrap .main2_list .list_box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.main2_wrap .main2_list .list_box h5 {
  font-size: 32px;
  font-weight: 500;
  color: var(--black-text);
  width: 100%;
}

.main2_wrap .main2_list .list_box li {
  display: flex;
  flex-direction: row;
  gap: 5px;
  align-items: center;
  justify-content: center;
  padding: 10px;
  color: var(--gary-background50);
  border: 2px solid var(--gary-background20);
  font-size: 16px;
  font-weight: 300;
  border-radius: 5px;
  width: calc(16.5% - 10px);
  height: 55px;
}

.main2_wrap .main2_list .list_box li span {
  margin-top: 3px;
  line-height: 1.2;
}

.main2_wrap .main2_list .business_list {
  padding: 20px;
  border-radius: 10px;
  background: var(--deepblue-color50);
  margin-top: 30px;
}

.main2_wrap .main2_list .business_list h5 {
  font-size: 22px;
  color: var(--deepblue-color);
} 

.main2_wrap .main2_list .business_list li {
  background: var(--white-text);
  flex-direction: column;
  height: auto;
}

.main2_wrap .main2_list .business_list li span {
  margin-top: 0;
}


@media (max-width: 1120px) {
  .main2_wrap {
    width: 92%;
  }

  .main2_wrap .main2_txt .main2_img img:nth-child(1) {
    left: 15vw;
  }

  .main2_wrap .main2_txt .main2_img img:nth-child(2) {
    right: 15vw;
  }

  .main2_wrap .main2_txt .main2_img img:nth-child(3) {
    left: 18vw;
  }
}

@media (max-width: 999px) {
  .main2_wrap .main2_list .list_box li {
    width: calc(25% - 10px);
  }
}

@media (max-width: 767px) {
  .main2_wrap {
    width: 100%;
  }

  .main2_wrap .main2_tit {
    padding: 0 30px;
  }

  .main2_wrap .main2_tit p {
    font-size: 1.2rem;
  }

  .main2_wrap .main2_tit h3 {
    font-size: 2.1rem;
  }

  .main2_wrap .main2_tit h4 {
    font-size: 1.2rem
  }

  .main2_wrap .main2_txt {
    border: none;
    border-radius: 0;
    flex-direction: column;
    margin-top: 0;
  }

  .main2_wrap .main2_txt .main2_img {
    width: 100%;
  }

  .main2_wrap .main2_txt .main2_img img:nth-child(1) {
    left: 11vw;
  }

  .main2_wrap .main2_txt .main2_img img:nth-child(2) {
    right: 11vw;
  }

  .main2_wrap .main2_txt .main2_img img:nth-child(3) {
    left: 14vw;
  }

  .main2_wrap .main2_list {
    border: none;
  }

  .main2_wrap .main2_list .list_box h5 {
    font-size: 1.6rem;
  }

  .main2_wrap .main2_list .business_list h5 {
    font-size: 1.4rem;
  }

  .main2_wrap .main2_list .list_box li {
    width: calc(33% - 10px);
  }
}

@media (max-width: 575px) {

  .main2_wrap {
    margin: 50px auto;
  }

  .main2_wrap .main2_tit p {
    font-size: 1rem;
  }

  .main2_wrap .main2_tit h3 {
    font-size: 1.6rem;
  }

  .main2_wrap .main2_tit h4 {
    font-size: 1rem
  }

  .main2_wrap .main2_txt .main2_img {
    height: 500px;
  }

  .main2_wrap .main2_txt .main2_img img:nth-child(1) {
    left: 10px;
  }

  .main2_wrap .main2_txt .main2_img img:nth-child(2) {
    right: 10px;
  }

  .main2_wrap .main2_txt .main2_img img:nth-child(3) {
    left: 30px;
  }
  .main2_wrap .main2_list {
    padding: 30px 20px;
  }

  .main2_wrap .main2_list .list_box h5 {
    font-size: 1.3rem;
  }

  .main2_wrap .main2_list .business_list h5 {
    font-size: 1.3rem;
  }

  .main2_wrap .main2_list .list_box li {
    width: calc(50% - 10px);
    font-size: 1rem;
  }
}

@media (max-width: 475px) {
  .main2_wrap .main2_txt .main2_img img {
    width: 165px;
  }
}

@media (max-width: 375px) {

  .main2_wrap .main2_txt .main2_img img:nth-child(2) {
    top: 180px;
  }

  .main2_wrap .main2_txt .main2_img img:nth-child(3) {
    left: 0px;
  }
}

@media (max-width: 350px) {
  .main2_wrap .main2_txt .main2_img img {
    width: 140px;
  }
  .main2_wrap .main2_list .list_box li {
    font-size: 0.8rem;
  }
}
/* main2_wrap 끝 */


/* franchise_wrap 시작 */


/* franchise_wrap 끝 */

/* main3_wrap 시작 */

.main3_wrap {
  padding: 120px 0px 0;
  margin: 0 auto;
  text-align: center;
  max-width: 1120px;
  width: 92%;
}

.main3_wrap .main3_tit p {
  border-radius: 50px;
  border: 1px solid var(--main-color);
  color: var(--main-color);
  padding: 10px 20px;
  display: inline-block;
  font-size: 22px;
}

.main3_wrap .main3_tit h3 {
  font-size: 38px;
  font-weight: 500;
  line-height: 1.3;
  margin: 10px 0;
}

.main3_wrap .main3_tit h4 {
  font-size: 20px;
  font-weight: 300;
  line-height: 1.2;
  color: var(--black-text);
}

.main3_wrap .main3_tit h4 span {
  font-weight: 700;
}

.main3_wrap .main3_txt {
  height: 100%;
  position: relative;
}

/*main3_tab css*/

.main3_tab {
}

.main3_tabnav {
  font-size: 0;
  width: 100%;
  color: var(--gary-background30);
  display: flex;
  align-items: center;
  justify-content: center;
}
.main3_tabnav li {
  padding: 20px;
}

.main3_tabnav li a {
  display: block;
  padding: 15px 50px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 16px;
  color: var(--gary-text60);
  font-size: 22px;
  transition: 0.3s;
  border: 2px solid var(--white-text);
  background: var(--gary-background5);
}

.main3_tabnav li a:hover {
  background: var(--bg2);
  color: var(--main-color);
}

.main3_tabnav li a.active {
  background: var(--bg2);
  color: var(--main-color);
  border: 2px solid var(--main-color);
  font-weight: 500;
}

.main3_tabcontent {
  position: relative;
  overflow: hidden;
  /* min-height: 500px; 필요에 따라 조정 */
  /* margin-bottom: 50px; */
}

.main3_tabcontent > div {
  position: relative;
  width: 100%;
}

.main3_tabnav a {
  cursor: pointer;
  transition: all 0.3s ease;
}

.main3_tabnav a.active {
  /* 활성 탭 스타일 추가 */
  font-weight: bold;
  color: #0099ff; /* 원하는 색상으로 변경 */
}

#main3_tab1 .tab1_tit p {
  font-size: 22px;
  font-weight: 300;
  color: var(--gary-background60);
  margin: 20px auto;
  max-width: 1000px;
  width: 100%;
}

#main3_tab1 .tab1_tit p span {
  font-weight: 700;
  background: #B8E3FF;
}


#main3_tab2 {
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

#main3_tab2 .txt_content {
  display: flex;
  gap: 25px;
  align-items: flex-start;
  height: 700px;
}

#main3_tab2 > div:first-child {
  /* width: calc(50% - 0px); */
}

#main3_tab2 .tab2_tit p {
  font-size: 22px;
  font-weight: 300;
  color: var(--gary-background60);
  margin: 20px auto;
  max-width: 1000px;
  width: 100%;
}

#main3_tab2 .tab2_tit p span {
  font-weight: 700;
}


#main3_tab2 > div {
  width: 100%;
}

/* 착한임대인 css */

#main3_tab2 .kind_txt {
  display: flex;
  align-items: center;
  background: var(--main-color);
  color: var(--white-text);
  text-align: left;
  justify-content: space-between;
  gap: 30px;
  padding: 40px 50px;
  margin-bottom: 20px;
  border-radius: 25px;
}

#main3_tab2 .kind_txt > div:first-child {
  max-width: 350px;
  width: 100%;
}

#main3_tab2 .kind_txt > div h5 {
  font-size: 32px;
}

#main3_tab2 .kind_txt > div p {
  font-size: 19px;
  line-height: 1.4;
  font-weight: 300;
  margin-top: 15px;
}

#main3_tab2 .kind_txt > div p span {
  color: var(--white-text);
  font-weight: bold;
}

#main3_tab2 .kind_txt img {
  max-width: 480px;
  width: 100%;
  margin-bottom: -47px;
}

/* 연세살이 css */
#main3_tab2 .yonsei_txt {
  width: calc(40% - 25px);
  background: var(--main-color);
  color: var(--white-text);
  padding: 40px 30px;
  border-radius: 25px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 80px;
}

#main3_tab2 .yonsei_txt > div h5 {
  font-size: 32px;
}

#main3_tab2 .yonsei_txt > div p {
  font-size: 19px;
  line-height: 1.4;
  font-weight: 300;
  margin: 15px 0;
}

#main3_tab2 .rt_tip {
  background: var(--gary-background5);
  width: calc(60% - 0px);
  padding: 30px 30px 0 30px;
  border-radius: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}


#main3_tab2 .rt_tip h5 {
  font-size: 18px;
  font-weight: 300;
  color: var(--gary-background50);
  width: 80%;
  margin: 10px auto;
}

#main3_tab2 .rt_tip h5 span {
  font-weight: 700;
}

#main3_tab2 .rt_tip p {
  font-size: 17px;
  color: #FF6666;
}

#main3_tab2 .rt_tip img {
  width: 100%;
}

#main3_tab2 .rt_tip img:last-child {
  margin-bottom: -8px;
}

@media screen and (max-width: 768px) {
  .main3_wrap {
    padding: 60px 0;
  }
  #main3_tab2 .txt_content {
    flex-direction: column;
  }

  #main3_tab2 .yonsei_txt {
    width: 100%;
  }
}


@media (max-width: 1120px) {
  #main3_tab2 .txt_content {
    height: 600px;
  }

  #main3_tab2 .rt_tip h5 {
    width: 100%;
  }
}

@media (max-width: 860px) {
  .main3_tabnav li a {
    font-size: 1.2rem;
  }
}

@media (max-width: 767px) {

  .main3_wrap .main3_tit p {
    font-size: 1.2rem;
  }

  .main3_wrap .main3_tit h3 {
    font-size: 2.1rem;
  }

  .main3_wrap .main3_tit h4 {
    font-size: 1.2rem;
  }

  .inroe2_tabnav li a {
    font-size: 1.2rem;
  }

  .main3_wrap .main3_txt {
    margin-top: 20px;
  }

  .main3_tabnav {
    display: block;
  }

  .main3_tabnav li {
    flex-shrink: 0;
    padding: 0;
    margin: 10px;
  }

  .main3_tabnav li a {
    font-size: 1.2rem;
    padding: 15px 20px;
  }
  
  #main3_tab1 .tab1_tit p {
    font-size: 1.3rem
  }

  #main3_tab2 .txt_content {
    height: auto;
  }

  #main3_tab2 .tab2_tit p {
    font-size: 1.3rem;
  }

  #main3_tab2 > div p {
    font-size: 1rem;
    width: 100%;
  }

  /* 착한임대인 css */

  #main3_tab2 .kind_txt {
    flex-direction: column;
    text-align: center;
    padding: 30px;
  }

  #main3_tab2 .kind_txt > div h5 {
    font-size: 1.8rem;
  }

  #main3_tab2 .kind_txt > div p {
    font-size: 1.2rem;
  }

  #main3_tab2 .kind_txt img {
    margin-bottom: 0;
  }

  /* 연세살이 css */

  #main3_tab2 .yonsei_txt {
    width: 100%;
  }

  #main3_tab2 .yonsei_txt > div h5 {
    font-size: 1.8rem;
  }

  #main3_tab2 .yonsei_txt > div p {
    font-size: 1.2rem;
  }

  #main3_tab2 .yonsei_txt > div img {
    margin-top: 20px;
  }

  /* 렌탈페이 팁 */

  #main3_tab2 .rt_tip {
    width: 100%;
    gap: 30px;
  }

  #main3_tab2 .rt_tip h4 {
    font-size: 1.8rem;
  }

  #main3_tab2 .rt_tip h5 {
    font-size: 1.2rem;
    width: 80%;
  }
  #main3_tab2 .rt_tip p {
    font-size: 1.2rem;
  }

}

@media (max-width: 575px) {
  .main3_wrap {
    padding: 40px 0;
  }

  .main3_wrap .main3_tit p {
    font-size: 1rem;
  }

  .main3_wrap .main3_tit h3 {
    font-size: 1.6rem;
  }

  .main3_wrap .main3_tit h4 {
    font-size: 1rem;
  }

  .main3_tabnav {
    justify-content: flex-start;
  }

  .main3_tabnav li a {
    font-size: 1rem;
    padding: 15px;
  }

  #main3_tab1 .tab1_tit p {
    font-size: 1.1rem
  }

  #main3_tab2 .tab2_tit p {
    font-size: 1.1rem;
  }

  /* 착한임대인 css */

  #main3_tab2 .kind_txt > div h5 {
    font-size: 1.5rem;
  }

  #main3_tab2 .kind_txt > div p {
    font-size: 1rem;
  }

  /* 연세살이 css */

  #main3_tab2 .yonsei_txt {
    gap: 0px;
  }

  #main3_tab2 .yonsei_txt > div h5 {
    font-size: 1.5rem;
  }

  #main3_tab2 .yonsei_txt > div p {
    font-size: 1rem;
  }

  /* 렌탈페이 tip */

  #main3_tab2 .rt_tip {
    gap: 30px;
  }

  #main3_tab2 .rt_tip h4 {
    font-size: 1.5rem;
  }

  #main3_tab2 .rt_tip h5 {
    font-size: 1rem;
    width: 100%;
  }
  #main3_tab2 .rt_tip p {
    font-size: 0.9rem;
  }

}

@media (max-width: 375px) {
  #main3_tab1 .tab1_tit p,
  #main3_tab2 .tab2_tit p {
    font-size: 1rem;
  }
}
/* main3_wrap 끝 */

/* main4_wrap 시작 */

.main4_wrap {
  width: 100%;
  margin: 0px auto;
  background: var(--bg2);
  padding: 80px 30px;
  overflow: hidden;
  text-align: center;
}

.main4_wrap > div {
  max-width: 1120px;
  margin: 0 auto;
}


.main4_wrap .main4_tit p {
  border-radius: 50px;
  border: 1px solid var(--main-color);
  color: var(--main-color);
  padding: 10px 20px;
  display: inline-block;
  font-size: 22px;
}

.main4_wrap .main4_tit h3 {
  font-size: 38px;
  font-weight: 500;
  line-height: 1.3;
  margin: 10px 0;
  width: 560px;
  margin: 13px auto;
}

.main4_wrap .main4_tit h3 span {
  color: var(--main-color);
}

.main4_wrap .main4_tit h4 {
  font-size: 20px;
  font-weight: 300;
  line-height: 1.2;
  color: var(--black-text);
}


.main4_wrap .main4_txt {
  padding: 30px;
  border-radius: 20px;
  background: var(--white-text);
  display: flex;
  flex-direction: row;
  text-align: left;
  margin: 30px auto;
}

.main4_wrap .main4_txt div:first-child {
  width: calc(70%);
}

.main4_wrap .main4_txt h4 {
  font-size: 24px;
  font-weight: 500;
}

.main4_wrap .main4_txt a {
  font-size: 18px;
  font-weight: 300;
  margin-right: 10px;
  color: var(--gary-background40);
}

.main4_wrap .main4_txt h5 {
  font-size: 17px;
  font-weight: 700;
  color: var(--gary-background60);
  margin-bottom: 20px;
}

.main4_wrap .main4_txt p {
  font-size: 17px;
  font-weight: 400;
  color: var(--gary-background60);
  padding-right: 100px;
}

.main4_wrap .main4_txt p span {
  font-weight: 700;
}


.main4_wrap .main4_body {
  display: flex;
  background: var(--main-color);
  color: var(--white-text);
  padding: 40px;
  border-radius: 20px;
  align-items: center;
}


.main4_wrap .main4_body .main4_point {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
  justify-content: center;
  width: 55%;
}

.main4_wrap .main4_body .main4_point h5 {
  font-size: 32px;
  font-weight: 400;
  width: 80%;
  line-height: 1.3;
}

.main4_wrap .main4_body .main4_point h5 span {
  font-weight: 700;
}

.main4_wrap .main4_body .main4_point .counting_list {
  display: flex;
  gap: 10px;
  width: 100%;
}

.main4_wrap .main4_body .main4_point .counting_list > div {
  width: calc(50% - 10px);
}

.main4_wrap .main4_body .main4_point .counting_list p {
  font-size: 20px;
}

.main4_wrap .main4_body .main4_point .counting_list span {
  font-size: 60px;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 5px;
}

.main4_wrap .main4_body .main4_point .counting_list span::after {
  display: block;
  content: '개';
  font-weight: 400;
  font-size: 24px;
  margin-bottom: 10px;
}

.main4_wrap .main4_body .main4_point .counting_list .count_plus::after {
  display: block;
  content: '+';
  font-weight: 400;
  font-size: 32px;
  margin-bottom: 10px;
}

.main4_wrap .main4_body .rt_service {
  width: 100%;
}

.main4_wrap .main4_body .rt_service h6 {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 10px;
}

/* mou 리스트 부분 시작 */

.main4_wrap .main4_moulist {
  max-width: 1120px;
  position: relative;
  display: flex;
  align-items: center;
  margin: 30px auto 0;
  width: 100%;
  overflow: hidden;
  flex-direction: column;
  gap: 50px;
}

.main4_wrap .moulist-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  max-width: 1120px;
}

.main4_wrap .moulist {
  display: flex;
  gap: 10px;
  animation: scroll 35s linear infinite;
  width: max-content;
  position: relative;
}

.main4_wrap .moulist.moulist2 {
  display: flex;
  gap: 10px;
  animation: scroll2 50s linear infinite;
  width: max-content;
  margin-top: 10px;
}

.main4_wrap .moulist:hover {
  animation-play-state: paused;
}

.main4_wrap .moulist li {
  background: var(--white-text);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 13px 20px;
  border-radius: 10px;
  flex-shrink: 0;
  min-width: 140px;
}

.main4_wrap .moulist li img {
  max-width: 100px;
  width: 100%;
  height: auto;
}

.main4_wrap .moulist li img.length {
  max-width: 55px;
}

.main4_wrap .moulist-container::after {
    display: block;
    content: "";
    width: 150px;
    height: 100%;
    background: linear-gradient(to right, rgb(235, 249, 255) 20%, rgba(235, 249, 255, 0) 100%);
    position: absolute;
    top: 0;
    left: -30px;
    z-index: 9;
}

.main4_wrap .moulist-container::before {
    display: block;
    content: "";
    width: 150px;
    height: 100%;
    background: linear-gradient(to right, rgb(235, 249, 255, 0) 0%, rgba(235, 249, 255) 100%);
    position: absolute;
    top: 0;
    right: -30px;
    z-index: 9;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes scroll2 {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0%);
  }
}

/* mou 리스트 부분 끝 */

/* mou 리스트 부분 끝 */

@media (max-width: 1100px) {

  .main4_wrap .main4_txt {
    padding: 20px;
    border-radius: 15px;
  }

  .main4_wrap .main4_txt h4 {
    font-size: 22px;
  }

  .main4_wrap .main4_txt a {
    font-size: 16px;
  }

  .main4_wrap .main4_txt h5 {
    font-size: 15px;
  }

  .main4_wrap .main4_txt p {
    font-size: 15px;
    padding: 0;
  }
}

@media (max-width: 999px) {
  .main4_wrap .main4_body .main4_point h5 {
    width: 100%;
  }
}

@media (max-width: 899px) {
  .main4_wrap .main4_txt {
    gap: 10px;
  }

  .main4_wrap .main4_txt h4 {
    font-size: 20px;
  }

  .main4_wrap .main4_txt a {
    font-size: 16px;
  }

  .main4_wrap .main4_txt h5 {
    font-size: 14px;
  }

  .main4_wrap .main4_txt p {
    font-size: 14px;
  }

  .main4_wrap .main4_body .main4_point {
    width: 70%;
  }
}


@media (max-width: 767px) {
  .main4_wrap {
    width: 100%;
    padding: 50px 0px;
    border-radius: 0;
    margin: 0px auto;
  }

  .main4_wrap .main4_tit p {
    font-size: 1.2rem;
  }

  .main4_wrap .main4_tit h3 {
    font-size: 2.1rem;
  }

  .main4_wrap .main4_tit h4 {
    font-size: 1.2rem;
  }
  
  .main4_wrap .main4_txt {
    flex-direction: column;
    text-align: center;
    width: 92%;
  }

  .main4_wrap .main4_txt div:first-child {
    width: 100%;
  }

  .main4_wrap .main4_txt h4 {
    font-size: 1.4rem;
  }

  .main4_wrap .main4_txt h5 {
    font-size: 1.1rem;
    margin-bottom: 10px;
  }
  .main4_wrap .main4_txt p {
    font-size: 0.9rem;
    letter-spacing: -1px;
  }

  .main4_wrap .main4_body {
    border-radius: 0;
    flex-direction: column-reverse;
    gap: 60px;
  }

  .main4_wrap .main4_body .main4_point {
    width: 100%;
  }

  .main4_wrap .main4_body .main4_point h5 {
    font-size: 1.8rem;
  }

  .main4_wrap .main4_body .main4_point .counting_list p {
    font-size: 1.4rem;
  }

  .main4_wrap .main4_body .main4_point .counting_list span {
    font-size: 4rem;
  }

  .main4_wrap .main4_body .main4_point .counting_list span::after {
    font-size: 1.6rem;
  }

  .main4_wrap .main4_body .rt_service h6 {
    font-size: 1.4rem;
  }

  .main4_txt .kind_intro::after {
    /* width: 50px;
    height: 50px; */
    width: 15vw;
    height: 15vw;
    top: 20%;
  }

  .main4_wrap .moulist li {
    min-width: 120px;
    padding: 15px;
  }

  .main4_wrap .moulist li img {
    max-width: 80px;
  }

}

@media (max-width: 575px) {
  
  .main4_wrap .main4_tit {
    width: 92%;
  }

  .main4_wrap .main4_tit p {
    font-size: 1rem;
  }

  .main4_wrap .main4_tit h3 {
    font-size: 1.6rem;
    width: 100%;
  }

  .main4_wrap .main4_tit h4 {
    font-size: 1rem;
  }
  
   .main4_wrap .main4_txt h4 {
    font-size: 1.2rem;
  }

  .main4_wrap .main4_txt h5 {
    font-size: 1rem;
    margin-bottom: 10px;
  }
  .main4_wrap .main4_txt p {
    font-size: 1rem;
    letter-spacing: -1px;
  }

  .main4_txt {
    margin: 30px 0;
  }

  .main4_wrap .main4_body {
    gap: 40px;
    padding: 30px;
  }

  .main4_wrap .main4_body .main4_point h5 {
    font-size: 1.6rem;
  }

  .main4_wrap .main4_body .main4_point .counting_list p {
    font-size: 1.2rem;
  }

  .main4_wrap .main4_body .main4_point .counting_list span {
    font-size: 3rem;
  }

  .main4_wrap .main4_body .main4_point .counting_list span::after {
    font-size: 1.2rem;
  }

  .main4_wrap .main4_body .rt_service h6 {
    font-size: 1.2rem;
  }

  .main4_wrap .main4_moulist {
    gap: 30px;
  }

  .main4_wrap .moulist {
    gap: 10px
  }

}

@media (max-width: 375px) {

   .main4_wrap .main4_txt h5 {
      font-size: 1rem;
      margin-bottom: 10px;
    }
    .main4_wrap .main4_txt p {
      font-size: 0.8rem;
      letter-spacing: -1px;
    }

    .main4_wrap .main4_body .main4_point h5 {
      font-size: 1.4rem;
    }

    .main4_wrap .main4_body .main4_point .counting_list p {
      font-size: 1rem;
    }

    .main4_wrap .main4_body .main4_point .counting_list span {
      font-size: 2.5rem;
    }

    .main4_wrap .main4_body .main4_point .counting_list span::after {
      font-size: 1rem;
    }

    .main4_wrap .main4_body .rt_service h6 {
      font-size: 1rem;
    }

    .main4_wrap .moulist li {
      min-width: 100px;
      padding: 15px;
    }

    .main4_wrap .moulist li img {
      max-width: 60px;
    }

}

@media (max-width: 320px) {
  .main4_wrap .main4_body .main4_point .counting_list p {
      font-size: 0.9rem;
    }

}


/* main5_wrap 끝 */


/* main6_wrap 시작 */

.main6_wrap {
  display: flex;
  margin: 70px auto;
  width: 100%;
  gap: 20px;
  max-width: 1120px;
}

.main6_wrap .main6_txt > div {
  text-align: center;
  margin-bottom: 30px;
}

.main6_wrap .content_tit h3 {
  font-size: 38px;
  font-weight: 500;
}

.main6_wrap .content_tit a {
  font-size: 18px;
  color: var(--gary-background40);
  font-weight: 400;
}

.main6_wrap .main6_txt a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.main6_wrap .main6_txt a img {
  border-radius: 14px;
}

.main6_wrap .main6_txt {
  width: calc(100% - 0px);
}

.main6_wrap .main6_txt .news_content {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 15px;
  text-align: left;
}

.main6_wrap .main6_txt .news_content li {
  width: calc(33% - 10px);
  background: var(--white-text);
  border-radius: 15px;
  transition: 0.3s;
  border: 1px solid var(--gary-background20);
}

.main6_wrap .main6_txt .news_content li:hover {
  box-shadow: 0 0px 15px 0 rgba(0, 0, 0, 0.1), 0 0px 10px 0 rgba(0, 0, 0, 0.1);
}

.main6_wrap .main6_txt .news_content div {
  padding: 10px 15px 20px;
  display: flex;
  flex-wrap: wrap;
}

.main6_wrap .main6_txt .news_content div h6 {
  font-size: 18px;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.main6_wrap .main6_txt .news_content div h5 {
  display: flex;
  justify-content: space-between;
  width: 100%;
  font-size: 16px;
  color: var(--main-color);
  font-weight: 400;
}

.main6_wrap .main6_txt .news_content div span {
  color: var(--gary-background40);
}

@media (max-width: 1120px) {
  .main6_wrap {
    width: 92%;
  }

}

@media (max-width: 767px) {
  .main6_wrap {
    flex-wrap: wrap;
    flex-direction: column;
    margin: 20px auto;
  }

  .main6_wrap .main6_txt {
    width: 100%;
  }

  .main6_wrap .content_tit h3 {
    font-size: 2.1rem;
  }

  .main6_wrap .content_tit a {
    font-size: 1rem;
  }

  .main6_wrap .main6_txt .news_content div h6 {
    font-size: 1rem;
  }

  .main6_wrap .main6_txt .news_content div h5 {
    font-size: 0.9rem;
  }

  .main6_wrap .main6_txt .news_content li {
    width: calc(50% - 10px);
  }
}

@media (max-width: 575px) {
  .main6_wrap .main6_txt > .content_tit {
    margin-bottom: 15px;
  }

  .main6_wrap .content_tit h3 {
    font-size: 1.6rem;
  }

  .main6_wrap .main6_txt > .content_tit {
    padding: 10px 0;
  }

  .main6_wrap .content_tit a {
    font-size: 0.9rem;
  }

  .main6_wrap .main6_txt .news_content li {
    width: calc(100% - 0px);
  }
}

/* main6_wrap 끝 */

/* main7_wrap 시작 */

.main7_wrap {
  margin-top: 80px;
}

.main7_wrap .main7_tit2 {
  text-align: center;
}

.main7_wrap .main7_tit2 p {
  border-radius: 50px;
  border: 1px solid var(--main-color);
  color: var(--main-color);
  padding: 10px 20px;
  display: inline-block;
  font-size: 22px;
  margin-bottom: 10px;
}

.main7_wrap .main7_tit2 h3 {
  font-size: 38px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 10px;
}

.main7_wrap .main7_tit2 h4 {
  font-size: 20px;
  font-weight: 300;
  line-height: 1.2;
  color: var(--black-text);
}



.main7_wrap .main7_content {
  padding: 30px 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
}

.main7_wrap .main7_tit {
  background-image: url(../img/pages/index/main7_bg.png);
  background-size: cover;
  background-position: bottom;
  padding: 30px;
  border-radius: 20px;
  width: calc(55% - 20px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  letter-spacing: -2px;
  gap: 70px;
}

.main7_wrap .main7_tit h3 {
  font-size: 36px;
  line-height: 1.3;
}

.main7_wrap .main7_tit h3 span {
  color: #005b48;
}

.main7_wrap .main7_tit h4 {
  font-size: 24px;
  font-weight: 600;
  margin: 30px 0 10px;
}

.main7_wrap .main7_tit p {
  font-size: 18px;
  font-weight: 400;
  width: 300px;
}

.main7_wrap .main7_tit p span {
  font-weight: 600;
}

.main7_wrap .main7_tit a {
  background: #005b48;
  padding: 20px;
  border-radius: 20px;
  color: var(--white-text);
  text-align: center;
  font-size: 20px;
  font-weight: 500;
}

.main7_wrap .main7_tit a img {
  width: 30px;
  margin-left: 5px;
}

.main7_wrap .main7_txt {
  width: calc(45% - 0px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}

.main7_wrap .main7_txt div {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  background: var(--gary-background10);
  border-radius: 20px;
  padding: 20px;
  gap: 20px;
}

.main7_wrap .main7_txt div h5 {
  font-size: 22px;
  line-height: 1.3;
  font-weight: 600;
  text-align: center;
}

.main7_wrap .main7_txt div ul {
  display: flex;
  gap: 10px;
}

.main7_wrap .main7_txt div ul li {
  padding: 20px;
  background: var(--white-text);
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  height: 60px;
  display: flex;
}

.main7_wrap .main7_txt div ul li img {
  max-width: 100px;
  width: 100%;
}

@media (max-width: 1200px) {


  .main7_wrap .main7_tit a {
    font-size: 18px;
  }
}

@media (max-width: 1120px) {
  .main7_wrap {
    width: 92%;
    margin: 0 auto;
  }
}

@media (max-width: 767px) {

  .main7_wrap .main7_tit2 p {
    font-size: 1.2rem;
  }

  .main7_wrap .main7_tit2 h3 {
    font-size: 2.1rem;
  }

  .main7_wrap .main7_tit2 h4 {
    font-size: 1.2rem;
  }

  .main7_wrap .main7_content  {
    flex-direction: column;
    gap: 10px !important;
  }

  .main7_wrap .main7_tit {
    width: 100%;
    margin-bottom: 10px;
  }

  .main7_wrap .main7_tit h3 {
    font-size: 2.3rem;
  }

  .main7_wrap .main7_tit h4 {
    font-size: 1.5rem;
  }

  .main7_wrap .main7_tit p {
    font-size: 1.2rem;
  }

  .main7_wrap .main7_tit a {
    font-size: 1.2rem;
  }

  .main7_wrap .main7_txt {
    width: 100%;
    flex-direction: row;
    gap: 10px;
  }

  .main7_wrap .main7_txt div {
    width: calc(50% - 0px);
    gap: 15px;
  }

  .main7_wrap .main7_txt div h5 {
    font-size: 1rem;
  }

  .main7_wrap .main7_txt div ul {
    flex-direction: column;
  }

}

@media (max-width: 575px) {
  
  .main7_wrap .main7_tit2 p {
    font-size: 1rem;
  }

  .main7_wrap .main7_tit2 h3 {
    font-size: 1.6rem;
  }

  .main7_wrap .main7_tit2 h4 {
    font-size: 1rem;
  }
  
  .main7_wrap .main7_tit {
    justify-content: flex-end;
    padding: 15px;
    text-align: center;
    height: 350px;
    gap: 15px;
    background-image: url(../img/pages/index/main7_bg_mo.png);
  }

  .main7_wrap .main7_tit h3 {
    font-size: 1.5rem;
    display: inline;
  }

  .main7_wrap .main7_tit h4 {
    margin: 10px 0;
    font-size: 1.4rem;
  }

  .main7_wrap .main7_tit p {
    display: none;
  }

  .main7_wrap .main7_tit a {
    font-size: 1.2rem;
    border-radius: 10px;
  }

  .main7_wrap .main7_txt div {
    padding: 15px 10px;
  }

  .main7_wrap .main7_txt div h5 {
    font-size: 0.8rem;
  }

  .main7_wrap .main7_txt div ul li {
    padding: 10px;
    border-radius: 5px;
    height: auto;
  }


  .main7_wrap .main7_txt div ul li img {
    width: 15vw;
  }
}

@media (max-width: 375px) {
  .main7_wrap .main7_tit h3 {
    font-size: 1.4rem;
  }
  .main7_wrap .main7_tit h4 {
    font-size: 1.1rem;
  }

  .main7_wrap .main7_txt div {
    padding: 15px;
  }

}

@media (max-width: 320px) {
  .main7_wrap .main7_tit h3 {
    font-size: 1.4rem;
  }
  .main7_wrap .main7_tit h4 {
    font-size: 1.1rem;
  }

}

/* main7_wrap 끝 */

/* LG U+ 시작 */

.LGU_wrap {
  max-width: 1120px;
  margin: 0 auto;
  background: var(--gary-background5);
  border-radius: 20px;
}

.LGU_wrap .LGU_tit {
  padding: 20px 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--black-text);
  cursor: pointer;

}

.LGU_wrap .LGU_tit h2 {
  font-size: 36px;
  line-height: 1.2;
  font-weight: 600;
}

.LGU_wrap .LGU_tit p {
  font-size: 18px;
  font-weight: 300;
}

.LGU_wrap .LGU_tit p:nth-child(4) {
  margin-top: 10px;
}

.LGU_wrap .LGU_tit h6 {
  color: var(--gary-background40);
  font-size: 16px;
  font-weight: 300;
  margin-top: 5px;
}

/*모달 팝업 영역 스타일링*/
.LGU_wrap .LGU_txt {
	  display: none;
    position: fixed;
    top:0;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: rgba(0,0,0,0.5);
    z-index: 20;
}

.LGU_wrap .LGU_txt.on {
    display: block;
}

.LGU_wrap .LGU_txt .modal_popup {
/*팝업*/
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    background: var(--gary-background5);
    border-radius: 20px;
    max-width: 900px;
    width: 92%;
}

.LGU_wrap .LGU_txt .modal_popup .LGUclose_btn {
  width: 30px;
  height: 30px;
  float: right;
}

.LGU_wrap .LGU_txt .modal_popup .lg_benefit_header {
  text-align: center;
  clear: both;
}

.LGU_wrap .LGU_txt .modal_popup .lg_benefit_header h3 {
  font-size: 26px;
  font-weight: 500;
}

.LGU_wrap .LGU_txt .modal_popup .lg_benefit_header h4 {
  font-size: 16px;
  font-weight: 400;
  width: 450px;
  margin: 0 auto;
}

.LGU_wrap .LGU_txt .modal_popup .lg_benefit_header h6 {
  color: #194EFF;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  font-weight: 500;
  gap: 10px;
}

.LGU_wrap .LGU_txt .modal_popup .lg_benefit_header h6 p {
  background: #EEFBFE;
  padding: 5px 10px;
}

.LGU_wrap .LGU_txt .modal_popup .lg_benefit_header h6 p span {
  font-weight: 300;
}

.LGU_wrap .LGU_txt .modal_popup .lg_benefit_header a {
  display: inline-block;
  margin: 10px auto;
  background: var(--main-color);
  padding: 10px 20px;
  border-radius: 50px;
  color: var(--white-text);
  width: 100%;
  max-width: 200px;
  font-size: 18px;
  font-weight: 500;
}

.LGU_wrap .LGU_txt .modal_popup .lg_benefit_body {
  display: flex;
  flex-wrap: wrap;
  max-height: 500px;
  height: 100%;
  overflow-y: auto;
  margin: 20px auto
}

.LGU_wrap .LGU_txt .modal_popup .lg_benefit_body img {
  width: calc(50% - 0px);
}

.LGU_wrap .LGU_txt .modal_popup .lg_benefit_body p  {
  text-align: center;
  color: var(--gary-background40);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  width: 560px;
  margin: 0 auto;
}

@media (max-width: 1120px) {

  .LGU_wrap {
    width: 92%;
  }

  .LGU_wrap .LGU_tit {
    padding: 20px 40px;
  }
}

@media (max-width: 767px) {

  .LGU_wrap {
    width: 100%;
    border-radius: 0;
  }

  .LGU_wrap .LGU_tit {
    padding: 50px 30px;
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .LGU_wrap .LGU_tit h2 {
    font-size: 2.3rem;
  }

  .LGU_wrap .LGU_tit p {
    font-size: 1.2rem;
  }

  .LGU_wrap .LGU_tit h6 {
    font-size: 1.2rem;
  }

  .LGU_wrap .LGU_txt .modal_popup .lg_benefit_header h3 {
    font-size: 1.5rem;
  }

  .LGU_wrap .LGU_txt .modal_popup .lg_benefit_header h4 {
    font-size: 1rem;
    width: 100%;
  }

  .LGU_wrap .LGU_txt .modal_popup .lg_benefit_header h6 {
    font-size: 1rem;
    flex-direction: column;
    gap: 0px;
    margin-top: 10px;
  }

  .LGU_wrap .LGU_txt .modal_popup .lg_benefit_header h6 p {
    font-size: 0.9rem;
  }

  .LGU_wrap .LGU_txt .modal_popup .lg_benefit_header a {
    font-size: 1rem;
  }

  .LGU_wrap .LGU_txt .modal_popup .lg_benefit_body {
    max-height: 450px;
  }

  .LGU_wrap .LGU_txt .modal_popup .lg_benefit_body p  {
    font-size: 0.9rem;
    width: 100%;
  }
}

@media (max-width: 575px) {

  .LGU_wrap .LGU_tit h2 {
    font-size: 1.5rem;
  }

  .LGU_wrap .LGU_tit p {
    font-size: 1rem;
  }

  .LGU_wrap .LGU_tit h6 {
    font-size: 1rem;
  }

  .LGU_wrap .LGU_txt .modal_popup {
    overflow-x: auto;
    padding: 10px;
    height: 80%;
  }

  .LGU_wrap .LGU_txt .modal_popup .lg_benefit_header h3 {
    font-size: 1.3rem;
  }

  .LGU_wrap .LGU_txt .modal_popup .lg_benefit_header h4 {
    line-height: 1.2;
  }

  .LGU_wrap .LGU_txt .modal_popup .lg_benefit_header h6 p {
    width: 100%;
  }

  .LGU_wrap .LGU_txt .modal_popup .lg_benefit_header h6 p span {
    display: block;
  }

  .LGU_wrap .LGU_txt .modal_popup .lg_benefit_header a {
    max-width: 100%;
  }

  .LGU_wrap .LGU_txt .modal_popup .lg_benefit_body {
    height: 100%;
    margin: 10px auto;
  }

  .LGU_wrap .LGU_txt .modal_popup .lg_benefit_body img {
    width: calc(100% - 0px);
  }
}

@media (max-width: 425px) {

  .LGU_wrap .LGU_txt .modal_popup .lg_benefit_header h4 {
    font-size: 0.9rem;
  }

  .LGU_wrap .LGU_txt .modal_popup .lg_benefit_body p  {
    font-size: 0.8rem;
  }
}

@media (max-width: 325px) {
  .LGU_wrap .LGU_txt .modal_popup .lg_benefit_header h6 p span {
    font-size: 0.7rem;
  }

  .LGU_wrap .LGU_txt .modal_popup .lg_benefit_header h3 {
    font-size: 1.1rem;
  }
  .LGU_wrap .LGU_txt .modal_popup .lg_benefit_header h4 {
    font-size: 0.8rem;
  }

  .LGU_wrap .LGU_txt .modal_popup .lg_benefit_body p  {
    font-size: 0.8rem;
  }
}

/* LG U+ 끝 */

/* 무이자 할부 */

.card_wrap {
  max-width: 1120px;
  margin: 0px auto 60px;
}

/* main8_wrap 시작 */

.main8_wrap {
  background: var(--bg2);
  background-image: url(../img/pages/index/main8_bg.png);
  background-repeat: no-repeat;
  background-position: 75% 100%;
}

.main8_wrap .main8_content {
  max-width: 1120px;
  height: 660px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.main8_wrap .main8_tit {
  width: calc(40% - 20px);
}

.main8_wrap .main8_tit h3 {
  font-size: 34px;
  font-weight: 500;
}

.main8_wrap .main8_tit h5 {
  font-size: 24px;
  font-weight: 500;
}

.main8_wrap .main8_tit h6 {
  font-size: 24px;
  font-weight: 500;
  margin-top: -10px;
}


.main8_wrap .main8_tit h5 span {
  font-weight: 700;
  color: var(--main-color);
  line-height: 2;
}

.main8_wrap .main8_tit p {
  font-size: 18px;
  line-height: 1.5;
}

.main8_wrap .main8_tit span {
  font-weight: 700;
}

.main8_wrap .main8_tit div {
  display: flex;
  padding: 20px;
  background: var(--white-text);
  flex-direction: column;
  box-shadow: 0 0px 15px 0 rgba(0, 0, 0, 0.1), 0 0px 10px 0 rgba(0, 0, 0, 0.1);
  max-width: 300px;
  border-radius: 10px;
  align-items: center;
  margin-top: 40px;
}

.main8_wrap .main8_tit div img {
  max-width: 300px;
}

.main8_wrap .main8_txt {
  height: 100%;
  width: calc(60% - 20px);
  position: relative;
}

.main8_wrap .main8_txt p {
  padding: 10px 30px;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -1px;
  box-shadow: 0 0px 15px 0 rgba(0, 0, 0, 0.1), 0 0px 10px 0 rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(4px);
  border-radius: 5px;
  display: inline-block;
  position: absolute;
  background: rgba(255, 255, 255, 0.5);
}

.main8_wrap .main8_txt p.masin8_p1 {
  top: 220px;
  left: 80px;
}

.main8_wrap .main8_txt p.masin8_p2 {
  top: 300px;
  right: 120px;
}

.main8_wrap .main8_txt p.masin8_p3 {
  bottom: 120px;
  right: 150px;
}

@media (max-width: 1299px) {
  .main8_wrap {
    background-position: 100% 100%;
  }

  .main8_wrap .main8_txt p.masin8_p1 {
    left: 0;
  }
}

@media (max-width: 1120px) {

  .main8_wrap .main8_content {
    width: 92%;
  }
}

@media (max-width: 1099px) {

  .main8_wrap .main8_txt p.masin8_p1 {
    left: -100px;
  }
}

@media (max-width: 999px) {
  .main8_wrap {
    background-position: 7cm;
  }

  .main8_wrap .main8_tit,
  .main8_wrap .main8_txt {
    width: calc(50% - 20px);
  }

  .main8_wrap .main8_txt p {
    font-size: 1.2rem;
  }
}

@media (max-width: 999px) {
  .main8_wrap .main8_txt p {
    font-size: 1rem;
  }
}

@media (max-width: 767px) {
  .main8_wrap {
    background-position: center 4cm;
    position: relative;
    padding-top: 50px;
  }
  .main8_wrap .main8_content {
    flex-direction: column;
    justify-content: flex-start;
  }

  .main8_wrap .main8_tit {
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .main8_wrap .main8_tit h3 {
    font-size: 2.5rem;
  }

  .main8_wrap .main8_tit h5,
  .main8_wrap .main8_tit h6 {
    font-size: 1.8rem;
  }

  .main8_wrap .main8_tit p {
    font-size: 1.2rem;
  }

  .main8_wrap .main8_tit div {
    position: absolute;
    bottom: 30px;
    width: 92%;
    max-width: 100%;
    justify-content: center;
    flex-direction: row;
    gap: 20px;
  }

  .main8_wrap .main8_tit div a {
    width: calc(50% - 20px);
  }

  .main8_wrap .main8_tit div a img {
    width: 100%;
  }

  .main8_wrap .main8_txt {
    height: 50%;
    width: 100%;
  }

  .main8_wrap .main8_txt p {
    font-size: 1.2rem;
  }

  .main8_wrap .main8_txt p.masin8_p1 {
    top: 50px;
    left: 80px;
  }

  .main8_wrap .main8_txt p.masin8_p2 {
    top: 100px;
    right: 80px;
  }

  .main8_wrap .main8_txt p.masin8_p3 {
    bottom: 30px;
  }
}

@media (max-width: 575px) {
  .main8_wrap .main8_tit h3 {
    font-size: 2rem;
  }

  .main8_wrap .main8_tit h5,
  .main8_wrap .main8_tit h6 {
    font-size: 1.4rem;
  }

  .main8_wrap .main8_tit p {
    font-size: 1rem;
  }

  .main8_wrap .main8_txt p.masin8_p1 {
    top: 50px;
    left: 0px;
  }

  .main8_wrap .main8_txt p.masin8_p2 {
    top: 150px;
    right: 0px;
  }

  .main8_wrap .main8_txt p.masin8_p3 {
    bottom: 10px;
    right: 0%;
    transform: translate(-50%, 0%);
  }
}

@media (max-width: 375px) {
  .main8_wrap .main8_txt p.masin8_p3 {
    bottom: 10px;
    right: 0%;
    transform: translate(-20%, -0%);
  }
}

/* main9_wrap 시작 */

.main9_wrap .daypay_wrap {
  text-align: left;
  max-width: 1120px;
  margin: 30px auto 0;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
}

.main9_wrap .daypay_wrap .daypay_tit {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 10px;
}


.main9_wrap .daypay_wrap .daypay_tit h6 {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
}

.main9_wrap .daypay_wrap .daypay_tit h6 span {
  font-size: 16px;
  font-weight: 300;
}

.main9_wrap .daypay_wrap .daypay_tit > span {
  background: #FEEEEE;
  font-size: 14px;
  color: #FF6666;
  border-radius: 5px;
  text-align: center;
  padding: 5px 10px;
}


.main9_wrap .daypay_wrap .daypay_txt {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.main9_wrap .daypay_wrap p {
  font-size: 16px;
  font-weight: 400;
  padding: 10px 20px;
  border-radius: 10px;
  width: calc(50% - 10px);
  letter-spacing: -1px;
  background: var(--bg2);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.main9_wrap .daypay_wrap p:nth-child(4) {
  color: #0099ff;
  font-weight: 500;
}

.main9_wrap .daypay_wrap p::before {
  display: block;
  content: '';
  width: 100%;
  height: 30px;
  max-width: 30px;
  background-image: url(../img/common/icon/check_blue.svg);
  background-size: contain;
  background-repeat: no-repeat;
}

@media (max-width: 1120px) {
  .main9_wrap {
    width: 92%;
    margin: 0 auto;
  }
  
}

@media (max-width: 767px) {
  .main9_wrap {
    margin-bottom: 30px;
  }
  .main9_wrap .daypay_wrap .daypay_txt {
    flex-direction: column;
  }
  
  .main9_wrap .daypay_wrap .daypay_txt p {
    width: 100%;
    font-size: 1rem;
  }
}

@media (max-width: 575px) {

  .main9_wrap .daypay_wrap .daypay_tit > span {
    width: 100%;
    padding: 10px 5px;
    font-size: 0.9rem;
  }

  .main9_wrap .daypay_wrap .daypay_txt p {
    align-items: flex-start;
    padding: 20px 10px;
  }

  .main9_wrap .daypay_wrap p::before {
    max-width: 25px;
    height: 25px;
  }

  .main9_wrap .daypay_wrap .daypay_tit h6 {
    font-size: 1.2rem;
  }

  .main9_wrap .daypay_wrap .daypay_tit h6 span {
    font-size: 0.8rem;
  }
}

@media (max-width: 375px) {
   .main9_wrap .daypay_wrap .daypay_tit h6 {
    font-size: 1rem;
  }   
}


/* main9_wrap 끝 */

/* main8_wrap 끝 */

/* 공지팝업 시작 */
/* 
.notice_wrap {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.2);
    z-index: 99;
}

.notice_wrap .notice_img {
    position: absolute !important;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    max-width: 500px;
    width: 100%;
    width: 100%;
    text-align: center;
    display: flex;
    gap: 20px;
}


.notice_wrap .notice_img .notice_popup {
    
    width: calc(100% - 20px);
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    overflow: hidden;
}

#day_popup .notice_btn_wrap a:first-child {
    background: var(--deepblue-color500);
    color: var(--white-text);
}


.notice_wrap .notice_img .notice_btn_wrap {
    display: flex;
}


.notice_btn_wrap a {
    padding: 20px;
    color: var(--gary-background60);
    font-size: 20px;
    font-weight: 500;
    background: var(--gary-background20);
    transition: 0.3s;
    width: 100%;
    display: block;
    margin-top: -10px;
    letter-spacing: -1px;
}

.notice_btn_wrap a:hover {
    color: var(--white-text);
    background: var(--gary-background60);
} */

.popup_wrap {
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 99;
  display: none;
}

.popup_wrap .popup_img {
  max-width: 500px;
  position: absolute !important;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.popup_wrap .popup_info {
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  overflow: hidden;
}

.popup_wrap .popup_info img {
  border-radius: 10px;
}

.popup_wrap .popup_info .popup_btn {
  width: 100%;
  background: var(--deepblue-color500);
  color: var(--white-text);
  text-align: center;
  padding: 20px;
  margin-top: -10px;
  font-size: 20px;
  font-weight: 700;
}

.popup_wrap .popup_buttons {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.popup_wrap .popup_buttons button {
  color: var(--white-text);
  font-weight: 500;
  font-size: 18px;
  margin-top: 8px;
}

@media (max-width: 1100px) {
  /* .notice_wrap .notice_img  {
        width: 92%;
    }

    .notice_btn_wrap a {
        padding: 15px 0;
    } */

  .popup_wrap .popup_img {
    width: 92%;
  }
}

@media (max-width: 767px) {
  /* .notice_btn_wrap a {
        font-size: 1rem;
    } */
}

@media (max-width: 575px) {
  /* .notice_wrap .notice_img .notice_popup {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%,-50%);
        width: 100%;
    }

    .notice_btn_wrap a {
        padding: 10px;
        font-size: 1rem;
    } */
  .popup_wrap .popup_info .popup_btn {
    font-size: 1.2rem;
    padding: 15px;
  }

  .popup_wrap .popup_buttons button {
    font-size: 1rem;
  }
}

/* 공지팝업 끝 */
