@charset "UTF-8";
/* ===== sub_03 (요실금) 전용 — 전체 교체 ===== */
/* 1. classify 아이콘 130x130 + 사이 화살표 */
#sub .title__classify .classify__list.--step li {
  width: 130px;
  height: 130px;
}
#sub .title__classify .classify__list.--step li:not(:last-child)::after {
  right: -15px;
  font-size: 18px;
}

/* 2. 유튜브 썸네일 배경 */
#sub__tab .panel__check .check__video {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* 3. 진료절차 타임라인 */
#sub__tab .panel__timeline {
  /* 선: 카드 왼쪽 끝부터 + 오른쪽 gap까지 (칸끼리 연결) */
}
#sub__tab .panel__timeline .timeline__cell .cell__no::before {
  left: 0;
  width: calc(100% + 40px);
  transform: none;
}
#sub__tab .panel__timeline {
  /* 첫 칸: 왼쪽 끝까지 (이미 left:0이라 OK) */
  /* 마지막 칸: 오른쪽 gap 빼고 카드 끝까지만 */
}
#sub__tab .panel__timeline .timeline__row .timeline__cell:last-child .cell__no::before {
  width: 100%;
}
#sub__tab .panel__timeline {
  /* 둘째 줄 빈칸 제거 → 중앙정렬 */
}
#sub__tab .panel__timeline .timeline__row.--row2 .timeline__cell.--empty {
  display: none;
}

/* ============================================================
   PC sub_03 요실금 레이아웃 복구 패치
   적용 위치: /sub/{folderName}/css/sub_03.scss 최하단
   또는 현재 sub_03.scss에서 비뇨질환 섹션 하단에 추가 후 컴파일
   - Check 영상/확인사항 4칸
   - Type of Urinary Incontinence 2x2 다이어그램
   - 기존 잘 나오던 PC 기준 복구
============================================================ */
#sub__tab {
  /* ------------------------------
     Check : 영상 + 확인사항 4가지
  ------------------------------ */
}
#sub__tab .panel__check {
  padding: 100px 0;
  background: #f3f3f3;
}
#sub__tab .panel__check .tab__hd {
  padding-top: 0;
  margin-bottom: 50px;
}
#sub__tab .panel__check .tab__hd .hd__tit {
  display: block;
  font-size: 80px;
  line-height: 1.05;
  color: #2f694f;
}
#sub__tab .panel__check .tab__hd .hd__mid {
  display: block;
  margin-top: 8px;
  font-size: 30px;
  line-height: 1.35;
  color: #222;
  font-weight: 600;
}
#sub__tab .panel__check .tab__hd p {
  margin-top: 16px;
  font-size: 16px;
  line-height: 1.8;
  color: #464646;
}
#sub__tab .panel__check .check__video {
  position: relative;
  width: 1400px;
  max-width: calc(100% - 80px);
  height: auto;
  aspect-ratio: 1400/788;
  margin: 0 auto 50px;
  border-radius: 0 0 0 150px;
  overflow: hidden;
  background-color: #5f897c;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}
#sub__tab .panel__check .check__video::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(47, 105, 79, 0.08);
  pointer-events: none;
}
#sub__tab .panel__check .check__video .video__play {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  transition: 0.25s;
}
#sub__tab .panel__check .check__video .video__play:hover {
  transform: scale(1.06);
  background: #fff;
}
#sub__tab .panel__check .check__video .play__icon {
  display: block;
  width: 0;
  height: 0;
  margin-left: 5px;
  border-left: 20px solid #2f694f;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
}
#sub__tab .panel__check .check__video.--played {
  background-image: none !important;
  background-color: #000;
}
#sub__tab .panel__check .check__video.--played::before {
  display: none;
}
#sub__tab .panel__check .check__video.--played iframe {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  border: 0 !important;
  border-radius: 0 !important;
}
#sub__tab .panel__check .check__list {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 18px 20px;
  padding: 0;
  list-style: none;
}
#sub__tab .panel__check .check__item {
  width: calc((100% - 20px) / 2);
  min-height: 94px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 24px 34px;
  background: #fff;
  border-radius: 16px;
  text-align: left;
  box-shadow: none;
}
#sub__tab .panel__check .check__item .item__ico {
  flex: 0 0 auto;
  width: 50px;
  height: 50px;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
#sub__tab .panel__check .check__item .item__ico img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
#sub__tab .panel__check .check__item .item__txt {
  flex: 1;
  min-width: 0;
}
#sub__tab .panel__check .check__item .item__txt strong {
  display: block;
  margin-bottom: 5px;
  font-size: 14px;
  font-weight: 600;
  color: #82a293;
}
#sub__tab .panel__check .check__item .item__txt p {
  font-size: 15px;
  line-height: 1.55;
  color: #464646;
  letter-spacing: -0.5px;
}
#sub__tab {
  /* ------------------------------
     Type of Urinary Incontinence
  ------------------------------ */
}
#sub__tab .panel__uitype {
  padding: 100px 0 120px;
  background: #f3f3f3;
}
#sub__tab .panel__uitype .sec__tit {
  max-width: 1400px;
  margin: 0 auto 70px;
  text-align: center;
}
#sub__tab .panel__uitype .sec__tit .--font-botera-s {
  display: block;
  font-size: 80px;
  line-height: 1.05;
  color: #2f694f;
}
#sub__tab .panel__uitype .sec__tit .sec__mid {
  display: block;
  margin-top: 10px;
  font-size: 30px;
  line-height: 1.35;
  color: #222;
  font-weight: 600;
}
#sub__tab .panel__uitype .sec__tit p {
  margin-top: 16px;
  font-size: 16px;
  line-height: 1.7;
  color: #464646;
}
#sub__tab .panel__uitype .uitype__grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 90px 120px;
  padding: 0;
  list-style: none;
}
#sub__tab .panel__uitype .uitype__item {
  width: 100%;
  text-align: center;
}
#sub__tab .panel__uitype .uitype__item .item__img {
  width: 100%;
  margin: 0 auto 26px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#sub__tab .panel__uitype .uitype__item .item__img img {
  width: 100%;
  max-width: 410px;
  height: auto;
  display: block;
  margin: 0 auto;
  object-fit: contain;
}
#sub__tab .panel__uitype .uitype__item .item__tit {
  display: block;
  margin-bottom: 14px;
  font-size: 22px;
  line-height: 1.4;
  font-weight: 700;
  color: #222;
}
#sub__tab .panel__uitype .uitype__item p {
  font-size: 15px;
  line-height: 1.7;
  color: #666;
  letter-spacing: -0.5px;
}

@media (max-width: 1500px) {
  #sub__tab .panel__check .check__video,
  #sub__tab .panel__check .check__list {
    max-width: 1200px;
  }
  #sub__tab .panel__uitype .uitype__grid {
    max-width: 980px;
    gap: 80px 90px;
  }
  #sub__tab .panel__uitype .uitype__item .item__img img {
    max-width: 360px;
  }
}/*# sourceMappingURL=sub_03.min.css.map */