/* 230102 서영 */
@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css');

/* 공통 */
html {
  font-size: 62.5%;
  font-family: 'Pretendard';
  overflow-x:hidden;
}

body, h1, h2, h3, h4, h5, h6{
  font-family: 'Pretendard';
  overflow-x:hidden;
}

::selection {
  color: #fff;
  background-color: #425BA8;
}

.inner{
  max-width:1280px;
  margin: 0 auto;
  box-sizing:border-box;
  padding:0 20px;
}

.wrap_top{
  padding-top: 100px;
}

.flex_box{
  display: flex;
}

.pc_none{
  display: none;
}

.mo_none{
  display: block;
}

.page_title{
  text-align:center;
  margin-top: 10rem;
}

.page_title h4{
  font-size: 4rem;
  font-weight: 700;
  color: #141414;
}

.page_title .sub_title{
  font-size: 2rem;
  color: #4B4B4B;
  margin-top: 8rem;
  line-height: 2.7rem;
}

/* 헤더 header */
#header {
  width:100%;
  background: #fff;
  text-align:center;
  box-sizing:border-box;
  position: fixed;
  z-index: 99;
  height: 100px;
  transition: 0.3s;
}

#header .dep_wrap{
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  max-width:1280px;
  padding: 0 20px;
  margin: 0 auto;
  box-sizing:border-box;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
}

#header .dep_wrap .logo {
  height: 100%;
  width: 19rem;
  display: block;
  background:url(../img/logo.svg) no-repeat;
  background-size: 100% auto;
  background-position: center;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
}

#header .dep_wrap .logo img {
  width: 100%;
}

#header .dep_wrap .dep1{
  display: flex;
  align-items: center;
  height: 100%;
}

#header .dep_wrap .dep1 > li{
  margin-right: 4rem;
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

#header .dep_wrap .dep1 > li:last-child{
  margin-right: 0;
}

#header .dep_wrap .dep1 > li a{
  font-size: 1.7rem;
  font-weight: 500;
  color: #4B4B4B;
  padding: 10px 0;
}

#header .dep_wrap .dep1 > li a:hover{
  color: #2990D0;
}


#header .dep_wrap .dep1 > li:hover .dep2{
  display: block;
}

#header .dep_wrap .dep1 .dep2{
  position: absolute;
  top: 100px;
  left: 0;
  width: 100%;
  display: none;
}

#header .dep_wrap .dep1 .dep2 li{
  background: #fff;
  padding: 2px 0;
}

#header .dep_wrap .dep1 .dep2 li a{
  color: #4B4B4B;
  font-size: 1.2rem;
  font-weight: 500;
  text-align: center;
  width: 100%;
  height: 100%;
  display: block;
}

#header .dep_wrap .dep1 .dep2 li a:hover{
  color: #2990D0;
}

/* 모바일 헤더 (햄버거) */
#mo_header {
  display: none;
}

#mo_header .header{
  background: #fff;
  position: fixed;
  top:0;
  left: 0;
  width: 100%;
  height: 60px;
  z-index: 9;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#mo_header .header .logo{
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

#mo_header .header .logo img{
  width: 145px;
}

#mo_header .header .slide_open{
  position:absolute;
  top:0;
  right:0;
  width:60px;
  height:60px;
  cursor:pointer;
}

#mo_header .header .burgur{
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translate(0%,-50%);
  position: absolute;
  width: 20px;
  height: 2px;
  background: #000000;
  transition: 0.1s;
  transition: background .2s ease-out;
}

#mo_header .header .burgur .top_line{
  width: 20px;
  height: 2px;
  background-color: #000000;
  top:-6px;
  position: absolute;
  right: 0;
  -webkit-transition:  -webkit-transform .3s;
  transition: transform .3s;
  transition: all .2s ease-out;
}

#mo_header .header .burgur .bot_line {
  width: 20px;
  height: 2px;
  background-color: #000000;
  top: 6px;
  position: absolute;
  right: 0;
  -webkit-transition:  -webkit-transform .3s;
  transition: transform .3s;
  transition: all .2s ease-out;
}

#mo_header .header .burgur.on {
  width: 0;
}

#mo_header .header .burgur.on .bot_line {
  /* -webkit-transform: translateY(5px) rotate(135deg);
  transform: translateY(5px) rotate(135deg); */
  transform: rotate(45deg);
  top: 0;
}

#mo_header .header .burgur.on .top_line{
  /* -webkit-transform: translateY(-5px) rotate(-135deg);
  transform: translateY(-5px) rotate(-135deg); */
  transform: rotate(-45deg);
  top:0;
}

#mo_header .right_side_bar{
  width:100%;
  height: 100%;
  position:fixed;
  right:-100%;
  top:50px;
  -webkit-transition: right .3s;
  -moz-transition: right .3s;
  -ms-transition: right .3s;
  -o-transition: right .3s;
  transition: right .3s;
  background-color:#fff;
  z-index: 99;
}

#mo_header .right_side_bar.on{
  right:0;
}

#mo_header .right_side_bar .dep1{
  margin-top: 9vw;
}

#mo_header .right_side_bar .dep1 > li{
  cursor: pointer;
}

#mo_header .right_side_bar .dep1 > li > a,
#mo_header .right_side_bar .dep1 > li .title_div a{
  font-size: 20px;
  font-weight: 600;
  padding:15px 15px 15px 40px;
  display: block;
}

#mo_header .right_side_bar .dep1 > li .title_div{
  display: flex;
  align-items: center;
  padding-right: 40px;
  box-sizing: border-box;
}

#mo_header .right_side_bar .dep1 > li .title_div img{
  transition: all 0.3s ease-in-out;
  width: 12px;
}

#mo_header .right_side_bar .dep1 > li.active .title_div img{
  transform: rotate(180deg);
}

#mo_header .right_side_bar .dep2{
  padding:10px 40px;
  display:none;
  transition: top .3s;
}

#mo_header .right_side_bar .dep2 li{
  padding:10px 0;
}

#mo_header .right_side_bar .dep2 li a{
  font-size: 16px;
  font-weight: 500;
  color: #4B4B4B;
  cursor: pointer;
}

#mo_header .right_side_bar .dep2 li a:hover{
  color: #020202;
  font-weight: 700;
}

#mo_header .right_side_bar .dep1 > li.active .dep2 {
  display:block;
}

#mo_header .sns{
  display: flex;
  padding: 60px 40px 0;
}

#mo_header .sns a {
  font-size: 15px;
  font-weight: 600;
  color: #757575;
}

#mo_header .sns a:first-child {
  padding-right: 9px;
  margin-right: 9px;
  position: relative;
}

#mo_header .sns a:first-child::after {
  display: block;
  content: "";
  clear: both;
  width: 1px;
  height: 70%;
  background: #c7c7c7;
  position: absolute;
  top: 50%;
  right: 0%;
  transform: translate(0%,-50%);
  z-index: -1;
}

/* 고정 버튼 */
.fix_btn_box{
  position: fixed;
  right: 30px;
  bottom: 40px;
  z-index: 98;
  transition: 0.1s;
}

#btn_faq, #btn_flo, #btn_top {
  width: 62px;
  height: 62px;
  display: block;
  margin:0 auto;
  margin-top: 10px;
}

#btn_top img, #btn_faq img, #btn_flo img{
  width: 100%;
  height: 100%;
}

/* 푸터 tail */
#footer{
  background: #2D2D2D;
  margin-top: 150px;
  width: 100%;
  padding:4.5rem 0;
}

#footer .inner{
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

#footer .left{
  display: flex;
}

#footer .left .logo{
  width: 17rem;
  display: block;
  margin-right: 7rem;
}

#footer .left .logo img{
  width: 100%;
}

#footer p{
  font-size: 1.4rem;
  font-weight: 400;
  color: #C0C0C0;
  margin-right:15px;
  margin-bottom: 5px;
}

#footer p span{
  font-weight: 700;
}

#footer .copyright{
  font-size: 1.2rem;
  color: #757575;
  margin-bottom: 0;
  margin-top: 20px;
}

/* 페이지 배너 */
#page_banner{
  width: 100%;
  height: 41.7rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
}

#page_banner .bg_img{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  filter: brightness(0.6);
}

#page_banner .pro_bar{
  display: flex;
  align-items: center;
  justify-content: center;
}

#page_banner .pro_bar .home_img{
  width: 1.6rem;
}

#page_banner .pro_bar p{
  font-size: 1.8rem;
  color: #fff;
  margin-left: 10px;
}

#page_banner .pro_bar p .arrow{
  width: 0.6rem;
}

#page_banner .title{
  font-size: 5rem;
  font-weight: 700;
  color: #fff;
  margin:3rem 0;
}

#page_banner .sub_title{
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
}

/* 메인 index */
#main .main_swiper .swiper-slide{
  width: 100%;
  height: calc(100vh - 6rem);
  position: relative;
}

#main .main_swiper .swiper-slide .main_img{
  width: 100%;
  height: 101%;
  filter: brightness(0.4);
  object-fit: cover;
}

#main .main_swiper .swiper-slide .main_img_txt{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  color: #fff;
  text-align: center;
  width: 100%;
}

#main .main_swiper .swiper-slide .main_img_txt h6{
  font-size: 5.5rem;
  font-weight: 600;
  margin-bottom: 2rem;
  line-height: 8.5rem;
}

#main .main_swiper .swiper-slide .main_img_txt p{
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 3.5rem;
}

.swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction{
  bottom: 50px;
}

.main_swiper .swiper-pagination-bullet{
  background: #fff;
}

#main .sec01 {
  margin-top: 15rem;
}

#main .sec01 .title{
  font-size: 3.6rem;
  font-weight: 400;
  line-height: 6rem;
  color: #141414;
  text-align: center;
}

#main .sec01 .title span{
  font-weight: 700;
  color: #3D5EAA;
}

#main .sec01 .main_ca_list{
  display: flex;
  flex-wrap: wrap;
  margin:0 auto;
  margin-top: 10rem;
  max-width: 1280px;
  padding: 0 20px;
  box-sizing: border-box;
}

#main .sec01 .main_ca_list li{
  width: calc(100% / 4);
  height: 46rem;
  transition: 0.3s;
  overflow: hidden;
}

#main .sec01 .main_ca_list li:hover{
  margin-top: -30px;
}

#main .sec01 .main_ca_list li a{
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
}

#main .sec01 .main_ca_list li a .ca_img{
  width: 101%;
  height: 100%;
  object-fit: cover;
}

#main .sec01 .main_ca_list li a .text_box{
  position: absolute;
  bottom:0;
  left: 0;
  position: absolute;
  color: #fff;
  transition: 0.3s;
  padding: 2.5rem;
  width: 100%;
}

#main .sec01 .main_ca_list li:nth-child(1) a .text_box{
  background: linear-gradient(to bottom, #1C1C1C00 0%, #43799f 55%);
}

#main .sec01 .main_ca_list li:nth-child(2) a .text_box{
  background: linear-gradient(to bottom, #1C1C1C00 0%, #98917f 55%);
}

#main .sec01 .main_ca_list li:nth-child(3) a .text_box{
  background: linear-gradient(to bottom, #1C1C1C00 0%, #a2a5a8 55%);
}

#main .sec01 .main_ca_list li:nth-child(4) a .text_box{
  background: linear-gradient(to bottom, #1C1C1C00 0%, #424d60 55%);
}

#main .sec01 .main_ca_list li a .text_box .tit{
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

#main .sec01 .main_ca_list li a .text_box .sub{
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 12px;
  line-height: 2.2rem;
}

#main .sec01 .main_ca_list li a .text_box .go{
  font-size: 1.4rem;
  display: flex;
  align-items: center;
}

#main .sec01 .main_ca_list li a .text_box .go img{
  margin-left: 7px;
}

#main .page_title .sub_title.main_branch_sub{
  margin-top: 2.5rem;
  font-size: 1.8rem;
}

#main .main_change{
  width: 100%;
  background:url(../img/main_change_bg.png) no-repeat;
  background-size: cover;
  background-position: center;
  padding: 10rem 0;
  margin-top: 12rem;
}

#main .main_change .page_title{
  margin-top: 0;
}

#main .main_change .page_title h4{
  margin-top: 0;
  color: #fff;
  text-transform:uppercase;
  text-align: left;
}

#main .main_change .page_title .sub_title{
  text-align: left;
  color: #fff;
  margin-top: 2rem;
  color: #D0D0D0;
}

#main .main_change .go_change{
  font-size: 1.7rem;
  font-weight: 500;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.6rem;
  box-sizing: border-box;
  background: #15264F;
  border-radius: 50px;
  cursor: pointer;
  margin-top: 7.5rem;
  position: relative;
  z-index: 2;
}

#main .main_branch{
  padding: 11rem 0;
  box-sizing: border-box;
  background:url(../img/main_branch_bg.png) no-repeat;
  background-size: cover;
  background-position: center;
}

#main .main_branch .page_title{
  margin-top: 0;
}

/********************************게시판*********************************/
#bo_v_top ul{
  margin:0 !important;
}

.btn_bo_user li{
  margin-left: 0 !important;
  cursor: pointer;
}

.btn_bo_user li a{
  padding: 0 !important;
  display: inline-block;
}

.btn_bo_user img{
  width: 80% !important;
}

a.btn, .btn{
  padding: 0 !important;
}

.chk_box input[type="checkbox"] + label span{
  width: 2.5rem;
  height: 2.5rem;
  position: absolute;
  top: 10px;
  left: 10px;
  display: block;
  background: #fff;
  border: 1px solid #d0d4df;
  border-radius: 3px;
}

.chk_box input[type="checkbox"]:checked + label span{
  background-size: 70% !important;
}

.btn_bo_user img{
  width: 100%;
}

#fwrite{
  margin-top: 6rem;
}

#bo_w .bo_w_select select{
  background: #FAF9F9;
  height: 50px;
  width: 100%;
  border:none;
  padding:10px 15px;
  font-size: 15px;
  font-weight: 500;
  font-family: 'Noto Sans KR', sans-serif;
  border-radius: 0;
  box-shadow: none;
  -webkit-appearance:none; /* 그림자 */
  appearance:none;
  outline:none;
}

.wr_content textarea, .tbl_frm01 textarea, .form_01 textarea, .frm_input{
  background: #fff;
  border:1px solid #D8D8D8;
  height: 50px;
  width: 100%;
  padding:10px 15px;
  font-size: 15px;
  font-weight: 400;
  font-family: 'Noto Sans KR', sans-serif;
  border-radius: 0;
  box-shadow: none;
  -webkit-appearance:none; /* 그림자 */
  appearance:none;
  outline:none;
}

input::placeholder{
  color:#4B4B4B;
}

textarea::placeholder{
  color:#4B4B4B;
}

#bo_w .bo_w_flie .file_wr{
  background: #FAF9F9;
  height: 50px;
  width: 100%;
  border:none;
  padding:10px 15px;
  font-size: 15px;
  font-weight: 500;
  font-family: 'Noto Sans KR', sans-serif;
  border-radius: 0;
  box-shadow: none;
  -webkit-appearance:none; /* 그림자 */
  appearance:none;
  outline:none;
}

#bo_w .bo_w_flie .frm_file{
  font-size: 15px;
  font-weight: 400;
  font-family: 'Noto Sans KR', sans-serif;
  color: #4B4B4B;
}

#bo_w .bo_w_link i{
  font-size: 15px;
}

#bo_w .bo_w_link label{
  top: 50% !important;
  left: 25px !important;
  transform: translate(-50%,-50%);
}

#bo_w .bo_w_flie .lb_icon{
  top: 50% !important;
  left: 23px !important;
  transform: translate(-50%,-50%);
}


#bo_w .btn_confirm{
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 4rem !important;
}

#bo_w .btn_cancel, #bo_w .btn_submit{
  width: 160px;
  height: 45px;
  border-radius: 0px!important;
  font-size: 1.7rem !important;
  font-weight: 700;
  padding:0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  margin:0 7px;
  font-family: 'Noto Sans KR', sans-serif;
}

#bo_w .btn_cancel{
  border: 1px solid #4C4A49;
  color: #4C4A49;
  background: #fff;
}

#bo_w .btn_submit{
  background: #425BA8;
}

#bo_btn_top{
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#bo_list_total{
  font-size: 1.7rem;
  color: #000;
}

a.btn_frmline, button.btn_frmline{
  background: #999;
}

.search_input_box{
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: auto !important;
  margin-top: 6rem;
}

.search_input_box form{
  border-bottom: 1px solid #000;
}

.search_input_box input{
  height: 40px;
  border:0;
  padding:0 7px;
  width: 200px;
  font-size: 1.5rem;

}

.search_input_box input::placeholder{
  font-size: 1.5rem;
  color: #000;
}

.go_list_box{
  display: flex;
  justify-content: center;
}

.go_list_btn{
  width: 124px;
  height: 44px !important;
  background: #fff !important;
  color: #141414 !important;
  font-size: 16px !important;
  display: flex !important;
  border:1px solid #dedede !important;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
}

.tit_input_box{
  margin-bottom: 30px;
}

.tit_input_box p{
  font-size: 1.7rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.tit_input_box p span{
  font-size: 1.5rem;
  color: #727272;
  display: block;
  font-weight: 500;
  margin-top: 8px;
}

/* intro 필라테스클리닉은? */
#intro{
  position: relative;
}

#intro .content_box{
  position: relative;
  margin-top: 15rem;
}

#intro .content_box .animated_bg{
  font-size: 10rem;
  color: #CAD0D433;
  font-weight: 700;
  position: absolute;
  top:-11rem;
  left: 0;
  z-index: -1;
  width: 100%;
  max-width: 100%;
  height: 10rem;
  overflow:hidden;
}

#intro .content_box .animated_bg .track {
  position: absolute;
  white-space: nowrap;
  will-change: transform;
  animation: marquee 40s linear infinite;
  width: 100%;
  height: 100%;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

#intro .content_box .intro_txt_box{
  display: flex;
  /* align-items: flex-end; */
}

#intro .content_box .intro_txt_box .ceo_img{
  width: 47rem;
  height: 68rem;
  object-fit: cover;
  flex-shrink: 0;
  margin-right: 5rem;
}

#intro .content_box .intro_txt_box .intro_txt{
  position: relative;
  width: calc(100% - 47rem - 7.5rem);
  /* height: 61rem; */
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  margin-top: 12rem;
}

#intro .content_box .intro_txt_box .intro_txt > img{
  margin-bottom: 10px;
}

#intro .content_box .intro_txt_box .intro_txt .title{
  font-size: 4rem;
  font-weight: 600;
  line-height: 5.8rem;
  margin-bottom: 3rem;
  margin-top: 3px;
  color: #141414;
}

#intro .content_box .intro_txt_box .intro_txt .con_txt{
  font-size: 2rem;
  color: #4B4B4B;
  line-height: 3.3rem;
  z-index: 1;
}

#intro .content_box .intro_txt_box .intro_txt .con_txt span{
  font-size: 2.4rem;
  font-weight: 600;
  color:#141414;
  margin-left: 3px;
}

#intro .content_box .intro_txt_box .intro_txt::after{
  display: block;
  content: "";
  clear: both;
  width: 85rem;
  height: 105%;
  border: 5px solid #FAFAFA;
  position: absolute;
  top: -2.5rem;
  left: -10rem;
}

/* program 수업 프로그램 */
#program_tab{
  width: 100%;
  height: 60px;
  border-bottom: 1px solid #DDDDDD;
}

#program_tab .tab_list{
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

#program_tab .tab_list li{
  width: calc(100% / 3);
  text-align: center;
}

#program_tab .tab_list li a{
  display: inline-block;
  font-size: 18px;
  color: #4B4B4B;
  font-weight: 700;
  padding: 20px 10%;
  box-sizing: border-box;
}

#program_tab .tab_list li.current a{
  color: #3D5EAA;
}

#program01 .position_div{
  position: relative;
}

#program01 .position_div .bg_logo img{
  position:absolute;
  z-index: -1;
}

#program01 .position_div .bg_logo .bg1{
  top: 0;
  right: -120px;
  transform: matrix(-0.26, -0.96, 0.97, -0.26, 0, 0);
}

#program01 .position_div .bg_logo .bg2{
  bottom: 0;
  left:-100px;
}

#program01 .position_div .intro_img{
  display: flex;
  justify-content: space-between;
  margin-top: 8rem;
  padding-bottom: 6rem;
  margin-bottom: 3rem;
}

#program01 .position_div .intro_img .left_img{
  width: 68%;
}

#program01 .position_div .intro_img .right_img{
  width: 30%;
}

#program01 .equipment{
  background: #F9F9F9;
  padding: 10rem 0;
  box-sizing: border-box;
}

#program01 .equipment .title{
 font-size: 3rem;
 font-weight: 600;
 line-height: 4.6rem;
 color: #141414;
 margin-bottom: 8rem;
 text-align: center;
}

#program01 .equipment .equipment_list{
  display: flex;
}

#program01 .equipment .equipment_list li{
  width:25%;
  position: relative;
  overflow: hidden;
}

#program01 .equipment .equipment_list li:after{
  content: "";
  display: block;
  padding-bottom: 100%;
}

#program01 .equipment .equipment_list li img{
  position: absolute;
  width: 101%;
  height: 100%;
  object-fit: cover;
}

#program01 .equipment .equipment_list li .name{
  position: absolute;
  bottom:0;
  right: 0;
  width: 10.7rem;
  height: 6rem;
  background: #141414b8;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 700;
}

#program01 .effect{
  background: url(../img/effect_bg.png) no-repeat;
  background-position: center center;
  background-size: 101% 101%;
  padding: 10rem 0;
  box-sizing: border-box;
}

#program01 .effect .title{
  font-size: 4rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6rem;
  text-align: center;
}

#program01 .effect .effect_list{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

#program01 .effect .effect_list li{
  width: calc((100% - 6rem) / 3);
  text-align: center;
  margin-bottom: 3rem;
  border: 1px solid #C9C9C9;
  padding: 4rem 0;
  box-sizing: border-box;
}

#program01 .effect .effect_list li p{
  color: #fff;
  font-size: 2rem;
  font-weight: 600;
  margin-top: 2rem;
}

/* 개인 수업 */
.branch_popup {
  background-color: #fff;
  border-radius: 7px;
  color: #111;
  display: none;
  width: 50vw;
  padding: 25px;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%,-50%);
}

.branch_popup .btn_box{
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.branch_popup .button {
  background-color: #3D5EAA;
  border-radius: 5px;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  border:0;
  font-size: 15px;
  box-sizing: border-box;
  border:2px solid #3D5EAA;
  width: 49%;
}

.branch_popup .cancel_btn{
  color: #3D5EAA;
  background-color: #fff;
  border:2px solid #3D5EAA;
  font-weight: 600;
}

.branch_popup .b_name {
  border: 1px solid #999;
  height: 35px;
  width: 30%;
  font-size: 16px;
  padding: 0 10px;
  border-radius: 5px;
}

.branch_popup .b_link {
  border: 1px solid #999;
  height: 35px;
  width: 69%;
  font-size: 16px;
  padding: 0 10px;
  border-radius: 5px;
}

.branch_popup .add_filed{
  display: flex;
  justify-content: space-between;
  margin-bottom: 5px;
}

.branch_popup .add_filed .left{
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.branch_popup .add_filed .left input::placeholder{
  color: #aaa;
}

.branch_popup .add_filed .right{
  flex-shrink: 0;
  margin-left: 10px;
}

.branch_popup .file_del input{
  opacity: 0;width: 35px;
  height: 35px;
}

.branch_popup .file_del label, .branch_add {
  background: #F3F3F3;
  border-radius: 5px;
  border: none;
  color: #141414;
  font-weight: 600;
  font-size: 12px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.branch_popup .file_del label{
  margin-top: -35px;
  width: 35px;
}

.branch_popup .branch_add{
  width: 70px;
}

.branch_popup .add_min_box {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

#program02 .gray_box{
  background: #F9F9F9E5;
  width: 100%;
  box-sizing: border-box;
  padding: 5rem 0 3rem;
  text-align: center;
  margin: 8rem 0;
}

#program02 .gray_box .color_bg_txt{
  font-size: 1.8rem;
  font-weight: 700;
  background: #2990D0;
  border-radius: 50px;
  color: #fff;
  padding: 0.6rem 1.5rem;
  box-sizing: border-box;
  display: inline-block;
  margin-bottom: 2rem;
}

#program02 .gray_box .title{
  font-size: 2.4rem;
  font-weight: 700;
  color: #141414;
  margin-bottom: 1.5rem;
}

#program02 .gray_box.reservation .title .naver_img{
  width: 2.3rem;
  margin-top: -0.6rem;
}

#program02 .gray_box.reservation .title span{
  color: #06BE0D;
}

#program02 .gray_box .sub_txt{
  font-size: 1.5rem;
  color: #4B4B4B;
  line-height: 2.5rem;
}

#program02 .gray_box .branch_ul{
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

#program02 .gray_box .branch_ul li{
  font-size: 1.7rem;
  color: #4B4B4B;
  box-sizing: border-box;
  padding: 0.5rem 1.7rem;
  background: #fff;
  box-shadow: 0px 5px 4px rgba(225, 224, 224, 0.25);
  border-radius: 50px;
  margin:0 1rem 2rem;
}

#program02 .gray_box .branch_ul li a{
  cursor: pointer;
}

#program02 .gray_box .branch_modi{
  font-size: 16px;
  border:2px solid #727272;
  color: #727272;
  padding: 5px 15px;
  border-radius: 50px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

#program02 .gray_box .branch_modi img{
  margin-right: 3px;
}

#program02 .video{
  width: 100%;
  height: 60rem;
}

#program02 .video_link{
  font-size: 17px;
  color: #727272;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

#program02 .video_link label{
  flex-shrink: 0;
  margin-right: 10px;
}

#program02 .video_link input{
  border:1px solid #999;
  height: 40px;
  width: 100%;
  font-size: 16px;
  padding: 0 10px;
  border-radius: 5px;
}

#program02 .video_link button{
  font-size: 16px;
  background: #3D5EAA;
  color: #fff;
  border:0;
  flex-shrink: 0;
  height: 40px;
  padding: 0 12px;
  margin-left: 5px;
  border-radius: 5px;
}

#program02 .video_link input::placeholder{
  font-size: 16px;
  color: #888;
}

#program02 .step_box{
  margin-bottom:
}

#program02 .step_box .step_sec{
  padding: 6rem 0;
  border-bottom: 1px solid #DDDDDD;
  box-sizing: border-box;
}

#program02 .step_box .step_sec:last-child{
  border-bottom: 0;
  padding-bottom: 0;
}

#program02 .step_box .step_sec .info_txt_box{
  margin-bottom: 3.5rem;
  display: flex;
  align-items: center;
}

#program02 .step_box .step_sec .info_txt_box .title_box {
  width: calc((100% - 3rem) / 3);
}

#program02 .step_box .step_sec .info_txt_box .title_box .num{
  font-size:2rem;
  font-weight: 600;
  color: #425BA8;
  margin-bottom: 2rem;
}

#program02 .step_box .step_sec .info_txt_box .title_box .title{
  font-size: 2.6rem;
  font-weight: 600;
  color: #141414;
}

#program02 .step_box .step_sec .info_txt_box .info_ul li{
  display: flex;
  align-items: baseline;
  margin-bottom: 1rem;
}

#program02 .step_box .step_sec .info_txt_box .info_ul li:last-child{
  margin-bottom: 0;
}

#program02 .step_box .step_sec .info_txt_box .info_ul li p{
  font-size: 1.7rem;
  color: #4B4B4B;
}

#program02 .step_box .step_sec .info_txt_box .info_ul li p.dot{
  margin-right: 5px;
}


#program02 .step_box .step_sec .info_txt_box .info_ul li p span{
  font-weight: 600;
  color: #141414;
}

#program02 .step_box .step_sec .img_ul{
  display: flex;
  justify-content: space-between;
}

#program02 .step_box .step_sec .img_ul li{
  width: calc((100% - 6rem) / 3);
  height: 27.5rem;
}

#program02 .step_box .step_sec .img_ul li img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#program02 .gray_box.group{
  padding: 5rem 0;
}

/* certificate 지도자 자격증반 */
#certificate .course{
  text-align: center;
  margin-top: 8rem;
}

#certificate .course .course_name{
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(90.33deg, #278FCF 23.69%, #3D5EAA 97.4%);
  border-radius: 50px;
  padding: 0.4rem 1.2rem;
  box-sizing: border-box;
  display: inline-block;
  margin-bottom: 2rem;
  text-transform: uppercase;
}

#certificate .course .title{
  font-size: 3rem;
  font-weight: 600;
  color: #141414;
}

#certificate .course .cursor_img{
  max-width: 1280px;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 8rem;
}

#certificate .course .cursor_img li{
  width: calc((100% - 3rem) / 2);
  height: 36rem;
  position: relative;
  margin-bottom: 3rem;
  overflow: hidden;
}

#certificate .course.master .cursor_img li{
  width: calc((100% - 4rem) / 3);
}

#certificate .course .cursor_img li img{
  width: 101%;
  height: 100%;
  object-fit: cover;
}

#certificate .course .cursor_img li.ob_po_top img{
  object-position: top;
}

#certificate .course .cursor_img li .name{
  position: absolute;
  bottom:0;
  right: 0;
  width: 19rem;
  height: 6rem;
  background: #141414b8;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 700;
}

#certificate .certificate_info{
  background: url(../img/effect_bg.png) no-repeat;
  background-position: center center;
  background-size: 101% 101%;
  padding-top: 10rem;
  box-sizing: border-box;
  margin-top: 10rem;
}

#certificate .certificate_info .page_title{
  margin-top: 0;
}

#certificate .certificate_info .page_title h4,
#certificate .certificate_info .page_title .sub_title{
  color: #fff;
}

#certificate .cert_info_list{
  margin-top: 8rem;
}

#certificate .cert_info_list .swiper-slide{
  border:10px solid #fff;
  margin-bottom: 10rem;
  overflow: hidden;
}

#certificate .cert_info_list .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#certificate .cert_info_list .swiper-horizontal>.swiper-pagination-bullets, #certificate .cert_info_list .swiper-pagination-bullets.swiper-pagination-horizontal, #certificate .cert_info_list .swiper-pagination-custom, .swiper-pagination-fraction{
  bottom: 4.5rem;
}

#certificate .cert_info_list .swiper-pagination-bullet-active{
  background: #fff;
}

/********************************미디어쿼리*********************************/
@media screen and (max-width: 1240px) {
  #header .logo{
    width: 300px;
  }

  /* intro */
  #intro .content_box .intro_txt_box .intro_txt .con_txt{
    font-size: 1.6rem;
  }

}
/* 1240 */

@media screen and (max-width: 1024px) {
  html{
    font-size: 8px;
  }

  #main .main_swiper .swiper-slide .main_img_txt h6{
    font-size: 4rem;
    line-height: 6rem;
  }


}
/* 1024 */

@media screen and (max-width: 767px) {
  .wrap_top{
    padding-top: 65px;
  }

  .pc_none{
    display: block;
  }

  .mo_none{
    display: none;
  }

  .page_title{
    margin-top: 10vw;
  }

  .page_title h4{
    font-size: 7vw;
  }

  .page_title .sub_title{
    font-size: 4vw;
    line-height: 5.5vw;
    margin-top: 7vw;
  }

  #header{
    display: none;
  }

  #mo_header{
    display: block;
  }

  #footer{
    padding: 7vw 0;
    margin-top:15vw;
  }

  #footer .inner{
    padding: 0 7vw;
    display: block;
  }

  #footer .left{
    display: block;
  }

  #footer .left .logo{
    width: 40vw;
    margin-right: 0;
    margin-bottom: 3vw;
  }

  #footer p, #footer p a{
    font-size: 3.3vw;
    margin-bottom: 2vw;
  }

  #footer .footer_info .flex_box{
    display: block;
  }

  #footer .copyright{
    font-size: 3.3vw;
  }

  #footer .right{
    margin-top: 20px;
  }

  #page_banner{
    height: 84vw;
  }

  #page_banner .pro_bar p{
    font-size: 3.2vw;
  }

  #page_banner .pro_bar .home_img{
    width: 3.2vw;
  }

  #page_banner .title{
    font-size: 7.5vw;
    margin:5vw 0 8vw;
  }

  #page_banner .sub_title{
    font-size: 3.7vw;
  }

  #main .page_title{
    margin-top: 8vw;
  }

  #main .sec01{
    margin-top: 4rem;
  }

  #main .sec01 .title{
    text-align: left;
    font-size: 6.4vw;
    line-height: 10vw;
  }

  #main .sec01 .main_ca_list{
    margin-top: 4rem;
    padding: 0;
  }

  #main .sec01 .main_ca_list li{
    width: 50%;
    height: 70vw;
  }

  #main .sec01 .main_ca_list li:hover {
    margin-top: 0px;
  }

  #main .sec01 .main_ca_list li a .text_box .tit{
    font-size: 3.5vw;
  }

  #main .sec01 .main_ca_list li a .text_box .sub{
    font-size: 2.3vw;
    line-height: 3vw;
  }

  #main .sec01 .main_ca_list li a .text_box .go{
    font-size: 2vw;
    align-items: normal;
  }

  #main .sec01 .main_ca_list li a .text_box .go img{
    width: 3.6vw;
  }

  #main .main_change{
    margin-top: 0;
    padding: 10.5vw 0;
  }

  #main .main_change .inner{
    position: relative;
  }

  #main .main_change .page_title h4{
    font-size: 8vw;
  }

  #main .main_change .page_title .sub_title{
    font-size: 4vw;
    line-height: 6vw;
  }

  #main .main_change .go_change{
    padding: 2.3vw 5vw;
    margin-top:0;
    font-size: 3vw;
    position: absolute;
    top: 40vw;
    left: 20px;
  }

  #main .main_branch{
    padding: 10.5vw 0;
  }

  #main .page_title .sub_title.main_branch_sub{
    font-size: 4vw;
  }

  /* intro */
  #intro .content_box{
    margin-top: 39vw;
  }

  #intro .content_box .animated_bg{
    top: -22vw;
    font-size: 21vw;
    height: 21vw;
  }

  #intro .content_box .intro_txt_box{
    display: block;
  }

  #intro .content_box .intro_txt_box .ceo_img{
    width: 100%;
    height: 128vw;
  }

  #intro .content_box .intro_txt_box .intro_txt{
    width: 100%;
    height:auto;
    margin-top: 11vw;
  }

  #intro .content_box .intro_txt_box .intro_txt::after{
    display: none;
  }

  #intro .content_box .intro_txt_box .intro_txt .title{
    font-size: 7vw;
    line-height: 10vw;
    margin-top: 3vw;
    margin-bottom: 8vw;
  }

  #intro .content_box .intro_txt_box .intro_txt .con_txt{
    font-size: 4.8vw;
    line-height: 8.3vw;
  }

  #intro .content_box .intro_txt_box .intro_txt .con_txt span{
    font-size: 6vw;
  }

  /* program */
  #program_tab .tab_list li a{
    font-size: 4vw;
  }

  #program01 .position_div .bg_logo .bg1{
    width: 50vw;
    right: -5.4vw;
    opacity: 0.3;
  }

  #program01 .position_div .bg_logo .bg2{
    display: none;
  }

  #program01 .position_div .intro_img{
    display: block;
    margin-top: 8vw;
    margin-bottom: 11vw;
    padding-bottom: 0;
  }

  #program01 .position_div .intro_img .left_img{
    width: 100%;
    margin-bottom: 5.4vw;
  }

  #program01 .position_div .intro_img .right_img{
    width: 100%;
  }

  #program01 .equipment{
    padding: 11vw 0 11vw 20px;
  }

  #program01 .equipment .title{
    font-size: 4.8vw;
    line-height: 8vw;
    margin-bottom: 11vw;
  }

  #program01 .equipment .equipment_list{
    flex-wrap: nowrap;
    overflow-x: auto;
  }

  #program01 .equipment .equipment_list li{
    width: 80vw;
    flex: 0 0 auto;
  }

  #program01 .equipment .equipment_list li .name{
    font-size: 4.8vw;
    width: 20vw;
    height: 11vw;
  }

  #program01 .effect{
    padding: 11vw 0;
  }

  #program01 .effect .title{
    font-size: 5.4vw;
    margin-bottom: 5.4vw;
  }

  #program01 .effect .effect_list li{
    width: calc((100% - 5.4vw) / 2);
    margin-bottom: 5.4vw;
    padding: 4vw 0;
  }

  #program01 .effect .effect_list li img{
    width: 15vw;
  }

  #program01 .effect .effect_list li p{
    font-size: 3vw;
    margin-top: 2.65vw;
  }

  #program01 .effect .effect_list li:nth-child(5),
  #program01 .effect .effect_list li:nth-child(6){
    margin-bottom: 0;
  }

  .branch_popup{
    width: 90%;
  }

  #program02 .gray_box{
    padding: 11vw 0;
    margin:8vw 0 11vw;
  }

  #program02 .gray_box .color_bg_txt{
    font-size: 4.8vw;
    padding: 1.3vw 3.75vw;
    margin-bottom: 5.4vw;
  }

  #program02 .gray_box .title{
    font-size: 4.5vw;
    margin-bottom: 2.65vw;
  }

  #program02 .gray_box.reservation .title .naver_img{
    width: 5vw;
  }

  #program02 .gray_box .sub_txt{
    font-size: 3.75vw;
    line-height: 6vw;
  }

  #program02 .gray_box.reservation .branch_ul{
    margin-top: 5.4vw;
  }

  #program02 .gray_box.reservation .branch_ul li{
    font-size: 3.2vw;
    padding: 1.3vw 2.7vw;
  }

  #program02 .video{
    height: 50vw;
  }

  #program02 .step_box .step_sec{
    padding: 5.4vw 0;
  }

  #program02 .step_box .step_sec .info_txt_box{
    display: block;
    margin-bottom: 5.4vw;
  }

  #program02 .step_box .step_sec .info_txt_box .title_box{
    width: 100%;
    margin-bottom: 5.4vw;
  }

  #program02 .step_box .step_sec .info_txt_box .title_box .num{
    font-size: 3.75vw;
    margin-bottom: 1.3vw;
  }

  #program02 .step_box .step_sec .info_txt_box .title_box .title{
    font-size: 5.4vw;
  }

  #program02 .step_box .step_sec .info_txt_box .info_ul li{
    margin-bottom: 1.5vw;
  }

  #program02 .step_box .step_sec .info_txt_box .info_ul li p{
    font-size: 3.75vw;
    line-height: 6vw;
  }

  #program02 .step_box .step_sec .img_ul{
    flex-wrap: nowrap;
    overflow-x: auto;
  }

  #program02 .step_box .step_sec .img_ul li{
    flex: 0 0 auto;
    width: 70vw;
    height: 48vw;
    margin-right: 5.4vw;
  }

  #program02 .step_box .step_sec .img_ul li:last-child{
    margin-right: 0;
  }

  /* certificate 지도자 자격증반 */
  #certificate .course{
    margin-top: 11vw;
  }

  #certificate .course .course_name{
    font-size: 3.2vw;
    padding: 1.5vw 2.8vw;
    margin-bottom: 2.65vw;
  }

  #certificate .course .title{
    font-size: 5.9vw;
  }

  #certificate .course .cursor_img{
    margin-top: 5.4vw;
    flex-wrap: nowrap;
    overflow-x: auto;
  }

  #certificate .course .cursor_img li,
  #certificate .course.master .cursor_img li{
    flex: 0 0 auto;
    width: 82vw;
    height: 49vw;
    margin-right: 5.2vw;
  }

  #certificate .course .cursor_img li:last-child{
    margin-right: 0;
  }

  #certificate .course .cursor_img li .name{
    font-size: 3.2vw;
    width: 32vw;
    height: 11vw;
  }

}
/* 767 */

@media screen and (max-width: 475px) {
  #main .main_swiper .swiper-slide .main_img_txt h6{
    font-size: 3rem;
    line-height: 4.5rem;
  }

  #main .main_swiper .swiper-slide .main_img_txt p{
    font-size: 2rem;
  }

  #main .main_change .go_change{
    top: 41vw;
  }

  #program02 .step_box .step_sec .img_ul{
    -ms-overflow-style: none;scrollbar-width: none;
  }

  #program02 .step_box .step_sec .img_ul::-webkit-scrollbar, .scared_img::-webkit-scrollbar {
    display: none;
  }

  #certificate .course .cursor_img{
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  #certificate .course .cursor_img::-webkit-scrollbar, .scared_img::-webkit-scrollbar {
    display: none;
  }


}
/* 475 */
