/* ================================================================= */
/* 뉴스 */
/* ================================================================= */
/* 전체 컨테이너 */
.sub_news_container {
  width: 950px;
  margin-top: 0px;
  position: relative;
}

/* 상단 타이틀 영역 */
.sub_news_category_header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 5px;
  border-bottom: 1px solid #333;
}

.sub_news_main_title {
  font-size: 30px;
  font-family: 'ElectricSafetyBold';
  color: #333;
  margin: 0;
}

.sub_news_vertical_line {
  width: 3px;
  height: 15px;
  background-color: #13c2dd;
  margin: 5px 5px 0 ;
}

.sub_news_sub_title {
  font-size: 20px;
  font-family: 'ElectricSafetyBold';
  color: #13c2dd;
  margin: 5px 0px 0 ;
}

/* 뉴스 리스트 및 아이템 */
.sub_news_list {
  display: flex;
  flex-direction: column;
}

.sub_news_item {
  display: flex;
  padding: 20px 0 20px;
  border-bottom: 1px solid #DDDDDD;
  gap: 30px;
}

.sub_news_item:first-child {
   padding: 0px 0 20px;
}

/* 썸네일 이미지 */
.sub_news_thumb {
  width: 260px;
  height: 140px;
  flex-shrink: 0;
  overflow: hidden;
}

.sub_news_thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 뉴스 텍스트 콘텐츠 */
.sub_news_content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.sub_news_item_title {
  font-size: 22px;
  font-weight: 600;
  color: #333;
  margin: 0 0 10px 0;
  cursor: pointer;
}

.sub_news_item_title:hover {
  text-decoration: underline;
}

.sub_news_item_desc {
  font-size: 16px;
  line-height: 1.4;
  color: #666;
  margin: 0 0 15px 0;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* 두 줄까지만 표시 */
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* 메타 정보 (기자명, 날짜 등) */
.sub_news_meta {
  font-size: 13px;
  color: #666;
}

.sub_news_tag, .sub_news_author, .sub_news_date {
  font-weight: 600;
}

.sub_news_divider {
  font-weight: 100;
  color: #ccc;
  margin: 0 8px;
}





/* ================================================================= */
/* 뉴스 상세 */
/* ================================================================= */

.sub_news_view_top_media {
    width: 100%;
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 비율 유지 */
    height: 0;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


/* 전체 컨테이너 */
.sub_news_view_container {
  width: 950px;
  margin: 0 auto;
  color: #333;
}

/* 1. 브레드크럼 */
.sub_news_view_breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
}
.sub_news_view_arrow {
  color: #bbb;
  font-weight: 100;
}

/* 2. 제목 */
.sub_news_view_title {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 30px 0;
}

/* 3. 메타 정보 */
.sub_news_view_meta {
  display: flex;
  gap: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #ddd;
  margin-bottom: 40px;
}
.sub_news_view_author, .sub_news_view_date {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: #666;
}

/* 4. 이미지 공통 스타일 */
.sub_news_view_full_img {
  width: 950px;
  height: auto;
  display: block;
  margin-bottom: 15px;
}

/* 5. 요약 박스 */
.sub_news_view_summary_box {
  display: flex;
  gap: 15px;
  margin: 40px 0;
}
.sub_news_view_summary_line {
  width: 5px;
  background-color: #ddd;
  flex-shrink: 0;
}
.sub_news_view_summary_box p {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.6;
  color: #333;
  margin: 0;
}

/* 6. 본문 텍스트 */
.sub_news_view_img_caption {
  font-size: 14px;
  color: #999;
  margin-bottom: 40px;
  padding:10px;
}
.sub_news_view_text {
  font-size: 18px;
  line-height: 1.8;
  color: #000;
  margin-bottom: 60px;
}

/* 7. 기자 연락처 */
.sub_news_view_reporter_contact {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 60px;
}
.sub_news_view_reporter_icon {
  width: 24px;
  height: 24px;
  background: #ddd;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.sub_news_view_reporter_contact span {
  font-size: 16px;
  font-weight: 500;
}

/* 8. 관련 기사 영역 */
.sub_news_view_related {
  border-top: 2px solid #333;
  margin-top: 50px;
}
.sub_news_view_related_header {
  font-size: 18px;
  font-weight: 600;
  color: #13c2dd;
  padding: 20px 0 0px 0; /* 위 20, 좌우 0, 아래 10 */
}
.sub_news_view_related_item {
  display: flex;
  gap: 30px;
  padding: 20px 0;
  border-bottom: 1px solid #ddd;
}

.sub_news_view_related_item:first-of-type {
    padding: 0px 0;
}

.sub_news_view_related_thumb {
  width: 260px;
  height: 140px;
  flex-shrink: 0;
}
.sub_news_view_related_thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sub_news_view_related_content h4 {
  font-size: 22px;
  margin: 0 0 10px 0;
}
.sub_news_view_related_meta {
  font-size: 13px;
  color: #666;
  margin-top: 15px;
}



/* ================================================================= */
/* 목록으로 */
/* ================================================================= */
.sub_view_footer {
  display: flex;
  justify-content: center;
  padding: 60px 0;
  border-top:1px solid #dddddd;
}
.sub_view_list_btn {
  width: 195px;
  height: 56px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 18px;
  cursor: pointer;
  transition: background 0.2s;
}
.sub_view_list_btn:hover {
  background: #f8f8f8;
}



/* ================================================================= */
/* 유투브 리스트 */
/* ================================================================= */
/* 유튜브 섹션 전체 컨테이너 */
.sub_youtube_list_container {
  width: 950px;
  margin: 0px 0;
}

/* 섹션 메인 타이틀 (골프 YouTube) */
.sub_youtube_list_main_title {
  font-size: 20px;
  font-weight: 900;
  color: #333;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid #333;
}

/* 3열 그리드 레이아웃 */
.sub_youtube_list_grid {
  display: grid;
  grid-template-columns: repeat(3, 300px); /* 300px씩 3열 */
  column-gap: 25px;  /* 가로 간격 */
  row-gap: 40px;     /* 세로 간격 */
}

/* 개별 아이템 박스 */
.sub_youtube_list_item {
  width: 300px;
  cursor: pointer;
}

/* 썸네일 영역 */
.sub_youtube_list_thumb {
  width: 300px;
  height: 190px;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  background-color: #000;
  margin-bottom: 12px;
}

.sub_youtube_list_thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

/* 호버 시 이미지 확대 효과 */
.sub_youtube_list_item:hover .sub_youtube_list_thumb img {
  transform: scale(1.05);
}

/* 영상 제목 텍스트 */
.sub_youtube_list_item_title {
  font-size: 14px;
  font-weight: 500;
  color: #333;
  line-height: 1.5;
  text-align: left;
  /* 2줄 초과 시 말줄임 처리 */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
}

/* 선택사항: 제목 호버 시 강조 */
.sub_youtube_list_item:hover .sub_youtube_list_item_title {
  color: #13c2dd;
  text-decoration: underline;
}


/* ================================================================= */
/* 유투브 모달 */
/* ================================================================= */

/* 모달 배경 오버레이 */
.sub_youtube_view_overlay {
  display: none; /* 기본적으로 숨김 */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7); /* 배경 어둡게 */
  z-index: 9999;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* 모달이 활성화되었을 때 노출 */
.sub_youtube_view_overlay.active {
 display: flex;
  opacity: 1;
}

/* 모달 메인 박스 */
.sub_youtube_view_container {
  width: 700px;
  height: 480px; /* 제목 높이를 고려해 소폭 조정 */
  background-color: #fff;
  border-radius: 10px;
  position: relative;
  padding: 40px;
  box-sizing: border-box;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* 닫기 버튼 */
.sub_youtube_view_close_btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 모달 제목 */
.sub_youtube_view_title {
  font-size: 17px;
  font-weight: 700;
  color: #000;
  margin: 0 0 20px 0;
  padding-right: 30px; /* 닫기 버튼과 겹치지 않게 */
  line-height: 1.4;
  word-break: keep-all;
}

/* 영상 콘텐츠 영역 */
.sub_youtube_view_video_wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 비율 유지 */
    height: 0;
    background: #000;
}

.sub_youtube_view_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sub_youtube_view_video_wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.block-title a {
  /* 한 줄로 배치하고 중앙 정렬 */
  display: inline-flex;
  align-items: center; 
  
  text-decoration: none;
  color: inherit;
  gap: 4px; /* 글자와 화살표 사이의 간격 */
}

.title-arrow {
  /* 화살표가 줄어들지 않도록 설정 */
  flex-shrink: 0;
  /* 살짝 위아래 위치가 안 맞는다면 margin-top으로 미세조정 */
  margin-top: 1px; 
}

/* 마우스 올렸을 때 효과 (선택사항) */
.block-title a:hover .title-arrow {
  transform: translateX(3px);
  transition: transform 0.2s ease;
}


/* 제목 영역을 한 줄로 정렬 */
.small-block-title .title-link {
  display: inline-flex; /* 텍스트와 아이콘을 한 줄로 묶음 */
  align-items: center;  /* 세로 중앙 정렬 */
  text-decoration: none;
  color: inherit;       /* 부모 폰트 컬러 상속 */
  gap: 2px;             /* 글자와 화살표 사이 간격 */
}

/* 화살표 스타일 */
.title-arrow {
  flex-shrink: 0;       /* 너비가 좁아져도 화살표 모양 유지 */
  margin-top: 1px;      /* 텍스트와 시각적 높이 미세 조정 */
}

/* 마우스 올렸을 때 효과 (선택사항) */
.title-link:hover .title-arrow {
  stroke: #13c2dd;      /* 마우스 올리면 cyan 컬러로 변경 */
  transform: translateX(3px); /* 오른쪽으로 살짝 이동 */
  transition: all 0.2s ease;
}

/* ================================================================= */
/* 구인구직 */
/* ================================================================= */
/* 레이아웃 초기화 및 컨테이너 */
.sub_recruit_wrapper {
  width: 950px;
  margin: 0 auto;
}


/* 헤더 전체 (타이틀 + 검색바) */
.sub_recruit_header {
  width: 950px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 25px;
}

/* 구인구직 타이틀 */
.sub_recruit_main_title {
font-family: 'ElectricSafetyBold';
  font-size: 30px;
  color: #333;
  margin: 0;
}

/* 검색바 컨테이너 (195px x 36px) */
.sub_recruit_search_container {
  display: flex;
  width: 195px;
  height: 36px;
  background-color: #fff;
  border: 1px solid #13c2dd;
  position: relative;
  box-sizing: border-box;
}

/* 입력창 */
.sub_recruit_search_input {
  width: 159px; /* 전체 195px - 버튼 36px */
  height: 100%;
  border: none;
  outline: none;
  padding: 0 12px;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  background: transparent;
}

/* Placeholder 디자인 (디자인의 color: #bbb 적용) */
.sub_recruit_search_input::placeholder {
  color: #bbb;
}

/* 검색 버튼 (36px x 36px) */
.sub_recruit_search_btn {
  width: 36px;
  height: 36px;
  background-color: #13c2dd;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  position: absolute;
  right: -1px; /* 부모 border 보정 */
  top: -1px;   /* 부모 border 보정 */
}

/* 버튼 내 SVG */
.sub_recruit_search_btn svg {
  width: 18px;
  height: 18px;
}

/* 호버 시 버튼 색상 살짝 변경 */
.sub_recruit_search_btn:hover {
  background-color: #11abbf;
  
}

/* --- 리스트 스타일 --- */
.sub_recruit_list_container {
  border-top: 1px solid #333;
  margin-bottom: 40px;
}

.sub_recruit_list_item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  border-bottom: 1px solid #dddddd;
  transition: background-color 0.2s;
}

/* ★ 마우스 오버(Hover) 시 상태 변경 ★ */
.sub_recruit_list_item:hover {
  background: #fafcff; /* 요청하신 배경색 */
}

.sub_recruit_list_left {
  display: flex;
  align-items: center;
  gap: 10px;
}



/* 공고 제목 */
.sub_recruit_list_title {
  font-size: 16px;
  font-weight: 400; /* 기본은 보통 굵기 */
  color: #333;
  margin: 0;
}

/* ★ 호버 시 제목 굵게 변화 ★ */
.sub_recruit_list_item:hover .sub_recruit_list_title {
  font-weight: 600;
}


.sub_recruit_list_date {
  font-size: 13px;
  font-weight: 500;
  color: #999;
}

.sub_recruit_list_company {
  font-size: 14px;
  font-weight: 500;
  color: #555;
  text-align: right;
}

/* 태그 공통 */
.sub_recruit_list_tag {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 52px;
  height: 22px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 2px;
  border: 1px solid;
}

.sub_recruit_list_tag.status_ing {
  color: #f36769;
  border-color: #f36769;
}

.sub_recruit_list_tag.status_end {
  color: #333;
  border-color: #ddd;
  background-color: #eee;
}

/* 마감된 항목의 텍스트 색상 변경 */
.sub_recruit_list_item.is_closed .sub_recruit_list_title {
  color: #999;
}


/* ================================================================= */
/* 페이지네이션 */
/* ================================================================= */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 50px;
  padding-bottom: 50px;
}

.page_num, .page_prev, .page_next {
  width: 34px;
  height: 34px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  border: 1px solid #ddd;
  background-color: #fff;
  font-size: 16px;
  font-weight: 600;
  color: #999;
  cursor: pointer;
  transition: all 0.2s;
}

.page_num.active {
  background-color: #374760;
  border-color: #374760;
  color: #fff;
}

.page_num:hover:not(.active) {
  background-color: #f8f8f8;
}


/* ================================================================= */
/* 인사말 */
/* ================================================================= */
/* 전체 컨테이너 (레프트가 없으므로 중앙 정렬) */
.sub_info_wrapper {
  width: 1100px;
  margin: 0 auto;
  padding: 50px 0;
}

/* 메인 타이틀 중앙 정렬 수정 */
.sub_info_main_title {
  font-size: 32px; /* 크기를 살짝 키워 강조 */
  font-weight: 700;
  text-align: center; /* 중앙 정렬 */
  color: #333;
  margin-bottom: 40px; /* 탭과의 간격 */
  position: relative;
}

/* 탭 메뉴 (인사말 / 오시는길) */
.sub_info_tabs {
  display: flex;
  gap: 16px;
  margin-bottom: 50px;
}

.sub_info_tab_item {
  flex: 1; /* 1:1 비율로 나눔 */
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* 활성화된 탭 (인사말) */
.sub_info_tab_item.active {
  background: #13c2dd;
  color: #fff;
}

/* 비활성화된 탭 (오시는길) */
.sub_info_tab_item:not(.active) {
  background: #f2f2f2;
  color: #333;
}

.sub_info_tab_item:hover {
  opacity: 0.8;
}

/* 본문 콘텐츠 섹션 */
.sub_info_content {
  width: 100%;
}

/* 상단 배너 이미지 */
.sub_info_banner {
  width: 1100px;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 50px;
}

.sub_info_banner_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 텍스트 그룹 정렬 */
.sub_info_text_group {
  text-align: center; /* 텍스트 중앙 정렬 */
}

.sub_info_welcome_title {
  font-size: 40px;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
}

.sub_info_highlight_text {
  font-size: 20px;
  font-weight: 700;
  color: #13c2dd;
  margin-bottom: 40px;
}

/* 상세 설명 본문 */
.sub_info_description {
  font-size: 17px;
  line-height: 1.8; /* 줄간격을 넓혀 가독성 향상 */
  color: #000;
  text-align: center;
}

.sub_info_description p {
  margin-bottom: 25px; /* 문단 사이 간격 */
}


/* ================================================================= */
/* 오시는길 */
/* ========================길======================================== */
/* 오시는 길 전체 컨테이너 */
.sub_map_container {
  width: 1100px;
  margin: 0 auto;
}

/* 지도 표시 영역 */
.sub_map_display {
  width: 1100px;
  height: 450px;
  background-color: #ffffff;
  border: 0px solid #ddd;
  border-radius: 0px;
  overflow: hidden;
  margin-bottom: 40px;
}

/* 정보 바 메인 컨테이너 */
.sub_map_info_bar {
  width: 1100px;
  height: 80px;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0px 0px 10px 0 rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  position: relative;
}

/* 개별 정보 아이템 (주소/전화 공통) */
.sub_map_info_item {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* 아이콘 정렬 */
.sub_map_info_icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 라벨 (주소, 대표전화) */
.sub_map_info_label {
  font-size: 20px;
  font-weight: 700;
  color: #333;
  margin-right: 5px;
}

/* 실제 텍스트 내용 */
.sub_map_info_text {
  font-size: 20px;
  font-weight: 400;
  color: #333;
}

/* 중앙 세로 구분선 */
.sub_map_info_divider {
  width: 1px;
  height: 30px;
  background-color: #CCCCCC;
  margin: 0 40px; /* 좌우 간격 조절 */
}

/* 주소 박스 전용 스타일 (너비 맞춤이 필요할 경우) */
.sub_map_addr_box {
  flex-shrink: 0;
}

/* 전화번호 박스 전용 스타일 */
.sub_map_tel_box {
  flex-shrink: 0;
}


/* ================================================================= */
/* 고객센터 */
/* ========================길======================================== */

/* 전체 레이아웃 */
.sub_customer_wrapper {
  width: 1100px;
  margin: 0 auto;
  padding: 50px 0;
}

/* 타이틀 중앙 정렬 */
.sub_customer_main_title {
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  color: #333;
  margin-bottom: 40px;
}

/* 탭 메뉴 */
.sub_customer_tabs {
  display: flex;
  gap: 16px;
  margin-bottom: 60px;
}

.sub_customer_tab_item {
  flex: 1;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
}

.sub_customer_tab_item.active { background: #13c2dd; color: #fff; }
.sub_customer_tab_item:not(.active) { background: #f2f2f2; color: #333; }

/* 개인정보 동의 섹션 */
.sub_customer_privacy_section {
  margin-bottom: 50px;
}

.sub_customer_section_title {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
}

.sub_customer_privacy_box {
  width: 100%;
  height: 130px;
  border: 1px solid #ddd;
  padding: 20px;
  font-size: 14px;
  line-height: 1.6;
  color: #333;
  overflow-y: auto;
  background: #fff;
  box-sizing: border-box;
}

.sub_customer_agree_check {
  margin-top: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 16px;
  color: #333;
}

.sub_customer_checkbox {
  width: 18px;
  height: 18px;
  accent-color: #f36769; /* 체크박스 포인트 컬러 */
}

/* 입력 리스트 (구분선 포함) */
.sub_customer_input_list {
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  padding: 20px 0;
  margin-bottom: 40px;
}

.sub_customer_input_row {
  display: flex;
  align-items: flex-start;
  padding: 12px 0;
}

.sub_customer_label {
  width: 140px;
  font-size: 16px;
  color: #333;
  padding-top: 10px;
}

.sub_customer_label .required {
  color: #f36769;
}

.sub_customer_input_wrap {
  flex: 1;
}

/* 인풋 및 텍스트에어리어 스타일 */
.sub_customer_input, .sub_customer_textarea {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 2px;
  padding: 10px 15px;
  font-size: 14px;
  box-sizing: border-box;
  outline: none;
}

.sub_customer_input:focus, .sub_customer_textarea:focus {
  border-color: #13c2dd;
}

.sub_customer_input { height: 40px; }
.sub_customer_textarea { height: 100px; resize: none; }

/* 파일 업로드 스타일 */
.sub_customer_file_box {
  display: flex;
  gap: 10px;
  margin-bottom: 8px;
}

.sub_customer_file_name {
  width: 300px;
  height: 40px;
  border: 1px solid #ddd;
  padding: 0 15px;
  background: #f9f9f9;
}

.sub_customer_file_btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  background: #efefef;
  border: 1px solid #ddd;
  cursor: pointer;
  font-size: 13px;
}

.sub_customer_file_hidden { display: none; }
.sub_customer_file_guide { font-size: 13px; color: #333; margin: 0; }

/* 하단 버튼 그룹 */
.sub_customer_btn_group {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.sub_customer_btn {
  width: 97px;
  height: 40px;
  border-radius: 2px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  border: none;
}

.sub_customer_btn_confirm { background: #333; color: #fff; }
.sub_customer_btn_cancel { background: #fff; color: #333; border: 1px solid #ddd; }


/* ================================================================= */
/* 약관 */
/* ================================================================= */
/* 전체 레이아웃 */
.sub_policy_wrapper {
  width: 1100px;
  margin: 0 auto;
  padding: 50px 0;
}

/* 상단 메인 타이틀 */
.sub_policy_main_title {
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  color: #333;
  margin-bottom: 20px;
  padding-bottom: 30px;
  border-bottom: 2px solid #333; /* 타이틀 하단 강조선 */
}

/* 5분할 탭 메뉴 */
.sub_policy_tabs {
  display: flex;
  width: 1100px;
  height: 50px;
  margin-bottom: 50px;
}

.sub_policy_tab_item {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #ddd;
  background: #fff;
  font-size: 15px;
  color: #333;
  text-decoration: none;
  margin-left: -1px; /* 테두리 겹침 방지 */
}

/* 탭의 양 끝 라운드 처리 */
.sub_policy_tab_item:first-child {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  margin-left: 0;
}
.sub_policy_tab_item:last-child {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

/* 활성화된 탭 스타일 (이용약관) */
.sub_policy_tab_item.active {
  border-color: #333;
  font-weight: 700;
  z-index: 1; /* 활성화된 탭 테두리 강조 */
}

/* 약관 본문 영역 */
.sub_policy_content_container {
  margin-top: 30px;
}

.sub_policy_sub_title {
  font-size: 30px;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
  text-align: left;
}

/* 약관 텍스트 박스 */
.sub_policy_text_box {
  width: 1100px;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 40px;
  box-sizing: border-box;
  background: #fff;
}

.sub_policy_section {
  margin-bottom: 30px;
}

.sub_policy_section:last-child {
  margin-bottom: 0;
}

.sub_policy_section h4 {
  font-size: 17px;
  font-weight: 700;
  color: #333;
  margin-bottom: 10px;
}

.sub_policy_section p {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
  color: #555;
  margin-bottom: 5px;
}