/*반응형 br*/

/* PC 전용 */
.onlypc {
  display: block;
}

@media (max-width: 768px) {
  .onlypc {
    display: none;
  }
}

/* 모바일(992px 이하) 전용 */
.onlymo {
  display: none;
}

@media (max-width: 768px) {
  .onlymo {
    display: block;
  }
}

.sub-visual {
  overflow: hidden;
  position: relative;
}

.sub-visual .contents-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 73rem;
}

.sub-visual .title-area {
  width: 100%;
  text-align: center;
}

.sub-visual .title-area h2 {
  position: relative;
  padding-bottom: 2.6rem;
  color: #fff;
  font-weight: var(--fw-medium);
}

.sub-visual .title-area h2::after {
  content: "";
  position: absolute;
  bottom: 0rem;
  left: 50%;
  transform: translateX(-50%);
  width: 6rem;
  height: 0.2rem;
  background: #fff;
}

.sub-visual .title-area p {
  margin-top: 2.4rem;
  color: #fff;
  font-weight: var(--fw-ragular);
}

.sub-visual .block_overlay {
  position: absolute;
  content: '';
  z-index: 0;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.5;
  background-color: #111;
}

/* personal-GEMK2983Ng */
.snb {
  position: relative;
}

.snb .tabset.tabset-solid .tabset-link.active,
.tabset.tabset-solid .tabset-link:hover {
  color: #111;
}

.snb .tabset.tabset-text .tabset-item+.tabset-item .tabset-link::before {
  content: none;
}

.snb .tabset.tabset-solid .tabset-link::after {
  background: #e8197f;
}

@media (max-width: 992px) {
  .sub-visual .contents-container{
    height: 40rem;
  }
  .snb .tabset.tabset-text .tabset-item {
    width: auto;
  }

  .snb .tabset.tabset-text .tabset-link {
    white-space: nowrap;
  }
  .sub-visual .title-area p{
    font-size: 15px;
  }

  /*서브네비 수정*/
   /* 1️⃣ SNB를 하단으로 이동 */
  .snb {
    order: 99;                 /* flex 레이아웃일 경우 대비 */
    margin-top: 4rem;
  }

  /* 2️⃣ 탭 구조 해제 */
  .snb .tabset,
  .snb .tabset-list {
    display: block;
    border: none;
  }

  /* 3️⃣ ul 세로 리스트 */
  .snb .tabset-list {
    padding: 0;
    margin: 0;
  }

  /* 4️⃣ li = 한 줄 박스 */
  .snb .tabset-item {
    width: 100%;
    border-bottom: 1px solid #e6e6e6;
    padding: 0 !important;
  }

  /* 5️⃣ 링크 박스화 */
  .snb .tabset-link {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 52px;
    padding: 0 16px;
    font-size: 15px;
    color: #333;
    background: #f7f7f7;
    text-align: center;
    font-size: 14px;
    font-weight: 400;
  }

  /* 6️⃣ 활성 메뉴 (상단 파란 바 느낌) */
  .snb .tabset-link.active {
    background: #e8197f; 
    color: #fff !important;
    font-weight: 400;
  }

  /* 7️⃣ 기존 탭 밑줄/효과 제거 */
  .snb .tabset-link::after,
  .snb .tabset-link::before {
    display: none;
  }
}

/*여성검진*/

/* 전체 래퍼 */
.women-checkup-wrap {
  width: 100%;
}

/* 섹션 타이틀 */
.section-header {
  text-align: center;
  padding: 80px 20px 60px;
}

.section-title {
  font-family: var(--ff-ko1);
  font-size: var(--fs-h3);
  color: var(--text-color1);
  font-weight: var(--fw-medium);
  line-height: var(--lh-h3);
  letter-spacing: var(--letter-spacing-h3);
  margin: 0.4rem 0 2rem;
}

.section-desc {
    margin: 0;
    color: var(--text-color3);
}

/* 검진 아이템 */
.checkup-item {
  padding: 10rem 0;
}

/* 👉 짝수번째만 배경 */
.checkup-item:nth-child(even) {
  background: #f9f9f9;
}

.checkup-item:nth-child(even) .checkup-content{
  flex-direction: row-reverse;
}

.checkup-item:nth-child(even) .checkup-list{
  margin-left: 10rem;
}

/* 내부 정렬 */
.checkup-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* 헤더 */
.checkup-header {
  text-align: center;
  margin-bottom: 50px;
}

.checkup-header .num {
  display: inline-block;
  width: 36px;
  height: 36px;
  line-height: 32px;
  border-radius: 50%;
  border: 1px solid #e8197f;
  color: #e8197f;
  font-size: 14px;
  margin-bottom: 12px;
}

.checkup-header .title {
  font-family: var(--ff-ko1);
  font-size: var(--fs-h3);
  color: var(--text-color1);
  font-weight: var(--fw-medium);
  line-height: var(--lh-h3);
  letter-spacing: var(--letter-spacing-h3);
  margin: 0.4rem 0 0.5rem;
}

.checkup-header .desc {
  margin: 0;
  color: var(--text-color3);  
}

/* 콘텐츠 */
.checkup-content {
  display: flex;
  align-items: center;
  gap: 60px;
}

.checkup-image {
  flex: 1;
}

.checkup-image img {
  width: 100%;
}

.checkup-list {
  flex: 1;
}

.checkup-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.checkup-list li {
  position: relative;
  padding-left: 18px;
  font-size: 16px;
  line-height: 1.8;
  color: #333;
}

.checkup-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #e8197f;
}

.furniture-N26 .number{
    width: 3.4rem;
    height: 3.4rem;
    border-radius: 50%;
    background-color: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

/* 하단 안내 문구 */
.furniture-N26 .notice-text {
  margin: 10rem auto;
  width: 80%;
  padding: 16px 20px;
  background: #fef0f7;
  font-size: 14px;
  color: #777;
  text-align: center;
}

/* 반응형 */
@media (max-width: 992px) {
  .checkup-item{
    padding: 8rem 0;
  }
  .checkup-header .title{
    font-size: 24px;
  }
  .checkup-image{
    width: 100%;
  }
  .furniture-N20 .number{
    width: 3rem;
    height: 3rem;
    top: 1.2rem;
  }
  .furniture-N26{
    padding-top: 8rem !important;
    padding-bottom: 8rem !important;
  }
  .furniture-N26 .detail-area{
    gap: 5rem;
  }
  .furniture-N26 .cardset .h3{
    font-size: 1.8rem;
  }
  .checkup-item:nth-child(even) .checkup-list{
    margin-left: 0;
  }
  .checkup-list ul{
    gap: 5px;
  }
  .checkup-list li{ 
    font-size: 15px;
    letter-spacing: -.1rem;
  }
  .furniture-N26 .notice-text {
    width: 100%;
    margin: 5rem 0 0 0;
  }
  .p2{
    font-size: 1.5rem;
    letter-spacing: -.1rem;
  }
  .checkup-item .desc{
    font-size: 15px;
    letter-spacing: -.1rem;
  }
}

 @media (max-width: 768px) {
  .checkup-content,.checkup-item:nth-child(even) .checkup-content {
    align-items: flex-start;
    flex-direction: column;
    gap: 30px;
  }
}

/*질성형*/
@media (max-width: 992px){
.effect-desc{
    font-size: 1.4rem;
    letter-spacing: -.1rem;
}
}

.cardset-tags {
    background: #fef0f7;
    font-size: 14px;
    color: #666;
    text-align: center;
    padding: 1rem 2rem;
}


/*공통*/
.cardset .cardset-desc{
  -webkit-box-orient: horizontal;
}