@import url("https://fonts.googleapis.com/css2?family=Nanum+Myeongjo&display=block");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+KR:wght@200..900&display=block");
/* ELLIPSIS */
/* / */
:root {
  --NotoSerif: "Noto Serif KR", serif;
}

#main {
  line-height: 1.5;
  color: #1c1508;
}

.mo_only {
  display: none;
}

.btn_wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}
.btn_wrap.left {
  justify-content: flex-start;
}
.btn_wrap.right {
  justify-content: flex-end;
}

.blur_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 13.5rem 29rem;
  border-radius: 2em;
  background-color: rgba(255, 255, 255, 0.15);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  transition: all 0.4s ease;
  font-size: 18rem;
}
.blur_btn:hover {
  background-color: rgb(255, 255, 255);
  color: #1c1508;
}

.more-btn {
  gap: 10rem;
  height: 22rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  position: relative;
}
.more-btn span {
  display: inline-block;
  position: relative;
  width: 47rem;
  height: 11rem;
  overflow: hidden;
}
.more-btn span:before {
  position: absolute;
  content: "";
  display: block;
  width: 47rem;
  height: 11rem;
  background: url("/images/main/more_icon.svg") no-repeat 0 0/47rem auto;
  transition: all 0.3s ease-in-out;
  transform: translateY(-150%);
}
.more-btn span:after {
  position: absolute;
  content: "";
  display: block;
  width: 47rem;
  height: 11rem;
  background: url("/images/main/more_icon.svg") no-repeat 0 0/47rem auto;
  transition: all 0.3s ease-in-out;
}
.more-btn .textover {
  overflow: hidden;
  font-size: 16rem;
}
.more-btn .textover > div {
  transition: all 0.3s ease;
  font-weight: 400;
  font-size: 16rem;
  text-shadow: 0 22rem 0 #1c1508;
  line-height: 22rem;
}
.more-btn.wh span:before {
  background-image: url("/images/main/more_icon_wh.svg");
}
.more-btn.wh span:after {
  background-image: url("/images/main/more_icon_wh.svg");
}
.more-btn.wh .textover {
  color: #fff;
}
.more-btn.wh .textover > div {
  text-shadow: 0 22rem 0 #fff;
}
.more-btn:hover span:before {
  transform: translate(0);
}
.more-btn:hover span:after {
  transform: translate(150%);
}
.more-btn:hover .textover > div {
  transform: translateY(-100%);
}

.more_btn {
  display: flex;
  align-items: center;
}
.more_btn .ico {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}
.more_btn .ico svg {
  width: 47rem;
}
.more_btn .txt {
  margin-left: 10rem;
}
.more_btn.wh {
  color: #fff;
}
.more_btn.wh .ico svg path {
  stroke: #fff;
}
.more_btn:hover .ico {
  transform: translateX(3rem);
}

.main_cont_txt .desc {
  font-size: 20rem;
  color: #635b4b;
  font-weight: 700;
}
.main_cont_txt .tit {
  margin-top: 20rem;
  font-size: 52rem;
  color: #fff;
  font-family: var(--NotoSerif);
  line-height: 1.3;
}
.main_cont_txt .txt {
  margin-top: 30rem;
  font-weight: 400;
  font-size: 18rem;
  line-height: 27rem;
  color: #fff;
}
.main_cont_txt.center {
  text-align: center;
}
.main_cont_txt.bk .tit {
  color: #1c1508;
}
.main_cont_txt.bk .txt {
  color: #484337;
}

.visual_sect {
  position: relative;
  height: 100vh;
}
.visual_sect .bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.visual_sect .bg:before {
  display: block;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.33);
}
.visual_sect .bg video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.visual_sect .tit_box {
  position: absolute;
  left: 50%;
  top: 300rem;
  transform: translate(-50%);
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  z-index: 2;
  font-size: 106rem;
  color: #fff;
}
.visual_sect .tit_box .tit {
  opacity: 0;
  transition: opacity 0.9s ease;
  transition-delay: 0.2s;
}
.visual_sect .tit_box .tit:last-of-type {
  transition-delay: 0.3s;
}
.visual_sect .tit_box .line {
  width: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.3);
  margin: 0 30rem;
  transition: width 1s ease-in-out;
  transition-delay: 0.8s;
}
.visual_sect .txt_box {
  position: absolute;
  left: 50%;
  bottom: 187rem;
  transform: translate(-50%, 10%);
  z-index: 2;
  color: #fff;
  text-align: center;
  opacity: 0;
  transition: opacity 0.5s ease, transform 0.8s ease;
  transition-delay: 1.5s;
}
.visual_sect .txt_box .btn_wrap {
  margin-top: 42rem;
}
.visual_sect .txt_box .txt {
  font-size: 20rem;
  line-height: 30rem;
}
.visual_sect .txt_box .txt b {
  font-weight: 700;
}
.visual_sect.active .tit {
  opacity: 1;
}
.visual_sect.active .line {
  width: 160rem;
}
.visual_sect.active .txt_box {
  opacity: 1;
  transform: translate(-50%, 0);
}

.why_sect {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.why_sect.active .bg_wrap:after {
  width: 0;
}
.why_sect .bg_wrap {
  position: relative;
  width: 50%;
  padding-top: 50%;
  transition: width 1s ease;
}
.why_sect .bg_wrap:after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #fbfaf6;
  z-index: 10;
  transition: width 1.5s;
  transition-delay: 0.3s;
}
.why_sect .bg_wrap::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 40rem);
  height: calc(100% - 40rem);
  border: 1px solid rgba(255, 255, 255, 0.3);
  z-index: 5;
}
.why_sect .bg_wrap .bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.why_sect .bg_wrap .bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.why_sect .bg_wrap .main_cont_txt {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  width: 640rem;
}
.why_sect .bg_wrap .main_cont_txt .tit {
  white-space: nowrap;
}
.why_sect .bg_wrap .main_cont_txt .txt {
  font-weight: 300;
  font-size: 18rem;
}
.why_sect .txt_wrap {
  width: 50%;
  padding: 0 200rem 0 0;
}
.why_sect .txt_wrap ul {
  margin-left: 93rem;
}
.why_sect .txt_wrap ul li:last-of-type {
  border-bottom: 0;
}
.why_sect .txt_wrap ul li {
  display: flex;
  align-items: flex-start;
  padding: 35rem 0;
  border-bottom: 1px solid rgba(99, 91, 75, 0.2);
  cursor: pointer;
}
.why_sect .txt_wrap ul li .num {
  font-size: 20rem;
  color: #635b4b;
  line-height: 1.3;
}
.why_sect .txt_wrap ul li .txt_box {
  margin-left: 61rem;
}
.why_sect .txt_wrap ul li .txt_box .tit {
  font-size: 22rem;
  line-height: 1.3;
}
.why_sect .txt_wrap ul li .txt_box .tit b {
  font-weight: 600;
}
.why_sect .txt_wrap ul li .txt_box .txt {
  display: none;
  margin-top: 15rem;
  font-size: 18rem;
  line-height: 150%;
  color: #484337;
}

.meet_sect {
  position: sticky;
  top: 0;
  padding: 200rem 0;
  background: url("/images/main/meet_bg.jpg") no-repeat center center/cover;
  z-index: 1;
}
.meet_sect .tit_wrap {
  position: relative;
  padding-left: 200rem;
  margin-bottom: -46rem;
  font-size: 150rem;
  line-height: 1;
  letter-spacing: -0.15em;
  z-index: 10;
}
.meet_sect .tit_wrap .tit {
  color: #231c16;
}
.meet_sect .tit_wrap .tit.wh {
  color: #fff;
  font-weight: 700;
}
.meet_sect .tit_wrap .tit span {
  display: inline-block;
  opacity: 0;
  transform: scale(1.2);
  filter: blur(10px);
  transition: opacity 1.5s, transform 1.5s;
}
.meet_sect .tit_wrap .tit span.on {
  animation: smokeEffect 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
.meet_sect .tit_wrap .tit span.space {
  margin-left: 0.3em;
}
@keyframes smokeEffect {
  0% {
    opacity: 0;
    filter: blur(10px);
    transform: translateY(0) scale(1);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0) scale(1);
  }
}
.meet_sect .profile_wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.meet_sect .profile_wrap .img_box {
  position: relative;
  width: 493rem;
}
.meet_sect .profile_wrap .img_box .img {
  position: relative;
}
.meet_sect .profile_wrap .img_box .img:before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 254rem;
  height: 100rem;
  background-color: #d2c3aa;
}
.meet_sect .profile_wrap .img_box .txt_box {
  position: absolute;
  left: -242rem;
  top: 92rem;
  transform: translate(-100%, 0);
  z-index: 10;
}
.meet_sect .profile_wrap .img_box .txt_box .txt {
  font-size: 18rem;
}
.meet_sect .profile_wrap .img_box .info_box {
  position: relative;
  width: 554rem;
  margin: -55rem 0 0 300rem;
  z-index: 10;
}
.meet_sect .profile_wrap .img_box .info_box .tit {
  font-size: 32rem;
  font-weight: 600;
  font-family: var(--NotoSerif);
}
.meet_sect .profile_wrap .img_box .info_box .tit b {
  font-weight: 900;
}
.meet_sect .profile_wrap .img_box .info_box ul {
  margin-top: 20rem;
  font-size: 20rem;
}
.meet_sect .profile_wrap .img_box .info_box .btn_wrap {
  margin-top: 50rem;
}

.card_sect_wrap {
  position: relative;
  z-index: 30;
}

.program_sect {
  padding: 200rem 0;
  background-color: #111;
}
.program_sect .main_cont_txt .txt {
  color: #aaa;
}
.program_sect .main_cont_txt .desc {
  color: #c7ad7b;
}
.program_sect .cont {
  margin-top: 150rem;
}
.program_sect .cont .pro_box + .pro_box {
  margin-top: 200rem;
}
.program_sect .cont .pro_box {
  display: flex;
  align-items: center;
}
.program_sect .cont .pro_box:nth-child(even) {
  flex-direction: row-reverse;
  justify-content: space-between;
}
.program_sect .cont .pro_box:nth-child(even) .txt_box {
  margin-left: 200rem;
}
.program_sect .cont .pro_box .img_wrap {
  width: 1066rem;
  overflow: hidden;
}
.program_sect .cont .pro_box .txt_box {
  margin-left: 166rem;
  color: #fff;
}
.program_sect .cont .pro_box .txt_box .tit {
  position: relative;
  font-size: 48rem;
  font-weight: 500;
  font-family: var(--NotoSerif);
}
.program_sect .cont .pro_box .txt_box .tit .num {
  position: absolute;
  left: 0;
  top: 0;
  transform: translate(-39%, -52%);
  font-size: 130rem;
  font-weight: 800;
  color: #413621;
}
.program_sect .cont .pro_box .txt_box .tit .tit_txt {
  position: relative;
  z-index: 5;
}
.program_sect .cont .pro_box .txt_box .txt {
  height: 81rem;
}
.program_sect .cont .pro_box .txt_box > .txt, .program_sect .cont .pro_box .txt_box .tab_txt_box {
  margin-top: 120rem;
  font-size: 18rem;
  color: #aaa;
}
.program_sect .cont .pro_box .txt_box .tab_txt_box {
  display: none;
}
.program_sect .cont .pro_box .txt_box .tab_txt_box.active {
  display: block;
}
.program_sect .cont .pro_box .txt_box .btn_wrap {
  margin-top: 50rem;
}
.program_sect .cont .pro_box .txt_box .tab_wrap {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: 40rem;
}
.program_sect .cont .pro_box .txt_box .tab_wrap .tab {
  position: relative;
  font-size: 20rem;
  color: #666;
  cursor: pointer;
}
.program_sect .cont .pro_box .txt_box .tab_wrap .tab + .tab {
  margin-left: 20rem;
}
.program_sect .cont .pro_box .txt_box .tab_wrap .tab:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10rem;
  display: inline-block;
  width: 0;
  border-bottom: 1px solid #aaa;
  transition: width 0.3s;
}
.program_sect .cont .pro_box .txt_box .tab_wrap .tab.active {
  color: #aaa;
}
.program_sect .cont .pro_box .txt_box .tab_wrap .tab.active:after {
  width: 100%;
}
.program_sect .cont .pro_box .txt_box .tab_wrap .tab:hover {
  color: #aaa;
}
.program_sect .cont .pro_box .txt_box .tab_wrap .tab:hover:after {
  width: 100%;
}

.flow_txt_wrap {
  display: flex;
  flex: 0 0 auto;
  white-space: nowrap;
  overflow: hidden;
  background-color: #fbfaf6;
  transition: 0.3s;
  font-weight: 700;
}
.flow_txt_wrap p {
  animation: textLoop 25s linear infinite;
  padding-right: 20rem;
  font-size: 120rem;
  line-height: 130%;
  color: rgba(229, 227, 217, 0.5);
}

@keyframes textLoop {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-100%, 0, 0);
  }
}
.clinic_sect {
  position: relative;
  padding-top: 100rem;
  background-color: #fbfaf6;
}
.clinic_sect .bg {
  position: absolute;
  left: 0;
  bottom: 0;
  transform: translateY(20%);
  width: 100%;
  pointer-events: none;
}
.clinic_sect .top_box {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.clinic_sect .cont {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 13rem;
  margin-top: 64rem;
}
.clinic_sect .cont .clinic_box {
  position: relative;
  width: 100%;
  padding-top: 68%;
  overflow: hidden;
}
.clinic_sect .cont .clinic_box .img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.clinic_sect .cont .clinic_box .img:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0);
  -webkit-backdrop-filter: blur(0);
          backdrop-filter: blur(0);
  transition: background-color 0.3s, -webkit-backdrop-filter 0.3s;
  transition: backdrop-filter 0.3s, background-color 0.3s;
  transition: backdrop-filter 0.3s, background-color 0.3s, -webkit-backdrop-filter 0.3s;
}
.clinic_sect .cont .clinic_box .txt_box {
  position: absolute;
  left: 0;
  bottom: 0;
  transform: translateY(calc(100% - 87rem));
  width: 100%;
  padding: 34rem;
  transition: transform 0.5s;
}
.clinic_sect .cont .clinic_box .txt_box .tit {
  font-size: 22rem;
  font-weight: 700;
  color: #fff;
}
.clinic_sect .cont .clinic_box .txt_box .txt {
  margin-top: 16rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 18rem;
}
.clinic_sect .cont .clinic_box:hover .img:before {
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
  background-color: rgba(0, 0, 0, 0.36);
}
.clinic_sect .cont .clinic_box:hover .txt_box {
  transform: translateY(0);
}

.review_sect {
  padding: 200rem 0 170rem;
  background-color: #fbfaf6;
}
.review_sect .top_box {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.review_sect .cont {
  margin-top: 60rem;
}
.review_sect .cont .review_box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30rem 44rem 30rem 19rem;
  border-top: 1px solid #dddad4;
  transition: background 0.3s;
}
.review_sect .cont .review_box:hover {
  background: rgba(99, 91, 75, 0.06);
}
.review_sect .cont .review_box .tit_box {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.review_sect .cont .review_box .tit_box .badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70rem;
  height: 30rem;
  margin-right: 27rem;
  font-size: 16rem;
  color: #fff;
  background-color: #7b6e66;
  flex-shrink: 0;
}
.review_sect .cont .review_box .tit_box .badge.best {
  background-color: #1c1508;
}
.review_sect .cont .review_box .tit_box .tit {
  width: 450rem;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  font-size: 22rem;
  font-weight: 600;
}
.review_sect .cont .review_box .txt {
  flex-shrink: 0;
  width: 45%;
  font-size: 18rem;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  color: #484337;
}

@media screen and (max-width: 1280px) {
  .mo_only {
    display: block;
  }
  .main_cont_txt .desc {
    font-size: 15rem;
  }
  .main_cont_txt .tit {
    font-size: 30rem;
    margin-top: 10rem;
  }
  .main_cont_txt .txt {
    font-size: 15rem;
    margin-top: 16rem;
  }
  .blur_btn {
    padding: 10rem 21.5rem;
    font-size: 15rem;
  }
  .more-btn .textover {
    font-size: 14rem;
  }
  .more-btn .textover > div {
    font-size: 14rem;
  }
  .visual_sect .tit_box {
    flex-direction: column;
    transform: translate(-50%, -95%);
    font-size: 44rem;
    top: 50%;
  }
  .visual_sect .tit_box .line {
    width: 2px;
    height: 0;
    transition: height 1s ease-in-out;
  }
  .visual_sect .txt_box {
    width: 100%;
    bottom: 76rem;
  }
  .visual_sect .txt_box .txt {
    font-size: 15rem;
    line-height: 22rem;
  }
  .visual_sect .txt_box .txt b {
    font-weight: 400;
  }
  .visual_sect .txt_box .btn_wrap {
    margin-top: 30rem;
  }
  .visual_sect.active .line {
    width: 2px;
    height: 85rem;
  }
  .why_sect {
    flex-direction: column;
  }
  .why_sect .bg_wrap {
    width: 100%;
    padding-top: 100%;
  }
  .why_sect .bg_wrap .main_cont_txt {
    width: 100%;
    padding: 0 20rem;
  }
  .why_sect .bg_wrap .main_cont_txt .txt {
    font-size: 15rem;
  }
  .why_sect .bg_wrap:after {
    transition-delay: 0s;
  }
  .why_sect .bg_wrap:before {
    display: none;
  }
  .why_sect .txt_wrap {
    width: 100%;
    padding: 60rem 20rem;
  }
  .why_sect .txt_wrap ul {
    margin-left: 0;
  }
  .why_sect .txt_wrap ul li {
    padding: 28rem 0;
  }
  .why_sect .txt_wrap ul li .num {
    font-size: 15rem;
  }
  .why_sect .txt_wrap ul li .txt_box {
    margin-left: 12rem;
  }
  .why_sect .txt_wrap ul li .txt_box .tit {
    font-size: 17rem;
  }
  .why_sect .txt_wrap ul li .txt_box .txt {
    display: block;
    font-size: 15rem;
    margin: 10rem 0 0;
  }
  .why_sect .txt_wrap ul li .txt_box .txt br:not(.mo_only) {
    display: none;
  }
  .card_sect_wrap {
    overflow: hidden;
  }
  .meet_sect {
    padding: 64rem 0 80rem;
  }
  .meet_sect .tit_wrap {
    padding-left: 20rem;
    margin-bottom: -22rem;
    font-size: 44rem;
    line-height: 1.2;
  }
  .meet_sect .tit_wrap .tit:first-of-type span.space {
    margin-left: 0;
  }
  .meet_sect .profile_wrap {
    padding: 0 20rem;
  }
  .meet_sect .profile_wrap .img_box {
    width: 100%;
  }
  .meet_sect .profile_wrap .img_box .img:before {
    display: none;
  }
  .meet_sect .profile_wrap .img_box .txt_box {
    position: relative;
    left: unset;
    top: unset;
    transform: unset;
    margin-top: 22rem;
  }
  .meet_sect .profile_wrap .img_box .txt_box .txt {
    font-size: 15rem;
  }
  .meet_sect .profile_wrap .img_box .txt_box .txt br:not(.mo_only) {
    display: none;
  }
  .meet_sect .profile_wrap .img_box .info_box {
    margin: 44rem 0 0;
    width: 100%;
  }
  .meet_sect .profile_wrap .img_box .info_box .tit {
    font-size: 24rem;
  }
  .meet_sect .profile_wrap .img_box .info_box .tit br:not(.mo_only) {
    display: none;
  }
  .meet_sect .profile_wrap .img_box .info_box ul {
    margin-top: 16rem;
    font-size: 15rem;
  }
  .meet_sect .profile_wrap .img_box .info_box ul li {
    text-indent: -0.7em;
    padding-left: 0.7em;
  }
  .meet_sect .profile_wrap .img_box .info_box .btn_wrap {
    justify-content: flex-end;
    margin-top: 44rem;
  }
  .program_sect {
    padding: 80rem 0;
  }
  .program_sect .main_cont_txt {
    padding: 0 20rem;
  }
  .program_sect .cont {
    margin-top: 60rem;
  }
  .program_sect .cont .pro_box {
    flex-direction: column;
    width: 100%;
    padding: 0 20rem;
  }
  .program_sect .cont .pro_box + .pro_box {
    margin-top: 80rem;
  }
  .program_sect .cont .pro_box:nth-child(even) {
    flex-direction: column;
  }
  .program_sect .cont .pro_box:nth-child(even) .txt_box {
    margin-left: 27rem;
  }
  .program_sect .cont .pro_box .img_wrap {
    width: 100%;
  }
  .program_sect .cont .pro_box .txt_box {
    margin-left: 27rem;
    margin-top: 46rem;
    width: 100%;
    padding-right: 13rem;
  }
  .program_sect .cont .pro_box .txt_box .tit {
    font-size: 28rem;
  }
  .program_sect .cont .pro_box .txt_box .tit .num {
    font-size: 50rem;
  }
  .program_sect .cont .pro_box .txt_box > .txt {
    margin-top: 16rem;
    font-size: 15rem;
  }
  .program_sect .cont .pro_box .txt_box > .txt br:not(.mo_only) {
    display: none;
  }
  .program_sect .cont .pro_box .txt_box .tab_txt_box {
    margin-top: 40rem;
    font-size: 15rem;
    margin-top: 19rem 0 0;
  }
  .program_sect .cont .pro_box .txt_box .tab_txt_box br:not(.mo_only) {
    display: none;
  }
  .program_sect .cont .pro_box .txt_box .tab_txt_box .txt {
    height: auto;
  }
  .program_sect .cont .pro_box .txt_box .btn_wrap {
    margin-top: 30rem;
    justify-content: flex-end;
  }
  .program_sect .cont .pro_box .txt_box .tab_wrap .tab {
    font-size: 15rem;
    line-height: 22rem;
  }
  .program_sect .cont .pro_box .txt_box .tab_wrap .tab:after {
    bottom: -3rem;
  }
  .flow_txt_wrap p {
    font-size: 50rem;
  }
  .clinic_sect {
    padding-top: 35rem;
  }
  .clinic_sect .bg {
    width: 150%;
    transform: translateY(30%);
  }
  .clinic_sect .top_box {
    flex-direction: column;
    align-items: start;
  }
  .clinic_sect .top_box .btn_wrap {
    margin-top: 20rem;
  }
  .clinic_sect .cont {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    margin-top: 30rem;
    gap: 10rem;
  }
  .clinic_sect .cont .clinic_box:hover .img:before {
    -webkit-backdrop-filter: unset;
            backdrop-filter: unset;
    background-color: rgba(0, 0, 0, 0.3);
  }
  .clinic_sect .cont .clinic_box .img:before {
    -webkit-backdrop-filter: unset;
            backdrop-filter: unset;
    background-color: rgba(0, 0, 0, 0.3);
  }
  .clinic_sect .cont .clinic_box .img:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 35%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 10;
  }
  .clinic_sect .cont .clinic_box .txt_box {
    transform: translateY(0);
    padding: 20px;
    z-index: 15;
  }
  .clinic_sect .cont .clinic_box .txt_box .tit {
    font-size: 17px;
  }
  .clinic_sect .cont .clinic_box .txt_box .txt {
    margin-top: 3px;
    font-size: 15px;
  }
  .clinic_sect .cont .clinic_box .txt_box .txt br:not(.mo_only) {
    display: none;
  }
  .review_sect {
    padding: 100rem 0 72rem;
  }
  .review_sect .top_box {
    flex-direction: column;
    align-items: start;
  }
  .review_sect .top_box .btn_wrap {
    margin-top: 20rem;
  }
  .review_sect .cont {
    margin-top: 30rem;
  }
  .review_sect .cont .review_box {
    flex-direction: column;
    align-items: flex-start;
    padding: 28rem 0;
  }
  .review_sect .cont .review_box .tit_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .review_sect .cont .review_box .tit_box .badge {
    width: 62rem;
    height: 26rem;
    font-size: 14px;
  }
  .review_sect .cont .review_box .tit_box .tit {
    margin-top: 10rem;
    font-size: 17px;
    width: 100%;
    display: -webkit-box;
    word-wrap: break-word;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: normal;
  }
  .review_sect .cont .review_box .txt {
    display: -webkit-box;
    word-wrap: break-word;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: normal;
    width: 100%;
    margin-top: 14rem;
    font-size: 15px;
  }
}
@media screen and (max-width: 400px) {
  .program_sect .cont .pro_box .txt_box .tab_txt_box .txt {
    height: 68rem;
  }
}/*# sourceMappingURL=main.css.map */

/*260309 ÇÏ´Ü ¾È³»¹®±¸ Ãß°¡*/
.btm_notice_wrap { padding-bottom: 40rem; background-color: #FBFAF6; }
.btm_notice_wrap .txt { color: #484337; font-size: 18rem; }

@media screen and (max-width: 1280px) { 
	.btm_notice_wrap { padding-bottom: 20rem; }
	.btm_notice_wrap .txt { font-size: 15rem; }
}
