@charset "UTF-8";
/* Import common.scss */
/* 반응형 계산 함수 750px이하인 경우 사용 */
/* 반응형 계산 함수 560px이하인 경우 사용 */
:root {
  --font-pretendard: "Pretendard", "NanumSquare", "Montserrat", -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;
  --color-primary: #b49872; /* 메인, 따뜻한 모래색 */
  --color-primary-dark: #5c472a;
  --color-primary-darkest: #3E3A39;
}

.max-width-1400 {
  max-width: 1400px;
  width: 92%;
  margin-left: auto;
  margin-right: auto;
}

.index-wrap {
  overflow: hidden;
}

.section-header {
  text-align: center;
}
.section-header h3 {
  font-family: var(--font-pretendard);
  font-weight: 700;
  font-size: 48px;
  line-height: 1.2;
}
.section-header p {
  margin-top: 40px;
  font-size: 20px;
  line-height: 1.4;
  color: var(--color-primary-darkest);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/* Hero Section */
.section-hero {
  height: 911px;
  padding-top: 80px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: no-repeat url(../img/index/hero_bg.jpg) center/cover;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.hero-desc {
  color: #FFFFFF;
  text-align: center;
}

.hero-title-sub {
  font-weight: 600;
  font-size: 34px;
  line-height: 1.313;
}

.hero-title-main {
  font-family: var(--font-pretendard);
  font-weight: 600;
  font-size: 54px;
  line-height: 1.313;
}

.hero-title-info {
  font-size: 22px;
  line-height: 1.36;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 55px;
}

.hero-count-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 127px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  text-align: center;
  color: #ffffff;
}

.hero-count-item {
  width: 100%;
  padding: 17px 0;
  border-right: 1px solid rgba(255, 255, 255, 0.4);
}
.hero-count-item:last-child {
  border-right: none;
}

.hero-count-item-tit {
  font-weight: 700;
  font-size: 22px;
  line-height: 1.2;
}

.hero-count-item-num {
  font-weight: 700;
  font-size: 48px;
  line-height: 1.2;
  margin-top: 20px;
}

/* Hero Section END */
/* Service Section */
.section-service {
  padding-top: 130px;
}

.service-wrap {
  height: 900px;
  margin-top: 60px;
  position: relative;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-blend-mode: overlay;
  transition: all 0.6s ease;
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -ms-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
}

.service-grid {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
}
.service-grid:hover .service-item:not(:hover) {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 15%;
          flex: 0 0 15%; /* (100% - 25%) ÷ 5 = 15% */
}

.service-item {
  position: relative;
  color: #ffffff;
  word-break: keep-all;
  border: 1px solid rgba(255, 255, 255, 0.2);
  -webkit-transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 16.67%;
          flex: 0 0 16.67%;
}
.service-item:hover {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 25%;
          flex: 0 0 25%;
  z-index: 10;
  background: rgba(180, 152, 114, 0.8);
}
.service-item:hover .service-item-title {
  font-family: var(--font-pretendard);
  font-size: 1.8rem;
  padding-bottom: 20px;
  transform: translateY(-10px);
  -webkit-transform: translateY(-10px);
  -moz-transform: translateY(-10px);
  -ms-transform: translateY(-10px);
  -o-transform: translateY(-10px);
}
.service-item:hover .service-item-title::before {
  content: "";
  width: 80px;
  height: 1px;
  background-color: #D9D9D9;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.service-item:hover .service-content {
  height: auto;
  margin-top: 77px;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
}

.service-item-title {
  font-weight: 700;
  font-size: 30px;
  line-height: 1.2;
  position: relative;
}

.service-content {
  width: 100%;
  height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.4s ease 0.2s;
  transition: all 0.4s ease 0.2s;
  font-size: 22px;
  line-height: 1.2;
  transform: translateY(30px);
  -webkit-transform: translateY(30px);
  -moz-transform: translateY(30px);
  -ms-transform: translateY(30px);
  -o-transform: translateY(30px);
}
.service-content li {
  margin-bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.service-content li:last-child {
  margin-bottom: 0;
}
.service-content span:nth-child(2) {
  font-size: 20px;
}

/* Service Section END */
/* Doctor Section */
.section-doctor {
  position: relative;
  padding: 130px 0;
}
.section-doctor .section-header {
  text-align: left;
}
.section-doctor .doctor-sub-header {
  font-weight: 500;
  font-size: 30px;
  line-height: 1;
  color: #887151;
  margin-top: 50px;
}

.doctor-grid {
  margin-top: 25px;
  display: grid;
  grid-template-columns: auto 40%;
  grid-template-rows: auto 1fr;
  gap: 105px 60px;
}

.doctor-slogan {
  grid-column: 1/2;
  grid-row: 1/2;
  font-size: 20px;
  line-height: 1.4;
  color: #3E3A39;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
  gap: 15px;
}
.doctor-slogan div {
  word-break: keep-all;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.doctor-slogan div.doctor-slogan-mobile {
  display: none;
}

.doctor-profile {
  grid-column: 2/3;
  grid-row: 1/3;
}
.doctor-profile img {
  width: 100%;
  display: block;
  /* box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px; */
  border-radius: 60px;
  -webkit-border-radius: 60px;
  -moz-border-radius: 60px;
  -ms-border-radius: 60px;
  -o-border-radius: 60px;
}

.doctor-info {
  grid-column: 1/2;
  grid-row: 2/3;
}

.doctor-name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 13px;
}
.doctor-name h4 {
  font-family: var(--font-pretendard);
  font-weight: 600;
  font-size: 44px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.doctor-name h4 span {
  color: #5C472A;
}
.doctor-name p {
  padding: 2px 10px;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.3;
  color: var(--color-primary);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 2px solid var(--color-primary);
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}

.doctor-career {
  margin-top: 50px;
}

.doctor-career-title {
  border-bottom: 1px solid var(--color-primary-dark);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4;
  color: #FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.doctor-career-title p {
  padding: 10px 75px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: var(--color-primary-dark);
  border: 1px solid var(--color-primary-dark);
  border-radius: 10px 10px 0px 0px;
}

.doctor-career-box {
  margin-top: 30px;
  font-size: 18px;
  line-height: 1.89;
  color: #555555;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 120px;
}
.doctor-career-box ul {
  width: 50%;
}
.doctor-career-box li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  padding-left: 20px;
}
.doctor-career-box li::before {
  content: "";
  width: 4px;
  height: 4px;
  top: 14px;
  left: 0;
  background-color: #555555;
  position: absolute;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.floating-box {
  width: 100%;
  line-height: 1;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 0;
  z-index: -1;
}

.floating-text {
  font-size: 160px;
  font-weight: 900;
  line-height: 1.2;
  color: #F5F5F5;
  white-space: nowrap;
  text-transform: uppercase;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 80px;
  padding-right: 80px;
  animation: marqueeAnimation 30s linear infinite;
  -webkit-animation: marqueeAnimation 30s linear infinite;
}

@-webkit-keyframes marqueeAnimation {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

@keyframes marqueeAnimation {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
/* Doctor Section END */
/* Ai Section */
.section-ai {
  padding: 130px 0;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-image: url(../img/index/ai_bg.jpg);
  color: #ffffff;
}

.ai-sub-header {
  font-weight: 700;
  font-size: 30px;
  line-height: 2;
}

.ai-header-text {
  font-weight: 700;
  font-size: 30px;
  line-height: 1.13;
  margin-top: 40px;
  margin-bottom: 15px;
}

.ai-header-text-sub {
  font-size: 24px;
  line-height: 1.2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.ai-content {
  margin-top: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  z-index: 1;
}

.ai-info-grid {
  width: 760px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.ai-info-title {
  margin-bottom: 27px;
  font-weight: 700;
  font-size: 30px;
  line-height: 1;
}
.ai-info-title span {
  color: #51E5FF;
}

.ai-info-image {
  width: 522px;
}
.ai-info-image img {
  width: 100%;
  display: block;
}

.ai-info-main {
  margin-top: 45px;
  margin-bottom: 40px;
  font-size: 24px;
  line-height: 1.2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.ai-info-list {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.5;
  gap: 25px 0;
}
.ai-info-list li {
  width: 48%;
  padding: 30px 0;
  border: 1px solid rgba(255, 255, 255, 0.8);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 25px;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  -ms-border-radius: 25px;
  -o-border-radius: 25px;
  transition: background 0.5s ease-in-out;
  -webkit-transition: background 0.5s ease-in-out;
  -moz-transition: background 0.5s ease-in-out;
  -ms-transition: background 0.5s ease-in-out;
  -o-transition: background 0.5s ease-in-out;
}
.ai-info-list li.active {
  background-color: #ffffff;
  color: #001229;
}

.ai-circle {
  width: 134px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid #ffffff;
  aspect-ratio: 1/1;
  position: absolute;
  top: 0;
  left: 710px;
  /* transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%); */
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.ai-circle div {
  width: 88%;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  aspect-ratio: 1/1;
  background-color: #ffffff;
  font-weight: 800;
  font-size: 24px;
  line-height: 1.38;
  color: #000C18;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.ai-circle::before {
  content: "";
  width: 250px;
  height: 1px;
  background: rgba(255, 255, 255, 0.6);
  position: absolute;
  bottom: -50px;
  left: -100px;
  z-index: -1;
}
.ai-circle::after {
  content: "";
  width: 100px;
  height: 1px;
  position: absolute;
  bottom: -14px;
  left: 135px;
  background: rgba(255, 255, 255, 0.6);
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.ai-equipment {
  width: 752px;
  position: absolute;
  right: -160px;
}
.ai-equipment img {
  width: 100%;
  display: block;
}

/* Ai Section END */
/* Equipment Section */
.section-equipment {
  max-width: 1920px;
  margin: 0 auto;
  padding: 130px 0;
}
.section-equipment .section-header {
  grid-column: 1/2;
  grid-row: 1/2;
  text-align: left;
}
.section-equipment .section-header p {
  color: #ffffff;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.section-equipment .section-header .equip-section-header-line2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.equipment-wrap {
  width: 98%;
  max-width: 1660px;
  margin-left: auto;
  display: grid;
  grid-template-columns: 350px auto;
  grid-template-rows: auto 1fr;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.equip-info-wrap {
  grid-column: 1/2;
  grid-row: 2/3;
  margin-top: 40px;
  padding-top: 35px;
  position: relative;
}
.equip-info-wrap::before {
  content: "";
  width: 40px;
  height: 1px;
  background-color: #000000;
  opacity: 0.3;
  position: absolute;
  top: 0;
  left: 0;
}

.equip-title-item {
  font-size: 30px;
  line-height: 1.27;
}

.equip-title-sub {
  font-weight: 700;
}

.equip-arrow-box {
  margin-top: 50px;
  gap: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.equip-arrow-box .slick-arrow {
  cursor: pointer;
  width: 67px;
  aspect-ratio: 1/1;
  border: 1px solid #B49872;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.equip-arrow-box img {
  width: 25%;
  display: block;
}

.equip-arrow-next {
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
}

.equip-slide-wrap {
  width: 100%;
  max-width: 1200px;
  grid-column: 2/3;
  grid-row: 1/3;
}

.equip-rolling .equip-rolling-item {
  margin-right: 30px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.equip-rolling .equip-rolling-item img {
  opacity: 0.5;
}
.equip-rolling .equip-rolling-item::before {
  content: "";
  width: 100%;
  height: 440px;
  background-color: #F5F5F5;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
.equip-rolling .equip-rolling-item.slick-current img {
  opacity: 1;
}
.equip-rolling.slick-slider .slick-track {
  height: 520px;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.equip-slide-etc {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 35px;
}

.equip-paging {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4;
  color: #53453C;
  white-space: nowrap;
}
.equip-paging span {
  color: #B49872;
}

.equip-progress-bar {
  width: 100%;
  height: 4px;
  background-color: rgba(180, 152, 114, 0.2);
}

.equip-progress {
  width: 0%;
  height: 100%;
  background-color: var(--color-primary);
  transition: width 0.3s linear;
  -webkit-transition: width 0.3s linear;
  -moz-transition: width 0.3s linear;
  -ms-transition: width 0.3s linear;
  -o-transition: width 0.3s linear;
}

/* Equipment Section END */
/* Photo Section */
.section-photo {
  padding: 130px 0;
  background-color: rgba(180, 152, 114, 0.1);
}
.section-photo .section-header h3 span {
  color: #887151;
}

.photo-rolling-main {
  margin-top: 80px;
  position: relative;
}
.photo-rolling-main .slick-arrow {
  width: 52px;
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}
.photo-rolling-main .slick-arrow img {
  width: 100%;
  display: block;
}
.photo-rolling-main .photo-arrow-prev {
  left: -92px;
}
.photo-rolling-main .photo-arrow-next {
  right: -92px;
}
.photo-rolling-main .photo-arrow-next img {
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
}
.photo-rolling-main .photo-item {
  height: 590px;
}

.photo-rolling-sub {
  margin-top: 20px;
}
.photo-rolling-sub .slick-list {
  margin: 0 -8px;
}
.photo-rolling-sub .slick-slide {
  cursor: pointer;
  margin: 0 8px;
  aspect-ratio: 220/132;
  border: 2px solid transparent;
  opacity: 0.5;
}
.photo-rolling-sub .slick-slide.slick-current {
  border-color: #887151;
  opacity: 1;
}

.photo-item01 {
  background: no-repeat url(../img/index/photo_img01.jpg) center/cover;
}

.photo-item02 {
  background: no-repeat url(../img/index/photo_img02.jpg) center/cover;
}

.photo-item03 {
  background: no-repeat url(../img/index/photo_img03.jpg) center/cover;
}

.photo-item04 {
  background: no-repeat url(../img/index/photo_img04.jpg?ver=251010) center/cover;
}

.photo-item05 {
  background: no-repeat url(../img/index/photo_img05.jpg) center/cover;
}

.photo-item06 {
  background: no-repeat url(../img/index/photo_img06.jpg) center/cover;
}

.photo-item07 {
  background: no-repeat url(../img/index/photo_img07.jpg?ver=251010) center/cover;
}

.photo-item08 {
  background: no-repeat url(../img/index/photo_img08.jpg) center/cover;
}

.photo-item09 {
  background: no-repeat url(../img/index/photo_img09.jpg) center/cover;
}

.photo-item10 {
  background: no-repeat url(../img/index/photo_img10.jpg) center/cover;
}

.photo-item11 {
  background: no-repeat url(../img/index/photo_img11.jpg) center/cover;
}

.photo-item12 {
  background: no-repeat url(../img/index/photo_img12.jpg) center/cover;
}

.photo-item13 {
  background: no-repeat url(../img/index/photo_img13.jpg) center/cover;
}

.photo-item14 {
  background: no-repeat url(../img/index/photo_img14.jpg) center/cover;
}

.photo-item15 {
  background: no-repeat url(../img/index/photo_img15.jpg) center/cover;
}

.photo-item16 {
  background: no-repeat url(../img/index/photo_img16.jpg) center/cover;
}

.photo-item17 {
  background: no-repeat url(../img/index/photo_img17.jpg) center/cover;
}

.photo-item18 {
  background: no-repeat url(../img/index/photo_img18.jpg) center/cover;
}

.photo-item19 {
  background: no-repeat url(../img/index/photo_img19.jpg) center/cover;
}

.photo-item20 {
  background: no-repeat url(../img/index/photo_img20.jpg) center/cover;
}

/* Photo Section END */
/* Contact Section */
.section-contact {
  padding: 130px 0;
  background-color: #9A8971;
  color: #ffffff;
}
.section-contact a {
  color: #ffffff;
}
.section-contact .section-header p {
  color: #ffffff;
}
.section-contact .max-width-1400 {
  height: 710px;
  margin-top: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.contact-bold {
  font-weight: bold;
}

.parking-block {
  max-width: 845px;
  width: calc(100% - 500px - 55px);
  position: relative;
  overflow: hidden;
}

.parking-image {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-image: url(../img/index/contact_img01.jpg);
}

.parking-info {
  width: 100%;
  padding: 30px 0;
  position: absolute;
  bottom: 0;
  left: 0;
  background: rgba(83, 69, 60, 0.8);
  backdrop-filter: blur(4px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.parking-title {
  font-weight: 700;
  font-size: 30px;
  line-height: 1.1;
  padding-bottom: 11px;
  margin-bottom: 20px;
  border-bottom: 1px solid #ffffff;
}

.parking-list {
  font-weight: 500;
  font-size: 24px;
  line-height: 1.67;
}

.contact-info-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.contact-icon {
  width: 36px;
}
.contact-icon img {
  width: 100%;
  display: block;
}

.contact-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  font-size: 24px;
  line-height: 1.38;
  gap: 15px;
}

.contact-address {
  margin-bottom: 25px;
}

.contact-bus {
  padding-bottom: 60px;
  margin-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.contact-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.contact-timeTable-box {
  margin-bottom: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.contact-timeTable {
  width: 300px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
}
.contact-timeTable li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 24px;
  line-height: 1.38;
  font-variant-numeric: tabular-nums;
}
.contact-timeTable li.contact-timeTable-notice {
  font-weight: 600;
  font-size: 18px;
  line-height: 1.83;
  color: #FFE4B9;
  margin-top: 8px;
}

.contact-timeTable-date {
  width: 30%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 700;
}

.contact-links {
  padding: 15px 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}
.contact-links a:last-child li {
  border: 0;
}
.contact-links li {
  font-weight: 600;
  font-size: 16px;
  line-height: 2.2;
  padding: 0 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  border-right: 1px solid rgba(255, 255, 255, 0.4);
}

.contact-call {
  margin-top: 40px;
  padding: 25px 0;
  background: #FFFFFF;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}
.contact-call a {
  font-weight: 700;
  font-size: 42px;
  line-height: 1.2;
  color: #53453C;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 22px;
}
.contact-call img {
  width: 50px;
}

/* Contact Section END */
@media screen and (max-width: 1660px) {
  /* Ai Section */
  .section-ai {
    padding-bottom: 0;
  }
  .ai-circle {
    left: 50%;
    z-index: -1;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
  }
  .ai-equipment {
    position: unset;
    right: unset;
  }
  /* Ai Section END */
  .equip-slide-wrap {
    max-width: 1000px;
  }
  .section-photo .max-width-1400 {
    width: 88%;
  }
  .photo-rolling-main .photo-arrow-prev {
    left: unset;
    right: 100%;
  }
  .photo-rolling-main .photo-arrow-next {
    right: unset;
    left: 100%;
  }
}
@media screen and (max-width: 1400px) {
  .section-hero {
    padding-top: 125px;
  }
  .doctor-slogan div {
    display: block;
  }
  .doctor-career-box {
    gap: 30px;
  }
  .section-ai {
    padding-bottom: 130px;
  }
  .ai-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .ai-info-grid {
    width: 100%;
    max-width: 760px;
    display: grid;
    grid-template-rows: repeat(4, auto);
    justify-items: center;
  }
  .ai-info-title {
    grid-row: 2/3;
    margin: 40px 0;
  }
  .ai-info-image {
    grid-row: 1/2;
    max-width: 522px;
    width: 100%;
  }
  .ai-info-main {
    grid-row: 3/4;
    margin: 0;
  }
  .ai-info-list {
    margin-top: 40px;
    grid-row: 4/5;
  }
  .ai-equipment {
    /* width: 75%;
    max-width: 752px; */
    width: 600px;
    -ms-flex-item-align: center;
        align-self: center;
  }
  .ai-circle {
    display: none;
  }
  .equipment-wrap {
    width: 92%;
    margin: 0 auto;
  }
  .equip-slide-wrap {
    max-width: 600px;
  }
  .equip-rolling .equip-rolling-item {
    margin-right: 0;
  }
  .parking-block {
    width: 53%;
  }
  .contact-info-block {
    width: 45%;
    max-width: 500px;
  }
  .contact-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 5px 15px;
  }
  .contact-text {
    word-break: keep-all;
  }
  .contact-address {
    margin-bottom: 0;
  }
  .contact-bus {
    padding-bottom: 30px;
    margin-bottom: 0px;
  }
  .contact-timeTable-box {
    margin-bottom: 0px;
  }
  .contact-links li {
    padding: 0 15px;
  }
  .contact-call {
    margin-top: 0px;
  }
}
@media screen and (max-width: 1024px) {
  /* Hero Section */
  .section-hero {
    padding-top: 119px;
  }
  .hero-title-info {
    width: 700px;
    margin-left: auto;
    margin-right: auto;
    display: block;
    word-break: keep-all;
  }
  /* Hero Section END */
  .service-grid {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .service-grid:hover .service-item:not(:hover) {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 12%;
            flex: 0 0 12%;
  }
  .service-item:hover {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 40%;
            flex: 0 0 40%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
    gap: 40px;
  }
  .service-item:hover .service-item-title {
    width: 45%;
    padding: 0;
    padding-right: 20px;
  }
  .service-item:hover .service-item-title::before {
    left: 100%;
    bottom: 50%;
    -webkit-transform: translate(0, 50%);
            transform: translate(0, 50%);
    width: 1px;
    height: 44px;
  }
  .service-item:hover .service-content {
    margin-top: 0;
  }
  .service-content li {
    display: block;
    text-align: left;
    margin-bottom: 20px;
  }
  .doctor-grid {
    gap: 0 30px;
  }
  .doctor-slogan {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .doctor-profile {
    grid-row: 1/2;
  }
  .doctor-info {
    grid-column: 1/3;
  }
  .floating-box {
    display: none;
  }
  .equipment-wrap {
    grid-template-columns: 35% 60%;
  }
  .section-equipment .section-header {
    grid-column: 1/3;
    text-align: center;
    margin-bottom: 30px;
  }
  .section-equipment .section-header p {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .section-equipment .section-header .equip-section-header-line2 {
    display: block;
  }
  .equip-info-wrap {
    padding-top: 0;
    margin-top: 80px;
  }
  .equip-info-wrap::before {
    content: unset;
  }
  .equip-arrow-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .equip-arrow-prev {
    transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
  }
  .equip-arrow-next {
    transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
  }
  .equip-slide-wrap {
    grid-row: 2/3;
    max-width: unset;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    position: relative;
  }
  .equip-rolling {
    height: 520px;
    width: calc(100% - 12px);
  }
  .equip-rolling .slick-slide {
    height: 520px;
  }
  .equip-rolling.slick-slider .slick-track {
    display: block !important;
  }
  .equip-slide-etc {
    width: 4px;
    gap: 0;
    margin: 0;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .equip-paging {
    position: absolute;
    left: 25px;
    bottom: 2%;
  }
  .equip-progress-bar {
    height: 440px;
  }
  .equip-progress {
    transition: height 0.3s linear;
    -webkit-transition: height 0.3s linear;
    -moz-transition: height 0.3s linear;
    -ms-transition: height 0.3s linear;
    -o-transition: height 0.3s linear;
  }
  .section-contact .max-width-1400 {
    height: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .parking-block {
    width: 100%;
    height: 710px;
  }
  .contact-info-block {
    width: 100%;
    max-width: 550px;
    margin-top: 60px;
  }
  .contact-box {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row;
            flex-flow: row;
    margin-bottom: 25px;
  }
  .contact-bus {
    padding-bottom: 60px;
    margin-bottom: 60px;
  }
  .contact-timeTable-box {
    margin-bottom: 70px;
  }
  .contact-links li {
    padding: 0 30px;
  }
  .contact-call {
    margin-top: 40px;
  }
}
@media screen and (max-width: 768px) {
  .section-header h3 {
    font-size: 37.5px; /* calc((28 / 560) * 750px); */
    line-height: 1.2;
  }
  .section-header p {
    margin-top: 26.7857142857px; /* calc((20 / 560) * 750px); */
    font-size: 21.4285714286px; /* calc((16 / 560) * 750px); */
  }
  .section-hero {
    height: 100vh;
    max-height: 911px;
    padding-top: 0;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .section-hero .max-width-1400 {
    width: 100%;
  }
  .hero-title-sub {
    font-size: 37.5px; /* calc((28 / 560) * 750px); */
  }
  .hero-title-main {
    font-size: 64.2857142857px; /* calc((48 / 560) * 750px); */
  }
  .hero-title-info {
    width: 80%;
    text-align: left;
    font-size: 20px;
    line-height: 1.5;
    margin-top: 48px;
  }
  .hero-count-list {
    background-color: rgba(255, 255, 255, 0.01);
    backdrop-filter: blur(10px);
    margin-top: 77px;
    padding: 40px 10%;
    gap: 45px 0;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .hero-count-item {
    width: 50%;
    border: 0;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .hero-count-item-tit {
    font-size: 24.1071428571px;
  }
  .hero-count-item-num {
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    padding-bottom: 8px;
    font-size: 50.8928571429px; /* calc((38 / 560) * 750px); */
  }
  .section-service {
    padding-top: 107.1428571429px; /* calc((80 / 560) * 750px); */
  }
  .service-wrap {
    height: 877.2321428571px; /* calc((655 / 560) * 750px); */
    margin-top: 40.1785714286px; /* calc((30 / 560) * 750px); */
  }
  .service-item:hover {
    gap: 26.7857142857px; /* calc((40 / 560) * 750px); */
  }
  .service-item:hover .service-item-title {
    font-size: 40.1785714286px; /* calc((30 / 560) * 750px); */
    padding-right: 13.3928571429px; /* calc((10 / 560) * 750px); */
  }
  .service-item:hover .service-item-title::before {
    height: 60.2678571429px; /* calc((45 / 560) * 750px); */
  }
  .service-item-title {
    font-size: 26.7857142857px; /* calc((20 / 560) * 750px); */
  }
  .service-content {
    font-size: 24.1071428571px; /* calc((18 / 560) * 750px); */
  }
  .service-content li {
    margin-bottom: 13.3928571429px; /* calc((10 / 560) * 750px); */
  }
  .service-content span:nth-child(2) {
    font-size: 24.1071428571px; /* calc((18 / 560) * 750px); */
  }
  .section-doctor {
    padding: 107.1428571429px 0; /* calc((80 / 560) * 750px); */
  }
  .section-doctor .section-header {
    text-align: center;
  }
  .section-doctor .doctor-sub-header {
    margin-top: 26.7857142857px; /* calc((20 / 560) * 750px); */
    font-size: 26.7857142857px; /* calc((20 / 560) * 750px); */
    line-height: 1.4;
  }
  .doctor-grid {
    margin-top: 33.4821428571px; /* calc((25 / 560) * 750px); */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 40.1785714286px 0; /* calc((30 / 560) * 750px); */
  }
  .doctor-slogan {
    font-size: 21.4285714286px; /* calc((16 / 560) * 750px); */
    text-align: center;
    gap: 13.3928571429px; /* calc((10 / 560) * 750px); */
  }
  .doctor-slogan div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .doctor-slogan div.doctor-slogan-pc {
    display: none;
  }
  .doctor-slogan div.doctor-slogan-mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .doctor-profile {
    width: 100%;
    margin-top: 40.1785714286px; /* calc((30 / 560) * 750px); */
    aspect-ratio: 520/387;
    overflow: hidden;
    position: relative;
    -webkit-box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
            box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    border-radius: 60px;
    -webkit-border-radius: 60px;
    -moz-border-radius: 60px;
    -ms-border-radius: 60px;
    -o-border-radius: 60px;
  }
  .doctor-profile img {
    transform: translateY(-12%);
    -webkit-transform: translateY(-12%);
    -moz-transform: translateY(-12%);
    -ms-transform: translateY(-12%);
    -o-transform: translateY(-12%);
  }
  .doctor-info {
    width: 100%;
  }
  .doctor-name {
    gap: 10px;
  }
  .doctor-name h4 {
    font-size: 40.1785714286px; /* calc((30 / 560) * 750px); */
  }
  .doctor-name p {
    font-size: 21.4285714286px; /* calc((16 / 560) * 750px); */
    line-height: 1.4;
    padding: 3px 13px 1px 13px;
  }
  .doctor-career {
    height: 259.8214285714px; /* calc((194 / 560) * 750px); */
    margin-top: 40.1785714286px; /* calc((30 / 560) * 750px); */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .doctor-career-title {
    width: 35%;
    height: 100%;
    background: var(--color-primary-dark);
    border: 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
    font-size: 24.1071428571px; /* calc((18 / 560) * 750px); */
    line-height: 1.56;
  }
  .doctor-career-title p {
    padding: 0;
    border: 0;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
  }
  .doctor-career-box {
    width: 60%;
    height: 100%;
    margin: 0;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch; /* iOS 부드러운 스크롤 */
    /* Firefox용 스크롤바 스타일 */
    scrollbar-width: thin;
    scrollbar-color: #B49872 transparent;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column nowrap;
            flex-flow: column nowrap;
    gap: 0;
    font-size: 21.4285714286px; /* calc((16 / 560) * 750px); */
    line-height: 1.81;
  }
  .doctor-career-box::-webkit-scrollbar {
    width: 8px; /* 모바일에서 더 얇게 */
    -webkit-appearance: none; /* 모바일 호환성 */
  }
  .doctor-career-box::-webkit-scrollbar-track {
    background-color: transparent;
    border-radius: 20px;
  }
  .doctor-career-box::-webkit-scrollbar-thumb {
    min-height: 30px; /* 최소 터치 영역 확보 */
    background-color: #B49872;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.1); /* 터치 영역 확대 */
  }
  .doctor-career-box ul {
    width: 100%;
  }
  .doctor-career-box li {
    padding-left: 13.3928571429px; /* calc((16 / 560) * 750px); */
  }
  .section-ai {
    padding: 107.1428571429px 0; /* calc((80 / 560) * 750px); */
  }
  .ai-sub-header {
    font-size: 24.1071428571px; /* calc((18 / 560) * 750px); */
    line-height: 2.11;
  }
  .ai-header-text {
    font-size: 26.7857142857px; /* calc((20 / 560) * 750px); */
    margin-top: 26.7857142857px; /* calc((20 / 560) * 750px); */
    margin-bottom: 10.7142857143px; /* calc((8 / 560) * 750px); */
    line-height: 1.7;
    word-break: keep-all;
  }
  .ai-header-text-sub {
    font-size: 24.1071428571px; /* calc((18 / 560) * 750px); */
    line-height: 1.33;
    word-break: keep-all;
  }
  .ai-content {
    margin-top: 60.2678571429px; /* calc((45 / 560) * 750px); */
  }
  .ai-equipment {
    width: 75%;
    max-width: 752px;
  }
  .ai-info-title {
    font-size: 26.7857142857px; /* calc((20 / 560) * 750px); */
    line-height: 1.4;
    margin: 26.7857142857px 0; /* calc((20 / 560) * 750px); */
  }
  .ai-info-main {
    font-size: 24.1071428571px; /* calc((18 / 560) * 750px); */
    line-height: 1.33;
  }
  .ai-info-list {
    font-size: 21.4285714286px; /* calc((16 / 560) * 750px); */
    line-height: 1.4;
    margin-top: 53.5714285714px; /* calc((40 / 560) * 750px); */
  }
  .ai-info-list li {
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
  }
  .section-equipment {
    padding: 107.1428571429px 0; /* calc((80 / 560) * 750px); */
  }
  .section-equipment .section-header {
    margin-bottom: 30px;
  }
  .equip-info-wrap {
    margin-top: 107.1428571429px; /* calc((80 / 560) * 750px); */
  }
  .equip-title-item {
    font-size: 29.4642857143px; /* calc((22 / 560) * 750px); */
    line-height: 1.23;
  }
  .equip-arrow-box {
    margin-top: 46.875px; /* calc((35 / 560) * 750px); */
  }
  .equip-paging {
    font-size: 21.4285714286px; /* calc((16 / 560) * 750px); */
    line-height: 1.75;
  }
  .equip-rolling {
    height: 535.7142857143px; /* calc((400 / 560) * 750px); */
  }
  .equip-rolling .slick-slide {
    height: 535.7142857143px; /* calc((400 / 560) * 750px); */
  }
  .equip-rolling .equip-rolling-item::before {
    height: 455.3571428571px; /* calc((340 / 560) * 750px); */
  }
  .equip-progress-bar {
    height: 455.3571428571px; /* calc((340 / 560) * 750px); */
  }
  .section-photo {
    padding: 107.1428571429px 0; /* calc((80 / 560) * 750px); */
  }
  .section-photo .max-width-1400 {
    width: 92%;
  }
  .photo-rolling-main {
    margin-top: 53.5714285714px; /* calc((40 / 560) * 750px); */
  }
  .photo-rolling-main .photo-item {
    height: auto;
    aspect-ratio: 520/288;
  }
  .photo-rolling-main .slick-arrow {
    width: 37.5px; /* calc((28 / 560) * 750px); */
  }
  .photo-rolling-main .photo-arrow-prev {
    left: 0;
    right: unset;
  }
  .photo-rolling-main .photo-arrow-next {
    right: 0;
    left: unset;
  }
  .photo-rolling-sub {
    margin-top: 13.3928571429px; /* calc((10 / 560) * 750px); */
  }
  .photo-rolling-sub .slick-slide {
    margin: 0 10px;
  }
  .section-contact {
    padding: 107.1428571429px 0; /* calc((80 / 560) * 750px); */
  }
  .section-contact .max-width-1400 {
    margin-top: 33.4821428571px; /* calc((25 / 560) * 750px); */
  }
  .parking-block {
    height: auto;
    aspect-ratio: 520/436;
  }
  .parking-info {
    padding: 22.7678571429px 0; /* calc((17 / 560) * 750px); */
  }
  .parking-title {
    font-size: 24.1071428571px; /* calc((18 / 560) * 750px); */
    padding-bottom: 8.0357142857px; /* calc((6 / 560) * 750px); */
    maring-bottom: 17.4107142857px; /* calc((13 / 560) * 750px); */
  }
  .parking-list {
    font-size: 21.4285714286px; /* calc((16 / 560) * 750px); */
    line-height: 1.54;
  }
  .contact-info-block {
    max-width: unset;
    margin-top: 53.5714285714px; /* calc((40 / 560) * 750px); */
  }
  .contact-box {
    padding: 0 6%;
    gap: 0 26.7857142857px; /* calc((20 / 560) * 750px); */
    font-size: 26.7857142857px; /* calc((20 / 560) * 750px); */
    line-height: 1.65;
  }
  .contact-icon {
    width: 40.1785714286px; /* calc((30 / 560) * 750px); */
  }
  .contact-address {
    margin-bottom: 30.8035714286px; /* calc((23 / 560) * 750px); */
  }
  .contact-bus {
    margin-bottom: 53.5714285714px; /* calc((40 / 560) * 750px); */
    padding-bottom: 53.5714285714px; /* calc((40 / 560) * 750px); */
  }
  .contact-timeTable-box {
    padding: 0 6%;
    margin-bottom: 53.5714285714px; /* calc((40 / 560) * 750px); */
  }
  .contact-timeTable-box .contact-box {
    padding: 0;
    margin: 0;
  }
  .contact-timeTable {
    width: 60%;
    gap: 0;
  }
  .contact-timeTable li {
    font-size: 26.7857142857px; /* calc((20 / 560) * 750px); */
    line-height: 1.65;
  }
  .contact-timeTable li.contact-timeTable-notice {
    font-size: 21.4285714286px; /* calc((16 / 560) * 750px); */
    line-height: 2.06;
    margin-top: 17.4107142857px; /* calc((13 / 560) * 750px); */
  }
  .contact-links {
    padding: 10.7142857143px 0;
    border-radius: 13.3928571429px;
    -webkit-border-radius: 13.3928571429px;
    -moz-border-radius: 13.3928571429px;
    -ms-border-radius: 13.3928571429px;
    -o-border-radius: 13.3928571429px;
  }
  .contact-links li {
    font-size: 21.4285714286px; /* calc((16 / 560) * 750px); */
    line-height: 2.41;
    gap: 0 10.7142857143px; /* calc((8 / 560) * 750px); */
    padding: 0 33.4821428571px; /* calc((25 / 560) * 750px); */
  }
  .contact-links li img {
    width: 32.1428571429px; /* calc((24 / 560) * 750px); */
  }
  .contact-call {
    padding: 26.7857142857px 0; /* calc((20 / 560) * 750px); */
    margin-top: 40.1785714286px; /* calc((30 / 560) * 750px); */
    border-radius: 13.3928571429px;
    -webkit-border-radius: 13.3928571429px;
    -moz-border-radius: 13.3928571429px;
    -ms-border-radius: 13.3928571429px;
    -o-border-radius: 13.3928571429px;
  }
  .contact-call a {
    font-size: 44.1964285714px; /* calc((33 / 560) * 750px); */
    gap: 0px 22.7678571429px; /* calc((17 / 560) * 750px); */
  }
  .contact-call img {
    width: 53.5714285714px; /* calc((40 / 560) * 750px); */
  }
}
@media screen and (max-width: 560px) {
  .section-header h3 {
    font-size: 5vw; /* calc((28 / 560) * 100vw); */
  }
  .section-header p {
    margin-top: 3.5714285714vw; /* calc((20 / 560) * 100vw); */
    font-size: 2.8571428571vw; /* calc((16 / 560) * 100vw); */
  }
  .section-hero {
    max-height: 100vh;
    height: 162.6785714286vw; /* calc((911 / 560) * 100vw); */
  }
  .hero-title-sub {
    font-size: 5vw; /* calc((28 / 560) * 100vw); */
  }
  .hero-title-main {
    font-size: 8.5714285714vw; /* calc((48 / 560) * 100vw); */
  }
  .hero-title-info {
    font-size: 3.5714285714vw; /* calc((20 / 560) * 100vw); */
    margin-top: 8.5714285714vw; /* calc((48 / 560) * 100vw); */
  }
  .hero-count-list {
    margin-top: 13.75vw; /* calc((77 / 560) * 100vw); */
    padding: 7.1428571429vw 10%; /* calc((40 / 560) * 100vw) 10%; */
    gap: 8.0357142857vw 0; /* calc((45 / 560) * 100vw) 0; */
  }
  .hero-count-item-tit {
    font-size: 3.2142857143vw; /* calc((18 / 560) * 100vw); */
  }
  .hero-count-item-num {
    padding-bottom: 1.4285714286vw; /* calc((8 / 560) * 100vw); */
    font-size: 6.7857142857vw; /* calc((38 / 560) * 100vw); */
  }
  .section-service {
    padding-top: 14.2857142857vw; /* calc((80 / 560) * 100vw); */
  }
  .service-wrap {
    height: 116.9642857143vw; /* calc((655 / 560) * 100vw); */
    margin-top: 5.3571428571vw; /* calc((30 / 560) * 100vw); */
  }
  .service-item:hover {
    gap: 3.5714285714vw; /* calc((40 / 560) * 100vw); */
  }
  .service-item:hover .service-item-title {
    font-size: 5.3571428571vw; /* calc((30 / 560) * 100vw); */
    padding-right: 1.7857142857vw; /* calc((10 / 560) * 100vw); */
  }
  .service-item:hover .service-item-title::before {
    height: 8.0357142857vw; /* calc((45 / 560) * 100vw); */
  }
  .service-item-title {
    font-size: 3.5714285714vw; /* calc((20 / 560) * 100vw); */
  }
  .service-content {
    font-size: 3.2142857143vw; /* calc((18 / 560) * 100vw); */
  }
  .service-content li {
    margin-bottom: 1.7857142857vw; /* calc((10 / 560) * 100vw); */
  }
  .service-content span:nth-child(2) {
    font-size: 3.2142857143vw; /* calc((18 / 560) * 100vw); */
  }
  .section-doctor {
    padding: 14.2857142857vw 0; /* calc((80 / 560) * 100vw); */
  }
  .doctor-grid {
    margin-top: 4.4642857143vw; /* calc((25 / 560) * 100vw); */
    gap: 5.3571428571vw 0; /* calc((30 / 560) * 100vw); */
  }
  .doctor-slogan {
    font-size: 2.8571428571vw; /* calc((16 / 560) * 100vw); */
    gap: 1.7857142857vw; /* calc((10 / 560) * 100vw); */
  }
  .doctor-profile {
    margin-top: 5.3571428571vw;
    border-radius: 10.7142857143vw;
    -webkit-border-radius: 10.7142857143vw;
    -moz-border-radius: 10.7142857143vw;
    -ms-border-radius: 10.7142857143vw;
    -o-border-radius: 10.7142857143vw;
  }
  .doctor-name {
    gap: 10px;
  }
  .doctor-name h4 {
    font-size: 5.3571428571vw; /* calc((30 / 560) * 100vw); */
  }
  .doctor-name p {
    font-size: 2.8571428571vw; /* calc((16 / 560) * 100vw); */
    padding: 3px 13px 1px 13px;
  }
  .doctor-career {
    height: 34.6428571429vw; /* calc((194 / 560) * 100vw); */
    margin-top: 5.3571428571vw; /* calc((30 / 560) * 100vw); */
  }
  .doctor-career-title {
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
    font-size: 3.2142857143vw; /* calc((18 / 560) * 100vw); */
  }
  .doctor-career-box {
    font-size: 2.8571428571vw; /* calc((16 / 560) * 100vw); */
  }
  .doctor-career-box li {
    padding-left: 1.7857142857vw; /* calc((10 / 560) * 100vw); */
  }
  .doctor-career-box li::before {
    width: 0.7142857143vw; /* calc((4 / 560) * 100vw); */
    height: 0.7142857143vw; /* calc((4 / 560) * 100vw); */
    max-width: 4px;
    max-height: 4px;
    top: 2vw;
  }
  .section-ai {
    padding: 14.2857142857vw 0; /* calc((80 / 560) * 100vw); */
  }
  .ai-sub-header {
    font-size: 3.2142857143vw; /* calc((18 / 560) * 100vw); */
  }
  .ai-header-text {
    font-size: 3.5714285714vw; /* calc((20 / 560) * 100vw); */
    margin-top: 3.5714285714vw; /* calc((20 / 560) * 100vw); */
    margin-bottom: 1.4285714286vw; /* calc((8 / 560) * 100vw); */
  }
  .ai-header-text-sub {
    font-size: 3.2142857143vw; /* calc((18 / 560) * 100vw); */
  }
  .ai-content {
    margin-top: 8.0357142857vw; /* calc((45 / 560) * 100vw); */
  }
  .ai-info-title {
    font-size: 3.5714285714vw; /* calc((20 / 560) * 100vw); */
    margin: 3.5714285714vw 0; /* calc((20 / 560) * 100vw); */
  }
  .ai-info-main {
    font-size: 3.2142857143vw; /* calc((18 / 560) * 100vw); */
  }
  .ai-info-list {
    font-size: 2.8571428571vw; /* calc((16 / 560) * 100vw); */
    margin-top: 7.1428571429vw; /* calc((40 / 560) * 100vw); */
    gap: 2.6785714286vw; /* calc((15 / 560) * 100vw); */
  }
  .ai-info-list li {
    padding: 3.5714285714vw 0;
    border-radius: 2.6785714286vw;
    -webkit-border-radius: 2.6785714286vw;
    -moz-border-radius: 2.6785714286vw;
    -ms-border-radius: 2.6785714286vw;
    -o-border-radius: 2.6785714286vw;
  }
  .section-equipment {
    padding: 14.2857142857vw 0; /* calc((80 / 560) * 100vw); */
  }
  .section-equipment .section-header {
    margin-bottom: 5.3571428571vw; /* calc((30 / 560) * 100vw); */
  }
  .equip-info-wrap {
    margin-top: 14.2857142857vw; /* calc((80 / 560) * 100vw); */
  }
  .equip-title-item {
    font-size: 3.9285714286vw; /* calc((22 / 560) * 100vw); */
  }
  .equip-arrow-box {
    margin-top: 2.6785714286vw; /* calc((15 / 560) * 100vw); */
    gap: 2.3214285714vw; /* calc((13 / 560) * 100vw); */
  }
  .equip-arrow-box .slick-arrow {
    width: 8.0357142857vw; /* calc((45 / 560) * 100vw); */
  }
  .equip-paging {
    font-size: 2.8571428571vw; /* calc((16 / 560) * 100vw); */
  }
  .equip-rolling {
    height: 71.4285714286vw; /* calc((400 / 560) * 100vw); */
  }
  .equip-rolling .slick-slide {
    height: 71.4285714286vw; /* calc((400 / 560) * 100vw); */
  }
  .equip-rolling .equip-rolling-item img {
    max-height: 100%;
  }
  .equip-rolling .equip-rolling-item::before {
    height: 60.7142857143vw; /* calc((340 / 560) * 100vw); */
  }
  .equip-progress-bar {
    height: 60.7142857143vw; /* calc((340 / 560) * 100vw); */
  }
  .section-photo {
    padding: 14.2857142857vw 0; /* calc((80 / 560) * 100vw); */
  }
  .photo-rolling-main {
    margin-top: 7.1428571429vw; /* calc((40 / 560) * 100vw); */
  }
  .photo-rolling-main .slick-arrow {
    width: 5vw; /* calc((28 / 560) * 100vw); */
  }
  .photo-rolling-sub {
    margin-top: 1.7857142857vw; /* calc((10 / 560) * 100vw); */
  }
  .photo-rolling-sub .slick-list {
    margin: 0 -1.7857142857vw; /* calc((-10 / 560) * 100vw); */
  }
  .photo-rolling-sub .slick-slide {
    margin: 0 1.7857142857vw; /* calc((10 / 560) * 100vw); */
  }
  .section-contact {
    padding: 14.2857142857vw 0; /* calc((80 / 560) * 100vw); */
  }
  .section-contact .max-width-1400 {
    margin-top: 4.4642857143vw; /* calc((25 / 560) * 100vw); */
  }
  .parking-info {
    padding: 3.0357142857vw 0; /* calc((17 / 560) * 100vw); */
  }
  .parking-title {
    font-size: 3.2142857143vw; /* calc((18 / 560) * 100vw); */
    padding-bottom: 1.0714285714vw; /* calc((6 / 560) * 100vw); */
    maring-bottom: 2.3214285714vw; /* calc((13 / 560) * 100vw); */
  }
  .parking-list {
    font-size: 2.8571428571vw; /* calc((16 / 560) * 100vw); */
  }
  .contact-info-block {
    margin-top: 7.1428571429vw; /* calc((40 / 560) * 100vw); */
  }
  .contact-box {
    gap: 0 3.5714285714vw; /* calc((20 / 560) * 100vw); */
    font-size: 3.5714285714vw; /* calc((20 / 560) * 100vw); */
  }
  .contact-icon {
    width: 5.3571428571vw; /* calc((30 / 560) * 100vw); */
  }
  .contact-address {
    margin-bottom: 4.1071428571vw; /* calc((23 / 560) * 100vw); */
  }
  .contact-bus {
    margin-bottom: 7.1428571429vw; /* calc((40 / 560) * 100vw); */
    padding-bottom: 7.1428571429vw; /* calc((40 / 560) * 100vw); */
  }
  .contact-timeTable-box {
    margin-bottom: 7.1428571429vw; /* calc((40 / 560) * 100vw); */
  }
  .contact-timeTable li {
    font-size: 3.5714285714vw; /* calc((20 / 560) * 100vw); */
  }
  .contact-timeTable li.contact-timeTable-notice {
    font-size: 2.8571428571vw; /* calc((16 / 560) * 100vw); */
    margin-top: 2.3214285714vw; /* calc((13 / 560) * 100vw); */
  }
  .contact-links {
    padding: 1.4285714286vw 0;
    border-radius: 1.7857142857vw;
    -webkit-border-radius: 1.7857142857vw;
    -moz-border-radius: 1.7857142857vw;
    -ms-border-radius: 1.7857142857vw;
    -o-border-radius: 1.7857142857vw;
  }
  .contact-links li {
    font-size: 2.8571428571vw; /* calc((16 / 560) * 100vw); */
    gap: 0 1.4285714286vw; /* calc((8 / 560) * 100vw); */
    padding: 0 4.4642857143vw; /* calc((25 / 560) * 100vw); */
  }
  .contact-links li img {
    width: 4.2857142857vw; /* calc((24 / 560) * 100vw); */
  }
  .contact-call {
    padding: 3.5714285714vw 0; /* calc((20 / 560) * 100vw); */
    margin-top: 5.3571428571vw; /* calc((30 / 560) * 100vw); */
    border-radius: 1.7857142857vw;
    -webkit-border-radius: 1.7857142857vw;
    -moz-border-radius: 1.7857142857vw;
    -ms-border-radius: 1.7857142857vw;
    -o-border-radius: 1.7857142857vw;
  }
  .contact-call a {
    font-size: 5.8928571429vw; /* calc((33 / 560) * 100vw); */
    gap: 0px 3.0357142857vw; /* calc((17 / 560) * 100vw); */
  }
  .contact-call img {
    width: 7.1428571429vw; /* calc((40 / 560) * 100vw); */
  }
}