@charset "UTF-8";
/*scss임, css에서 수정금지*/
main br,
#main_pop br {
  display: block;
}

@media (max-width: 576px) {
  main br,
  #main_pop br {
    display: none;
  }
}

p {
  word-break: keep-all;
}

img {
  max-width: 100%;
}

.service {
  padding: 100px 0;
}

.service h2 {
  text-align: center;
  font-size: 42px;
  color: #ceb5dd;
}

@media (max-width: 576px) {
  .service {
    padding: 70px 0;
  }
  .service h2 {
    font-size: 38px;
  }
}

.service__content {
  display: flex;
  justify-content: center;
  gap: 20px 16px;
  padding: 40px 0 55px;
  margin: 0 auto;
  background: no-repeat center bottom;
  background-image: url(/img/honey/bg_dot_line.png);
}

.service__content li {
  text-align: center;
}

.service__content li span {
  color: #ceb5dd;
  font-size: 14px;
}

.service__content li p {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 18px;
  width: 144px;
  height: 144px;
  font-size: 13px;
  background: #faf5fb;
  border-radius: 50%;
}

@media (max-width: 1200px) {
  .service__content {
    flex-wrap: wrap;
    max-width: 860px;
    background-size: 90% auto;
  }
  .service__content li p {
    width: 150px;
    height: 150px;
    margin-top: 10px;
  }
}

@media (max-width: 576px) {
  .service__content {
    gap: 20px 30px;
  }
}

@media (max-width: 440px) {
  .service__content {
    gap: 20px;
  }
  .service__content li p {
    width: 145px;
    height: 145px;
  }
}

.service__result {
  padding: 20px;
  font-size: 22px;
  font-weight: 500;
  color: #ceb5dd;
  text-align: center;
}

.brand {
  position: relative;
  background: no-repeat center;
  background-image: url(/img/honey/m_brand_bg.png);
  background-attachment: fixed;
}

.brand__logo {
  padding: 270px 0;
  margin: 0 auto;
  width: 100%;
  max-width: 980px;
  text-align: right;
}

@media (max-width: 991px) {
  .brand__logo {
    padding: 240px 0;
  }
}

@media (max-width: 768px) {
  .brand__logo {
    padding: 170px 0;
  }
}

@media (max-width: 576px) {
  .brand__logo {
    padding: 120px 0;
  }
}

#main_pop {
  position: absolute;
  transition: 0.3s;
  left: -100%;
  top: 0;
  z-index: 1000;
  width: 100%;
  min-height: 100vh;
  background: #f9f9f9;
  transition: 0.3s;
}

#main_pop.on {
  left: 0;
}

#main_pop h2 {
  padding: 90px 0 70px;
  font-size: 50px;
  font-weight: 700;
  color: #7e5995;
  text-align: center;
  word-break: keep-all;
}

@media (max-width: 769px) {
  #main_pop h2 {
    padding: 80px 0 60px;
    font-size: 40px;
  }
}

@media (max-width: 576px) {
  #main_pop h2 {
    padding: 60px 0 50px;
    font-size: 35px;
  }
}

@media (max-width: 400px) {
  #main_pop h2 {
    font-size: 28px;
    line-height: 1.2;
  }
}

#main_pop #tab_btn {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 0 auto 50px;
  width: 100%;
}

#main_pop #tab_btn li {
  flex: 1;
}

#main_pop #tab_btn li a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 10px;
  width: 100%;
  height: 60px;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 500;
  text-align: center;
  color: #fff;
  background: #ceb5dd;
  border-radius: 30px;
  word-break: keep-all;
}

#main_pop #tab_btn li a.on {
  font-weight: 700;
  background: #594589;
}

@media (max-width: 991px) {
  #main_pop #tab_btn li a {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  #main_pop #tab_btn {
    gap: 5px;
  }
  #main_pop #tab_btn li a {
    font-size: 18px;
    border-radius: 10px;
  }
}

@media (max-width: 576px) {
  #main_pop #tab_btn li a {
    font-size: 15px;
  }
}

@media (max-width: 440px) {
  #main_pop #tab_btn {
    gap: 10px;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  #main_pop #tab_btn li {
    flex: auto;
    width: 48%;
  }
  #main_pop #tab_btn li a {
    height: 52px;
  }
}

.main_pop__content_wrap {
  padding: 70px 10px;
  background: #fff;
  font-size: 20px;
  word-break: keep-all;
}

.main_pop__content_wrap .tab-content {
  margin: 0 auto;
  max-width: 1100px;
}

.main_pop__content_wrap .tab-content article {
  padding: 0 0 100px;
}

.main_pop__content_wrap .tab-content article .header h4 {
  padding: 0 0 50px;
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  color: #7e5995;
  word-break: keep-all;
}

@media (max-width: 991px) {
  .main_pop__content_wrap .tab-content article .header h4 {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .main_pop__content_wrap .tab-content article .header h4 {
    font-size: 28px;
  }
}

@media (max-width: 576px) {
  .main_pop__content_wrap .tab-content article .header h4 {
    padding: 0 0 40px;
    line-height: 1.2;
    font-size: 24px;
  }
}

.main_pop__content_wrap .tab-content article h5 {
  padding: 0 0 50px;
  font-size: 22px;
  font-weight: 700;
  color: #333;
  line-height: 1.5;
  text-align: center;
}

@media (max-width: 768px) {
  .main_pop__content_wrap .tab-content article h5 {
    font-size: 20px;
  }
}

@media (max-width: 576px) {
  .main_pop__content_wrap .tab-content article h5 {
    padding-bottom: 40px;
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .main_pop__content_wrap {
    font-size: 18px;
  }
}

@media (max-width: 576px) {
  .main_pop__content_wrap {
    font-size: 16px;
  }
}

.flex-col2 {
  gap: 30px;
}

.flex-col2 .img {
  flex: 1;
}

@media (max-width: 768px) {
  .flex-col2 {
    gap: 10px;
  }
}

@media (max-width: 576px) {
  .flex-col2 {
    flex-direction: column;
    gap: 20px;
  }
}

.btn-close {
  position: absolute;
  top: 47vh;
  right: 20px;
  background: transparent;
  border: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

@media (max-width: 1500px) {
  .btn-close {
    top: 30px;
    right: 10px;
  }
}

@media (max-width: 576px) {
  .btn-close {
    right: 5px;
    font-size: 16px;
  }
}

.btn-close .circle {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  color: #fff;
  font-size: 20px;
  background: #000;
  border-radius: 50%;
}

@media (max-width: 1500px) {
  .btn-close .circle {
    font-size: 18px;
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 576px) {
  .btn-close .circle {
    width: 32px;
    height: 32px;
  }
}

.btn-close .txt {
  padding-top: 10px;
  font-size: 15px;
}

@media (max-width: 1500px) {
  .btn-close .txt {
    display: none;
  }
}

#tab1 .art1 .p1 {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  color: #333;
  text-align: center;
}

@media (max-width: 576px) {
  #tab1 .art1 .p1 {
    font-size: 15px;
  }
}

#tab1 .art2 .p1 {
  text-align: center;
  font-weight: 700;
  color: #333;
  line-height: 1.2;
}

#tab1 .art2 .p1 span {
  display: block;
  padding-bottom: 15px;
}

#tab1 .art2 .p1 span b.pink {
  font-size: 25px;
  color: #7e5995;
}

@media (max-width: 768px) {
  #tab1 .art2 .p1 span b.pink {
    font-size: 22px;
  }
}

@media (max-width: 576px) {
  #tab1 .art2 .p1 span b.pink {
    font-size: 20px;
  }
}

#tab2 .header {
  text-align: center;
}

#tab2 .header p {
  margin: -20px 0 45px;
}

@media (max-width: 991px) {
  #tab2 .header p {
    margin: -20px 0 40px;
  }
}

@media (max-width: 768px) {
  #tab2 .header p {
    margin: -20px 0 30px;
  }
}

@media (max-width: 576px) {
  #tab2 .header p {
    margin: -30px 0 20px;
  }
}

#tab2 h5 {
  font-size: 30px;
  font-weight: 700;
  color: #7e5995;
}

@media (max-width: 991px) {
  #tab2 h5 {
    font-size: 26px;
  }
}

@media (max-width: 768px) {
  #tab2 h5 {
    font-size: 24px;
  }
}

@media (max-width: 576px) {
  #tab2 h5 {
    font-size: 20px;
  }
}

#tab2 .art1 li {
  margin-bottom: 30px;
}

#tab2 .art1 li .flex {
  justify-content: left;
  align-items: center;
  gap: 20px;
}

#tab2 .art1 li .flex .img {
  width: 131px;
}

#tab2 .art1 li .flex .txt {
  flex: 1;
}

#tab2 .art1 li .flex .txt .p1 {
  padding-bottom: 20px;
  font-size: 30px;
  color: #7e5995;
  line-height: 1;
  font-weight: 700;
}

#tab2 .art1 li .flex .txt span {
  font-size: 18px;
  font-weight: 500;
  word-break: keep-all;
}

#tab2 .art1 li:last-of-type {
  margin-bottom: 0;
}

@media (max-width: 991px) {
  #tab2 .art1 li .flex .txt .p1 {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  #tab2 .art1 li .flex .img {
    width: 100px;
  }
  #tab2 .art1 li .flex .txt .p1 {
    padding-bottom: 10px;
    font-size: 22px;
  }
  #tab2 .art1 li .flex .txt span {
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  #tab2 .art1 li .flex {
    align-items: flex-start;
  }
  #tab2 .art1 li .flex .img {
    width: 70px;
  }
  #tab2 .art1 li .flex .txt .p1 {
    padding-bottom: 4px;
    font-size: 18px;
    line-height: 1.4;
  }
  #tab2 .art1 li .flex .txt span {
    font-size: 15px;
  }
}

@media (max-width: 440px) {
  #tab2 .art1 li {
    margin-bottom: 20px;
  }
  #tab2 .art1 li .flex {
    gap: 10px;
    align-items: flex-start;
  }
  #tab2 .art1 li .flex .img {
    width: 46px;
  }
}

#tab3 article .flex {
  gap: 20px;
}

#tab3 article .flex .left {
  flex: 1;
}

#tab3 article .flex .left .tit {
  font-size: 30px;
  font-weight: 700;
  color: #7e5995;
  line-height: 1;
}

#tab3 article .flex .left .p1 {
  padding: 10px 0 40px;
  font-size: 20px;
  font-weight: 500;
}

#tab3 article .flex .left dl {
  display: flex;
  gap: 10px 0;
  flex-wrap: wrap;
  font-size: 16px;
}

#tab3 article .flex .left dl dt {
  font-weight: 700;
  width: 140px;
}

#tab3 article .flex .left dl dd {
  width: calc(100% - 140px);
}

@media (max-width: 1200px) {
  #tab3 article .flex .left {
    flex: auto;
    width: 50%;
  }
}

@media (max-width: 991px) {
  #tab3 article .flex {
    flex-direction: column;
    gap: 30px;
  }
  #tab3 article .flex .left {
    width: 70%;
  }
  #tab3 article .flex .left .tit {
    font-size: 28px;
  }
  #tab3 article .flex .left .p1 {
    padding: 10px 0 25px;
    font-size: 18px;
  }
  #tab3 article .flex .left {
    width: 100%;
  }
  #tab3 article .flex .right {
    text-align: center;
  }
}

@media (max-width: 576px) {
  #tab3 article .flex .left .tit {
    font-size: 24px;
  }
  #tab3 article .flex .left .p1 {
    font-size: 16px;
  }
  #tab3 article .flex .left dl {
    gap: 5px 0;
    font-size: 15px;
  }
  #tab3 article .flex .left dl dt {
    width: 100%;
  }
  #tab3 article .flex .left dl dd {
    padding-bottom: 10px;
    width: 100%;
  }
  #tab3 article .flex .left dl dd:last-of-type {
    padding-bottom: 0;
  }
  #tab3 article .flex .right {
    text-align: center;
  }
}

#tab3 .art1 .flex .left .p2,
#tab3 .art1 .flex .left .p3 {
  font-size: 16px;
  font-weight: 500;
}

#tab3 .art1 .flex .left .p2 b,
#tab3 .art1 .flex .left .p3 b {
  font-weight: 500;
  color: #7e5995;
}

@media (max-width: 991px) {
  #tab3 .art1 .flex .left .p2,
  #tab3 .art1 .flex .left .p3 {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  #tab3 .art1 .flex .left .p2 b br,
  #tab3 .art1 .flex .left .p3 b br {
    display: none;
  }
}

#tab3 .art1 .flex .left .p2 {
  padding: 40px 0 20px;
}

@media (max-width: 991px) {
  #tab3 .art1 .flex .left .p2 {
    padding: 25px 0 15px;
  }
}

#tab3 .art2 .right p {
  padding: 20px 0 0;
  font-size: 20px;
  font-weight: 500;
  text-align: center;
}

#tab3 .result {
  display: flex;
  padding: 30px;
  margin: 50px 0 0;
  gap: 25px;
  background: #f9f9f9;
}

#tab3 .result caption {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 300px;
  color: #fff;
  font-size: 20px;
  background: #874ea9;
}

#tab3 .result tbody {
  flex: 1;
}

#tab3 .result tbody tr {
  display: block;
  padding: 3px 15px;
  margin-bottom: 6px;
  font-size: 15px;
  border: 1px solid #d9d9d9;
  background: #fff;
}

#tab3 .result tbody tr th {
  padding-left: 17px;
  width: 155px;
  font-weight: 500;
  background: url(/img/honey/ico_check.png) no-repeat left center;
}

#tab3 .result tbody tr td {
  font-weight: 500;
  color: #874ea9;
}

#tab3 .result tbody tr:last-of-type {
  margin-bottom: 0;
}

@media (max-width: 991px) {
  #tab3 .result caption {
    width: 240px;
  }
}

@media (max-width: 768px) {
  #tab3 .result caption {
    width: 180px;
  }
}

@media (max-width: 576px) {
  #tab3 .result {
    flex-direction: column;
    gap: 20px;
    padding: 30px 20px;
    margin: 40px 0 0;
  }
  #tab3 .result caption {
    padding: 8px 0;
    width: 100%;
    font-size: 18px;
  }
  #tab3 .result tbody tr {
    padding: 5px 15px;
  }
}

@media (max-width: 420px) {
  #tab3 .result {
    padding: 30px 10px;
  }
  #tab3 .result tbody tr {
    padding: 5px 10px;
    font-size: 14px;
  }
  #tab3 .result tbody tr th {
    padding-left: 0;
    width: 110px;
    background: none;
  }
}

#tab3 .art3 .left .img {
  padding-top: 35px;
}

#tab3 .art3 .right .wrap {
  display: flex;
  gap: 20px;
  justify-content: space-between;
}

#tab3 .art3 .right .wrap .box p {
  padding-bottom: 10px;
  text-align: center;
  font-size: 16px;
  line-height: 1;
}

#tab3 .art3 .right .wrap .box.after p {
  font-weight: 700;
  color: #7e5995;
}

@media (max-width: 500px) {
  #tab3 .art3 .right .wrap {
    flex-direction: column;
  }
}

#tab3 .art3 .right .p1 {
  padding: 0 10px;
  margin: 0 auto;
  max-width: 600px;
  padding-top: 25px;
  font-size: 16px;
}

@media (max-width: 991px) {
  #tab3 .art3 .right .p1 {
    font-size: 15px;
  }
}

button:focus {
 outline:none;
}

/*scss임, css에서 수정금지*/
/*# sourceMappingURL=main.css.map */
