.skin_section1{
	background: #f3f4f8;
}

.skin_section1 img{
	width:737px
}
	
.skin_box{
	width: 1200px;
    position: relative;
    margin: 0 auto;
    height: 984px;
}

.skin_box h2{
	    text-align: center;
    font-size: 43px;
    line-height: 1.3;
    font-weight: 700;
	color:#292929;
	padding-top: 50px;

}
.skin_box h2 b{
	color:#d51c1c;
	font-weight: 700;
}
	
	
.skin_box h3 {
    font-size: 25px;
    text-align: center;
    font-weight: 500;
    color: #313131;
    padding: 20px 0px 40px;
}
	
	

	
	
/* 깜빡깜빡 */	
.highlight {
            position: absolute;
            border-radius: 50%;
            animation: blink 2s infinite; /* 애니메이션 이름, 기간, 반복 횟수 */
        }



.highlight.gut {	
            top: 750px; /* 장 위치 */
            left: 680px; /* 장 위치 */
            width: 130px; /* 장 크기 */
            height: 130px; /* 장 크기 */
            background-color: rgb(255 0 0 / 41%); /* 장 빨간색 */
			 filter: blur(15px);
        }
	
	

        @keyframes blink {
            0%, 100% {
                opacity: 0;
            }
            50% {
                opacity: 1; 
            }
        }	
	
#skin_bigyo{
padding-top: 60px;
    padding-bottom: 120px;
	   background-image: linear-gradient(-45deg, #630628, #97160e, #6f2626);
    background-size: 400% 400%;
    animation: colorChange 3s ease infinite;
} /*    background: #8d1c36; */
	
#skin_bigyo h2{
	font-weight: 700;
    color: #fff;
    font-size: 43px;
	text-align: center;
	line-height: 1.2;
    margin-bottom: 60px;
}
	
#skin_bigyo_box{
	position:relative;
	width: 1100px;
	height: 420px;
    margin: 0 auto;	
}
	
#skin_bigyo_box p{
    background: #fff;
    text-align: center;
    font-size: 30px;
    font-weight: 700;
    width: 300px;
    height: 45px;
    border-radius: 100px;
    margin: 0 auto;
    color: #8d1c36;
}
	
#skin_sojang{
	width: 500px;
    float: left;
    position: relative;
}
	
#skin_skin{	
	width: 500px;
    float: right;
    position: relative;
}
	
.hasal_icon{
	position: absolute;
    left: 215px;
    top: 120px;
	animation: moveUpDown 1s ease-in-out infinite alternate;
}
	
.hasal_icon2{
	position: absolute;
	left: 205px;
    top: 180px;
	animation: moveUpDown 1s ease-in-out infinite alternate;
}
	
	


@keyframes moveUpDown {
  0% {
    transform: translateY(0); /* 시작 위치 */
  }
  100% {
    transform: translateY(-5px); /* 위로 10px 이동 */
  }
}	
	
	
	

#sojang_left{margin-top: 30px;}
#sojang_right{margin-top: 30px;}

.hasal_img{ border-radius: 20px; }
	
/*  오른쪽 화살표 */	
 .arrow-container {
            display: flex;
            justify-content: center;
            align-items: center;
            height: 200px;
	      z-index: 1;
	  
  }

.moving-arrow {
	width: 170px;
    height: 80px;
    position: absolute;
    left: 470px;
    top: 220px;
    z-index: 2;
}

        /* 그라데이션이 왼쪽에서 오른쪽으로 무한히 이동하는 애니메이션 */
        .glow-effect {
            animation: slideGradient 2.5s linear infinite;
        }

        @keyframes slideGradient {
            0% {
                x: -100%;
            }
            100% {
                x: 100%;
            }
        }
	
	
#skin_list{
	background: #f3f4f8;
    padding-bottom: 50px;
}
	
	
	
 /* 피부질환 양옆 */
#skinleft_list{	
    padding-top: 100px;
    padding-bottom: 120px;
}	
	
#skinleft_list h2{
	text-align: center;
	font-size:43px;
}
#skinleft_list h2 b{	
font-weight: 700;
    color: #d51c1c;	
}
	
.byunbi-list h2 strong{
	 color: #a92121;	
}
	
    .slider-container {
      width: 100%;
      overflow: hidden;
      position: relative;
      cursor: grab;
      padding: 30px 0;
      user-select: none;
      -webkit-user-select: none;
	 margin: 0 auto;
	     height: 360px;
    }

    .slider-container:active {
      cursor: grabbing;
    }

    /* 슬라이더 트랙 */
    .slider-track {
	 display: flex;
    gap: 60px;
    width: max-content;
    align-items: center;
    padding-left: 80vw; /* 첫 아이템이 중앙에 오도록 여백 설정 */
    padding-right: 50vw;
	padding-top: 50px;
    }

    /* 개별 아이템 스타일 */
    .slider-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 200px;
    transition: transform 0.3s ease;
    will-change: transform;
}

    /* 원형 이미지 박스 */
    .circle-box {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 3px solid transparent;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    }

    /*  이미지 스타일 */
    .circle-box img {
      width: 100%;
      height: 100%;
      object-fit: cover; /* 원형 박스 비율에 맞게 꽉 채움 */
      display: block;
    }

    /* 텍스트 스타일 */
    .slider-item p {
      margin-top: 12px;
      font-size: 25px;;
      font-weight: bold;
      color: #333;
      transition: color 0.3s ease;
      white-space: nowrap;
    }

    /*  가운데 위치 시 적용될 효과 (확대 + 빨간 테두리 + 네온 효과) */
    .slider-item.active .circle-box {
      transform: scale(1.1);
      border-color: #e63946;
      box-shadow: 0 0 20px rgba(255, 59, 48, 0.6);
    }

    .slider-item.active p {
      color: #e63946;
    }


/* 피부질환 치료 */	
#skin_chiro_list{	
margin-top: 50px;	
}
	
#skin_chiro_list ul{
	position:relative;
	width:1200px;
	height:450px;
	margin:0 auto;
}
	
	
#skin_chiro_list ul li{
    position: relative;
	width: 390px;
    float: left;
	margin-left: 15px;
	border-radius: 10px;
    overflow: hidden;
}
	
#skin_chiro_list ul li:first-child{
	margin-left: 0px;	
}
	
	
#skin_chiro_list ul li h3{
	text-align: center;
    font-size: 24px;
    background: #dc2b43;
    color: #fff;
    line-height: 2;
}
	
.skin_chiro_list_txt{
    background: #fff;
    padding: 20px 30px;
}

.skin_chiro_list_txt p{
background: #dc2b43;
    font-size: 18px;
    color: #fff;
    text-align: center;
    width: 150px;
    margin-bottom: 10px;
    border-radius: 5px;	
	font-weight: 600;
}	
.skin_chiro_list_txt span{	
	    font-size: 18px;
}

/* 피부질환 치료 사진 */
#skin_chiro_cul{
	position:relative;
	width:1200px;
	  height: 453px;
	margin:0 auto;
	
}
	
.skin_atopy{	
	width: 585px;
    height: 440px;
    float: left;
    background: #fff;
    border-radius: 20px;
    padding-top: 10px;
}
	
.skin_atopy	h3{
	font-size: 25px;
    text-align: center;
    line-height: 3;
}
	