
/* section1 --------------------------------------------------------------------------- */
#section1 {
  margin-top: 70px;
}

#section1 .speech_bubble {
  height: 300px;
  position: relative;
}

#section1 .speech_bubble .item {
  position: absolute;
}

#section1 .speech_bubble .item.item1 {
  top: 0;
  left: 37%;
}

#section1 .speech_bubble .item.item2 {
  top: 70px;
  left: 18%;
}

#section1 .speech_bubble .item.item3 {
  top: 140px;
  left: 42%;
}

#section1 .description {
  line-height: 1.5;
}

#section1 .description .section_desc {
  font-size: 24px;
}

#section1 .image_bubble {
  margin-top: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

#section1 .image_bubble i {
  font-size: 64px;
  color: #b5b5b5;
  margin-top: -150px;
}

#section1 .image_bubble .item {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

#section1 .image_bubble .item .desc {
  text-align: center;
  font-size: 26px;
  line-height: 1.5;
}

#section1 .image_bubble .item .desc .point {
  color: #d99c61;
  font-size: 40px;
  font-family: 'pretendardBold';
}

/* section2 ------------------------------------------------------------------------ */

#section2 .inner {
  display: flex;
  flex-direction: column;
  gap: 90px;
  padding: 0 20px;
}

#section2 .inner .item {
  display: flex;
  justify-content: space-between;
  text-align: left;
  line-height: 1.3;
}

#section2 .inner .item .content .number {
  color: #b5b5b5;
  font-size: 42px;
}

#section2 .inner .item .content .title {
  font-size: 42px;
}

#section2 .inner .item .content .desc {
  line-height: 1.5;
  color: #535353;
  font-size: 20px;
  font-family: 'pretendardLight';
  margin-top: 30px;
}

#section2 .inner .item .content .reservationBtn {
  width: 184px;
  height: 48px;
  position: relative;
  background-color: #fff;
  border: 1px solid #000;
  border-radius: 24px;
  font-size: 18px;
  font-family: 'PretendardMedium';
  margin-top: 50px;
  transition: all .2s linear;
  color: #000;
}

#section2 .inner .item .content .reservationBtn:hover {
  background-color: #d99c61;
  border: none;
  color: #fff;
}

#section2 .inner .item .img img {
  vertical-align: bottom;
}

/* 모바일 */

@media screen and (max-width: 768px) {
  #mainBanner {
    margin-top: 100px;
  }

  #section1 .speech_bubble .item.item1,
  #section1 .speech_bubble .item.item2,
  #section1 .speech_bubble .item.item3 {
    left: 50%;
    transform: translateX(-50%);
  }

  #section1 .speech_bubble .item img {
    height: 75px;
  }

  #section1 .speech_bubble .item.item2 {
    margin-top: -20px;
  }

  #section1 .speech_bubble {
    height: 220px;
  }

  #section1 .speech_bubble .item.item3 {
    margin-top: -40px;
  }

  #section1 .image_bubble {
    flex-direction: column;
    gap: 20px;
  }

  #section1 .image_bubble .item {
    flex-direction: row;
    width: 100%;
    gap: 30px;
    align-items: center;
    justify-content: center;
  }

  #section1 .description .section_desc {
    font-size: 16px;
  }

  #section1 .image_bubble .item img {
    width: 160px;
  }

  section .section_title {
    font-size: 34px;
    line-height: 1.3;
  }

  #section1 .image_bubble .item .desc {
    text-align: left;
    font-size: 16px;
  }

  #section1 .image_bubble .item .desc .point {
    font-size: 22px;
  }

  #section1 .image_bubble i {
    margin: 0;
  }

  #section2 .inner {
    padding: 0;
    gap: 50px;
  }

  #section2 .inner .item {
    flex-direction: column-reverse;
    gap: 30px;
  }

  #section2 .inner .item img {
    width: 100%;
  }

  #section2 .inner .item .content {
    padding: 0 20px;
  }

  #section2 .inner .item .content .number,
  #section2 .inner .item .content .title {
    font-size: 30px;
  }

  #section2 .inner .item .content .desc {
    font-size: 14px;
    margin-top: 15px;
  }

  #section2 .inner .item .content .reservationBtn {
    width: 140px;
    height: 35px;
    font-size: 16px;
    margin-top: 30px;
  }
}