@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.8/dist/web/static/pretendard.css");
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.5/font/bootstrap-icons.css");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-size: inherit;
  font-weight: inherit;
}

ul,
ol,
li {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  vertical-align: middle;
  max-width: 100%;
}

body {
  line-height: 1;
  font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
  letter-spacing: -0.025em;
  word-break: keep-all;
}

.inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.quick_menu {
  position: fixed;
  z-index: 999;
  right: 20px;
  top: 250px;
  width: 100px;
  border: 1px solid #dedede;
  border-radius: 58px;
  background: #f6f8fa;
  overflow: hidden;
}
.quick_menu li {
  height: 105px;
  border-bottom: 1px solid #ddd;
}
.quick_menu li:nth-child(1) a {
  background: url(../images/quick-ico01.jpg) no-repeat center 4px;
}
.quick_menu li:nth-child(2) a {
  background: url(../images/quick-ico02.jpg) no-repeat center 4px;
}
.quick_menu li:nth-child(3) a {
  background: url(../images/quick-ico03.jpg) no-repeat center 4px;
}
.quick_menu li:nth-child(4) a {
  background: url(../images/quick-ico04.jpg) no-repeat center 4px;
}
.quick_menu li a {
  display: block;
  padding-top: 65px;
  text-align: center;
  font-size: 14px;
  line-height: 16px;
}
.quick_menu li a:hover span {
  color: #115B95;
  font-weight: 500;
  border-bottom: 1px solid #115B95;
}

.Header {
  border-bottom: 1px solid #ddd;
}
.Header .top {
  background: #373D90;
}
.Header .top ul {
  display: flex;
  font-size: 15px;
}
.Header .top li {
  padding: 10px 0;
  width: 100px;
  background: #444BAB;
  color: rgba(255, 255, 255, 0.589);
  border: 1px solid rgba(255, 255, 255, 0.164);
  text-align: center;
}
.Header .header_wrap {
  display: flex;
  justify-content: space-between;
}
.Header .header_wrap h1 {
  margin: 20px 0 0 0;
}
.Header .header_wrap .gnb {
  display: flex;
  gap: 30px;
}
.Header .header_wrap .gnb > li {
  position: relative;
  padding: 35px 30px;
  font-size: 18px;
  font-weight: 500;
}
.Header .header_wrap .gnb > li:hover {
  color: #444BAB;
}
.Header .header_wrap .gnb::before {
  content: "";
  position: absolute;
  top: 12%;
  left: 0;
  width: 100%;
  background: #fff;
  border-top: 1px solid #ddd;
  z-index: 100;
  height: 0;
  opacity: 0;
  transition: 0.5s;
}
.Header .header_wrap .gnb:hover::before {
  opacity: 1;
  height: 250px;
}
.Header .header_wrap .gnb:hover .sub {
  opacity: 1;
  height: 250px;
  visibility: visible;
}
.Header .header_wrap .sub {
  position: absolute;
  top: 89%;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  font-size: 15px;
  text-align: center;
  line-height: 40px;
  color: #5c5c5c;
  opacity: 0;
  transition: 0.5s;
  visibility: hidden;
  background: none;
}
.Header .header_wrap .sub:hover {
  background: #eff0f3;
}
.Header .header_wrap .sub li:hover {
  color: #444BAB;
  font-weight: 600;
}

.MainVisual .MainSlide .itm {
  height: 80vh;
}
.MainVisual .MainSlide .itm01 {
  background: url(../images/mvisual-img01.jpg);
}
.MainVisual .MainSlide .itm02 {
  background: url(../images/mvisual-img02.jpg);
}
.MainVisual .MainSlide .itm03 {
  background: url(../images/mvisual-img03.jpg);
}
.MainVisual .swiper-pagination {
  transform: translate(0, -500%);
}
.MainVisual .swiper-pagination-bullet {
  width: 70px;
  height: 5px;
  text-align: center;
  font-size: 12px;
  opacity: 1;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 1px;
}
.MainVisual .swiper-pagination-bullet-active {
  background: #fff;
}

.MainContent {
  position: relative;
  z-index: 5;
  margin-top: -100px;
}
.MainContent .content_wrap {
  display: flex;
  text-align: center;
  justify-content: space-between;
}
.MainContent .content_wrap .itm {
  position: relative;
  margin-bottom: 70px;
  border: 1px solid #ddd;
  width: 370px;
  padding: 50px 0 60px 0;
  background: #fff;
}
.MainContent .content_wrap .itm .txt {
  height: 100%;
}
.MainContent .content_wrap .itm .txt .btxt {
  font-size: 28px;
  font-weight: 500;
  color: #115B95;
  margin: 15px 0 20px 0;
}
.MainContent .content_wrap .itm .txt .stxt {
  font-size: 16px;
  font-weight: 300;
  color: #686868;
  margin: 0 75px;
}
.MainContent .content_wrap .itm .txt .btns {
  display: inline-block;
  position: absolute;
  bottom: 10%;
  transform: translate(-50%, 0);
  padding: 10px 20px;
  color: #5c5c5c;
  border: 1px solid #666;
  border-radius: 5px;
}
.MainContent .content_wrap .itm .txt .dtxt {
  font-size: 20px;
  margin: 15px 0 20px 0;
}
.MainContent .content_wrap .itm .txt .ttxt {
  font-size: 40px;
  font-weight: 800;
  color: #115B95;
  margin: 15px 0 20px 0;
}
.MainContent .content_wrap .itm .txt .ctxt {
  color: #5c5c5c;
  font-weight: 300;
}
.MainContent .content_wrap .itm01 {
  border-bottom: 10px solid #115B95;
}
.MainContent .content_wrap .itm02 {
  border-bottom: 10px solid #1DA592;
}
.MainContent .content_wrap .itm03 {
  border-bottom: 10px solid #4AA947;
}

.MainMedical {
  padding: 40px 0;
}
.MainMedical .MediSlide .itm {
  position: relative;
  height: 470px;
}
.MainMedical .MediSlide .itm .txt {
  position: absolute;
  top: 47%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
}
.MainMedical .MediSlide .itm .txt .btxt {
  font-size: 48px;
  font-weight: 500;
  padding-top: 75px;
}
.MainMedical .MediSlide .itm .txt .stxt {
  font-size: 18px;
  margin: 15px 0;
}
.MainMedical .MediSlide .itm01 .btxt {
  background: url(../images/center-icon01.png) no-repeat center top;
}
.MainMedical .MediSlide .itm02 .btxt {
  background: url(../images/center-icon02.png) no-repeat center top;
}
.MainMedical .MediSlide .itm03 .btxt {
  background: url(../images/center-icon03.png) no-repeat center top;
}
.MainMedical .swiper-pagination {
  margin-bottom: 60px;
}
.MainMedical .swiper-pagination-bullet {
  width: 36px;
  height: 36px;
  text-align: center;
  line-height: 34px;
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  opacity: 1;
  background: rgba(0, 0, 0, 0);
  border: 1px solid #fff;
  border-radius: 100%;
}
.MainMedical .swiper-pagination-bullet-active {
  color: #fff;
  background: #115b95;
  border: none;
}

.MainNotice {
  padding: 50px 0;
}
.MainNotice .fl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.MainNotice .fl .title {
  display: flex;
  font-size: 20px;
  justify-content: space-between;
  padding: 0 15px 20px 15px;
}
.MainNotice .fl .press {
  border: 1px solid #ddd;
  border-top: 5px solid #115B95;
  padding: 50px 0;
}
.MainNotice .fl .press .title {
  color: #115B95;
  font-weight: 600;
}
.MainNotice .fl .press .press_wrap {
  display: flex;
  padding: 0 15px;
  gap: 10px;
}
.MainNotice .fl .press .press_wrap .txt {
  color: #4f4f4f;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 20px;
  font-size: 15px;
  margin: 0 0 0 30px;
}
.MainNotice .fl .press .press_wrap .txt .btxt {
  margin: 20px 0 20px 0;
}
.MainNotice .fl .press .press_wrap .txt .stxt {
  margin: 0 0 50px 0;
}
.MainNotice .fl .society {
  border: 1px solid #ddd;
  border-top: 5px solid #1DA592;
  padding: 50px 0;
}
.MainNotice .fl .society .title {
  color: #1DA592;
  font-weight: 600;
}
.MainNotice .fl .society .soc_wrap {
  padding: 0 20px;
}
.MainNotice .fl .society .soc_wrap li {
  padding: 25px 0;
}
.MainNotice .fl .society .soc_wrap li strong {
  font-size: 18px;
  color: #383838;
}
.MainNotice .fl .society .soc_wrap li span {
  float: right;
  color: #929292;
}
.MainNotice .fr {
  display: flex;
  gap: 30px;
}
.MainNotice .fr > * {
  flex: 1;
}
.MainNotice .fr .box {
  margin: 50px 0;
  height: 300px;
  border: 1px solid #ddd;
}
.MainNotice .fr .news {
  text-align: center;
  background: url(../images/news_bg_img_b.jpg) no-repeat center center;
}
.MainNotice .fr .news img {
  margin: 50px 0 0 0;
}
.MainNotice .fr .kakao {
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
  box-sizing: border-box;
  padding-top: 60px;
  text-align: center;
  background: url(../images/kakao-bg.jpg) no-repeat center top #fce006;
}
.MainNotice .fr .kakao .btxt {
  margin: 20px 0 30px 0;
  font-size: 18px;
  line-height: 22px;
}
.MainNotice .fr .kakao .btxt span {
  display: block;
  font-size: 23px;
  font-weight: 500;
}
.MainNotice .fr .kakao .stxt {
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
}
.MainNotice .fr .kakao .stxt span {
  background: #fff;
  padding: 10px 15px;
  border-radius: 10px;
  margin: 0 0 0 10px;
}
.MainNotice .fr .kakao .stxt span i {
  font-size: 18px;
  color: #6b6b6b;
  margin: 0 0 0 10px;
}
.MainNotice .fr .counsel {
  background: url(../images/counsel_bg_img_b.jpg) no-repeat center center/cover;
}
.MainNotice .fr .counsel img {
  display: block;
  margin: 0 auto;
  padding-top: 80px;
}
.MainNotice .fr .locat {
  text-align: center;
}
.MainNotice .fr .locat .btxt {
  font-weight: 500;
  letter-spacing: -0.035em;
  font-size: 18px;
  margin: 25px 0 15px 0;
}
.MainNotice .fr .locat .stxt {
  display: block;
  font-size: 15px;
  margin: 0 0 20px 0;
}
.Footer {
  background: #3f3f3f;
}
.Footer .ft_top {
  background: #575757;
}
.Footer .ft_top .ft {
  display: flex;
  gap: 30px;
  font-size: 15px;
  font-weight: 300;
  color: #fff;
  padding: 25px 15px;
}
.Footer .ft_top .ft strong {
  font-weight: 600;
}
.Footer .ft_bottom {
  display: flex;
  gap: 30px;
  padding: 30px 15px;
  justify-content: space-between;
}
.Footer .ft_bottom .f_info {
  color: #858585;
  font-size: 15px;
  line-height: 30px;
}
.Footer .ft_bottom .f_info strong {
  display: block;
}
.Footer .ft_bottom .f_info span {
  margin: 0 0 30px 0;
}
.Footer .ft_bottom .f_link {
  margin: 20px 0 0 0;
}
.Footer .ft_bottom .f_link ul {
  display: flex;
  gap: 10px;
}

.mopen {
  display: none;
}

@media (max-width: 768px) {
  .quick_menu {
    position: fixed;
    display: flex;
    z-index: 999;
    bottom: -100px;
    left: 0;
    width: 100%;
    height: 100px;
    border: 1px solid #dedede;
    border-radius: 58px;
    background: #f6f8fa;
    overflow: hidden;
    border-radius: 0;
    top: 90%;
    height: 85px;
  }
  .quick_menu > ul {
    display: flex;
    gap: 50px;
    margin: 0 auto;
  }
  .quick_menu li {
    height: 105px;
    border-bottom: 1px solid #ddd;
    display: flex;
    height: 0;
    border: none;
  }
  .quick_menu li:nth-child(1) a {
    background: url(../images/quick-ico01.jpg) no-repeat center/100%;
  }
  .quick_menu li:nth-child(2) a {
    background: url(../images/quick-ico02.jpg) no-repeat center/70%;
  }
  .quick_menu li:nth-child(3) a {
    background: url(../images/quick-ico03.jpg) no-repeat center/100%;
  }
  .quick_menu li:nth-child(4) a {
    background: url(../images/quick-ico04.jpg) no-repeat center/80%;
  }
  .quick_menu li a {
    display: block;
    padding-top: 65px;
    text-align: center;
    font-size: 14px;
    line-height: 16px;
    font-size: 13px;
    padding-top: 48px;
  }
  .quick_menu li a:hover span {
    color: #115B95;
    font-weight: 500;
    border-bottom: 1px solid #115B95;
  }
  .Header {
    border-bottom: 1px solid #ddd;
  }
  .Header .top {
    background: #373D90;
  }
  .Header .top ul {
    display: flex;
    font-size: 15px;
  }
  .Header .top li {
    padding: 10px 0;
    width: 100px;
    background: #444BAB;
    color: rgba(255, 255, 255, 0.589);
    border: 1px solid rgba(255, 255, 255, 0.164);
    text-align: center;
  }
  .Header .header_wrap {
    display: flex;
    justify-content: space-between;
  }
  .Header .header_wrap h1 {
    margin: 20px 0;
  }
  .Header .header_wrap .gnb {
    display: flex;
    gap: 30px;
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    z-index: 9999;
    background: #fff;
    width: calc(100% - 140px);
    flex-direction: column;
    padding-top: 50px;
    opacity: 0;
    transition: 0.5s;
  }
  .Header .header_wrap .gnb.on {
    opacity: 1;
    right: 0;
    box-shadow: -10px 1px 24px 9px rgba(0, 0, 0, 0.29);
  }
  .Header .header_wrap .gnb > li {
    position: relative;
    padding: 30px 30px;
    font-size: 18px;
    font-weight: 500;
    padding: 10px 15px;
  }
  .Header .header_wrap .gnb > li img {
    display: none;
  }
  .Header .header_wrap .gnb > li:hover {
    color: #444BAB;
    color: #000;
  }
  .Header .header_wrap .gnb::before {
    content: "";
    position: absolute;
    top: 12%;
    left: 0;
    width: 100%;
    background: #fff;
    border-top: 1px solid #ddd;
    z-index: 100;
    height: 0;
    opacity: 0;
    transition: 0.5s;
    display: none;
  }
  .Header .header_wrap .gnb:hover::before {
    opacity: 1;
    height: 250px;
    display: none;
  }
  .Header .header_wrap .gnb:hover .sub {
    opacity: 1;
    height: 250px;
    visibility: visible;
    display: none;
    height: auto;
  }
  .Header .header_wrap .sub {
    position: static;
    width: 100%;
    height: auto;
    opacity: 1;
    transition: none;
    visibility: visible;
    text-align: left;
    line-height: 25px;
    background: #eff0f3;
    border-bottom: 1px solid #ddd;
  }
  .Header .header_wrap .sub li {
    padding: 20px 0 0 10px;
  }
  .Header .header_wrap .sub:hover {
    background: #eff0f3;
  }
  .Header .header_wrap .sub li:hover {
    color: #444BAB;
    font-weight: 600;
    color: #5c5c5c;
    font-weight: 400;
  }
  .MainVisual .MainSlide .itm {
    height: 80vh;
  }
  .MainVisual .MainSlide .itm01 {
    background: url(../images/mvisual-img01-m.jpg) center center/cover;
  }
  .MainVisual .MainSlide .itm02 {
    background: url(../images/mvisual-img02-m.jpg) center center/cover;
  }
  .MainVisual .MainSlide .itm03 {
    background: url(../images/mvisual-img03-m.jpg) center center/cover;
  }
  .MainVisual .swiper-pagination {
    transform: translate(0, -500%);
    transform: translate(0, -350%);
  }
  .MainVisual .swiper-pagination-bullet {
    width: 70px;
    height: 5px;
    text-align: center;
    font-size: 12px;
    opacity: 1;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 1px;
    width: 30px;
    height: 3px;
  }
  .MainVisual .swiper-pagination-bullet-active {
    background: #fff;
  }
  .MainContent {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -30%;
    z-index: 5;
    padding: 50px 0;
    position: relative;
    padding: 50px 0 0 0;
  }
  .MainContent .content_wrap {
    flex-direction: column;
    gap: 30px;
  }
  .MainContent .content_wrap .itm {
    width: 100%;
  }
  .MainContent .content_wrap .itm img {
    width: 20%;
  }
  .MainContent .content_wrap .itm .txt {
    height: 100%;
  }
  .MainContent .content_wrap .itm .txt .btxt {
    font-size: 20px;
    margin: 15px 0 20px 0;
  }
  .MainContent .content_wrap .itm .txt .stxt {
    font-size: 16px;
    margin: 0;
    padding: 0 0 30px 0;
  }
  .MainContent .content_wrap .itm01 {
    border-bottom: 5px solid #115B95;
  }
  .MainContent .content_wrap .itm02 {
    border-bottom: 5px solid #1DA592;
  }
  .MainContent .content_wrap .itm03 {
    border-bottom: 5px solid #4AA947;
  }
  .MainMedical {
    margin-top: 380px;
    padding: 80px 0;
    margin-top: 0;
    padding: 50px 0;
  }
  .MainMedical .MediSlide .itm {
    height: 100%;
  }
  .MainMedical .MediSlide .itm img {
    -o-object-fit: cover;
       object-fit: cover;
    height: 300px;
  }
  .MainMedical .MediSlide .itm .txt {
    width: 100%;
  }
  .MainMedical .MediSlide .itm .txt .btxt {
    font-size: 25px;
    font-weight: 500;
    padding-top: 75px;
  }
  .MainMedical .MediSlide .itm .txt .stxt {
    font-size: 15px;
    margin: 15px 0;
  }
  .MainMedical .swiper-pagination {
    margin-bottom: 30px;
  }
  .MainMedical .swiper-pagination-bullet {
    width: 26px;
    height: 26px;
    line-height: 24px;
  }
  .MainNotice {
    padding: 30px 0;
  }
  .MainNotice .fl {
    display: flex;
    flex-direction: column;
  }
  .MainNotice .fl .press .press_wrap {
    display: grid;
  }
  .MainNotice .fl .press .press_wrap .txt {
    margin: 0;
    font-weight: 300;
  }
  .MainNotice .fl .press .press_wrap .txt .btxt {
    margin: 15px 0;
    font-weight: 500;
  }
  .MainNotice .fl .press .press_wrap .txt .stxt {
    margin: 0 0 10px 0;
    color: #8b8b8b;
  }
  .MainNotice .fl .press .press_wrap .txt .ctxt {
    font-size: 13px;
    color: #9c9c9c;
  }
  .MainNotice .fl .society {
    padding: 30px 0;
  }
  .MainNotice .fl .society li {
    padding: 15px 0;
  }
  .MainNotice .fl .society li span {
    float: none;
    display: block;
    margin: 10px 0 0 0;
  }
  .MainNotice .fr {
    display: flex;
    gap: 30px;
    flex-direction: column;
    padding: 30px 0;
  }
  .MainNotice .fr > * {
    flex: 1;
  }
  .MainNotice .fr .box {
    margin: 50px 0;
    height: 300px;
    border: 1px solid #ddd;
    margin: 0;
  }
  .MainNotice .fr .news {
    text-align: center;
    background: url(../images/news_bg_img_b.jpg) no-repeat center center;
  }
  .MainNotice .fr .news img {
    margin: 50px 0;
  }
  .MainNotice .fr .kakao {
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
    box-sizing: border-box;
    padding-top: 60px;
    text-align: center;
    background: url(../images/kakao-bg.jpg) no-repeat center top #fce006;
  }
  .MainNotice .fr .kakao .btxt {
    margin: 20px 0 30px 0;
    font-size: 18px;
    line-height: 22px;
    font-size: 15px;
  }
  .MainNotice .fr .kakao .btxt span {
    display: block;
    font-size: 23px;
    font-weight: 500;
    font-size: 20px;
  }
  .MainNotice .fr .kakao .stxt {
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
    margin: 0 0 20px 0;
    font-size: 16px;
  }
  .MainNotice .fr .kakao .stxt span {
    background: #fff;
    padding: 10px 15px;
    border-radius: 10px;
    margin: 0 0 0 10px;
  }
  .MainNotice .fr .kakao .stxt span i {
    font-size: 18px;
    color: #6b6b6b;
    margin: 0 0 0 10px;
  }
  .MainNotice .counsel {
    background: url(../images/counsel_bg_img_b.jpg) no-repeat center center/cover;
  }
  .MainNotice .counsel img {
    display: block;
    margin: 0 auto;
    padding-top: 80px;
    padding: 20px;
  }
  .MainNotice .locat {
    text-align: center;
  }
  .MainNotice .locat .btxt {
    font-weight: 500;
    letter-spacing: -0.035em;
    font-size: 18px;
    margin: 25px 0 15px 0;
  }
  .MainNotice .locat .stxt {
    display: block;
    font-size: 15px;
    margin: 0 0 20px 0;
  }
  .Footer {
    background: #3f3f3f;
  }
  .Footer .ft_top {
    background: #575757;
  }
  .Footer .ft_top .ft {
    display: flex;
    gap: 30px;
    font-size: 15px;
    font-weight: 300;
    color: #fff;
    padding: 25px 0;
    display: grid;
    grid-template-columns: 3fr 3fr;
    padding: 10px 5px;
    gap: 10px;
    font-size: 12px;
    text-align: center;
  }
  .Footer .ft_bottom {
    display: flex;
    gap: 30px;
    padding: 30px 0;
    justify-content: space-between;
    flex-direction: column;
    text-align: center;
    padding: 30px 5px;
  }
  .Footer .ft_bottom .f_info {
    color: #858585;
    font-size: 15px;
    line-height: 30px;
    font-size: 13px;
  }
  .Footer .ft_bottom .f_info strong {
    display: block;
  }
  .Footer .ft_bottom .f_info span {
    margin: 0 0 30px 0;
  }
  .Footer .ft_bottom .f_link {
    margin: 20px 0 0 0;
    margin: 0 auto;
    padding-bottom: 50px;
  }
  .Footer .ft_bottom .f_link ul {
    display: flex;
    gap: 10px;
    width: 120px;
  }
  .mopen {
    display: block;
    position: fixed;
    top: 60px;
    right: 30px;
    z-index: 99999;
    font-size: 30px;
    border: 1px solid #ddd;
    background: #fff;
    transition: 0.3s;
  }
  .mopen.on {
    top: 30px;
    transform: rotate(-90deg);
    color: #444BAB;
  }
}/*# sourceMappingURL=style.css.map */