@charset "UTF-8";
@font-face {
  font-family: "KoPubWorld";
  src: url("./assets/fonts/KoPubWorld_Dotum_Bold.ttf") format("truetype");
  font-weight: bold;
}
@font-face {
  font-family: "KoPubWorld";
  src: url("./assets/fonts/KoPubWorld_Dotum_Medium.ttf") format("truetype");
  font-weight: normal;
}
@font-face {
  font-family: "KoPubWorld";
  src: url("./assets/fonts/KoPubWorld_Dotum_Light.ttf") format("truetype");
  font-weight: lighter;
}
* {
  box-sizing: border-box;
  letter-spacing: -1px;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "KoPubWorld", sans-serif;
  font-size: 18px;
}
@media (max-width: 1200px) {
  html,
  body {
    font-size: 14px;
  }
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul {
  padding: 0;
  margin: 0;
}

li {
  list-style: none;
}

button {
  border: none;
  background-color: transparent;
  font-size: 18px;
  cursor: pointer;
}
button:hover {
  opacity: 0.9;
}
@media (max-width: 1200px) {
  button {
    font-size: 14px;
  }
}

.divider {
  width: 100%;
  height: 1px;
  background-color: #aaa;
  border: 0;
  margin: 0;
  margin-block: 12px;
}

.view-more {
  width: 100%;
  margin-top: 32px;
  color: #777;
  letter-spacing: -1px;
}
.view-more:hover {
  font-weight: bold;
}
@media (max-width: 1200px) {
  .view-more {
    margin-top: 24px;
  }
}
.view-more.type-a {
  margin-top: 80px;
}
@media (max-width: 1200px) {
  .view-more.type-a {
    margin-top: 60px;
  }
}
.view-more.type-b {
  margin-top: 20px;
}
@media (max-width: 1200px) {
  .view-more.type-b {
    margin-top: 16px;
  }
}

.background-wrapper {
  position: absolute;
  top: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}
.background-wrapper .background {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.card-container {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
@media (max-width: 1200px) {
  .card-container {
    gap: 12px;
  }
}
.card-container .card {
  display: flex;
  flex-direction: column;
  width: calc(50% - 10px);
  background-color: white;
  cursor: pointer;
}
@media (max-width: 1200px) {
  .card-container .card {
    width: calc(50% - 6px);
  }
}
.card-container .card img {
  width: 100%;
  height: 160px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1200px) {
  .card-container .card img {
    height: 120px;
  }
}
.card-container .card .content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  height: 80px;
  padding: 16px;
}
@media (max-width: 1200px) {
  .card-container .card .content {
    gap: 4px;
    height: 70px;
    padding: 12px;
  }
}
.card-container .card .content h4,
.card-container .card .content p {
  font-size: 16px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media (max-width: 1200px) {
  .card-container .card .content h4,
  .card-container .card .content p {
    font-size: 12px;
  }
}
.card-container .card.review {
  gap: 0;
  height: 240px;
  padding: 16px;
  justify-content: space-between;
}
@media (max-width: 1200px) {
  .card-container .card.review {
    height: 180px;
    padding: 12px;
  }
}
.card-container .card.review h4,
.card-container .card.review p {
  overflow: hidden;
  font-size: 16px;
  white-space: normal;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  word-break: break-all;
  line-height: 1.4;
}
@media (max-width: 1200px) {
  .card-container .card.review h4,
  .card-container .card.review p {
    font-size: 12px;
  }
}
.card-container .card.review h4 {
  -webkit-line-clamp: 3;
  font-size: 22px;
  margin-bottom: 8px;
}
@media (max-width: 1200px) {
  .card-container .card.review h4 {
    font-size: 16px;
  }
}
.card-container .card.review .meta-data {
  display: flex;
  justify-content: flex-end;
  gap: 22px;
  font-size: 14px;
  width: 100%;
}
@media (max-width: 1200px) {
  .card-container .card.review .meta-data {
    gap: 16px;
    font-size: 10px;
  }
}
.card-container .card.review .meta-data > div {
  display: flex;
  align-items: center;
  gap: 6px;
}
.card-container .card.review .meta-data > div > i {
  position: relative;
  top: -1.2px;
}

video {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

#global-container {
  position: absolute;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 100vw;
  height: 100vh;
  padding-top: 80px;
  background-image: url("./assets/img/background.png");
  background-size: cover;
  z-index: 10;
  overflow-x: auto;
  overflow-y: hidden;
}
@media (max-width: 1200px) {
  #global-container {
    padding-top: 60px;
  }
}
@media (max-width: 600px) {
  #global-container {
    overflow-y: auto;
  }
}

#header {
  position: fixed;
  width: 100%;
  height: 80px;
  display: flex;
  background-color: white;
  box-shadow: 0px 4px 6px -2px rgba(33, 37, 41, 0.031372549), 0px 12px 16px -4px rgba(33, 37, 41, 0.0784313725);
  z-index: 100;
}
@media (max-width: 1200px) {
  #header {
    height: 60px;
  }
}
#header .logo {
  position: relative;
  height: 100%;
  left: -40px;
}
@media (max-width: 1200px) {
  #header .logo {
    left: -30px;
  }
}

#content-body {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  height: 900px;
  gap: 100px;
}
@media (max-width: 1200px) {
  #content-body {
    height: 560px;
    gap: 60px;
  }
}
@media (max-width: 600px) {
  #content-body {
    gap: 0;
    flex-direction: column;
    align-items: center;
    width: 100vw;
    height: auto;
  }
}

.wide-profile-section .profile,
.mobile-profile-section .profile {
  display: flex;
  align-items: flex-end;
  width: 520px;
  height: 400px;
}
@media (max-width: 1200px) {
  .wide-profile-section .profile,
  .mobile-profile-section .profile {
    width: 320px;
    height: 300px;
  }
}
@media (max-width: 600px) {
  .wide-profile-section .profile,
  .mobile-profile-section .profile {
    justify-content: center;
  }
}
.wide-profile-section .profile .youtube-wrapper,
.mobile-profile-section .profile .youtube-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  gap: 32px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background-color: #f6d3c4;
  color: black;
  font-size: 26px;
  line-height: 0;
  font-weight: bold;
}
@media (max-width: 1200px) {
  .wide-profile-section .profile .youtube-wrapper,
  .mobile-profile-section .profile .youtube-wrapper {
    gap: 24px;
    width: 160px;
    height: 160px;
    font-size: 16px;
    margin-right:-65px;
  }
}
.wide-profile-section .profile .youtube-wrapper .youtube-logo,
.mobile-profile-section .profile .youtube-wrapper .youtube-logo {
  width: 60px;
  z-index: 51;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
@media (max-width: 1200px) {
  .wide-profile-section .profile .youtube-wrapper .youtube-logo,
  .mobile-profile-section .profile .youtube-wrapper .youtube-logo {
    width: 30px;
  }
}
.wide-profile-section .profile .youtube-wrapper .youtube-logo:hover,
.mobile-profile-section .profile .youtube-wrapper .youtube-logo:hover {
  transform: scale(1.1);
}
.wide-profile-section .profile .doctor-img,
.mobile-profile-section .profile .doctor-img {
  width: 460px;
  margin-left: -140px;
  z-index: 53;
}
@media (max-width: 1200px) {
  .wide-profile-section .profile .doctor-img,
  .mobile-profile-section .profile .doctor-img {
    width: 300px;
    margin-left: -60px;
  }
}
.wide-profile-section .schedule .title-area,
.mobile-profile-section .schedule .title-area {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-end;
  gap: 108px;
  margin-bottom: 10px;
}
@media (max-width: 1200px) {
  .wide-profile-section .schedule .title-area,
  .mobile-profile-section .schedule .title-area {
    gap: 48px;
  }
}
@media (max-width: 600px) {
  .wide-profile-section .schedule .title-area,
  .mobile-profile-section .schedule .title-area {
    justify-content: space-between;
  }
}
.wide-profile-section .schedule .title-area h4,
.mobile-profile-section .schedule .title-area h4 {
  gap: 200px;
  font-size: 20px;
  font-weight: bold;
}
@media (max-width: 1200px) {
  .wide-profile-section .schedule .title-area h4,
  .mobile-profile-section .schedule .title-area h4 {
    gap: 100px;
    font-size: 16px;
  }
}
.wide-profile-section .schedule .title-area .icon-area,
.mobile-profile-section .schedule .title-area .icon-area {
  display: flex;
  align-items: center;
  gap: 40px;
}
@media (max-width: 1200px) {
  .wide-profile-section .schedule .title-area .icon-area,
  .mobile-profile-section .schedule .title-area .icon-area {
    gap: 20px;
  }
}
.wide-profile-section .schedule .title-area .icon-area > div,
.mobile-profile-section .schedule .title-area .icon-area > div {
  display: flex;
  align-items: center;
}
.wide-profile-section .schedule .title-area .icon-area span,
.mobile-profile-section .schedule .title-area .icon-area span {
  margin-left: 8px;
  font-size: 14px;
  font-weight: normal;
}
@media (max-width: 1200px) {
  .wide-profile-section .schedule .title-area .icon-area span,
  .mobile-profile-section .schedule .title-area .icon-area span {
    font-size: 12px;
  }
}
.wide-profile-section .schedule .schedule-table,
.mobile-profile-section .schedule .schedule-table {
  width: 600px;
  border-collapse: collapse;
  font-size: 20px;
  text-align: center;
}
@media (max-width: 1200px) {
  .wide-profile-section .schedule .schedule-table,
  .mobile-profile-section .schedule .schedule-table {
    width: 320px;
    font-size: 14px;
  }
}
@media (max-width: 600px) {
  .wide-profile-section .schedule .schedule-table,
  .mobile-profile-section .schedule .schedule-table {
    width: calc(100vw - 48px);
  }
}
.wide-profile-section .schedule .schedule-table tr,
.mobile-profile-section .schedule .schedule-table tr {
  height: 60px;
}
@media (max-width: 1200px) {
  .wide-profile-section .schedule .schedule-table tr,
  .mobile-profile-section .schedule .schedule-table tr {
    height: 40px;
  }
}
.wide-profile-section .schedule .schedule-table tr td,
.mobile-profile-section .schedule .schedule-table tr td {
  padding: 0 20px;
}
@media (max-width: 1200px) {
  .wide-profile-section .schedule .schedule-table tr td,
  .mobile-profile-section .schedule .schedule-table tr td {
    padding: 0 10px;
  }
}
.wide-profile-section .schedule .schedule-table thead,
.mobile-profile-section .schedule .schedule-table thead {
  background-color: #666666;
  color: white;
}
.wide-profile-section .schedule .schedule-table tbody tr,
.mobile-profile-section .schedule .schedule-table tbody tr {
  border-bottom: 1px solid black;
}

.wide-profile-section {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  gap: 20px;
  margin-left: 100px;
  width: 700px;
  height: 100%;
  z-index: 50;
}
@media (max-width: 1200px) {
  .wide-profile-section {
    margin-left: 60px;
    width: 320px;
  }
}
@media (max-width: 600px) {
  .wide-profile-section {
    height: 0;
    overflow: hidden;
  }
}

.mobile-profile-section {
  height: 0;
  overflow: hidden;
}
@media (max-width: 1200px) {
  .mobile-profile-section {
    height: 0;
    overflow: hidden;
  }
}
@media (max-width: 600px) {
  .mobile-profile-section {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
    height: 100%;
    padding-bottom: 80px;
  }
}

.right-info-section {
  width: 700px;
}
@media (max-width: 1200px) {
  .right-info-section {
    width: 340px;
  }
}
@media (max-width: 600px) {
  .right-info-section {
    width: 100vw;
    padding-bottom: 100px;
  }
}
.right-info-section .section {
  transition: visibility 0.5s ease-in-out, opacity 0.5s ease-in-out;
  visibility: hidden;
  opacity: 0;
}
@media (max-width: 600px) {
  .right-info-section .section {
    visibility: visible;
    opacity: 1;
    padding: 0 24px;
  }
}
.right-info-section .section::before {
  content: "";
  display: block;
  width: 100%;
  height: 80px;
}
@media (max-width: 1200px) {
  .right-info-section .section::before {
    height: 40px;
  }
}
@media (max-width: 600px) {
  .right-info-section .section::before {
    height: 80px;
  }
}
.right-info-section .section.active {
  visibility: visible;
  opacity: 1;
}
@media (max-width: 600px) {
  .right-info-section .section.schedule::before {
    height: 0;
  }
}
.right-info-section .section.review h3, .right-info-section .section.news h3, .right-info-section .section.video h3 {
  padding-top: 40px;
  font-size: 24px;
}
@media (max-width: 1200px) {
  .right-info-section .section.review h3, .right-info-section .section.news h3, .right-info-section .section.video h3 {
    padding-top: 20px;
    font-size: 20px;
  }
}
.right-info-section .section.video p {
  font-size: 20px;
}
@media (max-width: 1200px) {
  .right-info-section .section.video p {
    font-size: 16px;
  }
}
.right-info-section .profile-text h2 {
  font-size: 44px;
}
@media (max-width: 1200px) {
  .right-info-section .profile-text h2 {
    font-size: 32px;
  }
}
.right-info-section .profile-text .doctor-title {
  display: inline;
}
.right-info-section .profile-text h3 {
  font-size: 22px;
}
@media (max-width: 1200px) {
  .right-info-section .profile-text h3 {
    font-size: 18px;
  }
}
.right-info-section .reserve-btn-container {
  margin: 6px 0 28px 0;
  display: flex;
  gap: 8px;
}
@media (max-width: 1200px) {
  .right-info-section .reserve-btn-container {
    margin: 4px 0 20px 0;
  }
}
.right-info-section .reserve-btn-container .reserve-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border: none;
  color: white;
  font-size: 16px;
  font-weight: lighter;
}
@media (max-width: 1200px) {
  .right-info-section .reserve-btn-container .reserve-btn {
    padding: 5px 12px;
    font-size: 12px;
  }
}
.right-info-section .reserve-btn-container .reserve-btn img {
  position: relative;
  top: 1.2px;
  width: 16px;
  height: 16px;
}
@media (max-width: 1200px) {
  .right-info-section .reserve-btn-container .reserve-btn img {
    width: 12px;
    height: 12px;
  }
}
.right-info-section .vertical-contents {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.right-info-section .vertical-contents li::before {
  content: "•";
  margin-inline: 10px;
}
.right-info-section .horizontal-contents {
  display: flex;
  gap: 40px;
}
@media (max-width: 1200px) {
  .right-info-section .horizontal-contents {
    gap: 20px;
  }
}
.right-info-section .horizontal-contents h4 {
  flex-shrink: 0;
}

#nav {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  width: 200px;
  height: 900px;
  border-left: 1px solid #aaa;
  z-index: 50;
}
@media (max-width: 1200px) {
  #nav {
    width: 160px;
    height: 560px;
  }
}
@media (max-width: 600px) {
  #nav {
    height: 0;
    overflow: hidden;
  }
}
#nav ul {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 0;
}
@media (max-width: 1200px) {
  #nav ul {
    gap: 16px;
  }
}
#nav li {
  display: flex;
  align-items: center;
  position: relative;
  list-style: none;
  left: -30px;
  cursor: pointer;
}
@media (max-width: 1200px) {
  #nav li {
    left: -20px;
  }
}
#nav li:hover {
  font-weight: bold;
}
#nav li a {
  display: flex;
  align-items: center;
  height: 60px;
  text-decoration: none;
  color: #555;
  font-size: 18px;
  transition: all 0.2s ease-in-out;
}
@media (max-width: 1200px) {
  #nav li a {
    height: 40px;
    font-size: 16px;
  }
}
#nav li .icon-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  margin-right: 22px;
  background-color: transparent;
  border: 0;
  border-radius: 50%;
  transition: all 0.2s ease-in-out;
}
@media (max-width: 1200px) {
  #nav li .icon-container {
    width: 40px;
    height: 40px;
    margin-right: 16px;
  }
}
#nav li .icon-container .icon-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 8px;
  height: 8px;
  background-color: white;
  border: 4px solid #555;
  border-radius: 50%;
  transition: all 0.2s ease-in-out;
}
@media (max-width: 1200px) {
  #nav li .icon-container .icon-wrapper {
    width: 6px;
    height: 6px;
    border: 3px solid #555;
  }
}
#nav li .icon-container .icon-wrapper img {
  width: 0;
  height: 0;
  transition: all 0.2s ease-in-out;
}
#nav li.active a {
  color: #dc1250;
  font-size: 22px;
  font-weight: bold;
}
@media (max-width: 1200px) {
  #nav li.active a {
    font-size: 18px;
  }
}
#nav li.active a .icon-wrapper {
  width: 100%;
  height: 100%;
  border: 1px solid #dc1250;
}
#nav li.active a .icon-wrapper img {
  width: 50%;
  height: 50%;
}

#footer {
  content: "";
  height: 100px;
  width: 100%;
  border-top: 1px solid #999;
}
@media (max-width: 1200px) {
  #footer {
    height: 80px;
  }
}
@media (max-width: 600px) {
  #footer {
    display: none;
  }
}

.schedule-icon {
  width: 12px;
  height: 12px;
}
@media (max-width: 1200px) {
  .schedule-icon {
    width: 8px;
    height: 8px;
  }
}

.fp-watermark {
  display: none;
}/*# sourceMappingURL=index3.css.map */