#container{
  max-width: 100%;
}
.story_wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #d1a6b0;
  gap: 10px;
}
/* .story_wrap_inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 25px;
  height: 100%;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.story_wrap span {
  font-size: 30px;
  font-weight: 300;
  color: rgba(0, 0, 0, 0.5);
  line-height: 1;
  font-family: 'Montserrat';
}
.story_wrap h2 {
  font-size: 90px;
  font-weight: 900;
  color: #000;
  line-height: 1;
  text-align: center;
}
.story_wrap p {
  font-size: 16px;
  font-weight: 300;
  color: #000;
  line-height: 1;
  text-align: center;
  padding-top:8px;
} */


.content_tab_btn_container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.content_tab_btn_container .content_tab_btn {
  flex: 1;
  min-width: 0;
}
.content_swiper_navigation {
  display: flex;
  align-items: center;
  gap: 13px;
  flex-shrink: 0;
  margin-left: auto;

}
.content_swiper_navigation span {
  width: 1px;
  height: 23px;
  background: #dbdbdb;
  display: block;
}
.content_swiper_navigation .content_swiper_navigation_prev,
.content_swiper_navigation .content_swiper_navigation_next {
  position: static;
  margin: 0;
  cursor: pointer;
  width: fit-content;
  z-index: 9;
}
.content_swiper_navigation .content_swiper_navigation_prev::after,
.content_swiper_navigation .content_swiper_navigation_next::after {
  font-size: 19px;
  font-weight: 700;
  color: #000;
}
.content_swiper_navigation .swiper-button-disabled {
  opacity: 0.35;
  cursor: default;
}


.main_section {
  padding:100px 0 70px;
  overflow: hidden;
  border-bottom:1px solid #ebebeb;
}
.main_section .inner {
  display: flex;
  flex-direction: column;
  gap:19px;
  padding:0;
}
.section_title {
  display: flex;gap:12px;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.section_title h2 {
  font-size: 40px;
  font-weight: 800;
  color: #000;
}
.section_title a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.section_content {
  display: flex;
  flex-direction: column;
  gap:30px;
  width:100%;
}
.sub > .inner {
  padding:80px 0;
}
.success_story_list {
  width: 100%;
}
.success_story_list .success_story_swiper {
  width: 100%;
  overflow: hidden;
}
.success_story_list .swiper-slide {
  cursor: pointer;
  height: auto;
  width: 370px;
  flex-shrink: 0;
}
.success_story_list .swiper-slide img {
  width: 100%;
  height: 225px;
  object-fit: cover;
  border-radius: 20px;
  display: block;
}

/* 성공스토리 검색 필터 */
.story_filter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 30px;
}
.story_filter_cate {
  gap: 14px;
  width: 100%;
}
.story_filter_cate .swiper-wrapper {
  width: 100%;
}
.story_filter_cate .swiper-slide {
  width: fit-content;
  display: flex;
}
.story_filter_cate a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 93px;
  height: 45px;
  padding: 0 22px;
  border-radius: 999px;
  background: #f0f2f5;
  color: #555;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
  width: fit-content;
}
.story_filter_cate a:hover {
  background: #e8eaed;
  color: #333;
}
.story_filter_cate a.on {
  background: #ff6b6b;
  color: #fff;
  font-weight: 600;
}
.story_filter_select {
  position: relative;
  flex-shrink: 0;
  width: 200px;
}
.story_filter_select_btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 56px;
  padding: 0 21px;
  border: 1px solid #c8cdd7;
  border-radius: 10px;
  background: #fff;
  color: #546680;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  text-align: left;
}
.story_filter_select_btn span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.story_filter_select_btn::after {
  content: '';
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  margin-left: 8px;
  border-right: 1.5px solid #000;
  border-bottom: 1.5px solid #000;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 0.2s ease;
}
.story_filter_select.open .story_filter_select_btn::after {
  transform: translateY(2px) rotate(-135deg);
}
.story_filter_select_list {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 20;
  width: 100%;
  margin: 0;
  padding:20px 0;
  list-style: none;
  border: 1px solid #c8cdd7;
  border-radius: 10px;
  background: #fff;
}
.story_filter_select.open .story_filter_select_list {
  display: block;
}
.story_filter_select_list li {
  color: #546680;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  cursor: pointer;
  padding:0 21px;
}
.story_filter_select_list li:hover,
.story_filter_select_list li.on {
  font-weight: 700;
  color: #222;
}
.story_filter_native {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* 성공스토리 하단 배너 스와이프 */
.consult_form_container.consult_form_renew .inner{
  border-top:0;
}
.story_banner_container {
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 20px;
  padding: 0;
  overflow: hidden;
  max-width: 100%
}
.story_banner_swiper {
  width: 100%;
  overflow: visible;
}
.story_banner_swiper .swiper-slide {
  width: 1200px;
  max-width: calc(100vw - 120px);
  flex-shrink: 0;
  box-sizing: border-box;
}
.story_banner_swiper .swiper-slide a {
  display: block;
  width: 100%;
  overflow: hidden;
  border-radius: 20px;
}
.story_banner_swiper .swiper-slide img {
  display: block;
  width: 100%;
  height: auto;
}

/* 성공스토리 목록 그리드 */
#review_container .story_list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 70px 17px;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}
#review_container .story_list > li {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  cursor: pointer;
  border: 0;
  padding: 0;
  background: transparent;
}
#review_container .story_thumb {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 16px;
  aspect-ratio: 1 / 1.2;
  background: #f3f3f3;
}
#review_container .story_thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
#review_container .story_info {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}
#review_container .story_info .cate {
  color: #5d947e;
  font-size: 13px;
  font-weight: 400;
  line-height: 1;
}
#review_container .story_info .cate.exam {
  color: #fd6e3d;
}
#review_container .story_info .ttl {
  margin: 0;
  color: #111;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: -0.02em;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-break: keep-all;
}
#review_container .story_info .meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  margin: 0;
  color: #000000;
  font-size: 13px;
  font-weight: 300;
  line-height: 1;
}
#review_container .story_info .meta span + span::before {
  content: '';
  display: inline-block;
  width: 1px;
  height: 11px;
  margin: 0 8px;
  background: #dbdbdb;
  vertical-align: -1px;
}
#review_container .no_result {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}
#review_container .no_result p {
  color: #222;
  font-size: 16px;
}
.table_pagination {
  margin-top: 50px;
}










.about_beauty_story {
  width:100%
}
.about_beauty_story .inner {
  padding:110px 0 70px;
}
.about_beauty_story .inner .sub_page_story {
  width:100%;
}
.about_beauty_story .inner .sub_page_story .table_view_title {
  border-bottom:1px solid #000;
  padding-bottom:30px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.about_beauty_story .inner .sub_page_story .table_view_title h2{
  font-size:48px;font-weight:400;color:#000;line-height:1;
}
.about_beauty_story .inner .sub_page_story .table_view_title p{
  font-size:22px;font-weight:200;color:#5c6675;line-height:1;font-family: "Montserrat";
}
.table_thead {
  width:100%;
  padding:50px 0 40px;
  border-bottom:1px solid #e4e6ea;
  display: flex;
  flex-direction: column;
  gap:20px;
  text-align: left;
  justify-content: flex-start;
  align-items: flex-start;
}
.table_thead .table_th.flag_wrap h2{
  font-size:26px;font-weight:700;color:#000;line-height:1;
}
.table_thead .table_th, .table_thead .table_td{
  width: 100%;
  min-height: unset;
  padding:0;
}
.table_thead .table_td {
  display: flex;align-items: center;justify-content: flex-start;
  gap:8px;
}
.table_thead .table_td .line {
  width:1px;height: 16px;background: #dbdbdb;
}
.table_thead .table_td p{
  font-size:18px;font-weight:600;color:#000;line-height:1;
}
.table_thead .table_td p span{
  color: #5c6675;font-weight: 200;
}
.table_thead .table_td span.best{
  font-size:14px;font-weight:400;color:#fff;line-height:1;
  background: #63bdab;display: flex;align-items: center;justify-content: center;
  border-radius: 30px;min-width:72px;height:23px;padding:0 15px;
}
.table.view{
  width: 100%;
}
.table_view{
  padding: 50px 0 100px;
  width: 100%;
}
.table > li:first-of-type {
  border-top: 0;
  border-bottom:1px solid #e4e6ea;
}
.btn_wrap{
  margin-top:30px;
}
.btn_wrap .btn_min.default{
  font-size:16px;font-weight:600;color: #546680;
  background: #fff;
  border:1px solid #c8cdd7;
  width:139px;height:51px;
  display: flex;
  align-items: center;
  justify-content: center;
}





































@media all and (max-width: 1200px) {
  #container{
    max-width: 100%;
  }
  .story_wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #d1a6b0;
    gap: 0.8333vw;
    overflow: hidden;
  }
  .story_wrap img{
    max-width: 120%;
    margin-left:-10rem;
  }
  /* .story_wrap_inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 2.0833vw;
    height: 100%;
    width: 100%;
    max-width: 100.0000vw;
    padding: 0 1rem;
    margin: 0 auto;
  }
  .story_wrap span {
    font-size: 2.5000vw;
    font-weight: 300;
    color: rgba(0, 0, 0, 0.5);
    line-height: 1;
    font-family: 'Montserrat';
  }
  .story_wrap h2 {
    font-size: 7.5000vw;
    font-weight: 900;
    color: #000;
    line-height: 1;
    text-align: center;
  }
  .story_wrap p {
    font-size: 1.3333vw;
    font-weight: 300;
    color: #000;
    line-height: 1;
    text-align: center;
    padding-top:0.6667vw;
  } */
  
  
  .content_tab_btn_container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2.5000vw;
  }
  .content_tab_btn_container .content_tab_btn {
    flex: 1;
    min-width: 0;
  }
  .content_swiper_navigation {
    display: flex;
    align-items: center;
    gap: 1.0833vw;
    flex-shrink: 0;
    margin-left: auto;
  
  }
  .content_swiper_navigation span {
    width: 0.0833vw;
    height: 1.9167vw;
    background: #dbdbdb;
    display: block;
  }
  .content_swiper_navigation .content_swiper_navigation_prev,
  .content_swiper_navigation .content_swiper_navigation_next {
    position: static;
    margin: 0;
    cursor: pointer;
    width: fit-content;
    z-index: 9;
  }
  .content_swiper_navigation .content_swiper_navigation_prev::after,
  .content_swiper_navigation .content_swiper_navigation_next::after {
    font-size: 1.5833vw;
    font-weight: 700;
    color: #000;
  }
  .content_swiper_navigation .swiper-button-disabled {
    opacity: 0.35;
    cursor: default;
  }
  
  
  .main_section {
    padding:8.3333vw 0 5.8333vw;
    overflow: hidden;
  }
  .main_section .inner {
    display: flex;
    flex-direction: column;
    gap:1.5833vw;
    padding: 0 1rem;
  }
  .section_title {
    display: flex;gap:1.0000vw;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }
  .section_title h2 {
    font-size: 3.3333vw;
    font-weight: 800;
    color: #000;
  }
  .section_title a {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .section_content {
    display: flex;
    flex-direction: column;
    gap:2.5000vw;
    width:100%;
  }
  .sub > .inner {
    padding:6.6667vw 1rem;
  }
  .success_story_list {
    width: 100%;
  }
  .success_story_list .success_story_swiper {
    width: 100%;
    overflow: hidden;
  }
  .success_story_list .swiper-slide {
    cursor: pointer;
    height: auto;
    width: 30.8333vw;
    flex-shrink: 0;
  }
  .success_story_list .swiper-slide img {
    width: 100%;
    height: 18.7500vw;
    object-fit: cover;
    border-radius: 1.6667vw;
    display: block;
  }
  
  /* 성공스토리 검색 필터 */
  .story_filter {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.6667vw;
    margin-bottom: 2.5000vw;
  }
  .story_filter_cate {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.1667vw;
  }
  .story_filter_cate a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 7.7500vw;
    height: 3.7500vw;
    padding: 0 1.8333vw;
    border-radius: 83.2500vw;
    background: #f0f2f5;
    color: #555;
    font-size: 1.5000vw;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
  }
  .story_filter_cate a:hover {
    background: #e8eaed;
    color: #333;
  }
  .story_filter_cate a.on {
    background: #ff6b6b;
    color: #fff;
    font-weight: 600;
  }
  .story_filter_select {
    position: relative;
    flex-shrink: 0;
    width: 16.6667vw;
  }
  .story_filter_select_btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 4.6667vw;
    padding: 0 1.7500vw;
    border-radius: 0.8333vw;
    background: #fff;
    color: #546680;
    font-size: 1.3333vw;
    font-weight: 600;
    line-height: 1;
    cursor: pointer;
    text-align: left;
  }
  .story_filter_select_btn span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .story_filter_select_btn::after {
    content: '';
    flex-shrink: 0;
    width: 0.8333vw;
    height: 0.8333vw;
    margin-left: 0.6667vw;
    border-right: 0.1250vw solid #000;
    border-bottom: 0.1250vw solid #000;
    transform: translateY(-0.1667vw) rotate(45deg);
    transition: transform 0.2s ease;
  }
  .story_filter_select.open .story_filter_select_btn::after {
    transform: translateY(0.1667vw) rotate(-135deg);
  }
  .story_filter_select_list {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 20;
    width: 100%;
    margin: 0;
    padding:1.6667vw 0;
    list-style: none;
    border-radius: 0.8333vw;
    background: #fff;
  }
  .story_filter_select.open .story_filter_select_list {
    display: block;
  }
  .story_filter_select_list li {
    color: #546680;
    font-size: 1.3333vw;
    font-weight: 500;
    line-height: 2.0000vw;
    cursor: pointer;
    padding:0 1.7500vw;
  }
  .story_filter_select_list li:hover,
  .story_filter_select_list li.on {
    font-weight: 700;
    color: #222;
  }
  .story_filter_native {
    position: absolute;
    width: 0.0833vw;
    height: 0.0833vw;
    padding: 0;
    margin: -0.0833vw;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
  }
  
  /* 성공스토리 하단 배너 스와이프 */
  .consult_form_container.consult_form_renew .inner{
    border-top:0;
  }
  .story_banner_container {
    width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 1.6666vw;
    padding: 0;
    overflow: hidden;
    max-width: 100%
  }
  .story_banner_swiper {
    width: 100%;
    overflow: visible;
  }
  .story_banner_swiper .swiper-slide {
    width: 100.0000vw;
    max-width: calc(100vw - 10.0000vw);
    flex-shrink: 0;
    box-sizing: border-box;
  }
  .story_banner_swiper .swiper-slide a {
    display: block;
    width: 100%;
    overflow: hidden;
    border-radius: 1.6667vw;
  }
  .story_banner_swiper .swiper-slide img {
    display: block;
    width: 100%;
    height: auto;
  }
  
  /* 성공스토리 목록 그리드 */
  #review_container .story_list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 5.8333vw 1.4167vw;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
  }
  #review_container .story_list > li {
    display: flex;
    flex-direction: column;
    gap: 1.1667vw;
    width: 100%;
    cursor: pointer;
    border: 0;
    padding: 0;
    background: transparent;
  }
  #review_container .story_thumb {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 1.3333vw;
    aspect-ratio: 1 / 1.2;
    background: #f3f3f3;
  }
  #review_container .story_thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
  }
  #review_container .story_info {
    display: flex;
    flex-direction: column;
    gap: 0.5vw;
    min-width: 0;
  }
  #review_container .story_info .cate {
    color: #5d947e;
    font-size: 1.0833vw;
    font-weight: 400;
    line-height: 1;
  }
  #review_container .story_info .cate.exam {
    color: #fd6e3d;
  }
  #review_container .story_info .ttl {
    margin: 0;
    color: #111;
    font-size: 1.5000vw;
    font-weight: 900;
    line-height: 1.5
    letter-spacing: -0.02em;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: keep-all;
  }
  #review_container .story_info .meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0;
    margin: 0;
    color: #000000;
    font-size: 1.0833vw;
    font-weight: 300;
    line-height: 1;
  }
  #review_container .story_info .meta span + span::before {
    content: '';
    display: inline-block;
    width: 0.0833vw;
    height: 0.9167vw;
    margin: 0 0.6667vw;
    background: #dbdbdb;
    vertical-align: -0.0833vw;
  }
  #review_container .no_result {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 16.6667vw;
  }
  #review_container .no_result p {
    color: #222;
    font-size: 1.3333vw;
  }
  .table_pagination {
    margin-top: 4.1667vw;
  }





  .about_beauty_story {
    width:100%
  }
  .about_beauty_story .inner {
    padding:9.1666vw 1rem 5.8333vw;
  }
  .about_beauty_story .inner .sub_page_story {
    width:100%;
  }
  .about_beauty_story .inner .sub_page_story .table_view_title {
    border-bottom:1px solid #000;
    padding-bottom:2.5vw;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
  }
  .about_beauty_story .inner .sub_page_story .table_view_title h2{
    font-size:4vw;font-weight:400;color:#000;line-height:1;
  }
  .about_beauty_story .inner .sub_page_story .table_view_title p{
    font-size:1.8333vw;font-weight:200;color:#5c6675;line-height:1;font-family: "Montserrat";
  }
  .table_thead {
    width:100%;
    padding:4.1666vw 0 3.3333vw;
    border-bottom:1px solid #e4e6ea;
    display: flex;
    flex-direction: column;
    gap:1.6666vw;
    text-align: left;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .table_thead .table_th.flag_wrap h2{
    font-size:2.1666vw;font-weight:700;color:#000;line-height:1;
  }
  .table_thead .table_th, .table_thead .table_td{
    width: 100%;
    min-height: unset;
    padding:0;
  }
  .table_thead .table_td {
    display: flex;align-items: center;justify-content: flex-start;
    gap:0.6666vw;
  }
  .table_thead .table_td .line {
    width:1px;height: 1.3333vw;background: #dbdbdb;
  }
  .table_thead .table_td p{
    font-size:1.5vw;font-weight:600;color:#000;line-height:1;
  }
  .table_thead .table_td p span{
    color: #5c6675;font-weight: 200;
  }
  .table_thead .table_td span.best{
    font-size:1.1666vw;font-weight:400;color:#fff;line-height:1;
    background: #63bdab;display: flex;align-items: center;justify-content: center;
    border-radius: 2.5vw;min-width:6vw;height:1.9166vw;padding:0 1.25vw;
  }
  .table.view{
    width: 100%;
  }
  .table_view{
    padding: 4.1666vw 0 8.3333vw;
    width: 100%;
  }
  .table > li:first-of-type {
    border-top: 0;
    border-bottom:1px solid #e4e6ea;
  }
  .btn_wrap{
    margin-top:2.5vw;
  }
  .btn_wrap .btn_min.default{
    font-size:1.3333vw;font-weight:600;color: #546680;
    background: #fff;
    border:1px solid #c8cdd7;
    width:11.5833vw;height:4.25vw;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}




@media all and (max-width: 768px) {
  .sub > .inner {
    max-width: 93.7500vw;
    padding:13.0208vw 0;
  }
  .consult_form_container.consult_form_renew .inner {
    max-width: 93.7500vw;
  }
  /* 성공스토리 목록 그리드 */
#review_container .story_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 7.8125vw 3.5156vw;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}
#review_container .story_list > li {
  display: flex;
  flex-direction: column;
  gap: 3.9062vw;
  width: 100%;
  cursor: pointer;
  border: 0;
  padding: 0;
  background: transparent;
}
#review_container .story_thumb {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 2.0833vw;
  aspect-ratio: 1 / 1.2;
  background: #f3f3f3;
}
#review_container .story_thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
#review_container .story_info {
  display: flex;
  flex-direction: column;
  gap: 0.78125vw;
  min-width: 0;
}
#review_container .story_info .cate {
  color: #5d947e;
  font-size: 3.1250vw;
  font-weight: 400;
  line-height: 1;
}
#review_container .story_info .cate.exam {
  color: #fd6e3d;
}
#review_container .story_info .ttl {
  margin: 0;
  color: #111;
  font-size: 3.9063vw;
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: -0.02em;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-break: keep-all;
}
#review_container .story_info .meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  margin: 0;
  color: #000000;
  font-size: 2.8646vw;
  font-weight: 300;
  line-height: 1;
}
#review_container .story_info .meta span + span::before {
  content: '';
  display: inline-block;
  width: 0.1302vw;
  height: 2.4740vw;
  margin: 0 2.0833vw;
  background: #dbdbdb;
  vertical-align: -0.1302vw;
}
#review_container .no_result {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 26.0417vw;
}
#review_container .no_result p {
  color: #222;
  font-size: 2.0833vw;
}
.table_pagination {
  margin-top: 11.7188vw;
}

  .story_wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #d1a6b0;
    gap: 1.3021vw;
    width: 100%;
  } 
  .story_wrap img{
    width:100%;
    max-width: 100%;
    margin-left: 0;
  }
  #story_filter_select{
    display: none;
  }






  /* 성공스토리 검색 필터 */
.story_filter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  margin-bottom: 6.3802vw;
}
.story_filter_cate {
  gap: 0;
  width: 100%;
}
.story_filter_cate .swiper-wrapper {
  width: 100%;
}
.story_filter_cate {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
}
.story_filter_cate a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 15.3645vw;
  height: 8.5937vw;
  padding: 2.6051vw 4.8177vw;
  border-radius: 4.8177vw;
  background: #f0f2f5;
  color: #555;
  font-size: 3.3854vw;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}




/* 성공스토리 하단 배너 스와이프 */
.story_banner_container {
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 0;
  padding: 0;
  overflow: hidden;
  max-width: 100%;
  border-top:1px solid #ebebeb;
  padding:13.0208vw 0;
}
.story_banner_swiper {
  width: 100%;
  overflow: visible;
}
.story_banner_swiper .swiper-slide {
  width: 93.7500vw;
  max-width: 93.7500vw;
  flex-shrink: 0;
  box-sizing: border-box;
}
.story_banner_swiper .swiper-slide a {
  display: block;
  width: 100%;
  overflow: hidden;
  border-radius: 2.6042vw;
}
.story_banner_swiper .swiper-slide img {
  display: block;
  width: 100%;
  height: auto;
}


#container {
  overflow: hidden;
}
.main_section {
  padding:16.9270vw 0 13.0208vw;
  overflow: visible;
  border-bottom:1px solid #ebebeb;
  width: 100%;
}
.main_section .inner {
  display: flex;
  flex-direction: column;
  gap:5.2083vw;
  padding:0;
  max-width:92.1875vw;
}
.section_title {
  display: flex;gap:1.5625vw;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.section_title h2 {
  font-size: 5.2083vw;
  font-weight: 800;
  color: #000;
}
.section_title a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.section_content {
  display: flex;
  flex-direction: column;
  gap:30px;
  width:100%;
}

.success_story_list .success_story_swiper {
  width: 100%;
  overflow: visible;
}
.success_story_list .swiper-slide {
  cursor: pointer;
  height: auto;
  width: 90.7552vw;
  flex-shrink: 0;
}
.success_story_list .swiper-slide img {
  width: 100%;
  height: 53.7760vw;
  object-fit: cover;
  border-radius: 2.6041vw;
  display: block;
}






.about_beauty_story {
  width:100%
}
.about_beauty_story .inner {
  padding:110px 0 70px;
}
.about_beauty_story .inner .sub_page_story {
  width:100%;
}
.about_beauty_story .inner .sub_page_story .table_view_title {
  border-bottom:1px solid #000;
  padding-bottom:30px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.about_beauty_story .inner .sub_page_story .table_view_title h2{
  font-size:48px;font-weight:400;color:#000;line-height:1;
}
.about_beauty_story .inner .sub_page_story .table_view_title p{
  font-size:22px;font-weight:200;color:#5c6675;line-height:1;font-family: "Montserrat";
}
.table_thead {
  width:100%;
  padding:50px 0 40px;
  border-bottom:1px solid #e4e6ea;
  display: flex;
  flex-direction: column;
  gap:20px;
  text-align: left;
  justify-content: flex-start;
  align-items: flex-start;
}
.table_thead .table_th.flag_wrap h2{
  font-size:26px;font-weight:700;color:#000;line-height:1;
}
.table_thead .table_th, .table_thead .table_td{
  width: 100%;
  min-height: unset;
  padding:0;
}
.table_thead .table_td {
  display: flex;align-items: center;justify-content: flex-start;
  gap:8px;
}
.table_thead .table_td .line {
  width:1px;height: 16px;background: #dbdbdb;
}
.table_thead .table_td p{
  font-size:18px;font-weight:600;color:#000;line-height:1;
}
.table_thead .table_td p span{
  color: #5c6675;font-weight: 200;
}
.table_thead .table_td span.best{
  font-size:14px;font-weight:400;color:#fff;line-height:1;
  background: #63bdab;display: flex;align-items: center;justify-content: center;
  border-radius: 30px;min-width:72px;height:23px;padding:0 15px;
}
.table.view{
  width: 100%;
}
.table_view{
  padding: 50px 0 100px;
  width: 100%;
}
.table > li:first-of-type {
  border-top: 0;
  border-bottom:1px solid #e4e6ea;
}
.btn_wrap{
  margin-top:30px;
}
.btn_wrap .btn_min.default{
  font-size:16px;font-weight:600;color: #546680;
  background: #fff;
  border:1px solid #c8cdd7;
  width:139px;height:51px;
  display: flex;
  align-items: center;
  justify-content: center;
}





/*여기서 부터 작업*/
.about_beauty_story .story_banner_container {
  border:0;
}
.about_beauty_story {
  width:100%
}
.about_beauty_story .inner {
  padding:6.3802vw 0 0;
  max-width:100%;
}
.about_beauty_story .inner .sub_page_story {
  width:100%;
}
.about_beauty_story .inner .sub_page_story .table_view_title {
  border-bottom:1px solid #000;
  padding-bottom:5.0781vw;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.about_beauty_story .inner .sub_page_story .table_view_title h2{
  font-size:6.25vw;font-weight:800;color:#000;line-height:1;
}
.about_beauty_story .inner .sub_page_story .table_view_title p{
  display: none;
}
.table_thead {
  width:100%;
  max-width: 93.75vw;
  margin:0 auto;
  padding:7.8125vw 0 6.1197vw;
  border-bottom:1px solid #e4e6ea;
  display: flex;
  flex-direction: column;
  gap:3.7760vw;
  text-align: left;
  justify-content: flex-start;
  align-items: flex-start;
}
.table_thead .table_th.flag_wrap h2{
  font-size:4.9479vw;font-weight:700;color:#000;line-height:1;
}
.table_thead .table_th, .table_thead .table_td{
  width: 100%;
  min-height: unset;
  padding:0;
}
.table_thead .table_td {
  display: flex;align-items: center;justify-content: flex-start;
  gap:2.3437vw;
}
.table_thead .table_td .line {
  width:1px;height: 3.9062vw;background: #dbdbdb;
}
.table_thead .table_td p{
  font-size:4.4270vw;font-weight:600;color:#000;line-height:1;
}
.table_thead .table_td p span{
  color: #5c6675;font-weight: 200;
}
.table_thead .table_td span.best{
  font-size:3.3854vw;font-weight:400;color:#fff;line-height:1;
  background: #63bdab;display: flex;align-items: center;justify-content: center;
  border-radius: 3.9062vw;min-width:17.7083vw;height:5.5989vw;padding:0 2.6041vw;
}
.table.view{
  width: 100%;
}
.table_view{
  padding: 8.8541vw 0 8.3333vw;
  width: 100%;
}
.table > li:first-of-type {
  border-top: 0;
  border-bottom:1px solid #e4e6ea;
  padding:0 3.125vw;
}
.btn_wrap{
  margin-top:11.7187vw;
  max-width: 93.75vw;
  margin:0 auto;
  width:100%;
}
.btn_wrap .btn_min.default{
  font-size:3.3854vw;font-weight:600;color: #546680;
  background: #fff;
  border:1px solid #c8cdd7;
  width:100%;height:11.5885vw;
  display: flex;
  align-items: center;
  justify-content: center;
  width:100%;
}
.table.view .iframe {
  max-width:100%;
}
}