/* 기본 설정 */
:root {
  --main-teal: #36656B;
  --point-gold: #D6B47B;
  --sub-gold: #E7DECD;
  --text-dark: #333;
  --text-gray: #777;
  --white: #ffffff;
}

* { 
  margin: 0; 
  padding: 0; 
  box-sizing: border-box; 
}

body { 
  font-family: 'Pretendard' , 'Noto Sans KR', sans-serif; 
  color: var(--text-dark); 
}

.container { 
  max-width: 1600px; 
  margin: 0 auto; 
  padding: 0 4%; 
}

.container-100 { 
  max-width: 1920px; 
  margin: 0 auto; 
  padding: 0 4%; 
}

/* 1. 상단 공지 */
.top-notice-bar { 
  background: var(--sub-gold); 
  color: var(--main-teal); 
  font-size: 15px; 
  padding: 10px 0; 
}
.notice-content { 
  display: flex; 
  justify-content: space-between; 
  align-items: center; 
}

.notice-text{
  flex: 1;
  text-align: center;
  display: flex;    
  align-items: center;
  justify-content: center;
}

.notice-text img{
  width: 36px;
  height: 36px;
  margin-right: 10px;
}

.notice-text span { 
  color: var(--main-teal); 
  font-weight: 700; 
  margin-right: 10px; 
}

.notice-btns button { 
  background: none; 
  border: none; 
  color: #888; 
  cursor: pointer; 
  font-size: 12px; 
  margin-left: 20px; 
}

.notice-btns .btn-today-hide { 
  border-bottom: 1px solid #888;
  padding-bottom: 2px; 
}

/* 2. 헤더 */
header { 
  height: 90px; 
  display: flex; 
  align-items: center; 
  border-bottom: 1px solid #f0f0f0; 
  background: #fff; 
  position: sticky; 
  top: 0; 
  z-index: 100; 
}

.header-inner { 
  display: flex; 
  justify-content: space-between; 
  align-items: center; 
  width: 100%; 
}

.menu-bar{
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.menu-bar ul{
  display: flex;
  align-items: center;
}

.menu-bar ul li{
  display: flex;
  align-items: center;
  background: var(--main-teal);
  color: #fff;
  height: 70px;
  padding: 15px 30px;
	font-size: 18px;
  font-weight: 500;
	border-top-left-radius: 10px;
	cursor: pointer;
}

.menu-bar ul li:last-child{
  background-color: #E7DECD;
  color: var(--main-teal);
	border-top-left-radius: 0;
	border-top-right-radius: 10px;
	cursor: default;
}

.menu-bar ul li img{
		width: 48px;
    height: 48px;
    border-radius: 50%;
		margin-right: 10px;
}

.logo { 
  font-family: 'Noto Sans KR', sans-serif; 
  font-size: 26px;
  letter-spacing: 1px; 
}

.logo a{
  text-decoration: none;
  color: var(--main-teal);
}

.logo span { 
  font-size: 18px; 
  color: #555; 
  font-weight: 400; 
  margin-left: 4px; 
}

.nav-menu { 
  display: flex; 
  list-style: none; 
  gap: 35px; 
}

.nav-menu a { 
  text-decoration: none; 
  color: var(--text-dark); 
  font-weight: 500; 
  font-size: 16px; 
  transition: 0.3s; 
}

.nav-menu a:hover { 
  color: var(--main-teal); 
}

.header-inner .mb-nav-btn,
.header-inner .mb-nav-wrap{
  display: none;
}

.header-inner .mb-nav-btn img{
  width: 24px;
}

/* 3. 메인 비주얼 */
.main-visual { 
  height: 750px; 
  position: relative;
  overflow: hidden;
}

.main-swiper {
  width: 100%;
  height: 100%;
}

.main-swiper .swiper-slide {
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
}

.main-swiper .slide-01 { 
  background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)), url('../images/main-visual-01.png') no-repeat center/cover; 
}

.main-swiper .slide-02 { 
  background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)), url('../images/main-visual-01.png') no-repeat center/cover; 
}

.main-swiper .visual-text-box { 
  color: var(--white); 
  max-width: 1000px;
  margin: 0 auto;
  text-shadow: 0 2px 15px rgba(0,0,0,0.3); 
}

.main-desc { 
  font-size: 24px;
  line-height: 1.6; 
  font-weight: 400;
  text-align: center;
  word-break: keep-all;
}

.main-visual .swiper-button-next,
.main-visual .swiper-button-prev {
  width: 60px;
  height: 60px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
}

.main-visual .swiper-button-next::after,
.main-visual .swiper-button-prev::after {
  font-size: 20px;
  color: #fff;
  font-weight: bold;
}

.main-visual .swiper-button-next:hover,
.main-visual .swiper-button-prev:hover {
  background: var(--main-teal); /* 호버 시 메인 컬러로 변경 */
  border-color: var(--main-teal);
  transform: scale(1.1);
}

/* 4. 컨텐츠 섹션 */
.section { 
  padding: 120px 20px 40px; 
  text-align: center; 
}

.section-title { 
  font-family: 'Noto Sans KR', sans-serif; 
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 80px; 
  position: relative; 
  padding-bottom: 15px; 
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-title .highlight{
  background: linear-gradient(to top, #C8E5E8 40%, transparent 40%);
  padding: 0 4px;
  display: inline-block;
}

.section-title p{
  position: absolute;
  left: 50%;
  top: -15px;
  transform: translateX(-490%);
}

.section-title p:last-child{
  top: unset;
  bottom: -15px;
  transform: translateX(400%);
}

.special-grid { 
  display: flex; 
  justify-content: center; 
  /* gap: 30px; */
}

.special-item {
  margin-left: -40px;
  transition: 0.3s; 
}

.circle-box { 
  width: 350px; 
  height: 350px; 
  border-radius: 50%; 
  background: #fff; 
  border: 1px solid #e0e0e0; 
  margin: 0 auto 25px; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  overflow: hidden; 
  transition: 0.3s; 
  flex-direction: column;
}

.special-item:hover .circle-box { 
  transform: scale(1.05); 
  border-color: var(--main-teal); 
  box-shadow: 0 10px 25px rgba(54, 101, 107, 0.1);
}

.special-item:nth-child(1) .circle-box{
  background-color: #C9E5E8;
}

.special-item:nth-child(3) .circle-box{
  background-color: #C9E5E8;
}

/* 마우스 호버시 내용 */
.special-item:nth-child(1):hover .circle-box{
  background: url(../images/section-img03.png) no-repeat center center;
}

.special-item:nth-child(2):hover .circle-box{
  background: url(../images/section-img03.png) no-repeat center center;
}

.special-item:nth-child(3):hover .circle-box{
  background: url(../images/section-img03.png) no-repeat center center;
}

.special-item:nth-child(1):hover p{
  color: var(--white);
}

.special-item:nth-child(2):hover p{
  color: var(--white);
}

.special-item:nth-child(3):hover p{
  color: var(--white);
}

.special-item div { 
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px; 
  color: var(--main-teal); 
}

.special-item p { 
  color: var(--text-gray); 
  font-size: 16px; 
  line-height: 1.5; 
}

/* 섹션 2: 패럴랙스 및 플렉스 레이아웃 */
.clinic-section {
    position: relative;
    background-color: var(--main-teal); /* 배경색: 메인컬러 */
    padding: 120px 0;
    overflow: hidden;
}

/* 이미지 컨테이너: 상하좌우 20px 여백 및 중앙 정렬 */
.parallax-bg-container {
    position: absolute;
    top: 20px; bottom: 20px; left: 20px; right: 20px;
    z-index: 1;
    overflow: hidden;
    border-radius: 20px;
}

.inner-image {
    width: 100%;
    height: 120%; /* 패럴랙스 효과를 위해 이미지 높이를 더 길게 설정 */
    position: absolute;
    top: 0; left: 0;
    background: url('clinic-bg.jpg') no-repeat center/cover;
    background-attachment: fixed; /* 핵심: 배경 이미지가 스크롤 시 고정됨 */
    filter: brightness(0.4); /* 텍스트 가독성을 위해 이미지 어둡게 처리 */
}

/* 컨텐츠 레이아웃 */
.clinic-content {
  position: relative;
  z-index: 2; /* 이미지 위로 올라오게 설정 */
  color: var(--white);
  background: var(--main-teal) url(../images/clinic-section-bg.png) no-repeat center;
  padding: 4%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: 94%;
  height: 700px;
}


/* 좌측 텍스트 상자 */
.text-box {
  
}

.text-box p {
  width: 87%;
  max-width: 640px;
  height: 430px;
  font-size: 25px;
  line-height: 1.6;
  word-break: keep-all;
  background: rgba(255, 255, 255, 0.3);
  padding: 30px 40px;
  border-radius: 15px;
  margin-right: 100px;
  text-align: left;
}

.text-box p strong{
  font-size: 30px;
}

.text-box p span {
  color: var(--point-gold);
}

/* 우측 아이콘 그룹 */
.icon-box-group {
  width: 41%;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 30px;
}

.icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(0, 0, 0, 0.5);
  padding: 15px;
  border-radius: 15px;
  width: 155px;
  height: 155px;
}

.icon-circle {
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  transition: 0.3s;
}

.icon-item:hover .icon-circle {
  background: var(--main-teal);
}

.icon-item span {
  font-size: 14px;
  font-weight: 500;
}

/* 의료진 소개 */
.doctor-profile {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1280px;
  position: relative;
  margin: 0 auto;
  margin-top: 185px;
}

.doctor-img{
  width: 480px;
  height: 720px;
  border-radius: 40px 0 40px 0;
  margin-right: 34%;
}

.doctor-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 40px 0 40px 0;
  position: relative;
}

.doctor-img::after{
  content: "";
  display: inline-block;
  width: 480px;
  height: 720px;
  border: 10px solid var(--main-teal);
  border-radius: 40px 0 40px 0;
  position: absolute;
  left: 134px;
  top: -38px;
  z-index: -1;
}

.doctor-detail{
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 30px;
  padding: 50px 100px 50px 170px;
  width: 56%;
  position: absolute;
  right: 0;
  bottom: 6px;  
  z-index: -1;
}

.doctor-detail .detail-con{
  display: flex;
  align-items: center;
}

.doctor-detail .detail-con + .detail-con{
  margin-top: 20px;
}

.doctor-detail .detail-con .name{
  font-size: 35px;
  font-weight: 700;
}
.doctor-detail .detail-con .posi-01{
  font-size: 35px;
}
.doctor-detail .detail-con .posi-02{
  font-size: 28px;
}
.doctor-detail .detail-con .history{
  width: 100%;
  background: var(--main-teal);
  border-radius: 150px;
  padding: 10px;
  color: #fff;
  margin-bottom: 20px;
}

.doctor-detail .history-txt{
  text-align: left;
  font-size: 16px;
  color: #888;
}

.doctor-detail .line{
  margin: 20px 0;
  width: 100%;
  height: 1px;
  background-color: #eee;
} 

/* 의료장비 소개 */
.section-04{
  background: url(../images/section-bg.png) no-repeat center/100%;
  margin-top: 120px;
}

.medical-content{
  position: relative;  
}

.medical-slider {
  width: 100%;
  padding: 50px 0;
  overflow: hidden;  
}

.medical-slider .swiper-slide {
  height: 300px; /* 고정 높이 혹은 최소 높이 설정 */
  background: #f9f9f9;
  border-radius: 20px;
  box-sizing: border-box;
  padding: 30px;
}

.medical-slider .slide-content{
  display: flex;
  height: 100%;
}

.slide-content {
  display: flex;
  width: 100%;
  height: 100%;
  position: relative;
}

.text-area {
  flex: 1;
  text-align: left;
}

.text-area div.name {
  font-size: 24px;
  color: #333;
  margin-bottom: 15px;
}

.text-area p {
  font-size: 16px;
  color: #666;
  line-height: 1.5;
}

/* 우측 하단 이미지 영역 */
.image-area {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 50%; /* 이미지 크기 조절 */
}

.image-area img {
  width: 100%;
  display: block;
  object-fit: contain;
}

.medical-slider .swiper-button-prev, 
.medical-slider .swiper-button-next {
  color: #333;
  top: 45%;
}

.medical-slider .swiper-button-prev:after, 
.medical-slider .swiper-button-next:after {
  font-size: 24px;
  font-weight: 700;
}

.medical-slider .swiper-pagination-progressbar {
  background: #e0e0e0; 
  height: 4px;
  bottom: 0 !important;
  top: auto !important;
  border-radius: 2px;
}

.medical-slider .swiper-pagination-progressbar-fill {
  background: var(--main-teal) !important;
}

.section-05{
  background-color: #F0F6F6;
  margin-top: 80px;
}

/* 둘러보기 */
.facility-section { 
  text-align: center; 
}

.facility-menu.swiper-pagination-bullets {
  position: static;
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
}

.facility-menu .swiper-pagination-bullet {
  width: auto;
  height: auto;
  padding: 12px 25px;
  border-radius: 0;
  background: #F9F9F9;
  color: #666;
  font-size: 18px;
  font-weight: 500;
  opacity: 1;
  transition: all 0.3s;
  margin: 0 !important;
}

.facility-menu .swiper-pagination-bullet-active {
  background: var(--main-teal);
  color: #fff;
  border-color: var(--main-teal);
}

.facility-slider { 
  width: 100%; 
  max-width: 1000px; 
  margin: 0 auto; 
}

.facility-slider .img-box {
  width: 100%;
  height: 500px;
  border-radius: 20px;
  overflow: hidden;
  background: #eee;
}
.facility-slider .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.facility-info {
  width: 100%;
  font-size: 20px;
  font-weight: 600;
  background: rgba(0, 0, 0, 0.5);
  padding: 10px 0;
  color: #fff;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 0 0 20px 20px;
  text-align: center;
}

/* 하단-오시는길 */
.map-content{
  display: flex;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.map-content .map-area{
  width: 60%;
  height: 450px;
}

.map-content .map-area img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.map-content .station-info{
  width: 40%;
  height: 450px;
  background-color: var(--main-teal);
  padding: 30px 40px;
  color: #fff;
  border-radius: 0 20px 20px 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.map-content .station-info .info-txt{}

.map-content .station-info .info-txt p{
  font-size: 30px;
  padding-bottom: 15px;
}

.map-content .station-info .info-txt .tel{
  font-size: 30px;
}

.map-content .station-info .info-txt .addr{
  font-size: 20px;
  margin: 15px 0 30px;
  display: flex;
  align-items: center;
}

.map-content .station-info .info-txt .addr img{
  margin-right: 10px;
}

.map-content .station-info .time-table{
  display: flex;
  align-items: flex-start;
  border-top: 1px solid #fff;
  padding-top: 30px;
}

.map-content .station-info .time-table p{
  font-size: 18px;
  font-weight: 700;
  margin-right: 30px;
}

.map-content .station-info .time-table .item{
  display: flex;
  align-items: center;
  font-size: 18px;
}

.map-content .station-info .time-table .item + .item{
  margin-top: 14px;
}

.map-content .station-info .time-table .item span{
  margin-right: 20px;
  width: 50px;
}

/* 푸터 */
footer{
  background-color: #F6F6F6;
  padding: 24px 0 100px;
  margin-top: 80px;
}

.footer-links{
  display: flex;
  align-items: center;
  list-style: none;
  flex-wrap: wrap;
}

.footer-links li{
  position: relative;
}

.footer-links li a{
  text-decoration: none;
  color: var(--main-teal);
  margin: 0 20px;
}

.footer-links li a::after{
  content: "";
  display: none;
  background-color: var(--main-teal);
  width: 1px;
  height: 16px;
  position: absolute;
  top: 6px;
  right: 0;
}

.footer-links li:first-child a{
  margin-left: 0;
}

.footer-line {
  width: 100%;
  height: 1px;
  background-color: #D3D3D3;
  margin: 20px 0 30px;
}

.footer-info{
  font-size: 15px;
  color: #888;
  margin-top: 20px;
}

/* 하단 메뉴 */
.bottom-menu{
  background-color: #fff;
  position: fixed;
  width: 100%;
  max-width: 800px;
  left: 50%;
  transform: translateX(-50%);
  bottom: 20px;
  z-index: 90;
  border-radius: 10px;
  box-shadow: 0 0 8px #e9e9e9;
}

.bottom-menu ul{
  display: flex;
  align-items: center;
  list-style: none;
  justify-content: center;
}

.bottom-menu ul li{
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 22%;
  padding: 15px;
  cursor: pointer;
}

.bottom-menu ul li img{
  width: 30px;
  height: 30px;
  margin-bottom: 4px;
}

.bottom-menu ul li p{
  color: var(--main-teal);
}

/* 서브페이지 */
.sub-top-img{
  background: url(../images/sub-01-bg.png) no-repeat center/cover;
  width: 100%;
  height: 500px;
  position: relative;
}

/* 진료과목 */
.sub-top-img .sub-tit{
  width: 100%;
  height: 100%;
  max-width: 1600px;
  margin: 0 auto;
  position: relative;
}

.sub-top-img .sub-tit p{
  position: absolute;
  left: 4%;
  top: 50%;
  transform: translateY(-50%);
  font-size: 40px;
  font-weight: 700;
  color: #fff;
  padding: 10px 0;
  border-top: 5px solid var(--point-gold);
  border-bottom: 5px solid var(--point-gold);
}

.sub-main-top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 120px;
}

.sub-main-txt{
  width: 65%;
}

.sub-main-txt .sub-icon{
  width: 110px;
  height: 110px;
}

.sub-main-txt .sub-icon img{
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.sub-main-txt .txt-wrap p{
  font-size: 30px;
  font-weight: 500;
  margin: 40px 0 24px;
}

.sub-main-txt .txt-wrap div{
  font-size: 20px;
  width: 80%;
  word-break: keep-all;
}

.sub-main-img{
  width: 430px;
  height: 430px;
}

.sub-main-img img{
  width: 100%;
  height: 100%;
}

.sub01-medical-wrap{
  background: url(../images/sub01-medi-bg.png) no-repeat 0 0;
  background-size: cover;
  padding: 120px 4%;
}

.sub01-medical-wrap .sub-tit{
  font-size: 30px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-bottom: 90px;
}

.sub01-medical-wrap ul{
  list-style: none;
  max-width: 1080px;
  width: 100%;
  margin: 0 auto;
}

.sub01-medical-wrap ul li{
  display: flex;
  align-items: flex-start;
  padding-bottom: 60px;
  border-bottom: 1px solid #fff;
  margin-bottom: 60px;
}

.sub01-medical-wrap ul li:last-child{
  border: none;
  margin-bottom: 0;
}

.sub01-medical-wrap ul li .icon-img{
  margin-right: 60px;
}

.sub01-medical-wrap ul li .icon-img img{
  width: 120px;
}

.sub01-medical-wrap ul li .txt-wrap{
  margin-top: 10px;
}

.sub01-medical-wrap .txt-wrap .medi-tit{
  font-size: 26px;
  font-weight: 700;
  color: #fff;
}

.sub01-medical-wrap .txt-wrap .chk-wrap{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 25px;
}

.sub01-medical-wrap .txt-wrap .chk-item{
  display: flex;
  align-items: center;
  margin-right: 80px;
  margin-top: 20px;
  width: 205px;
}

.sub01-medical-wrap .txt-wrap .chk-item img{
  width: 24px;
}

.sub01-medical-wrap .txt-wrap .chk-item span{
  font-size: 22px;
  font-weight: 500;
  color: #fff;
  margin-left: 20px;
}

.sub01-more-wrap{
  width: 100%;
  max-width: 1400px;
  margin: 0 auto 90px;
  padding: 0 4%;
}

.sub01-more-wrap .sub-tit{
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  margin-top: 120px;
  margin-bottom: 90px;
}

.sub01-more-wrap ul{
  display: flex;
  flex-direction: column;
}

.sub01-more-wrap ul li{
  display: flex;
  align-items: flex-start;
}

.sub01-more-wrap ul li + li{
  margin-top: 60px;
}

.sub01-more-wrap ul li .txt-wrap{
  margin-left: 40px;
}

.sub01-more-wrap ul li .txt-wrap .medi-tit{
  font-size: 26px;
  font-weight: 700;
  padding-bottom: 24px;
  border-bottom: 1px solid #ededed;
  margin-bottom: 24px;
}

.sub01-more-wrap ul li .more-item-wrap{
  display: flex;
  flex-direction: column;
}

.sub01-more-wrap ul li .more-tit{
  display: flex;
  align-items: center;
  font-size: 18px;
  font-weight: 500;
  color: var(--main-teal);
  margin-bottom: 15px;
}

.sub01-more-wrap ul li .more-tit::before{
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--main-teal);
  margin-right: 10px;
}

.sub01-more-wrap ul li .more-txt{
  margin-left: 20px;
  margin-bottom: 24px;
  line-height: 1.5;
  color: #4b4b4b;
}

.sub01-more-wrap .icon-img img{
  width: 280px;
  height: 280px;
}

.sub-banner{
  width: 100%;
  text-align: center;
}

.sub-banner img{
  width: 100%;
  max-width: 1920px;
}

.sub-banner .sub04-banner-mb{
  display: none;
}

/* 건강검진 */
.sub-top-img.sub02{
  background: url(../images/sub-02-bg.png) no-repeat center/cover;
}

.health-ico-list{
  background: var(--main-teal) url(../images/health-list-bg.png) no-repeat center/cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 70px 0 70px;
  margin: 120px 0;
}

.health-ico-list .list-tit{
  font-size: 30px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 70px;
}

.health-ico-list ul{ 
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1300px;
}

.health-ico-list ul li{ 
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 40px;
}

.health-ico-list ul li img{
  width: 130px;
  height: 130px;
}

.health-ico-list ul li p{
  background-color: #fff;
  padding: 8px 24px;
  border-radius: 100px;
  color: #333;
  display: flex;
  justify-content: center;
  font-size: 20px;
  font-weight: 500;
  margin-top: 30px;
}

.intro-link-banner{
  background: url(../images/intro-link-bg.png) no-repeat center/cover;
  margin: 60px auto;
  width: 100%;
  max-width: 1400px;
  height: 400px;
  border-radius: 20px;
  padding: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.intro-link-banner .banner-txt{
  color: #fff;
  text-align: center;
  font-size: 24px;
  text-shadow: 0 0 4px #999;
}

.intro-link-banner .link-btn{
  background-color: #fff;
  text-decoration: none;
  color: var(--point-gold);
  display: flex;
  align-items: center;
  padding: 10px 40px;
  border-radius: 100px;
  font-size: 20px;
  font-weight: 500;
  margin-top: 50px;
}

.intro-link-banner .link-btn img{
  margin-left: 12px;
  width: 12px;
}

.health-info-wrap{
  width: 100%;
  max-width: 1200px;
  margin: 100px auto 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.health-info-wrap.mb{
  display: none;
}

.health-info-wrap .health-tit{
  font-size: 30px;
  font-weight: 700;
  color: #333;
  margin-bottom: 90px;
}

.health-info-wrap .info-list{
  margin-top: 50px;
}

.health-info-wrap .info-list ul{
  display: flex;
  flex-direction: column;
  align-items: center;
  list-style: none;
}

.health-info-wrap .info-list ul li{
  display: flex;
  align-items: flex-end;
  position: relative;
}

.health-info-wrap .info-list ul li + li{
  margin-top: 180px;
}

.health-info-wrap li .list-txt{
  background-color: var(--main-teal);
  padding: 40px 35px;
  border-radius: 20px 0 20px 0;
  color: #fff;
  width: 460px;
  height: auto;
  min-height: 360px;
}

.health-info-wrap li .list-txt::before{
  content: "";
  width: 460px;
  height: 360px;
  border: 10px solid var(--sub-gold);
  position: absolute;
  left: -45px;
  top: -45px;
  z-index: -1;
}

.health-info-wrap .list-txt p{
  font-size: 24px;
  font-weight: 700;
  padding-bottom: 20px;
  border-bottom: 1px solid #fff;
  margin-bottom: 20px;
}

.health-info-wrap .list-txt div{
  font-size: 17px;
  font-weight: 300;
}

.health-info-wrap .list-txt div .info{
  margin-top: 6px;
  font-size: 14px;
}

.health-info-wrap .list-subject{
  background-color: #fff;
  box-shadow: 4px 0 8px #e1e1e1;
  padding: 30px 35px;
  border-radius: 0 20px 0 0;
  min-width: 420px;
}

.health-info-wrap li.reverse .list-txt{
  border-radius: 0 20px 0 20px;
}

.health-info-wrap li.reverse .list-txt::before{
  content: "";
  left: unset;
  right: -45px;
  top: -45px;
  z-index: -1;
}

.health-info-wrap .reverse .list-subject{
  border-radius: 20px 0 0 0;
  box-shadow: -4px 0 8px #e1e1e1;
}

.health-info-wrap .list-subject > p{
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
}

.health-info-wrap .list-subject .tag-line{
  display: flex;
  align-items: center;
}

.health-info-wrap .list-subject .tag-line + .tag-line{
  margin-top: 15px;
}

.health-info-wrap .list-subject .tag-line p{
  font-size: 16px;
  font-weight: 400;
}

.health-info-wrap .list-subject .tag-line p::before{
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  background-color: var(--main-teal);
  border-radius: 50%;
  margin-bottom: 1px;
  margin-right: 6px;
}

.health-info-wrap .list-subject .tag-line p + p{
  margin-left: 25px;
}

.text-box-wrap{
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin: 120px auto;
}

.text-box-wrap .box{
  width: 49%;
  height: 280px;
  border-radius: 20px 0 20px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.text-box-wrap .box:first-child{
  background: url(../images/box-img-01.png) no-repeat center/cover;
}

.text-box-wrap .box:last-child{
  background: url(../images/box-img-02.png) no-repeat center/cover;
}

.text-box-wrap .box p{
  color: #fff;
  text-shadow: 0 0 4px #999;
  text-align: center;
  font-size: 28px;
}

/* 특화클리닉 */
.sub-top-img.sub03{
  background: url(../images/sub-03-bg.png) no-repeat center/cover;
}

.sub03-intro-wrap{
  background-color: var(--main-teal);
  width: 100%;
  height: auto;
  padding: 70px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sub03-intro-wrap img:nth-child(1){
  width: 90px;
}

.sub03-intro-wrap img:nth-child(2){
  margin: 50px 0;
  width: 650px;
}

.sub03-intro-wrap p{
  font-size: 20px;
  font-weight: 300;
  text-align: center;
  color: #fff;
}

.special-list-wrap{
  max-width: 1400px;
  margin: 0 auto;
  background: url(../images/special-info-bg.png) no-repeat;
  background-position: center 0;
  background-size: contain;
}

.special-list-wrap > p{
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  margin-top: 120px;
  margin-bottom: 70px;
}

.special-list-wrap ul{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  list-style: none;
  margin-top: 20%;
  margin-bottom: 90px;
}
.special-list-wrap ul li{
  width: 49%;
  height: 400px;
  border-radius: 20px 0 20px 0;
  padding: 30px 25px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  margin-bottom: 28px;
}

.special-list-wrap ul li:nth-child(2n){
  margin-top: -13%;
}

.special-list-wrap ul li:nth-child(1){
  background: url(../images/sub03-list-01.png) no-repeat center/cover;
}
.special-list-wrap ul li:nth-child(2){
  background: url(../images/sub03-list-02.png) no-repeat center/cover;
}
.special-list-wrap ul li:nth-child(3){
  background: url(../images/sub03-list-03.png) no-repeat center/cover;
}
.special-list-wrap ul li:nth-child(4){
  background: url(../images/sub03-list-04.png) no-repeat center/cover;
}
.special-list-wrap ul li:nth-child(5){
  background: url(../images/sub03-list-05.png) no-repeat center/cover;
}

.special-list-wrap ul li:nth-child(6){
  background: url(../images/sub03-list-06.png) no-repeat center/cover;
}

.special-list-wrap li > p{
  font-size: 28px;
  font-weight: 700;
  color: #222222;
}

.special-list-wrap li .txt{
  font-size: 18px;
  font-weight: 400;
  color: #484848;
  max-width: 420px;
  margin: 15px 0;
}

.special-list-wrap .tag-wrap{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  max-width: 420px;
}

.special-list-wrap .tag-wrap div{
  padding: 4px 10px;
  border: 1px solid var(--main-teal);
  border-radius: 100px;
  color: var(--main-teal);
  font-size: 15px;
  margin: 10px 5px 0;
}

.location-info-wrap{
  width: 100%;
  max-width: 1200px;
  margin: 120px auto;
}

.location-info-wrap .location-box{
  display: flex;
  align-items: flex-end;
  padding-left: 50px;
}

.location-info-wrap .location-box .info-box{
  background-color: #fff;
  box-shadow: 5px 5px 6px #ededed;
  padding: 30px 80px 30px 0;
  border-radius: 0 20px 0 0;
  min-width: 500px;
  margin-left: -100px;
}

.location-box .info-box p{
  font-size: 30px;
  border-top: 5px solid var(--point-gold);
  padding-top: 30px;
  padding-left: 30px;
}

.location-box .info-box .tel{
  padding-left: 30px;
  font-size: 30px;
  color: var(--main-teal);
  margin: 20px 0;
}

.location-box .info-box .time-table{
  padding-left: 30px;
  display: flex;
  align-items: center;
}

.location-box .info-box .time-table .item{
  display: flex;
  align-items: center;
  color: #888888;
}

.location-box .info-box .time-table .item + .item{
  margin-left: 20px;
}

.location-box .info-box .time-table .item span{
  margin-right: 20px;
}

.location-box .info-box .addr{
  padding-left: 30px;
  font-size: 18px;
  display: flex;
  align-items: center;
  margin-top: 24px;
}

.location-box .info-box .addr img{
  margin-right: 10px;
}

/* 의료진 소개 */
.sub-top-img.sub05{
  background: url(../images/sub-05-bg.png) no-repeat center/cover;
}

.page-tab-wrap{
  max-width: 1200px;
  margin: 0 auto;
}

.page-tab-wrap ul{
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 0;
}
.page-tab-wrap ul .page-tab{
  width: 34%;
  padding: 15px;  
  text-align: center;
  font-size: 18px;
  cursor: pointer;
}

.page-tab-wrap ul .page-tab.on{
  background-color: var(--main-teal);
  border-radius: 0;
  color: #fff;
  font-weight: 500;
}

.sub05-sec01{
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 120px 0;
}

.sub05-sec01 p{
  font-size: 30px;
  font-weight: 700;
}

.sub05-sec01 div{
  font-size: 22px;
  margin: 20px 0 90px;
}

.sub05-sec01 img{
  width: 100%;
  max-width: 1920px;
}

.facility-info-wrap{
  margin: 120px 0 -80px;
  background-color: #e6eced;
  padding: 80px 0;
}

.facility-info-wrap .txt-box{
  display: flex;
  flex-direction: column;
  align-items: center;
}

.facility-info-wrap .txt-box .sub-tit{
  font-size: 30px;
  font-weight: 700;
}

.facility-info-wrap .txt-box div{
  font-size: 18px;
  color: #666;
  margin: 20px 0 90px;
}

/* 검사/장비 */
.sub-top-img.sub04{
  background: url(../images/sub-04-bg.png) no-repeat center / cover;
}

.sub04-list-wrap{
  background: url(../images/sub04-list-bg.png) no-repeat 0 0;
  background-size: cover;
  padding: 120px 4%;
  margin-top: 120px;
}

.sub04-list-wrap .sub-tit{
  font-size: 30px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-bottom: 90px;
}

.sub04-list-wrap ul{
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1920px;
}

.sub04-list-wrap ul li{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 310px;
  min-height: 310px;
  padding: 30px 0;
  border: 1px solid #fff;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.3);
  margin: 15px;
}

.sub04-list-wrap ul li img{
  width: 130px;
  height: 130px;
}

.sub04-list-wrap ul li p{
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin: 20px 0 10px;
}

.sub04-list-wrap ul li p span{
  display: block;
  text-align: center;
  font-size: 16px;
}

.sub04-list-wrap ul li .small{
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  line-height: 1.6;
}

.sub04-eqip-wrap {
  margin-top: 120px;
  margin-bottom: 100px;
}

.sub04-eqip-wrap .sub-tit{
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 90px;
}

.sub04-eqip-wrap ul{
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  flex-wrap: wrap;
}

.sub04-eqip-wrap ul li{
  border: 1px solid #ddd;
  padding: 30px;
  border-radius: 20px;
  position: relative;
  width: 40%;
  height: 430px;
  margin: 20px;
}

.sub04-eqip-wrap ul li .txt-posi{}

.sub04-eqip-wrap ul li .txt-posi p{
  font-size: 24px;
  font-weight: 700;
  color: var(--main-teal);
}
.sub04-eqip-wrap ul li .txt-posi .eng-tit{
  font-size: 18px;
  font-weight: 500;
  margin: 10px 0;
}

.sub04-eqip-wrap ul li .txt-posi div:last-child{
  font-size: 14px;
  color: #888;
  line-height: 1.4;
}

.sub04-eqip-wrap ul li img{
  position: absolute;
  right: 0;
  bottom: 0;
  width: 300px;
  height: 300px;
}

/* 서브 오시는길 */
.sub-top-img.sub06 {
  background: url(../images/sub-06-bg.png) no-repeat center / cover;
}

.map-content.sub06{
  margin-top: 120px;
}

.sub06-link-con{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1200px;
  margin: 50px auto;
}

.sub06-link-con .sub06-link{
  width: 100%;
  display: flex;
  align-items: center;
  padding: 30px 20px;
  background: #FAFAFA;
}

.sub06-link-con .sub06-link:first-child{
  background-color: #F5F5F5;
}

.sub06-link-con .sub06-link img{
  width: 68px;
  height: 68px;
}

.sub06-link-con .sub06-link .link-txt{
  margin-left: 25px;
}

.sub06-link-con .sub06-link .link-txt p{
  font-size: 22px;
  font-weight: 700;
}

.sub06-link-con .sub06-link .link-txt div{
  font-size: 17px;
  color: #666;
  margin-top: 8px;
}

.sub06-list-con{
  max-width: 1200px;
  margin: 0 auto;  
}

.sub06-list-con .sub06-list{
  border: 1px solid var(--point-gold);
  margin-bottom: 50px;
  padding: 20px;
}

.sub06-list-con .sub06-list .top-txt{
  display: flex;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--point-gold);
  margin-bottom: 10px;
}

.sub06-list-con .sub06-list .top-txt img{
  width: 70px;
}
.sub06-list-con .sub06-list .top-txt p{
  margin-left: 24px;
  font-size: 26px;
  font-weight: 700;
}
.sub06-list-con .sub06-list .bt-txt{
  margin-top: 20px;
  font-size: 18px;
  font-weight: 500;
  color: var(--main-teal);
}

.sub06-list-con .sub06-list .bt-txt .line{
  display: flex;
  align-items: center;
  color: #333;
}

.sub06-list-con .sub06-list .bt-txt .line + .line{
  margin-top: 15px;
}

.sub06-list-con .sub06-list .bt-txt .line img{
  margin-right: 10px;
}

.sub06-list-con .sub06-list:nth-child(3) .bt-txt{
  display: flex;
  color: #333;
}

.sub06-list-con .sub06-list:nth-child(3) .left-txt{
  margin-right: 30px;
}

.sub06-list-con .sub06-list:nth-child(3) .right-txt p {
  font-weight: 400;
  color: #666;
}

.sub06-list-con .sub06-list:nth-child(3) .right-txt p + p{
  margin-top: 15px;
}

.sub-banner .sub06-banner-mb{
  display: none;
}

/* 미디어쿼리 */

@media (max-width: 1080px) {
	.menu-bar{
		display: none;
	}

  .nav-menu { 
    gap: 20px; 
  }

  .nav-menu a { 
    font-size: 15px; 
  }

  .visual-text-box h2 { 
    font-size: 40px; 
  }

  .special-grid { 
    gap: 20px; 
  }

  .text-box {
    width: 50%;
  }

  .text-box p{
    font-size: 22px;
    margin-right: 0;
  }

  .icon-box-group{
    width: 45%;
  }

  .icon-item{
    width: 130px;
    height: 130px;
  } 

}

@media (max-width: 768px) {
  .notice-content { 
    flex-direction: column; 
    gap: 8px; 
    text-align: center; 
  }

  .notice-btns { 
    margin-top: 5px; 
  }

  .btn-today-hide { 
    margin-left: 0; 
  }

  header { 
    height: 60px; 
  }

  .header-inner{
    justify-content: center;
    position: relative;
  }

  .header-inner .mb-nav-btn{
    display: block;
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
  }

  .header-inner .mb-nav-wrap{
    display: block;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0; 
    left: -100%;
    z-index: 1000;
    transition: 0.4s ease;
    box-sizing: border-box;
    background-color: rgba(0, 0, 0, 0.6);
  }

  .mb-nav-content{
    width: 86%; 
    height: 100%;     
    background: var(--main-teal); 
  }

  .header-inner .mb-nav-wrap.active{
    left: 0;
  }

  .mb-nav-header{
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    padding: 17px 20px;
    background-color: #fff;
  }

  .mb-nav-header .menu-logo{
    flex: 1;
    text-align: center;
  }

  .mb-nav-header .menu-logo img{
    width: 84px;
  }

  .mb-nav-link{
    margin: 20px 5%;
  }

  .mb-nav-link .mb-link{ 
    display: flex;
    align-items: center;
    margin-bottom: 20px;
  }

  .mb-nav-link .mb-link p{
    font-weight: 700;
    color: #fff;
    margin: 0 8px;
  }

  .mb-nav-close img{
    width: 20px;
  }

  .mb-menu-img {
    margin: 10px 10px;
  }
  .mb-menu-img img{
    width: 100%;
  }

  .mb-nav-menu { 
    list-style: none; 
    padding: 0 20px 20px; 
  }

  .mb-nav-menu li a { 
    display: block;
    padding: 22px 0; 
    font-size: 17px; 
    color: #fff; 
    border-bottom: 1px solid var(--point-gold);
    text-decoration: none;
  }

  .logo { 
    font-size: 22px; 
  }
  .logo span { font-size: 15px; }
  
  /* pc-메뉴 숨기기 */
  .nav-menu { 
    display: none; 
  }  

  .health-info-wrap.pc{
    display: none;
  }

  .health-info-wrap.mb{
    display: block;
    margin: 60px auto 60px;
  }

  .bottom-menu{
    bottom: 0;
    border-radius: 0;
  }

  .bottom-menu ul li{
    text-align: center;
    padding: 14px 10px;
    word-break: keep-all;
    font-size: 15px;
  }

  .bottom-menu ul li:nth-child(2){
    width: 33%;
  }

  .bottom-menu ul li:nth-child(4){
    width: 15%;
  }

  /* 메인 비주얼 */
  .main-visual { 
    height: 430px; 
    text-align: center; 
  }

  .visual-text-box { 
    margin: 0 auto; 
  }

  .visual-text-box h2 { 
    font-size: 32px; 
    word-break: keep-all; 
  }

  .main-desc { 
    font-size: 16px; 
    word-break: keep-all; 
  }

  .main-visual .swiper-button-next,
  .main-visual .swiper-button-prev {
    width: 45px;
    height: 45px;
    display: none;
  }

  .section{
    padding: 90px 20px 0;
    margin: 0;
  }

  .section-05{
    margin-top: 60px;
    padding-bottom: 40px;
  }

  .sub-main-txt .sub-icon{
    width: 90px;
    height: 90px;
  }

  .medical-slider .swiper-button-prev:after, 
  .medical-slider .swiper-button-next:after{
    display: none;
  }

  .facility-info{
    border-radius: 0 0 20px 20px;
    font-size: 16px;
  }

  .facility-menu .swiper-pagination-bullet{
    font-size: 16px;
    padding: 12px 15px;
  }

  .section-title{
    margin-bottom: 50px;
  }

  .section-title p{
    transform: translateX(-400%);
  }

  .section-title p:last-child{
    transform: translateX(300%);
  }

  .section-title p img{
    width: 34px;
  }

  .special-grid { 
    flex-direction: column; 
    align-items: center;
    margin-top: 120px;
  }

  .special-item { 
    width: 100%; 
    max-width: 300px;
    margin: 0;
    margin-top: -65px;
  }

  .clinic-content{
    flex-direction: column;
    height: auto;
    background-size: auto;
    padding: 40px 15px;
  }

  .circle-box { 
    width: 260px; 
    height: 260px; 
  }

  .clinic-flex-box {
    flex-direction: column;
    text-align: center;
  }

  .text-box p {
    font-size: 18px;
    margin: 0;
    height: auto;
    width: 100%;
    padding: 24px;
  }

  .text-box p strong{
    font-size: 26px;
  }

  .icon-box-group {
    justify-content: center;
    margin-top: 40px;
    width: 94%;
    gap: 16px;
  }

  .icon-item{
    width: 120px;
    height: 120px;
    padding: 6px;
  }

  .icon-circle{
    width: 45px;
    height: 45px;
  }

  .text-box{
    width: 100%;
  }

  .doctor-profile{
    flex-direction: column;
    width: 100%;
    margin-top: 100px;
  }

  .doctor-img{
    width: 90%;
    height: 440px;
    margin: 0;
  }

  .doctor-img::after{
    width: 88%;
    height: 420px;
    left: 0px;
  }

  .doctor-detail{
    width: 100%;
    padding: 20px;
    position: unset;
    border-radius: 15px;
  }

  .doctor-detail .detail-con .name{
    font-size: 22px;
  }

  .doctor-detail .detail-con .posi-01{
    font-size: 22px;
  }

  .doctor-detail .detail-con .posi-02{
    font-size: 18px;
  }

  .facility-slider .img-box{
    height: 280px;
  }

  .medical-slider {    
    height: 600px;
    padding-top: 0;
    padding-bottom: 30px;
  }

  .medical-slider .swiper-slide {
    height: calc((100% - 20px) / 2) !important; 
    margin-top: 10px !important;
    display: flex;
    background: #fff;
    border: 1px solid #d1d1d1;
    padding: 20px;
  }

  .medical-slider .slide-content {
    width: 100%;
    height: 100%;
  }

  .medical-content .text-area div.name{
    font-size: 20px;
  }

  .medical-content .text-area p{
    margin-top: 4px;
    font-size: 13px;
  }

  .map-content{
    flex-direction: column;
  }

  .map-content .map-area{
    width: 100%;
    height: 340px;
  }

  .map-content .station-info{
    width: 100%;
    height: auto;
    padding: 30px 20px;
    border-radius: 0 0 20px 20px;
    justify-content: flex-start;
  }

  .map-content .station-info .info-txt p,
  .map-content .station-info .info-txt .tel{
    font-size: 24px;
  }
  
  .map-content .station-info .info-txt .addr{
    font-size: 18px;
    margin-bottom: 20px;
  }

  .map-content .station-info .info-txt .addr img{
    width: 24px;
  }

  .map-content .station-info .time-table{
    flex-direction: column;
  }

  .map-content .station-info .time-table p{
    margin-bottom: 20px;
  }

  .sub-main-top{
    flex-direction: column;
    text-align: center;
    margin-top: 60px;
  }
  

  .sub-main-txt{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .sub-main-txt .txt-wrap div{
    width: 100%;
    font-size: 16px;
  }

  .sub-main-txt .txt-wrap p{
    font-size: 20px;
  }

  .sub-main-img{
    width: 100%;
    max-width: 390px;
    height: 260px;
    margin-top: 40px;
  }

  .sub-top-img{
    height: 400px;
  }

  .sub-top-img .sub-tit p{
    font-size: 28px;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .health-info-wrap .info-list{
    padding: 0 4%;
  }

  .health-ico-list{
    margin: 50px 0;
  }

  .health-ico-list .list-tit{
    margin-bottom: 40px;
  }

  .health-ico-list ul{
    flex-wrap: wrap;
  }

  .health-ico-list ul li{
    margin: 15px 6px;
  }

  .health-ico-list ul li img{
    width: 70px;
    height: 70px;
  }

  .health-ico-list ul li p{
    font-size: 14px;
    padding: 6px 14px;
    margin-top: 15px;
  }

  .intro-link-banner{
    width: 92%;
    height: 280px;
    margin: 0 4%;
    padding: 30px;
  }

  .intro-link-banner .banner-txt{
    font-size: 18px;
  }

  .intro-link-banner .link-btn{
    font-size: 18px;
  }

  .health-info-wrap .health-tit{
    text-align: center;
  }

  .health-info-wrap .info-list ul li{
    align-items: center;
    flex-direction: column;
  }

  .health-info-wrap .info-list ul li + li{
    margin-top: 110px;
  }

  .health-info-wrap .list-txt p{
    font-size: 20px;
  }

  .health-info-wrap .list-txt div{
    font-size: 16px;
  }

  .health-info-wrap li .list-txt{
    width: 88%;
    min-height: 280px;
    padding: 30px 20px;
    margin-left: -15px;
  }

  .health-info-wrap li .list-txt::before{
    width: 85%;
    height: 280px;
    left: 30px;
    top: -30px;
  }

  .health-info-wrap .list-subject{
    width: 100%;
    min-width: unset;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0px 4px 6px #ededed;
  }

  .health-info-wrap .list-subject .tag-line p{
    font-size: 15px;
  }

  .health-info-wrap .list-subject .tag-line p + p{
    margin-left: 20px;
  }

  .text-box-wrap{
    flex-direction: column;
    padding: 0 4%;
    margin: 70px auto;
  }

  .text-box-wrap .box{
    width: 100%;
    height: 200px;
    margin-top: 15px;
  }

  .text-box-wrap .box p{
    font-size: 24px;
  }

  /* 특화클리닉 */
  .sub03-intro-wrap img:nth-child(1){
    width: 70px;
  }
  .sub03-intro-wrap img:nth-child(2){
    width: 92%;
    margin: 30px 4%;
  }

  .sub03-intro-wrap p{
    font-size: 15px;
    margin: 0 4%;
  }

  .special-list-wrap{
    padding: 0 4%;
  }

  .special-list-wrap ul{
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
  }

  .special-list-wrap ul li{
    width: 100%;
    height: 300px;
    padding: 20px 15px;
  }

  .special-list-wrap ul li:nth-child(2n){
    margin-top: 0;
  }

  .special-list-wrap li > p{
    font-size: 20px;
  }

  .special-list-wrap li .txt{
    font-size: 15px;
  }

  .special-list-wrap .tag-wrap div{
    font-size: 14px;
  }

  .location-info-wrap{
    padding: 0 4%;
    margin: 60px auto;
  }

  .location-info-wrap .location-box{
    align-items: center;
    flex-direction: column;
    padding: 0;
  }

  .location-info-wrap .location-box > img{
    width: 100%;
    border-radius: 20px;
  }

  .location-info-wrap .location-box .info-box{
    width: 100%;    
    margin: 0;
    min-width: unset;
    padding-right: 50px;
    border-radius: 0 20px 0 20px;
    box-shadow: 0px 3px 8px #ededed;
  }

  .location-box .info-box p{
    font-size: 24px;
    padding-left: 5%;
  }

  .location-box .info-box .tel{
    font-size: 24px;
    padding-left: 5%;
  }

  .location-box .info-box .time-table{
    align-items: flex-start;
    flex-direction: column;
    padding-left: 5%;
  }

  .location-box .info-box .time-table .item + .item{
    margin: 0;
  }

  .location-box .info-box .addr{
    padding-left: 5%;
    font-size: 16px;
  }

  .location-box .info-box .addr img{
    width: 24px;
  }

  /* 푸터 */
  footer{
    padding-top: 25px;
    padding-bottom: 120px;
  }

  .footer-links li a{
    margin: 0 10px;
  }

  .footer-links li:nth-child(4) a{
    margin-left: 0;
  }

  .footer-logo img{
    width: 90px;
  }

  .footer-links li{
    margin: 4px 0;
  }

  .footer-links li a::after{
    top: 2px;
  }

  .sub05-sec01 p{
    font-size: 24px;
  }

  .sub05-sec01 div{
    font-size: 18px;
  }

  .doctor-list-wrap.sub05{
    padding: 0 4%;
  }

  .sub05 .doctor-detail .detail-con + .detail-con{
    margin-top: 10px;
  }

  .sub05 .doctor-detail .detail-con .posi-01{
    margin-left: 6px;
  }

  .sub05 .doctor-detail .detail-con .history{
    text-align: center;
  }

  .facility-info-wrap .txt-box{
    padding: 0 4%;
  }

  .facility-info-wrap .txt-box div{
    font-size: 16px;
    text-align: center;
    margin: 20px 0 50px;
  }

  #section3 .facility-slider{
    padding: 0 4%;
  }

  #section3 .facility-info{
    text-align: center;
  }

  .facility-info-wrap{
    margin: 70px 0;
  }

  .facility-info-wrap .txt-box .sub-tit{
    font-size: 24px;
  }

  /* 진료과목 */

  .sub01-medical-wrap{
    background-size: auto;
    padding: 60px 4%;
  }

  .sub01-medical-wrap .sub-tit{
    font-size: 24px;
    margin-bottom: 40px;
  }

  .sub01-medical-wrap ul{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .sub01-medical-wrap ul li{
    width: 50%;
    flex-direction: column;
    align-items: center;
    padding-bottom: 45px;
    margin-bottom: 45px;
  }

  .sub01-medical-wrap ul li:nth-child(7){
    border: none;
  }

  .sub01-medical-wrap ul li .icon-img{
    margin: 0;
  }

  .sub01-medical-wrap ul li .txt-wrap{
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .sub01-medical-wrap ul li .icon-img img{
    width: 70px;
  }

  .sub01-medical-wrap .txt-wrap .medi-tit{
    font-size: 18px;
  }

  .sub01-medical-wrap li:nth-child(6) .txt-wrap .medi-tit{
    max-width: 165px;
    word-break: keep-all;
    text-align: center;
  }

  .sub01-medical-wrap .txt-wrap .chk-wrap{
    flex-direction: column;
    align-items: flex-start;
    margin: 0;
  }

  .sub01-medical-wrap .txt-wrap .chk-item{
    margin-right: 0;
    width: auto;
  }

  .sub01-medical-wrap .txt-wrap .chk-item img{
    width: 18px;
  }
  
  .sub01-medical-wrap .txt-wrap .chk-item span{
    font-size: 16px;
    max-width: 125px;
    word-break: keep-all;
    margin-left: 10px;
  }

  .sub01-more-wrap .sub-tit{
    font-size: 24px;
    margin-top: 60px;
    margin-bottom: 50px;
  }

  .sub01-more-wrap ul li{
    align-items: center;
    flex-direction: column;
  }

  .icon-img{
    margin-bottom: 24px;
  }

  .sub01-more-wrap .icon-img img{
    width: 100%;
  }

  .sub01-more-wrap ul li .txt-wrap{
    margin: 0;
    max-width: 280px;
  }

  .sub01-more-wrap ul li .txt-wrap .medi-tit{
    font-size: 20px;
  }

  /* 검사/장비 */
  .sub04-list-wrap{
    margin-top: 60px;
    padding: 60px 4%;
    background-size: cover;
  }

  .sub04-list-wrap .sub-tit{
    margin-bottom: 40px;
  }

  .sub04-list-wrap ul{
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
  }

  .sub04-list-wrap ul li{
    width: 210px;
    min-height: 210px;
    padding: 20px 0;
  }

  .sub04-list-wrap ul li img{
    width: 90px;
    height: 90px;
  }

  .sub04-list-wrap ul li p{
    font-size: 18px;
  }

  .sub04-list-wrap ul li .small{
    font-size: 14px;
  }

  .sub04-eqip-wrap{
    margin-top: 60px;
    margin-bottom: 60px;
  }

  .sub04-eqip-wrap .sub-tit{
    font-size: 24px;
    margin-bottom: 60px;
  }

  .medical-scroll-wrap {
    width: 100%;
    overflow: hidden;
  }

  /* 가로 스크롤 리스트 */
  .sub04-eqip-wrap .scroll-list {
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    list-style: none;
    padding: 0 20px;
    margin: 0;
    align-items: normal;
    justify-content: unset;
    flex-wrap: nowrap;
  }

  .scroll-list::-webkit-scrollbar {
    display: none;
  }
  .scroll-list {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .sub04-eqip-wrap .scroll-list li {
    width: auto;
    height: auto;
    flex: 0 0 90%;
    background: #fff;
    border-radius: 15px 15px 0 15px;
    padding: 25px;
    box-sizing: border-box;
    position: relative;
    min-height: 340px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin: 10px;
  }

  .sub04-eqip-wrap ul li .txt-posi p { 
    font-size: 20px;
    margin-bottom: 5px;
  }

  .sub04-eqip-wrap ul li .txt-posi .eng-tit { 
    font-size: 16px; 
    margin-bottom: 15px; 
  }  

  .sub04-eqip-wrap .scroll-list li img {
    align-self: flex-end;
    width: 160px;
    height: auto;
    margin-top: 10px;
  }

  .sub-banner .sub04-banner-pc{
    display: none;
  }

  .sub-banner .sub04-banner-mb{
    display: block;
  }

  .map-content.sub06{
    margin-top: 60px;
    padding: 0 4%;
  }

  .sub06-link-con{
    flex-direction: column;
    padding: 0 4%;
  }

  .sub06-link-con .sub06-link{
    flex-direction: column;
  }

  .sub06-link-con .sub06-link img{
    width: 50px;
  }

  .sub06-link-con .sub06-link .link-txt{
    margin-left: 0;
    text-align: center;
    margin-top: 10px;
  }

  .sub06-link-con .sub06-link .link-txt p{
    font-size: 20px;
  }

  .sub06-link-con .sub06-link .link-txt div{
    font-size: 15px;
    word-break: keep-all;
  }

  .sub-banner .sub06-banner-pc{
    display: none;
  }

  .sub-banner .sub06-banner-mb{
    display: block;
    margin: 0 auto;
    width: 92%;
    max-width: 510px;
  }

  .sub06-list-con{
    padding: 0 4%;
  }

  .sub06-list-con .sub06-list .top-txt img{
    width: 40px;
  }

  .sub06-list-con .sub06-list .top-txt p{
    margin-left: 10px;
    font-size: 18px;
  }

  .sub06-list-con .sub06-list .bt-txt{
    font-size: 16px;
  }

  .sub06-list-con .sub06-list:nth-child(3) .bt-txt{
    flex-direction: column;
  }

  .sub06-list-con .sub06-list:nth-child(3) .left-txt{
    margin-bottom: 15px;
  }

  .sub06-list-con .sub06-list:nth-child(3) .right-txt p + p{
    margin-top: 8px;
  }

}

@media (max-width: 480px) {
  .btn-more { 
    width: 100%; 
    padding: 15px 0; 
  }

  .section-title { 
    font-size: 24px; 
  }

  .section-title.sec01 p{
    transform: translateX(-440%);
  }

  .section-title.sec01 p:last-child{
    transform: translateX(345%);
  }

  .notice-text img,
  .notice-text span{
    margin-right: 8px;
  }
}