@charset "utf-8";

@import url('../fonts/Montserrat/fonts.css');
@import url('../fonts/NotoSansKr/fonts.css');

/***********************************
  Common
***********************************/
html {
  scroll-behavior: smooth; /*부드러운 스크롤 효과*/
}

.wrap {
  display: flex;
  width: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.inner {
  width: 100%;
  max-width: 1400px;
  box-sizing: border-box;
}

.point {
  color: var(--basic-blue, #0F5CE1) !important;
}

.mobile {display: none;}


/***********************************
  Header
***********************************/
header {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

header #top {
  width: 100%;
  display: flex;
  height: 35px;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #E7E7E7;
}

header #top .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
}

header #top .inner .left {
  background-color: #F8F8F8;
  border-left: 1px solid #E0E0E0;
  display: flex;
  align-items: center;
  align-self: stretch;
}

header #top .inner .left .home,
header #top .inner .left .call,
header #top .inner .right a {
  border-right: 1px solid #E0E0E0;
  display: flex;
  padding: 0 10px;
  justify-content: center;
  align-items: center;
  height: 100%;
}

header #top .inner .left .call p {
  color: var(--basic-black, #222);
  font-size: 16px;
  font-weight: 500;
  padding-left: 5px;
}

header #top .inner .right{
  border-left: 1px solid #E0E0E0;
  display: flex;
  align-items: center;
  align-self: stretch;
}

header #top .inner .right .map p {
  color: var(--basic-black, #222);
  font-size: 15px;
  font-weight: 500;
  padding-left: 5px;
}

#gnb {
  display: flex;
  width: 100%;
  max-width: 1400px;
  height: 120px;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
}

#gnb .menu .mList {
  display: flex;
  align-items: flex-start;
  gap: 60px;
  margin-top: 10px;
}

#gnb .menu a {
  color: var(--basic-black, #222);
  font-family: Noto Sans KR;
  font-size: 20px;
  font-weight: 500;
}

#gnb .menu a:hover,
#gnb .menu a.active {
  color: var(--basic-blue, #0F5CE1);
}


@media all and (max-width: 480px) {
  header #top {
    display: none;
  }

  .mobile {display: block;}

  #gnb {
    height: 60px;
    padding: 0px 20px;
  }

  #gnb h1 {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
  }

  #gnb .logo img {
    width: 180px;
  }

  #gnb .mmenu {
    width: 100%;
  }

  #gnb .mtop {
    display: flex;
    height: 60px;
    padding: 0px 20px;
    justify-content: space-between;
    align-items: center;
    background: var(--basic-blue, #0F5CE1);
  }

  #gnb .mtop .left, #gnb .mtop .left .call {
    display: flex;
    height: 35px;
    align-items: center;
    gap: 5px;
    color: #fff;
  }

  #gnb .snsLinks {
    display: flex;
    height: 100px;
    padding: 0px 16px;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
    align-self: stretch;
    border-bottom: 2px solid #EEE;
  }

  #gnb .snsLinks a {
    display: flex;
    width: 60px;
    flex-direction: column;
    align-items: center;
    gap: 5px;
  }

  #gnb .snsLinks a p {
    color: #222;
    text-align: center;
    font-family: Noto Sans KR;
    font-size: 12px;
    font-weight: 400;
  }

  #gnb .menu {
    width: 300px;
    height: 100vh;
    position: fixed;
    top: 0;
    right: -300px;
    z-index: 9999;
    background: #fff;
    margin: 0;
    transition: all 0.5s;
  }

  #gnb .menu.active {
    right: 0;
    transition: all 0.5s;
  }

  #gnb .menu .block {
    content: "";
    display: none;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0px;
  }

  #gnb .menu.active .block {
    display: block;
    opacity: 1;
    left: -300px;
  }

  #gnb .menu .mList {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    margin-top: 0;
  }

  #gnb .menu .mList a {
    display: flex;
    width: 100%;
    height: 60px;
    padding: 0px 20px;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid #F0F0F0;
    color: #222;
    font-family: Noto Sans KR;
    font-size: 16px;
    font-weight: 400;
  }

  #gnb .menu .mList a.active {
    background: #E3EEFF;
    color: var(--basic-blue, #0F5CE1);
  }

  #gnb .menu .mList a.msub {
    border-bottom: 1px solid #ededed;
    background: #f7f7f7;
    height: 50px;
    font-size: 14px;
  }
}


/***********************************
  Main page
***********************************/
#slider {
  width: 100%;
  flex-shrink: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bx-wrapper {
  width: 100%;
}

#slider .inner {
  position: absolute;
  z-index: 1;
  flex-direction: column;
  display: flex;
  gap: 70px;
}

#slider .sliderTxt {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
}

#slider .sliderTxt p {
  color: #fff;
  white-space: pre-line;
}

#slider .sliderTxt p:nth-child(1) {
  font-size: 17px;
  font-weight: 400;
}

#slider .sliderTxt p:nth-child(2) {
  font-size: 53px;
  font-weight: 600;
  line-height: 130%; /* 30px */
}

#slider .sliderTxt p:nth-child(3) {
  font-family: Noto Sans KR;
  font-size: 20px;
  font-weight: 200;
  line-height: 150%;
  white-space: inherit;
}

#slider #mainslider li {
  width: 100%;
  height: calc(100vh - 136px);
  position: relative;
  background-size: cover;
}

#slider #mainslider li::before {
  content: "";
  display: block;
  position: absolute;
  background: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100%;
}

#slider .main01 {background-image: url(../img/slider1.jpg);}
#slider .main02 {background-image: url(../img/slider2.jpg);}
#slider .main03 {background-image: url(../img/slider3.jpg);}


.main {
  display: flex;
  padding: 150px 0px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
  align-self: stretch;
}

.mainBanner .inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.mainBanner .inner h2 {
  color: var(--basic-black, #222);
  font-family: Montserrat;
  font-size: 54px;
  font-weight: 700;
}

.mainBanner .inner p {
  color: #545454;
  text-align: center;
  font-family: Noto Sans KR;
  font-size: 20px;
  font-weight: 300;
  line-height: 30px;
  white-space: pre-line;
}

.mainBanner .cards {
  display: flex;
  height: 400px;
  justify-content: center;
  align-items: flex-start;
  gap: 50px;
  width: 100%;
  margin-top: 80px;
}

.mainBanner .cards .item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex: 1 0 0;
  align-self: stretch;
  position: relative;
  border-radius: 20px;
}

.mainBanner .cards .item p:after {
  content: "";
  display: block;
  background-image: url(../img/card-bt.svg);
  z-index: 1;
  opacity: 0;
  width: 90px;
  height: 0px;
  transition: all 0.5s;
  margin-top: 20px;
}

.mainBanner .cards .item:hover p:after {
  opacity: 1;
  height: 90px;
}

.mainBanner .cards .item::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  border-radius: 20px;
}

.mainBanner .cards .item:nth-child(1) {background-image: url(../img/card-1.png);}
.mainBanner .cards .item:nth-child(2) {background-image: url(../img/card-2.png);}
.mainBanner .cards .item:nth-child(3) {background-image: url(../img/card-3.png);}
.mainBanner .cards .item:nth-child(4) {background-image: url(../img/card-4.png);}

.mainBanner .cards .item p {
  color: #FFF;
  font-family: Noto Sans KR;
  font-size: 24px;
  font-weight: 300;
  line-height: 32px;
  z-index: 1;
}

.mainBanner .cards .item:hover::before {
  background-color: rgba(15, 92, 225, 0.80);
}

.mainNotice {
  background-color: #F8F8F8;
}

.mainNotice h3, .main.location h3 {
  display: flex;
  align-items: baseline;
  gap: 10px;
  color: #000;
  font-family: Montserrat;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 50px;
}

.main.location h3 {
  margin-bottom: 20px;
}

.mainNotice h3 p {
  color: #575757;
  font-family: Noto Sans KR;
  font-size: 17px;
  font-weight: 300;
}

.mainNotice .allLeast h2, 
.mainNotice .allLeast .cate {
  display: none;
}

.allLeast .item a {
  font-size: 24px;
  word-break: break-all;
}

.main.location .inner {
  display: flex;
  gap: 200px;
}

.main.location .info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 60px;
  align-self: stretch;
}

.main.location .info .item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 12px;
}

.main.location .info h4 {
  color: var(--basic-black, #222);
  font-size: 20px;
  font-weight: 600;
  padding-bottom: 10px;
}

.main.location .info p {
  color: var(--basic-black, #222);
  font-size: 18px;
  font-weight: 400;
}

.main.location .info p.gray {
  color: #838383;;
  font-size: 16px;
}

.main.location .info .links {
  display: flex;
  padding-top: 10px;
  align-items: center;
  gap: 10px;
}

.main.location .info .links a {
  display: flex;
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 16px;
}

.main.location .info .links a.naver {
  background: #2DB400;
  color: #fff;
}

.main.location .info .links a.kakao {
  background: #F9E000;
  color: #222;
}

.main.location .map {
    background-color: #000;
    position: absolute;
    width: 100%;
    height: 412px;
    left: 38%;
}

#map {width: 100%; height: 100%;}
#map .maker {
  
}


@media all and (max-width: 480px) {
  header {
    position: fixed;
    z-index: 9999;
    top: 0;
  }

  .wrap {margin-top: 60px;}

  #slider .inner {
    padding: 0 20px;
    gap: 40px;
  }

  #slider .sliderTxt {
    gap: 20px;
  }

  #slider #mainslider li {
    height: 460px;
    background-position: 50%;
  }

  #slider .sliderTxt p:nth-child(1) {
    font-size: 11px;
  }

  #slider .sliderTxt p:nth-child(2) {
    font-size: 30px;
  }

  #slider .sliderTxt p:nth-child(3) {
    font-size: 14px;
    white-space: pre-line;
  }

  #slider .sliderTxt p:nth-child(3) br {
    display: none;
  }

  #slider img.arrow {
    width: 150px;
  }

  .main {
    padding: 50px 20px;
  }

  .mainBanner .inner { gap : 18px}
  .mainBanner .inner h2 { font-size: 28px; text-align: center;}
  .mainBanner .inner p {font-size: 14px; line-height: 20px;}

  .mainBanner .cards {
    margin-top: 10px;
    height: auto;
    gap: 10px;
    flex-wrap: wrap;
  }

  .mainBanner .cards .item {
    width: calc(50% - 5px);
    flex: auto;
    height: 100px;
    background-size: cover;
  }

  .mainBanner .cards .item p {
    font-size: 16px;
    line-height: 20px;
    font-weight: 500;
  }

  .mainBanner .cards .item p:after {
    display: none;
  }

  .mainNotice h3, .main.location h3 {
    font-size: 26px;
    margin-bottom: 0px;
  }

  .mainNotice h3 p {
    display: none;
  }

  .allLeast {
    width: 100%;
    flex-direction: column;
  }

  .allLeast .item {
    width: 100%;
    border: 0;
    border-bottom: 1px solid #dcdcdc;
    padding: 20px 0;
  }

  .allLeast .item:last-child {
    border-bottom: 0;
    border-right: 0;
    padding-bottom: 0;
  }

  .allLeast .item a {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .allLeast .item span {
    font-size: 12px;
  }

  .main.location .inner {
    flex-direction: column;
    gap: 30px;
  }

  .main.location .info {
    gap: 30px;
  }

  .main.location .info .item {
    gap: 8px;
  }

  .main.location .info h4 {
    font-size: 16px;
  }

  .main.location .info p, .main.location .info p.gray {
    font-size: 13px;
  }

  .main.location .info .links a {
    font-size: 12px;
  }

  .main.location .map {
    position: initial;
    width: 100%;
    height: 200px;
  }
  
}

/***********************************
  Footer
***********************************/
#top_btn {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: none;
  font-size: 20px;
}

#quick {
  position: fixed;
  top: 45%;
  margin-top: -200px;
  right: 20px;
  display: flex;
  width: 60px;
  padding: 3px 0px;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  border-radius: 100px;
  overflow: hidden;
  z-index: 9999;
}

#quick .links {
  display: flex;
  height: 400px;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
  border-radius: 100px;
  border: 1px solid rgba(85, 85, 85, 0.33);
}

#quick .links a {
  margin-top: -50px;
}

#quick .links a:nth-child(1) {margin-top: -5px; z-index: 3;}
#quick .links a:nth-child(2) {margin-top: -32px; z-index: 2;}
#quick .links a:nth-child(3) {margin-top: -32px; z-index: 1;}

footer {
  display: flex;
  padding: 50px;
  justify-content: center;
  align-self: stretch;
  background: #F8F8F8;
}

footer .inner {
  display: flex;
  gap: 50px;
  align-items: center;
}

footer .inner .info {
  margin-top: 10px;
}

footer .inner .info p {
  padding: 3px 0;
  color: #3F3F3F;
  font-size: 15px;
}


@media all and (max-width: 480px) {
  #quick {display: none;}

  footer {
    padding: 20px 20px;
  }

  footer .inner .info {
    margin-top: 0;
    display: flex;
    gap: 5px;
    flex-direction: column;
  }

  footer .inner .info p {
    padding: 0;
    font-size: 13px;
    line-height: 18px;
  }

  footer .inner .info p:nth-child(2) {font-size: 11px;}

  footer img {display: none;}
}


/***********************************
  Sub page
***********************************/
#sub {
  width: 100%;
}

.subTop {
  display: flex;
  align-items: center;
  height: 350px;
  border-radius: 0px 0px 60px 60px;
  overflow: hidden;
  position: relative;
}

.subTop { background-image: url(../img/subTop-5.jpg);}
.intro .subTop { background-image: url(../img/subTop-1.jpg);}
.dentist .subTop { background-image: url(../img/subTop-2.jpg);}
.tplo .subTop { background-image: url(../img/subTop-3.jpg);}
.cat .subTop { background-image: url(../img/subTop-4.jpg);}

.subTop::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.subTop .inner {
  z-index: 1;
  margin: auto;
  gap: 0px !important;
}

.subTop p:nth-child(1) {
  color: #FFF;
  font-family: Montserrat;
  font-size: 18px;
  font-weight: 400;
}

.subTop p:nth-child(2) {
  color: #FFF;
  font-family: Noto Sans KR;
  font-size: 38px;
  font-weight: 500;
  padding-top: 30px;
  white-space: pre-line;
  line-height: 47px;
}

#sub .contents {
  padding: 150px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 100px;
  align-self: stretch;
}

#sub h2 {
  color: var(--basic-black, #222);
  font-family: Noto Sans KR;
  font-size: 36px;
  font-weight: 500;
  text-align: center;
  width: 100%;
}

.tabMenu {
  display: flex;
  height: 70px;
  border-radius: 100px;
  border: 1px solid #CBCBCB;
}

.tabMenu a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex: 1 0 0;
  align-self: stretch;
  color: #5C5C5C;
  font-family: Noto Sans KR;
  font-size: 20px;
  font-weight: 500;
}

.tabMenu a.active {
  background: var(--basic-blue, #0F5CE1);
  border-radius: 80px;
  color: #fff;
}

.ctt_admin, #ctt {display: none;}


@media all and (max-width: 480px) {
  .subTop {
    height: 200px;
    border-radius: 0px 0px 20px 20px;
    background-size: cover;
    background-position: 50%;
  }

  .subTop .inner {text-align: center;}

  .subTop p:nth-child(1) {font-size: 16px;}

  .subTop p:nth-child(2) {
    font-size: 28px;
    line-height: 36px;
    padding-top: 20px;
  }

  #sub .contents {
    padding: 60px 20px;
    gap: 40px;
  }

  #sub h2 {
    font-size: 26px;
  }

  .tabMenu {height: 50px;}
  .tabMenu a {font-size: 15px;}
}


/***** 병원소개 > 인사말 페이지 *****/

.welcome .message {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.welcome .message h3 {
  color: #222;
  font-family: Noto Sans KR;
  font-size: 36px;
  font-weight: 500;
  white-space: pre-line;
  line-height: 40px;
}

.welcome .message h3 span {
  font-weight: 700;
}

.welcome .message p {
  color: #222;
  font-family: Noto Sans KR;
  font-size: 18px;
  font-weight: 350;
  line-height: 34px;
  white-space: pre-line;
  width: calc(100% - 500px);
}

.welcome .gallery {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  align-self: stretch;
}

.welcome .gallery .right {
  display: flex;
  width: 733px;
  justify-content: center;
  align-items: center;
  align-content: center;
  gap: 20px 15.65px;
  flex-wrap: wrap;
}


@media all and (max-width: 480px) {
  .welcome .message {
      flex-direction: column;
    }
  
  .welcome .message h3 {
    font-size: 26px;
    text-align: center;
    line-height: 34px;
    width: 100%;
  }

  .welcome .message p {
    font-size: 14px;
    line-height: 24px;
    white-space: inherit;
    width: 100%;
    text-align: justify;
    margin-top: 40px;
  }

  .welcome .gallery {flex-direction: column; gap: 10px;}
  .welcome .gallery img { width: 100%;}
  .welcome .gallery .right {width: 100%; gap: 10px;}
}



/***** 병원소개 > 원장님소개 *****/

.doctor .message {
  position: relative;
  width: 100%;
  height: 532px;
}

.doctor .message::after{
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 260px;
  background: var(--basic-blue, #0F5CE1);
  z-index: -9999;
}

.doctor .message .inner {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
}

.doctor .message .left {
  position: relative;
  width: 100%;
}

.doctor .message p {
  color: #222;
  font-family: Noto Sans KR;
  font-size: 32px;
  font-weight: 400;
  line-height: 47px;
  white-space: pre-line;
  position: absolute;
  left: 0;
}

.doctor .message p span {
  font-weight: 700;
}

.doctor .message p:nth-child(1) {
  top: 60px;
}

.doctor .message p:nth-child(2) {
  bottom: 70px;
  color: #fff;
}

.doctor .info {
  display: flex;
  width: 1200px;
  align-items: flex-start;
  gap: 120px;
}

.doctor .info .item {
  display: flex;
  align-items: flex-start;
  gap: 60px;
}

.doctor .info .item h3 {
  color: #222;
  font-family: Noto Sans KR;
  font-size: 24px;
  font-weight: 700;
}

.doctor .info .item li {
  color: #222;
  font-size: 18px;
  padding-bottom: 14px;
  display: flex;
  align-items: center;
}

.doctor .info .item li::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 10px;
  background-color: #989898;
  margin-right: 10px;
}

@media all and (max-width: 480px) {
  .doctor .message .inner {
    flex-direction: column;
  }

  .doctor .info {
    width: 100%;
    flex-direction: column;
    gap: 40px;
  }

  .doctor .info .item {
    gap: 20px;
    flex-direction: column;
  }

  .doctor .info .item h3 {font-size: 20px;}

  .doctor .info .item li {
    font-size: 15px;
    padding-bottom: 11px;
  }

  .doctor .message p {
    font-size: 26px;
    font-weight: 500;
    line-height: 34px;
    white-space: inherit;
    position: inherit;
  }

  .doctor .message p:nth-child(1) { top: 0;}
  .doctor .message p:nth-child(2) {display: none;}

  .doctor .message::after {display: none;}
  .doctor .message .inner {position: relative;}

  .doctor .message .inner::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: 9px;
    width: 100%;
    height: 200px;
    background: var(--basic-blue, #0F5CE1);
    z-index: -9999;
  }
}


/***** 병원소개 > 찾아오시는 길 *****/

.location .location {
  padding: 0;
}


/***** 진료종료 공통 CSS *****/

.clinic .inner {
  display: flex;
  margin: auto;
  flex-direction: column;
  gap: 100px;
}

.clinic .sec {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 60px;
  align-self: stretch;
}

.clinic .grayBox {
  display: flex;
  padding: 60px 0px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  border: 1px solid #E8E8E8;
  background: #FAFAFA;
}

.clinic .grayBox h3 {
  color: var(--basic-blue, #0F5CE1);
  text-align: center;
  font-family: Montserrat;
  font-size: 24px;
  font-weight: 600;
}

.clinic .grayBox p {
  color: #5c5c5c;
  text-align: center;
  font-family: Noto Sans KR;
  font-size: 18px;
  line-height: 32px;
  font-weight: 300;
}

.clinic .cont {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
  align-self: stretch;
}

.clinic .cont h4 {
  color: #222;
  font-size: 22px;
  font-weight: 700;
}

.clinic .cont h5 {
  color: #222;
  font-size: 18px;
  font-weight: 600;
}

.clinic .cont p {
  color: #444;
  font-size: 16px;
  line-height: 26px;
  text-align: justify;
  letter-spacing: -0.1px;
  white-space: pre-line;
}

.clinic .process {
    display: flex;
    gap: 40px;
    align-self: stretch;
}

.clinic .process .item {
  border: 6px solid #F1F1F1;
  display: flex;
  padding: 20px;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  flex: 1 0 0;
  align-self: stretch;
  position: relative;
}

.clinic .process .item:not(:last-child):after {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  background-image: url(../img/process_arrow.svg);
  position: absolute;
  right: -36px;
  top: 50%;
  margin-top: -18px;
}

.clinic .process .item p {
  font-family: Noto Sans KR;
  color: #222;
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  background: #E3EEFF;
  display: flex;
  height: 40px;
  align-items: center;
  width: 100%;
  justify-content: center;
}

.clinic .process .item ol {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.clinic .process .item li {
  color: #222;
  font-family: Noto Sans KR;
  font-size: 15px;
  font-weight: 300;
  line-height: 20px;
  position: relative;
  padding-left: 13px;
}

.clinic .process .item li::before {
  content: "";
  display: block;
  width: 3px;
  height: 3px;
  border-radius: 10px;
  background-color: rgb(100, 100, 100);
  position: absolute;
  left: 3px;
  top: 9px;
}

.clinic hr {
  width: 100%;
  border-top: 1px solid #d1d1d1;
}


@media all and (max-width: 480px) {
  .clinic .grayBox {padding: 40px 20px;}
  .clinic .grayBox p {line-height: 20px; word-break: keep-all; font-size: 14px;}
  .clinic .sec {gap: 40px;}
  .clinic .process {flex-direction: column;}

  .clinic .process .item:not(:last-child):after {
    top: auto;
    margin-top: -18px;
    bottom: -34px;
    left: 50%;
    margin-left: -18px;
    transform: rotate(90deg);
  }

  .clinic .cont h4 {font-size: 18px;}
  .clinic .cont p {font-size: 14px; line-height: 22px;}
  .clinic .grayBox h3 {font-size: 20px;}
  .clinic .inner {gap: 40px;}
  .clinic .wrap {margin-top: 0;}
}


/***** 치과수술 *****/

.dentist .cont.wrap {
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: flex-start;
}

.dentist .cont .col {
  display: flex;
  gap: 20px;
  flex-direction: column;
}

.dentist .cont.wrap .col {
  width: calc(100% / 3 - 34px);
}

.dentist .cont.wrap .col2 {
  width: 65.5%;
}

.dentist .cont.wrap .col.img {
  gap: 5px;
}

.dentist .cont.wrap .col.img img  {
  width: 100%;
  height: 95px;
}

.dentist .cont.chart {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 60px;
  align-self: stretch;
  flex-direction: row;
}

.dentist .cont.chart .left {
  display: flex;
  flex-direction: column;
  gap: 50px;
  flex: 1 0 0;
}

.dentist .cont.chart img {
  height: 280px;
}

.dentist .process .item ol {
  gap: 3px;
}


@media all and (max-width: 480px) {
  .dentist .cont.wrap .col {  width: 100% !important;}
  .dentist .cont.wrap .col.img img {height: auto;}
  .dentist .cont.chart {flex-direction: column; gap: 40px;}
  .dentist .cont.chart img {width: 100%;}
}



/***** 무릎 및 십자인대수술 *****/

.tplo .pictures {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  align-self: stretch;
  flex-direction: row;
}

.tplo .pictures img, .tplo .wrap img {
  border: 1px solid #DDD;
}

.tplo .wrap, .tplo .wrap .right {
  display: flex;
  gap: 20px;
  align-self: stretch;
  flex-direction: row;
}

.tplo .wrap .right {
  flex-wrap: wrap;
}

.tplo .wrap .item img {
  width: 329px;
}

.tplo .wrap .item {
  display: flex;
  gap: 5px;
  flex-direction: column;
}

.tplo .wrap .item figure {
  background: #F0F0F0;
  display: flex;
  height: 40px;
  align-items: center;
  justify-content: center;
}

.tplo .step ol {
  display: flex;
  gap: 20px;
  align-self: stretch;
  flex-direction: row;
  flex-wrap: wrap;
}

.tplo .step ol li {
  border: 6px solid #F1F1F1;
  box-sizing: border-box;
  position: relative;
}

.tplo .step ol li span {
  position: absolute;
  width: 30px;
  height: 30px;
  border-radius: 20px;
  left: 10px;
  top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #E3EEFF;
  color: #222;
}


@media all and (max-width: 480px) {
  .tplo .pictures {overflow-x: scroll;}
  .tplo .wrap, .tplo .wrap .right {flex-direction: row; gap: 10px; flex-wrap: wrap;}
  .tplo .pictures img, .tplo .wrap img {width: 100%;}
  .tplo .pictures img {height: 380px;}
  .tplo .wrap .item {width: calc(50% - 5px);}
  .tplo .wrap .item img {width: 100%;}
  .tplo .wrap .item figure {height: 30px; font-size: 14px;}
  .tplo .step ol {gap: 10px;}
  .tplo .step ol li {width: calc(100% / 2 - 5px);}
  .tplo .step ol li img {width: 100%;}
}


/***** 고양이 전발치 *****/
.cat .grayBox {
  flex-direction: row;
  gap: 40px;
  padding: 50px;
  color: #222;
}

.cat .grayBox p {
  text-align: left;
  white-space: pre-line;
}

.cat .process .item {
  flex: auto;
}

.cat .process .item ol {
  flex-direction: row;
  width: 100%;
  gap: 0;
}

.cat .process .item li {
  padding-left: 0;
  width: 100%;
}

.cat .process .item li::before {
  display: none;
}

.cat .process .item li img {
  width: 100%;
}

@media all and (max-width: 480px) {
  .cat .grayBox {flex-direction: column; gap: 20px; padding: 20px;}
  .cat .grayBox img {width: 100%;}
}