@charset "utf-8";

/* 홈탭 title 스타일 */
.title {
  margin-bottom: 8rem;
}
.title h5 {
  margin-bottom: 1.6rem;
}

/* main */
main {
  width: 100%;
  height: 100vh;
  background: url(../img/main.jpg) no-repeat;
  background-size: cover;
  background-position: 25% center;
}
main .wrap {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
}
main h5 {
  margin-top: 5%;
  font-size: 2.1rem;
  line-height: 3.2rem;
  font-weight: 600;
  letter-spacing: 0;
  margin-bottom: 2rem;
}
main h2 {
  font-weight: 200;
  font-size: 4.5rem;
  line-height: 6.4rem;
  letter-spacing: 0.01em;
  margin-bottom: 4rem;
}
main h2 span {
  color: var(--main);
}
main p {
  font-weight: 300;
  line-height: 2.56rem;
  letter-spacing: 0;
  margin-bottom: 8rem;
  color: #d9d9d9;
}
main a {
  width: fit-content;
  font-weight: 400;
  font-size: 2rem;
  line-height: 2.56rem;
  letter-spacing: -0.01em;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 4px;
  position: relative;
}
main a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 2.1px;
  background: var(--main);
}
main a:hover::after {
  animation: line_fill 0.5s;
}
@keyframes line_fill {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
main a img {
  width: 6px;
  object-fit: contain;
  margin-left: 6px;
}

/* intro-video */
.intro-video {
  padding-bottom: 0;
}
.intro-video .wrap {
  display: flex;
  flex-direction: column;
}
.intro-video .video {
  position: relative;
  width: 100%;
  max-width: 780px;
  aspect-ratio: 780 / 450;
}
.intro-video .video img {
  position: absolute;
  right: -20.8rem;
  top: -32.8rem;
  width: 38rem;
  object-fit: contain;
  z-index: -1;
}
.intro-video .video iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 2.4rem;
}

/* surgery */
.surgery {
  height: 1160px;
}
.surgery .wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.surgery .l_box {
  display: flex;
  width: 100%;
}
.surgery .checklist {
  width: fit-content;
  display: flex;
  flex-direction: column;
  row-gap: 2rem;
}
.surgery .checklist.c1 {
  margin-right: 5rem;
}
.surgery .checklist div {
  font-weight: 400;
  font-size: 2.1rem;
  line-height: 3.2rem;
  letter-spacing: 0.004em;
  display: flex;
  align-items: center;
}
.surgery .checklist div img {
  width: 3.2rem;
  object-fit: contain;
  margin-right: 1.1rem;
}
.surgery > img {
  position: absolute;
  top: 50%;
  right: 0;
  width: 45.31%;
  height: 860px;
  object-fit: cover;
  transform: translateY(-50%);
  border-radius: 20px 0 0 20px;
}

/* point */
.point {
  background: #333;
}
.point .title {
  margin-bottom: 0;
}
.point .title h2 {
  color: #fff;
}
.point .point_list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8rem;
  margin-top: 10rem;
}
.point .point_list > div {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.point .point_list > div .l_box {
  width: 50%;
  display: flex;
  flex-direction: column;
}
.point .point_list > div .l_box small {
  color: #a9a9a9;
  margin-bottom: 2rem;
}
.point .point_list > div .l_box h3 {
  color: var(--main);
  margin-bottom: 1.5rem;
}
.point .point_list > div .l_box p {
  color: #d9d9d9;
}
.point .point_list > div .l_box p:first-of-type {
  margin-bottom: 1.5rem;
}
.point .point_list > div img {
  width: 40%;
  object-fit: cover;
  border-radius: 100%;
}
.point .graph_list {
  margin-top: 10rem;
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}
.point .graph_list > div {
  width: calc(33.33% - 1.33rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.point .graph_list > div img {
  width: 100%;
  object-fit: contain;
  border-radius: 1.2rem;
}
.point .graph_list > div .text_box {
  margin-top: 15px;
  width: 100%;
}
.point .graph_list > div h3 {
  color: #fff;
  margin-bottom: 5px;
}

/* dif */

section.dif {
  padding: 15rem 0 0 0;
}

.dif .title.downsize {
  margin-bottom: 6rem;
}

.dif-list {
  display: flex;
  justify-content: center;
  gap: 0; /* 실선 넣을 거면 gap은 쓰지 말고 padding으로 처리 */
}

.dif-item {
  width: 420px; /* 이미지 너비 + 좌우 패딩 */
  padding: 0 40px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.dif-item img {
  width: 340px;
  height: 340px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 4rem;
}

.dif b {
  font-size: 16px;
  margin-bottom: 0.5rem;
  display: block;
  color: #8e96d3;
}

.dif h4 {
  margin-bottom: 1rem;
}

.dif-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 400px;
  right: 0;
  height: calc(100% - 360px);
  width: 1px;
  background-color: #d9d9d9;
}

/* review */
section.review {
  padding: 20rem 0 15rem 0;
}

.review .review_slide {
  overflow: visible;
}
.review .review_slide::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100%;
  transform: translateX(-100%);
  background: #fff;
  z-index: 1;
}
.review .review_slide .swiper-slide {
  position: relative;
  width: 38rem;
  height: 30rem;
  background: #f8f8fa;
  border-radius: 1.6rem;
  display: flex;
  flex-direction: column;
  padding: 3rem;
  padding-right: 2.5rem;
}
.review .review_slide .swiper-slide .t_box {
  width: 100%;
  display: flex;
  align-items: center;
  margin-bottom: 3rem;
}
.review .review_slide .swiper-slide .t_box img {
  width: 3.5rem;
  object-fit: contain;
  margin-right: 1rem;
}
.review .review_slide .swiper-slide .t_box p {
  display: inline-block;
}
.review .review_slide .swiper-slide a {
  position: absolute;
  bottom: 3rem;
  right: 3rem;
  width: fit-content;
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 2.9rem;
  letter-spacing: 0.004em;
  display: flex;
  justify-content: center;
  align-items: center;
}
.review .review_slide .swiper-slide a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--main);
}
.review .review_slide .swiper-slide a:hover::after {
  animation: line_fill 0.5s;
}
.review .review_slide .swiper-slide a img {
  width: 5px;
  object-fit: contain;
  margin-left: 1rem;
}
.review button.next {
  position: absolute;
  left: -4rem;
  top: 69.4%;
  transform: translateX(-100%);
  width: 4.8rem;
  height: 4.8rem;
  z-index: 2;
}
.review button.next img {
  width: 100%;
  object-fit: contain;
}
.review .swiper-pagination {
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  display: none;
}
.review .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #d9d9d9;
  opacity: 1;
  transition: 0.5s;
  margin: 0 6px !important;
}
.review .swiper-pagination-bullet-active {
  width: 60px;
  border-radius: 8px;
  background-color: #666;
  opacity: 0.9;
}

/* doctor, 파트1 */
.doctor {
  background: #333;
}
.doctor .pofile {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.doctor .pofile .l_box {
  width: 60%;
}
.doctor .pofile .l_box .title {
  margin-bottom: 5rem;
}
.doctor .pofile .l_box .title h5 {
  color: var(--pale-main);
}
.doctor .pofile .l_box .title h2 {
  color: var(--main);
}
.doctor .pofile .l_box ul li::before {
  content: "";
  width: 4px;
  height: 4px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: #d9d9d9;
  border-radius: 100%;
}
.doctor .pofile .l_box ul li {
  position: relative;
  color: #d9d9d9;
  font-weight: 300;
  font-size: 1.8rem;
  line-height: 2.9rem;
  letter-spacing: 0.004em;
  padding-left: 11px;
}
.doctor .pofile .l_box ul li.part2 {
  margin-top: 2rem;
}
.doctor .pofile img {
  width: 500px;
  max-width: 38%;
  object-fit: cover;
  border-radius: 3px 3px 10rem 3px;
}

/* 반복 소제목 */
.doctor .doctor_tit::before {
  content: "";
  width: 0.8rem;
  height: 1.6rem;
  background: var(--main);
  border-radius: 1px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.doctor .doctor_tit {
  position: relative;
  color: var(--pale-main);
  padding-left: 2.6rem;
  margin: 8rem 0 2rem;
}

/* .doctor 파트2 */
.doctor .academic .doctor_tit {
  margin-top: 13rem;
}
.doctor .academic .academic_list {
  position: relative;
  cursor: pointer;
  overflow: visible;
}
.doctor .academic .academic_list::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  transform: translateX(-100%);
  width: 100vw;
  height: 100%;
  background: #333;
  z-index: 2;
}
.doctor .academic .academic_list .swiper-slide.st1 {
  width: 56rem;
}
.doctor .academic .academic_list .swiper-slide.st2 {
  width: 36rem;
}
.doctor .academic .academic_list .swiper-slide .img_box {
  width: 100%;
  height: 20rem;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.doctor .academic .academic_list .swiper-slide .img_box img {
  flex: 1;
  height: 100%;
  object-fit: cover;
}
.doctor .academic .academic_list .swiper-slide h6 {
  color: #d9d9d9;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 2rem;
  letter-spacing: -0.01em;
  margin-top: 10px;
}

/* .doctor 파트3 */
.doctor .sice img {
  width: 101.5%;
  object-fit: cover;
}

/* .doctor 파트4 */
.doctor .thesis {
  margin-top: 8rem;
}
.doctor .thesis .img_box {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
.doctor .thesis .img_box img {
  width: calc(20% - 1.6rem);
}

/* promise */
.promise {
  height: 1000px;
  background-color: #333;
}

section.promise {
  padding: 0;
}

.promise h2 {
  color: #fff;
}

.promise p {
  color: #d9d9d9;
}

.promise .wrap {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.promise .l_box {
  width: 48%;
}
.promise .title {
  margin-bottom: 5rem;
}
.promise .l_box p {
  margin-bottom: 2rem;
}
.promise .l_box p:last-of-type {
  margin-bottom: 0;
}
.promise img {
  width: 100%;
  position: absolute;
  top: 50%;
  right: 0;
  height: 700px;
  max-width: 52%;
  object-fit: cover;
  transform: translateY(-50%);
  border-radius: 24px 0 0 24px;
}

/* place */
.place {
  padding-top: 20rem;
  padding-bottom: 20rem;
}
.place .title {
  margin-bottom: 0;
}
.place #map {
  width: 100%;
  height: 50rem;
  border: 0;
  margin: 5rem 0;
}
.place .info {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 2.4rem;
  overflow: hidden;
  border: 1px solid #a9a9a9;
}
.place .info div {
  width: 33.33%;
  height: 32rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.place .info .c1 {
  background: var(--point-2);
  justify-content: center;
}
.place .info .c1 img {
  width: 250px;
  max-width: 70%;
  object-fit: contain;
}
.place .info .c2 {
  text-align: left;
  padding: 6rem 5rem 5.5rem;
  color: #333;
  border-right: 1px solid #a9a9a9;
}
.place .info .c2 .num {
  width: 100%;
}
.place .info .c2 h3 {
  width: 100%;
  display: block;
  margin-bottom: 1.6rem;
}
.place .info .c2 h6 {
  width: 100%;
  display: block;
  font-family: "roboto", sans-serif;
  font-weight: 600;
  font-size: 3.8rem;
  line-height: 3.8rem;
  margin-bottom: auto;
}
.place .info .c2 a {
  flex: 0 0 auto;
  width: 100%;
  height: 5.4rem;
  border-radius: 1.2rem;
  border: 1px solid #333;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  font-size: 2rem;
  line-height: 3.2rem;
  letter-spacing: 0.004em;
  transition: 0.4s;
  cursor: pointer;
}
.place .info .c2 a:hover {
  background: #ebecf2;
}
.place .info .c2 a img {
  margin-left: 2rem;
  height: 10px;
  object-fit: contain;
  transition: 0.4s;
}
.place .info .c3 {
  padding: 6rem 5rem 5.5rem;
  color: #333;
}
.place .info .c3 h3 {
  width: 100%;
  display: block;
  margin-bottom: 1.6rem;
}
.place .info .c3 ul {
  width: 100%;
  margin-bottom: 20px;
}
.place .info .c3 ul > li {
  width: 100%;
  display: flex;
  justify-content: space-between;
  font-weight: 300;
  font-size: 1.8rem;
  line-height: 2.9rem;
}
.place .info .c3 ul > li span {
  color: #555;
}
.place .info .c3 ul > li:nth-child(1) {
  letter-spacing: -0.007em;
}
.place .info .c3 ul > li:nth-child(2) {
  letter-spacing: -0.005em;
}
.place .info .c3 ul > li:nth-child(3) {
  letter-spacing: 0.004em;
}
.place .info .c3 ul > li:nth-child(1) span {
  letter-spacing: -0.01em;
}
.place .info .c3 ul > li:nth-child(2) span {
  letter-spacing: 0.3em;
}
.place .info .c3 ul > li:nth-child(3) span {
  letter-spacing: 0;
}
.place .info .c3 p {
  width: 100%;
  display: block;
  font-weight: 300;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: -0.01em;
  color: #555;
}

/* qna */
.qna .back_box {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 60rem;
  background: #333;
}
.qna .title {
  margin-bottom: 4rem;
}
.qna h5,
.qna h2 {
  color: #fff;
}
.qna .qna_list {
  margin: 0 auto;
  width: 1460px;
  max-width: 90%;
  background: #fff;
  border-radius: 2.4rem;
  padding: 6rem 0;
  box-shadow: 3px 3px 30px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 2;
}
.qna .qna_list > div {
  margin: 0 auto;
  max-width: 85%;
  width: 1160px;
  border-bottom: 0.5px solid #d9d9d9;
}
.qna .qna_list > div button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 400;
  padding: 3.8rem 0;
  text-align: left;
}
.qna .qna_list > div button .text_box {
  display: flex;
  font-weight: 400;
  width: 85%;
  color: #293b3e;
}
.qna .qna_list > div button span {
  margin-right: 10px;
  display: block;
  font-family: "Noto Serif KR", serif;
  color: #a9a9a9;
}
.qna .qna_list img.toggle-arrow {
  width: 4.2rem;
  height: 4.2rem;
  object-fit: contain;
}
.qna .qna_list > div .answer {
  padding-bottom: 4rem;
  white-space: nowrap;
  width: 90%;
  padding-left: 4rem;
  /* display: flex;
  flex-direction: column;
  gap: 2rem; */
}
.qna .qna_list > div .answer p {
  display: inline-block;
  white-space: normal;
}
