@charset "utf-8";
@import url("//fonts.googleapis.com/earlyaccess/nanumgothic.css");

/* 사용자모드 메인컬러 CSS 변수 정의 (기본값) */
/* headHtml.jsp에서 DB 설정값으로 덮어씌움 */
:root {
	--color-primary01: #ea1c5b;
}

/* [2026-01-01] 모바일 레이아웃 오버플로우 방지 */
@media all and (max-width:700px) {
	#wrap,
	.program_box,
	.wrapper,
	.programCon,
	.programCon_custom01,
	.prd_tab_wrapper,
	.prd_tab_sub_depth_wrap,
	.prd_tab_depth3_wrap,
	.side_filter_layout_wrapper,
	.side_filter_content_area,
	.com_prd_wrapper {
		max-width: 100vw !important;
		width: 100% !important;
		overflow-x: hidden !important;
		box-sizing: border-box !important;
	}
	
	.inner {
		max-width: 100% !important;
		width: 100% !important;
		padding-left: 10px !important;
		padding-right: 10px !important;
		box-sizing: border-box !important;
	}
	
	/* ===== 검색 영역: 한 줄 유지 ===== */
	.prd_program_search_wrap {
		max-width: 100% !important;
		box-sizing: border-box !important;
	}
	
	.prd_search_wrapper {
		display: flex !important;
		flex-wrap: nowrap !important;
		gap: 8px !important;
		max-width: 100% !important;
		box-sizing: border-box !important;
	}
	
	.search_box_space_cus_tom {
		flex: 1 !important;
		min-width: 0 !important;
		max-width: 100% !important;
		box-sizing: border-box !important;
	}
	
	/* 검색 select/input 영역 */
	.search_box_space_cus_tom .left_box.program_select_box01 {
		width: 80px !important;
		min-width: 80px !important;
		flex-shrink: 0 !important;
	}
	
	.search_box_space_cus_tom .left_box.program_search_box01 {
		flex: 1 !important;
		min-width: 0 !important;
	}
	
	.search_box_space_cus_tom .btn_search01 {
		width: 40px !important;
		min-width: 40px !important;
		flex-shrink: 0 !important;
	}
	
	/* 목록/갤러리 버튼 - 모바일에서 숨김 (일정 페이지는 제외) */
	.prd_search_wrapper .right_box {
		display: none !important;
	}
	
	/* 일정 페이지 버튼은 모바일에서도 표시 */
	.calender_tit_flex_box01 .prd_search_wrapper .right_box {
		display: flex !important;
	}
	
	/* ===== 제품소개: 모바일 - PC 구조 유지, 레이아웃만 세로로 변경 ===== */
	
	/* ul 리스트 - 세로 배치 */
	.com_prd_box_list_wrapper>ul,
	.com_prd_box_list_wrapper.list_type>ul {
		flex-direction: column !important;
		gap: 15px !important;
		padding: 10px !important;
	}
	
	/* li - 전체 너비, 그림자 적용 */
	.com_prd_box_list_wrapper>ul>li,
	.com_prd_box_list_wrapper.list_type>ul>li {
		width: 100% !important;
		box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.1) !important;
		border-radius: 8px !important;
		border: 1px solid #eee !important;
		overflow: hidden !important;
	}
	
	/* prd_card_wrapper - 모바일에서 flex column으로 세로 배치 */
	.com_prd_box_list_wrapper>ul>li .prd_card_wrapper,
	.com_prd_box_list_wrapper.list_type>ul>li .prd_card_wrapper {
		display: flex !important;
		flex-direction: column !important; /* 이미지 위, 텍스트 아래 */
		width: 100% !important;
	}
	
	/* 이미지 영역 - 전체 너비, 높이 자동 */
	.com_prd_box_list_wrapper>ul>li .prd_card_wrapper .img_type,
	.com_prd_box_list_wrapper.list_type>ul>li .prd_card_wrapper .img_type {
		width: 100% !important;
		max-width: 100% !important;
		padding: 15px 15px 0 15px !important; /* 하단 padding 제거 */
		box-sizing: border-box !important;
	}
	
	/* 이미지 - width 고정, height 비율 유지 */
	.com_prd_box_list_wrapper>ul>li .prd_card_wrapper .img_type img,
	.com_prd_box_list_wrapper.list_type>ul>li .prd_card_wrapper .img_type img {
		width: 100% !important;
		height: auto !important;
	}
	
	/* 텍스트 영역 - 전체 너비 */
	.com_prd_box_list_wrapper>ul>li .prd_card_wrapper .txt_type,
	.com_prd_box_list_wrapper.list_type>ul>li .prd_card_wrapper .txt_type {
		width: 100% !important;
		padding: 0 20px 20px !important; /* 상단 padding 제거 */
		box-sizing: border-box !important;
		background: #fff !important;
	}
	
	/* 카테고리 정보 */
	.com_prd_box_list_wrapper>ul>li .txt_type .prd_category_info {
		font-size: 16px !important;
		margin-bottom: 8px !important;
	}
	
	/* 제목 */
	.com_prd_box_list_wrapper>ul>li .txt_type h5 {
		font-size: 20px !important;
		margin-bottom: 10px !important;
		padding-bottom: 0 !important;
	}
	
	/* spec 영역 */
	.com_prd_box_list_wrapper>ul>li .txt_type .txt_w {
		display: flex !important;
		gap: 10px !important;
		margin-top: 8px !important;
		font-size: 15px !important;
	}
	
	/* spec 라벨 */
	.com_prd_box_list_wrapper>ul>li .txt_type .txt_w .list_tit {
		flex-shrink: 0 !important;
		min-width: 50px !important;
		color: #666 !important;
	}
	
	/* spec 값 */
	.com_prd_box_list_wrapper>ul>li .txt_type .txt_w .list_alt {
		flex: 1 !important;
		min-width: 0 !important;
		overflow: hidden !important;
		text-overflow: ellipsis !important;
		white-space: nowrap !important;
	}
	
	/* 대분류 탭 */
	.prd_tab_wrapper {
		height: 45px !important;
	}
	
	.prd_tab_slide_box01 .item {
		font-size: 14px !important;
		padding: 0 10px !important;
		min-width: 60px !important;
	}
	
	/* 상품상세 탭 - 모바일에서 한 줄로 표시 */
	.prd_tab_wrapper.shop_info .prd_tab_slide_box01 .item {
		font-size: 13px !important;
		padding: 0 6px !important;
		min-width: auto !important;
	}
	
	/* 중분류/소분류 영역 */
	.prd_tab_sub_depth_wrap .sub_depth_item {
		padding: 10px 0 !important;
	}
	
	.prd_tab_sub_depth_wrap .sub_depth_item .inner {
		gap: 10px !important;
		padding-left: 10px !important;
	}
	
	.prd_tab_sub_depth_wrap .tab_sub_depth {
		padding: 6px 10px !important;
		font-size: 14px !important;
	}
	
	/* 데이터 없음 - 전체 영역 */
	.nodata_full_wrapper {
		width: 100% !important;
	}
	
	.nodata_full_wrapper .nodata {
		border: none !important;
	}
}

.programCon {
	max-width: 1200px;
	margin: 15px auto;
	font-family: 'Noto Sans KR', sans-serif;
	letter-spacing: 0;
	overflow: hidden;
}

.programCon .urlFile {
	text-align: left;
	vertical-align: middle;
}

.programCon .urlFile img {
	vertical-align: middle;
	margin-right: 3px;
}

.programCon .urlFile p {
	padding: 15px 0 15px 20px;
	border-top: 1px solid #e5e5e5;
}

.programCon .urlFile p a {
	font-size: 13px;
	color: #000;
}

.programCon .faq_table .urlFile {
	margin-top: 15px;
}

.programCon .faq_table .urlFile p:last-of-type {
	border-bottom: 1px solid #e5e5e5;
}

.mt60 {
	margin-top: 60px;
}

/* chip_filter가 있는 페이지에서 검색영역 간격 제거 */
.programCon_custom01:has(.chip_filter_wrapper) .prd_search_wrapper02.mt60 {
	margin-top: 0 !important;
}

/*================================================= 회원 =================================================*/


/**** 로그인 ****/
.login_wrap {
	max-width: 1100px;
	text-align: center;
	padding: 65px 0;
	border-top: 2px solid #313236;
	margin: 0 auto;
}

/*로그인 타이틀(회원전용서비스)*/
.login_wrap .login_tit {
	font-size: 20px;
}

.login_wrap .login_tit span {
	font-size: 56px;
	font-weight: 800;
}

/*로그인 서브타이틀(로그인후확인하실수있습니다)*/
.login_wrap .login_subtit {
	font-size: 28px;
	color: #454545;
	font-weight: bold;
	margin: 15px 0 25px;
	line-height: 1.3;
}

/*로그인 텍스트(아이디와비밀번호를입력해주세요///)*/
.login_wrap .login_txt {
	font-size: 16px;
	color: #444;
	line-height: 1.4;
}

.loginCon li .login_btn {
	float: right;
	display: block;
	width: 127px;
	height: 129px;
	line-height: 121px;
	color: #fff;
	font-size: 18px;
	font-weight: bold;
}

/* li.last 아직회원이아니신가요? 회원가입/아이디비밀번호찾기 부분 */
.loginCon li.last {
	width: calc(50% - 50px);
	padding-left: 50px;
}

.loginCon li.last div {
	height: 40px;
	line-height: 40px;
	text-align: left;
}

.loginCon li.last div span {
	font-size: 16px;
	color: #222;
}

.loginCon li.last div a {
	float: right;
	width: 180px;
	height: 40px;
	font-size: 15px;
	color: #fff;
	background: #5b5b5b;
	text-align: center;
}

.loginCon li.last div:last-of-type {
	margin-top: 20px;
}


/**** 아이디/비밀번호 찾기 ****/
/*아이디찾기/비밀번호찾기 폼박스*/
.findCon_wrap {
	max-width: 1200px;
	margin: 0 auto;
	overflow: hidden;
}

.findCon_wrap>div {
	float: left;
	width: 50%;
	margin: 40px 0 0;
	border-top: 1px solid #e1e3e4;
	padding-top: 40px;
}

.findCon_wrap>div:first-of-type .in_hei {
	padding-right: 5%;
}

/* up_txt 입력창 위 텍스트 */
.findCon_wrap .up_txt {
	text-align: left;
}

.findCon_wrap .up_txt p {
	font-size: 16px;
	color: #222;
	font-weight: 700;
	margin-bottom: 5px;
}

.findCon_wrap .up_txt span {
	display: inline-block;
	height: 35px;
	font-size: 14px;
	color: #666;
	letter-spacing: -0.025em;
}

.findCon {
	padding: 15px 0;
	box-sizing: border-box;
}

.findCon_wrap .in_hei {
	height: 295px;
}

.findCon li.on {
	display: block;
}

.findCon li dl {
	overflow: hidden;
	padding: 15px 0;
	border: 1px solid #dedede;
	box-sizing: border-box;
	margin-top: 10px;
}

.findCon li dl:first-of-type {
	margin-top: 0;
}

.findCon li dl dt {
	float: left;
	width: 60px;
	height: 30px;
	padding: 0 18px;
	border-right: 1px solid #dedede;
	box-sizing: border-box;
}

.findCon li dl dt img {
	margin-top: 2.5px;
}

/* 클래스그대로 아이콘*/
.findCon li dl dt .password_icon {
	margin-top: 3px;
}

.findCon li dl dt .name_icon {
	margin-top: 3.5px;
}

.findCon li dl dt .email_icon {
	margin-top: 7px;
}

/* 인풋영역 */
.findCon li dl dd {
	float: left;
	width: calc(100% - 60px);
}

.findCon li dl dd input {
	width: calc(100% - 40px);
	height: 30px;
	margin: 0 20px;
	font-size: 14px;
	border: 0;
}

.under_btn {
	overflow: hidden;
	margin: 20px 0 0;
	border-top: 1px solid #e1e3e4;
}

.under_btn .login_btn {
	display: block;
	width: 50%;
	margin: 0 auto;
	height: 60px;
	line-height: 60px;
	color: #fff;
	font-size: 18px;
	font-weight: bold;
	margin-top: 30px;
}

.sec_ucon .login_btn {
	display: block;
	max-width: 330px;
	height: 60px;
	line-height: 60px;
	margin: 0 auto;
	color: #fff;
	font-size: 18px;
	font-weight: bold;
	margin-top: 30px;
}


/**** password(글열람시 비밀번호를 입력해주세요 부분) ****/
.passwordCon {
	max-width: 550px;
	margin: 70px auto 0;
	overflow: hidden;
}

.passwordCon li {
	width: 100%;
}

.passwordCon li dl {
	overflow: hidden;
	padding: 15px 0;
	border: 1px solid #dedede;
	box-sizing: border-box;
}

.passwordCon li dl:last-of-type {
	margin-top: 10px;
}

.passwordCon li dl dt {
	float: left;
	width: 60px;
	height: 30px;
	padding: 0 18px;
	border-right: 1px solid #dedede;
	box-sizing: border-box;
}

.passwordCon li dl dt img {
	margin-top: 2.5px;
}

.passwordCon li dl dd {
	float: left;
	width: calc(100% - 60px);
}

.passwordCon li dl dd input {
	width: calc(100% - 40px);
	height: 30px;
	margin: 0 20px;
	font-size: 14px;
	border: 0;
}

.passwordCon li .password_btn {
	margin-top: 20px;
	font-size: 0;
}

.passwordCon li .password_btn a {
	display: inline-block;
	width: calc(50% - 5px);
	height: 60px;
	line-height: 60px;
	color: #fff;
	font-size: 22px;
	font-weight: bold;
	margin-right: 10px;
}

.passwordCon li .password_btn a:last-of-type {
	margin-right: 0;
	background: #5b5b5b;
}


/**** 회원가입 ****/
/* join 회원가입 상단 동의부분 */
.programCon .join {
	position: relative;
	margin: 0;
	padding: 0;
	border: 0;
}

.programCon .join .joinTop {
	width: 100%;
	overflow: hidden;
	margin-top: 20px;
}

.programCon .join .joinTop:first-of-type {
	margin-top: 0;
}

/* ScoIILy 동의내용 */
.programCon .join .ScrollLy {
	height: 180px;
	margin: 0;
	padding: 10px 20px;
	border: 1px solid #e5e5e5;
	color: #444;
	overflow-x: hidden;
	overflow-y: auto;
	line-height: 1.8;
	box-sizing: border-box;
}

.programCon .join .ScrollLy * {
	font-size: 14px;
}

/* jcheck 동의합니다 체크 */
.programCon .join .joinTop .jcheck {
	width: 100%;
	font-size: 14px;
	padding: 12px 0;
	color: #222;
	border: 1px solid #e5e5e5;
	border-top: 0;
	box-sizing: border-box;
	text-align: right;
	background: #f9f8f8;
}

.programCon .join .joinTop .jcheck * {
	display: inline-block;
	vertical-align: middle;
}

.programCon .join .joinTop .jcheck input {
	width: 15px;
	height: 15px;
}

.programCon .join .joinTop .jcheck label {
	margin-right: 20px;
}

/* 아이디중복확인 클릭시 팝업 중복확인창 */
.idCheck_wrap {
	height: 360px;
	margin: 10px;
	padding: 40px 20px;
	box-sizing: border-box;
	border: 1px solid #d7d7d7;
	text-align: center;
}

.idCheck_wrap h2 {
	font-size: 35px;
	color: #222;
	letter-spacing: -0.06em;
}

.idCheck_wrap h2 span {
	font-weight: 300;
}

.idCheck_wrap p {
	margin: 20px 0;
	font-size: 16px;
	color: #666;
	letter-spacing: -0.06em;
	line-height: 1.5;
}

.idCheck_wrap .conBox {
	font-size: 0;
}

.idCheck_wrap .conBox dd {
	display: inline-block;
	margin: 0 2.5px;
	font-size: 16px;
	color: #333;
}

.idCheck_wrap .conBox dd input[type=text] {
	padding: 7px 10px;
	border: 1px solid #d3d3d3;
}

.idCheck_wrap .conBox dd input[type=submit] {
	padding: 7px 10px;
	border: 1px solid #797979;
	border-radius: 5px;
	background: none;
	cursor: pointer;
}

.idCheck_wrap .btnok {
	margin-top: 10px;
	font-size: 16px;
	color: #666;
}

.idCheck_wrap .btnok strong {
	font-weight: normal;
}

.idCheck_wrap .btnok span {
	color: #333;
	font-weight: bold;
}

.idCheck_wrap .btnok .btnAll {
	margin-top: 30px;
}

.idCheck_wrap .btnok .btnAll a {
	display: inline-block;
	width: 120px;
	padding: 8px 0;
	font-size: 16px;
	color: #fff;
	background: #666;
}

/* 회원가입 입력창 */
.writeForm {
	margin-top: 60px;
	text-align: left;
}

.writeForm>table {
	width: 100%;
	border-top: 2px solid #888;
}

.writeForm table .writeForm_col01 {
	width: 150px;
}

.writeForm table .writeForm_col02 {
	width: 15%;
}

.writeForm table .writeForm_col03 {
	width: 35%;
}

/*.writeForm table tr{border-bottom:1px solid #e1e3e4; font-size:0;}*/
.writeForm>table>tbody>tr {
	border-bottom: 1px solid #e1e3e4;
}

.writeForm>table>tbody>tr>th {
	padding: 10px;
	font-size: 14px;
	color: #222;
	background: #f9f8f8;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.writeForm>table>tbody>tr>td {
	padding: 15px 5px 15px 15px;
	color: #444;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.writeForm table tr td input[type="text"] {
	height: 37px;
	border: 1px solid #dedede;
	font-size: 14px;
	padding: 0 20px;
	vertical-align: middle;
	box-sizing: border-box;
}

.writeForm table tr td input[type="password"] {
	height: 37px;
	border: 1px solid #dedede;
	font-size: 14px;
	padding: 0 20px;
	vertical-align: middle;
	box-sizing: border-box;
}

.writeForm table tr td input[type="file"] {
	width: 60%;
	height: 42px;
	border: 1px solid #dedede;
	font-size: 14px;
	padding: 7px 20px;
	vertical-align: middle;
	box-sizing: border-box;
}

.writeForm table tr td .inputTxt {
	width: 248px;
}

.writeForm table tr td .inputPass {
	width: 248px;
}

/*.writeForm table tr td .inputTxt{width:calc(30% - 40px);}*/
.writeForm table tr td .inputPass.size02 {
	width: calc(40% - 40px);
	max-width: 248px;
}

.writeForm table tr td .inputNum {
	width: 100px;
	text-align: center;
}

.writeForm table tr td .inputNum:first-of-type {
	margin-right: 10px;
}

.writeForm table tr td .inputPhone {
	width: 248px;
}

.writeForm table tr td .inputEmail {
	width: 248px;
}

.writeForm table tr td .inputEmail03 {
	width: 248px;
}

.writeForm table tr td input[type="text"].inputEmail02 {
	vertical-align: top;
}

.writeForm table tr td .inputTit {
	width: 80%;
}

.writeForm table tr td select {
	width: 140px;
	height: 37px;
	padding: 0 0 0 10px;
	font-size: 14px;
	color: #666;
	margin-right: 10px;
	text-align: center;
	text-align-last: center;
	border-color: #dedede;
	vertical-align: top;
}

.writeForm_top table tr td select {
	width: 70%;
}

.writeForm table tr td select.selecEmail {
	width: 245px;
}

.writeForm table tr td select option {
	text-align: center;
}

.writeForm table tr td>span {
	margin: 0 10px;
	font-size: 14px;
	color: #444;
	vertical-align: middle;
}

.writeForm table tr td span.label {
	font-size: 14px;
}

.writeForm table tr td.step span {
	color: #333;
	font-weight: 500;
}

.writeForm table tr td span a {
	font-size: 18px;
}

.writeForm table tr td textarea {
	width: 100%;
	height: 268px;
	padding: 15px;
	margin: 13px 0;
	resize: none;
	font-size: 14px;
	box-sizing: border-box;
	border: 1px solid #dedede;
}

.writeForm_btn {
	text-align: center;
	margin-top: 60px;
	font-size: 0;
	position: relative;
}

.writeForm_btn a {
	display: inline-block;
	width: 180px;
	height: 50px;
	line-height: 50px;
	color: #fff;
	font-size: 15px;
}

.writeForm_btn a:nth-of-type(2) {
	background: #87888a;
	margin-left: 10px;
}

.writeForm_btn a.member_out {
	position: absolute;
	right: 0;
}

#useFile a.btns {
	display: inline-block;
	height: 40px;
	padding: 0 10px;
	line-height: 40px;
	color: #fff !important;
	font-size: 15px;
	background: #87888a;
	text-align: center;
	font-weight: 300;
	vertical-align: top;
	box-sizing: border-box;
}

.writeForm table tr td .label_wrap {
	margin: 0;
}

/* id 중복찾기*/
.writeForm table tr td a.id_ch {
	display: inline-block;
	width: 140px;
	height: 37px;
	line-height: 35px;
	font-size: 14px;
	color: #222;
	margin-left: 10px;
	text-align: center;
	vertical-align: middle;
	box-sizing: border-box;
	border: 1px solid #222;
}

/* zip_ch 우편번호 찾기*/
.writeForm table tr td a.zip_ch {
	display: inline-block;
	width: 140px;
	height: 37px;
	line-height: 35px;
	font-size: 14px;
	color: #222;
	margin-left: 10px;
	text-align: center;
	vertical-align: middle;
	box-sizing: border-box;
	border: 1px solid #222;
}

/* 비밀번호 확인 */
.writeForm table tr td span.password_ch {
	font-size: 14px;
	color: #666;
	margin: 0 60px 0 40px;
}

.writeForm table tr td.editor {
	padding: 13px 0;
}

.writeForm table tr td .addr {
	width: calc(50% - 40px);
}

.writeForm>table>tbody>tr>td {
	overflow: hidden;
}

.writeForm table tr td select.selectNum {
	width: 100px;
}

.writeForm table tr td label {
	font-size: 14px;
	margin-right: 30px;
	vertical-align: middle;
}

.writeForm table tr td label:last-of-type {
	margin-right: 0;
}

.writeForm table tr td input[type="checkbox"] {
	width: 15px;
	height: 15px;
	margin: 0 10px 0 20px;
	vertical-align: middle;
}

.writeForm table tr td input[type="radio"] {
	width: 15px;
	height: 15px;
	margin-right: 10px;
	vertical-align: middle;
}

.writeForm table tr td i {
	font-style: normal;
}

.writeForm table tr td .modal-content input[type="checkbox"] {
	margin: 4px 0 0 -20px;
}

.writeForm table tr .spam_td {
	font-size: 14px;
}

.writeForm table tr .spam_td img {
	margin: 0 10px;
	vertical-align: middle;
}

.writeForm span.col01 {
	color: var(--color-primary01);
	display: inline-block;
	margin-right: 3px;
}

.writeForm th span.col01 {
	margin-left: -9px;
}

.writeForm td p.he_txt {
	margin-bottom: 10px;
}

.show1000i {
	display: none;
}

/* table 게시판 스타일 */
.program_table table {
	width: 100%;
	border-top: 2px solid #313236;
	table-layout: fixed;
}

.program_table table tr {
	border-bottom: 1px solid #e1e3e4;
	font-size: 0;
}

.program_table table tr th {
	height: 47px;
	padding: 0 10px;
	font-size: 14px;
	color: #001e26;
	font-weight: bold;
	line-height: 1.4;
	background: #f9f8f8;
}

.program_table table tr td {
	height: 45px;
	font-size: 14px;
	padding: 5px 10px;
	color: #383838;
	text-align: center;
	line-height: 1.3;
	word-break: break-all;
}

.program_table table tr td.tit {
	text-align: left;
	color: #222;
}

.program_table table tr td.tit .up_btnw {
	vertical-align: middle;
	font-size: 0;
}

.program_table table tr td.tit .up_btnw > * {
	font-size: 11px;
}

.program_table table tr td.tit p.mmw100 {
	width: auto;
	vertical-align: middle;
}

.program_table table tr td.bna {
	position: relative;
	padding: 10px 0;
	font-size: 0;
}

.program_table table tr td.bna img {
	width: 100%;
	max-width: 130px;
	height: auto;
	max-height: 130px;
}

.program_table table tr td.bna>span {
	display: block;
	position: absolute;
	width: 50px;
	padding: 2px 0;
	bottom: 10px;
	left: 15px;
	font-size: 11px;
	color: #fff;
	background: #666;
	text-align: center;
}

.program_table table tr td.bna>span.colafer {
	background-color: var(--color-primary01);
}

.program_table table tr td img {
	vertical-align: middle;
}

.program_table table tr td p {
	display: inline-block;
	width: 100%;
	line-height: 1.45;
	word-break: break-all;
	box-sizing: border-box;
}

.program_table table tr td a {
	font-size: 14px;
	color: #383838;
}

.program_table table tr td .consult_on {
	display: none;
}

.titCenter_table table tr td.tit {
	text-align: center;
}

.program_table table tr.on_e {
	background: #f3f8fe;
}

.program_table table tr.on_e td {
	background: #f3f8fe;
	color: #0063e9;
}

/*아이콘스타일*/
.new_icon {
	display: inline-block;
	width: 37px;
	height: 22px;
	box-sizing: border-box;
	line-height: 21px;
	font-size: 11px;
	text-align: center;
	font-weight: 300;
	vertical-align: middle;
	background: #fff;
	margin-right: 8px;
}

.new_icon.gre {
	color: #99d802;
	border: 1px solid #99d802;
}

/* 번호대신 상태바 ex)공지 */
.noti_icon {
	display: inline-block;
	width: 34px;
	height: 22px;
	box-sizing: border-box;
	line-height: 21px;
	font-size: 11px;
	color: var(--color-primary01);
	border: 1px solid var(--color-primary01);
	text-align: center;
	vertical-align: middle;
	background: #fff;
	margin-right: 8px;
}

.ans_icon {
	display: inline-block;
	width: 30px;
	height: 18px;
	margin-right: 4px;
	box-sizing: border-box;
	line-height: 18px;
	font-size: 12px;
	color: #fff;
	background: #307dd4;
	vertical-align: baseline;
	text-align: center;
}

/* 제목왼쪽에 뜨는 상태바 ex)지점/피부(치아미백) */
.branch01 {
	display: inline-block;
	padding: 2px;
	margin-right: 3px;
	line-height: 1;
	font-size: 13px;
	color: #222;
	box-sizing: border-box;
	border: 1px solid #222;
	background: #fff;
}

.branch02 {
	display: inline-block;
	padding: 2px;
	margin-right: 3px;
	line-height: 1;
	font-size: 13px;
	color: #307dd4;
	box-sizing: border-box;
	border: 1px solid #307dd4;
	background: #fff;
}


.program_table table tr td.tit .noti_icon {
	display: none;
}

/* 답변 상태바 ex)답변(대기중)*/
.program_table table tr td .answer_icon img {
	margin-right: 3px;
	vertical-align: text-top;
}

.program_table table tr td .answer_icon2 {
	margin-left: 35px;
}

.program_table table tr td .answer_icon2 img {
	margin-right: 10px;
	vertical-align: middle;
}

/* 상태 대기*/
.program_table table tr td .wait {
	display: inline-block;
	padding: 5px 10px;
	color: #cbcbcb;
	border: 1px solid #cbcbcb;
	background: #fff
}

/* 상태 답변*/
.program_table table tr td .answer {
	display: inline-block;
	padding: 5px 10px;
	color: #307dd4;
	border: 1px solid #307dd4;
}

/* 상태 공개*/
.program_table table tr td .open {
	display: inline-block;
	padding: 5px 10px;
	color: #0063e9;
	border: 1px solid #0063e9;
}

/* 상태 비공개*/
.program_table table tr td .closed {
	display: inline-block;
	padding: 5px 4px;
	color: var(--color-primary01);
	border: 1px solid var(--color-primary01);
}

.program_table table tr td .hit {
	display: none;
	margin-right: 3px;
}

.program_table table tr td .rep_txt {
	color: #f60029;
	font-weight: bold;
}

/*
.program_table table tr td.nt_list img{width:100%; height:130px;}
*/
/*테이블 witdh 값 class*/
.program_table table .w70 {
	width: 70px;
}

.program_table table .w80 {
	width: 80px;
}

.program_table table .w90 {
	width: 90px;
}

.program_table table .w100 {
	width: 100px;
}

.program_table table .w110 {
	width: 110px;
}

.program_table table .w130 {
	width: 130px;
}

.program_table table .w150 {
	width: 150px;
}

.program_table table .w160 {
	width: 160px;
}

.program_table table .w200 {
	width: 200px;
}

.program_table table .w300 {
	width: 300px;
}

/* 글쓰기 버튼*/
.write_btn {
	overflow: hidden;
	font-size: 0;
	text-align: center;
	margin-top: 20px;
}

.write_btn dt {
	float: left;
}

.write_btn dt a {
	display: inline-block;
	width: 80px;
	height: 40px;
	line-height: 40px;
	font-size: 12px;
	color: #fff;
	background: #b7b7b7;
}

.write_btn dt a:first-of-type {
	margin-right: 5px;
}

.write_btn dd {
	float: right;
}

.write_btn dd a {
	display: inline-block;
	width: 117px;
	height: 40px;
	line-height: 40px;
	font-size: 15px;
	color: #fff;
	background: #323337 url("/manage/img/write_icon.png") no-repeat 16px 12px;
	padding-left: 27px;
	box-sizing: border-box;
}

/* 게시판 하단 검색바 (거의 공통이라 보면 됨 )*/
.program_search {
	text-align: center;
	font-size: 0;
	margin-top: 30px;
}

.program_search select {
	height: 32px;
	padding: 0 0 0 5px;
	font-size: 14px;
	color: #666;
	margin-right: 10px;
	text-align: center;
	text-align-last: center;
	border-color: #dedede;
	vertical-align: middle;
}

.program_search input[type="text"] {
	width: 300px;
	height: 32px;
	border: 1px solid #dedede;
	font-size: 14px;
	padding: 0 20px;
	vertical-align: middle;
	box-sizing: border-box;
}

.program_search a {
	vertical-align: middle;
	display: inline-block;
	width: 65px;
	height: 32px;
	font-size: 14px;
	color: #307dd4;
	box-sizing: border-box;
	text-align: center;
	line-height: 30px;
	border: 1px solid #307dd4;
	margin-left: 5px;
}



/**** 온라인예약 ****/
.writeForm table tr td .spamCode {
	float: left;
	width: 210px;
	height: 100px;
	margin: 13px 10px 13px 0;
	background: #fafafa;
	border: 1px solid #e5e5e5;
	box-sizing: border-box;
	text-align: center;
}

.writeForm table tr td input[type="text"].inputSpam {
	width: 328px;
	height: 48px;
	margin: 13px 0 15px;
}

.writeForm table tr td .spamTxt {
	font-size: 14px;
}

.writeForm table tr td .spamTxt img {
	margin-right: 10px;
	vertical-align: middle;
}

.branchSelect>p {
	font-size: 14px;
	color: #454545;
	margin-bottom: 10px;
	font-weight: bold;
	margin-top: 60px;
}

.branchSelect>p:first-of-type {
	margin-top: 0;
}

.branchSelect table tr td select {
	width: 440px;
}

.writeForm_top>p {
	font-size: 14px;
	color: #454545;
	margin-bottom: 10px;
	font-weight: bold;
	margin-top: 60px;
}

.writeForm_top>p:first-of-type {
	margin-top: 0;
}

/* FullCalendar listMonth 뷰 숨기기 (버튼 클릭 시 깜빡임 방지) */
.fc-listMonth-view {
	display: none !important;
}

/* 달력 */
.schedule_wrap {
	overflow: hidden;
	padding-top: 20px;
	border-top: 2px solid #888;
}

.schedule {
	overflow: hidden;
	float: left;
	width: 600px;
	margin-right: 20px;
	text-align: center;
}

/* 상단 20xx년 x월 부분*/
.schedule table.calendar_top_table {
	position: relative;
	width: 100%;
	height: 100%;
	margin: 0;
	border: 0;
}

.schedule table.calendar_top_table thead .table_year {
	border: 0;
}

.schedule table.calendar_top_table thead th {
	padding: 20px 0;
}

.schedule table.calendar_top_table thead th img {
	vertical-align: middle;
	cursor: pointer;
	width: 7px;
}

.schedule table.calendar_top_table thead .now {
	display: inline-block;
	font-size: 18px;
	font-weight: 700;
	color: #222;
	width: 180px;
	vertical-align: middle;
	line-height: 1;
}

/* 중간 달력 내용*/
.schedule table.calendar_table {
	position: relative;
	width: 100%;
	height: 100%;
	border-top: 0;
}

.schedule table.calendar_table thead th {
	padding: 0;
	height: 45px;
	color: #222;
	font-size: 13px;
	font-weight: bold;
	border-bottom: 1px solid #e5e5e5;
}

.schedule table.calendar_table thead th.sun {
	color: #df4545;
}

.schedule table.calendar_table thead th.sat {
	color: #3d82bc;
}

.schedule table.calendar_table tbody td {
	padding: 0;
	height: 45px;
	background: #fff;
	font-size: 13px;
	border-bottom: 1px solid #e5e5e5;
	color: #222;
}

.schedule table.calendar_table tbody td.sat_txt {
	color: #1559aa;
}

.schedule table.calendar_table tbody td.sun_txt {
	color: #ff4836;
}

.schedule table.calendar_table tbody td.next_month {
	color: #d5d4d4;
}

/*온라인 예약 달력 클릭 시 효과 들어가는 부분 시작*/
.schedule table.calendar_table tbody td.on p {
	display: inline-block;
	width: 33px;
	height: 33px;
	line-height: 33px;
	margin: 0;
	font-weight: bold;
	background: var(--color-primary01);
	border-radius: 50%;
	color: #fff;
}

/*온라인 예약 달력 클릭 시 효과 들어가는 부분 끝*/
.schedule table.calendar_table tbody td#r_click span {
	display: inline-block;
	width: 33px;
	height: 33px;
	line-height: 33px;
	margin: 0;
	color: #fff;
	font-weight: bold;
	background: var(--color-primary01);
	border-radius: 50%;
}

/*온라인 예약 달력 마우스 호버 시 효과 들어가는 부분 시작*/
/* .schedule table.calendar_table tbody td.ent {background:#f6f9fd;} */
.schedule table.calendar_table tbody td.ent span {
	display: inline-block;
	width: 33px;
	height: 33px;
	line-height: 33px;
	margin: 0;
	color: #fff;
	font-weight: bold;
	background: #323337;
	border-radius: 50%;
}

/* .schedule table.calendar_table tbody td.onBg{background:#f6f9fd;} */
/*온라인 예약 달력 마우스 호버 시 효과 들어가는 부분 끝*/
.schedule .tit {
	font-size: 14px;
	font-weight: 700;
	color: #222;
	border: 0;
	background: none;
	text-align: left;
	margin: 20px 0 10px;
}

/*.schedule > div{height:45px; border:1px solid #e5e5e5; border-top:0; color:#666; line-height:45px; text-align:left; overflow:hidden;}*/

/* 상담가능 날짜 체크 */
.schedule>div .cal_check {
	display: inline-block;
	width: 25px;
	height: 16px;
	background: #f6f9fd;
	box-sizing: border-box;
	border: 1px solid #ddd;
	margin: 0 10px 0 0;
	vertical-align: middle;
}

/*.schedule > div div input[type="text"]{width:178px; height:28px; margin-left:10px; text-align:center;}*/

/* 의료진 선택후 시간예약 */
.schedule_time {
	overflow: hidden;
	width: calc(100% - 620px);
	float: left;
}

.schedule_time>p.titype {
	font-size: 14px;
	font-weight: 700;
	color: #222;
	border: 0;
	background: none;
	text-align: left;
	margin: 20px 0 10px;
}

.schedule_time div {
	width: 32%;
	float: left;
	text-align: center;
	border: 1px solid #e1e3e4;
	border-radius: 15px;
	box-sizing: border-box;
	margin: 0 2% 0 0;
}

.schedule_time div:last-of-type {
	margin-right: 0;
}

.schedule_time div p {
	height: 50px;
	line-height: 50px;
	font-size: 14px;
	color: #222;
	font-weight: bold;
	box-sizing: border-box;
}

.schedule_time div ul {
	margin: 0;
}

.schedule_time div ul li {
	padding: 15px 0;
	font-size: 13px;
	color: #222;
	border-top: 1px solid #f0f1f2;
}

.schedule_time div ul.up_no li:first-of-type {
	border-top: 0;
}

.schedule_time div ul li:hover {
	background: #f3f8fe;
	color: var(--color-primary01);
}

.schedule_time div ul li:last-child:hover {
	border-radius: 0 0 15px 15px;
}

.schedule_time div ul li.choiceTime {
	background-color: #f3f8fe;
}

.schedule_time div ul li.timeNo {
	color: #b7b7b7;
	text-decoration: line-through;
}

.schedule_time div ul li:last-of-type {
	margin-bottom: 0;
}

.schedule_time div:last-of-type p {
	border-right: 0;
}

/* under_wrap ( 하단 달력 부분 (상담가능날짜 예약선택일))*/
.schedule .calender_wrap {
	height: auto;
	border: 1px solid #e1e3e4;
	border-radius: 15px;
}

.schedule .calender_wrap .under_wrap {
	overflow: hidden;
	background: #fcfcfc;
	border-radius: 0 0 15px 15px;
	padding: 15px;
	font-weight: 700;
}

.calender_wrap .under_wrap p {
	float: left;
	font-size: 13px;
	color: #444;
	vertical-align: middle;
	line-height: 30px;
}

.calender_wrap .under_wrap>.sr_wrap {
	float: right;
}

.calender_wrap .under_wrap>.sr_wrap i {
	display: block;
	float: left;
	width: 1px;
	height: 17px;
	background: #d7d7d7;
	margin: 6px 10px 0px;
}

.calender_wrap .under_wrap>.sr_wrap input {
	width: 90px;
	height: 30px;
	text-align: center;
	border: 1px solid #e1e3e4;
	font-size: 13px;
	color: var(--color-primary01);
	box-sizing: border-box;
	padding: 0 2px;
	vertical-align: baseline;
	margin: 0 3px;
}

.calender_wrap .under_wrap>.sr_wrap input.no02 {
	width: 70px;
}

/**** FAQ ****/
/* FAQ 상단 탭 (몇몇 공통 탭이기도 함) */
.faq_tab {
	overflow: hidden;
	margin: 35px auto 40px;
	text-align: center;
}

.faq_tab li {
	float: left;
	width: 12.5%;
	height: 60px;
	box-sizing: border-box;
	border: 1px solid #c2c2c2;
	border-left: 0;
	font-size: 16px;
	color: #1e1e1f;
	cursor: pointer;
	overflow: hidden;
}

.faq_tab li:first-of-type {
	border-left: 1px solid #c2c2c2;
}

.faq_tab li:hover {
	background: #307dd4;
	color: #fff;
}

.faq_tab li.active {
	background: #307dd4;
	color: #fff;
}

.faq_tab li a {
	display: table;
	width: 100%;
	height: 100%;
	font-size: 16px;
	color: #1e1e1f;
}

.faq_tab li a span {
	display: table-cell;
	vertical-align: middle;
	width: 100%;
}

.faq_tab li:hover a {
	color: #fff;
}

.faq_tab li.active a {
	color: #fff;
}

/* FAQ - 분류별 테이블 */
.faq_table {
	width: 100%;
	border-top: 2px solid #888;
}

.faq_table>tbody>tr {
	border-bottom: 1px solid #e1e3e4;
}

.faq_table>tbody>tr>th {
	text-align: left;
	height: 60px;
	padding: 0 40px;
	font-size: 16px;
	color: #222;
	cursor: pointer;
}

.faq_table>tbody>tr>td {
	text-align: left;
	display: none;
	padding: 50px 40px;
	font-size: 14px;
	background: #fcfcfc;
	line-height: 1.5;
	color: #444;
}

.faq_table>tbody>tr>td img {
	max-width: 100%;
}

.faq_table tr.on_e,
.faq_table>tbody>tr:hover {
	background: #f3f8fe;
}

.faq_table tr.on_e th,
.faq_table>tbody>tr:hover th {
	background: #f3f8fe;
	color: #0063e9;
}


/**** 갤러리게시판 ****/
.gal_wrap {
	padding-top: 40px;
	border-top: 2px solid #888;
	border-bottom: 1px solid #c4c7ca;
}

.gal_wrap ul {
	overflow: hidden;
}

.gal_wrap ul li {
	float: left;
	width: 22.5%;
	box-sizing: border-box;
	border: 1px solid #d6d6d6;
	margin: 0 3.333% 3.334% 0;
}

.gal_wrap ul li:nth-of-type(4n) {
	margin-right: 0;
}

.gal_wrap ul li.on_e {
	background: #f3f8fe;
}

.gal_wrap ul li a {
	display: block;
	width: 100%;
	height: 100%;
}

.gal_wrap ul li a .part_img {
	overflow: hidden;
	position: relative;
	width: 100%;
	padding: 35% 0;
	text-align: center;
	background: #efefef;
	box-sizing: border-box;
}

.gal_wrap ul li a .part_img img {
	position: absolute;
	left: 0;
	top: 50%;
	width: 100%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
}

.gal_wrap ul li a p {
	font-size: 14px;
	color: #373737;
	margin: 0;
	line-height: 1.4;
}

/*.gal_wrap ul li a span{font-size:13px; color:#888b90;}*/
.gal_wrap ul li .txt {
	min-height: 120px;
	padding: 20px;
	box-sizing: border-box;
}

.gal_wrap ul li a .eyeicon {
	width: 15px;
	height: auto;
	vertical-align: middle;
	margin-right: 5px;
}

.gal_wrap ul li .up_type {
	margin-bottom: 10px;
	font-size: 13px;
	color: #666;
	vertical-align: middle;
}

.gal_wrap ul li .title {
	font-size: 14px;
	margin: 0 0 10px 0;
	color: #222;
	font-weight: 700;
	width: 100%;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis
}

.gal_wrap ul li .txt span {
	vertical-align: middle;
}

.gal_wrap ul li .txt i {
	display: inline-block;
	width: 1px;
	height: 11px;
	background: #eaeaea;
	vertical-align: middle;
	margin: 0 7px;
}

/**** 전후사진 ****/
.bna_wrap {
	padding-top: 40px;
	border-top: 2px solid #888;
	border-bottom: 1px solid #eae8e8;
}

.bna_wrap ul {
	overflow: hidden;
}

.bna_wrap ul li {
	float: left;
	width: 32%;
	height: 320px;
	box-sizing: border-box;
	border: 1px solid #d6d6d6;
	margin: 0 2% 2% 0;
}

.nodata {
	border: 1px solid #d6d6d6 !important;
	width: 100% !important;
	text-align: center;
	padding: 100px 0 !important;
	height: auto !important;
	box-sizing: border-box;
	margin: 0 auto !important
}

.nodata p {
	font-size: 18px;
	font-weight: bold;
	letter-spacing: -0.05em;
	color: #444;
	padding-top: 20px;
}

@media all and (max-width:640px) {
	.nodata {
		padding: 45px 0 !important
	}

	.nodata p {
		font-size: 14px;
	}
}

@media all and (min-width:1001px) {
	.bna_wrap ul li:nth-of-type(3n) {
		margin-right: 0;
	}
}

.bna_wrap ul li a {
	position: relative;
	display: block;
	overflow: hidden;
	width: 100%;
}

.bna_wrap ul li a img {
	width: 100%;
	height: 170px;
}

.bna_wrap ul li a .before {
	position: relative;
	float: left;
	width: 50%;
}

.bna_wrap ul li a .before>span {
	display: block;
	position: absolute;
	width: 50px;
	padding: 2px 0;
	bottom: 0;
	left: 0;
	font-size: 11px;
	color: #fff;
	background: #666;
	text-align: center;
}

.bna_wrap ul li a .after {
	position: relative;
	float: right;
	width: 50%;
}

.bna_wrap ul li a .after>span {
	display: block;
	position: absolute;
	width: 50px;
	padding: 2px 0;
	bottom: 0;
	left: 0;
	font-size: 11px;
	color: #fff;
	background: var(--color-primary01);
	text-align: center;
}

.bna_wrap ul li a>span {
	position: absolute;
	top: 50%;
	left: 50%;
}

.bna_wrap ul li div.beafphotocc {
	padding: 19px;
	font-size: 11px;
	color: #2e2e2e;
}

.bna_wrap ul li.on_e {
	background: #f3f8fe;
}

.bna_wrap ul li div.beafphotocc p.photoday {
	margin-bottom: 10px;
}

.bna_wrap ul li div.beafphotocc .photoday .btn_wrap .noti_icon {
	margin-right: 12px;
}

.bna_wrap ul li div.beafphotocc .photoday .fontn {
	font-size: 13px;
	color: #666;
	vertical-align: middle;
}

.bna_wrap ul li div.beafphotocc dt {
	font-size: 14px;
	margin: 0 0 10px 0;
	color: #222;
	font-weight: 700;
}

.bna_wrap ul li div.beafphotocc dd {
	width: 100%;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
	color: #444;
}

.bna_wrap ul li div.beafphotocc p.photoday img.noticeIcon {
	width: 30px;
	height: auto;
	margin-right: 7px;
	display: inline-block;
}

.bna_wrap ul li div.beafphotocc .under {
	margin-top: 15px;
	font-size: 12px;
	color: #666;
	vertical-align: middle;
}

.bna_wrap ul li div.beafphotocc .under span {
	vertical-align: middle;
}

.bna_wrap ul li div.beafphotocc .under span img {
	display: inline-block;
	width: auto;
	height: auto;
	margin-right: 5px;
	vertical-align: initial;
}

.bna_wrap ul li div.beafphotocc .under i {
	display: inline-block;
	width: 1px;
	height: 11px;
	background: #eaeaea;
	vertical-align: middle;
	margin: 0 7px;
}


/**** 페이저 ****/
.programPage {
	margin-top: 20px;
	text-align: center;
	font-size: 0;
}

.programPage a {
	position: relative;
	display: inline-block;
	width: 34px;
	height: 34px;
	text-decoration: none;
	color: #444;
	box-sizing: border-box;
	border: 1px solid #fff;
	line-height: 32px;
	font-size: 15px;
}

.programPage a.page_prev {
	position: relative;
	display: inline-block;
	vertical-align: top;
	color: var(--color-primary01);
	font-size: 11px;
	border: 1px solid #ddd;
}

.programPage a.page_next {
	position: relative;
	display: inline-block;
	vertical-align: top;
	color: var(--color-primary01);
	font-size: 11px;
	border: 1px solid #ddd;
}

.programPage a:hover {
	background: #f3f8fe;
	border: 1px solid #f3f8fe;
}

.programPage a.active {
	color: #f60029;
	border: 1px solid var(--color-primary01);
}

.programPage a.page_prev:hover,
.programPage a.page_next:hover {
	background: none;
	border: 1px solid #ddd;
}

.mo_programPage {
	height: 50px;
	line-height: 50px;
	text-align: center;
	background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
	margin-top: 30px;
	margin-bottom: 25px;
	display: none;
	border-radius: 8px;
	border: 1px solid #dee2e6;
	transition: all 0.3s ease;
}

.mo_programPage:hover {
	background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
	border-color: #adb5bd;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.mo_programPage a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	font-size: 14px;
	font-weight: 500;
	color: #495057;
	text-decoration: none;
	transition: color 0.3s ease;
}

.mo_programPage a:hover {
	color: #212529;
}

.mo_programPage a::after {
	content: '';
	display: inline-block;
	width: 8px;
	height: 8px;
	border-right: 2px solid #6c757d;
	border-bottom: 2px solid #6c757d;
	transform: rotate(45deg);
	margin-left: 8px;
	margin-top: -3px;
	transition: transform 0.3s ease, border-color 0.3s ease;
}

.mo_programPage:hover a::after {
	transform: rotate(45deg) translateX(2px) translateY(2px);
	border-color: #495057;
}

.mo_programPage a span {
	display: none;
}

/* 더보기 완료 상태 */
.mo_programPage.no-more-data {
	background: linear-gradient(135deg, #f1f3f4 0%, #e8eaed 100%);
	border-color: #dadce0;
	cursor: default;
}

.mo_programPage.no-more-data:hover {
	background: linear-gradient(135deg, #f1f3f4 0%, #e8eaed 100%);
	box-shadow: none;
}

.mo_programPage.no-more-data a {
	color: #80868b;
	cursor: default;
	pointer-events: none;
}

.mo_programPage.no-more-data a::before {
	content: '✓';
	display: inline-block;
	margin-right: 8px;
	font-size: 14px;
	color: #5f6368;
}

.mo_programPage.no-more-data a::after {
	display: none;
}


/**** read ****/
/* 리드페이지 제목/날짜 상단부분 */
.readTop {
	width: calc(100% - 40px);
	border-top: 2px solid #888;
	border-bottom: 1px solid #c4c7ca;
	padding: 30px 20px;
}

.readTop .imgTitle {
	font-size: 18px;
	color: #454545;
	line-height: 1.5;
	font-weight: bold;
}

.readTop .imgTitle .branch01,
.readTop .imgTitle .branch02 {
	font-weight: 400;
}

.readTop .imgTitle_sub {
	margin-top: 10px;
	font-size: 12px;
	color: #666;
	vertical-align: middle;
}

.readTop .imgTitle_sub.tit {
	margin-bottom: 5px;
	font-size: 14px;
	color: #666;
}

.readTop .imgTitle_sub i {
	display: inline-block;
	margin: 0 4px;
}

.readTop .imgTitle_sub .hit {
	margin: 0 0 0 10px;
}

.readTop .imgTitle_sub .hit img {
	vertical-align: middle;
}

/* 리드페이지 중간 내용부분 */
.readEdit {
	width: calc(100% - 40px);
	padding: 0 20px;
	margin: 40px 0;
	overflow: hidden;
	position: relative;
	font-size: 13px;
	color: #656668;
}

.readEdit img {
	max-width: 100%;
}

.readEdit .readBnA {
	position: relative;
	max-width: 800px;
	margin: 0 auto 30px;
}

.readEdit .readBnA:after {
	content: "";
	clear: both;
	display: block;
}

.readEdit .readBnA>div {
	width: 40%;
	text-align: center;
	position: relative;
}

.readEdit .readBnA>div img {
	width: 100%;
	max-width: 300px;
	height: 300px;
}

.readEdit .readBnA .before {
	float: left;
}

.readEdit .readBnA .after {
	float: right;
}

.readEdit .readBnA .arrow {
	position: absolute;
	top: 50%;
	left: 50%;
	font-size: 30px;
	margin-top: -15px;
}

.readEdit .readBnA>div>span {
	display: block;
	position: absolute;
	width: 50px;
	padding: 2px 0;
	bottom: 0;
	left: 10px;
	font-size: 11px;
	color: #fff;
	background: #666;
	text-align: center;
}

.readEdit .readBnA>div>span.colafer {
	background-color: var(--color-primary01);
}

.readAnswer .answer_tit {
	text-align: center;
	width: 100%;
	height: 30px;
	line-height: 30px;
	font-size: 14px;
	color: #fff;
	background: #4a4a4a;
	border-top: 1px solid #c7c7c7;
	border-bottom: 1px solid #c7c7c7;
}

.readAnswer .answer_txt {
	width: calc(100% - 40px);
	padding: 25px 20px;
	line-height: 1.4;
	font-size: 14px;
	color: #676767;
}

/* 이전글 다음글 부분 */
.readBottom table {
	width: 100%;
	border-top: 1px solid #c4c7ca;
	border-bottom: 1px solid #c4c7ca;
}

.readBottom table tr {
	border-bottom: 1px solid #e5e5e5;
}

.readBottom table tr:last-of-type {
	border-bottom: 0;
}

.readBottom table tr th {
	height: 40px;
	color: #444;
	font-weight: normal;
	background: #fcfcfc;
}

.readBottom table tr td {
	height: 40px;
	padding: 0 30px;
	color: #444;
}

.readBottom table tr td a {
	color: #666;
}

.readBottom table tr th img {
	margin-left: 10px;
	vertical-align: middle;
}

/* 수정, 삭제, 목록 버튼 */
.readBottom_btn {
	overflow: hidden;
	font-size: 0;
	text-align: center;
	margin-top: 40px;
}

.readBottom_btn dt {
	float: left;
}

.readBottom_btn dt a {
	display: inline-block;
	width: 80px;
	height: 40px;
	line-height: 40px;
	font-size: 12px;
	color: #fff;
	background: #b7b7b7;
	margin-right: 5px;
}

.readBottom_btn dt a:last-of-type {
	margin-right: 0;
}

.readBottom_btn dd {
	float: right;
}

.readBottom_btn dd a {
	display: inline-block;
	width: 130px;
	height: 40px;
	line-height: 40px;
	font-size: 12px;
	color: #fff;
	background: #5b5b5b;
}

.readCon img {
	max-width: 100%;
}


/**** 댓글 ****/
.read_reple {
	background: #fcfcfc;
	margin-bottom: 10px;
	padding: 10px 20px;
	border: 1px solid #d4d4d4;
	box-sizing: border-box;
}

/* 댓글내용 */
.read_reple .reple_dl {
	font-size: 14px;
	margin-bottom: 20px;
	position: relative;
	border-bottom: 1px solid #d4d4d4;
	padding: 13px 0px 10px 0px;
}

.read_reple .reple_dl:last-of-type {
	padding-bottom: 20px;
}

.read_reple .reple_dl dt {
	color: #444;
	margin: 0 0 20px 0;
	font-size: 13px;
}

.read_reple .reple_dl dt strong {
	color: #333;
	padding-right: 20px;
}

.read_reple .reple_dl dt i {
	vertical-align: middle;
	display: inline-block;
	width: 1px;
	height: 11px;
	background: #e1e3e4;
	margin: 0 10px;
}

.read_reple .reple_dl dd {
	color: #444;
	font-size: 13px;
	line-height: 1.6em;
}

.read_reple .reple_dl .reEdit {
	display: inline-block;
	position: absolute;
	top: 10px;
	right: 20px;
}

.read_reple .reple_dl .reEdit strong {
	color: #222;
}

.read_reple .reple_dl .reEdit input[type="button"] {
	width: 60px;
	height: 30px;
	background: #5b5b5b;
	border: 0;
	font-size: 14px;
	color: #fff;
	cursor: pointer;
}

.read_reple .bbsno {
	margin-bottom: 10px;
}

/* 댓글부분에서 이름 비밀번호 내용입력 폼*/
.read_rego {
	overflow: hidden;
}

.read_rego dl dt {
	font-size: 0;
	margin-bottom: 10px;
}

.read_rego dl dt div {
	display: inline-block;
	width: 200px;
	margin-right: 10px;
	vertical-align: middle;
}

.read_rego dl dt div:last-of-type {
	margin-right: 0;
}

.read_rego dl dd {
	font-size: 0;
}

.read_rego input[type="text"] {
	width: 100%;
	height: 37px;
	border: 1px solid #dedede;
	font-size: 14px;
	padding: 0 20px;
	vertical-align: middle;
	box-sizing: border-box;
}

.read_rego input[type="password"] {
	width: 100%;
	height: 37px;
	border: 1px solid #dedede;
	font-size: 14px;
	padding: 0 20px;
	vertical-align: middle;
	box-sizing: border-box;
}

.read_rego textarea {
	width: calc(100% - 114px);
	float: left;
	height: 100px;
	padding: 5px;
	border: 1px solid #c6cdd8;
	resize: none;
	box-sizing: border-box;
	font-size: 13px;
}

.read_rego input[type="submit"] {
	float: right;
	width: 100px;
	height: 100px;
	background: #5b5b5b;
	border: 0;
	vertical-align: middle;
	font-size: 16px;
	color: #fff;
	cursor: pointer;
}

/* 수정및 삭제시 비밀번호 입력창 */
.password_box {
	position: absolute;
	width: 240px;
	padding: 3px;
	border: 1px solid #e2e1f8;
	z-index: 1;
	box-sizing: border-box;
	display: none;
	background: #f1f1f1;
}

.password_box div {
	position: relative;
	border: 2px solid #d4d4d4;
	background: #f6f6f6;
	box-sizing: border-box;
	padding: 10px;
}

.password_box div dl {
	font-size: 0;
}

.password_box div dl dt {
	display: inline-block;
	width: 65px;
	vertical-align: middle;
	font-weight: bold;
	font-size: 14px;
}

.password_box div dl dd {
	display: inline-block;
	width: calc(100% - 65px);
	vertical-align: middle;
	font-size: 0;
}

.password_box div dl dd input[type="password"] {
	width: calc(100% - 40px);
	height: 30px;
	border: 1px solid #dedede;
	font-size: 14px;
	padding: 0 20px;
	vertical-align: middle;
	box-sizing: border-box;
}

.password_box div dl dd input[type="button"] {
	width: 40px;
	height: 30px;
	background: #5b5b5b;
	border: 0;
	font-size: 14px;
	color: #fff;
	cursor: pointer;
	vertical-align: middle;
}

.password_box div dl dd input[type="button"].password_box_x {
	width: 30px;
	position: absolute;
	top: -35px;
	right: -5px;
}



/**** 회원약관 ****/
#member {
	padding: 100px 0 150px;
}

#member .inner>h4 {
	font-size: 18px;
	color: #307dd4;
}

#member #agree {
	padding: 0 30px 30px;
	border: 1px solid #e1e3e4;
}

#member #agree h5 {
	font-size: 16px;
	color: #222;
	margin: 0;
	padding: 30px 0 20px 0;
}

#member #agree h6 {
	font-size: 15px;
	color: #222;
	padding: 0;
	margin: 0;
	padding: 30px 0 0 0;
}

#member #agree p {
	font-size: 14px;
	color: #444;
	padding: 0;
	margin: 15px 0 0 0;
}

#member #agree ol {
	list-style: none;
	padding: 0;
	margin: 15px 0 2px 2px;
}

#member #agree ol li {
	font-size: 14px;
	color: #444;
	margin-bottom: 2px;
	line-height: 150%;
}

#member #agree ol li>ul {
	margin: 1px 0 2px 2px;
}

#member #agree ul {
	list-style: none;
	padding: 0;
	margin: 2px 0 2px 2px;
}

#member #agree ul li {
	font-size: 14px;
	color: #444;
	margin-bottom: 2px;
	line-height: 150%;
}


/**** 개인정보 방침 ****/
#member #policy {
	padding: 30px;
	border: 1px solid #e1e3e4;
}

#member #policy h5 {
	font-size: 16px;
	color: #222;
	margin: 0;
	padding: 30px 0 20px 0;
}

#member #policy h6 {
	font-size: 15px;
	color: #222;
	padding: 0;
	margin: 0;
	padding: 30px 0 0 0;
}

#member #policy p {
	font-size: 14px;
	color: #444;
	padding: 0;
	margin: 15px 0 0 0;
}


/* faq 첨부파일 */
.urlFile p {
	border-top: 1px solid #e5e5e5;
}


/**** 전후사진 갤러리 ****/
.bna_slide {
	position: relative;
	width: 100%;
	margin: 0 auto;
	max-width: 900px;
	font-size: 0;
}

.bna_slide ul {
	margin: 0;
}

.bna_slide ul li {
	overflow: hidden;
}

.bna_slide ul li>div {
	float: left;
	width: 50%;
	height: 490px;
	overflow: hidden;
}

.bna_slide ul li>div>img {
	width: 100%;
	height: 100%
}

/*사진밑 비포 에프터 박스*/
.bna_slide .bef {
	display: block;
	position: absolute;
	width: 78px;
	left: 0;
	bottom: 0;
	padding: 7px 0;
	font-size: 14px;
	color: #fff;
	background: #666;
	text-align: center;
}

.bna_slide .aft {
	left: 50%;
	background-color: var(--color-primary01);
}

/*전후사진 이전 글 , 다음 글 css 시작*/
.bna_slide .bx-controls-direction a {
	position: absolute;
	width: 51px;
	height: 127px;
	background-size: cover;
	text-indent: -9999px;
	top: 50%;
	transform: translate(0, -50%);
}

.bna_slide .bx-controls-direction a.bx-prev {
	left: -101px;
	background: url('/img/nbna_prev.png') no-repeat center top;
}

.bna_slide .bx-controls-direction a.bx-next {
	right: -101px;
	background: url('/img/nbna_next.png') no-repeat center top;
}

/*전후사진 이전 글 , 다음 글 css 끝*/

.bnas_wrap .under_txt {
	width: 100%;
	margin: 0 auto;
	padding: 15px 0;
	max-width: 900px;
	box-sizing: border-box;
	border: 1px solid #eae8e8;
	text-align: center;
	border-top: 0;
	color: #222;
	font-size: 16px;
}

.bnas_wrap .under_txt p {
	display: none;
}

.bnas_wrap .icon_type {
	margin: 40px 0 77px;
	text-align: center;
	font-size: 0;
}

.bnas_wrap .icon_type>div {
	display: inline-block;
	width: 112px;
	height: 132px;
	vertical-align: top;
	box-sizing: border-box;
	padding: 17px 15px 10px;
}

.bnas_wrap .icon_type>div+div {
	margin-left: 3px;
}

.bnas_wrap .icon_type>div img {
	margin-bottom: 12px;
}

.bnas_wrap .icon_type>div p {
	padding-top: 7px;
	font-size: 16px;
}

/* 정면 */
.bnas_wrap .icon_type>div.front {
	border: 1px solid #222;
}

.bnas_wrap .icon_type>div.front p {
	border-top: 1px solid #222;
	color: #222;
}

/* 45도 */
.bnas_wrap .icon_type>div.ff {
	border: 1px solid #0063e9;
}

.bnas_wrap .icon_type>div.ff p {
	border-top: 1px solid #0063e9;
	color: #0063e9;
}

/* 측면 */
.bnas_wrap .icon_type>div.side {
	border: 1px solid var(--color-primary01);
}

.bnas_wrap .icon_type>div.side p {
	border-top: 1px solid var(--color-primary01);
	color: var(--color-primary01);
}

.bnas_wrap .icon_type>div:hover,
.bnas_wrap .icon_type>div.on {
	background: #f3f8fe;
}

/* 페이저 */
.bnas_pager {
	width: 100%;
	margin: 0 auto;
	max-width: 900px;
	overflow: hidden;
}

/*페이저 이미지 감싸는 박스 크기와 이미지 크기 css*/
.bnas_pager>div {
	float: left;
	width: 48.8888%;
	margin: 0 2.2222% 20px 0;
}

.bnas_pager>div:nth-of-type(2n) {
	margin-right: 0;
}

.bnas_pager>div a {
	position: relative;
	display: block;
	width: 100%;
	font-size: 0;
}

.bnas_pager>div a img {
	width: 50%;
	height: 240px
}

/*페이저 이미지 클릭 시 테두리 생성 css*/
.bnas_pager>div a p {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	box-sizing: border-box;
}

.bnas_pager>div a.active p {
	border: 2px solid #307dd4;
}


/**** 카드형게시판 ****/
.card_type ul {
	margin-bottom: 0;
}

.card_type ul li {
	width: 285px;
	min-height: 300px;
	padding: 9px;
	margin: 0 1.25% 20px 0;
	border: 1px solid #d4d4d4;
	box-sizing: border-box;
}

.card_type ul li:nth-of-type(4n) {
	margin-right: 0;
}

.card_type ul li .img img {
	max-width: 100%;
}

.card_type ul li .txt {
	margin-top: 20px;
	padding: 5px;
}

.card_type ul li .txt .ti {
	margin-bottom: 15px;
	font-size: 16px;
	color: #222;
	font-weight: 700;
}

.card_type ul li .txt .um {
	font-size: 13px;
	color: #444;
	line-height: 1.6em;
}

.card_btn {
	margin-top: 50px;
	text-align: center;
}

.card_btn a {
	display: inline-block;
	width: 180px;
	height: 50px;
	line-height: 50px;
	font-size: 15px;
	color: #222;
	background: #f7f6f6;
	vertical-align: middle;
}

.card_btn a span {
	font-size: 18px;
	padding-right: 18px;
}

/*기업 - 입사지원 추가*/
.writeForm.check_th table tr.spty td input[type="checkbox"] {
	margin: 0 6px 0 0;
}

.writeForm table tr td .inputNum02 {
	width: 80px;
}

.writeForm table tr td .hope_c {
	display: inline-block;
	vertical-align: middle;
	margin-left: 25px;
	margin-bottom: 0;
}

.writeForm table tr td .hope_c>label {
	margin: 0;
}

.writeForm table tr td .inner {
	margin-right: 15px;
}

/*기업 - 제품소개 이미지목록형 추가*/
.com_imgg_wrap .program_search {
	text-align: right;
	font-size: 0;
	margin-bottom: 20px;
}

.comi_list ul li .img_type {
	margin-left: 33px;
	width: 28%;
}

.comi_list ul li .img_type p {
	width: 100%;
	border: 1px solid #dedede;
	box-sizing: border-box;
}

.comi_list ul li .img_type img {
	width: 100%;
	height: 100%
}

.comi_list ul li .txt_type {
	width: calc(72% - 33px);
	padding: 10px 0 14px 50px;
	box-sizing: border-box;
}

.comi_list ul li .txt_type>h5 {
	margin: 12px 0 20px;
	font-size: 17px;
	font-weight: 700;
	color: #222;
}

.comi_list ul li .txt_type .txt_w {
	font-size: 14px;
	color: #444;
	line-height: 1.6em;
}

.comi_list ul li .txt_type .date {
	position: absolute;
	right: 0;
	bottom: 20px;
	font-size: 13px;
	color: #666;
}

/*171124 카드형리스트*/
.card_type ul {
	margin-bottom: 0;
}

.card_type ul li {
	width: 285px;
	min-height: 300px;
	padding: 9px;
	margin: 0 1.25% 20px 0;
	border: 1px solid #d4d4d4;
	box-sizing: border-box;
}

.card_type ul li:nth-of-type(4n) {
	margin-right: 0;
}

.card_type ul li .img img {
	max-width: 100%;
}

.card_type ul li .txt {
	margin-top: 20px;
	padding: 5px;
}

.card_type ul li .txt .ti {
	margin-bottom: 15px;
	font-size: 16px;
	color: #222;
	font-weight: 700;
}

.card_type ul li .txt .um {
	font-size: 13px;
	color: #444;
	line-height: 1.6em;
}

.card_btn {
	margin-top: 50px;
	text-align: center;
}

.card_btn a {
	display: inline-block;
	width: 180px;
	height: 50px;
	line-height: 50px;
	font-size: 15px;
	color: #222;
	background: #f7f6f6;
	vertical-align: middle;
}

.card_btn a span {
	font-size: 18px;
	padding-right: 18px;
}


/*171124 지점*/
.bt_wrap {
	border-bottom: 1px solid #e1e3e4;
}

.branch_table {
	width: 100%;
	border-top: 2px solid #313236;
}

.branch_table>tbody>tr {
	border-top: 1px solid #e1e3e4;
}

.branch_table>tbody>tr>th {
	height: 55px;
	font-size: 14px;
	color: #444;
	word-break: break-all
}

.branch_table>tbody>tr>td {
	text-align: left;
	display: none;
	padding: 30px 45px;
	font-size: 14px;
	line-height: 1.5;
	color: #444;
}

.branch_table>tbody>tr>td img {
	max-width: 100%;
}

.branch_table>thead>tr>th {
	height: 45px;
	padding: 0 10px;
	font-size: 14px;
	color: #222;
	background: #f9f8f8;
}

.branch_table>tbody>tr>th .btn {
	vertical-align: middle;
	display: inline-block;
	width: 54px;
	height: 30px;
	font-size: 13px;
	color: #307dd4;
	box-sizing: border-box;
	text-align: center;
	line-height: 28px;
	border: 1px solid #307dd4;
}

.branch_table>tbody>tr>th .btn.b_type {
	border: 1px solid #222;
	color: #222;
}

.branch_table>tbody>tr>td .up_txt {
	overflow: hidden;
}

.branch_table>tbody>tr>td .up_txt>div {
	float: left;
	width: 49%;
}

.branch_table>tbody>tr>td .up_txt>div+div {
	margin-left: 2%;
}

.branch_table>tbody>tr>td .up_txt dl {
	display: table;
	width: 100%;
	margin-bottom: 10px;
	font-size: 14px;
	vertical-align: middle;
}

.branch_table>tbody>tr>td .up_txt dt {
	display: table-cell;
	width: 72px;
	font-weight: 700;
	color: #222;
	vertical-align: middle;
}

.branch_table>tbody>tr>td .up_txt dd {
	display: table-cell;
	width: calc(100% - 72px);
	color: #444;
	vertical-align: middle;
}

.branch_table>tbody>tr>td .map_type {
	width: 100%;
	height: 273px;
	margin-top: 20px;
	line-height: 273px;
	background: #f0f0f0;
	text-align: center;
}

.selc_map {
	margin-bottom: 40px;
	border: 1px solid #d4d4d4;
	overflow: hidden;
}

.selc_map>div {
	float: left;
	width: 50%;
}

.selc_map .selc_type {
	padding-top: 130px;
}

.selc_map .selc_type p {
	width: 80%;
	margin-bottom: 10px;
}

.selc_map .selc_type p input {
	width: 100%;
	height: 50px;
	padding: 0 10px;
	border: 1px solid #d4d4d4;
	box-sizing: border-box;
	font-size: 14px;
	color: #444;
}

.selc_map .selc_type p input[type="button"] {
	width: 137px;
	border: 0;
	text-align: center;
	background: #87888a;
	color: #fff;
	font-size: 15px;
	color: #fff;
}

.selc_map .selc_type p select {
	width: 100%;
	height: 50px;
	padding-left: 10px;
	border: 1px solid #d4d4d4;
	box-sizing: border-box;
	font-size: 14px;
	color: #444;
}

.selc_map .br_map {
	padding: 30px 0;
	text-align: center;
}

.selc_map .br_map .img_wrap {
	position: relative;
	width: 362px;
	height: 440px;
	margin: 0 auto;
}

.selc_map .br_map .img_wrap ul {
	margin: 0;
}

.selc_map .br_map .img_wrap ul li {
	position: absolute;
	font-size: 14px;
	color: #222;
	padding: 10px;
	z-index: 3;
	cursor: pointer;
}

.selc_map .br_map .img_wrap ul li:hover {
	color: #0063e9;
}

.selc_map .br_map .img_wrap ul li.on {
	color: #0063e9;
}

/*글자위치*/
.selc_map .br_map .img_wrap ul li:first-child {
	top: 59px;
	left: 144px;
}

.selc_map .br_map .img_wrap ul li:nth-of-type(2) {
	top: 105px;
	left: 153px;
}

.selc_map .br_map .img_wrap ul li:nth-of-type(3) {
	top: 134px;
	left: 193px;
}

.selc_map .br_map .img_wrap ul li:nth-of-type(4) {
	top: 176px;
	left: 95px;
}

.selc_map .br_map .img_wrap ul li:nth-of-type(5) {
	top: 59px;
	right: 65px;
}

.selc_map .br_map .img_wrap ul li:nth-of-type(6) {
	top: 195px;
	right: 37px;
}

.selc_map .br_map .img_wrap ul li:nth-of-type(7) {
	bottom: 170px;
	right: 55px;
}

.selc_map .br_map .img_wrap ul li:nth-of-type(8) {
	bottom: 125px;
	right: 80px;
}

.selc_map .br_map .img_wrap ul li:nth-of-type(9) {
	bottom: 160px;
	left: 125px;
}

.selc_map .br_map .img_wrap ul li:nth-of-type(10) {
	bottom: 105px;
	left: 136px;
}

.selc_map .br_map .img_wrap ul li:nth-of-type(11) {
	bottom: 79px;
	left: 92px;
}

.selc_map .br_map .img_wrap ul li:nth-of-type(12) {
	bottom: -1px;
	left: 55px;
}

.selc_map .br_map .img_wrap ul li:nth-of-type(13) {
	bottom: 105px;
	left: 277px;
}

.selc_map .br_map .img_wrap ul li:nth-of-type(14) {
	bottom: 238px;
	left: 153px;
}

.selc_map .br_map .img_wrap ul li:nth-of-type(15) {
	bottom: 215px;
	left: 160px;
}

.selc_map .br_map .img_wrap ul li:nth-of-type(16) {
	top: 60px;
	left: 100px;
}

.selc_map .br_map .img_wrap ul li:nth-of-type(17) {
	bottom: 140px;
	left: 310px;
}

@media all and (max-width:1200px) {
	.programCon {
		padding: 0 20px;
	}

	/**** 전후사진 갤러리 ****/
	.bna_slide .bx-controls-direction a {
		width: 24px;
		height: 41px;
	}

	.bna_slide .bx-controls-direction a.bx-prev {
		left: 8px;
		background: url('/img/mnbna_prev.png') no-repeat center top;
	}

	.bna_slide .bx-controls-direction a.bx-next {
		right: 8px;
		background: url('/img/mnbna_next.png') no-repeat center top;
	}

	/**** 카드형게시판 ****/
	.card_type ul li:nth-of-type(3n) {
		margin-right: 0;
	}

	.card_type ul li:nth-of-type(4n) {
		margin: 0 1.25% 20px 0;
	}

}

@media all and (max-width:1100px) {

	.loginCon li.last {
		width: calc(37% - 30px);
		padding-left: 30px;
	}

	.loginCon li.last div {
		height: auto;
	}

	.loginCon li.last div span {
		display: block;
	}

	.loginCon li.last div a {
		display: block;
		float: none;
	}

	.loginCon li .login_btn {
		float: none;
		width: 100%;
		height: 50px;
		line-height: 50px;
		margin-top: 5px;
	}

	/*갤러리형 통합*/
	.gal_wrap ul li {
		width: 32%;
		margin: 0 2% 5% 0;
	}

	.gal_wrap ul li:nth-of-type(3n) {
		margin-right: 0;
	}

	.gal_wrap ul li:nth-of-type(4n) {
		margin-right: 2%;
	}

	.bna_wrap ul li a img {
		height: 150px;
	}

	.gal_wrap ul li .up_type {
		margin-bottom: 0.9090909091vw
	}

	.gal_wrap ul li .title {
		margin: 0 0 0.9090909091vw 0
	}

	.bna_wrap ul li a img {
		height: 150px;
	}
}

@media all and (max-width:1000px) {
	.mt60 {
		margin-top: 30px;
	}

	/*아이콘스타일*/
	.branch01 {
		padding: 2px 2.5px;
	}

	.branch02 {
		padding: 2px 2.5px;
	}

	.new_icon {
		line-height: 1;
		width: auto;
		height: auto;
		padding: 3px;
	}

	.none1000 {
		display: none !important;
	}

	.show1000i {
		display: inline-block;
	}

	/*기본 테이블 */
	.program_table table {
		display: block;
	}

	.program_table table tr {
		display: block;
		position: relative;
		overflow: hidden;
		padding: 15px 0;
	}

	.program_table table thead {
		display: none;
	}

	.program_table table tbody {
		display: block;
	}

	.program_table table tr td {
		display: block;
		float: left;
		height: auto;
		min-height: 18px;
		font-size: 12px;
		padding: 0;
		box-sizing: border-box;
		margin: 10px 10px 0 0;
		color: #666;
	}

	.program_table table tr td.tit {
		width: 100%;
		margin: 0;
		margin-top: 15px \0/IE9;
		font-size: 14px;
	}

	.program_table table tr td.tit02 {
		width: 100%;
		margin-top: 10px;
		margin-top: 15px \0/IE9;
		font-size: 16px;
		color: #383838;
		text-align: left;
	}

	.program_table table tr td.tit p {
		width: calc(100% - 92px);
		white-space: nowrap;
		text-overflow: ellipsis;
		overflow: hidden;
		vertical-align: middle;
	}

	.program_table table tr td.tit p.mw100 {
		width: 100%;
		white-space: nowrap;
		text-overflow: ellipsis;
		overflow: hidden;
		vertical-align: middle;
	}

	.program_table table tr td.tit p.mmw100 {
		width: 100%;
	}

	.program_table table tr td.tit p.all {
		width: 100%;
		white-space: normal;
		text-overflow: clip;
		overflow: auto;
	}

	.program_table table tr td.bna {
		width: 50%;
		margin: 0;
		height: auto;
		text-align: left;
		padding: 5px;
	}

	.program_table table tr td.bna>span {
		left: 5px;
		bottom: 5px;
	}

	.program_table table tr td.bna img {
		max-width: 100%;
		max-height: 100%;
	}

	.program_table table tr td.category {
		width: 100%;
		margin: 0;
		margin-top: 15px \0/IE9;
		text-align: left;
	}

	.program_table table tr td.tit span.up_btnw {
		display: block;
		margin-bottom: 5px;
		font-size: 0;
	}

	.program_table table tr td.tit span.up_btnw>span {
		vertical-align: middle;
	}

	.program_table table tr td p {
		display: inline-block;
		width: 100%;
	}

	.program_table table tr td .consult_on {
		float: right;
		font-size: 0;
		padding-right: 3px;
	}

	.program_table table tr td .consult_on span {
		margin-left: 5px;
		padding: 4px 3px 2px;
		line-height: 1;
		font-size: 13px;
	}

	.program_table table tr td.nt_list {
		float: none;
		position: absolute;
		right: 15px;
		width: 100px;
		height: 100px;
		margin: 0;
	}

	/*
	.program_table table tr td.nt_list img{height:100%;}
    */
	.titCenter_table table tr td.tit {
		text-align: left;
	}

	.program_table table tr td.tit .noti_icon {
		display: inline-block;
		width: auto;
		height: auto;
		padding: 2px 2.5px;
		font-size: 13px;
		line-height: 1;
		vertical-align: baseline;
	}

	.program_table table tr td.tit .up_btnw .noti_icon {
		margin-right: 3px;
	}

	.program_table table tr td .newIcon {
		width: 30px;
		margin-left: 7px;
	}

	.program_table table tr td .hit {
		display: inline-block;
	}

	.program_table table .w70 {
		width: auto;
	}

	.program_table table .w80 {
		width: auto;
	}

	.program_table table .w90 {
		width: auto;
	}

	.program_table table .w100 {
		width: auto;
	}

	.program_table table .w110 {
		width: auto;
	}

	.program_table table .w130 {
		width: auto;
	}

	.program_table table .w150 {
		width: auto;
	}

	.program_table table .w160 {
		width: 100%;
	}

	.program_table table .w100.w100w {
		width: 100%;
	}

	.branchSelect>p {
		margin-top: 30px;
	}

	.branchSelect table tr td select {
		width: 100%;
	}

	.writeForm_top>p {
		margin-top: 30px;
	}

	.writeForm table tr td .inputEmail02 {
		width: 248px;
		margin-bottom: 10px;
	}

	/* 달력 */
	.schedule {
		float: none;
		width: 100%;
		margin-right: 0;
		margin-bottom: 20px;
	}

	.schedule_time {
		width: 100%;
		float: none;
	}

	/*게시판 하단 검색창 */
	.program_search {
		margin-top: 20px;
	}

	.program_search select {
		width: 30%;
	}

	.program_search select:last-of-type {
		margin-right: 0;
	}

	.program_search>span {
		display: block;
		margin-top: 10px;
	}

	.program_search input[type="text"] {
		width: calc(90% - 51px);
		padding: 0 10px;
	}

	.bna_wrap ul li {
		width: 47.5%;
		height: 250px;
		margin-right: 5%
	}

	.bna_wrap ul li:nth-of-type(2n) {
		margin-right: 0
	}

	.bna_wrap ul li a img {
		height: 120px;
	}

	.program_table table.g_type tr {
		min-height: 100px;
	}

	.program_table table tr.gtr_type {
		min-height: 100px;
	}

	.program_table table.g_type tr td.tit {
		padding-right: 115px;
		margin-top: 25px;
		box-sizing: border-box;
	}

	.program_table table tr.gtr_type td.tit {
		padding-right: 115px;
		margin-top: 25px;
		box-sizing: border-box;
	}

	.bna_wrap ul li div.beafphotocc {
		padding: 10px;
		width: auto;
	}


	.program_table table.ig_type tr {
		min-height: 100px;
	}

	.program_table table.ig_type tr td.nt_list {
		right: auto;
		left: 15px;
	}

	.program_table table.ig_type tr {
		padding-left: 130px;
	}

	.program_table table.ig_type tr td.tit {
		padding-right: 0;
		margin-top: 16px;
		box-sizing: border-box;
	}


}

@media all and (max-width:770px) {
	.programCon {
		padding: 0 15px;
	}

	.programCon .urlFile p {
		padding: 3% 0 3% 3%;
	}

	/**** 로그인 ***/
	.login_wrap .login_tit {
		font-size: 18px;
	}

	.login_wrap .login_tit span {
		font-size: 40px;
		font-weight: 800;
	}

	.login_wrap .login_subtit {
		font-size: 18px;
	}

	.login_wrap .login_txt {
		font-size: 14px;
	}

	.login_wrap {
		padding: 10% 15px;
	}

	.loginCon li.last {
		width: 100%;
		padding-left: 0;
		margin-top: 20px;
	}

	.loginCon li.last div {
		text-align: center;
	}

	.loginCon li.last div span {
		display: inline-block;
		width: 210px;
		margin-right: 15px;
		vertical-align: middle;
		font-size: 14px;
	}

	.loginCon li.last div a {
		display: inline-block;
		vertical-align: middle;
	}

	.findTab {
		margin-top: 50px;
	}

	.passwordCon {
		margin: 50px auto 0;
	}

	.programCon .join .ScrollLy {
		height: 150px;
		width: auto;
	}

	/**** 회원가입 ****/
	.writeForm {
		margin-top: 40px;
	}

	.writeForm table {
		display: block;
	}

	.writeForm table .writeForm_col01 {
		width: 100%;
	}

	.writeForm table tbody {
		display: block;
	}

	.writeForm table tr {
		display: block;
		overflow: hidden;
	}

	.writeForm table tr th {
		display: block;
	}

	.writeForm table tr td {
		float: left;
		width: 100%;
		height: auto;
		padding: 10px 0;
		/*font-size:0;*/
	}

	.writeForm table tr td.step {
		padding: 20px 0;
	}

	.writeForm_top table tr td select {
		width: 100%;
		margin: 0;
	}

	.writeForm table tr td input[type="text"] {
		padding: 0 10px;
	}

	.writeForm table tr td input[type="password"] {
		padding: 0 10px;
	}

	.writeForm table tr td input[type="file"] {
		width: calc(100% - 115px);
	}

	.writeForm table tr td .inputTxt {
		width: 100%;
	}

	.writeForm table tr td .inputNum {
		width: 100%;
	}

	.writeForm table tr td .inputPhone {
		width: 100%;
	}

	.writeForm table tr td .inputEmail03 {
		width: 100%;
	}

	.writeForm table tr td #tel {
		width: 100%;
	}

	.writeForm table tr td #cell {
		width: 100%;
	}

	.writeForm table tr td .inputEmail {
		width: calc(50% - 8px);
		margin-right: 10px;
	}

	.writeForm table tr td .email_txt {
		display: none;
	}

	.writeForm table tr td .inputTit {
		width: 100%;
	}

	.writeForm table tr td .inputIdtype {
		width: calc(100% - 110px);
	}

	.writeForm table tr td select.selecEmail {
		width: calc(50% - 8px);
		margin-right: 0;
	}

	.writeForm table tr td textarea {
		width: 100%;
		height: 268px;
		padding: 15px;
		margin: 13px 0;
		resize: none;
		font-size: 14px;
	}

	.writeForm_btn {
		margin-top: 40px;
	}

	.writeForm_btn a {
		width: 49%;
		height: 40px;
		line-height: 40px;
		font-size: 14px;
	}

	.writeForm_btn a:last-of-type {
		margin-left: 2%;
	}

	.writeForm table tr td a.id_ch {
		width: 90px;
		font-size: 13px;
	}

	.writeForm table tr td a.zip_ch {
		width: 90px;
		font-size: 13px;
	}

	.writeForm table tr td .inputPass {
		width: 100%;
	}

	.writeForm table tr td .inputPass.size02 {
		width: 100%;
		max-width: 100%;
	}

	.writeForm table tr td .inputPass.size02.mmarT10 {
		margin-top: 10px;
	}

	.writeForm table tr td .inputName {
		width: 100%;
	}

	.writeForm table tr td span.password_ch {
		display: none;
		/*font-size:14px; color:#666; margin:20px 0;*/
	}

	.writeForm table tr td .zipcode {
		width: calc(100% - 110px);
	}

	.writeForm table tr td.addr_td {
		padding: 13px 0;
	}

	.writeForm table tr td.editor {
		padding: 13px 0;
	}

	.writeForm table tr td .addr {
		width: 100%;
	}

	.writeForm table tr td {
		overflow: hidden;
	}

	.writeForm table tr td .label_wrap {
		display: block;
		margin-top: 10px;
	}

	.writeForm table tr td select.selectNum {
		width: 75px;
	}

	.writeForm table tr td label:last-of-type {
		margin-right: 0;
	}

	.writeForm table tr td input[type="checkbox"] {
		margin: 0 10px 0 0;
		vertical-align: middle;
	}

	.writeForm table tr td input[type="radio"] {
		width: 15px;
		height: 15px;
		margin-right: 10px;
		vertical-align: middle;
	}

	.writeForm table tr td .spamCode {
		float: left;
		width: 210px;
		height: 100px;
		margin: 13px 10px 13px 0;
		background: #fafafa;
		border: 1px solid #e5e5e5;
		box-sizing: border-box;
		text-align: center;
	}

	.writeForm table tr td input[type="text"].inputSpam {
		width: 328px;
		height: 48px;
		margin: 13px 0 15px;
	}

	.writeForm table tr td .spamTxt {
		font-size: 14px;
	}

	.writeForm table tr td .spamTxt img {
		margin-right: 10px;
	}

	/*.writeForm table tr td span{font-size:16px;}
	.writeForm table tr td span a{font-size:16px;}*/

	.writeForm table tr .spam_td {
		font-size: 12px;
	}

	.writeForm table tr .spam_td span {
		display: inline-block;
		margin: 0 0 10px;
	}

	.writeForm table tr .spam_td img {
		margin: 0 10px 0 0;
	}

	.writeForm table tr .spam_td input {
		width: 100%;
		margin-bottom: 10px;
	}

	.writeForm table tr td .inputEmail02 {
		width: calc(50% - 8px);
		margin-bottom: 0;
		margin-right: 10px;
	}

	.writeForm table tr td select.selectNum {
		width: calc(33.333333% - 16px);
	}

	.writeForm table tr td input.inputNum {
		width: calc(33.333333% - 8px);
	}

	.writeForm table tr .mail_type span:not(.email_txt) {
		display: block;
		margin: 0;
		margin-top: 10px;
	}

	.readEdit.imgEdit img {
		width: 80%;
		max-width: 500px;
		margin-bottom: 3.334%;
	}

	/* 리드페이지 상단*/
	.readTop .imgTitle {
		font-size: 16px;
	}

	.readBottom table tr td {
		padding: 0 15px;
		color: #999;
	}

	.programPage {
		display: none !important;
	}

	.prd_page_nav_wrapper {
		display: none !important;
	}

	.mo_programPage {
		display: block !important;
	}

	.write_btn {
		margin-top: 30px;
	}

	.write_btn dt a {
		width: 70px;
		height: 35px;
		line-height: 35px;
	}

	.write_btn dd a {
		width: 110px;
		height: 35px;
		line-height: 35px;
		background: #323337 url("/manage/img/write_icon.png") no-repeat 16px 10px;
	}

	.readBottom_btn {
		margin-top: 30px;
	}

	.readBottom_btn dt a {
		width: 60px;
		height: 35px;
		line-height: 35px;
	}

	.readBottom_btn dd a {
		width: 90px;
		height: 35px;
		line-height: 35px;
	}

	/**** 달력 ****/
	.schedule_time div p {
		height: 40px;
		line-height: 40px;
	}

	.schedule_time div ul li {
		padding: 13px 0;
	}


	/**** faq 탭 ****/
	.faq_tab li {
		width: 25%;
		height: 40px;
		font-size: 12px;
	}

	.faq_tab li:nth-of-type(5) {
		border-left: 1px solid #c2c2c2;
	}

	.faq_tab li:nth-of-type(n + 5) {
		border-top: 0;
	}

	.faq_tab li a {
		font-size: 13px;
	}

	.faq_table>tbody>tr>th {
		height: auto;
		padding: 10px 20px;
	}

	.faq_table>tbody>tr>td {
		padding: 6% 20px;
	}

	/* 전후사진 갤러리*/
	.bna_wrap ul li {
		float: none;
		width: 90%;
		height: auto;
		margin: 5%;
		margin-bottom: 0;
	}

	.bna_wrap ul li:nth-of-type(3n) {
		margin-right: 5%;
	}

	.bna_wrap ul li:last-of-type {
		margin-bottom: 40px;
	}

	.bna_wrap ul li div.beafphotocc {
		width: auto;
		padding: 3%;
	}

	.bna_wrap ul li a>span {
		position: absolute;
		top: 50%;
		left: 50%;
	}

	.bna_wrap ul li a img {
		height: auto;
	}

	.bna_wrap ul li div.beafphotocc .under {
		margin-top: 10px;
	}

	/* 댓글부분에서 이름 비밀번호 내용입력 폼*/
	.read_reple {
		padding: 15px;
	}

	.read_reple .reple_dl {
		font-size: 12px;
		margin-bottom: 17px;
	}

	.read_reple .reple_dl:last-of-type {
		padding-bottom: 17px;
	}

	.read_reple .reple_dl dt {
		margin-bottom: 12px;
	}

	.read_reple .reple_dl dt strong {
		padding-right: 10px;
	}

	.read_reple .reple_dl .reEdit {
		right: 0;
	}

	.read_reple .reple_dl .reEdit input[type="button"] {
		width: 50px;
		height: 25px;
		font-size: 12px;
	}

	.read_rego dl dt {
		font-size: 0;
		margin-bottom: 10px;
	}

	.read_rego dl dt div {
		display: inline-block;
		width: calc(50% - 4px);
		margin-right: 8px;
	}

	.read_rego dl dd {
		overflow: hidden;
	}

	.read_rego input[type="text"] {
		height: 30px;
		font-size: 12px;
		padding: 0 10px;
	}

	.read_rego textarea {
		width: 100%;
		height: 80px;
		margin-right: 0;
		font-size: 12px;
		padding: 5px;
	}

	.read_rego input[type="submit"] {
		width: 50px;
		height: 40px;
		font-size: 14px;
		margin-top: 5px;
		float: right;
	}

	.readEdit .readBnA {
		margin-bottom: 20px;
	}

	.readEdit .readBnA>div img {
		height: auto;
		margin-bottom: 0;
	}

	.readEdit .readBnA .arrow {
		font-size: 20px;
		margin-top: -10px;
	}

	.readEdit .readBnA>div>span {
		left: 0;
	}

	/* 수정및 삭제시 비밀번호 입력창 */
	.password_box {
		width: calc(95% - 30px);
		left: calc(2.5% + 15px) !important;
	}

	.password_box div {
		padding: 7px;
	}

	.password_box div dl {
		font-size: 0;
	}

	.password_box div dl dt {
		width: 60px;
		font-size: 12px;
	}

	.password_box div dl dd {
		width: calc(100% - 60px);
	}

	.password_box div dl dd input[type="password"] {
		width: calc(100% - 40px);
		height: 30px;
		font-size: 12px;
		padding: 0 10px;
	}

	.password_box div dl dd input[type="button"] {
		width: 40px;
		height: 30px;
		font-size: 12px;
	}

	.password_box div dl dd input[type="button"].password_box_x {
		width: 30px;
		position: absolute;
		top: -35px;
		right: -5px;
	}

	.readTop {
		width: 100%;
		padding: 20px 15px;
		box-sizing: border-box;
	}

	.readEdit {
		margin: 20px 0;
		padding: 0 10px;
		width: 100%;
		box-sizing: border-box;
	}

	#member #agree {
		padding: 0 2% 2%;
	}

	#member #agree h5 {
		padding: 5% 0 3% 0;
	}

	#member #agree h6 {
		padding: 5% 0 0;
	}

	#member #policy {
		padding: 2%;
	}

	#member #policy h5 {
		padding: 5% 0 3% 0;
	}

	#member #policy h6 {
		padding: 5% 0 0;
	}

	/*갤러리형 통합*/
	.gal_wrap ul li {
		width: 47.5%;
		margin: 0 5% 5% 0;
	}

	.gal_wrap ul li:nth-of-type(3n) {
		margin: 0 5% 5% 0;
	}

	.gal_wrap ul li:nth-of-type(2n) {
		margin-right: 0;
	}

	/*병원 th 필요부분 추가*/
	.writeForm.bd_th table tr th {
		display: block;
		float: left;
		height: auto;
		padding: 20px 0 0 0;
		font-size: 13px;
		background: none;
	}


	/**** 전후사진추가 ****/
	.bna_slide ul li>div {
		height: 54.444vw;
	}

	.bna_slide .bef {
		width: auto;
		width: 55px;
		padding: 1% 0;
		font-size: 11px;
	}

	.bna_slide .aft {
		left: 50%;
		background-color: var(--color-primary01);
	}

	.bna_slide .bx-controls-direction a {
		width: 3.75%;
		height: 6.40625vw;
		background-size: 100% auto;
	}

	.bna_slide .bx-controls-direction a.bx-prev {
		left: 1%;
		background-size: 100% auto;
	}

	.bna_slide .bx-controls-direction a.bx-next {
		right: 1%;
		background-size: 100% auto;
	}

	.bnas_wrap .under_txt {
		padding: 2.8% 0;
		font-size: 14px;
	}

	.bnas_wrap .icon_type {
		margin: 6.56% 0 12%;
	}

	.bnas_wrap .icon_type>div {
		width: 17.5%;
		height: auto;
		padding: 2.787% 2.46% 1.64%;
	}

	.bnas_wrap .icon_type>div img {
		width: 77.6%;
		margin-bottom: 12.05%;
	}

	.bnas_wrap .icon_type>div p {
		padding-top: 10%;
		font-size: 14px;
	}

	.bnas_pager>div {
		float: none;
		width: 100%;
		margin: 0 0 3% 0;
	}

	.bnas_pager>div a img {
		height: 51.10725vw
	}

	/**** 카드형게시판 ****/
	.card_type ul li {
		width: 49%;
		padding: 1.5%;
		margin: 0 1% 3% 0;
	}

	.card_type ul li:nth-of-type(3n) {
		margin: 0 1% 3% 0;
	}

	.card_type ul li:nth-of-type(2n) {
		margin-right: 0;
	}

	.card_type ul li .img img {
		width: 100%;
	}

	.card_btn {
		margin-top: 8%;
	}

	.card_btn a {
		width: 100%;
		height: 45px;
		line-height: 45px;
		font-size: 13px;
	}

	.card_btn a span {
		font-size: 14px;
	}

	/*171124 지점*/
	.branch_table>thead>tr>th {
		height: auto;
		padding: 12px 1.2%;
	}

	.branch_table>tbody>tr>th {
		height: auto;
		padding: 12px 2%;
	}

	.branch_table>tbody>tr>td {
		padding: 4% 3%;
	}

	.branch_table>tbody>tr>th .btn {
		width: 40px;
		height: 28px;
		font-size: 12px;
		line-height: 26px;
	}

	.branch_table>tbody>tr>td .up_txt>div {
		float: none;
		width: 100%;
	}

	.branch_table>tbody>tr>td .up_txt>div+div {
		margin-left: 0;
	}

	.branch_table>tbody>tr>td .up_txt dl {
		font-size: 13px;
	}

	.branch_table>tbody>tr>td .up_txt dt {
		width: 62px;
	}

	.branch_table>tbody>tr>td .up_txt dd {
		width: calc(100% - 62px);
	}

	.selc_map {
		margin-bottom: 7%;
	}

	.selc_map>div {
		float: none;
		width: 100%;
	}

	.selc_map .selc_type {
		padding: 8% 0;
	}

	.selc_map .selc_type p {
		width: 78%;
		margin: 0 auto 1.65%;
	}

	.selc_map .selc_type p:last-of-type {
		margin-bottom: 0;
	}

	.selc_map .selc_type p input {
		height: 40px;
	}

	.selc_map .selc_type p input[type="button"] {
		width: 100%;
	}

	.selc_map .selc_type p select {
		height: 40px;
	}

	.selc_map .br_map {
		display: none;
	}

}

/* 모바일 640 사이즈 */
@media all and (max-width:640px) {
	.schedule .calender_wrap .under_wrap {
		padding: 3%;
	}

	.calender_wrap .under_wrap>p {
		float: none;
		text-align: left;
	}

	.calender_wrap .under_wrap>.sr_wrap {
		float: none;
		margin-top: 2%;
		text-align: right;
		font-size: 0;
	}

	.calender_wrap .under_wrap>.sr_wrap p {
		float: none;
		display: inline-block;
		letter-spacing: -0.025em;
	}

	.calender_wrap .under_wrap>.sr_wrap i {
		float: none;
		display: inline-block;
		margin: 0 10px;
	}

	.calender_wrap .under_wrap>.sr_wrap input {
		width: 80px;
	}

	.calender_wrap .under_wrap>.sr_wrap input.no02 {
		width: 50px;
	}

	.gal_wrap {
		padding-top: 20px;
	}

	.gal_wrap ul li {
		float: none;
		width: 100%;
		height: auto;
		margin: 0;
		margin-bottom: 5%;
	}

	.gal_wrap ul li:nth-of-type(4n) {
		margin-right: 0;
	}

	.gal_wrap ul li:nth-of-type(3n) {
		margin-right: 0
	}

	.gal_wrap ul li:nth-of-type(2n) {
		margin-right: 0;
	}

	.gal_wrap ul li:last-of-type {
		margin-bottom: 20px;
	}

	.gal_wrap ul li a p {
		margin: 10px 0;
		line-height: 1.5;
		font-size: 16px;
		color: #383838;
		font-weight: 700;
	}

	.gal_wrap ul li a span {
		font-size: 12px;
	}

	.gal_wrap ul li .txt {
		padding: 10px 10px 20px;
	}

	.bna_wrap {
		padding-top: 20px;
	}

	.bna_wrap ul li:last-of-type {
		margin-bottom: 20px;
	}

	.program_table table tr td.nt_list {
		width: 70px;
		height: 70px;
	}

	.program_table table.g_type tr {
		min-height: 70px;
	}

	.program_table table tr.gtr_type {
		min-height: 70px;
	}

	.program_table table.g_type tr td.tit {
		padding-right: 85px;
		margin-top: 0;
	}

	.program_table table tr.gtr_type td.tit {
		padding-right: 85px;
		margin-top: 0;
	}


	.program_table table tr td .answer_icon2 {
		margin-left: 0 !important;
		padding-left: 6%;
		box-sizing: border-box;
	}

	.program_table table tr td .answer_icon2 img {
		position: absolute;
		left: -5px;
		width: 7%;
		margin-right: 0;
	}

	.program_table table.ig_type tr {
		min-height: 70px;
	}

	.program_table table.ig_type tr td.nt_list {
		right: auto;
		left: 0;
	}

	.program_table table.ig_type tr {
		padding-left: 80px;
	}

	.program_table table.ig_type tr td.tit {
		margin-top: 0;
	}

	.program_table table tr.gtr_type {
		min-height: 70px;
	}

	.program_table table.ig_type tr.gtr_type td.tit {
		padding-right: 0;
	}

	/* 아이디/패스워드 찾기 */
	.findCon_wrap {
		border-top: 1px solid #e1e3e4;
	}

	.findCon_wrap>div {
		float: none;
		width: 100%;
		margin: 0 0 0;
		border-top: 0;
		padding-top: 7%;
	}

	.findCon_wrap>div:first-of-type .in_hei {
		padding-right: 0;
	}

	.findCon_wrap .up_txt {
		text-align: left;
	}

	.findCon_wrap .up_txt p {
		margin-bottom: 3%;
	}

	.findCon_wrap .up_txt span {
		height: auto;
	}

	.findCon_wrap .in_hei {
		height: auto;
	}

	.under_btn {
		overflow: hidden;
		margin: 0 0 5%;
		border-top: 0;
		border-bottom: 1px solid #e1e3e4;
	}

	.under_btn .login_btn {
		display: block;
		width: 100%;
		margin: 0 auto;
		height: auto;
		line-height: 1;
		color: #fff;
		padding: 5% 0;
		font-size: 14px;
		font-weight: bold;
		margin-top: 0;
		margin-bottom: 5%;
	}

	.findCon li dl {
		padding: 3% 0;
	}

	.sec_ucon .login_btn {
		width: 100%;
		max-width: 100%;
	}

	/* 카드형게시판 */
	.card_type ul li {
		width: 100%;
		margin: 0 0 3% 0;
		padding: 3%;
	}

	.card_type ul li:nth-of-type(3n) {
		margin: 0 0 3% 0;
	}

	.card_type ul li .txt {
		margin-top: 10px;
		padding: 3%;
	}

	.card_type ul li .txt .ti {
		margin-bottom: 3%;
		font-size: 14px;
	}

	.card_type ul li .txt .um {
		font-size: 12px;
	}

}

@media all and (max-width:450px) {

	/* 아이디중복확인 클릭시 팝업 중복확인창 */
	.idCheck_wrap h2 {
		font-size: 22px;
	}

	.idCheck_wrap p {
		margin: 15px 0;
		font-size: 14px;
	}

	.idCheck_wrap .conBox dd {
		font-size: 14px;
	}

	.idCheck_wrap .conBox dd input[type=text] {
		padding: 5px 8px;
	}

	.idCheck_wrap .conBox dd input[type=submit] {
		padding: 5px 8px;
	}

	.idCheck_wrap .btnok {
		font-size: 14px;
	}

	.idCheck_wrap .btnok .btnAll {
		margin-top: 20px;
	}

	.idCheck_wrap .btnok .btnAll a {
		font-size: 14px;
	}

	.readTop {
		padding: 15px 10px;
	}
}

@media all and (max-width:400px) {
	.login_wrap .login_tit {
		font-size: 16px;
		letter-spacing: -0.05em;
	}

	.login_wrap .login_tit span {
		font-size: 30px;
	}
}

@media all and (max-width:400px) {
	.program_table table.g_type tr td.hi_td {
		clear: both;
	}

	.program_table table tr.gtr_type td.hi_td {
		clear: both;
	}
}

@media all and (max-width:389px) {
	.calender_wrap .under_wrap>.sr_wrap input {
		margin: 0;
	}

	.calender_wrap .under_wrap>.sr_wrap i {
		margin: 0 5px;
	}
}

@media all and (max-width:366px) {
	.calender_wrap .under_wrap>.sr_wrap i {
		display: none;
	}

	.calender_wrap .under_wrap>.sr_wrap input.no02 {
		margin-top: 2%;
		width: 80px;
	}

}

@media all and (max-width:360px) {
	.schedule_time div ul li {
		font-size: 12px;
	}
}

/*컬러지정*/
.login_wrap .login_tit {
	color: var(--color-primary01);
}

.loginCon li .login_btn {
	background-color: var(--color-primary01);
}

.findCon li .login_btn {
	background-color: var(--color-primary01);
}

.sec_ucon .login_btn {
	background-color: var(--color-primary01);
}

.passwordCon li .password_btn a {
	background-color: var(--color-primary01);
}

.writeForm_btn a {
	background-color: var(--color-primary01);
}

.writeForm_btn a.mcol_type {
	background-color: var(--color-primary01);
}

.under_btn .login_btn {
	background-color: var(--color-primary01);
}

.writeForm_btn a.color_type {
	background-color: var(--color-primary01);
}


/*2017/12/18 additional area for login.jsp*/
.member_box02 {
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
	padding: 100px 0;
}

.member_box02_In {
	overflow: hidden;
}

.member_box02_In>a {
	font-size: 16px;
	padding-left: 20px;
	height: 70px;
	line-height: 70px;
	letter-spacing: -0.05em;
	color: #fff !important;
	width: 49.5%;
	margin-right: 1%;
	margin-bottom: 1%;
	box-sizing: border-box;
	float: left;
	display: block;
}

.member_box02_In>a.a_bg4>a {
	color: #fff !important;
	font-size: 16px !important;
}

.member_box02_In>a:nth-of-type(2n) {
	margin-right: 0;
}

.member_box02_In>a.a_bg1 {
	background: #a9a9a9 url("/img/google_bg.jpg") 100% 100% no-repeat;
}

.member_box02_In>a.a_bg2 {
	background: #ffae00 url("/img/kakao_bg.jpg") 100% 100% no-repeat;
}

.member_box02_In>a.a_bg3 {
	background: #445f95 url("/img/facebook_bg.jpg") 100% 100% no-repeat;
}

.member_box02_In>a.a_bg4 {
	background: #4cac3b url("/img/naver_bg.jpg") 100% 100% no-repeat;
}

@media all and (max-width:800px) {
	.member_box02_In>a {
		padding-left: 0px;
	}
}

@media all and (max-width:700px) {
	.member_box02 {
		width: 100%;
		max-width: 400px;
		margin: 0 auto;
		padding: 100px 0;
	}

	.member_box02_In>a {
		width: 100%;
		float: none;
	}
}

@media all and (max-width:400px) {
	.member_box02_In>a {
		font-size: 14px;
	}
}


/*20180424 404 and 500 error area*/

#er_wrap {
	width: 100%;
	height: 100%;
}

.er_404 {
	width: 100%;
	word-break: keep-all;
}

.er_cont {
	width: 100%;
	height: 100%;
	background: url("/img/com_bg.jpg") no-repeat right bottom;
	text-align: center;
	border-top: 2px solid #e3175c;
	padding-top: 120px;
	box-sizing: border-box;
	background-size: 978px 468px;
}

.er_cont img.er_mark {
	margin-left: 30px;
	max-width: 100%;
}

.er_cont p.tit_er {
	font-size: 45px;
	font-weight: bold;
	letter-spacing: -0.075em;
	color: #222;
	line-height: 65px;
	margin: 40px 0 30px;
}

.er_cont p.desc_er {
	font-size: 16px;
	font-weight: 400;
	letter-spacing: -0.075em;
	color: #222;
	line-height: 26px;
}

.er_cont a {
	display: block;
	width: 250px;
	border-radius: 50px;
	background: #e3175c;
	color: #fff;
	margin: 0 auto;
	line-height: 50px;
	padding-left: 2%;
	text-align: left;
	box-sizing: border-box;
	font-size: 14px;
	font-weight: 400;
	letter-spacing: -0.075em;
	margin-top: 50px;
}

.er_cont .com_ar {
	margin-top: 10px;
	margin-left: 50px;
	width: 32px;
}

@media all and (max-width:980px) {
	.er_cont {
		padding-top: 120px;
		background-size: 600px 300px;
	}
}

@media all and (max-width:640px) {
	.er_404 {
		width: 93.75%;
		margin: 0 auto;
	}

	.er_cont {
		padding-top: 18.75vw;
		background-size: 93.75vw 46.875vw;
	}

	.er_cont img.er_mark {
		margin-left: 4.6875vw;
		width: 46.40625vw;
	}

	.er_cont p.tit_er {
		font-size: 7.03125vw;
		line-height: 10.15625vw;
		margin: 6.25vw 0 4.6875vw;
	}

	.er_cont p.desc_er {
		font-size: 2.5vw;
		line-height: 4.0625vw;
	}

	.er_cont a {
		width: 39.0625vw;
		border-radius: 7.8125vw;
		line-height: 7.8125vw;
		font-size: 2.1875vw;
		margin-top: 7.8125vw;
	}

	.er_cont .com_ar {
		margin-top: 1.5625vw;
		margin-left: 7.8125vw;
		width: 5vw;
	}
}


/*************** 목록이미지 스타일 5가지 ******************/
/* 목록이미지 , 공통게시판 */
/* 1번 가로고정 + 세로고정 + 이미지 비율 유지 */
/* 2번 가로고정 + 이미지 비율 유지 */
/* 3번 세로고정 + 이미지 비율 유지 */
/* 4번 가로고정 + 세로고정 + 이미지 비율 유지안함 */
/* 5번 가로고정 + 세로고정 + 이미지 비율 유지 */
/******************************************************/
/* program_table 옆에 five_table(n)class명 추가 */
.no_imgbox {
	width: 100%;
	height: 100%
}

/*===== 목록이미지 1. 가로고정 + 세로고정 + 이미지 비율유지 (개발에서 처리) =====*/

.five_table1 colgroup col.wauto {
	width: 150px;
}

.five_table1 .img_box {
	width: 130px;
	height: 130px;
	overflow: hidden
}

@media all and (max-width:1000px) {
	.five_table1 .img_box {
		width: 100px;
		height: 100px
	}
}

@media all and (max-width:640px) {
	.five_table1 .img_box {
		width: 70px;
		height: 70px
	}
}

/*===== 목록이미지 2. 가로고정 + 이미지 비율유지 =====*/
.five_table2 colgroup col.wauto {
	width: 150px;
}

.five_table2 table tr td.nt_list img {
	width: 100%;
	height: auto
}

@media all and (max-width:1000px) {

	.five_table2 colgroup col.wauto {
		width: auto;
	}

	.five_table2 table.ig_type tr td.nt_list {
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		height: auto
	}

	.five_table2 table.ig_type tr td {
		float: left;
	}

	.five_table2 table tr {
		position: inherit
	}

	.five_table2 table.ig_type tr {
		padding-left: 15px;
	}

	.five_table2 table tr td {
		padding-left: 15px;
	}

	.five_table2 table tr td.nt_list {
		position: inherit;
		height: auto;
		padding-left: 0;
	}

	.five_table2 table tr td.tit {
		width: calc(100% - 100px);
	}

	.five_table2 table.ig_type tr {
		min-height: auto
	}

	.five_table2 .marmar {
		padding-left: 0
	}
}

/*===== 목록이미지 3. 세로고정 + 이미지 비율유지 PC일때만! =====*/
/* 반응형 초기화 */
.five_table3 {
	min-width: 1200px
}

.five_table3 table thead {
	display: table-header-group
}

.five_table3 table.ig_type tr td.tit {
	margin-top: 0
}

.five_table3 table tr td {
	float: none
}

.five_table3 table tr td.nt_list img {
	width: auto;
	height: 130px
}

/* colgroup col 1번 값 제작시 이미지사이즈에 맞게 witdh값 줘도 됨*/
.five_table3 table .wauto {
	width: auto
}

@media all and (max-width:1000px) {
	.five_table3 table .none1000 {
		display: table-cell !important
	}

	.five_table3 table {
		display: table
	}

	.five_table3 table.ig_type tr {
		padding-left: 0
	}

	.five_table3 table tr {
		display: table-row
	}

	.five_table3 table tbody {
		display: table-row-group
	}

	.five_table3 table tr td {
		display: table-cell
	}

	.five_table3 table tr td.nt_list {
		position: inherit
	}

}

/*===== 목록이미지 4. 가로고정 + 이미지 비율유지 =====*/
/* 모든 클레스 제거하면 됨 */

.five_table4 colgroup col.wauto {
	width: 150px;
}

.five_table4 .img_box {
	width: 130px;
	height: 130px
}

.five_table4 table tr td.nt_list img {
	width: 100%;
	height: 130px
}

@media all and (max-width:1000px) {
	.five_table4 .img_box {
		width: 100px;
		height: 100px
	}

	.five_table4 table tr td.nt_list img {
		height: 100%
	}
}

@media all and (max-width:640px) {
	.five_table4 .img_box {
		width: 70px;
		height: 70px
	}
}

/*===== 목록이미지 5. 가로고정 + 이미지 비율유지 =====*/

.five_table5 .img_box {
	display: block;
	overflow: hidden;
	width: 130px;
	height: 130px
}

.five_table5 table tr td.nt_list img {
	width: 100%;
	height: auto
}

.five_table5 colgroup col.wauto {
	width: 150px;
}

@media all and (max-width:1000px) {
	.five_table5 .img_box {
		width: 100px;
		height: 100px
	}

	.five_table5 table tr td.nt_list img {
		width: 100%;
		height: auto
	}
}

@media all and (max-width:640px) {
	.five_table5 .img_box {
		width: 70px;
		height: 70px
	}
}



.custom_area {
	width: calc(100%);
	float: initial;
	height: 100px;
	padding: 5px;
	border: 1px solid #c6cdd8;
	resize: none;
	box-sizing: border-box;
	font-size: 13px;
}

.custom_text {
	width: 200px;
	height: 37px;
	border: 1px solid #dedede;
	font-size: 14px;
	padding: 0 20px;
	vertical-align: middle;
	box-sizing: border-box;
}

/* 휴면계정 로그인 2018 .10 .01 */

.text_box {
	border-top: 1px solid #e1e3e4;
	border-bottom: 1px solid #e1e3e4;
	padding: 30px 0;
	margin-top: 40px;
	overflow: hidden;
}

.text_box .tit {
	font-size: 28px;
	color: #454545;
	font-weight: bold;
	margin: 15px 0 25px;
	line-height: 1.3;
}

.text_box p {
	font-size: 16px;
	color: #444;
	line-height: 1.4;
}

.login_wrap .human_btn {
	display: block;
	margin: 0 auto;
	background-color: var(--color-primary01);
	width: 200px;
	height: 50px;
	line-height: 50px;
	margin-top: 30px;
	font-size: 18px;
	color: #fff
}

.login_wrap .human_btn2 {
	display: inline-block;
	background-color: var(--color-primary01);
	width: 200px;
	height: 50px;
	line-height: 50px;
	margin-top: 10px;
	font-size: 18px;
	color: #fff
}

.text_box>div {
	width: 430px;
	margin: 20px auto;
}

.text_box .input_box {
	width: 100%;
	font-size: 16px;
	color: #444;
	text-align: left;
}

.text_box .after {
	margin: 10px auto;
}

.text_box .after:after {
	clear: both;
	content: "";
	display: block;
	height: 0;
	visibility: hidden
}

.text_box .after input {
	width: 300px;
	height: 40px;
	float: left;
	border: 1px solid #dedede;
	padding-left: 15px;
	box-sizing: border-box;
}

.text_box .after a {
	float: left;
	display: block;
	width: 120px;
	height: 40px;
	line-height: 40px;
	background: var(--color-primary01);
	margin-left: 10px;
	color: #fff;
	font-size: 16px;
}

.text_box .re_move:after {
	clear: both;
	content: "";
	display: block;
	height: 0;
	visibility: hidden
}

.text_box .re_move p {
	font-size: 16px;
	color: #444;
	float: left;
	width: 120px;
	margin-right: 10px;
	height: 40px;
	line-height: 40px;
	text-align: left;
}

.text_box .re_move input {
	width: 300px;
	float: left;
	border: 1px solid #dedede;
	height: 40px;
	box-sizing: border-box;
	padding-left: 15px;
}


@media all and (max-width:770px) {
	.text_box .tit {
		font-size: 18px;
	}

	.text_box p {
		font-size: 14px;
	}

	.text_box .after a {
		font-size: 14px;
	}
}

@media all and (max-width:640px) {

	.login_wrap .human_btn {
		font-size: 16px;
		width: 100%;
		line-height: 1;
		height: auto;
		padding: 4% 0;
	}

	.login_wrap .human_btn2 {
		font-size: 16px;
		width: 100%;
		line-height: 1;
		height: auto;
		padding: 4% 0;
	}

	.text_box>div {
		width: 100%
	}

	.text_box .input_box {
		font-size: 14px;
	}

	.text_box .after input {
		width: 100%;
		float: none;
	}

	.text_box .after a {
		margin-left: 0;
		margin-top: 10px;
		height: 35px;
		line-height: 35px;
	}

	.text_box .re_move p {
		float: none;
		font-size: 14px;
	}

	.text_box .re_move input {
		width: 100%;
		float: none
	}
}

/* 탑배너 */
.top_pop {
	width: 1200px;
	height: auto;
	position: relative;
	margin: 0 auto;
	top: 30px;
	padding-bottom: 30px;
}

.top_pop .top_banner {
	width: 100%;
	position: relative;
}

.top_pop img {
	width: 100%;
}

.top_pop .top_close {
	position: absolute;
	top: -28px;
	right: 0;
}

.top_pop .top_close input {
	vertical-align: middle;
	margin-top: -3px;
}

.top_pop .top_close a {
	font-size: 15px;
	color: #222;
}

.top_pop label {
	color: #222;
}

.top_pop .bx-controls-direction a {
	position: absolute;
	width: 30px;
	height: 30px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	text-indent: -9999px;
}

.top_pop .bx-controls-direction a.bx-prev {
	background: url("/img/prev-btn.png") center top no-repeat;
	background-size: cover;
	left: 20px;
}

.top_pop .bx-controls-direction a.bx-next {
	background: url("/img/next-btn.png") center top no-repeat;
	background-size: cover;
	right: 20px;
}


/*기업 - 제품소개 이미지목록형 추가*/
.com_imgg_wrap .program_search {
	text-align: right;
	font-size: 0;
	margin-bottom: 20px;
}

.comi_list ul li .img_type {
	margin-left: 33px;
	width: 28%;
}

.comi_list ul li .img_type p {
	width: 100%;
	border: 1px solid #dedede;
	box-sizing: border-box;
}

.comi_list ul li .img_type img {
	width: 100%;
	height: 100%
}

.comi_list ul li .txt_type {
	width: calc(72% - 33px);
	padding: 10px 0 14px 50px;
	box-sizing: border-box;
}

.comi_list ul li .txt_type>h5 {
	margin: 12px 0 20px;
	font-size: 17px;
	font-weight: 700;
	color: #222;
}

.comi_list ul li .txt_type .txt_w {
	font-size: 14px;
	color: #444;
	line-height: 1.6em;
}

.comi_list ul li .txt_type .date {
	position: absolute;
	right: 0;
	bottom: 20px;
	font-size: 13px;
	color: #666;
}

@media all and (max-width:1000px) {

	.finance_con .finance_box01>div {
		width: 93.75%;
	}
}

@media all and (max-width:640px) {
}

.finance_tab a.on label input+i {
	background: url('/img/finance_che_img_on.jpg') no-repeat center top;
	background-size: 100%;
}

.finance_tab a.on {
	background: #090c38;
	color: #fff;
	border: 2px solid #090c38;
}

.fin_bg {
	background: #fff;
}

.finance_con .finance_box01 {
	padding: 60px 0;
}

.finance_con .finance_box01>div {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
}

.finance_con .finance_box01>div .tit p {
	font-size: 30px;
	line-height: 32px;
	margin-bottom: 10px;
	letter-spacing: -0.025em;
	color: #333;
	font-weight: 700;
	overflow: hidden;
}

.finance_con .finance_box01>div .tit p span {
	float: right;
	font-size: 17px;
	font-weight: 300;
}

.finance_con .finance_box01>div .finance_tbl>table.m_tbl {
	display: none;
}

.finance_con .finance_box01>div .finance_tbl>table.pc_tbl {
	width: 100%;
	border-top: 2px solid #333;
}

.finance_con .finance_box01>div .finance_tbl>table.pc_tbl tr th {
	font-size: 15px;
	padding: 20px 0 20px 25px;
	color: #333;
	font-weight: 500;
	border-bottom: 1px solid #ccc;
	border-right: 1px solid #ccc;
	text-align: left;
}

.finance_con .finance_box01>div .finance_tbl>table.pc_tbl tr th:last-of-type {
	border-right: 0;
}

.finance_con .finance_box01>div .finance_tbl>table.pc_tbl tr td {
	font-size: 17px;
	padding: 20px 0 20px 25px;
	color: #808080;
	font-weight: 200;
	border-bottom: 1px solid #ccc;
	border-right: 1px solid #ccc;
}

.finance_con .finance_box01>div .finance_tbl>table.pc_tbl tr td:last-of-type {
	border-right: 0;
}

/* 재무정보 테이블 정렬 - 계정과목 왼쪽, 금액 오른쪽 */
.finance_con .finance_tbl table th:first-child,
.finance_con .finance_tbl table td:first-child {
	text-align: left;
}

.finance_con .finance_tbl table th:not(:first-child),
.finance_con .finance_tbl table td:not(:first-child) {
	text-align: right;
	padding-right: 20px;
}

/* .stock01 .stock01_table table tr td.left{background:#f7f7f7;} */
.stock01 .stock01_table table tr td.bold {
	color: #333;
	font-weight: 500;
	background: #f7f7f7;
}

.stock02 .stock02_tab a.on span {
	color: #192082;
	border-top: 4px solid #192082;
}

.stock02 .stock02_cont>div table tr td.red {
	color: #f00;
}

.stock02 .stock02_cont>div table tr td.blue {
	color: #0060ff;
}

.loading {
	position: absolute;
	top: 50%;
	left: 50%;
	top: 300px;
	width: 150px;
	height: 150px;
	background: transparent;
	border: 3px solid #3c3c3c;
	border-radius: 50%;
	text-align: center;
	line-height: 150px;
	font-size: 20px;
	color: #fff000;
	letter-spacing: 4px;
	text-transform: uppercase;
	text-shadow: 0 0 10px #fff000;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	z-index: 10;
}

.loading:before {
	content: "";
	position: absolute;
	top: -3px;
	left: -3px;
	width: 100%;
	height: 100%;
	border: 3px solid transparent;
	border-top: 3px solid #fff000;
	border-right: 3px solid #fff000;
	border-radius: 50%;
	animation: animateCircle 2s linear infinite;
}

.loading span {
	display: block;
	position: absolute;
	top: calc(50% - 2px);
	left: 50%;
	width: 50%;
	height: 4px;
	background: transparent;
	transform-origin: left;
	animation: animate 2s linear infinite;
}

.loading span:before {
	content: "";
	position: absolute;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #fff000;
	top: -5px;
	right: -5px;
	box-shadow: 0 0 20px #fff000;
}

@keyframes animateCircle {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

@keyframes animate {
	0% {
		transform: rotate(45deg);
	}

	100% {
		transform: rotate(405deg);
	}
}

/* input_footer - 랜딩페이지 DB수집 폼 */
.input_footer {
	background: linear-gradient(180deg, #0a0b0f 0%, #1a1b22 100%);
	width: 100%;
	min-height: 240px;
	padding: 40px 20px;
	box-sizing: border-box;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.input_footer .w1400 {
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
	box-sizing: border-box;
	text-align: center;
}

.input_footer .w1400 form {
	display: inline-block;
	text-align: left;
}

.input_footer .w1400 form .form_inner {
	display: block;
}


.input_footer .w1400 .name_box {
	display: inline-block;
	vertical-align: top;
	margin-top: 25px;
	margin-right: 40px;
}

.input_footer .w1400 .name_box .name {
	width: 380px;
	display: flex;
	align-items: center;
}

.input_footer .w1400 .name_box .name:nth-of-type(1) {
	margin-bottom: 22px;
}

.input_footer .w1400 .name_box .name .tit {
	color: #d0d0d0;
	font-size: 16px;
	font-weight: 700;
	line-height: 44px;
	width: 70px;
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
	letter-spacing: 0.5px;
	flex-shrink: 0;
}

.input_footer .w1400 .name_box .name .input_text {
	width: 310px;
	height: 44px;
	border: 1px solid rgba(255, 255, 255, 0.3);
	background: rgba(255, 255, 255, 0.22);
	padding-left: 15px;
	color: #fff;
	font-size: 16px;
	box-sizing: border-box;
	border-radius: 4px;
	transition: all 0.3s ease;
	flex: 1;
}

.input_footer .w1400 .name_box .name .input_text:focus {
	border-color: var(--color-primary01, #E10045);
	background: rgba(255, 255, 255, 0.28);
	outline: none;
	box-shadow: 0 0 0 3px rgba(225, 0, 69, 0.2);
}

.input_footer .w1400 .name_box .name .input_text::placeholder {
	color: rgba(255, 255, 255, 0.5);
}

.input_footer .w1400 .cont_box {
	display: inline-block;
	vertical-align: top;
	margin-top: 25px;
}

.input_footer .w1400 .cont_box .cont {
	width: 750px;
	display: flex;
	align-items: flex-start;
}

.input_footer .w1400 .cont_box .cont .tit {
	color: #d0d0d0;
	font-size: 16px;
	font-weight: 700;
	line-height: 44px;
	width: 80px;
	text-align: left;
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
	letter-spacing: 0.5px;
	flex-shrink: 0;
}

.input_footer .w1400 .cont_box .cont .input_text {
	width: 670px;
	height: 110px;
	border: 1px solid rgba(255, 255, 255, 0.3);
	background: rgba(255, 255, 255, 0.22);
	padding: 12px 15px;
	color: #fff;
	font-size: 16px;
	box-sizing: border-box;
	border-radius: 4px;
	transition: all 0.3s ease;
	flex: 1;
}

.input_footer .w1400 .cont_box .cont .input_text:focus {
	border-color: var(--color-primary01, #E10045);
	background: rgba(255, 255, 255, 0.28);
	outline: none;
	box-shadow: 0 0 0 3px rgba(225, 0, 69, 0.2);
}

.input_footer .w1400 .cont_box .cont .input_text::placeholder {
	color: rgba(255, 255, 255, 0.5);
}

/* click_box - 동의 영역 + 버튼 영역 */
.input_footer .w1400 .click_box {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 25px;
	padding-top: 10px;
	box-sizing: border-box;
}

/* 왼쪽: 동의 영역 */
.input_footer .w1400 .click_box .agree_area {
	display: flex;
	align-items: center;
	gap: 15px;
}

.input_footer .w1400 .click_box .agree_label {
	display: flex;
	align-items: center;
	cursor: pointer;
	gap: 8px;
}

.input_footer .w1400 .click_box .agree_label .input_check {
	width: 18px;
	height: 18px;
	background: rgba(255, 255, 255, 0.15);
	border: 1px solid rgba(255, 255, 255, 0.4);
	border-radius: 3px;
	cursor: pointer;
	flex-shrink: 0;
}

.input_footer .w1400 .click_box .agree_label .input_check:checked {
	background: var(--color-primary01, #E10045);
	border-color: var(--color-primary01, #E10045);
}

.input_footer .w1400 .click_box .agree_label .agree_text {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.85);
	font-weight: 500;
}

.input_footer .w1400 .click_box .agree_label:hover .agree_text {
	color: #ffffff;
}

/* 개인정보처리방침 전문보기 링크 */
.input_footer .w1400 .click_box .policy-link {
	color: rgba(255, 255, 255, 0.7);
	text-decoration: underline;
	font-size: 13px;
	font-weight: 500;
	transition: color 0.2s ease;
	background: none;
	width: auto;
	height: auto;
	line-height: normal;
	box-shadow: none;
	display: inline;
}

.input_footer .w1400 .click_box .policy-link:hover {
	color: #ffffff;
	background: none;
	transform: none;
	box-shadow: none;
}

/* 오른쪽: 상담신청 버튼 */
.input_footer .w1400 .click_box .submit-btn.go-save {
	width: 180px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--color-primary01, #E10045);
	color: #ffffff;
	font-size: 16px;
	font-weight: bold;
	text-align: center;
	border-radius: 4px;
	border: none;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(225, 0, 69, 0.3);
	flex-shrink: 0;
}

.input_footer .w1400 .click_box .submit-btn.go-save:hover {
	background: #ff1a5c;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(225, 0, 69, 0.4);
}

/* 랜딩페이지 개인정보처리방침 모달 */
.landing-policy-modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.7);
	z-index: 99999;
	overflow: auto;
	-webkit-overflow-scrolling: touch;
}

.landing-policy-modal-container {
	position: relative;
	max-width: 650px;
	margin: 50px auto;
	background: #fff;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.landing-policy-modal-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 25px;
	background: #f8f9fa;
	border-bottom: 1px solid #e9ecef;
}

.landing-policy-modal-title {
	margin: 0;
	font-size: 20px;
	font-weight: 700;
	color: #212529;
}

.landing-policy-modal-close {
	background: none;
	border: none;
	font-size: 32px;
	line-height: 1;
	cursor: pointer;
	color: #868e96;
	padding: 0;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	transition: background-color 0.2s, color 0.2s;
}

.landing-policy-modal-close:hover {
	background-color: #e9ecef;
	color: #212529;
}

.landing-policy-modal-body {
	padding: 0;
}

.landing-policy-modal-iframe {
	width: 100%;
	height: 550px;
	border: none;
	display: block;
}

/* 모달 반응형 */
@media all and (max-width: 700px) {
	.landing-policy-modal-container {
		margin: 20px;
		max-width: calc(100% - 40px);
	}
	
	.landing-policy-modal-header {
		padding: 15px 20px;
	}
	
	.landing-policy-modal-title {
		font-size: 18px;
	}
	
	.landing-policy-modal-iframe {
		height: 450px;
	}
}

@media all and (max-width: 480px) {
	.landing-policy-modal-container {
		margin: 10px;
		max-width: calc(100% - 20px);
		border-radius: 8px;
	}
	
	.landing-policy-modal-header {
		padding: 12px 15px;
	}
	
	.landing-policy-modal-title {
		font-size: 16px;
	}
	
	.landing-policy-modal-close {
		font-size: 28px;
		width: 36px;
		height: 36px;
	}
	
	.landing-policy-modal-iframe {
		height: 400px;
	}
}

/* 랜딩페이지 콘텐츠 중앙 정렬 */
.landing-page {
	margin: 0;
	padding: 0;
}

.landing-content {
	text-align: center;
	margin: 0 auto;
}

.landing-content img {
	max-width: 100%;
	height: auto;
	display: inline-block;
}

.landing-content p {
	margin: 0;
}

.landing-content a {
	display: inline-block;
}

/* 이미지 랜딩 중앙 정렬 */
.landing-content > a,
.landing-content > p {
	display: block;
	text-align: center;
	margin: 0 auto;
}

.landing-content > a > p,
.landing-content > a > p > img {
	margin: 0 auto;
	display: block;
}

/* 반응형 - 모바일 대응 */
@media all and (max-width: 1400px) {
	.input_footer .w1400 {
		padding: 0 20px;
	}
	
	.input_footer .w1400 .name_box {
		margin-right: 20px;
	}
	
	.input_footer .w1400 .name_box .name {
		width: 320px;
	}
	
	.input_footer .w1400 .name_box .name .input_text {
		width: 250px;
	}
	
	.input_footer .w1400 .cont_box .cont {
		width: 500px;
	}
	
	.input_footer .w1400 .cont_box .cont .input_text {
		width: 420px;
	}
}

@media all and (max-width: 1100px) {
	.input_footer {
		min-height: auto;
		padding: 30px 20px 40px;
	}
	
	.input_footer .w1400 {
		text-align: center;
	}
	
	.input_footer .w1400 form {
		display: block;
		width: 100%;
		max-width: 500px;
		margin: 0 auto;
		text-align: left;
	}
	
	.input_footer .w1400 form .form_inner {
		display: block !important;
		width: 100%;
	}
	
	.input_footer .w1400 .name_box {
		display: block !important;
		margin: 0 !important;
		margin-bottom: 22px !important;
		width: 100%;
	}
	
	.input_footer .w1400 .cont_box {
		display: block !important;
		margin: 0 !important;
		margin-top: 0 !important;
		width: 100%;
	}
	
	.input_footer .w1400 .name_box .name {
		width: 100%;
		margin-bottom: 15px;
		flex-direction: column;
		align-items: flex-start;
	}
	
	.input_footer .w1400 .cont_box .cont {
		width: 100%;
		margin-bottom: 0;
		flex-direction: column;
		align-items: flex-start;
	}
	
	.input_footer .w1400 .name_box .name .tit,
	.input_footer .w1400 .cont_box .cont .tit {
		width: 100%;
		line-height: 1.5;
		margin-bottom: 8px;
	}
	
	.input_footer .w1400 .name_box .name .input_text,
	.input_footer .w1400 .cont_box .cont .input_text {
		width: 100%;
	}
	
	/* click_box 반응형 - 세로 배치, 가운데 정렬 */
	.input_footer .w1400 .click_box {
		flex-direction: column;
		align-items: center;
		gap: 15px;
		margin-top: 15px;
		padding-top: 0;
		width: 100%;
	}
	
	/* 동의 영역 - 한 줄에 표시 */
	.input_footer .w1400 .click_box .agree_area {
		flex-direction: row;
		align-items: center;
		gap: 15px;
		flex-wrap: wrap;
		justify-content: center;
	}
	
	.input_footer .w1400 .click_box .submit-btn.go-save {
		width: 100%;
		max-width: 300px;
	}
}

.writeForm.schedule_edit th span.col01 {
	margin-left: 0;
}

@media all and (max-width:640px) {
	.finance_con .finance_box01 {
		overflow-x: scroll;
	}
}

@media all and (max-width:1000px) {
	.writeForm_btn a.member_out {
		position: relative;
		margin-left: 10px;
	}
}

@media all and (max-width:770px) {
	.writeForm_btn a.member_out {
		width: 100%;
		margin-left: 0;
		width: 99.5%;
		margin-top: 10px;
	}
}

/* 컬러 - headHtml.jsp에서 DB 설정값으로 덮어씌움 */
/* 기본값 제거됨 - CSS 변수는 headHtml.jsp에서 동적으로 설정 */

/* END 컬러 */

/* ========================================
   체크박스/라디오 공통 스타일
   사용자 모드 전체 적용
   ======================================== */

input[type="checkbox"],
input[type="radio"] {
	width: 18px;
	height: 18px;
	accent-color: var(--color-primary01);
	cursor: pointer;
	/* 테두리 더 진하게 */
	border: 2px solid #333;
	border-radius: 3px;
	appearance: none;
	-webkit-appearance: none;
	background-color: #fff;
	position: relative;
	vertical-align: middle;
	box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
}

input[type="radio"] {
	border-radius: 50%;
}

/* 체크 표시 */
input[type="checkbox"]:checked {
	background-color: var(--color-primary01);
	border-color: var(--color-primary01);
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
	background-size: 12px;
	background-position: center;
	background-repeat: no-repeat;
}

/* 라디오 체크 표시 */
input[type="radio"]:checked {
	background-color: #fff;
	border-color: var(--color-primary01);
	background-image: radial-gradient(circle, var(--color-primary01) 40%, transparent 40%);
}

/* 호버 효과 */
input[type="checkbox"]:hover,
input[type="radio"]:hover {
	border-color: var(--color-primary01);
}

/* 포커스 효과 - 부드러운 그레이 */
input[type="checkbox"]:focus,
input[type="radio"]:focus {
	outline: 1px solid #aaa;
	outline-offset: 2px;
}

/* END 체크박스/라디오 스타일 */

/* ========================================
   Alert/Confirm 모달 공통 스타일
   Function.java MODAL_FALLBACK_SCRIPT에서도 사용
   ======================================== */

/* 모달 오버레이 */
.alert-modal-overlay {
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.6);
	z-index: 999999;
	overflow: auto;
	-webkit-overflow-scrolling: touch;
}

/* 모달 컨테이너 */
.alert-modal-container {
	position: relative;
	max-width: 450px;
	margin: 15% auto;
	background: #fff;
	border-radius: 15px;
	padding: 40px 30px;
	text-align: center;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
	animation: alertModalFadeIn 0.2s ease-out;
}

@keyframes alertModalFadeIn {
	from {
		opacity: 0;
		transform: translateY(-20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* 메시지 스타일 */
.alert-modal-message {
	font-size: 16px;
	color: #333;
	line-height: 1.8;
	margin-bottom: 30px;
	font-weight: 500;
	word-break: keep-all;
	white-space: pre-line;
}

/* 버튼 영역 */
.alert-modal-buttons {
	display: flex;
	gap: 15px;
	justify-content: center;
}

/* 버튼 공통 스타일 */
.alert-modal-btn {
	flex: 1;
	min-width: 100px;
	max-width: 120px;
	min-height: 45px;
	padding: 12px 20px;
	border-radius: 5px;
	font-size: 15px;
	font-weight: 500;
	cursor: pointer;
	border: none;
	transition: opacity 0.2s;
}

.alert-modal-btn:hover {
	opacity: 0.85;
}

/* 포커스 스타일 - 부드러운 그레이 */
.alert-modal-btn:focus,
.alert-modal-btn:focus-visible,
.alert-modal-buttons button:focus,
.alert-modal-buttons button:focus-visible {
	outline: 1px solid #ccc !important;
	outline-offset: 3px !important;
	box-shadow: none !important;
	border-color: inherit !important;
}

/* 확인 버튼 */
.alert-modal-btn.confirm {
	background: var(--color-primary01);
	color: #fff;
}

/* 취소 버튼 */
.alert-modal-btn.cancel {
	background: #fff;
	color: var(--color-primary01);
	border: 1px solid var(--color-primary01);
}

/* 모달 반응형 - 모바일 */
@media screen and (max-width: 768px) {
	.alert-modal-container {
		margin: 20% 15px;
		max-width: calc(100% - 30px);
		padding: 30px 20px;
	}
	
	.alert-modal-message {
		font-size: 15px;
		margin-bottom: 25px;
	}
	
	.alert-modal-btn {
		min-height: 42px;
		padding: 10px 16px;
	}
}

/* 모달 하이브리드앱 최적화 */
@media screen and (max-width: 480px) {
	.alert-modal-container {
		margin: 30% 10px;
		max-width: calc(100% - 20px);
		padding: 25px 15px;
		border-radius: 12px;
	}
	
	.alert-modal-message {
		font-size: 14px;
		margin-bottom: 20px;
	}
	
	.alert-modal-buttons {
		gap: 10px;
	}
	
	.alert-modal-btn {
		min-height: 40px;
		padding: 10px 14px;
		font-size: 14px;
	}
}

/* END 모달 스타일 */

/* 이미지목록형(수정) */
.programCon_custom01 * {
	box-sizing: border-box;
}

.programCon_custom01 {
	max-width: unset;
	margin: 0 auto;
	padding: unset;
	overflow: visible;
}

.prd_tab_wrapper {
	position: relative;
	border-bottom: 1px solid #000;
	height: 60px;
}

.prd_tab_wrapper .inner {
	height: 100%;
}

.prd_tab_slide_box01_wrapper {
	padding: 0 50px;
	position: relative;
	height: 100%;
	width: 100%;
}

.prd_tab_slide_box01 {
	height: 100%;
	width: 100%;
	/* padding: 0 60px; */
	position: relative;
	display: flex;
	overflow: hidden;
}

.prd_tab_slide_box01 .item_box01 {
	display: flex;
	width: 100%;
}

.prd_tab_slide_box01 .item {
	width: auto;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	color: #888;
	font-weight: 400;
	cursor: pointer;
	border-bottom: 6px solid transparent;
	flex: 0 0 auto;
	padding: 0 25px;
}

.prd_tab_slide_box01 .item.active {
	font-weight: 600;
	color: var(--color-primary01);
	border-color: var(--color-primary01);
}

.prd_tab_slide_box01 .item h3 {
	margin: unset !important;
	color: #888 !important;
	font-size: 20px !important;
	font-weight: 400 !important;
	line-height: unset !important;
}

.prd_tab_slide_box01 .item.active h3 {
	color: var(--color-primary01) !important;
	font-weight: 600 !important;
}

.prd_tab_wrapper .prd_tab_arw {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 11;
	display: flex;
	align-items: center;
	justify-content: center;
	/* 동그라미 스타일 */
	width: 36px;
	height: 36px;
	background: #fff;
	border-radius: 50%;
	box-shadow: 0 2px 6px rgba(0,0,0,0.12);
	cursor: pointer;
	transition: box-shadow 0.2s;
}

.prd_tab_wrapper .prd_tab_arw:hover {
	box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.prd_tab_wrapper .prd_tab_arw.prev {
	left: 10px;
}

.prd_tab_wrapper .prd_tab_arw.next {
	right: 10px;
}

.prd_tab_wrapper .prd_tab_arw.next img {
	transform: rotate(180deg);
	display: block;
}

.prd_tab_wrapper .prd_tab_arw img {
	display: block;
	width: 10px;
	height: auto;
}

/* .prd_tab_sub_depth_wrap {
	position: relative;
	background-color: #F9F9F9;
	padding: 30px 0;
} */
.prd_tab_sub_depth_wrap .sub_depth_item {
	position: relative;
	background-color: #F9F9F9;
	padding: 15px 0;
	display: none;
}

.prd_tab_sub_depth_wrap .sub_depth_item .inner {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
	padding-left: 20px;
}

.prd_tab_sub_depth_wrap .tab_sub_depth {
	border-radius: 5px;
	background-color: #fff;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 17px;
	color: #888;
	font-weight: 400;
	padding: 8px 12px;
	min-width: 100px;
	border: 1px solid transparent;
}

.prd_tab_sub_depth_wrap .tab_sub_depth.active {
	border-color: var(--color-primary01);
	color: var(--color-primary01);
	font-weight: 600;
}

.com_prd_wrapper {
	padding: 18px 0;
	background-color: #fff;
}

.prd_program_search_wrap form {
	width: 100%;
}

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

.program_search_box01 {
	width: 100%;
	max-width: 400px;
	height: 55px;
	display: flex;
	align-items: center;
	position: relative;
	background-color: #F9F9F9;
	border-radius: 5px;
	gap: 10px;
	padding: 0 20px;
}

.program_search_box01 input {
	width: 100%;
	height: 100%;
	font-size: 17px;
	font-weight: 400;
	background-color: transparent;
	border: unset;
	padding: unset;
	outline: unset;
	margin: 0;
}

.program_search_box01 input::placeholder {
	color: #888;
}

.prd_program_search_wrap .prd_search_wrapper .right_box {
	display: flex;
	gap: 10px;
}

.prd_menu_type_box {
	position: relative;
	width: 55px;
	height: 55px;
	border-radius: 5px;
	aspect-ratio: 1/1;
	border: 1px solid #E5E5E5;
	background-color: #fff;
}

.prd_menu_type_box.gallery {
	display: flex;
	flex-wrap: wrap;
	padding: 15px;
	align-items: center;
	justify-content: center;
	gap: 2.5px;
}

.prd_menu_type_box.gallery span {
	display: block;
	width: calc(50% - 1.25px);
	aspect-ratio: 1/1;
	background-color: #E5E5E5;
}

.prd_menu_type_box.list {
	display: flex;
	flex-wrap: wrap;
	padding: 15px;
	align-items: center;
	justify-content: center;
	gap: 3px;
}

.prd_menu_type_box.list .box {
	width: calc(50% - 1.5px);
	display: flex;
	flex-wrap: wrap;
	gap: 3px;
}

.prd_menu_type_box.list span {
	display: block;
	width: 100%;
	height: 3.85px;
	background-color: #E5E5E5;
}

.prd_menu_type_box.list .box.two span {
	height: 100%;
	aspect-ratio: 1/1;
}

.prd_menu_type_box.card {
	display: flex;
	gap: 2.75px;
	padding: 15px;
}

.prd_menu_type_box.card .sub_box01 {
	width: calc(50% - 1.375px);
	display: flex;
	flex-direction: column;
	gap: 2.75px;
}

.prd_menu_type_box.card .sub_box01 span {
	width: 100%;
	height: 24%;
	display: block;
	background-color: #E5E5E5;
}

.prd_menu_type_box.card .sub_box01 span.long01 {
	height: 76%;
}

.prd_menu_type_box.active {
	border-color: var(--color-primary01);
}

.prd_menu_type_box.active span,
.prd_menu_type_box.active .sub_box01 span {
	background-color: var(--color-primary01);
}

.com_prd_box_list_wrapper {
	margin-top: 30px;
}

.com_prd_box_list_wrapper>ul {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
}

/* 데이터 없음 - 전체 영역 */
.com_prd_box_list_wrapper .nodata_full_wrapper {
	width: 100%;
}

.com_prd_box_list_wrapper .nodata_full_wrapper > div {
	width: 100%;
}

.com_prd_box_list_wrapper .nodata_full_wrapper ul {
	width: 100%;
	display: block;
}

.com_prd_box_list_wrapper .nodata_full_wrapper .nodata {
	width: 100% !important;
	border: 1px solid #d6d6d6;
}

/* PC: prd_card_wrapper - list_type에서 가로 배치 */
.com_prd_box_list_wrapper.list_type>ul>li .prd_card_wrapper {
	display: flex;
	flex-direction: row; /* 이미지 왼쪽, 텍스트 오른쪽 */
	align-items: flex-start;
	gap: 15px;
	width: 100%;
}

/* PC: 갤러리형에서는 세로 배치 */
.com_prd_box_list_wrapper:not(.list_type)>ul>li .prd_card_wrapper {
	display: block;
}

.com_prd_box_list_wrapper:not(.list_type)>ul>li {
	width: calc(33.3333% - 26.7px);
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.08);
	border-radius: 5px;
	overflow: hidden;
}

.com_prd_box_list_wrapper.list_type>ul>li {
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.08);
	border-radius: 5px;
	overflow: hidden;
}

.com_prd_box_list_wrapper>ul>li .img_type {
	width: 100%;
	overflow: hidden;
}

.com_prd_box_list_wrapper>ul>li .img_type>p {
	width: 100%;
	border: none;
}

/* 이미지 목록형(갤러리형)일 때 이미지 영역 여백 추가 */
.com_prd_box_list_wrapper:not(.list_type) > ul > li > .img_type {
	padding: 15px;
	box-sizing: border-box;
}

/* 이미지: width 고정, height 비율 유지 */
.com_prd_box_list_wrapper>ul>li .img_type img {
	width: 100%;
	height: auto;
	border: none;
	outline: none;
}

.com_prd_box_list_wrapper>ul>li .txt_type {
	padding: 30px;
}

/* 이미지 목록형일 때 이미지 영역과 분류 카테고리 사이 간격 줄임 */
.com_prd_box_list_wrapper:not(.list_type) > ul > li > .txt_type {
	padding-top: 15px;
}

.com_prd_box_list_wrapper>ul>li .txt_type h5 {
	font-size: 24px;
	color: #333;
	font-weight: 600;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	padding-bottom: 10px;
}

.com_prd_box_list_wrapper>ul>li .txt_type .txt_w {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	line-clamp: 3;
	margin-top: 10px;
	color: #888;
	font-size: 15px;
	font-weight: 400;
	line-height: 1.41em;
	gap: 10px;
}

.com_prd_box_list_wrapper>ul>li .txt_type .txt_w .list_view {
	font-weight: 600;
	color: #333;
	margin-bottom: 4px;
	min-width: 110px;
}

.com_prd_box_list_wrapper>ul>li .txt_type .txt_w .list_alt {
	width: calc(100% - 120px);
}

/* list_type */
.com_prd_box_list_wrapper.list_type>ul {
	gap: 40px 65px;
	padding-right: 10px; /* box-shadow 표시 공간 확보 */
}

.com_prd_box_list_wrapper.list_type>ul>li {
	display: flex;
	align-items: flex-start;
	gap: 15px;
	width: 100%;
}

.com_prd_box_list_wrapper.list_type>ul>li .img_type {
	width: 34%;
	max-width: 320px;
	padding: 15px;
	box-sizing: border-box;
	flex-shrink: 0;
}

.com_prd_box_list_wrapper.list_type>ul>li .txt_type {
	flex: 1;
	min-width: 0;
	padding: 15px 0;
	overflow: hidden;
}

.com_prd_box_list_wrapper.list_type>ul>li .txt_type h5 {
	margin-bottom: 15px;
	padding-bottom: unset;
}

.com_prd_box_list_wrapper.list_type>ul>li .txt_type .txt_w {
	margin-top: unset;
	display: flex;
	align-items: center;
	gap: 10px;
}

.com_prd_box_list_wrapper.list_type>ul>li .txt_type .txt_w .list_tit {
	margin-bottom: 0;
}

.com_prd_box_list_wrapper.list_type>ul>li .txt_type .txt_w .list_alt {
	width: auto;
	flex: 1;
}

.com_prd_box_list_wrapper.list_type>ul>li .txt_type .txt_w+.txt_w {
	margin-top: 8px;
}

/* END list_type */

.prd_page_nav_wrapper {
	margin-top: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 10px;
}

.prd_page_nav_num_box {
	display: flex;
	gap: 10px;
}

a.prd_page_nav_num {
	display: flex;
	align-items: center;
	justify-content: center;
	aspect-ratio: 1/1;
	border-radius: 5px;
	border: 1px solid #e9e9e9;
	background-color: #ffff;
	color: #888;
	font-size: 17px;
	font-weight: 400;
	transition: all 0.3s ease-in-out;
	width: 44px;
}

a.prd_page_nav_num.active {
	border-color: var(--color-primary01);
	background-color: var(--color-primary01);
	color: #fff;
}

.prd_page_nav_arw.next {
	transform: rotate(180deg);
}

@media all and (max-width:1400px) {
	.prd_tab_wrapper {
		height: 50px;
	}

	.prd_tab_slide_box01 .item {
		font-size: 16px;
		border-width: 4px;
		width: auto;
		padding: 0 20px;
	}

	.com_prd_box_list_wrapper.list_type>ul {
		gap: 40px;
	}

	.com_prd_box_list_wrapper.list_type>ul>li .txt_type .txt_w+.txt_w {
		margin-top: 6px;
	}

	.com_prd_box_list_wrapper.list_type>ul>li .txt_type h5 {
		margin-bottom: 12px;
	}

	.prd_tab_slide_box01_wrapper {
		padding: 0 40px;
	}
}

@media all and (max-width:1024px) {
	.prd_program_search_wrap .prd_search_wrapper {
		flex-direction: row;
		flex-wrap: nowrap;
		align-items: center;
		gap: 10px;
	}

	.program_search_box01 {
		order: unset;
		flex: 1;
		min-width: 0;
		max-width: 200px;
	}
	
	/* 이벤트 목록 검색 영역 - 좁은 화면 대응 */
	.prd_search_wrapper02 {
		flex-wrap: wrap;
		gap: 10px;
	}
	.prd_search_wrapper02 .l_box001 {
		flex: 1;
		min-width: 0;
		gap: 5px;
		flex-wrap: nowrap;
	}
	.prd_search_wrapper02 .l_box001 .login_form_flex_box01 {
		flex-shrink: 0;
	}
	.prd_search_wrapper02 .l_box001 .login_form_flex_box01 select {
		min-width: 70px;
		padding: 0 25px 0 8px;
		font-size: 13px;
	}
	.prd_search_wrapper02 .l_box001 .program_search_box01 {
		flex: 1;
		min-width: 100px;
		max-width: none;
	}
	.prd_search_wrapper02 .sub_sty_change {
		flex-shrink: 0 !important;
		display: flex !important;
	}
	.prd_search_wrapper02 .sub_sty_change a {
		width: 40px;
		height: 40px;
	}
	

	.com_prd_box_list_wrapper:not(.list_type)>ul>li {
		width: calc(50% - 20px);
	}

	.com_prd_box_list_wrapper:not(.list_type)>ul>li .txt_type {
		padding: 20px;
	}

	.com_prd_box_list_wrapper.list_type>ul>li {
		display: flex !important;
		align-items: flex-start !important;
		flex-wrap: nowrap !important;
		gap: 15px !important;
		width: 100% !important;
	}

	.com_prd_box_list_wrapper.list_type>ul>li .img_type {
		width: 30% !important;
		flex-shrink: 0 !important;
	}
	
	.com_prd_box_list_wrapper.list_type>ul>li .txt_type {
		width: calc(70% - 40px) !important;
		padding: 15px 0;
	}

	.com_prd_box_list_wrapper.list_type>ul>li .txt_type h5 {
		padding-bottom: 10px;
		margin-bottom: unset;
	}
}

@media all and (max-width:700px) {
	.prd_menu_type_box {
		width: 44px;
		height: 44px;
	}

	.com_prd_box_list_wrapper>ul,
	.com_prd_box_list_wrapper.list_type>ul {
		gap: 40px 20px;
	}

	.com_prd_box_list_wrapper>ul>li,
	.com_prd_box_list_wrapper.list_type>ul>li {
		width: calc(50% - 10px);
	}

	.prd_menu_type_box.gallery,
	.prd_menu_type_box.list {
		padding: 10px;
	}

	.com_prd_box_list_wrapper>ul>li .txt_type .txt_w .list_view {
		min-width: 90px;
	}

	.com_prd_box_list_wrapper>ul>li .txt_type .txt_w .list_alt {
		width: calc(100% - 100px);
	}

	.com_prd_box_list_wrapper>ul>li .txt_type h5 {
		font-size: 20px;
	}

	.com_prd_box_list_wrapper>ul>li .txt_type .txt_w {
		font-size: 15px;
	}

	.prd_tab_slide_box01 .item {
		width: auto;
		padding: 0 15px;
	}
	
	/* [2026-01-01] 탭 영역 수평 스크롤 허용 + 화살표 고정 */
	.prd_tab_slide_box01_wrapper {
		padding: 0 32px; /* 화살표 공간 확보 */
		position: relative;
		display: flex;
		align-items: center;
	}
	
	.prd_tab_slide_box01 {
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		flex: 1;
		scrollbar-width: none; /* Firefox */
		-ms-overflow-style: none; /* IE 10+ */
	}
	/* 마이페이지 탭은 가로 스크롤 대신 여러 줄로 표시 */
	.prd_tab_wrapper.mypage .prd_tab_slide_box01 {
		overflow: hidden;
		overflow-x: hidden;
		-webkit-overflow-scrolling: auto;
	}
	
	.prd_tab_slide_box01::-webkit-scrollbar {
		display: none; /* Chrome, Safari, Opera */
	}
	
	.prd_tab_slide_box01 .item_box01 {
		width: max-content;
		min-width: 100%;
	}
	
	.prd_tab_slide_box01 .item {
		min-width: 80px;
		padding: 0 12px;
	}
	
	/* 화살표 고정 위치 */
	.prd_tab_wrapper .prd_tab_arw {
		width: 28px;
		height: 28px;
	}
	
	.prd_tab_wrapper .prd_tab_arw.prev {
		left: 2px;
	}
	
	.prd_tab_wrapper .prd_tab_arw.next {
		right: 2px;
	}
	
	.prd_tab_wrapper .prd_tab_arw img {
		width: 8px;
	}
}

/* END 이미지목록형(수정) */

/* 리스트 상세페이지 */
.prd_detail_wrapper {
	padding: 40px 0;
}

a.prd_back_btn01 {
	display: inline-flex;
	align-items: center;
	gap: 2px;
	justify-content: center;
	color: #333;
	font-size: 20px;
	font-weight: 400;
}

.prd_flex_box01 {
	display: block;
}

.prd_flex_box01 .inner {
	display: flex;
	align-items: center;
}

.prd_detail_top_box {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 40px 80px;
}

.prd_detail_top_box .img {
	width: 47%;
	aspect-ratio: 1/0.68;
	display: flex;
	align-items: center;
	justify-content: center;
}

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

.prd_detail_top_box .prd_detail_alt {
	width: calc(53% - 80px);
}

.prd_detail_top_box .prd_detail_alt .prd_tit {
	color: #333;
	font-size: 40px;
	font-weight: 600;
	margin-bottom: 30px;
}

.prd_detail_alt_box {
	font-size: 17px;
	font-weight: 600;
	line-height: 1.41em;
	color: #333;
}

.prd_detail_alt_box .prd_detail_sub_alt {
	font-weight: 400;
	color: #888;
	margin-top: 4px;
}

.prd_detail_alt_box+.prd_detail_alt_box {
	margin-top: 20px;
}

.prd_detial_btn_box {
	margin-top: 30px;
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

.prd_detial_btn_box>.com_prd_btn01 {
	width: calc(50% - 10px);
}

.prd_detial_btn_box>.com_prd_btn01:only-child {
	margin-left: auto;
}

a.com_prd_btn01 {
	height: 70px;
	border-radius: 5px;
	border: 1px solid var(--color-primary01);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	font-weight: 600;
	color: var(--color-primary01);
	background-color: #fff;
	min-width: 230px;
}

a.com_prd_btn01.red {
	background-color: var(--color-primary01);
	color: #fff;
}

a.com_prd_btn01.txt {
	flex-direction: column;
}

.prd_detail_btm_box {
	margin-top: 50px;
}

.prd_detail_tit_box {
	color: #333;
	font-size: 40px;
	font-weight: 600;
	padding-bottom: 10px;
	margin-bottom: 30px;
	border-bottom: 2px solid #000;
}

@media all and (max-width:1400px) {

	.prd_detail_top_box .prd_detail_alt,
	.prd_detail_top_box .img {
		width: 100%;
	}

	.prd_detail_top_box .img {
		max-width: 660px;
	}
}

@media all and (max-width:700px) {
	a.com_prd_btn01 {
		min-width: 180px;
	}
}

/* END 리스트 상세페이지 */

/* 로그인 */
.login_bg01 {
	background-color: #fff;
}

.new_login_wrapper {
	max-width: 700px;
	width: 100%;
	border-radius: 10px;
	background-color: #fff;
	margin: 60px auto;
	padding: 60px 50px;
}

/* 입사지원 페이지 - 그레이 여백 제거 */
.programCon_custom01:not(.login_bg01) .new_login_wrapper {
	margin: 0 auto;
	border-radius: 0;
}

/* 넓은 폼용 - write/edit/회원가입/약관 */
.new_login_wrapper.wide,
.new_etc_wrapper {
	max-width: 1200px;
}

@media all and (max-width:1200px) {
	.new_login_wrapper.wide,
	.new_etc_wrapper {
		max-width: 93.75%;
	}
}

.login_tit_flex_box01 {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
}

.login_tit01 {
	font-size: 30px;
	font-weight: 700;
	color: #333;
}

a.nonMember_link01 {
	display: flex;
	gap: 4px;
	align-items: center;
	font-size: 17px;
	font-weight: 600;
	color: #000;
}

.login_form_wrapper {
	margin-top: 40px;
}

.login_form_box01 {
	display: block;
}

.login_form_box01+.login_form_box01 {
	margin-top: 20px;
}

.login_label_tit01 {
	font-size: 17px;
	color: #333;
	font-weight: 600;
	margin-bottom: 10px;
	display: block;
	position: relative;
}

.login_label_tit01.key {
	padding-left: 10px;
}

.login_label_tit01.key::after {
	content: '*';
	position: absolute;
	left: 0;
	top: 0;
	color: var(--color-primary01);
}

.login_input_form_box01 {
	height: 55px;
	width: 100%;
	border-radius: 5px;
	background-color: #f9f9f9;
	padding: 0 20px;
	position: relative;
}

.login_input_form_box01.readOnly {
	display: flex;
	align-items: center;
	font-size: 17px;
	font-weight: 400;
}

.login_input_form_box01.file_label01 input {
	display: none !important;
}

.login_input_form_box01.file_label01 {
	position: relative;
	padding-right: 45px;
	display: flex;
	align-items: center;
}

.login_input_form_box01.file_label01::after {
	content: '';
	position: absolute;
	top: 50%;
	right: 16px;
	transform: translateY(-50%);
	width: 24px;
	height: 22px;
	background: url('/img/file_icon01.png') no-repeat center / cover;
}

.placeholder_txt01 {
	color: #888;
}

.file_name01 {
	color: #333;

	/* 글자 넘어가는 현상 방지 */
	overflow: hidden;
	white-space: normal;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	line-clamp: 1;
}

.login_input_form_box01 input {
	width: 100%;
	height: 100%;
	background-color: transparent;
	border: unset;
	padding: unset;
	outline: unset;
	font-size: 17px;
	font-weight: 400;

	overflow: hidden;
	white-space: normal;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	line-clamp: 1;
}

.login_input_form_box01 input::placeholder {
	color: #888;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
	border: unset;
	-webkit-text-fill-color: #000;
	-webkit-box-shadow: 0 0 0px 1000px #f9f9f9 inset;
	transition: background-color 5000s ease-in-out 0s;
}

.login_input_form_box01.pw .pw_active_btn {
	position: absolute;
	z-index: 5;
	right: 18px;
	top: 50%;
	transform: translateY(-50%);
}

.login_input_form_box01.pw input,
.login_input_form_box01.pw input:focus,
.login_input_form_box01.pw input:active {
	outline: none;
	border: none;
	box-shadow: none;
	appearance: none;
}

.login_input_form_box01.pw .pw_active_btn {
	width: 25px;
	height: 17px;
	background: url('/img/pw_icon01.png') no-repeat center / cover;
}

.login_input_form_box01.pw.active .pw_active_btn {
	background: url('/img/pw_icon01_active.png') no-repeat center / cover;
}

.login_chk_wrapper01 {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 20px;
	font-size: 15px;
	font-weight: 400;
	color: #666;
}

.id_save_box {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 15px;
	font-weight: 400;
	color: #333;
}

.id_save_box input {
	appearance: none !important;
	outline: unset !important;
	border: unset !important;
	margin: unset !important;
	padding: unset !important;
	width: 30px !important;
	height: 30px !important;
	/* 동적 색상 적용 - CSS mask 사용 */
	background-color: #999;
	-webkit-mask: url('/img/id_chk01.svg') no-repeat center / cover;
	mask: url('/img/id_chk01.svg') no-repeat center / cover;
}

.id_save_box input:checked {
	/* 체크 시 메인컬러 적용 */
	background-color: var(--color-primary01);
	-webkit-mask: url('/img/id_chk01_active.svg') no-repeat center / cover;
	mask: url('/img/id_chk01_active.svg') no-repeat center / cover;
}

.login_find_box01 {
	display: flex;
	align-items: center;
}

.login_find_box01 a {
	position: relative;
	color: #888;
}

.login_find_box01 a+a {
	padding-left: 6px;
	margin-left: 6px;
}

.login_find_box01 a+a::after {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 2px;
	height: 2px;
	background-color: #888;
	border-radius: 50%;
}

.login_chk_btn_box01 {
	margin-top: 45px;
	text-align: center;
}

a.login_chk_btn01,
.login_chk_btn01 {
	width: 100%;
	border-radius: 5px;
	background-color: var(--color-primary01);
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	font-size: 20px;
	color: #fff;
	font-weight: 600;
	border: 1px solid transparent;
}

a.login_chk_btn01.type02,
.login_chk_btn01.type02 {
	background-color: #fff;
	color: var(--color-primary01);
	border-color: var(--color-primary01);
}

a.login_chk_btn01.type02.black,
.login_chk_btn01.type02.black {
	color: #333;
	border-color: #dcdcdc;
}

.login_social_wrapper {
	text-align: center;
	margin-bottom: 40px;
	border-bottom: 1px solid #E9E9E9;
	display: flex;
}

.login_social_wrapper .login_social_btn {
	flex: 1;
	padding: 40px 0;
	display: flex;
	flex-direction: column;
	gap: 20px;
	align-items: center;
	justify-content: center;
	font-size: 15px;
	font-weight: 400;
	color: #888;
}

.login_btm_wrapper {
	display: flex;
	justify-content: center;
	gap: 20px;
}

.login_ment01 {
	font-size: 17px;
	color: #333;
	font-weight: 400;
}

a.sign_up_ment {
	font-size: 17px;
	font-weight: 600;
	color: #000;
	text-decoration: underline;
	text-underline-position: under;
}

.login_etc_box01 {
	height: 190px;
	padding: 20px 10px;
	border-radius: 5px;
	width: 100%;
	background-color: #f9f9f9;
	margin-bottom: 20px;
}

.login_etc_box01.type02 {
	margin-bottom: unset;
	height: 575px;
}

.login_etc_box01 .txt_box {
	overflow-y: auto;
	height: 100%;
}

.login_etc_box01 .txt_box::-webkit-scrollbar {
	width: 3px;
}

.login_etc_box01 .txt_box::-webkit-scrollbar-track {
	background: unset;
}

.login_etc_box01 .txt_box::-webkit-scrollbar-thumb {
	background-color: #d9d9d9;
	border-radius: 30px;
	background-clip: padding-box;
	border: 3px solid #d9d9d9;
}

.login_etc_wrapper+.login_etc_wrapper {
	margin-top: 40px;
}

.duplicate_flex_box {
	display: flex;
	gap: 10px;
}

.duplicate_flex_box .login_chk_btn01 {
	min-width: 138px;
	width: 138px;
	height: 55px;
	font-weight: 400;
	font-size: 17px;
}

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

.login_tel_flex_box01 .login_input_form_box01 {
	flex: 1;
}

.login_tel_flex_box01 select {
	flex: 0.6;
	height: 55px;
	width: 100%;
	border-radius: 5px;
	padding: 0 20px;
	padding-right: 40px;
	position: relative;
	border: unset;
	outline: unset;
	cursor: pointer;
	appearance: none;
	background: #f9f9f9 url(/img/email_arw001.png) no-repeat center right 20px / 13px 14px;
}

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

.login_form_flex_box01 .email_txt {
	font-size: 17px;
	font-weight: 400;
	color: #333;
}

.login_form_flex_box01 .login_input_form_box01,
.login_form_flex_box01 select {
	flex: 1;
}

.login_form_flex_box01 select {
	height: 55px;
	width: 100%;
	border-radius: 5px;
	padding: 0 20px;
	padding-right: 40px;
	position: relative;
	border: unset;
	outline: unset;
	cursor: pointer;
	appearance: none;
	background: #f9f9f9 url('/img/email_arw001.png') no-repeat center right 20px / 13px 14px;
}

.login_form_flex_box01 .selectReadOnly {
	height: 55px;
	width: 100%;
	border-radius: 5px;
	padding: 0 20px;
	padding-right: 40px;
	position: relative;
	border: unset;
	outline: unset;
	cursor: pointer;
	appearance: none;
	background: #f9f9f9 url('/img/email_arw001.png') no-repeat center right 20px / 13px 14px;
	display: flex;
	align-items: center;
}

.login_submit_btn_box01 {
	display: flex;
	gap: 15px;
	margin-top: 40px;
}

.login_etc_ment01 {
	font-size: 15px;
	color: #333;
	font-weight: 400;
	padding-left: 20px;
}

/* END 로그인 */

/* 채용공고 */
.program_select01 {
	border: 1px solid #eee;
	border-radius: 5px;
	padding: 0 20px;
	padding-right: 40px;
	font-size: 17px;
	font-weight: 400;
	color: #333;
	background: url('/img/select_arw001.png') no-repeat center right 20px / 13px 14px;
	appearance: none;
	outline: unset;
	cursor: pointer;
	height: 55px;
}

.prd_search_wrapper02 {
	display: flex;
	flex-wrap: nowrap;
	gap: 10px;
	margin-bottom: 30px;
	align-items: center;
}

.prd_search_wrapper02 .right_box {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	width: calc(100% - 695px);
}

.prd_search_wrapper02 .right_box select {
	flex: 1;
	width: 100%;
}

.recruitment_table01 {
	border-bottom: 1px solid #eee;
}

.recruitment_table01 .box {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 20px;
	min-height: 125px;
	border-top: 1px solid #eee;
	padding: 10px 0;
	width: 100%;
}

.recruitment_table01 .box .left_alt_box {
	max-width: calc(100% - 230px);
}

.recruitment_table01 .box .left_alt_box.plusNum {
	display: flex;
	align-items: center;
	gap: 20px;
}

.recruitment_table01 .box.review .left_alt_box {
	max-width: calc(100% - 330px);
}

.recruitment_table01 .box .list_num {
	font-size: 20px;
	font-weight: 400;
	color: #333;
	white-space: nowrap;
}

.recruitment_table01 .box .date_box {
	max-width: 145px;
	min-width: 145px;
	text-align: center;
	color: var(--color-primary01);
	font-size: 20px;
	font-weight: 400;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.recruitment_table01 .box .date_box.black {
	color: #333;
}

.text_ov {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.recruitment_table01 .box .tit {
	font-size: 24px;
	font-weight: 600;
	color: #333;
	padding-right: 10px;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 5px;
}

/* 채용공고 상태 배지 */
.recruitment_table01 .box .tit .status_badge,
.recruitment_table01 .box .recruit_tit .status_badge {
	font-size: 14px;
	font-weight: 600;
	padding: 4px 10px;
	border-radius: 4px;
	white-space: nowrap;
	margin-right: 8px;
}

.recruitment_table01 .box .tit .status_badge.status_ing,
.recruitment_table01 .box .recruit_tit .status_badge.status_ing {
	background-color: #2196F3;
	color: #fff;
}

.recruitment_table01 .box .tit .status_badge.status_end,
.recruitment_table01 .box .recruit_tit .status_badge.status_end {
	background-color: #E53935;
	color: #fff;
}

/* 채용공고 한줄형 레이아웃 */
.recruitment_table01 .box.inline_type {
	display: flex;
	align-items: center;
	gap: 20px;
	min-height: 125px;
	padding: 10px 0;
}

.recruitment_table01 .box.inline_type .recruit_num {
	min-width: 50px;
	font-size: 18px;
	font-weight: 400;
	color: #333;
	text-align: center;
}

.recruitment_table01 .box.inline_type .recruit_tit {
	flex: 1;
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 18px;
	font-weight: 600;
	color: #333;
	overflow: hidden;
}

.recruitment_table01 .box.inline_type .recruit_tit .title_value {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.recruitment_table01 .box.inline_type .recruit_period {
	min-width: 200px;
	font-size: 15px;
	color: #666;
	text-align: center;
}

.recruitment_table01 .box.inline_type .recruit_date {
	min-width: 110px;
	font-size: 15px;
	color: #999;
	text-align: right;
}

/* 종료된 공고 스타일 */
.recruitment_table01 .box.end.inline_type .recruit_tit .title_value {
	color: #999;
}

.recruitment_table01 .box.end.inline_type .recruit_period {
	color: #bbb;
}

/* 모바일 대응 */
@media all and (max-width: 700px) {
	.recruitment_table01 .box.inline_type {
		flex-wrap: wrap;
		gap: 10px;
		padding: 15px 10px;
	}
	
	.recruitment_table01 .box.inline_type .recruit_num {
		min-width: 30px;
		font-size: 14px;
	}
	
	.recruitment_table01 .box.inline_type .recruit_tit {
		width: calc(100% - 50px);
		font-size: 16px;
	}
	
	.recruitment_table01 .box.inline_type .recruit_period {
		width: 100%;
		min-width: auto;
		text-align: left;
		padding-left: 40px;
		font-size: 13px;
	}
	
	.recruitment_table01 .box.inline_type .recruit_date {
		display: none;
	}
}

/* 빈 up_btnw 요소 숨기기 */
.recruitment_table01 .box .tit .up_btnw {
	font-size: 0;
	display: inline-flex;
	align-items: center;
	gap: 2px;
}

.recruitment_table01 .box .tit .up_btnw > * {
	font-size: 11px;
}

/* .tit 내부 span.text_ov 및 category_path 상하 정렬 */
.recruitment_table01 .box .tit > .text_ov {
	display: inline-flex;
	align-items: center;
	gap: 2px;
}

.recruitment_table01 .box .tit .category_path {
	display: inline-flex;
	align-items: center;
	font-size: 14px !important;
	margin-right: 3px !important;
	margin-left: 0 !important;
}

.recruitment_table01 .box .noti_icon.basic {
	border: 1px solid #DCDCDC;
	background-color: #fff;
	color: #333;
}

/*.recruitment_table01 .box .new_icon,
.recruitment_table01 .box .noti_icon {
	color: #fff;
	font-size: 17px;
	font-weight: 600;
	border-radius: 5px;
	background: var(--color-primary01);
	padding: 5px 7px;	
	width: auto;
	height: 30px;
	margin-right: 5px;
	white-space: nowrap;
	display: inline-flex;
	align-items: center;
	text-align: center;
}*/
.recruitment_table01 .box .new_icon,
.recruitment_table01 .box .noti_icon {
	color: #fff;
	font-size: 17px;
	font-weight: 600;
	border-radius: 5px;
	border: 1px solid var(--color-primary01);
	background-color: transparent;
	color: var(--color-primary01);
	padding: 5px 7px;
	width: auto;
	height: 30px;
	margin-right: 5px;
	white-space: nowrap;
	display: inline-flex;
	align-items: center;
	text-align: center;
}

.recruitment_table01 .box .new_icon {
	color: #FFAC1D;
	background-color: transparent;
	border: 1px solid #FFAC1D;
}

.recruitment_table01 .box .new_icon.black {
	color: #333;
	background-color: transparent;
	border: 1px solid #DCDCDC;
}

.recruitment_table01 .box .new_icon.gray {
	color: #888;
	background-color: transparent;
	border: 1px solid #DCDCDC;
}

.recruitment_table01 .box .new_icon.sky {
	color: #6787F0;
	background-color: transparent;
	border: 1px solid #6787F0;
}

.recruitment_table01 .box .new_icon.red {
	color: var(--color-primary01);
	background-color: transparent;
	border: 1px solid var(--color-primary01);
}

.recruitment_table01 .box .left_alt_box .alt {
	font-size: 17px;
	color: #888;
	font-weight: 400;
	margin-top: 10px;
}

.recruitment_table01 .box.end .date_box,
.recruitment_table01 .box.end .left_alt_box .tit,
.recruitment_table01 .box.end .left_alt_box .alt {
	color: #888;
}

.btn_flex_box02 {
	display: flex;
	justify-content: flex-end;
	gap: 20px;
	margin-top: 30px;
}

.btn_flex_box02 a,
.mok_rok_btn.btn_flex_box02 a {
	margin-left: unset;
	margin-top: unset;
	max-width: 300px;
}

@media all and (max-width:1400px) {
	.prd_search_wrapper02 .right_box {
		width: 100%;
	}

	.prd_search_wrapper02 .program_search_box01 {
		flex: 1;
		min-width: 0;
		order: unset;
		margin-left: 0;
		margin-right: 0;
	}

	.new_login_wrapper {
		max-width: 93.75%;
		margin: 0 auto;
		padding: 40px 20px;
	}
}

@media all and (max-width:700px) {
	.recruitment_table01 .box {
		min-height: 90px;
	}

	.recruitment_table01 .box .tit {
		font-size: 18px;
		display: flex;
		align-items: center;
		flex-wrap: wrap;
		gap: 5px;
	}

	.recruitment_table01 .box .new_icon,
	.recruitment_table01 .box .noti_icon {
		font-size: 14px;
		margin-right: 0px;
	}

	.recruitment_table01 .box .list_num {
		font-size: 14px;
	}

	.recruitment_table01 .box .left_alt_box .alt {
		font-size: 14px;
	}

	.recruitment_table01 .box .date_box {
		font-size: 14px;
		min-width: 90px;
		max-width: 90px;
	}

	.recruitment_table01 .box .left_alt_box {
		max-width: calc(100% - 150px);
	}

	.program_select01 {
		font-size: 14px;
	}
	
	/* [2026-01-01] 검색 영역 - 한 줄 유지 */
	.program_search_box01 {
		max-width: none;
		flex: 1;
		min-width: 0;
	}
	
	.prd_search_wrapper02 .program_search_box01 {
		max-width: none;
	}
	
	.l_box001 .login_form_flex_box01 select {
		min-width: 70px;
		padding: 0 5px;
		font-size: 14px;
	}
	
	.sub_sty_change a {
		width: 44px;
		height: 44px;
	}
}

/* END 채용공고 */

/* 채용공고detail */
.recruitment_detail_top_box {
	border-bottom: 1px solid #eee;
	padding: 25px 0;
}

.recruitment_detail_top_box .recruitment_label {
	font-size: 20px;
	color: var(--color-primary01);
	font-weight: 400;
}

.recruitment_detail_top_box .recruitment_tit {
	font-size: 40px;
	color: #333;
	font-weight: 600;
	margin-top: 10px;
}

.recruitment_detail_top_box .recruitment_alt {
	color: #888;
	font-size: 17px;
	font-weight: 400;
	margin-top: 20px;
}

.recruitment_detail_top_box .recruitment_alt.flex {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 10px;
}

.recruitment_detail_top_box .recruitment_alt.flex .alt {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0 5px;
}

/* END 채용공고 */

/* 인증서 */
.certificate_con_box01 {
	display: flex;
	flex-wrap: wrap;
	gap: 60px 40px;
}

.certificate_con_box01 .certificate_box01 {
	display: block;
	text-align: center;
	width: calc(25% - 30px);
}

.certificate_con_box01 .certificate_box01 .img_box {
	border-radius: 5px;
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.08);
	padding: 20px;
	aspect-ratio: 1/1.34;
}

.certificate_con_box01 .certificate_box01 .img_box img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.certificate_con_box01 .certificate_box01 .tit_box {
	margin-top: 20px;
	font-size: 24px;
	color: #333;
	font-weight: 600;
}

@media all and (max-width:1400px) {
	.certificate_con_box01 .certificate_box01 {
		width: calc(33.3333% - 27px);
	}
}

@media all and (max-width:1024px) {
	.certificate_con_box01 .certificate_box01 {
		width: calc(50% - 20px);
	}
}

/* @media all and (max-width:700px) {
	.certificate_con_box01 .certificate_box01 {
		width: 100%;
	}
} */
/* END 인증서 */

/* 메일상담 */
.form_textarea01 {
	width: 100%;
	resize: none;
	height: 200px;
	padding: 20px;
	border-radius: 5px;
	background-color: #f9f9f9;
	border: unset;
	outline: unset;
	font-size: 15px;
	font-weight: 400;
	line-height: 1.66em;
}

.form_textarea01::placeholder {
	color: #888;
}

/* END 메일상담 */

/* 온라인예약 */
.schedule_wrap.custom01 {
	border: unset;
	padding: unset;
	padding-bottom: 40px;
	margin: 40px 0 30px;
	border-bottom: 1px solid #DCDCDC;
}

.schedule_wrap.custom01 .schedule_time {
	float: unset;
	width: 100%;
	display: flex;
	gap: 15px;
	margin-top: 30px;
}

.schedule_wrap.custom01 .schedule_time select {
	flex: 1;
}

.schedule_wrap.custom01 .schedule {
	float: unset;
	width: 100%;
	margin-right: unset;
}

.schedule_wrap.custom01 .schedule .calender_wrap {
	border: unset;
	border-radius: unset;
}

.schedule_wrap.custom01 .schedule table.calendar_top_table thead .now {
	width: calc(100% - 106px);
}

.schedule_wrap.custom01 .schedule table.calendar_top_table thead th img {
	width: auto;
}

.schedule_wrap.custom01 .schedule table.calendar_top_table thead .now {
	font-size: 30px;
	color: #000;
	font-weight: 700;
}

.schedule_wrap.custom01 .schedule table.calendar_table thead th {
	vertical-align: middle;
	padding: 0;
	height: 40px;
	color: #333;
	font-size: 20px;
	font-weight: 500;
	border-bottom: unset;
}

.schedule_wrap.custom01 .schedule table.calendar_table thead th.sun {
	color: #FF5E61;
}

.schedule_wrap.custom01 .schedule table.calendar_table thead th.sat {
	color: #71A0FF;
}

.schedule_wrap.custom01 .schedule table.calendar_table tbody td {
	vertical-align: middle;
	padding: 0;
	height: 60px;
	font-size: 20px;
	font-weight: 500;
	border-bottom: unset;
	cursor: pointer;
}

.schedule_wrap.custom01 .schedule table.calendar_table tbody td.sat {
	color: #71A0FF;
}

.schedule_wrap.custom01 .schedule table.calendar_table tbody td.sun {
	color: #FF5E61;
}

.schedule_wrap.custom01 .schedule table.calendar_top_table thead th {
	padding: unset;
	padding-bottom: 30px;
}

.schedule_wrap.custom01 .schedule table.calendar_table tbody td.on p {
	display: inline-flex;
	width: 50px;
	height: 50px;
	align-items: center;
	justify-content: center;
	margin: 0;
	border: 2px solid #FFF;
	background: #FFEDF2;
	box-shadow: 0px 0px 10px 0px rgba(225, 0, 69, 0.30);
	color: var(--color-primary01);
	font-size: 20px;
	font-weight: 500;
	border-radius: 12.59px;
}

.schedule_wrap.custom01 .schedule table.calendar_table tbody td#r_click span,
.schedule_wrap.custom01 .schedule table.calendar_table tbody td#r_click p {
	background-color: var(--color-primary01);
	color: #fff;
	display: inline-flex;
	width: 50px;
	height: 50px;
	align-items: center;
	justify-content: center;
	margin: 0;
	font-size: 20px;
	font-weight: 500;
	border-radius: 12.59px;
}

.schedule_wrap.custom01 .schedule table.calendar_table tbody td.onBg {
	position: relative;
}

.schedule_wrap.custom01 .schedule table.calendar_table tbody td.onBg::after {
	content: '';
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	width: 7px;
	height: 7px;
	border-radius: 50%;
	top: 3px;
	background-color: #3DD07F;
}

.radio_type01_wrapper {
	display: flex;
	flex-wrap: wrap;
	gap: 15px 50px;
}

.radio_type01 {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 15px;
	color: #333;
	font-weight: 400;
}

.radio_type01 input {
	appearance: none !important;
	outline: unset !important;
	border: unset !important;
	margin: unset !important;
	padding: unset !important;
	width: 30px;
	height: 30px;
	/* 동적 색상 적용 - CSS mask 사용 */
	background-color: #999;
	-webkit-mask: url('/img/radio_type01_chk.svg') no-repeat center / cover;
	mask: url('/img/radio_type01_chk.svg') no-repeat center / cover;
}

.radio_type01 input:checked {
	/* 선택 시 메인컬러 적용 */
	background-color: var(--color-primary01);
	-webkit-mask: url('/img/radio_type01_chk_active.svg') no-repeat center / cover;
	mask: url('/img/radio_type01_chk_active.svg') no-repeat center / cover;
}

.radio_type01.disabled input {
	/* 비활성 시 밝은 회색 */
	background-color: #ccc;
	-webkit-mask: url('/img/radio_type01_chk_read.svg') no-repeat center / cover;
	mask: url('/img/radio_type01_chk_read.svg') no-repeat center / cover;
}

.schedule_time div.time_select_block_box {
	width: 100%;
	float: unset;
	text-align: center;
	border: unset;
	border-radius: unset;
	box-sizing: border-box;
	margin: unset;
}

.schedule_time div.time_select_block_box ul {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	width: 100%;
}

.schedule_time div.time_select_block_box ul li {
	padding: 10px;
	font-size: 20px;
	color: #333;
	border: 1px solid #DCDCDC;
	width: calc(33.333% - 14px);
	font-size: 17px;
	font-weight: 400;
	color: #333;
	border-radius: 5px;
	min-height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.schedule_time div.time_select_block_box ul li.choiceTime {
	background-color: var(--color-primary01);
	border-color: var(--color-primary01);
	color: #fff;
}

.schedule_time div.time_select_block_box ul li.timeNo {
	color: #B7B7B7;
	text-decoration: none;
	border-color: transparent;
	background-color: #F9F9F9;
}

/* END 온라인예약 */


/* 공지 보도 동영상 */
.ejun_daum_box {
	display: flex;
	justify-content: space-between;
	border-top: 1px solid #eee;
	border-bottom: 1px solid #eee;
	width: 100%;
	align-items: center;
}

.ejun_daum_box .pag_bt {
	width: 50%;
}

.ejun_daum_box .pag_bt a {
	display: flex;
	align-items: center;
	padding: 30px 0;
	gap: 40px;
	color: #888;
	font-size: 20px;
	width: 100%;
}

.ejun_daum_box .daum_bt a {
	justify-content: flex-end;
}

.ejun_daum_box .pag_yo {
	display: flex;
	align-items: center;
	gap: 10px;
	color: #333;
	font-size: 20px;
	font-weight: 600;
}

.ejun_daum_box .daum_bt .pag_txt {
	text-align: right;
}

.ejun_daum_box .pag_txt {
	width: calc(100% - 130px);
}

.mok_rok_btn .btn {
	margin-top: 30px;
	width: 300px;
	height: 60px;
	border-radius: 5px;
	border: 1px solid #DCDCDC;
	background: #FFF;
	color: #333;
	text-align: center;
	font-size: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-left: auto;
	font-weight: 600;
}

@media all and (max-width:768px) {
	.ejun_daum_box .pag_bt a {
		font-size: 16px;
	}

	.ejun_daum_box .pag_yo {
		font-size: 16px;
		gap: 5px;
	}

	.ejun_daum_box .pag_bt a {
		gap: 10px;
		/* padding: 10px 0; */
	}

	.ejun_daum_box .pag_txt {
		width: calc(100% - 82px);
	}

	.mok_rok_btn .btn {
		width: 200px;
	}
}

/* 공지 보도 동영상 END */

/* 공지 보도 동영상 목록이미지 */
.recruitment_table01 .noticeListFlexBox {
	justify-content: flex-start;
	gap: 40px;
	padding: 30px 0;
}

/* 읽기 페이지 목록에서 패딩 조절 */
.read_page_list .recruitment_table01 .noticeListFlexBox {
	padding: 15px 15px;
}

.recruitment_table01.custom002 .noticeListFlexBox {
	gap: 40px 0;
}

.recruitment_table01.custom002 .noticeListFlexBox .left_alt_box.plusNum {
	width: 5%;
	justify-content: center;
}

.recruitment_table01 .noticeListFlexBox .notice_img_box {
	aspect-ratio: 1/1;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 23%;
	margin-right: 28px;
	overflow: hidden;
}

.recruitment_table01 .noticeListFlexBox .notice_img_box img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.recruitment_table01 .noticeListFlexBox .noice_board_alt_box {
	width: calc(100% - (28% + 28px));
}

.recruitment_table01 .noticeListFlexBox .date_box {
	text-align: right;
	margin-top: 20px;
}

/* 이미지 목록형 - 이벤트: 카테고리+제목 / 기간 / 상태+작성일+조회수 */
.recruitment_table01.change_box01:not(.list_mode) .noticeListFlexBox .noice_board_alt_box {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
}
.recruitment_table01.change_box01:not(.list_mode) .noticeListFlexBox .noice_board_alt_box .tit {
	width: 100%;
	flex-basis: 100%;
	display: flex;
	align-items: center;
}
/* 공지 제목 영역 자동 줄바꿈 */
.recruitment_table01.change_box01:not(.list_mode) .noticeListFlexBox .noice_board_alt_box .tit.text_ov {
	white-space: normal;
	word-break: keep-all;
	overflow: visible;
	text-overflow: unset;
	flex-wrap: wrap;
	align-items: flex-start;
	line-height: 1.4;
}
.recruitment_table01.change_box01:not(.list_mode) .noticeListFlexBox .noice_board_alt_box .tit.text_ov .title_value,
.recruitment_table01.change_box01:not(.list_mode) .noticeListFlexBox .noice_board_alt_box .tit.text_ov > * {
	white-space: normal;
	word-break: keep-all;
	overflow: visible;
	text-overflow: unset;
}
/* 2번째 줄: 기간만 */
.recruitment_table01.change_box01:not(.list_mode) .noticeListFlexBox .noice_board_alt_box .date_box.order1_5 {
	margin-top: 10px;
	display: inline-flex;
	align-items: center;
	width: 100%;
	flex-basis: 100%;
}
/* 3번째 줄: 상태+작성일+조회수 - 왼쪽 정렬 */
.recruitment_table01.change_box01:not(.list_mode) .noticeListFlexBox .noice_board_alt_box .date_box.order1_6 {
	margin-top: 10px;
	display: inline-flex;
	align-items: center;
	margin-right: 15px;
}
.recruitment_table01.change_box01:not(.list_mode) .noticeListFlexBox .noice_board_alt_box .date_box.order2,
.recruitment_table01.change_box01:not(.list_mode) .noticeListFlexBox .noice_board_alt_box .date_box.order4 {
	display: inline-flex;
	align-items: center;
	margin-top: 10px;
	margin-left: 0;
	margin-right: 15px;
}

.new_ans_icon {
	position: relative;
}

.new_ans_icon::after {
	content: '';
	position: absolute;
	left: -10px;
	top: 2px;
	height: 14px;
	border-left: 1px solid var(--color-primary01);
}

.new_ans_icon::before {
	content: '';
	position: absolute;
	left: -10px;
	top: 16px;
	width: 10px;
	border-bottom: 1px solid var(--color-primary01);
}

.new_ans_icon {
	margin-right: 5px;
	margin-left: 15px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 5px;
	border: 1px solid var(--color-primary01);
	font-size: 17px;
	font-weight: 400;
	color: var(--color-primary01);
	aspect-ratio: 1/1;
	text-align: center;
}

@media all and (max-width:1024px) {
	.recruitment_table01 .noticeListFlexBox {
		align-items: flex-start;
	}

	.recruitment_table01 .noticeListFlexBox .notice_img_box {
		width: 144px;
		min-width: 144px;
		max-width: 144px;
		height: 120px;
		margin-right: 10px;
	}

	.recruitment_table01.custom002 .noticeListFlexBox .left_alt_box.plusNum {
		display: none;
	}

	.recruitment_table01.custom002 .noticeListFlexBox .notice_img_box {
		margin-right: unset;
	}

	.recruitment_table01 .noticeListFlexBox .noice_board_alt_box {
		width: calc(100% - 130px);
	}

	/* 이미지목록형 모바일 - 제목 말줄임 해제 */
	.recruitment_table01 .noticeListFlexBox .tit.text_ov {
		white-space: normal;
		overflow: visible;
		text-overflow: clip;
	}

	.recruitment_table01 .noticeListFlexBox .tit .title_value,
	.recruitment_table01 .noticeListFlexBox .tit .category_path {
		white-space: normal;
		word-break: keep-all;
	}

	/* 이미지목록형 모바일 - 첫 줄(아이콘+카테고리) 상하 정렬 및 공백 제거 */
	.recruitment_table01 .noticeListFlexBox .tit.text_ov {
		font-size: 0; /* HTML 공백 문자 제거 */
	}

	.recruitment_table01 .noticeListFlexBox .tit .up_btnw {
		display: inline-flex;
		align-items: center;
		flex-wrap: wrap;
		font-size: 0; /* 내부 공백도 제거 */
	}

	.recruitment_table01 .noticeListFlexBox .tit .noti_icon,
	.recruitment_table01 .noticeListFlexBox .tit .new_icon {
		margin-right: 5px;
		display: inline-flex;
		align-items: center;
		height: 22px;
		font-size: 11px; /* 폰트 크기 복원 */
	}

	.recruitment_table01 .noticeListFlexBox .tit .category_path {
		display: inline-flex;
		align-items: center;
		line-height: 22px;
		font-size: 14px; /* 폰트 크기 복원 */
		margin-right: 5px;
	}

	.recruitment_table01 .noticeListFlexBox .tit .title_value {
		font-size: 18px !important; /* 폰트 크기 복원 (모바일용) */
	}

	.recruitment_table01 .noticeListFlexBox .date_box {
		margin-top: 10px;
	}

	/* 모바일 이미지 카드형 - 날짜/작성자/조회수 왼쪽 정렬 + 상하 가운데 */
	.recruitment_table01.change_box01:not(.list_mode) .noticeListFlexBox .noice_board_alt_box {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		justify-content: flex-start;
	}
	.recruitment_table01.change_box01:not(.list_mode) .noticeListFlexBox .noice_board_alt_box .tit.text_ov {
		width: 100%;
		flex-basis: 100%;
		justify-content: flex-start;
		flex-wrap: wrap;
		align-items: center;
	}
	/* 모바일 - 아이콘+카테고리 한 줄, 제목 별도 줄 */
	.recruitment_table01.change_box01:not(.list_mode) .noticeListFlexBox .noice_board_alt_box .tit.text_ov .up_btnw,
	.recruitment_table01.change_box01:not(.list_mode) .noticeListFlexBox .noice_board_alt_box .tit.text_ov .category_path {
		display: inline-flex;
		align-items: center;
	}
	.recruitment_table01.change_box01:not(.list_mode) .noticeListFlexBox .noice_board_alt_box .tit.text_ov .title_value {
		display: block;
		width: 100%;
		flex-basis: 100%;
		margin-top: 5px;
	}
	/* 날짜/작성자/조회수를 한 줄에 왼쪽 정렬 + 상하 가운데 */
	.recruitment_table01.change_box01:not(.list_mode) .noticeListFlexBox .noice_board_alt_box .date_box.order1_6,
	.recruitment_table01.change_box01:not(.list_mode) .noticeListFlexBox .noice_board_alt_box .date_box.order2,
	.recruitment_table01.change_box01:not(.list_mode) .noticeListFlexBox .noice_board_alt_box .date_box.order3,
	.recruitment_table01.change_box01:not(.list_mode) .noticeListFlexBox .noice_board_alt_box .date_box.order4 {
		text-align: left;
		min-width: unset;
		max-width: unset;
		padding: 0;
		margin-left: 0;
		margin-right: 8px;
		display: inline-flex;
		align-items: center;
	}
	.recruitment_table01.change_box01:not(.list_mode) .noticeListFlexBox .noice_board_alt_box .date_box.order1_6 {
		margin-left: 0;
		margin-right: 8px;
	}

	/* 모바일 텍스트 목록형(list_mode) - 아이콘+카테고리+제목 한 줄 */
	.recruitment_table01.change_box01.list_mode .noice_board_alt_box .tit.text_ov {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
	}
	.recruitment_table01.change_box01.list_mode .noice_board_alt_box .tit.text_ov .up_btnw,
	.recruitment_table01.change_box01.list_mode .noice_board_alt_box .tit.text_ov .category_path,
	.recruitment_table01.change_box01.list_mode .noice_board_alt_box .tit.text_ov .title_value {
		display: inline-flex;
		align-items: center;
	}
}

/* END 공지 보도 동영상 목록이미지 */

/* 치료후기 답변형 */
.recruitment_table01 .box.review .noice_board_alt_box {
	width: 100%;
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	gap: 10px;
}

.recruitment_table01 .box.review .noice_board_alt_box .tit {
	flex: 1;
	min-width: 0;
}

.recruitment_table01 .box.review .date_box {
	justify-content: center;
	position: relative;
	z-index: 2;
	min-width: auto;
	max-width: none;
	flex-shrink: 0;
}

.recruitment_table01 .box.review .date_box .review_writer_box {
	text-align: center;
}

.new_write_btn_box {
	max-width: 300px;
	margin-left: auto;
	margin-top: 40px;
}

.option_box01 {
	display: flex;
	align-items: center;
	gap: 10px;
	white-space: nowrap;
}

.option_btn01,
a.option_btn01 {
	min-width: 70px;
	min-height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 4px;
	font-size: 14px;
	font-weight: 400;
	color: #333;
	border-radius: 5px;
	border: 1px solid #dcdcdc;
	position: relative;
}

.option_btn01_label {
	width: 70px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 4px;
	font-size: 14px;
	font-weight: 400;
	color: #333;
	border-radius: 5px;
	border: 1px solid #dcdcdc;
	position: relative;
	cursor: pointer;
}

.option_btn01_label input {
	width: unset;
	padding: unset;
	min-width: auto;
	height: unset;
	border: unset;
	border-radius: 0;
	background-color: transparent;
	box-shadow: none;
	color: #333;
	cursor: pointer;
}

.answer_wrapper {
	padding-top: 20px;
	border-top: 2px solid #000;
}

.answer_wrapper .login_tit01 {
	margin-bottom: 20px;
}

.answer_wrapper .answer_box01 {
	display: flex;
	justify-content: space-between;
	border-top: 1px solid #eee;
	padding: 20px 0;
	gap: 0 15px;
	font-size: 17px;
	font-weight: 400;
	color: #888;
}

.answer_wrapper .answer_box01 .tit_box .tit {
	padding-right: 10px;
	color: #333;
	font-weight: 600;
}

.answer_wrapper .answer_box01 .alt {
	margin-top: 10px;
}

.answer_wrapper .read_rego.custom {
	padding: 20px;
	background-color: #f9f9f9;
	border-top: 1px solid #eee;
}

.answer_wrapper .read_rego.custom dl dt div {
	display: inline-block;
	width: unset;
	max-width: 400px;
	margin-right: 10px;
	vertical-align: middle;
}

.answer_wrapper .read_rego.custom dl dt div:last-of-type {
	margin-right: 0;
}

.answer_wrapper .read_rego.custom input[type="text"],
.answer_wrapper .read_rego.custom input[type="password"] {
	width: 100%;
	height: 55px;
	border: unset;
	font-size: 17px;
	padding: 0 20px;
	vertical-align: middle;
	box-sizing: border-box;
	font-weight: 400;
	color: #333;
	outline: unset;
}

.answer_wrapper .read_rego.custom input[type="text"]::placeholder,
.answer_wrapper .read_rego.custom textarea::placeholder {
	color: #888;
}

.answer_wrapper .read_rego.custom textarea {
	width: calc(100% - 165px);
	outline: unset;
	float: unset;
	height: 55px;
	padding: 10px 20px;
	border: unset;
	resize: none;
	box-sizing: border-box;
	font-size: 17px;
	font-weight: 400;
	color: #333;
}

input.custom_txt_box004 {
	height: 55px;
	border: unset;
	font-size: 17px;
	padding: 0 20px;
	vertical-align: middle;
	box-sizing: border-box;
	font-weight: 400;
	color: #333;
	outline: unset;
	border: 1px solid #ddd;
}

textarea.custom_txt_box004 {
	width: 100%;
	outline: unset;
	float: unset;
	height: 55px;
	padding: 10px 20px;
	border: unset;
	resize: none;
	box-sizing: border-box;
	font-size: 17px;
	font-weight: 400;
	color: #333;
	border: 1px solid #ddd;
}

textarea.custom_txt_box004::placeholder {
	color: #888;
}

.answer_wrapper .read_rego.custom input[type="submit"] {
	float: unset;
	margin-left: auto;
	width: 155px;
	height: 55px;
	background: var(--color-primary01);
	border: 0;
	vertical-align: middle;
	font-size: 17px;
	color: #fff;
	cursor: pointer;
	border-radius: 5px;
	margin: unset;
}

.answer_wrapper .read_rego.custom .flex {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.add_input_box_wrapper01 .add_input_box01 {
	width: 100%;
	display: flex;
	gap: 10px;
}

.add_input_box_wrapper01 .login_chk_btn01 {
	max-width: 60px;
	height: 55px;
}

.add_input_box_wrapper01 input {
	border: unset;
	color: #333;
	height: 55px;
	width: 100%;
	border-radius: 5px;
	background-color: #f9f9f9;
	padding: 0 20px;
	position: relative;
	outline: unset;
}

.add_input_box_wrapper01 p {
	margin-top: 10px;
}

@media all and (max-width:700px) {

	.recruitment_table01 .box.review .left_alt_box {
		max-width: calc(100% - 220px);
	}
}

/* 치료후기 새 구조 - 번호가 2줄에 걸쳐 표시 */
.recruitment_table01 .box.review .list_num_wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 60px;
	margin-right: 15px;
}

.recruitment_table01 .box.review .list_num_wrap .list_num {
	font-size: 20px;
	font-weight: 400;
	color: #333;
}

.recruitment_table01 .box.review .review_content_wrap {
	flex: 1;
	display: flex;
	align-items: center;
	gap: 20px;
	min-width: 0;
}

.recruitment_table01 .box.review .review_content_wrap .tit {
	flex: 1;
	min-width: 0;
	font-size: 24px;
	font-weight: 600;
	color: #333;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.recruitment_table01 .box.review .review_meta_wrap {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-shrink: 0;
}

.recruitment_table01 .box.review .review_meta_wrap .date_box {
	min-width: auto;
	max-width: none;
}

/* 치료후기 모바일 2줄 레이아웃 */
@media all and (max-width:700px) {
	.recruitment_table01 .box.review {
		align-items: center;
	}
	
	.recruitment_table01 .box.review .list_num_wrap {
		min-width: 40px;
		margin-right: 10px;
		align-self: stretch;
	}
	
	.recruitment_table01 .box.review .list_num_wrap .list_num {
		font-size: 16px;
	}
	
	.recruitment_table01 .box.review .review_content_wrap {
		flex-direction: column;
		align-items: flex-start;
		gap: 8px;
	}
	
	.recruitment_table01 .box.review .review_content_wrap .tit {
		width: 100%;
		font-size: 18px;
		white-space: normal;
		overflow: visible;
		text-overflow: unset;
	}
	
	.recruitment_table01 .box.review .review_meta_wrap {
		width: 100%;
		justify-content: flex-start;
	}
	
	.recruitment_table01 .box.review .review_meta_wrap .date_box {
		font-size: 14px;
	}
}

/* END 전화상담 */

/* 갤러리 통합형 */
.com_prd_box_gallery_total_wrapper {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	margin-top: 30px;
}

.com_prd_box_gallery_total_wrapper li {
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.08);
	border-radius: 5px;
	overflow: hidden;
	width: calc(33.3333% - 27px);
}

.com_prd_box_gallery_total_wrapper li .img_box {
	aspect-ratio: 1/1;
	width: 100%;
	background-color: #f5f5f5;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.com_prd_box_gallery_total_wrapper li .img_box img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.com_prd_box_gallery_total_wrapper li .alt_box {
	padding: 20px;
}

.com_prd_box_gallery_total_wrapper li .alt_box .tit {
	font-size: 24px;
	font-weight: 600;
	color: #333;
}

.com_prd_box_gallery_total_wrapper li .alt_box .tit .up_type {
	display: flex;
	align-items: center;
	gap: 5px;
	margin-bottom: 5px;
}

.com_prd_box_gallery_total_wrapper li .alt_box .tit .category_path {
	font-size: 14px;
	font-weight: 400;
	color: #888;
}

.com_prd_box_gallery_total_wrapper li .alt_box .tit .title_value {
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	line-height: 1.3;
}

.com_prd_box_gallery_total_wrapper li .alt_box .time_box {
	margin-top: 5px;
	font-size: 17px;
	font-weight: 400;
	line-height: 1.41em;
	color: #888;
}

/* card_type 스타일은 하단에서 정의됨 (라인 12535 이후) */

@media all and (max-width:1024px) {
	.com_prd_box_gallery_total_wrapper li {
		width: calc(50% - 20px);
	}

	.com_prd_box_gallery_total_wrapper li .alt_box {
		padding: 20px;
	}

	.com_prd_box_gallery_total_wrapper li .alt_box .tit {
		font-size: 18px;
	}
}

@media all and (max-width:768px) {
	.com_prd_box_gallery_total_wrapper li {
		width: 100%;
	}

	.com_prd_box_gallery_total_wrapper li .alt_box .tit {
		font-size: 16px;
	}

	.com_prd_box_gallery_total_wrapper li .alt_box .time_box {
		margin-top: 15px;
		font-size: 14px;
	}
}

/* END 갤러리 통합형 */

/* faq */
.faq_wrapper01 {
	margin-top: 30px;
}

.faq_wrapper01 .faq_table {
	width: 100%;
	border-top: unset;
	border-bottom: 1px solid #eee;
}

.faq_wrapper01 .faq_table>tbody>tr {
	border-top: 1px solid #eee;
}

.faq_wrapper01 .faq_table tr.on_e,
.faq_wrapper01 .faq_table>tbody>tr:hover {
	background: transparent;
}

.faq_wrapper01 .faq_table tr.on_e th,
.faq_wrapper01 .faq_table>tbody>tr:hover th {
	background: transparent;
	color: #333;
}

.faq_wrapper01 .faq_table>tbody>tr:hover th {
	background-color: #f9f9f9;
}

.faq_wrapper01 .faq_table>tbody>tr>th {
	text-align: left;
	height: unset;
	min-height: 125px;
	padding: 20px 0;
	padding-right: 30px;
	font-size: 16px;
	color: #333;
	cursor: pointer;
	position: relative;
}

.faq_wrapper01 .faq_table>tbody>tr>th::after {
	content: '';
	position: absolute;
	width: 22px;
	height: 22px;
	background: url('/img/faq_arw01.png') no-repeat center / cover;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	transition: all 0.3s ease-in-out;
}

.faq_wrapper01 .faq_table>tbody>tr.on_e>th::after {
	transform: translateY(-50%) rotate(-180deg);
}

.faq_wrapper01 .faq_table>tbody>tr>th .tit {
	font-size: 24px;
	color: #333;
	font-weight: 600;
}

.faq_wrapper01 .faq_table>tbody>tr>th .label01 {
	margin-bottom: 20px;
	color: var(--color-primary01);
	font-size: 17px;
	font-weight: 400;
}

.faq_wrapper01 .faq_table>tbody>tr>td {
	padding: 30px;
	font-size: 20px;
	background: #F9F9F9;
	font-size: 17px;
	color: #888;
	font-weight: 400;
	line-height: 1.88em;
}

/* FAQ 부드러운 슬라이드 애니메이션 */
.faq_wrapper01 .faq_table>tbody>tr>td {
	display: block !important;
	max-height: 0 !important;
	padding: 0 !important;
	overflow: hidden !important;
	opacity: 0 !important;
	transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
				padding 0.4s cubic-bezier(0.4, 0, 0.2, 1),
				opacity 0.3s ease !important;
}

.faq_wrapper01 .faq_table>tbody>tr.active>td {
	max-height: 2000px !important;
	padding: 30px !important;
	opacity: 1 !important;
	transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1),
				padding 0.4s cubic-bezier(0.4, 0, 0.2, 1),
				opacity 0.4s ease 0.1s !important;
}

/* 화살표 부드러운 회전 */
.faq_wrapper01 .faq_table>tbody>tr>th::after {
	transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* END faq */

/* 지점안내 */
.selc_map.custom01 .br_map .img_wrap {
	width: 377px;
	height: 485px;
}

.selc_map.custom01 .br_map .img_wrap ul li {
	min-width: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 28px;
	border-radius: 5px;
	background-color: #fff;
	border: 1px solid #DCDCDC;
	font-size: 17px;
	font-weight: 400;
	color: #888;
	padding: 0 10px;
	z-index: 3;
	cursor: pointer;
}

.selc_map.custom01 .br_map .img_wrap ul li.on,
.selc_map.custom01 .br_map .img_wrap ul li.select {
	border-color: var(--color-primary01);
	color: var(--color-primary01);
	font-weight: 600;
}

.selc_map.custom01 .br_map .img_wrap ul li:first-child {
	top: 75px;
	left: 105px;
	right: unset;
	bottom: unset;
}

.selc_map.custom01 .br_map .img_wrap ul li:nth-of-type(2) {
	top: 126px;
	left: 112px;
	right: unset;
	bottom: unset;
}

.selc_map.custom01 .br_map .img_wrap ul li:nth-of-type(3) {
	top: 162px;
	left: 171px;
	right: unset;
	bottom: unset;
}

.selc_map.custom01 .br_map .img_wrap ul li:nth-of-type(4) {
	top: 214px;
	left: 54px;
	right: unset;
	bottom: unset;
}

.selc_map.custom01 .br_map .img_wrap ul li:nth-of-type(5) {
	top: 84px;
	left: 216px;
	right: unset;
	bottom: unset;
}

.selc_map.custom01 .br_map .img_wrap ul li:nth-of-type(6) {
	top: 221px;
	left: 249px;
	right: unset;
	bottom: unset;
}

.selc_map.custom01 .br_map .img_wrap ul li:nth-of-type(7) {
	top: 277px;
	left: 249px;
	right: unset;
	bottom: unset;
}

.selc_map.custom01 .br_map .img_wrap ul li:nth-of-type(8) {
	top: 338px;
	left: 176px;
	right: unset;
	bottom: unset;
}

.selc_map.custom01 .br_map .img_wrap ul li:nth-of-type(9) {
	top: 289px;
	left: 97px;
	right: unset;
	bottom: unset;
}

.selc_map.custom01 .br_map .img_wrap ul li:nth-of-type(10) {
	top: 347px;
	left: 34px;
	right: unset;
	bottom: unset;
}

.selc_map.custom01 .br_map .img_wrap ul li:nth-of-type(11) {
	top: 392px;
	left: 60px;
	right: unset;
	bottom: unset;
}

.selc_map.custom01 .br_map .img_wrap ul li:nth-of-type(12) {
	top: 446px;
	left: 299px;
	right: unset;
	bottom: unset;
}

.selc_map.custom01 .br_map .img_wrap ul li:nth-of-type(13) {
	top: 376px;
	left: 245px;
	right: unset;
	bottom: unset;
}

.selc_map.custom01 .br_map .img_wrap ul li:nth-of-type(14) {
	top: 180px;
	left: 105px;
	right: unset;
	bottom: unset;
}

.selc_map.custom01 .br_map .img_wrap ul li:nth-of-type(15) {
	top: 225px;
	left: 150px;
	right: unset;
	bottom: unset;
}

.selc_map.custom01 .br_map .img_wrap ul li:nth-of-type(16) {
	top: 83px;
	left: 29px;
	right: unset;
	bottom: unset;
}

.selc_map.custom01 .br_map .img_wrap ul li:nth-of-type(17) {
	top: 329px;
	left: 307px;
	right: unset;
	bottom: unset;
}

.selc_map.custom01 {
	margin-bottom: 60px;
	border: unset;
	border-top: 2px solid #000;
	overflow: hidden;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}

.selc_map.custom01>div {
	float: unset;
}

.selc_map.custom01 .br_map {
	padding: 30px 0;
	text-align: center;
}

.selc_map.custom01 .selc_type {
	padding-top: unset;
}

.common_table01 {
	width: 100%;
	border-top: 2px solid #000;
}

.common_table01 tr.list {
	height: 65px;
	cursor: pointer;
}

.common_table01 tr.list:hover {
	background-color: #F9F9F9;
}

.common_table01 tr.list .table_arw01 img {
	transition: all 0.3s ease-in-out;
}

.common_table01 tr.list.active .table_arw01 img {
	transform: rotate(-180deg);
}

.common_table01 th,
.common_table01 td {
	vertical-align: middle;
}

.common_table01.branch_table>thead>tr>th {
	height: 65px;
	padding: 0 10px;
	font-size: 20px;
	font-weight: 600;
	color: #333;
	background: #f9f8f8;
	border-bottom: 2px solid #333;
}

.common_table01.branch_table>tbody>tr>th {
	height: 65px;
	font-size: 20px;
	color: #333;
	font-weight: 400;
	word-break: break-all;
}

/* 지점 목록 행 최소 높이 설정 (이미지 150px + 패딩 24px) */
.common_table01.branch_table>tbody>tr.list {
	min-height: 174px;
}

.common_table01.branch_table>tbody>tr.list>th {
	height: auto;
	min-height: 174px;
	vertical-align: middle;
}

/* 주소 열 왼쪽 정렬 */
.common_table01.branch_table>tbody>tr.list>th:nth-child(4) {
	text-align: left;
}

/* 지점 목록 이미지 1:1 비율 크롭 */
.common_table01.branch_table>tbody>tr.list>th:first-child img {
	width: 150px !important;
	min-width: 150px !important;
	height: 150px !important;
	object-fit: cover !important;
	object-position: center !important;
}

.common_table01.branch_table>tbody>tr.list>th:first-child img.noimg {
	object-fit: contain !important;
}

/* 이미지 열 최소 너비 */
.common_table01.branch_table>tbody>tr.list>th:first-child {
	min-width: 170px !important;
	width: 170px !important;
	padding-left: 0 !important;
}

/* 목록 마지막 열 (화살표) 패딩 제거 */
.common_table01.branch_table>tbody>tr.list>th:last-child {
	padding-right: 0 !important;
}

/* 화살표 이미지는 원래 크기 유지 */
.common_table01.branch_table>tbody>tr.list>th.table_arw01 img {
	width: 22px !important;
	min-width: 22px !important;
	height: 22px !important;
	min-height: 22px !important;
	object-fit: contain !important;
}

.common_table01>tbody>tr.list_alt01>td {
	padding: 30px 60px;
	font-size: 14px;
	line-height: unset;
	background-color: #F9F9F9;
}

.branch_table>tbody>tr {
	border-top: 1px solid #EEE;
}

.info_box02 .info_sub_box02 {
	display: flex;
	flex-wrap: wrap;
	line-height: 1.6em;
	font-size: 20px;
}

.info_box02 .info_sub_box02 .tit {
	font-weight: 600;
	color: #333;
	min-width: 110px;
}

.info_box02 .info_sub_box02 .alt {
	color: #888;
	font-weight: 400;
	width: calc(100% - 110px);
}

.common_table01.branch_table>tbody>tr>td .map_type {
	width: 100%;
	height: 360px;
	margin-top: 30px;
	line-height: 360px;
	background: #f0f0f0;
	text-align: center;
}

@media all and (max-width:1024px) {

	.common_table01.branch_table>thead>tr>th,
	.common_table01.branch_table>tbody>tr>th {
		font-size: 16px;
		height: 55px;
	}

	.common_table01 tr.list {
		height: 55px;
	}

	.info_box02 .info_sub_box02 {
		font-size: 16px;
	}

	.common_table01.branch_table>tbody>tr>td .map_type {
		height: 260px;
	}

	.info_box02 .info_sub_box02 .tit {
		min-width: 80px;
	}

	.info_box02 .info_sub_box02 .alt {
		width: calc(100% - 80px);
	}

	.common_table01>tbody>tr.list_alt01>td {
		padding: 30px;
	}

	.selc_map.custom01>div {
		width: 100%;
	}
}

/* END 지점안내 */

/* 연혁 */
.history_wrapper01 {
	overflow: hidden;
	min-height: 100vh;
}

.history_wrapper01 .history_box01 {
	position: relative;
	display: flex;
	flex-wrap: wrap;
}

.history_wrapper01 .history_box01::after {
	content: '';
	position: absolute;
	left: 270px;
	top: 0;
	height: calc(100% + 100vh);
	width: 1px;
	background-color: #eee;
}

.history_wrapper01 .history_box01+.history_box01 {
	margin-top: 80px;
}

.history_wrapper01 .history_year_box01 {
	width: 270px;
	position: relative;
	overflow: hidden;
}


.history_wrapper01 .history_year_box01 .tit {
	font-size: 40px;
	font-weight: 600;
	color: #333;
	padding-right: 20px;
	position: relative;
	width: fit-content;
}

.history_wrapper01 .history_year_box01 .tit::before {
	content: '';
	position: absolute;
	left: 100%;
	top: 50%;
	transform: translateY(-50%);
	width: 100vw;
	height: 1px;
	background-color: #eee;
}

.history_wrapper01 .history_year_box01 .tit::after {
	content: '';
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background-color: var(--color-primary01);
}

.history_wrapper01 .history_year_box01 .img {
	aspect-ratio: 1/0.625;
	width: 240px;
	margin-top: 10px;
}

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

.history_wrapper01 .history_month_box01 {
	width: calc(100% - 270px);
	position: relative;
	padding-left: 100px;
	overflow: hidden;
}

.history_wrapper01 .history_alt_box01 {
	padding-left: 35px;
}

.history_wrapper01 .history_alt_box01+.history_alt_box01 {
	margin-top: 20px;
}

.history_wrapper01 .history_alt_box01:first-child {
	margin-top: 12px;
}

.history_wrapper01 .history_alt_box01 .tit_box {
	display: flex;
	position: relative;
	align-items: flex-start;
}

.history_wrapper01 .history_alt_box01 .tit_box::after {
	content: '';
	position: absolute;
	right: calc(100% + 35px);
	top: 18px;
	transform: translateY(-50%);
	height: 1px;
	width: 100vw;
	background-color: #eee;
}

.history_wrapper01 .history_alt_box01 .tit_box .tit {
	font-size: 24px;
	color: #333;
	font-weight: 500;
	min-width: 150px;
	position: relative;
}

.history_wrapper01 .history_alt_box01 .tit_box .alt {
	font-size: 18px;
	font-weight: 400;
	color: #888;
	margin-top: 5px;
}

.history_wrapper01 .history_alt_box01 .alt_box_wrap .alt_box+.alt_box {
	margin-top: 15px;
}

.history_wrapper01 .history_alt_box01 .img {
	margin-top: 10px;
}

.history_wrapper01 .history_alt_box01 .img img {
	max-width: 100%;
}

.history_wrapper01 .history_alt_box01 .tit_box .tit::after {
	content: '';
	position: absolute;
	left: -35px;
	top: 50%;
	transform: translateY(-50%);
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background-color: var(--color-primary01);
}

.history_wrapper01 .history_alt_box01 .tit_box .tit::before {
	content: '';
	position: absolute;
	left: -38px;
	top: 50%;
	transform: translateY(-50%);
	width: 11px;
	height: 11px;
	border-radius: 50%;
	background-color: var(--color-primary01);
	opacity: 0.1;
}

@media all and (max-width:1024px) {
	.history_wrapper01 .history_box01 {
		gap: 40px;
	}

	.history_wrapper01 .history_year_box01,
	.history_wrapper01 .history_month_box01 {
		width: 100%;
	}

	.history_wrapper01 .history_month_box01 {
		padding-left: unset;
	}

	.history_wrapper01 .history_box01::after,
	.history_wrapper01 .history_year_box01 .tit::before,
	.history_wrapper01 .history_year_box01 .tit::after {
		display: none;
	}

	.history_wrapper01 .history_year_box01 .tit {
		font-size: 30px;
		padding-right: unset;
	}

	.history_wrapper01 .history_alt_box01 {
		padding-left: 25px;
	}

	.history_wrapper01 .history_alt_box01 .tit_box .tit::before {
		left: -25px;
	}

	.history_wrapper01 .history_alt_box01 .tit_box .tit::after {
		left: -22px;
	}

	.history_wrapper01 .history_alt_box01 .tit_box .tit {
		font-size: 20px;
		min-width: 120px;
	}

	.history_wrapper01 .history_alt_box01 .tit_box .alt {
		font-size: 15px;
	}
}

/* END 연혁 */

/* 치료사례 */
.prd_search_wrapper02.just_between {
	justify-content: space-between;
	align-items: center;
	padding-top: 20px;
}

.sub_sty_change {
	display: flex;
	gap: 10px;
}

.sub_sty_change a {
	display: flex;
	width: 54px;
	height: 54px;
	border-radius: 5px;
	border: 1px solid #EEE;
	background: #FFF;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.sub_sty_change a.on {
	border-color: var(--color-primary01);
}

/* 목록유형 아이콘 - CSS mask 사용 (CSS 변수로 색상 변경 가능) */
.sub_sty_change a .icon-mask {
	display: inline-block;
	width: 25px;
	height: 25px;
	background-color: #999;
}

/* 목록형 아이콘 (3줄) */
.sub_sty_change a .icon-mask.list-type {
	-webkit-mask: url('/img/before_change_icon03.svg') no-repeat center / contain;
	mask: url('/img/before_change_icon03.svg') no-repeat center / contain;
}

/* 갤러리형 아이콘 (4칸) */
.sub_sty_change a .icon-mask.gallery-type,
.sub_sty_change a .icon-mask.gallery-type2 {
	-webkit-mask: url('/img/before_change_icon02.svg') no-repeat center / contain;
	mask: url('/img/before_change_icon02.svg') no-repeat center / contain;
}

/* 활성화 상태: 메인컬러 적용 */
.sub_sty_change a.on .icon-mask {
	background-color: var(--color-primary01);
}

/* 하위 호환성: 기존 img 태그 사용 시 */
.sub_sty_change a img {
	filter: brightness(0) saturate(100%) invert(70%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(90%) contrast(90%);
}

.sub_sty_change a.on img {
	filter: brightness(0) saturate(100%);
}

/* 블로그 게시판 - 모바일에서 목록유형 아이콘 숨기고 갤러리형(카드형)만 표시 */
@media all and (max-width: 768px) {
	.programCon_custom01 .sub_sty_change {
		display: none;
	}
	/* 모바일에서 갤러리형(카드형) 강제 적용 - list_mode가 없어도 갤러리형으로 표시 */
	.programCon_custom01 .blogBoxWrapper:not(.list_mode) {
		display: flex !important;
		flex-wrap: wrap !important;
		gap: 20px !important;
		border-bottom: unset !important;
	}
	.programCon_custom01 .blogBoxWrapper:not(.list_mode) .blogBox {
		display: block !important;
		flex-direction: column !important;
		width: calc(50% - 10px) !important;
		border-radius: 5px;
		border: 1px solid #EEE;
		overflow: hidden;
		border-bottom: unset !important;
	}
	.programCon_custom01 .blogBoxWrapper:not(.list_mode) .blogBox .img {
		width: 100% !important;
		aspect-ratio: 4/3;
	}
	.programCon_custom01 .blogBoxWrapper:not(.list_mode) .blogBox .alt_box {
		width: 100% !important;
		flex: unset !important;
		padding: 15px !important;
		padding-bottom: 0 !important;
	}
	.programCon_custom01 .blogBoxWrapper:not(.list_mode) .blogBox .blog_like_share_box {
		margin-bottom: 5px !important;
	}
	.programCon_custom01 .blogBoxWrapper.list_mode .blogBox .alt_box {
		padding-bottom: 10px !important;
	}
	.programCon_custom01 .blogBoxWrapper.list_mode .blogBox .blog_like_share_box {
		margin-bottom: 0 !important;
	}
}
@media all and (max-width: 480px) {
	.programCon_custom01 .blogBoxWrapper:not(.list_mode) .blogBox,
	.programCon_custom01 .blogBoxWrapper.list_mode .blogBox {
		width: 100% !important;
	}
}

.bef_aft_box .programBody {
	display: flex;
	gap: 30px 60px;
	flex-wrap: wrap;
}

.bef_aft_box .box_yo {
	width: calc(50% - 30px);
}

.bef_aft_box .box_yo .img_box {
	aspect-ratio: 1/1.361;
}

.bef_aft_box .box_yo .img_box img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.bef_aft_box .box_yo .img_top_yo {
	display: flex;
	border-radius: 5px;
	overflow: hidden;
}

.bef_aft_box .box_yo .after,
.bef_aft_box .box_yo .before {
	width: 50%;
	position: relative;
	box-sizing: border-box;
}

.bef_aft_box .box_yo .before:before {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 1;
	content: '로그인 후 \a 확인해보세요!!';
	white-space: pre;
	background-color: rgba(0, 0, 0, 0.3);
	color: #FFF;
	text-align: center;
	font-size: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
}

.bef_aft_box .txt_box {
	position: absolute;
	bottom: 0;
	width: 100%;
	z-index: 3;
	color: #FFF;
	text-align: center;
	font-size: 17px;
	padding: 12px 0;
	font-weight: 600;
}

.bef_aft_box .before .txt_box {
	background: #000;
}

.bef_aft_box .after .txt_box {
	background: var(--color-primary01);
}

.bef_aft_box .beafphotocc {
	text-align: center;
	padding: 30px 0;
}

.bef_aft_box .beafphotocc .tit {
	color: #333;
	font-size: 24px;
	font-weight: 600;
}

.bef_aft_box .beafphotocc .date {
	color: #888;
	font-size: 17px;
	font-weight: 400;
	line-height: 1.411em;
	margin-top: 10px;
}

.list_mode .programBody {
	flex-direction: column;
	border-top: 1px solid #eee;
	gap: 0;
}

.list_mode .box_yo {
	width: 100%;
	border-bottom: 1px solid #eee;
}

.list_mode .box_yo>a {
	padding: 15px 0;
	display: flex;
	width: 100%;
	align-items: center;
}

.list_mode .box_yo .img_top_yo {
	min-width: 300px;
	width: 300px;
}

.list_mode .txt_box {
	padding: 5px 0;
}

.list_mode .beafphotocc {
	padding: 15px 30px;
	box-sizing: border-box;
	width: calc(100% - 300px);
	text-align: left;
}

.list_mode .box_yo .before:before {
	font-size: 17px;
}

.no_login .bef_aft_box .box_yo .before:before {
	opacity: 1;
}

.no_login .bef_aft_box .box_yo .before img {
	filter: blur(10px);
	/* 블러 효과 */
	-webkit-filter: blur(10px);
	/* 웹킷 브라우저 호환 */
}

.no_login_back .bef_aft_box .box_yo .before:after {
	opacity: 1;
}

.no_login_back .bef_aft_box .box_yo .after img {
	filter: blur(10px);
	/* 블러 효과 */
	-webkit-filter: blur(10px);
	/* 웹킷 브라우저 호환 */
}

.beaf_read_top {
	padding: 25px 0;
	text-align: center;
	border-top: 1px solid #000;
	border-bottom: 1px solid #eee;
}

.beaf_read_top .recruitment_alt {
	margin-top: 5px;
}

.custom_beadf_flex_box01 {
	display: flex;
	gap: 30px;
	margin-bottom: 30px;
}

.custom_beadf_flex_box01>div {
	width: calc(50% - 15px);
	border-radius: 5px;
	overflow: hidden;
}

.custom_beadf_flex_box01>div .t_txt {
	width: 100%;
	padding: 20px;
	text-align: center;
	font-size: 20px;
	font-weight: 600;
	color: #fff;
	display: block;
}

.custom_beadf_flex_box01>div .img {
	/* aspect-ratio: 1/0.89; 제거하여 높이 자동 조절 */
	width: 100%;
}

.custom_beadf_flex_box01>div .img img {
	width: 100%;
	height: auto;
	object-fit: contain;
}

.custom_beadf_wrapper {
	padding: 30px 0;
}

@media all and (max-width:850px) {
	.prd_search_wrapper02.just_between {
		justify-content: flex-start;
		flex-wrap: nowrap;
	}

	.bef_aft_box .box_yo {
		width: 100%;
	}
}

/* 치료사례 리스트모드 모바일 - 텍스트 아래로 배치 */
@media all and (max-width:700px) {
	.list_mode .box_yo>a {
		flex-direction: column;
		align-items: flex-start;
	}
	
	.list_mode .box_yo .img_top_yo {
		min-width: 100%;
		width: 100%;
	}
	
	.list_mode .txt_box {
		width: 100%;
		padding: 15px 0 0 0;
	}
	
	.list_mode .beafphotocc {
		width: 100%;
		padding: 15px 0;
		text-align: left;
	}
	
	/* Before/After 텍스트 상하 가운데 정렬 */
	.list_mode .box_yo .before .txt_box,
	.list_mode .box_yo .after .txt_box,
	.bef_aft_box .box_yo .before .txt_box,
	.bef_aft_box .box_yo .after .txt_box {
		display: flex;
		align-items: center;
		justify-content: center;
		padding: 10px 0 !important;
		box-sizing: border-box;
		height: 40px;
	}
	
	/* 카테고리 경로 폰트 크기 증가 */
	.bef_aft_box .beafphotocc .category_path {
		font-size: 14px !important;
	}
	
	/* 날짜 폰트 크기 증가 및 상단 패딩 축소 */
	.bef_aft_box .beafphotocc .date {
		font-size: 15px !important;
		margin-top: 5px !important;
		padding-top: 0 !important;
	}
}

/* END 치료사례 */

/* 전후사진갤러리 */
.beaf_read_top.bnas_wrap .login_tit01 .under_txt {
	width: 100%;
	padding: unset;
	max-width: unset;
	border: unset;
	color: #333;
	font-size: unset;

}

.beaf_read_top.bnas_wrap {
	margin-bottom: 30px;
}

.beaf_read_top.bnas_wrap .login_tit01 .under_txt p {
	font-size: 30px;
	font-weight: 700;
	color: #333;
}

.custom_beadf_btn_box01 {
	margin: 50px auto;
	display: flex;
	justify-content: center;
	gap: 20px;
	text-align: center;
}

.custom_beadf_btn_box01 .img_box {
	width: 122px;
	height: 122px;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	border-radius: 5px;
	border: 1px solid #e9e9e9;
	margin-bottom: 20px;
}

.custom_beadf_btn_box01 .img_box img {
	max-width: 100%;
	max-height: 95%;
}

.custom_beadf_btn_box01 .txt {
	color: #888;
	font-size: 20px;
	font-weight: 400;
}

.custom_beadf_btn01.active .img_box {
	border-color: var(--color-primary01);
}

.custom_beadf_btn01.active .txt {
	color: var(--color-primary01);
	font-weight: 600;
}

.custom_beadf_btn01 .img_box .able {
	display: none;
}

.custom_beadf_btn01.active .img_box .disable {
	display: none;
}

.custom_beadf_btn01.active .img_box .able {
	display: block;
}

/* END 전후사진갤러리 */

/* 일정표 */
.commuting_wrap.custom01 {
	padding-bottom: unset;
	background-color: #fff;
	margin: 0 auto;
	border-radius: 0;
}

.commuting_wrap.custom01 .prd_page_nav_wrapper {
	margin-top: 30px;
	padding-bottom: 30px;
}

.calender_tit_flex_box01 {
	display: flex;
	flex-wrap: wrap;
	padding: 20px 0;
	justify-content: space-between;
	gap: 10px;
}

.calender_tit_flex_box01 .prd_search_wrapper {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	max-width: 100%;
	width: 100%;
	justify-content: space-between;
	align-items: center;
}

.calender_tit_flex_box01 .prd_search_wrapper .right_box {
	display: flex;
	gap: 10px;
	margin-left: auto;
	flex-shrink: 0;
}

.commuting_wrap.custom01 .up_bar {
	padding: unset;
	color: #333;
	font-size: 30px;
	font-weight: 700;
	text-align: center;
	display: flex;
	align-items: center;
	gap: 0 15px;
}

.commuting_wrap.custom01 #cal_title a.c_left,
.commuting_wrap.custom01 #cal_title a.c_right {
	margin: unset;
	width: 51px;
	height: 51px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid #e5e5e5;
	border-radius: 5px;
	background-color: #fff;
}

.commuting_wrap.custom01 #cal_title a.c_left img,
.commuting_wrap.custom01 #cal_title a.c_right img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.commuting_wrap.custom01 #cal_title select {
	height: auto;
	margin: unset;
	padding: unset;
	border: unset;
	appearance: none;
	border-radius: 0;
	background-color: transparent;
	box-shadow: none;
	color: #333;
	min-width: unset;
}

.select_flex_box02 {
	margin: 0;
	cursor: pointer;
}

.prd_menu_type_box.filter,
.prd_menu_type_box.calender {
	display: flex;
	align-items: center;
	justify-content: center;
}

/* 캘린더 아이콘 - 기본 상태에서 active 아이콘 숨김 */
.prd_menu_type_box.calender .calendar-icon.active {
	display: none;
}

/* 캘린더 활성화 상태에서 active 아이콘 표시 */
.prd_menu_type_box.calender.active .calendar-icon.active {
	display: inline-block;
}

.prd_menu_type_box.calender.active .calendar-icon.basic {
	display: none;
}

.prd_menu_type_box.calender.active .basic {
	display: none;
}

.calender_tit_flex_box01 .prd_search_wrapper .right_box {
	position: relative;
}

.common_chk_wrapper {
	position: absolute;
	z-index: 11;
	padding: 10px 20px 25px;
	background-color: #fff;
	border-radius: 6px;
	box-shadow: 0px 2px 20px 0px rgba(0, 0, 0, 0.08);
	max-width: 297px;
	width: 100%;
	top: calc(100% + 5px);
	left: -50px;
	display: none;
}

.common_chk_wrapper.active {
	display: block;
}

.common_chk_wrapper .t_flex_box {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 14px;
	font-weight: 500;
	color: #333;
	line-height: 1.64em;
	margin-bottom: 20px;
}

.common_chk_wrapper .t_flex_box .close_btn01 {
	position: relative;
	width: 10px;
	height: 10px;
}

.common_chk_wrapper .t_flex_box .close_btn01 span {
	width: 100%;
	height: 1px;
	background-color: #333;
	position: absolute;
	left: 50%;
	top: 50%;
}

.common_chk_wrapper .t_flex_box .close_btn01 span:first-child {
	transform: translate(-50%, -50%) rotate(45deg);
}

.common_chk_wrapper .t_flex_box .close_btn01 span:last-child {
	transform: translate(-50%, -50%) rotate(-45deg);
}

.filter_chk_label01 {
	display: flex;
	align-items: center;
	position: relative;
	gap: 10px;
	font-size: 15px;
	font-weight: 400;
	color: #333;
	cursor: pointer;
}

.filter_chk_label01 input[type="checkbox"],
.filter_chk_label01 input[type="radio"] {
	margin: unset;
	padding: unset;
	outline: none;
	appearance: none;
	border: 1px solid #333;
	border-radius: 5px;
	width: 30px;
	height: 30px;
	position: relative;
}

.filter_chk_label01 input[type="checkbox"]::after,
.filter_chk_label01 input[type="radio"]::after {
	content: '';
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	background: url('/img/filter_chk02.png') no-repeat center / cover;
	width: 14px;
	height: 10px;
	filter: invert(1);
}

.filter_chk_label01+.filter_chk_label01 {
	margin-top: 20px;
}

.filter_chk_label01 input[type="checkbox"]:checked,
.filter_chk_label01 input[type="radio"]:checked {
	border-color: transparent;
}

.filter_chk_label01 input[type="checkbox"]:checked:after,
.filter_chk_label01 input[type="radio"]:checked:after {
	filter: unset;
}

.filter_chk_label01.basic input[type="checkbox"]:checked,
.filter_chk_label01.basic input[type="radio"]:checked {
	background-color: #4D4D4D;
}

.filter_chk_label01.ready input[type="checkbox"]:checked,
.filter_chk_label01.ready input[type="radio"]:checked {
	background-color: #F34B7E;
}

.filter_chk_label01.ing input[type="checkbox"]:checked,
.filter_chk_label01.ing input[type="radio"]:checked {
	background-color: #3DD07F;
}

.filter_chk_label01.completion input[type="checkbox"]:checked,
.filter_chk_label01.completion input[type="radio"]:checked {
	background-color: #7D9AF8;
}

.filter_chk_label01 input[type="file"]:focus,
.filter_chk_label01 input[type="radio"]:focus,
.filter_chk_label01 input[type="checkbox"]:focus {
	outline: unset;
	outline: unset;
	outline-offset: unset;
}

.commuting_wrap.custom01 .c_table.schedule_table table th {
	font-size: 20px;
	color: #333;
	background: #fff;
	font-weight: 600;
	border-top: 1px solid #eee;
	border-bottom: 1px solid #eee;
	min-height: 60px;
	padding: 10px;
}

.commuting_wrap.custom01 .c_table.schedule_table table td {
	position: relative;
	padding: unset;
	font-size: 17px;
	height: 145px;
	font-weight: 400;
	text-align: left;
	vertical-align: top;
	color: #333;
}

.commuting_wrap.custom01 .c_table.schedule_table td .date {
	text-align: left;
	padding: 0 10px;
}

.commuting_wrap.custom01 .c_table.schedule_table td .lines+.lines {
	margin-top: 4px;
}

.commuting_wrap.custom01 .c_table.schedule_table td strong {
	line-height: 1.5em;
	font-weight: 600;
	color: #333;
}

.commuting_wrap.custom01 .c_table.schedule_table td .lines {
	border: 1px solid transparent;
	background-color: transparent;
	position: relative;
}

.commuting_wrap.custom01 .c_table.schedule_table td .lines.end-line {
	border-left: unset;
	border-radius: 0 500px 500px 0;
}

/* 리스트 */
.common_table02 table {
	border-top: 1px solid #eee;
	width: 100%;
	table-layout: fixed;
	white-space: nowrap
}

.common_table02 table tr th {
	color: #333;
	text-align: center;
	font-size: 20px;
	font-weight: 500;
	line-height: 1.05em;
	padding: 20px;
}

.common_table02 table tbody tr {
	border-top: 1px solid #eee;
}

.common_table02 table tr td {
	height: 95px;
	vertical-align: middle;
	font-size: 17px;
	font-weight: 400;
	color: #333;
	line-height: 1.64em;
	text-align: center;
}

.common_table02 table tr td.tit {
	font-weight: 600;
	text-align: left;
}

.common_table02 table tr td.state .style_box01 {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 5px;
	min-width: 65px;
	border-radius: 500px;
	border: 1px solid transparent;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.5em;
}

.common_table02 table tr td.state .style_box01.end {
	border-color: #B991FF;
	color: #B991FF;
	box-shadow: 0 0 4px 1px rgba(185, 145, 255, 1);
}

.common_table02 table tr td.state .style_box01.basic {
	border-color: #8D8D8D;
	color: #333;
	box-shadow: 0 0 4px 1px rgba(141, 141, 141, 1);
}

.common_table02 table tr td.state .style_box01.ing {
	border-color: #3DD0B0;
	color: #3DD0B0;
	box-shadow: 0 0 4px 1px rgba(61, 208, 176, 1);
}

.common_table02 table tr td.state .style_box01.ready {
	border-color: #F9789F;
	color: #F9789F;
	box-shadow: 0 0 4px 1px rgba(249, 120, 159, 1);
}

.start_date_txt01,
.end_date_txt01 {
	display: block;
}

.start_date_txt01 {
	color: #2E7D32;
}

.end_date_txt01 {
	color: #C62828;
}

.common_table02 {
	overflow: auto;
}

.programCon .bt_wrap .common_table02 {
	overflow: visible !important;
}

.common_table02.pd table {
	table-layout: auto;
}

.common_table02.pd table tbody td {
	padding: 15px;
}

/* 지점안내 테이블 스타일 개선 */
.bt_wrap .common_table02 {
	overflow: visible !important;
}

.common_table02 table.branch_table {
	table-layout: auto;
	white-space: normal;
	overflow: visible !important;
}

.common_table02 table.branch_table tr th {
	font-size: 20px;
	font-weight: 600;
	padding: 18px 15px;
	word-break: keep-all;
}

.common_table02 table.branch_table tr td,
.common_table02 table.branch_table tr th {
	height: auto;
	min-height: 60px;
	padding: 15px;
	font-size: 19px;
	font-weight: 400;
	line-height: 1.5;
	word-break: keep-all;
	white-space: normal;
	vertical-align: middle;
}

.common_table02 table.branch_table tr th:first-child {
	padding: 10px !important;
}

.common_table02 table.branch_table tr th:first-child img {
	width: 184px;
	height: 184px;
	object-fit: cover;
	object-position: center;
	display: block;
	border-radius: 8px;
}

.common_table02 table.branch_table tr th.table_arw01 {
	padding: 0;
	width: 50px;
}

.common_table02 table.branch_table tr th.table_arw01 img {
	transition: transform 0.3s ease;
}

.common_table02 table.branch_table tr.list.active th.table_arw01 img {
	transform: rotate(180deg);
}

.common_table02 table.branch_table tr.list {
	cursor: pointer;
	transition: background-color 0.2s;
}

.common_table02 table.branch_table tr.list:hover {
	background-color: #f9f9f9;
}

.common_table02 table.branch_table tr.list.active {
	background-color: #f5f5f5;
}

.common_table02 table.branch_table tr.list_alt01 td {
	padding: 0;
	height: 0;
	overflow: hidden;
	border: none;
}

.common_table02 table.branch_table tr.list_alt01.active td {
	height: auto;
	padding: 20px;
	border-top: 1px solid #eee;
}

/* 일정표 목록형 모바일 최적화 */
@media all and (max-width:768px) {
	.common_table02 table.schedule_list {
		display: block;
		white-space: normal;
	}
	
	.common_table02 table.schedule_list colgroup,
	.common_table02 table.schedule_list thead {
		display: none;
	}
	
	.common_table02 table.schedule_list tbody {
		display: block;
	}
	
	.common_table02 table.schedule_list tbody tr {
		display: flex;
		flex-wrap: wrap;
		align-items: flex-start;
		padding: 15px 0;
		border-bottom: 1px solid #eee;
	}
	
	.common_table02 table.schedule_list tbody tr td {
		display: block;
		height: auto;
		text-align: left;
		padding: 0;
		font-size: 14px;
	}
	
	/* 1줄: 상태 + 제목 */
	.common_table02 table.schedule_list tbody tr td.state {
		flex-shrink: 0;
		margin-right: 10px;
		display: flex;
		align-items: center;
		height: 28px;
	}
	
	.common_table02 table.schedule_list tbody tr td.tit {
		flex: 1;
		font-size: 16px;
		font-weight: 600;
		line-height: 28px;
		white-space: normal;
		word-break: break-word;
		display: flex;
		align-items: center;
		height: 28px;
	}
	
	.common_table02 table.schedule_list tbody tr td.tit a {
		display: flex;
		align-items: center;
		height: 100%;
	}
	
	/* 2줄: 기간 */
	.common_table02 table.schedule_list tbody tr td:nth-child(3) {
		width: 100%;
		margin-top: 8px;
		color: #666;
		font-size: 15px;
	}
	
	.common_table02 table.schedule_list tbody tr td:nth-child(3) .start_date_txt01,
	.common_table02 table.schedule_list tbody tr td:nth-child(3) .end_date_txt01 {
		display: inline;
	}
	
	/* 3줄: 작성자 + 작성일 */
	.common_table02 table.schedule_list tbody tr td:nth-child(4) {
		font-size: 15px;
		color: #999;
		margin-top: 5px;
	}
	
	.common_table02 table.schedule_list tbody tr td:nth-child(4)::after {
		content: ' · ';
	}
	
	.common_table02 table.schedule_list tbody tr td:nth-child(5) {
		font-size: 15px;
		color: #999;
		margin-top: 5px;
	}
	
	/* 지점안내 테이블 모바일 최적화 - 가로 스크롤 제거 */
	.common_table02 table.branch_table {
		display: table;
		width: 100%;
		table-layout: fixed;
	}
	
	.common_table02 table.branch_table tr th,
	.common_table02 table.branch_table tr td {
		font-size: 18px;
		padding: 12px 8px;
		word-break: break-word;
		overflow-wrap: break-word;
	}
	
	.common_table02 table.branch_table thead tr th {
		font-size: 17px;
		padding: 12px 5px;
	}
	
	.common_table02 table.branch_table tr th:first-child {
		width: 96px;
		padding: 8px !important;
	}
	
	.common_table02 table.branch_table tr th:first-child img {
		width: 80px;
		height: 80px;
		object-fit: cover;
		object-position: center;
		border-radius: 6px;
	}
	
	.common_table02 table.branch_table tr th:nth-child(2) {
		width: 20%;
	}
	
	.common_table02 table.branch_table tr th:nth-child(3) {
		width: 25%;
	}
	
	.common_table02 table.branch_table tr th:nth-child(4) {
		width: auto;
	}
	
	.common_table02 table.branch_table tr th.table_arw01 {
		width: 30px;
		padding: 5px;
	}
	
	.common_table02 table.branch_table tr th.table_arw01 img {
		max-width: 12px;
	}
}

/* END 리스트 */


@media all and (max-width:1024px) {
	.commuting_wrap.custom01 .c_table.schedule_table table td {
		height: 110px;
	}

	.common_table02 table tr th {
		padding: 15px;
	}
	
	/* 지점안내 테이블 태블릿 최적화 */
	.common_table02 table.branch_table tr th,
	.common_table02 table.branch_table tr td {
		font-size: 18px;
		padding: 12px 10px;
	}
}

@media all and (max-width:700px) {
	.commuting_wrap.custom01 .c_table.schedule_table table td {
		height: 70px;
	}
	
	/* 지점안내 테이블 소형 화면 최적화 */
	.common_table02 table.branch_table tr th:first-child {
		width: 72px;
		padding: 6px !important;
	}
	
	.common_table02 table.branch_table tr th:first-child img {
		width: 60px;
		height: 60px;
		object-fit: cover;
		object-position: center;
		border-radius: 4px;
	}
	
	.common_table02 table.branch_table tr th,
	.common_table02 table.branch_table tr td {
		font-size: 17px;
		padding: 10px 5px;
	}
	
	.common_table02 table.branch_table thead tr th {
		font-size: 16px;
		padding: 10px 3px;
	}
}

/* END 일정표 */

/* 일정 상세 페이지 스타일 */
.schedule_info_box {
	display: flex;
	flex-wrap: wrap;
	gap: 15px 30px;
	padding: 20px 0;
	border-bottom: 1px solid #eee;
	margin-bottom: 30px;
}

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

.schedule_info_item .info_label {
	font-size: 14px;
	color: #888;
	font-weight: 500;
}

.schedule_info_item .info_value {
	font-size: 15px;
	color: #333;
	font-weight: 600;
}

.schedule_info_item .info_value.start_date {
	color: #28a745;
}

.schedule_info_item .info_value.end_date {
	color: #dc3545;
}

.schedule_info_item .state_badge {
	display: inline-block;
	padding: 4px 12px;
	border-radius: 20px;
	font-size: 13px;
	font-weight: 500;
	background-color: #f0f0f0;
	color: #666;
}

.schedule_info_item .state_badge.progress {
	background-color: #e8f5e9;
	color: #2e7d32;
}

.schedule_info_item .state_badge.complete {
	background-color: #fff3e0;
	color: #ef6c00;
}

@media all and (max-width:768px) {
	.schedule_info_box {
		flex-direction: column;
		gap: 12px;
	}
	
	.schedule_info_item {
		justify-content: space-between;
		width: 100%;
	}
}
/* END 일정 상세 페이지 스타일 */

/* 일정표 커스텀 */

.module_calendar_custom01 {
	padding-bottom: 40px;
}

.module_calendar_custom01 .fc-dayGridMonth-button:focus,
.module_calendar_custom01 .fc-listMonth-button:focus {
	box-shadow: unset;
}

.module_calendar_custom01.fc .fc-button-group .fc-button-primary:not(:disabled).fc-button-active:focus,
.module_calendar_custom01.fc .fc-button-group .fc-button-primary:not(:disabled):active:focus {
	box-shadow: unset;
}

.fc .fc-button-group .fc-button-primary:hover {
	background-color: #fff;
	border-color: #e5e5e5;
	color: unset;
}

.module_calendar_custom01.fc-direction-ltr .fc-toolbar-chunk.end .fc-button-group>.fc-button:not(:last-child) {
	border-bottom-right-radius: 5px;
	border-top-right-radius: 5px;
}

.module_calendar_custom01.fc-direction-ltr .fc-toolbar-chunk.end .fc-button-group>.fc-button:not(:first-child) {
	border-bottom-left-radius: 5px;
	border-top-left-radius: 5px;
	margin-left: unset;
}

.module_calendar_custom01.fc .fc-button-group .fc-button-primary:not(:disabled).fc-button-active,
.module_calendar_custom01.fc .fc-button-group .fc-button-primary:not(:disabled):active {
	background-color: #fff;
	border-color: #e5e5e5;
	color: unset;
}

.module_calendar_custom01 .fc-button-group .fc-button-active {
	background-color: unset;
}

.module_calendar_custom01 .fc-toolbar.fc-header-toolbar {
	padding: 20px 0;
	margin: unset;
	gap: 10px;
	flex-wrap: wrap;
	align-items: center;
}

.module_calendar_custom01 .fc-toolbar-chunk.start {
	width: 100%;
}

.module_calendar_custom01 .fc-toolbar-chunk.start>div {
	display: flex;
	align-items: center;
	gap: 0 15px;
	font-size: 30px;
	font-weight: 700;
	color: #333;
}

.module_calendar_custom01 .fc-toolbar-chunk.start .fc-prev-button {
	background: url('/img/calender_arw01.png') no-repeat center / cover;
}

.module_calendar_custom01 .fc-toolbar-chunk.start .fc-next-button {
	background: url('/img/calender_arw02.png') no-repeat center / cover;
}

.module_calendar_custom01 .fc-toolbar-chunk.start .fc-button span {
	display: none;
}

.module_calendar_custom01 .fc-toolbar-chunk.start .fc-button {
	width: 51px;
	height: 51px !important;
	border: unset;
}

.module_calendar_custom01 .fc-toolbar-chunk.start .fc-button:focus {
	box-shadow: unset;
}

.module_calendar_custom01 .fc-toolbar-chunk.end {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	max-width: 100%;
	width: 100%;
	justify-content: space-between;
	align-items: center;
}

.module_calendar_custom01 .fc-toolbar-chunk.end .search_box {
	width: 100%;
	max-width: 630px;
}

.module_calendar_custom01 .fc-toolbar-chunk.end .fc-button-group {
	display: flex;
	gap: 10px;
	margin-left: auto;
	position: relative;
}

.module_calendar_custom01 .fc-dayGridMonth-button,
.module_calendar_custom01 .fc-listMonth-button {
	text-indent: -99999em;
	position: relative;
	width: 55px;
	height: 55px;
	border-radius: 5px;
	aspect-ratio: 1 / 1;
	border: 1px solid #E5E5E5;
	background-color: #fff;
}

/* 목록보기 아이콘 - 4개의 가로선 (prd_menu_type_box.list와 동일) */
.module_calendar_custom01 .fc-listMonth-button::before,
.module_calendar_custom01 .fc-listMonth-button::after {
	content: '';
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	width: 25px;
	height: 4px;
	background-color: #E5E5E5;
}

.module_calendar_custom01 .fc-listMonth-button::before {
	top: 15px;
	box-shadow: 0 7px 0 #E5E5E5;
}

.module_calendar_custom01 .fc-listMonth-button::after {
	bottom: 15px;
	box-shadow: 0 -7px 0 #E5E5E5;
}

.module_calendar_custom01 .fc-listMonth-button.fc-button-active {
	border-color: var(--color-primary01);
}

.module_calendar_custom01 .fc-listMonth-button.fc-button-active::before,
.module_calendar_custom01 .fc-listMonth-button.fc-button-active::after {
	background-color: var(--color-primary01);
}

.module_calendar_custom01 .fc-listMonth-button.fc-button-active::before {
	box-shadow: 0 7px 0 var(--color-primary01);
}

.module_calendar_custom01 .fc-listMonth-button.fc-button-active::after {
	box-shadow: 0 -7px 0 var(--color-primary01);
}

/* 월별보기 아이콘 - 달력 아이콘 (prd_menu_type_box.calender와 동일) */
.module_calendar_custom01 .fc-dayGridMonth-button::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 33px;
	height: 33px;
	background-color: #999;
	-webkit-mask: url('/img/calender_icon01_active.svg') no-repeat center / contain;
	mask: url('/img/calender_icon01_active.svg') no-repeat center / contain;
}

.module_calendar_custom01 .fc-dayGridMonth-button.fc-button-active {
	border-color: var(--color-primary01);
}

.module_calendar_custom01 .fc-dayGridMonth-button.fc-button-active::before {
	background-color: var(--color-primary01);
}

.fc .fc-col-header-cell-cushion {
	font-size: 20px;
	color: #333;
	background: #fff;
	font-weight: 600;
	border-top: 1px solid #eee;
	border-bottom: 1px solid #eee;
	min-height: 60px;
	padding: 10px;
	width: 100%;
}

/* 요일 헤더 공통 스타일 - 상하 가운데 정렬 */
.fc .fc-col-header-cell-cushion {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	min-height: 60px;
}

/* 일요일 헤더 */
.fc .fc-day-sun .fc-col-header-cell-cushion {
	color: #FF5E61;
	background-color: #FFF8FA;
}

/* 토요일 헤더 */
.fc .fc-day-sat .fc-col-header-cell-cushion {
	color: #71A0FF;
	background-color: #F8FBFF;
}

.fc .fc-daygrid-day-top {
	flex-direction: row;
	cursor: pointer;
}


.fc-daygrid-event.fc-event {
	border-radius: 15px;
	border: 1px solid transparent;
	/* background-color: unset !important; */
	margin-top: 10px;
}

.fc-direction-ltr .fc-daygrid .fc-event-title-container .fc-event-title {
	font-size: 15px;
	font-weight: 500;
	line-height: 1.5em;
	color: #333;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	line-clamp: 2;
	white-space: pre-wrap;
}

@media all and (max-width:1400px) {
	.module_calendar_custom01 .fc-toolbar.fc-header-toolbar {
		flex-wrap: wrap;
	}

	.module_calendar_custom01 .fc-toolbar-chunk.end {
		flex-wrap: nowrap;
	}

	.module_calendar_custom01 .fc-toolbar-chunk.end .search_box {
		flex: 1;
		max-width: none;
	}

	.module_calendar_custom01 .fc-toolbar-chunk.start>div {
		gap: 0 15px;
	}

	.module_calendar_custom01 .fc-toolbar-chunk.start .fc-button {
		width: 40px;
		height: 40px !important;
		min-width: 40px;
	}
	
}

@media all and (max-width:1024px) {
	/* 테블릿 - 달력 스크롤 방지 */
	.commuting_wrap.custom01 {
		overflow-x: hidden;
		max-width: 100vw;
		box-sizing: border-box;
	}
	
	.module_calendar_custom01 {
		overflow-x: hidden;
		max-width: 100%;
		box-sizing: border-box;
	}
	
	.programCon_custom01.login_bg01 {
		background-color: #fff;
	}
	
	/* 달력 테이블 너비 고정 */
	.module_calendar_custom01 .fc-scrollgrid {
		width: 100% !important;
		table-layout: fixed;
	}
	
	.module_calendar_custom01 .fc-scrollgrid-sync-table {
		width: 100% !important;
		table-layout: fixed;
	}
	
	/* 테블릿 달력 셀 최소 높이 */
	.fc .fc-daygrid-day-frame {
		min-height: 100px;
	}
	
	/* 테블릿 이벤트 폰트 크기 */
	.fc-direction-ltr .fc-daygrid .fc-event-title-container .fc-event-title {
		font-size: 14px !important;
	}
	
	.fc-daygrid-event.fc-event {
		font-size: 14px !important;
	}
}

@media all and (max-width:700px) {

	.module_calendar_custom01 .fc-dayGridMonth-button,
	.module_calendar_custom01 .fc-listMonth-button {
		width: 44px;
		height: 44px;
	}
}

@media all and (max-width:768px) {
	/* 달력 전체 컨테이너 가로 스크롤 방지 */
	.commuting_wrap.custom01 {
		overflow-x: hidden;
		max-width: 100vw;
		box-sizing: border-box;
		padding: 0 5px;
	}
	
	.module_calendar_custom01 {
		overflow: visible;
		max-width: 100%;
		box-sizing: border-box;
		width: 100%;
	}
	
	/* 달력 테이블 모바일 최적화 */
	.module_calendar_custom01 .fc-scrollgrid {
		width: 100% !important;
		table-layout: fixed;
	}
	
	.module_calendar_custom01 .fc-scrollgrid-sync-table {
		width: 100% !important;
		table-layout: fixed;
	}
	
	/* 달력 셀 너비 균등 분배 */
	.fc-scrollgrid-sync-table colgroup col {
		width: 14.28% !important;
	}
	
	/* 요일 헤더 */
	.fc .fc-col-header-cell-cushion {
		font-size: 12px;
		padding: 5px 2px;
		min-height: 30px;
	}
	
	/* 날짜 숫자 폰트 크기 축소 */
	.fc .fc-daygrid-day-number {
		font-size: 12px;
		padding: 2px 4px;
	}
	
	/* 이벤트 타이틀 - 모바일에서 한 줄 표시 */
	.fc-direction-ltr .fc-daygrid .fc-event-title-container .fc-event-title {
		font-size: 13px !important;
		white-space: nowrap !important;
		overflow: hidden !important;
		text-overflow: ellipsis !important;
		display: block !important;
		-webkit-line-clamp: unset !important;
		line-clamp: unset !important;
		-webkit-box-orient: unset !important;
	}
	
	/* 이벤트 뱃지 크기 */
	.fc-daygrid-event.fc-event {
		margin-top: 2px !important;
		border-radius: 4px !important;
		padding: 2px 4px !important;
		font-size: 13px !important;
		line-height: 1.3 !important;
	}
	
	/* 이벤트 컨테이너 한 줄 표시 */
	.fc-daygrid-event-harness {
		margin-bottom: 1px !important;
	}
	
	.fc-event-main {
		padding: 0 !important;
	}
	
	/* 이벤트 내용 한 줄로 */
	.fc-event-main-frame {
		flex-direction: row !important;
		flex-wrap: nowrap !important;
	}
	
	/* 달력 셀 */
	.fc .fc-daygrid-day-top {
		margin: 1px;
	}
	
	/* 모바일 달력 셀 최소 높이 */
	.fc .fc-daygrid-day-frame {
		min-height: 60px;
		overflow: visible;
	}
	
	/* 셀 내부 이벤트 영역 */
	.fc .fc-daygrid-day-events {
		min-height: 30px;
	}
	
	/* 모바일 달력 검색영역 + 버튼 한 줄 배치 */
	.module_calendar_custom01 .fc-toolbar-chunk.end {
		display: flex !important;
		flex-wrap: nowrap !important;
		gap: 10px !important;
		align-items: center;
	}
	
	.module_calendar_custom01 .fc-toolbar-chunk.end .search_box {
		flex: 1 !important;
		min-width: 0 !important;
		max-width: none !important;
		width: auto !important;
	}
	
	.module_calendar_custom01 .fc-toolbar-chunk.end .search_box .l_box001,
	.module_calendar_custom01 .fc-toolbar-chunk.end .search_box .left_box {
		width: 100% !important;
	}
	
	.module_calendar_custom01 .fc-toolbar-chunk.end .fc-button-group {
		flex-shrink: 0 !important;
		margin-left: 0 !important;
	}
	
	/* 요일 헤더 스크롤바 제거 */
	.module_calendar_custom01 .fc-scrollgrid-section-header .fc-scroller {
		overflow: hidden !important;
	}
}

/* END 일정표 커스텀 */

/* 일정수정 */
.login_form_flex_box02 {
	display: flex;
	gap: 25px;
}

.login_form_flex_box02>div {
	flex: 1;
}

.time_felx_box002 {
	display: flex;
	gap: 20px;
}

.time_felx_box002>div {
	flex: 1;
}

/* END 일정수정 */
.custom_email_form001 {
	display: flex;
	align-items: center;
	gap: 10px;
}

.custom_email_input_form01 {
	height: 55px;
	width: 100%;
	border-radius: 5px;
	background-color: #f9f9f9;
	position: relative;
	border: unset;
	padding: unset;
	outline: unset;
	font-size: 17px;
	font-weight: 400;
	padding: 0 20px;
	cursor: pointer;
}

.custom_email_form001 select {
	height: 55px;
	width: 100%;
	border-radius: 5px;
	padding: 0 20px;
	padding-right: 40px;
	position: relative;
	border: unset;
	outline: unset;
	cursor: pointer;
	appearance: none;
	background: #f9f9f9 url(/img/email_arw001.png) no-repeat center right 20px / 13px 14px;
}

.custom_email_form001 .custom_email_input_form01,
.custom_email_form001 select {
	flex: 1;
}

/* 20241217 추가 */
/* 관리자 답변 */
.readAnswer.custom02 {
	padding: 20px 0;
	border-top: 2px solid #000;
}

.readAnswer.custom02 .custom_answer_tit {
	position: relative;
	padding-left: 25px;
	font-size: 30px;
	font-weight: 600;
	color: var(--color-primary01);
	line-height: 1;
}

.readAnswer.custom02 .custom_answer_tit::before {
	content: '';
	position: absolute;
	left: 0;
	top: 3px;
	width: 1px;
	height: 13px;
	background-color: var(--color-primary01);
}

.readAnswer.custom02 .custom_answer_tit::after {
	content: '';
	position: absolute;
	left: 0;
	top: 16px;
	width: 13px;
	height: 1px;
	background-color: var(--color-primary01);
}

.custom_answer_txt_box {
	border: 1px solid #FFF;
	padding: 20px;
	font-size: 17px;
	line-height: 1.88em;
	color: #888;
	font-weight: 400;
	background: #F9F9F9;
	margin-top: 20px;
	border-top: 1px solid #eee;
	border-bottom: 1px solid #eee;
}

/* END 관리자 답변 */

.schedule_time .date_select_wrap01 {
	width: 100%;
	float: unset;
	border: unset;
	border-radius: unset;
	margin: unset;
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
}

.fc .fc-cell-shaded,
.fc .fc-day-disabled {
	background-color: #fff;
}

.new_ans_w .new_ans_icon {
	white-space: nowrap;
}

.new_ans_w .new_ans_icon::before {
	width: 13px;
	left: -13px;
}

.new_ans_w .new_ans_icon::after {
	left: -13px;
	height: 13px;
}

.new_ans_w .answer_left_box {
	position: relative;
	padding-left: 20px;
}

/* 2025.01.02 추가 */
/* 일요일 배경색 - 연한 빨강 */
.fc td.fc-day-sun {
	background-color: #FFF8FA;
}
/* 토요일 배경색 - 연한 파랑 */
.fc td.fc-day-sat {
	background-color: #F8FBFF;
}

.fc .fc-daygrid-day.fc-day-today {
	box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.10);
}

/* 오늘이 토요일인 경우 배경색 유지 */
.fc .fc-daygrid-day.fc-day-today.fc-day-sat {
	background-color: #F8FBFF;
}

/* 오늘이 일요일인 경우 배경색 유지 */
.fc .fc-daygrid-day.fc-day-today.fc-day-sun {
	background-color: #FFF8FA;
}

.fc .fc-daygrid-day-number {
	font-size: 17px;
}

.fc .fc-daygrid-day-top {
	margin: 5px;
}

/* PC 달력 셀 최소 높이 - 가로세로 1:1 비율 유지 */
.fc .fc-daygrid-day-frame {
	min-height: 120px;
}

.fc .fc-day-today .fc-daygrid-day-number {
	color: var(--color-primary01);
	font-size: 17px;
	font-weight: 700;
}

/* 오늘 날짜 원형 표시 */
.fc .fc-day-today .fc-daygrid-day-top>.fc-daygrid-day-number {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border: none;
	border-radius: 50%;
	background-color: var(--color-primary01);
	color: #fff !important;
}

.recruitment_table01.change_box01 .noticeListFlexBox {
	gap: unset;
}

.recruitment_table01.change_box01 .num_box002 {
	width: 5%;
	text-align: center;
}

.recruitment_table01.change_box01 .tit .num0002 {
	display: none;
}

.recruitment_table01.change_box01.list_mode .notice_img_box {
	display: none;
}

.recruitment_table01.change_box01.list_mode .noticeListFlexBox .date_box {
	margin-top: unset;
}

.recruitment_table01.change_box01.list_mode .noice_board_alt_box {
	width: 100%;
	display: flex;
}

.recruitment_table01.change_box01.list_mode .noice_board_alt_box .order2 {
	order: 3;
}

.recruitment_table01.change_box01.list_mode .noice_board_alt_box .order3 {
	margin-left: auto;
}

.recruitment_table01.change_box01.list_mode .noice_board_alt_box .date_box {
	text-align: center;
	flex-shrink: 0;
	margin-left: 6px;
}

/* 이벤트 목록 필드 고정 너비 */
.recruitment_table01.change_box01.list_mode .noice_board_alt_box .date_box.order1_5 {
	width: 180px;
	min-width: 180px;
}
.recruitment_table01.change_box01.list_mode .noice_board_alt_box .date_box.order1_6 {
	width: 60px;
	min-width: 60px;
}
.recruitment_table01.change_box01.list_mode .noice_board_alt_box .date_box.order2 {
	width: 120px;
	min-width: 120px;
}
.recruitment_table01.change_box01.list_mode .noice_board_alt_box .date_box.order3 {
	width: 70px;
	min-width: 70px;
}
.recruitment_table01.change_box01.list_mode .noice_board_alt_box .date_box.order4 {
	width: 50px;
	min-width: 50px;
}

.recruitment_table01.change_box01 .box .tit {
	flex: 1;
	max-width: none;
	display: flex;
	align-items: center;
	flex-wrap: nowrap;
	gap: 5px;
	overflow: hidden;
}

.recruitment_table01.change_box01.list_mode .box .tit .title_value {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
/* 이미지 카드형 제목 말줄임 해제 */
.recruitment_table01.change_box01:not(.list_mode) .box .tit .title_value {
	overflow: visible;
	text-overflow: unset;
	white-space: normal;
	word-break: keep-all;
}

.recruitment_table01.change_box01.list_mode .num_box002 {
	display: none;
}

.recruitment_table01.change_box01.list_mode .tit .num0002 {
	display: inline-block;
	font-size: 20px;
	font-weight: 400;
	color: #333;
	white-space: nowrap;
	min-width: 70px;
	text-align: center;
}

@media all and (max-width:1024px) {

	.recruitment_table01.change_box01 .num_box002,
	.recruitment_table01.change_box01.list_mode .tit .num0002 {
		display: none;
	}

	.recruitment_table01.change_box01 .notice_img_box {
		margin-top: 0;
		margin-bottom: 0;
	}
	
	/* 이벤트 목록: 기간+상태+작성일+조회수 왼쪽 정렬 */
	.recruitment_table01.change_box01.list_mode .noice_board_alt_box:has(.order1_5) {
		justify-content: flex-start;
	}
	.recruitment_table01.change_box01.list_mode .noice_board_alt_box .date_box.order1_5,
	.recruitment_table01.change_box01.list_mode .noice_board_alt_box .date_box.order1_6 {
		width: auto;
		min-width: auto;
	}
	.recruitment_table01.change_box01.list_mode .noice_board_alt_box .date_box.order2 {
		margin-left: 5px;
		width: auto;
		min-width: auto;
	}
}

@media all and (max-width:700px) {
	/* [2026-01-01 수정] 텍스트 목록형 2줄 레이아웃 */
	
	/* 내용 영역 - wrap으로 줄바꿈 허용 (가로 배치 유지) */
	.recruitment_table01.change_box01.list_mode .noice_board_alt_box {
		flex-wrap: wrap;
		gap: 8px 15px;
	}
	
	/* 치료후기 답변형: 2줄 레이아웃 (제목 / 작성자+날짜+조회수) */
	.recruitment_table01.change_box01.list_mode .box.review .noice_board_alt_box {
		flex-wrap: wrap;
		gap: 5px 10px;
		justify-content: flex-end;
		align-content: center;
		height: 100%;
	}
	
	/* 제목 영역: 첫째 줄 전체 너비, 왼쪽 정렬 */
	.recruitment_table01.change_box01.list_mode .box.review .noice_board_alt_box .tit {
		width: 100%;
		flex-basis: 100%;
		justify-content: flex-start;
	}
	
	/* 메타 정보: 둘째 줄 오른쪽 정렬 */
	.recruitment_table01.change_box01.list_mode .box.review .noice_board_alt_box .date_box {
		flex-shrink: 0;
	}
	
	/* 첫째 줄: 제목 영역 - 100% 차지하여 다음 요소를 아래로 밀어냄 */
	.recruitment_table01.change_box01.list_mode .box .tit {
		width: 100%;
		flex-basis: 100%;
		max-width: 100%;
		line-height: 1.5;
	}
	
	/* 제목/카테고리 말줄임 해제 - 여러 줄 표시 */
	.recruitment_table01.change_box01.list_mode .box .tit .text_ov,
	.recruitment_table01.change_box01.list_mode .box .tit .title_value,
	.recruitment_table01.change_box01.list_mode .box .tit .category_path {
		white-space: normal;
		overflow: visible;
		text-overflow: clip;
		word-break: keep-all;
	}

	/* 둘째 줄: 메타 정보 - 가로 배치 */
	.recruitment_table01.change_box01.list_mode .box .date_box {
		max-width: none;
		min-width: auto;
		display: inline-flex;
	}
	
	/* 둘째 줄 우측 정렬 (공지사항: 작성자, 날짜, 조회수) */
	.recruitment_table01.change_box01.list_mode .noice_board_alt_box {
		justify-content: flex-end;
	}
	
	/* 제목은 왼쪽 정렬 유지 */
	.recruitment_table01.change_box01.list_mode .box .tit {
		justify-content: flex-start;
	}
	
	/* 이벤트 목록: 2줄 레이아웃 (order1_5가 있는 경우) */
	/* 2번째 줄: 기간+상태+작성일+조회수 왼쪽 정렬 */
	.recruitment_table01.change_box01.list_mode .noice_board_alt_box:has(.order1_5) {
		justify-content: flex-start;
		flex-wrap: wrap;
		gap: 0;
	}
	.recruitment_table01.change_box01.list_mode .noice_board_alt_box .date_box.order1_5 {
		order: 1;
		flex-basis: auto;
		width: auto;
		min-width: auto;
	}
	.recruitment_table01.change_box01.list_mode .noice_board_alt_box .date_box.order1_6 {
		order: 2;
		flex-grow: 0;
		width: auto;
		min-width: auto;
		margin-left: 3px;
	}
	.recruitment_table01.change_box01.list_mode .noice_board_alt_box .date_box.order1_6 .event-status-badge {
		padding: 2px 6px;
		font-size: 11px;
	}
	.recruitment_table01.change_box01.list_mode .noice_board_alt_box .date_box.order2 {
		order: 3;
		margin-left: auto;
		width: auto;
		min-width: auto;
	}
	.recruitment_table01.change_box01.list_mode .noice_board_alt_box .date_box.order3 {
		order: 4;
		margin-left: 15px;
	}
	.recruitment_table01.change_box01.list_mode .noice_board_alt_box .date_box.order4 {
		order: 5;
		margin-left: 15px;
	}
}


/* stok */

/*--------------------------------------------------------------*

* 재무 정보 > 주가정보 *


*---------------------------------------------------------------*/











/* ir - 재무정보 */
.stock_con02 .finance_table {
	width: 100%;
	margin-bottom: 100px;
	border-top: 1px solid #d1d1d1;
}

.stock_con02 .finance_table tr {
	border-bottom: 1px solid #d1d1d1;
}

.stock_con02 .finance_table tr td,
.stock_con02 .finance_table tr th {
	height: 43px;
	text-align: center;
	border-right: 1px solid #d1d1d1;
	font-size: 13px;
}

.stock_con02 .finance_table tr td:first-of-type,
.stock_con02 .finance_table tr th:first-of-type {
	border-left: 1px solid #d1d1d1;
}

.stock_con02 .finance_table tr th {
	background: #f6f7f7;
	color: #2c303e;
	font-weight: 400;
}

.stock_con02 .finance_table tr td {
	color: #58595b;
}

/* ir - 주가정보 (구버전) */
.ir table tr td.td_red {
	color: var(--color-primary01);
}

.ir table tr td.td_blue {
	color: #6787F0;
}

.stock_con01 .caption_box {
	display: flex;
	justify-content: space-between;
	margin-bottom: 15px;
}

.stock_con01 .caption_box span {
	font-size: 18px;
	font-weight: 500;
}

.stock_con01 .content_box {
	display: flex;
}

.stock_con01 .content_box>* {
	width: 50%;
	box-sizing: border-box;
	background-color: #fdfdfd;
	border: 1px solid #d1d1d1;
}

.stock_con01 .info_box .top_box {
	display: flex;
	gap: 60px;
	border-right: none;
}

.stock_con01 .info_box .top_box>* {
	width: 50%;
}

.stock_con01 .arrow_txt {
	display: flex;
	align-items: center;
	gap: 13px;
	justify-content: center;
}

.stock_con01 .arrow_txt i {
	display: inline-block;
	width: 28px;
	height: 18px;
	background: no-repeat center center / contain;
}

.stock_con01 .arrow_txt i.blue {
	background-image: url(/img/blue_arrow.png);
}

.stock_con01 .arrow_txt i.red {
	background-image: url(/img/red_arrow.png);
}

.stock_con01 .arrow_txt h4 {
	font-size: 42px;
	line-height: 42px;
	font-weight: 500;
	letter-spacing: 0;
	color: #333;
}

.stock_con01 .info_box {
	padding: 70px 85px 50px;
	border-right: none;
}

.stock_con01 .info_box .top_box {
	margin-bottom: 70px;
}

.stock_con01 .info_box .top_box .right_box {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.stock_con01 .info_box .top_box .right_box .line {
	width: 1px;
	height: 45px;
	background-color: #d1d1d1;
}

.stock_con01 .info_box .top_box .right_box p {
	text-align: center;
	color: #2c303e;
	font-size: 15px;
}

.stock_con01 .info_box .top_box .right_box span {
	font-size: 14px;
}

.stock_con01 .info_box .top_box .right_box p span.blue {
	color: #0060ff;
}

.stock_con01 .info_box .top_box .right_box p span.red {
	color: #f00;
}

.stock_table {
	width: 100%;
	margin: 0;
	border-top: 1px solid #8b959f;
	border-bottom: 1px solid #8b959f;
}

.stock_table .stock_col {
	width: 150px;
}

.stock_table tr {
	border-bottom: 1px dashed #a6acb3;
}

.stock_table tr:last-of-type {
	border-bottom: 0;
}

.stock_table tr td,
.stock_table tr th {
	height: 43px;
	font-size: 13px;
	padding: 0 20px;
}

.stock_table tr th {
	background: #f6f7f7;
	color: #2c303e;
	font-weight: 400;
	text-align: left;
}

.stock_table tr td {
	color: #58595b;
}

.stock_con01 .stock_table tr td {
	text-align: center;
}

.stock_con01 .stock_table tr th {
	text-align: center;
}

/* .stock_con01 .graph_box {
	padding: 45px 30px;
} */
.stock_con01 .graph_box>* {
	position: relative;
}

.stock_con01 .graph_box .hour_box {
	display: flex;
	justify-content: space-between;
	padding: 0 50px;
	box-sizing: border-box;
	margin-top: -10px;
}

.stock_con01 .graph_box .bot_box {
	margin-top: 20px;
}

.stock_con01 .graph_box .bot_box canvas {
	position: relative;
}

.stock_con01 .graph_box .bot_box canvas::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: #fff;
	top: 0;
	left: 0;
}

@media all and (max-width: 1200px) {
	.stock_con01 .info_box {
		padding: 70px 45px 50px;
		border-right: 1px solid #d1d1d1;
		border-bottom: none;
	}

	.stock_con01 .info_box .top_box .right_box {
		justify-content: center;
		gap: 20px;
	}
}

@media all and (max-width: 1000px) {
	.stock_con01 .content_box {
		flex-direction: column;
	}

	.stock_con01 .content_box>* {
		width: 100%;
	}
}

.stock_con02 {
	padding-top: 50px;
	padding-bottom: 100px;
}

.stock_con02 .inner {
	display: flex;
	gap: 47px;
}

.stock_con02 .left_box {
	width: calc(50% - 47px);
}

.stock_con02 .right_box {
	width: 50%;
}

.stock_con02 .finance_table {
	margin: 0;
}

.stock_con02 .right_box .finance_table {
	margin-top: 45px;
}

.stock_con02 .right_box .finance_table td {
	padding: 20px 0;
}

.stock_con02 .finance_table tr td:first-of-type,
.stock_con02 .finance_table tr th:first-of-type {
	border-left: none;
}

.stock_con02 .finance_table tr td:last-of-type,
.stock_con02 .finance_table tr th:last-of-type {
	border-right: none;
}

.stock_con02 .finance_table td {
	text-align: center;
}

.stock_con02 .finance_table .arrow_box {
	width: 100%;
	max-width: 84px;
	aspect-ratio: 1/0.658;
	background: no-repeat center center / contain;
	margin: 20px auto 32px;
}

.stock_con02 .finance_table td.blue .arrow_box {
	background-image: url(/img/blue_arrow_big.png);
}

.stock_con02 .finance_table td.blue b {
	color: #6787F0;
}

.stock_con02 .finance_table td.blue span i {
	font-style: normal;
	color: #0060ff;
}

.stock_con02 .finance_table td.red .arrow_box {
	background-image: url(/img/red_arrow_big.png);
}

.stock_con02 .finance_table td.red b {
	color: var(--color-primary01);
}

.stock_con02 .finance_table td.red span i {
	font-style: normal;
	color: #f00;
}


.stock_con02 .finance_table tr th,
.stock_con02 .finance_table tr td,
.stock_table tr th,
.stock_table tr td {
	vertical-align: middle;
}


@media all and (max-width: 1000px) {
	.stock_con02 .inner {
		flex-direction: column;
	}

	.stock_con02 .left_box {
		width: 100%;
	}

	.stock_con02 .right_box {
		width: 100%;
	}
}

.stok_tit_box01 {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 10px;
	flex-wrap: wrap;
	font-size: 30px;
	color: #333;
	font-weight: 700;
	margin-bottom: 30px;
	padding-bottom: 10px;
}

.stok_tit_box01 .date {
	font-size: 17px;
	font-weight: 400;
	color: #333;
}

.stock_flex_box01 {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
}

.stock_flex_box01>div {
	width: calc(50% - 20px);
}

.stock_flex_box01 .info_box01 .top_box {
	display: flex;
	flex-wrap: wrap;
	background-color: #F9F9F9;
	border-radius: 10px;
	min-height: 200px;
}

.stock_flex_box01 .info_box01 .top_box>div {
	width: 50%;
}

.stock_flex_box01 .info_box01 .top_box .left_box01 {
	border-right: 1px solid #d4d4d4;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 40px;
	font-weight: 700;
	color: #333;
}

.stock_flex_box01 .info_box01 .top_box .right_box {
	display: flex;
	align-items: center;
}

.stock_flex_box01 .info_box01 .top_box .right_box>div {
	width: 50%;
	text-align: center;
	font-size: 20px;
	font-weight: 600;
}

.stock_flex_box01 .info_box01 .top_box .right_box>div .tit {
	color: #333;
}

.stock_flex_box01 .info_box01 .top_box .right_box>div .red {
	color: var(--color-primary01);
}

.stock_flex_box01 .info_box01 .top_box .right_box>div .red {
	color: #6787F0;
}

.stock_table.style01,
.finance_table.style01 {
	border-top: 2px solid #000;
	border-bottom: unset;
}

.stock_table.style01 tr,
.finance_table.style01 tr {
	border-bottom: 1px solid #eee;
}

.stock_table.style01 tr th,
.finance_table.style01 tr th {
	background-color: unset;
}

.stock_table.style01 tr th.bg,
.finance_table.style01 tr th.bg {
	background-color: #F9F9F9;
	border-right: 1px solid #eee;
}

.stock_con02 .finance_table.style01 tr th,
.stock_con02 .finance_table.style01 tr td {
	border: unset;
}

.stock_table.style01 tr td,
.stock_table.style01 tr th,
.finance_table.style01 tr td,
.finance_table.style01 tr th {
	height: 60px;
	font-size: 20px;
	padding: 20px;
}

.finance_table.style01 tr td,
.stock_table.style01 tr td {
	font-size: 17px;
}

.stock_table.style01 tr th,
.finance_table.style01 tr th {
	font-weight: 600;
}

.stock_table.style01 tr:last-of-type,
.finance_table.style01 tr:last-of-type {
	border-bottom: 1px solid #eee;
}

.stock_flex_box01 .graph_box {
	display: flex;
	flex-direction: column;
}

.stock_con01 .stock_flex_box01 .graph_box .bot_box {
	margin-top: auto;
}

.stock_flex_box02 {
	display: flex;
	gap: 40px;
	flex-wrap: wrap;
}

.stock_flex_box02>div {
	width: calc(50% - 20px);
}

.stock_flex_box02 .right_box01 {
	display: flex;
	flex-direction: column;
}

.stock_flex_box02 .right_box01 .finance_table.style01 {
	margin-top: auto;
}

.stock_con02 .finance_table.style01 .arrow_box {
	width: 100%;
	max-width: 45px;
	aspect-ratio: 1/1;
	background: no-repeat center center / contain;
	margin: 20px auto;
}

.stock_con02 .finance_table.style01 td.blue .arrow_box {
	background-image: url(/img/stock_down_icon02.png);
}

.stock_con02 .finance_table.style01 td.red .arrow_box {
	background-image: url(/img/stock_up_icon02.png);
}

@media all and (max-width: 1600px) {

	.stock_flex_box01>div,
	.stock_flex_box02>div {
		width: 100%;
	}

	.stock_con01 .stock_flex_box01 .graph_box .bot_box,
	.stock_flex_box02 .right_box01 .finance_table.style01 {
		margin-top: 40px;
	}

}

@media all and (max-width: 1024px) {
	.stock_flex_box01 .info_box01 .top_box {
		flex-direction: column;
	}

	.stock_flex_box01 .info_box01 .top_box>div {
		width: 100%;
		padding: 20px;
	}

	.stock_flex_box01 .info_box01 .top_box .left_box01 {
		border: unset;
		border-bottom: 1px solid #d4d4d4;
	}

	.stock_table.style01 tr td,
	.stock_table.style01 tr th,
	.finance_table.style01 tr td,
	.finance_table.style01 tr th {
		font-size: 16px;
		padding: 15px;
	}

	.finance_table.style01 tr td,
	.stock_table.style01 tr td {
		font-size: 14px;
	}
}

/* END stock */
/* END 2025.01.02 추가 */

.new_ans_w .answer_left_box {
	width: 100%;
}

@media all and (max-width: 1024px) {
	.answer_wrapper .answer_box01 {
		flex-direction: column;
	}

	.answer_wrapper .answer_box01 .option_box01 {
		justify-content: flex-end;
	}
}

/* 2025.01.16 추가 */
.new_schedule_wrapper {
	max-width: 1400px;
	width: 100%;
	border-radius: 6px;
	background-color: #fff;
	margin: 0 auto;
	padding-bottom: 60px;
}

.new_schedule_wrapper .prd_tab_wrapper {
	padding: 0 30px;
}

.new_schedule_read_box {
	padding: 30px;
	padding-bottom: unset;
}

.new_schedule_read_con {
	border: 1px solid #E9E9E9;
	border-top: unset;
}

.new_schedule_read_flex_box_wrap {
	display: flex;
	flex-wrap: wrap;
}

.new_schedule_read_flex_box_wrap>.new_schedule_read_flex_box {
	width: 50%;
}

.new_schedule_read_flex_box {
	display: flex;
	width: 100%;
	flex-wrap: wrap;
	min-height: 55px;
	font-size: 17px;
	font-weight: 400;
	color: #333;
}

.new_schedule_read_flex_box.type02 {
	min-height: 300px;
}

.new_schedule_read_flex_box>div {
	padding: 20px;
	border-top: 1px solid #e9e9e9;
}

.new_schedule_read_flex_box .sch_tit {
	min-width: 225px;
	width: 225px;
	text-align: center;
	background-color: #f9f9f9;
	font-weight: 600;
}

.new_schedule_read_flex_box .sch_alt {
	border-left: 1px solid #e9e9e9;
	width: calc(100% - 225px);
	word-break: break-all;
}

.new_schedule_read_flex_box.type02 .sch_tit {
	display: flex;
	align-items: center;
	justify-content: center;
}

.new_schedule_wrapper .login_submit_btn_box01 {
	justify-content: flex-end;
}

.new_schedule_wrapper .login_submit_btn_box01 a.login_chk_btn01,
.new_schedule_wrapper .login_submit_btn_box01 .login_chk_btn01 {
	max-width: 290px;
}

@media all and (max-width: 1024px) {
	.new_schedule_read_flex_box_wrap>.new_schedule_read_flex_box {
		width: 100%;
		font-size: 15px;
	}

	.new_schedule_read_flex_box .sch_tit {
		min-width: 115px;
		width: 115px;
	}

	.new_schedule_read_flex_box .sch_alt {
		width: calc(100% - 115px);
	}

}

/* END 2025.01.16 추가 */

/* 필수값 아닐경우 *처리 빈공간 10px padding-left처리 */
.pd_left10px {
	padding-left: 10px;
}

/* 2025.01.23 수정/추가 */
.l_box001 {
	display: flex;
	gap: 10px;
	flex: 1;
	min-width: 0;
}

.l_box001 .login_form_flex_box01 select {
	min-width: 100px;
	width: auto;
}

.l_box001 .program_search_box01 {
	flex: 1;
	min-width: 100px;
}

.board_tit {
	font-size: 30px;
	line-height: 32px;
	margin-bottom: 10px;
	letter-spacing: -0.025em;
	color: #333;
	font-weight: 700;
	overflow: hidden;
}

/* END 2025.01.23 수정/추가 */


/* 2025.01.24 추가 */

#suggestions {
	border: 0;
}

.search_box_space_cus_tom {
	display: flex;
	align-items: center;
	gap: 10px;
	width: 100%;
}

.m_flex_cus {
	flex-wrap: nowrap;
}

.search_box_space_cus_tom .left_box.program_search_box01 {
	margin-left: unset;
}

@media all and (max-width: 1024px) {
	.m_flex_cus {
		flex-wrap: wrap;
	}

	.m_flex_cus .prd_search_wrapper02.just_between {
		flex-wrap: nowrap;
		justify-content: flex-start;
	}
}


/* END 2025.01.24 추가 */



/* 20250131 추가 */
.new_schedule_wrapper .login_submit_btn_box01 .login_chk_btn01.mok_lok_btn {
	max-width: 250px;
}


.jeon_moon_btn {
	/* cursor: pointer; */
	font-size: 12px;
	font-weight: normal;
	border: 1px solid #333;
	padding: 0 5px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 3px;
}


/* .login_input_form_box01.file_label01::before {
	content: '';
	position: absolute;
	top: 50%;
	right: 50px;
	transform: translateY(-50%);
	width: 24px;
	height: 22px;
	background: url(/img/x_btn_icon.png) no-repeat center / cover;
	cursor: pointer;
} */


.login_input_form_box01 .file_label01_xbtn {
	position: absolute;
	top: 50%;
	right: 50px;
	transform: translateY(-50%);
	width: 24px;
	height: 22px;
	cursor: pointer;
}







.login_input_form_box01.error {
	outline: 1px solid #E10045 !important;
	border-color: #E10045 !important;
	border-radius: 5px;
	padding: 5px;
}


.password_pop_up {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1036;

	width: 700px;
	background-color: #fff;
	border-radius: 10px;
}


.black_popup_bg {
	width: 100%;
	height: 100%;
	position: fixed;
	z-index: 1035;
	background-color: rgba(0, 0, 0, 0.5);
	left:
		0;
	top: 0;
}

.password_pop_up h2 {
	color: #333;
	font-size: 30px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
}

.password_pop_inner {
	padding: 60px;
}

.passwo_rd_con p {
	color: #333;
	font-size: 17px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	margin-top: 30px;
}

.passwo_rd_con input {
	width: calc(100% - 40px);
	margin-top: 10px;
	outline: none;
	padding: 0 20px;
	height: 54px;
	border: none;
	border-radius: 5px;
	background: #F9F9F9;
}


.ps_confirm_btn {

	border-radius: 5px;
	background: #E10045;
	width: 100%;

	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 40px;
	max-width: 100%;
	height: 60px;
}

.ps_confirm_btn p {
	color: #fff;
	font-size: 20px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
}


.ps_x_btn {
	position: absolute;
	top: 20px;
	right: 20px;
	cursor: pointer;
}





@media all and (max-width: 800px) {
	.new_schedule_wrapper .login_submit_btn_box01 .login_chk_btn01.mok_lok_btn {
		max-width: 115px;
	}

	.password_pop_up {
		width: calc(100% - 45px);

	}

	.password_pop_inner {
		padding: 30px;
	}
}

/* END 20250131 추가 */


/* 20250203 추가 */

@media (max-width: 770px) {
	#member {
		padding: 0;
	}
}

.font_tit01 {
	font-size: 17px;
	font-weight: 600;
	color: #333;
}

.prd_menu_type_box.write_btn01 {
	position: relative;
	background-color: var(--color-primary01);
}

.prd_menu_type_box.write_btn01 span {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	display: block;
	width: 40%;
	height: 3.85px;
	background-color: #fff;
}

.prd_menu_type_box.write_btn01 span:nth-child(2) {
	width: 3.85px;
	height: 40%;
}

.answer_wrapper .read_rego.custom .flex .left {
	width: calc(100% - 175px);
}

.answer_wrapper .read_rego.custom .flex .right {
	width: 155px;
}

.answer_wrapper .read_rego.custom .flex .right input[type="submit"] {
	width: 100%;
	height: 100%;
}

.custom_box_bom_flex {
	display: flex;
	gap: 20px;
	margin-bottom: 20px;
}

.answer_wrapper .read_rego.custom .flex .left .custom_box_bom {
	width: 100%;
	border-radius: 5px;
}

.answer_wrapper .read_rego.custom .left textarea {
	width: 100%;
	border-radius: 5px;
}

.custom_fflex_ho {
	display: flex;
	gap: 20px;
}

.custom_fflex_ho form {
	width: calc(100% - 105px);
}

.custom_fflex_ho form dl {
	height: 100%;
}

.answer_wrapper .read_rego.custom dl dt {
	margin: unset;
}

@media all and (max-width: 768px) {

	.custom_fflex_ho,
	.answer_wrapper .read_rego.custom .flex {
		flex-direction: column;
	}

	.custom_fflex_ho form,
	.answer_wrapper .read_rego.custom .flex .left,
	.answer_wrapper .read_rego.custom .flex .right {
		width: 100%;
	}

	.answer_wrapper .read_rego.custom .flex .right input[type="submit"] {
		height: 55px;
		margin-top: 20px;
	}
}

.lock_iconn01 {
	margin-right: 5px;
}

.lock_iconn01 img {
	vertical-align: sub;
}

.highlight {
	color: var(--color-primary01);
	background-color: rgba(255, 235, 59, 0.3);
	padding: 0 2px;
	border-radius: 2px;
	font-weight: 600;
}

/* 게시판 수정 */
.recruitment_table01 .box {
	flex-wrap: nowrap;
}

.recruitment_table01.change_box01.list_mode .box .tit,
.recruitment_table01 .box.review .left_alt_box {
	width: 100%;
	max-width: unset !important;
}

.recruitment_table01.change_box01.list_mode .noice_board_alt_box .order4 {
	order: 4;
}

.recruitment_table01.change_box01.list_mode .date_box {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 4px;
}

.recruitment_table01 .views {
	display: flex;
	align-items: center;
	gap: 4px;
}

/* END 게시판 수정 */

/* 자동등록방지 */
.pro_flex_box {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 10px;
}

.pro_flex_box .reset_bbbbtn {
	padding: 10px;
	display: block;
}

/* END 자동등록방지 */

/* 네이버지도 */
.jw_map01 {
	height: 600px;
}

.jw_map01 #map {
	width: 100%;
	height: 100% !important;
	max-width: 1400px;
}

/* OpenStreetMap 저작권 링크 숨기기 */
.jw_map01 .map_copyright a[href*="openstreetmap"] {
	display: none !important;
}

.flex_select_Box001 {
	width: 100%;
}

.flex_select_Box001 .inner {
	display: flex;
	flex-wrap: wrap;
	padding: 30px 0;
	gap: 15px;
	position: relative;
	z-index: 20;
	background-color: #fff;
	box-sizing: border-box;
}

.flex_select_Box001 .inner>div {
	flex: 1;
	box-sizing: border-box;
}

@media all and (max-width: 1024px) {
	.jw_map01 {
		height: 500px;
	}

	.flex_select_Box001 .inner {
		margin-top: unset;
	}

	.flex_select_Box001 .inner>div {
		flex: unset;
		width: calc(50% - 7.5px);
	}

	.flex_select_Box001 .inner>div.type02 {
		width: 100%;
	}
}

/* END 네이버지도 */

.custom_txt_box004 {
	width: 100%;
}

/* 블로그 게시판 */
.shop_item_info_con.mypage .tit_box_custom01 {
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: relative;
}

.shop_item_info_con.mypage .tit_box_custom01.mode02 {
	justify-content: flex-start;
	flex-wrap: wrap;
	gap: 20px 0;
}

.shop_item_info_con.mypage .tit_box_custom01.mode02 .custom_tit01 {
	min-width: 200px;
	border-radius: 0px 500px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #888;
	font-size: 20px;
	padding: 15px 20px;
	background-color: #F3F3F3;
	z-index: 1;
	font-weight: 400;
	border: 1px solid transparent;
}

.shop_item_info_con.mypage .tit_box_custom01.mode02 .custom_tit01.active {
	border-color: var(--color-primary01);
	position: relative;
	background-color: #FFE7EF;
	color: var(--color-primary01);
}

/* .shop_item_info_con.mypage .tit_box_custom01.mode02::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: -2px;
	border-bottom: 2px solid var(--color-primary01);
} */
.shop_item_info_con.mypage .tit_box_custom01.mode02.type02 .custom_tit01 {
	border-color: #FF9A15;
	color: #FF9A15;
}

.shop_item_info_con.mypage .tit_box_custom01.mode02.type02::after {
	border-color: #FF9A15;
}

.mypage_interest_box01 .shop_list_item01 {
	position: relative;
}

.mypage_interest_box01 .shop_list_item01 .interest_btn01 {
	position: absolute;
	z-index: 5;
	right: 20px;
	top: 20px;
	font-size: 32px;
	color: #FF6E6E;
}

/* .tit_box_custom01Wrapper .tit_box_custom01.mode02 {
	padding-right: 120px;
}

.text_ov2 {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	line-clamp: 2;
}

/* 목록형 (list_mode 없음) - 이미지+내용 가로 배치 */
.blogBoxWrapper:not(.list_mode) .blogBox {
	display: flex !important;
	flex-wrap: nowrap !important;
	flex-direction: row !important;
	gap: 40px;
	padding: 10px 0;
	border-bottom: 1px solid #EEE;
}

.blogBoxWrapper:not(.list_mode) .blogBox .img {
	width: 352px !important;
	flex-shrink: 0 !important;
	aspect-ratio: 4/3;
	overflow: hidden;
}

.blogBoxWrapper:not(.list_mode) .blogBox .img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.blogBoxWrapper:not(.list_mode) .blogBox .alt_box {
	flex: 1 !important;
	min-width: 0;
}

.blogBoxWrapper.list_mode .blogBox .img {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
}

.blogBoxWrapper.list_mode .blogBox .alt_box {
	width: unset;
	padding: 20px !important;
}

.blogBoxWrapper.list_mode .blogBox .img img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.blogBoxWrapper.list_mode {
	display: flex;
	flex-wrap: wrap;
	gap: 30px 40px;
	border-bottom: unset;
}

.blogBoxWrapper.list_mode .blogBox {
	display: block;
	width: calc(33.33333% - 27px);
	border-radius: 5px;
	overflow: hidden;
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.08);
	padding: unset;
	border-bottom: unset;
}

.blogBoxWrapper .blogBox .alt_box {
	padding: 30px;
}

.blogBoxWrapper .blogBox .tit {
	font-weight: 600;
	font-size: 24px;
	color: #333;
}

.blogBoxWrapper.list_mode .blogBox .img {
	width: 100%;
	aspect-ratio: 4/3;
}

.blog_icon_box02 {
	display: flex;
	gap: 10px;
	margin: 20px 0;
}

.blog_icon_box02 a {
	width: 50px !important;
	height: 50px !important;
	aspect-ratio: 1/1;
	border-radius: 50% !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	border: 1px solid #dcdcdc !important;
	background-color: #fff;
}

.blog_icon_box02 a.active {
	border-color: var(--color-primary01);
	background-color: #FFE7EF;
}

.blog_icon_box02 a.icon01 svg path {
	stroke: #929292;
	fill: #fff;
}

.blog_icon_box02 a.icon01.active svg path {
	stroke: var(--color-primary01);
	fill: var(--color-primary01);
}

/* 블로그 좋아요/공유 버튼 - 새 스타일 */
.blog_like_share_box {
	display: flex !important;
	flex-direction: row !important;
	align-items: flex-start !important;
	gap: 10px !important;
	margin: 15px 0;
	margin-bottom: 0;
}

.blog_like_share_box .like_btn_wrap {
	display: flex !important;
	flex-direction: column !important;
	align-items: center !important;
	gap: 5px !important;
}

.blog_like_share_box .like_btn,
.blog_like_share_box .share_btn {
	flex-shrink: 0;
}

.blog_like_share_box .like_btn,
.blog_like_share_box .share_btn {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid #dcdcdc;
	background-color: #fff;
	cursor: pointer;
	transition: all 0.2s ease;
}

.blog_like_share_box .like_btn:hover,
.blog_like_share_box .share_btn:hover {
	border-color: #bbb;
	background-color: #f9f9f9;
}

.blog_like_share_box .like_btn.active {
	border-color: var(--color-primary01);
	background-color: #FFE7EF;
}

.blog_like_share_box .like_btn svg path {
	stroke: #929292;
	fill: #fff;
}

.blog_like_share_box .like_btn.active svg path {
	stroke: var(--color-primary01);
	fill: var(--color-primary01);
}

.blog_like_share_box .like_count {
	font-size: 14px;
	color: #666;
	text-align: center;
}

/* 블로그 카드 제목 스타일 */
.blogBoxWrapper .blogBox .blog_card_title {
	margin-bottom: 5px;
}

.blogBoxWrapper .blogBox .blog_card_title .category_path {
	color: #888 !important;
	font-size: 15px !important;
	display: block !important;
	margin-bottom: 8px !important;
	font-weight: 400 !important;
	line-height: 1.4;
	letter-spacing: -0.3px;
}

.blogBoxWrapper .blogBox .blog_card_title .title_value {
	font-weight: 600;
	font-size: 20px;
	color: #333;
	cursor: pointer;
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	line-clamp: 2;
}

.blogBoxWrapper .blogBox .blog_card_title .title_value:hover {
	color: var(--color-primary01);
}

.blog_hash_box {
	font-size: 20px;
	font-weight: 400;
	color: #888;
	line-height: 1.2em;
}

.recruitment_detail_top_box.blog .recruitment_tit {
	text-align: center;
	padding-bottom: 30px;
	margin-bottom: 20px;
	border-bottom: 1px solid #000;
}

.blog_ment002 {
	font-size: 17px;
	line-height: 1.88em;
	color: #333;
	font-weight: 400;
}

.blog_content_slide_wrap001 {
	margin-top: 60px;
	padding-top: 30px;
	border-top: 1px solid #eee;
}

.blog_content_slide_wrap001 .tit {
	font-size: 30px;
	color: #333;
	font-weight: 600;
}

.blog_content_slide {
	margin-top: 30px;
	position: relative;
	padding: 10px 0;
}

.blog_content_slide_wrapper {
	padding: 0 25px;
	position: relative;

}

.blog_content_slide .item {
	border-radius: 5px;
	overflow: hidden;
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.08);
}

.blog_content_slide .item .img {
	width: 100%;
	aspect-ratio: 1/0.68;
	border-radius: 5px 5px 0 0;
	overflow: hidden;
}

.blog_content_slide .item .img img {
	width: 100%;
	height: 100%;
}

.blog_content_slide .item .alt_box {
	padding: 30px;
}

.blog_content_slide .item .blog_slide_tit {
	font-size: 24px;
	font-weight: 600;
	color: #333;
}

.blog_slide_arw001 {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 11;
	display: block;
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.10);
	border-radius: 50%;
}

.blog_slide_arw001.prev {
	left: 0;
}

.blog_slide_arw001.next {
	right: 0;
}

.blogBoxCustom001 .left {
	white-space: nowrap;
	margin-right: 20px;
	position: relative;
}

.blogBoxCustom001 .left a {
	color: var(--color-primary01);
	padding-right: 15px;
	position: relative;
	font-weight: 600;
}

.blogBoxCustom001 .left a::after {
	content: '';
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 1px;
	height: 21px;
	background: #DDD;
}

.blogBoxCustom001 .right {
	display: flex;
	flex-wrap: wrap;
}

.blogBoxCustom001 .right a {
	padding: 20px 40px;
	position: relative;
	font-size: 21px;
	color: #222;
	font-weight: 400;
}

.blogBoxCustom001 .right a+a::after {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 4px;
	height: 5px;
	border-radius: 50%;
	background-color: #8e8e8e;
}

@media all and (max-width:1400px) {
	.blogBoxWrapper .blogBox {
		gap: 20px;
		justify-content: center;
	}

	.blog_content_slide .item .alt_box {
		padding: 20px;
	}

	.blog_content_slide .item .blog_slide_tit {
		font-size: 20px;
	}
}

@media all and (max-width:1024px) {
	.prd_tab_wrapper.mypage .prd_tab_slide_box01 {
		overflow: hidden;
		flex-wrap: wrap;
	}

	.prd_tab_wrapper.mypage .prd_tab_slide_box01 .item {
		padding: 0 10px;
		white-space: nowrap;
		flex: unset;
	}

	.blogBoxWrapper .blogBox .tit {
		font-size: 20px;
	}

	.blog_hash_box {
		font-size: 16px;
	}

	.blogBoxWrapper.list_mode .blogBox {
		width: calc(50% - 20px);
	}

	/* 목록형 (list_mode 없음) - 가로 배치 유지 */
	.blogBoxWrapper:not(.list_mode) .blogBox {
		display: flex;
		flex-wrap: nowrap;
		gap: 20px;
	}

	.blogBoxWrapper:not(.list_mode) .blogBox .img {
		width: 300px;
		flex-shrink: 0;
	}

	.blogBoxWrapper:not(.list_mode) .blogBox .alt_box {
		flex: 1;
		min-width: 0;
		padding: 10px;
		text-align: left;
	}

	/* 카드형 (list_mode) - 세로 배치 */
	.blogBoxWrapper.list_mode .blogBox .img {
		width: 100%;
		max-width: unset;
	}

	.blogBoxWrapper.list_mode .blogBox .alt_box {
		width: 100%;
		padding: 20px;
		text-align: left;
	}

	.blog_icon_box02 {
		justify-content: flex-start;
	}

	.shop_item_info_con.mypage .tit_box_custom01.mode02 .custom_tit01 {
		min-width: 160px;
		font-size: 18px;
	}
}

@media all and (max-width:700px) {
	.shop_mypage_top_box01 {
		min-height: unset;
	}

	.shop_mypage_top_box01 .box {
		width: 100%;
		padding: 30px;
	}

	.shop_mypage_top_box01 .box+.box {
		border-left: unset;
		border-top: 1px solid #eee;
	}

	.shop_mypage_deliver_box01 .shop_mypage_deliver_step_box01 .tit01 {
		font-size: 14px;
	}

	.shop_mypage_deliver_box01 .shop_mypage_deliver_step_box01:not(:last-child)::after {
		width: 18px;
		height: 18px;
	}

	.shop_mypage_recent_box01 .shop_price_prd_box01 {
		flex-wrap: wrap;
	}

	.shop_price_prd_box01 .info_box01 {
		width: 100%;
	}

	.shop_price_prd_box01 .price_box01 {
		margin-left: auto;
	}

	.blogBoxWrapper.list_mode .blogBox {
		width: 100%;
		text-align: center;
	}

	.blogBoxWrapper.list_mode .blogBox .icon_box {
		justify-content: center;
	}

	.shop_item_info_con.mypage .tit_box_custom01.mode02 .custom_tit01 {
		min-width: 160px;
		font-size: 16px;
	}
}

/* 블로그 게시판 3열 카드형 (list_mode) - 우선순위 강화 */
.recruitment_table01.blogBoxWrapper.list_mode {
	display: flex !important;
	flex-wrap: wrap !important;
	gap: 30px 40px !important;
	border-bottom: unset !important;
}

.recruitment_table01.blogBoxWrapper.list_mode .blogBox {
	display: block !important;
	width: calc(33.33333% - 27px) !important;
	border-radius: 5px;
	overflow: hidden;
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.08);
	padding: unset !important;
	border-bottom: unset !important;
}

.recruitment_table01.blogBoxWrapper.list_mode .blogBox .alt_box {
	padding: 20px !important;
}

.recruitment_table01.blogBoxWrapper.list_mode .blogBox .img {
	width: 100% !important;
	aspect-ratio: 4/3 !important;
	overflow: hidden !important;
}

.recruitment_table01.blogBoxWrapper.list_mode .blogBox .img img {
	width: 100% !important;
	height: 100% !important;
	object-fit: cover !important;
}

@media all and (max-width:1024px) {
	.recruitment_table01.blogBoxWrapper.list_mode .blogBox {
		width: calc(50% - 20px) !important;
	}
}

@media all and (max-width:700px) {
	.recruitment_table01.blogBoxWrapper.list_mode .blogBox {
		width: 100% !important;
	}
}

/* END 블로그 게시판 */


/* 하트버튼 */
.like_number_yo {
	display: flex;
	justify-content: center;
	align-items: center;
}


@media all and (max-width:768px) {
}

/* 20250904 추가 */
/* 갤러리게시판 커스텀 */
/* 카드형 스타일 (3열, 이미지 원본 비율 유지, 가로 정렬) */
.com_prd_box_gallery_total_wrapper.card_type {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 20px !important;
    align-items: flex-start !important;
}

.com_prd_box_gallery_total_wrapper.card_type li {
    width: calc(33.3333% - 14px) !important;
    margin-bottom: 0 !important;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.08);
    border-radius: 5px;
    overflow: hidden;
}

.com_prd_box_gallery_total_wrapper.card_type li a {
    display: block;
}

.com_prd_box_gallery_total_wrapper.card_type li .img_box {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: unset !important;
    margin-bottom: 0;
}

.com_prd_box_gallery_total_wrapper.card_type li .img_box img {
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
    display: block;
}

.com_prd_box_gallery_total_wrapper.card_type li .alt_box {
    padding: 20px;
}

.com_prd_box_gallery_total_wrapper.card_type li .alt_box .tit {
    font-size: 15px;
    font-weight: 600;
    color: #333;
}

.com_prd_box_gallery_total_wrapper.card_type li .title_value {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.4;
}

.com_prd_box_gallery_total_wrapper.card_type li .time_box {
    font-size: 15px;
    color: #888;
    margin-top: 3px;
}

:root {
    --clr-theme-1: #6DB0E5 !important;
    
}

.btn {
    --bs-btn-border-color: unset !important;
}

p {
    text-transform: unset !important;
}

@media (max-width: 1024px) {
    .com_prd_box_gallery_total_wrapper.card_type li {
        width: calc(50% - 10px) !important;
    }
}

@media (max-width: 768px) {
    
    .com_prd_box_gallery_total_wrapper.card_type {
        gap: 15px !important;
    }
    
    .com_prd_box_gallery_total_wrapper.card_type li {
        width: 100% !important;
    }
    
    .com_prd_box_gallery_total_wrapper.card_type li .alt_box {
        padding: 15px;
    }
    
    .com_prd_box_gallery_total_wrapper.card_type li .alt_box .tit {
        font-size: 16px;
    }
    
    .com_prd_box_gallery_total_wrapper.card_type li .title_value {
        font-size: 16px;
    }
}


/* 20250911 추가 */
.alt {
	word-break: break-word;
}

/* 읽기 페이지 목록 형태 UI 스타일 */
.read_page_list {
	margin-top: 20px;
	margin-bottom: 20px;
}

.read_page_list .recruitment_table01 {
	border-top: 1px solid #ddd;
}

.read_page_list .recruitment_table01.change_box01.list_mode .noticeListFlexBox {
	border-bottom: 1px solid #eee;
	padding: 21px 15px !important;
	transition: background-color 0.2s ease;
}

.read_page_list .noticeListFlexBox:hover {
	background-color: #f9f9f9;
}

/* 현재 읽고 있는 글 하이라이트 */
.read_page_list .noticeListFlexBox.current {
	background-color: #f0f7ff;
	border-left: 3px solid #4a90d9;
}

.read_page_list .noticeListFlexBox.current .title_value {
	font-weight: bold;
	color: #2c5aa0;
}

/* 목록 제목 링크 커서 */
.title_value[onclick],
.category_path[onclick] {
	cursor: pointer;
}

.read_page_list .noice_board_alt_box {
	display: flex;
	align-items: center;
	gap: 15px;
}

.read_page_list .noice_board_alt_box .tit {
	flex: 1;
}

.read_page_list .noice_board_alt_box .date_box {
	min-width: 100px;
	text-align: center;
}

.read_page_list .noice_board_alt_box .order3 {
	min-width: 100px;
	margin-right: 20px;
	text-align: center;
}

.read_page_list .noice_board_alt_box .name_col {
	min-width: 80px;
	flex-shrink: 0;
}

.read_page_list .noice_board_alt_box .date_col {
	min-width: 100px;
	flex-shrink: 0;
}

@media (max-width: 768px) {
	.read_page_list .noice_board_alt_box {
		flex-wrap: wrap;
	}
	
	.read_page_list .noice_board_alt_box .tit {
		width: 100%;
		margin-bottom: 5px;
	}
	
	.read_page_list .noice_board_alt_box .date_box {
		min-width: auto;
	}
}

/* 현재 읽고 있는 글 하이라이트 */
.read_page_list_table tbody tr.current {
	background-color: #f0f7ff;
	border-left: 3px solid #4a90d9;
}

.read_page_list_table tbody tr.current .title_value {
	font-weight: bold;
	color: #2c5aa0;
}

.read_page_list_table tbody td.name_col {
	color: #666;
}

.read_page_list_table tbody td.no_data {
	padding: 30px;
	text-align: center;
	color: #999;
}

@media (max-width: 768px) {
	
	.read_page_list_table tbody td.name_col,
	.read_page_list_table tbody td.date_col {
		display: inline-block;
		font-size: 12px;
	}
	
	.read_page_list_table tbody td.name_col::after {
		content: " | ";
		margin: 0 5px;
	}
}

/******************************************************************/
/*               SHOPJ02 MIGRATION STYLES START                   */
/*               Date: 2025-12-26                                 */
/******************************************************************/

.programCon{max-width:1200px; margin:15px auto; font-family:'Nanum Gothic', sans-serif; letter-spacing:0; overflow:hidden;}

.findCon_wrap > div {float:left; width:50%; margin:40px 0 0; border-top:1px solid #e1e3e4; padding-top:40px;}

.findCon_wrap > div:first-of-type .in_hei {padding-right:5%;}

.writeForm > table{width:100%; border-top:2px solid #888;}


.writeForm > table > tbody > tr{border-bottom:1px solid #e1e3e4; }

.writeForm > table > tbody > tr > th{padding:10px; font-size:14px; color:#222; background:#f9f8f8}

.writeForm > table > tbody > tr > td{padding:15px 5px 15px 15px; color:#444;}

.writeForm table tr td > span{margin:0 10px; font-size:18px; color:#444; vertical-align:middle;}

.program_table table tr td.bna > span {display:block; position:absolute; width:50px; padding:2px 0; bottom:10px; left:15px; font-size:11px; color:#fff; background:#666; text-align:center;}

.program_table table tr td.bna > span.colafer{background-color:var(--color-primary01);}

.branchSelect > p{font-size:14px; color:#454545; margin-bottom:10px; font-weight:bold; margin-top:60px;}

.branchSelect > p:first-of-type{margin-top:0;}


.writeForm_top > p{font-size:14px; color:#454545; margin-bottom:10px; font-weight:bold; margin-top:60px;}

.writeForm_top > p:first-of-type{margin-top:0;}

.schedule table.calendar_table tbody td.ent {background:#f6f9fd;}

.schedule table.calendar_table tbody td.onBg{background:#f6f9fd;}


.schedule > div .cal_check{display:inline-block; width:18px; height:16px; background:#f6f9fd; box-sizing:border-box; border:1px solid #ddd; margin:0 10px 0 0; vertical-align:middle;}

.schedule_time > p.titype {font-size:14px; font-weight:700; color:#222; border:0; background:none; text-align:left; margin:20px 0 10px;}

.calender_wrap .under_wrap > .sr_wrap {float:right;}

.calender_wrap .under_wrap > .sr_wrap i {display:block; float:left; width:1px; height:17px; background:#d7d7d7; margin:6px 10px 0px;}

.calender_wrap .under_wrap > .sr_wrap input {width:90px; height:30px; text-align:center; border:1px solid #e1e3e4; font-size:13px; color:var(--color-primary01); box-sizing:border-box; padding:0 2px; vertical-align:baseline; margin:0 3px;}

.calender_wrap .under_wrap > .sr_wrap input.no02 {width:70px;}

.faq_table > tbody > tr{border-bottom:1px solid #e1e3e4;}

.faq_table > tbody > tr > th{text-align:left; height:60px; padding:0 40px; font-size:16px; color:#222; cursor:pointer;}

.faq_table > tbody > tr > td{text-align:left; display:none; padding:50px 40px; font-size:14px; background:#fcfcfc; line-height:1.5; color:#444;}

.faq_table > tbody > tr > td img {max-width:100%;}

.faq_table tr.on_e,.faq_table tr:hover {background:#f3f8fe;}

.faq_table tr.on_e th,.faq_table tr:hover th {background:#f3f8fe; color:#0063e9;}

.gal_wrap ul li a img{width:100%; height:182px;}

.gal_wrap ul li a img.noimg_ty {width:100%; height:182px;}

.bna_wrap ul li a .before > span {display:block; position:absolute; width:50px; padding:2px 0; bottom:0; left:0; font-size:11px; color:#fff; background:#666; text-align:center;}

.bna_wrap ul li a .after > span {display:block; position:absolute; width:50px; padding:2px 0; bottom:0; left:0; font-size:11px; color:#fff; background:var(--color-primary01); text-align:center;}

.bna_wrap ul li a > span{position:absolute; top:50%; left:50%;}

.bna_wrap ul li div.beafphotocc .photoday .btn_wrap span:last-of-type {margin-right:12px;}

.readEdit .readBnA > div{width:40%; text-align:center;}

.readEdit .readBnA > div img{width:100%; max-width:300px; height:300px;}

#member .mem_wrap  {max-width:1200px; margin:0 auto; padding:80px 20px; box-sizing:border-box;}

#member .mem_wrap > h4 {font-size:18px; color:#307dd4;}

#member #agree ol li > ul { margin:1px 0 2px 2px;   }

.writeForm table tr td .hope_c > label {margin:0;}

.comi_list ul li .txt_type > h5 {margin:12px 0 20px; font-size:17px; font-weight:700; color:#222;}

.branch_table > tbody > tr {border-top:1px solid #e1e3e4;}

/* 기존 스타일 - common_table01.branch_table 스타일이 우선 적용됨 */
.branch_table > tbody > tr > th {font-size:14px; color:#444;}

.branch_table > tbody > tr > td {text-align:left; display:none; padding:30px 45px; font-size:14px; line-height:1.5; color:#444;}

.branch_table > tbody > tr > td img {max-width:100%;}

.branch_table > thead > tr > th {height:45px; padding:0 10px; font-size:14px; color:#222; background:#f9f8f8;}

.branch_table > tbody > tr > th .btn {vertical-align:middle; display:inline-block; width:54px; height:30px; font-size:13px; color:#307dd4; box-sizing:border-box; text-align:center; line-height:28px; border:1px solid #307dd4;}

.branch_table > tbody > tr > th .btn.b_type {border:1px solid #222; color:#222;}

.branch_table > tbody > tr > td .up_txt {overflow:hidden;}

.branch_table > tbody > tr > td .up_txt > div {float:left; width:49%;}

.branch_table > tbody > tr > td .up_txt > div + div {margin-left:2%;}

.branch_table > tbody > tr > td .up_txt dl {display:table; width:100%; margin-bottom:10px; font-size:14px; vertical-align:middle;}

.branch_table > tbody > tr > td .up_txt dt {display:table-cell; width:72px; font-weight:700; color:#222; vertical-align:middle;}

.branch_table > tbody > tr > td .up_txt dd {display:table-cell; width:calc(100% - 72px); color:#444; vertical-align:middle;}

.branch_table > tbody > tr > td .map_type {width:100%; height:273px; margin-top:20px; line-height:273px; background:#f0f0f0; text-align:center;}

.selc_map > div {float:left; width:50%;}

	.gal_wrap ul li a img{height:22.7272727273vw;}

	.gal_wrap ul li a img.noimg_ty {max-width:100%; height:22.7272727273vw;}

    
    .mama{
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100%;
    }

    
    
    .program_table table tr.img_Pon {padding-left:130px; min-height:100px}

    .program_table table tr.img_Pon td{right:auto; left:15px}

	.program_table table tr td.bna > span {left:5px; bottom:5px;}

	.program_table table tr td.tit span.up_btnw > span {vertical-align:middle;}


	.branchSelect > p{margin-top:30px;}


	.writeForm_top > p{margin-top:30px;}

	.program_search > span{display:block; margin-top:10px;}

	.writeForm table tr td span{font-size:16px;}


	.faq_table > tbody > tr > th {height:auto; padding:10px 20px;}

	.faq_table > tbody > tr > td {padding:6% 20px;}

	.bna_wrap ul li a > span{position:absolute; top:50%; left:50%;}

	.readEdit .readBnA > div img{height:auto;}


	#member .mem_wrap {padding:10% 3.125%;}


	
	.writeForm.check_th table tr th {display:block; float:left; height:auto; padding:20px 0 0 0; font-size:13px; background:none;}
	
	.writeForm.check_th table tr.spty label {margin-right:15px;}

    
    
    
    
	.gal_wrap ul li a img{height:26.6363636364vw;}

    
	.gal_wrap ul li a img.noimg_ty {height:26.6363636364vw;}


	
	.branch_table > thead > tr > th {height:auto; padding:12px 1.2%;}

	.branch_table > tbody > tr > th {height:auto; padding:12px 2%;}

	.branch_table > tbody > tr > td {padding:4% 3%;}

	.branch_table > tbody > tr > th .btn {width:40px; height:28px; font-size:12px; line-height:26px;}

	.branch_table > tbody > tr > td .up_txt > div {float:none; width:100%;}

	.branch_table > tbody > tr > td .up_txt > div + div {margin-left:0;}

	.branch_table > tbody > tr > td .up_txt dl {font-size:13px;}

	.branch_table > tbody > tr > td .up_txt dt {width:62px;}

	.branch_table > tbody > tr > td .up_txt dd {width:calc(100% - 62px);}

	.selc_map > div {float:none; width:100%;}

    
    
    .program_table table tr.img_Pon{min-height: 70px; padding-left:80px}

    .program_table table tr.img_Pon td{left:0;}

	.calender_wrap .under_wrap > p {float:none; text-align:left;}

	.calender_wrap .under_wrap > .sr_wrap {float:none; margin-top:2%; text-align:right; font-size:0;}

	.calender_wrap .under_wrap > .sr_wrap p {float:none; display:inline-block; letter-spacing:-0.025em;}

	.calender_wrap .under_wrap > .sr_wrap i {float:none; display:inline-block; margin:0 10px;}

	.calender_wrap .under_wrap > .sr_wrap input {width:80px;}

	.calender_wrap .under_wrap > .sr_wrap input.no02 {width:50px;}

	.gal_wrap ul li a img{height:auto;}

	.gal_wrap ul li a img.noimg_ty{width:100%; height:auto;}

	.findCon_wrap > div {float:none; width:100%; margin:0 0 0; border-top:0; padding-top:7%;}

	.findCon_wrap > div:first-of-type .in_hei {padding-right:0;}



	
	.writeForm table tr td input[type=text].inputNum02 {width:12%; padding:0 5px;}

	.writeForm table tr td .hope_c input[type=text].inputNum02  {width:25%;}

	.comi_list ul li .txt_type > p {font-size:12px;}

	.comi_list ul li .txt_type > h5 {margin:8px 0 10px; font-size:15px;}

	.calender_wrap .under_wrap > .sr_wrap input {margin:0;}

	.calender_wrap .under_wrap > .sr_wrap i {margin:0 5px;}

	.calender_wrap .under_wrap > .sr_wrap i {display:none;}

	.calender_wrap .under_wrap > .sr_wrap input.no02 {margin-top:2%; width:80px;}

.member_box02_In > a{font-size:16px; padding-left:20px; height:70px; line-height:70px; letter-spacing:-0.05em; color:#fff !important; width:49.5%; margin-right:1%; margin-bottom:1%;  box-sizing:border-box; float:left; display:block;}

.member_box02_In > a.a_bg4 > a {color:#fff !important; font-size:16px !important;}

.member_box02_In > a:nth-of-type(2n){margin-right:0;}

.member_box02_In > a.a_bg1{background:#a9a9a9 url("/img/google_bg.jpg") 100% 100% no-repeat; }

.member_box02_In > a.a_bg2{background:#ffae00 url("/img/kakao_bg.jpg") 100% 100% no-repeat; }

.member_box02_In > a.a_bg3{background:#445f95 url("/img/facebook_bg.jpg") 100% 100% no-repeat;}

.member_box02_In > a.a_bg4{background:#4cac3b url("/img/naver_bg.jpg") 100% 100% no-repeat; }

	.member_box02_In > a{padding-left:0px;}

	.member_box02_In > a{width:100%; float:none;}

	.member_box02_In > a{font-size:14px; }

.five_table1 .img_box img{width:100%; height:100%}

    .five_table2 table tr.img_Pon{padding-left:15px; min-height: auto}

    .five_table2 table tr.img_Pon .nt_list{float: left}

    .five_table2 table.ig_type tr t.d.nt_list{position: absolute; top:50%; transform: translateY(-50%); height: auto}

.text_box > div{width:430px; margin:20px auto;}

.text_box  .input_box{width:100%; font-size:16px; color:#444; text-align:left;}

	.text_box > div{width:100%}



.table_list .box{margin:5px 0;}

.table_list .box:after{clear:both; content:""; display:block; height:0; visibility:hidden}

.table_list .box .text{width:140px; height:38px; font-size:14px; color:#4d4d4d; font-weight:400; float:left; line-height:38px;}

.table_list .box .input_option{width:calc(100% - 160px); margin-left:20px; float:left}

.table_list .box .input_option input{height:38px; box-sizing:border-box;}

.table_list .box .input_option select{height:38px; box-sizing:border-box;}

.table_list .box .input_option .return{margin:5px 0;}

.table_list .box .input_option .return:after{clear:both; content:""; display:block; height:0; visibility:hidden}

.table_list .box .input_option select.w100{width:100%; }

.table_list .box .input_option textarea{width:100%; height:200px; box-sizing:border-box;}

.table_list .select_product .input_option:after{clear:both; content:""; display:block; height:0; visibility:hidden}

.table_list .select_product .input_option input{width:calc(100% - 90px); float:left; margin-right:10px}

.table_list .select_product .input_option a{width:80px; text-align:center; border:1px solid #c5c5c5; box-sizing:border-box; line-height:38px; color:#4d4d4d; font-size:14px; height:38px; display:block; float:left;}

.table_list .box .input_option span {margin-right:18px; height:38px; display:inline-block; line-height:38px; position:relative; padding-left:28px; line-height:1.6; font-size:0; vertical-align:middle}

.table_list .box .input_option span input{cursor:pointer; position:absolute; left:0; top:50%; margin-top:-10px; width:20px; height:20px;}

.table_list .box .input_option span label{display:inline-block; font-size:14px; color:#111; cursor:pointer; vertical-align:middle; margin-top:6px;}

.table_list .box .input_option span label:after{position:absolute; left:0; top:50%; margin-top:-12px; width:23px; height:23px;}

.table_list .phone .after:after{clear:both; content:""; display:block; height:0; visibility:hidden}

.table_list .phone .input_option select{width:150px; margin-right:10px; float:left}

.table_list .phone .input_option input{width:calc(100% - 160px); float:left}

.table_list .phone .input_option p{font-size:13px; color:gray; margin:2px;}


.table_list_bot_btn{margin-top:50px; text-align:center;}

.table_list_bot_btn a {width:calc(50% - 10px); display:inline-block; border:1px solid #c5c5c5; font-size:14px; color:#111; height:38px; line-height:38px; text-align:center;}

.table_list_bot_btn a:nth-of-type(2){background:#007bc8; border-color:#007bc8; color:#fff}

	.table_list .box .text{width:100px}

	.table_list .box .input_option{width:calc(100% - 120px)}

	.table_list .phone .input_option select{width:80px}

	.table_list .phone .input_option input{width:calc(100% - 90px)}

.programCon_custom01 .swiper-slide {
	flex-shrink: 0;
}

.prd_tab_wrapper.shop_info {
	background-color: #fff;
	z-index: 99;
}

/* 탭 메뉴 기본 스타일 */
.prd_tab_wrapper.shop_info {
	background-color: #fff;
	z-index: 1040;
}

/* 스크롤 시 fixed로 헤더 아래에 고정 (left, width는 JS에서 원래 위치로 설정) */
.prd_tab_wrapper.shop_info.onScroll {
	position: fixed;
	top: 80px; /* 블랙 헤더 높이 아래 */
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.prd_tab_wrapper.shop_info.onScroll .prd_tab_slide_box01 {
	margin-top: unset;
}

/* 탭 메뉴 고정 시 placeholder */
.tab_placeholder {
	display: none;
}

.shop_item_info_detail_box01 {
	position: relative;
	max-width: 1400px;
	margin: 50px auto 0; /* 상품 정보 영역과의 상단 간격 */
	display: flex;
	flex-wrap: wrap;
}

/* 탭 메뉴 - 기본 전체 너비 (스크롤 전) */
.prd_tab_wrapper.shop_info {
	width: 100%;
}

.prd_tab_wrapper.shop_info .prd_tab_slide_box01 {
	margin-top: 0;
	padding: unset;
}

.prd_tab_wrapper.mypage .prd_tab_slide_box01 {
	padding: unset;
}


.prd_tab_wrapper.shop_info .prd_tab_slide_box01 .item {
	flex: 1;
}

/* 상품상세 탭 앵커 스크롤 마진 (헤더 + 탭 높이 보정) */
#section_detail,
#section_delivery,
#section_review,
#section_qna {
	scroll-margin-top: 150px; /* 헤더(80px) + 탭(60px) + 여백 */
}

@media all and (max-width: 1400px) {
	#section_detail,
	#section_delivery,
	#section_review,
	#section_qna {
		scroll-margin-top: 140px;
	}
}

@media all and (max-width: 768px) {
	#section_detail,
	#section_delivery,
	#section_review,
	#section_qna {
		scroll-margin-top: 130px; /* 모바일 헤더(60px) + 탭(60px) + 여백 */
	}
}

/* ===== 상품상세 2컬럼 레이아웃 (G마켓 스타일) ===== */
.shop_item_content_wrapper {
	display: flex;
	max-width: 1400px;
	margin: 0 auto;
	gap: 30px;
	position: relative;
}

/* 왼쪽: 상세 콘텐츠 영역 */
.shop_item_left_content {
	flex: 1;
	min-width: 0;
}

/* 스크롤 시에도 왼쪽 콘텐츠 너비 유지 (margin 불필요 - 2컬럼 레이아웃 유지) */

/* 오른쪽: 옵션 영역 wrapper (flex에서 공간 유지) */
.shop_item_right_wrapper {
	width: 280px;
	flex-shrink: 0;
	position: relative;
}

/* 오른쪽: 옵션 선택 영역 - 기본 상태 */
.shop_item_right_sticky {
	width: 280px;
}

/* 스크롤 시 fixed 상태 (left는 JS에서 설정) */
.shop_item_right_sticky.is_fixed {
	position: fixed;
	top: 150px; /* 헤더(80px) + 탭 메뉴(60px) + 여백(10px) */
	width: 280px;
	max-height: calc(100vh - 170px);
	overflow-y: auto;
	z-index: 1039;
}

/* 관련 상품 위에서 멈춤 상태 (absolute) */
.shop_item_right_sticky.is_stopped {
	position: absolute;
	width: 280px;
}
.shop_item_right_sticky .sticky_inner {
	background: #fff;
	border: 1px solid #e5e5e5;
	border-radius: 8px;
	padding: 20px;
}
.shop_item_right_sticky .sticky_option_wrapper {
	margin-bottom: 15px;
}
.shop_item_right_sticky .sticky_option_wrapper .option_tit {
	font-size: 14px;
	font-weight: 600;
	color: #333;
	margin-bottom: 10px;
}
.shop_item_right_sticky .option_select_box01 select {
	width: 100%;
	height: 42px;
	padding: 0 12px;
	border: 1px solid #ddd;
	border-radius: 4px;
	font-size: 14px;
	margin-bottom: 8px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 8L1 3h10z'/%3E%3C/svg%3E") no-repeat right 12px center;
	cursor: pointer;
}
.shop_item_right_sticky .option_result_box01_wrapper {
	margin-top: 10px;
	max-height: 200px;
	overflow-y: auto;
}
.shop_item_right_sticky .option_result_box01 {
	background: #f8f8f8;
	border-radius: 6px;
	padding: 8px 10px;
	padding-right: 28px;
	margin-bottom: 6px;
	position: relative;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 6px;
}
/* l_box를 투명 래퍼로 만들어 내부 요소들이 부모 flex에 참여하도록 */
.shop_item_right_sticky .option_result_box01 .l_box {
	display: contents;
}
/* 옵션명 - 전체 너비 차지 */
.shop_item_right_sticky .option_result_box01 .tit {
	width: 100%;
	font-size: 14px;
	color: #333;
	word-break: break-all;
	padding-right: 15px;
}
/* 수량버튼 */
.shop_item_right_sticky .option_result_box01 .shop_prd_count_box01 {
	display: inline-flex;
	align-items: center;
}
.shop_item_right_sticky .option_result_box01 .shop_prd_count_box01 .shop_option_btn01 {
	width: 27px;
	min-width: 27px;
	height: 27px;
	border: 1px solid #ddd;
	background: #fff;
	font-size: 15px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}
.shop_item_right_sticky .option_result_box01 .shop_prd_count_box01 .shop_option_count01 {
	width: 37px;
	height: 27px;
	text-align: center;
	border: 1px solid #ddd;
	border-left: none;
	border-right: none;
	font-size: 13px;
	display: flex;
	align-items: center;
	justify-content: center;
}
/* 금액 - 수량 버튼 바로 오른쪽에 표시 */
.shop_item_right_sticky .option_result_box01 .shop_prd_price_box01 {
	display: inline-flex !important;
	align-items: center;
	margin-left: 8px;
	height: 27px;
}
.shop_item_right_sticky .option_result_box01 .shop_prd_price01 {
	font-size: 14px;
	font-weight: 600;
	color: #333;
	display: flex;
	align-items: center;
	height: 100%;
}
/* X 버튼 (shop_prd_cancle_btn01) 우측 상단 위치 */
.shop_item_right_sticky .option_result_box01 .shop_prd_cancle_btn01 {
	position: absolute;
	top: 8px;
	right: 8px;
	width: 20px;
	height: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.shop_item_right_sticky .option_result_box01 .shop_prd_cancle_btn01:hover span {
	background: #333;
}
.shop_item_right_sticky .sticky_result_wrapper {
	border-top: 1px solid #eee;
	padding-top: 8px;
}
.shop_item_right_sticky .shop_prd_info_quick_result01 {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 8px;
}
.shop_item_right_sticky .shop_prd_info_quick_result01 .tit {
	font-size: 15px;
	color: #666;
}
.shop_item_right_sticky .shop_prd_info_quick_result01 .price01 {
	font-size: 18px;
	font-weight: 700;
	color: #000;
}
.shop_item_right_sticky .login_submit_btn_box01 {
	display: flex;
	gap: 8px;
	margin-top: 20px;
}
.shop_item_right_sticky .login_submit_btn_box01 .login_chk_btn01 {
	flex: 1;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	font-weight: 600;
	border-radius: 4px;
}

/* 1400px 이하 - sticky는 자동으로 위치 유지 */

/* 관련 상품 섹션 (2컬럼 레이아웃 밖 - 전체 너비) */
.shop_relation_product_section {
	max-width: 1400px;
	margin: 0 auto;
}
.shop_relation_product_section .inter_prod_box {
	margin: 0;
	padding: 50px 0;
}

/* 1200px 이하에서 우측 영역 너비 축소 */
@media all and (max-width: 1200px) {
	.shop_item_content_wrapper {
		gap: 20px;
	}
	.shop_item_right_wrapper {
		width: 250px;
	}
	.shop_item_right_sticky {
		width: 250px;
	}
	.shop_item_right_sticky.is_fixed {
		width: 250px;
	}
}

/* 1024px 이하에서 1컬럼 레이아웃 (모바일 바텀바 사용) */
@media all and (max-width: 1024px) {
	.shop_item_content_wrapper {
		display: block;
	}
	.shop_item_right_wrapper {
		display: none !important;
	}
	.shop_item_left_content {
		width: 100%;
	}
	/* 모바일에서는 탭 메뉴 전체 너비 */
	.prd_tab_wrapper.shop_info {
		width: 100%;
	}
	.prd_tab_wrapper.shop_info.onScroll {
		left: 0 !important;
		width: 100% !important;
		top: 60px; /* 모바일 헤더 높이 */
	}
}

.program_search_box01 .program_search_btn01 {
	min-width: 25px;
}

.com_prd_box_list_wrapper > ul {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
}

.com_prd_box_list_wrapper:not(.list_type) > ul > li {
	width: calc(33.3333% - 26.7px);
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.08);
	border-radius: 5px;
	overflow: hidden;
}


.com_prd_box_list_wrapper:not(.list_type) > ul > li .txt_type {
	padding: 30px;
}

.com_prd_box_list_wrapper > ul > li .txt_type h5 {
	font-size: 24px;
	color: #333;
	font-weight: 600;
	overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
	padding-bottom: 10px;
}


.com_prd_box_list_wrapper > ul > li .txt_type .txt_w {
	overflow: hidden;
    text-overflow: ellipsis;
    display: flex;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    margin-top: 10px;
    color: #888;
    font-size: 15px;
    font-weight: 400;
	line-height: 1.41em;
	gap: 10px;
}

.com_prd_box_list_wrapper > ul > li .txt_type .txt_w .list_view {
	font-weight: 600;
	color: #333;
	margin-bottom: 4px;
	min-width: 110px;
}


.com_prd_box_list_wrapper > ul > li .txt_type .txt_w .list_alt {
	width: calc(100% - 120px);
}

/* board_shopj02.css 중복 스타일 제거됨 - board.css 7051행 list_type 섹션 사용 */

.prd_detail_alt_box + .prd_detail_alt_box {
	margin-top: 20px;
}

.new_etc_wrapper {
	max-width: 1400px;
}

.login_form_box01 + .login_form_box01 {
	margin-top: 20px;
}

.login_find_box01 a + a {
	padding-left: 6px;
	margin-left: 6px;
}

.login_find_box01 a + a::after {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 2px;
	height: 2px;
	background-color: #888;
	border-radius: 50%;
}

.login_ment01.gray {
	color: #888;
}

.login_etc_wrapper + .login_etc_wrapper {
	margin-top: 40px;
}

.schedule_wrap.custom01 .schedule table.calendar_table tbody td.on p,
.schedule_wrap.custom01 .schedule table.calendar_table tbody td#r_click span {
	display: inline-flex;
    width: 50px;
    height: 50px;
    align-items: center;
	justify-content: center;
    margin: 0;
	border: 2px solid #FFF;
	background: #FFEDF2;
	box-shadow: 0px 0px 10px 0px rgba(225, 0, 69, 0.30);
	color: var(--color-primary01);
	font-size: 20px;
	font-weight: 500;
	border-radius: 12.59px;
}

.recruitment_table01 .box.review .date_box .review_date {
	width: auto;
	white-space: nowrap;
}

.faq_wrapper01 .faq_table > tbody > tr {
    border-top: 1px solid #eee;
}

.faq_wrapper01 .faq_table tr.on_e,
.faq_wrapper01 .faq_table > tbody > tr:hover {
    background: transparent;
}

.faq_wrapper01 .faq_table tr.on_e th, 
.faq_wrapper01 .faq_table > tbody > tr:hover th {
    background: transparent;
    color: #333;
}

.faq_wrapper01 .faq_table > tbody > tr:hover th {
	background-color: #f9f9f9;
}

.faq_wrapper01 .faq_table > tbody > tr > th {
    text-align: left;
    height: unset;
	min-height: 125px;
    padding: 20px 0;
	padding-right: 30px;
    font-size: 16px;
    color: #333;
    cursor: pointer;
	position: relative;
}

.faq_wrapper01 .faq_table > tbody > tr > th::after {
	content: '';
	position: absolute;
	width: 22px;
	height: 22px;
	background: url('/img/faq_arw01.png') no-repeat center / cover;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	transition: all 0.3s ease-in-out;
}

.faq_wrapper01 .faq_table > tbody > tr.on_e > th::after {
	transform: translateY(-50%) rotate(-180deg);
}

.faq_wrapper01 .faq_table > tbody > tr > th .tit {
	font-size: 24px;
	color: #333;
	font-weight: 600;
}

.faq_wrapper01 .faq_table > tbody > tr > th .label01 {
	margin-bottom: 20px;
	color: var(--color-primary01);
	font-size: 17px;
	font-weight: 400;
}

.faq_wrapper01 .faq_table > tbody > tr > td {
    padding: 30px;
    font-size: 17px;
    background: #F9F9F9;
	font-size: 17px;
	color: #888;
	font-weight: 400;
	line-height: 1.88em;
}


.selc_map.custom01 > div {
	float: unset;
}

.common_table01.branch_table > thead > tr > th {
    height: 65px;
    padding: 0 10px;
    font-size: 20px;
	font-weight: 600;
    color: #333;
    background: #f9f8f8;
    border-bottom: 2px solid #333;
}

.common_table01.branch_table > tbody > tr > th {
    height: 65px;
    font-size: 20px;
    color: #333;
	font-weight: 400;
    word-break: break-all;
}

.common_table01 > tbody > tr.list_alt01 > td {
    padding: 30px 60px;
    font-size: 14px;
    line-height: unset;
	background-color: #F9F9F9;
}

.branch_table > tbody > tr {
    border-top: 1px solid #EEE;
}

.common_table01.branch_table > tbody > tr > td .map_type {
    width: 100%;
    height: 360px;
    margin-top: 30px;
    line-height: 360px;
    background: #f0f0f0;
    text-align: center;
}

	.common_table01.branch_table > thead > tr > th,
	.common_table01.branch_table > tbody > tr > th {
		font-size: 16px;
		height: 55px;
	}

	.common_table01.branch_table > tbody > tr > td .map_type {
		height: 260px;
	}

	.common_table01 > tbody > tr.list_alt01 > td {
		padding: 30px;
	}

	.selc_map.custom01 > div {
		width: 100%;
	}

.history_wrapper01 .history_box01 + .history_box01 {
	margin-top: 80px;
}

.history_wrapper01 .history_alt_box01 + .history_alt_box01 {
	margin-top: 20px;
}

.list_mode .box_yo > a{padding: 15px 0; display: flex; width: 100%; align-items: center;}


.custom_beadf_flex_box01 > div {
	width: calc(50% - 15px);
	border-radius: 5px;
	overflow: hidden;
}

.custom_beadf_flex_box01 > div .t_txt {
	width: 100%;
	padding: 20px;
	text-align: center;
	font-size: 20px;
	font-weight: 600;
	color: #fff;
	display: block;
}

.custom_beadf_flex_box01 > div .img {
	
	width: 100%;
}

.custom_beadf_flex_box01 > div .img img {
	width: 100%;
	height: auto;
	object-fit: contain;
}

.filter_chk_label01 + .filter_chk_label01 {
	margin-top: 20px;
}

.commuting_wrap.custom01 .c_table.schedule_table td .lines + .lines {
	margin-top: 4px;
}


.module_calendar_custom01.fc-direction-ltr .fc-toolbar-chunk.end  .fc-button-group > .fc-button:not(:last-child) {
    border-bottom-right-radius: 5px;
    border-top-right-radius: 5px;
}

.module_calendar_custom01.fc-direction-ltr .fc-toolbar-chunk.end  .fc-button-group > .fc-button:not(:first-child) {
    border-bottom-left-radius: 5px;
    border-top-left-radius: 5px;
    margin-left: unset;
}

.module_calendar_custom01 .fc-toolbar-chunk.start > div {
	display: flex;
	align-items: center;
	gap: 0 15px;
}

.module_calendar_custom01 .fc-toolbar-title {
	font-size: 30px !important;
	font-weight: 700;
	color: #333;
}

.fc .fc-day-sun  .fc-col-header-cell-cushion {
	color: #FF5E61;
}


.fc .fc-day-sat  .fc-col-header-cell-cushion {
	color: #71A0FF;
}

.fc-direction-ltr .fc-daygrid .fc-event-title-container  .fc-event-title {
	font-size: 14px;
	font-weight: 500;
	line-height: 1.5em;
	color: #333;
	overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
	white-space: pre-wrap;
}

	.module_calendar_custom01 .fc-toolbar-chunk.start > div {
		gap: 0 15px;
	}

.login_form_flex_box02 > div {
	flex: 1;
}

.time_felx_box002 > div {
	flex: 1;
}

.human_txt_box01 .tit {
	font-size: 17px;
	font-weight: 600;
	color: #333;
}

.human_txt_box01 .alt {
	line-height: 1.41em;
	margin-top: 6px;
	font-size: 17px;
	color: #888;
	letter-spacing: -0.05em;
}




.shop_common_wrapper01 * {
	box-sizing: border-box;
	flex-shrink: unset;
	word-break: break-all;
}


.shop_common_wrapper01 .swiper-slide {
	flex-shrink: 0;
}

.shop_common_wrapper01 .swiper-slide img {
	object-fit: contain;
	width: 100%;
	height: 100%;
}

.shop_wrappe01 {
	padding: 60px 0 100px;
}


.shop_tit_box01 {
	border-top: 2px solid #000;
	border-bottom: 1px solid #eee;
	padding: 20px 0;
}

.shop_tit_box01 {
	font-size: 30px;
	font-weight: 600;
	color: #333;
}

.shop_prd_wrapper01 {
	position: relative;
	margin-top: 30px;
	display: flex;
	align-items: flex-start;
	gap: 0 40px;
}

.shop_prd_wrapper01 .left_box {
	width: calc(100% - 400px);
	position: relative;
}


.shop_prd_all_chk_box01 {
	margin-bottom: 10px;
}

.shop_prd_chk_box01 {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 15px;
	color: #333;
	font-weight: 400;
}

.shop_prd_chk_box01 input {
	appearance: none;
	min-width: 24px;
	width: 24px;
	height: 24px;
	border-radius: 4px;
	margin: unset !important;
	border: 2px solid #ddd;
	background: #fff;
	cursor: pointer;
	transition: all 0.15s ease;
}

.shop_prd_chk_box01 input:hover {
	border-color: #aaa;
}

.shop_prd_chk_box01 input:checked {
	border-color: #999;
	background: #fff url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23666" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"/></svg>') no-repeat center / 16px 16px;
}

.shop_prd_chk_box01 input:focus {
	outline: unset !important;
    outline-offset: unset !important;
}

.shop_prd_box01 {
	display: flex;
	flex-wrap: nowrap;
	gap: 25px;
	border-bottom: 1px solid #eee;
	padding: 20px 0;
}

.shop_prd_box01 .shop_prd_sub_box01 {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	width: 150px;
}

.shop_prd_box01 .shop_prd_info_box01 {
	flex: 1;
	min-width: 0;
	width: calc(100% - 175px);
	display: flex;
	flex-direction: column;
	justify-content: center;
}


.shop_prd_box01 .shop_prd_sub_box01 .shop_prd_img_box01 {
	width: calc(100% - 30px);
	aspect-ratio: 1/1;
	border-radius: 5px;
	overflow: hidden;
}

/* 장바구니/주문하기 상품 간 구분선 */
.shop_prd_box01.product_group_last {
	border-bottom: 3px solid #ccc;
	margin-bottom: 10px;
	padding-bottom: 20px;
}

.shop_prd_box01 .shop_prd_sub_box01 .shop_prd_img_box01 img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.shop_prd_box01 .shop_prd_info_tit_box01 {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 0 20px;
}

.shop_prd_box01 .shop_prd_info_tit01 {
	max-width: 540px;
	min-width: 0;
}

.shop_prd_box01 .shop_prd_price_box01 {
	margin-left: auto;
	min-width: 0;
	display: flex;
	gap: 10px;
	align-items: center;
	flex-wrap: wrap;
	justify-content: flex-end;
}


.shop_prd_box01 .shop_prd_price_box01 .shop_prd_discount01 {
	font-size: 16px;
	font-weight: 400;
	color: #999;
	text-decoration: line-through;
}


.shop_prd_box01 .shop_prd_price_box01 .shop_prd_percent01 {
	font-size: 18px;
	font-weight: 700;
	color: #c72c1e;
}


.shop_prd_box01 .shop_prd_price_box01 .shop_prd_price01 .grade_label {
	font-size: 14px;
	font-weight: 400;
	color: #666;
	margin-left: 3px;
}

.shop_prd_info_tit01,
.shop_prd_price01 {
	font-size: 24px;
	font-weight: 600;
	color: #333;
	min-width: 0;
}

.shop_prd_price01 {
	display: flex;
	gap: 2px;
	align-items: end;
	line-height: 1;
	word-break: break-all;
}

.shop_prd_price01 span {
	font-size: 17px;
	font-weight: 400;
	line-height: 1.41em;
}

.shop_prd_info_alt_box01 {
	margin: 10px 0 20px;
	font-size: 17px;
	color: #888;
	line-height: 1.41em;
	font-weight: 400;
}

.shop_prd_info_option_box01 {
	display: flex;
	align-items: center;
	gap: 0 30px;
}

.shop_prd_info_option_box01 .shop_prd_info_select01 {
	max-width: 540px;
}

.shop_prd_info_option_box01 .shop_prd_count_box01 {
	width: calc(100% - 570px);
}

.shop_prd_info_select01 {
	width: 100%;
	padding: 0 20px;
	padding-right: 35px;
	height: 55px;
	font-size: 17px;
	color: #333;
	font-weight: 400;
	appearance: none;
	border: unset;
	border-radius: 5px;
	cursor: pointer;
	outline: unset;
	background-color: #F9F9F9;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='14' viewBox='0 0 13 14'%3E%3Cpath fill='%23666' d='M6.5 10L1 4h11z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: center right 20px;
	background-size: 13px 14px;
}

.shop_prd_count_box01 {
	display: flex;
	align-items: center;
}

.shop_prd_count_box01 .shop_option_btn01 {
	min-width: 55px;
	width: 55px;
}

.shop_prd_count_box01 .shop_option_btn01.disabled img {
	filter: opacity(0.3);
}

.shop_prd_count_box01 .shop_option_count01 {
	display: flex;
	align-items: center;
	justify-content: center;
	width: calc(100% - 110px);
	font-size: 17px;
	font-weight: 400;
	color: #333;
}

.shop_prd_wrapper01 .shop_prd_info_quick_box01 {
	border: 1px solid #eee;
	border-radius: 5px;
	background-color: #fff;
	position: sticky;
	top: 100px;
	padding: 30px 20px 20px 20px;
	width: 360px;
}


.shop_prd_info_quick_tit01 {
	font-size: 20px;
	font-weight: 600;
	color: #333;
}


.shop_prd_info_quick_alt_box01 {
	padding: 20px 0;
	margin: 20px 0;
	border-top: 1px solid #eee;
	border-bottom: 1px solid #000;
}

.shop_prd_info_quick_alt {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.shop_prd_info_quick_alt .tit {
	font-size: 17px;
	color: #888;
	font-weight: 600;
	line-height: 1.41em;
}

.shop_prd_info_quick_alt .price01 {
	display: flex;
	align-items: end;
	gap: 0 3px;
	font-size: 17px;
	font-weight: 600;
	color: #333;
}

.shop_prd_info_quick_alt .price01 span {
	line-height: 1.41em;
	font-weight: 400;
}

.shop_prd_info_quick_alt .price01 .blue {
	color: #7D9AF8;
}

.shop_prd_info_quick_alt + .shop_prd_info_quick_alt {
	margin-top: 10px;
}

.shop_prd_info_quick_result01 {
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 20px;
	font-weight: 600;
	line-height: 1.2em;
}

.shop_prd_info_quick_result01 .tit {
	color: #333;
}

.shop_prd_info_quick_result01 .price01 {
	display: flex;
	align-items: end;
	gap: 0 3px;
}

.shop_prd_info_quick_result01 .price01 b {
	color: var(--color-primary01);
	font-weight: 600;
}

.shop_prd_info_quick_result01 .price01 span {
	font-weight: 400;
	color: #333;
}

.shop_prd_info_quick_btn_box01 {
	margin-top: 30px;
}

.shop_prd_info_quick_btn_box01 .login_chk_btn01 + .login_chk_btn01 {
	margin-top: 10px;
}


.shop_prd_cancle_btn01 {
	position: relative;
	width: 23px;
	height: 23px;
	display: block;
}


.shop_prd_cancle_btn01 span {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 1px;
	height: 100%;
	background-color: #ACACAC;
	transform: translate(-50%,-50%) rotate(45deg);
}

.shop_prd_cancle_btn01 span:nth-child(2) {
	transform: translate(-50%,-50%) rotate(-45deg);
}

@media all and (max-width:1024px) {
	.shop_prd_box01 {
		flex-wrap: wrap;
	}

	.shop_prd_box01 .shop_prd_info_box01 {
		width: 100%;
		min-width: unset;
	}

	.shop_prd_info_option_box01 .shop_prd_count_box01 {
		min-width: 165px;
		width: auto;
		margin-left: auto;
	}

	.shop_prd_wrapper01 {
		flex-wrap: wrap;
		gap: 40px;
	}

	.shop_prd_wrapper01 .left_box {
		width: 100%;
	}

	.shop_prd_wrapper01 .shop_prd_info_quick_box01 {
		position: relative;
		top: unset;
		padding: 30px 20px 20px 20px;
		width: 100%;
	}
}

.best_shop_list_wrapper01 {
	padding: 80px 0;
	background-color: #FFF5F0;
}

.shop_list_tit_box01 {
	text-align: center;
	position: relative;
}

.shop_list_tit01 {
	position: relative;
	font-size: 40px;
	font-weight: 600;
	padding-top: 12px;
	color: #333;
}

.shop_list_tit01::after {
	content: '';
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	top: 0;
	width: 22px;
	height: 2px;
	background-color: #000;
}

.shop_list_slide_arw {
	width: 40px;
	height: 40px;
}

.shop_list_slide_wrapper .shop_list_slide_arw {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}


.shop_list_slide_arw.prev {
	background: url('/img/shop_list_prev_arw.png') no-repeat center / cover;
}

.shop_list_slide_arw.next {
	background: url('/img/shop_list_next_arw.png') no-repeat center / cover;
}

.shop_list_slide_wrapper .shop_list_slide_arw.prev {
	left: 15px;	
}

.shop_list_slide_wrapper .shop_list_slide_arw.next {
	right: 15px;
}

.shop_list_slide_wrapper {
	padding: 40px 80px;
	background-color: #fff;
	position: relative;
}

.best_shop_list_slide_wrapper {
	border-radius: 10px;
	margin-top: 20px;
}

.shop_list_item01 {
	position: relative;
}

.shop_list_item01 .img {
	width: 100%;
	aspect-ratio: 1/1;
	position: relative;
	border-radius: 5px;
	overflow: hidden;
}

.shop_list_item01 .img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.text_label01 {
	position: absolute;
	top: 10px;
	left: 10px;
	border-radius: 5px;
	text-align: center;
	padding: 5px 4px;
	font-size: 17px;
	font-weight: 600;
	color: #fff;
	line-height: 1;
}


.text_label01_flex_box {
	display: flex;
	flex-wrap: wrap;
	gap: 3px;
	position: absolute;
	top: 10px;
	left: 10px;
}

.text_label01_flex_box .text_label01 {
	display: block;
	top: unset;
	left: unset;
	position: relative;
}

.text_label01.new {
	background-color: #4CAF50;
}

.text_label01.best {
	background-color: #FF9A15;
}

.text_label01.pick {
	background-color: #000;
}

.text_label01.sale {
	background-color: var(--color-primary01);
}

.shop_list_item01 .tit {
	margin: 20px 0 10px;
	font-size: 24px;
	color: #333;
	font-weight: 600;
}

.shop_list_item01 .alt {
	font-weight: 400;
	font-size: 17px;
	color: #888;
	line-height: 1.41em
}

.shop_list_item01 .price_box01 {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	margin-top: 20px;
}

.shop_list_item01 .price_box01 .discount01,
.shop_list_item01 .price_box01 .percent01 {
	margin-right: 10px;
}

.shop_list_item01 .price_box01 .discount01 {
	color: #BDBDBD;
	font-size: 17px;
	font-weight: 600;
	text-decoration: line-through;
}

.shop_list_item01 .price_box01 .percent01 {
	font-size: 24px;
	font-weight: 600;
	color: var(--color-primary01);
}

.shop_list_item01 .price_box01 .price01 {
	display: flex;
	align-items: flex-end;
	line-height: 1;
	font-size: 24px;
	font-weight: 600;
	color: #333;
	gap: 3px;
}

.shop_list_item01 .price_box01 .price01 span {
	font-weight: 400;
	line-height: 1.41em;
	font-size: 17px;
}




.mdPick_shop_list_wrapper01 {
	padding: 80px 0;
	background-color: #fff;
}

.primary_color01 {
	color: var(--color-primary01) !important;
}

.mdPick_shop_list_wrapper01 .shop_list_slide_arw_box {
	position: absolute;
	right: 0;
	bottom: 0;
	display: flex;
	gap: 10px;
}

.mdPick_list_slide_wrapper {
	margin-top: 30px;
}




.sale_shop_list_wrapper01 {
	padding: 80px 0;
	background-color: #FFF0F0;
}

.sale_con_wrapper01 {
	border-radius: 5px;
	overflow: hidden;
}




.shop_list_con_wrapper01 {
	margin-top: 20px;
}

.shop_list_con_box01 {
	display: flex;
	flex-wrap: wrap;
	gap: 60px 40px;
}

.shop_list_con_box01.item04 .shop_list_item01 {
	width: calc(25% - 30px);
}


.shop_list_con_box01.item03 .shop_list_item01 {
	width: calc(33.3333% - 27px);
}

@media all and (max-width:1400px) {
	.shop_list_con_box01.item04 .shop_list_item01 {
		width: calc(33.333% - 27px);
	}
}

@media all and (max-width:700px) {
	.shop_list_con_box01.item04 .shop_list_item01 {
		width: calc(50% - 20px);
	}
}




.shop_filter_flex_box01 {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	gap: 40px;
	position: relative;
}

.shop_filter_flex_box01 .shop_filter_wrapper01 {
	width: 320px;
	position: sticky;
	top: 100px;
}

.shop_filter_flex_box01 .prd_right_box01 {
	width: calc(100% - 360px);
}

.shop_filter_flex_box01 .prd_right_box01 .shop_list_con_box01 {
	margin-top: 20px;
}

.shop_filter_box {
	padding-bottom: 20px;
	border-bottom: 1px solid #DCDCDC;
}

.shop_filter_box + .shop_filter_box {
	margin-top: 20px;
}

.shop_filter_wrapper01 .t_box {
	display: flex;
	gap: 0 20px;
	align-items: center;
	justify-content: space-between;
}

.shop_filter_wrapper01 .t_box .tit {
	font-size: 24px;
	font-weight: 600;
	color: #333;
}

#filter_reset_btn {
	display: flex;
	gap: 2px;
	align-items: center;
	font-size: 15px;
	color: #333;
	font-weight: 400;
}

.shop_filter_menu_box .tit_box {
	display: flex;
	justify-content: space-between;
	gap: 0 20px;
	align-items: center;
	cursor: pointer;
}


.shop_filter_menu_box .tit_box .tit {
	font-size: 17px;
	color: #333;
	font-weight: 600;
}

.shop_filter_menu_btn01 {
	position: relative;
	width: 20px;
	height: 20px;
	border: 1px solid #000;
	border-radius: 3px;
	background-color: #fff;
}

.shop_filter_menu_btn01 span {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 2px;
	height: 12px;
	background-color: #ff0000;
}

.shop_filter_menu_btn01 span:last-child {
	height: 2px;
	width: 12px;
}

.shop_filter_menu_box .alt_box {
	padding-top: 20px;
}


.filter_slider_wrapper01 {
	position: relative;
	height: 16px;
	cursor: pointer;
}


.filter_slider_wrapper01 #range-slider {
	border: unset;
	height: 3px;
	background-color: #dcdcdc;
}

.filter_slider_wrapper01 #range-slider.ui-slider-horizontal .ui-slider-range {
	background: var(--color-primary01);
	top: 50%;
	transform: translateY(-50%);
}


.filter_slider_wrapper01 input[type="range"] {
	position: absolute;
	width: 100%;
	height: 100%;
	background: transparent;
	pointer-events: none;
	-webkit-appearance: none;
	appearance: none;
	border: unset;
	padding: unset;
	z-index: 11;
}


.filter_slider_wrapper01 .ui-slider-horizontal .ui-slider-handle {
	pointer-events: all;
	-webkit-appearance: none;
	appearance: none;
	aspect-ratio: 1/1;
	width: 16px;
	height: 16px;
	color: #fff;
	background-color: #fff;
	box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.15);
	border-radius: 50%;
	cursor: pointer;
	z-index: 11;
	top: 50%;
	transform: translateY(-50%);
}


.filter_value_display {
	display: flex;
	justify-content: center;
	margin-top: 10px;
	align-items: center;
	gap: 10px;
	font-size: 17px;
	color: #333;
	text-align: center;
}

.filter_value_display .login_input_form_box01 input {
	text-align: center
}

.shop_filter_menu_box .id_save_box {
	align-items: flex-start;
}

.shop_filter_menu_box .id_save_box span {
	margin-top: 3px;
}

.shop_filter_chk_box01 .id_save_box + .id_save_box {
	margin-top: 6px;
}

.shop_filter_menu_box .alt_box {
	visibility: hidden;
	display: none;
}

.shop_filter_menu_box.active .alt_box {
	visibility: visible;
	display: block;	
	padding-top: 20px;
}

.shop_filter_menu_box.active .shop_filter_menu_btn01 span:first-child {
	display: none;
}

@media all and (max-width:1400px) {
	.shop_filter_flex_box01 .shop_filter_wrapper01 {
		width: 260px;
	}
	.shop_filter_flex_box01 .prd_right_box01 {
		width: calc(100% - 300px);
	}
}

@media all and (max-width:1024px) {
	.shop_filter_flex_box01 .shop_filter_wrapper01,
	.shop_filter_flex_box01 .prd_right_box01 {
		width: 100%;
	}
	.shop_filter_flex_box01 .shop_filter_wrapper01{
		position: relative;
		top: unset;
	}
	
	.programPage {
		display: none !important;
	}

	.prd_page_nav_wrapper {
		display: none !important;
	}

	.mo_programPage {
		display: block !important;
	}
}

@media (max-width: 700px) {
    .shop_list_con_box01.item03 .shop_list_item01 {
        width: calc(50% - 10px);
    }
}




.shop_item_detail_top_box01 {
	display: flex;
	gap: 40px 80px;
	flex-wrap: wrap;
}

.shop_item_detail_top_box01 > div {
	width: calc(50% - 40px);
}

.shop_item_detail_alt_box01 {
	display: flex;
	flex-direction: column;
}

.shop_item_detail_slide  {
	width: 100%;
	position: relative;
}

.shop_item_detail_slide .swiper-button-prev,
.shop_item_detail_slide .swiper-button-next {
	width: 44px;
	height: 44px;
	background: rgba(0, 0, 0, 0.3);
	border-radius: 50%;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

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

.shop_item_detail_slide .swiper-button-prev {
	left: 15px;
}

.shop_item_detail_slide .swiper-button-next {
	right: 15px;
}

.shop_item_detail_slide .swiper-button-disabled {
	opacity: 0.4;
}

.shop_item_detail_slide .item,
.shop_item_detail_slide_thumb .item {
	border-radius: 5px;
	overflow: hidden;
	position: relative;
	aspect-ratio: 1 / 1;
}

.shop_item_detail_slide .item img,
.shop_item_detail_slide_thumb .item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.shop_item_detail_slide_thumb_wrap {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 20px;
}

.shop_item_detail_slide_thumb_wrap .swiper-button-prev,
.shop_item_detail_slide_thumb_wrap .swiper-button-next {
	position: static;
	width: 32px;
	height: 32px;
	margin: 0;
	flex-shrink: 0;
	background: rgba(0, 0, 0, 0.3);
	border-radius: 50%;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

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

.shop_item_detail_slide_thumb_wrap .swiper-button-prev:hover,
.shop_item_detail_slide_thumb_wrap .swiper-button-next:hover {
	background: rgba(0, 0, 0, 0.5);
}

.shop_item_detail_slide_thumb_wrap .swiper-button-prev:hover:after,
.shop_item_detail_slide_thumb_wrap .swiper-button-next:hover:after {
	color: #fff;
}

.shop_item_detail_slide_thumb_wrap .swiper-button-disabled {
	opacity: 0.3;
	cursor: default;
}

.shop_item_detail_slide_thumb {
	flex: 1;
	overflow: hidden;
}

.shop_item_detail_slide_thumb .item {
	cursor: pointer;
}

.shop_item_detail_alt_box01 .top_box .tit_box {
	display: flex;
	gap: 20px;
	align-items: flex-start;
	justify-content: space-between;
}

.shop_item_detail_alt_box01 .top_box .tit_box .tit {
	font-size: 30px;
	font-weight: 600;
	color: #333;
}

.shop_item_detail_alt_box01 .top_box .tit_box .fa-heart {
	font-size: 36px;
	color: #E8E8E8;
	cursor: pointer;
}

.shop_item_detail_alt_box01 .top_box .tit_box .fa-heart.active {
	color: var(--color-primary01);
}

.shop_item_detail_alt_box01 .top_box .alt_box {
	margin-top: 10px;
	line-height: 1.41em;
	color: #888;
	font-size: 17px;
	font-weight: 400;
}

.shop_item_detail_alt_box01 .border_box01 {
	padding-bottom: 20px;
	border-bottom: 1px solid #EEE;
}

.shop_item_detail_alt_box01 .option_box01 {
	padding: 20px 0;
	display: flex;
}

.shop_item_detail_alt_box01 .option_box01 .tit {
	width: 110px;
	font-size: 17px;
	color: #888;
	font-weight: 600;
}

.shop_item_detail_alt_box01 .option_box01 .option_alt {
	width: calc(100% - 110px);
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 5px 10px;
}

.shop_item_detail_alt_box01 .option_box01 .option_alt .discount01 {
    color: #BDBDBD;
    font-size: 17px;
    font-weight: 600;
    text-decoration: line-through;
}


.shop_item_detail_alt_box01 .option_box01 .option_alt .percent01 {
    font-size: 24px;
    font-weight: 600;
    color: var(--color-primary01);
}

.shop_item_detail_alt_box01 .option_box01 .option_alt .price01 {
	display: flex;
	align-items: flex-end;
	line-height: 1;
	font-size: 24px;
	font-weight: 600;
	color: #333;
	gap: 3px;
}

.shop_item_detail_alt_box01 .option_box01 .option_alt span {
    font-weight: 400;
    line-height: 1.41em;
    font-size: 17px;
	color: #333;
}

.shop_item_detail_alt_box01 .option_box01 .option_alt .grade_label {
    font-size: 14px;
    color: var(--color-primary01);
    font-weight: 500;
    margin-left: 5px;
}

.shop_item_detail_alt_box01 .option_select_box01 {
	padding: 20px 0;
}

.shop_item_detail_alt_box01 .option_select_box01 .shop_prd_info_select01 + .shop_prd_info_select01 {
	margin-top: 10px;
}


.option_result_box01_wrapper {
	margin-top: 30px;
}

.shop_item_detail_alt_box01 .option_select_box01 .option_result_box01 {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px;
	justify-content: space-between;
	padding: 20px;
	border-radius: 5px;
	background-color: #F9F9F9;
}

.shop_item_detail_alt_box01 .option_select_box01 .option_result_box01 + .option_result_box01 {
	margin-top: 10px;
}

.shop_item_detail_alt_box01 .option_select_box01 .option_result_box01 .l_box {
	display: flex; 
	align-items: center;
	gap: 10px;
}

.shop_item_detail_alt_box01 .option_select_box01 .option_result_box01 .shop_prd_count_box01 .shop_option_btn01 {
    min-width: 40px;
    width: 40px;
}

/* 수량버튼을 먼저, 옵션명을 오른쪽에 배치 */
.shop_item_detail_alt_box01 .option_select_box01 .option_result_box01 .l_box .shop_prd_count_box01 {
	order: 1;
	min-width: 130px;
}

.shop_item_detail_alt_box01 .option_select_box01 .option_result_box01 .l_box .tit {
	order: 2;
	font-size: 17px;
	font-weight: 600;
	color: #333;
	max-width: 300px;
}

.shop_item_detail_alt_box01 .option_select_box01 .option_result_box01 .l_box .shop_prd_count_box01 .shop_option_count01 {
    display: flex;
    align-items: center;
    justify-content: center;
	width: calc(100% - 80px);
    font-size: 17px;
    font-weight: 400;
    color: #333;
}

.shop_item_detail_alt_box01 .option_select_box01 .option_result_box01 .shop_prd_price_box01 {
	display: flex;
	gap: 0 10px;
	margin-left: auto;
}

.shop_item_detail_alt_box01 .option_select_box01 .option_result_box01 .shop_prd_price_box01 .shop_prd_price01 {
	font-size: 17px;
	align-items: center;
	gap: 0 3px;
}

.shop_item_detail_alt_box01 .shop_item_detail_result_box01 {
	padding-top: 30px;
	border-top: 1px solid #eee;
	margin-top: auto;
	margin-top: auto;
}

.shop_item_detail_alt_box01 .shop_item_detail_result_box01 .shop_prd_info_quick_result01 .price01 b {
	font-size: 30px;
}


.shop_item_info_box001 {
	padding: 50px 0;
}
/* 상품 상세 설명 영역 - Summernote 에디터 스타일 유지 */
.shop_item_info_box001 ul {
	list-style: disc inside;
	padding-left: 20px;
	margin: 10px 0;
}
.shop_item_info_box001 ol {
	list-style: decimal inside;
	padding-left: 20px;
	margin: 10px 0;
}
.shop_item_info_box001 ul li,
.shop_item_info_box001 ol li {
	margin-bottom: 5px;
}

.secret_review_box01 {
	position: relative;
	max-height: 660px;
	overflow: hidden;
	border-bottom: 1px solid #ddd;
	padding-bottom: 40px;
	margin-bottom: 0;
}

.secret_review_box01 .center_img {
	text-align: center;
}
.secret_review_box01 .center_img .panel-heading {
	border-bottom: none !important;
}

.secret_review_box01 .secret_btn_box01 {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 50%;
	background: linear-gradient(0deg, #FFF 35.92%, rgba(255, 255, 255, 0.00) 100%);
	z-index: 5;
}

a.secret_btn01,
.secret_btn01 {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 70px;
	max-width: 315px;
	width: 100%;
	border-radius: 5px;
	background: #FFF;
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.10);
	font-size: 20px;
	color: #333;
	font-weight: 600;
}

.secret_review_box01 .secret_btn_box01 a.secret_btn01,
.secret_review_box01 .secret_btn_box01 .secret_btn01 {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: 20px;
}

.shop_item_info_con .tit_box {
	border-bottom: 2px solid #000;
	color: #333;
	font-size: 30px;
	font-weight: 600;
	padding-bottom: 20px;
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	gap: 0 10px;
}

.shop_item_info_con .tit_box .sub_tit {
	font-size: 17px;
	font-weight: 400;
	line-height: 1.52em;
	margin-bottom: 5px;
}

.shop_item_evaluation_box {
	padding: 30px 20px;
	text-align: center;
	margin: 20px auto;
	border-radius: 5px;
	border: 1px solid #EEE;
	background: #F9F9F9;
	display: flex;
	flex-wrap: wrap;
}

.shop_item_evaluation_box > div {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-direction: column;
	flex: 1;
}

.evaluation_box01 .e_tit {
	font-size: 24px;
	font-weight: 600;
	color: #333;
}

.evaluation_box01 .result_box {
	font-size: 40px;
	font-weight: 500;
}

.evaluation_box01 .result_box .result_num {
	color: #333;
}


.evaluation_box01 .result_box .total_num {
	color: #C5C5C5;
}

.evaluation_box01 .alt_box {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0 7px;
	margin: 20px 0;
}

.evaluation_box01 .alt_box .icon01 {
	width: 46px;
	height: 44px;
}

.evaluation_box01 .alt_box .icon01 {
	background: url('/img/evaluation_icon.png') no-repeat center / cover;
}

.evaluation_box01 .alt_box .icon01.active {
	background: url('/img/evaluation_icon_active.png') no-repeat center / cover;
}

.evaluation_box01 .alt_box .icon01.active02 {
	background: url('/img/evaluation_icon_active02.png') no-repeat center / cover;
}

.evaluation_box01 .graph_box_wrapper01 {
	display: flex;
	gap: 5px;
}

.evaluation_box01 .graph_box_wrapper01 .graph_box01 {
	flex: 1;
	display: flex;
	align-items: center;
	flex-direction: column;
	gap: 10px;
}

.evaluation_box01 .graph_box_wrapper01 .graph_box01 .bar {
	position: relative;
	width: 8px;
	height: 70px;
	background-color: #EDEDED;
	border-radius: 10px;
	overflow: hidden;
}

.evaluation_box01 .graph_box_wrapper01 .graph_box01 .bar::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	aspect-ratio: 1/1;
	border-radius: 50%;
	background-color: #D9D9D9;
}

.evaluation_box01 .graph_box_wrapper01 .graph_box01 span {
	text-align: center;
	font-size: 17px;
	color: #333;
	font-weight: 400;
}

.evaluation_box01 .graph_box_wrapper01 .graph_box01.active .bar,
.evaluation_box01 .graph_box_wrapper01 .graph_box01.active .bar::after {
	background-color: var(--color-primary01);
}


.shop_item_evaluation_txt_box .sub_tit_box {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 0;
	border-top: 1px solid #EEE;
	border-bottom: 1px solid #EEE;
}

.shop_item_evaluation_txt_box .sub_tit_box .l_box {
	display: flex;
	align-items: center;
	gap: 20px;
}

.shop_item_evaluation_txt_box .sub_tit_box .l_box .tit {
	font-size: 24px;
	color: #333;
	font-weight: 600;
}

.evaluation_tab_menu_box01 {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

.evaluation_tab_menu01 {
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 5px;
	border: 1px solid #E9E9E9;
	background: #FFF;
	padding: 10px;
	min-width: 100px;
	font-size: 17px;
	color: #888;
	font-weight: 400;
}

.evaluation_tab_menu01.active {
	border-color: var(--color-primary01);
	color: var(--color-primary01);
	font-weight: 600;
}

.evaluation_tab_menu01.red {
	background-color: var(--color-primary01);
	color: #fff;
}


.evaluation_tab_menu01.gray {
	background-color: #C5C5C5;
	color: #fff;
}

.shop_item_evaluation_txt_box_con_box01 .img_box {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.shop_item_evaluation_txt_box_con_box01 .img_box img {
	width: 115px;
	aspect-ratio: 1/1;
	border-radius: 5px;
	overflow: hidden;
}

.shop_item_evaluation_txt_box_con_box01 .evaluation_box01 .alt_box {
	justify-content: flex-start;
	margin: 10px 0;
}

.shop_item_evaluation_txt_box_con_box01 .evaluation_box01 .alt_box .icon01 {
	width: 24px;
	height: 23px;
}

.shop_custom_writer_box01 {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	font-size: 17px;
	color: #888;
	font-weight: 400;
}

.shop_custom_writer_box01 span + span {
	position: relative;
}

.shop_custom_writer_box01 span + span::after {
	content: '';
	position: absolute;
	left: -20px;
	top: 50%;
	transform: translateY(-50%);
	width: 1px;
	height: 70%;
	background-color: #aaa;
}

.shop_item_evaluation_txt_box_con_box01 .alt_box {
	margin-top: 20px;
}

.shop_item_evaluation_txt_box_con_box01 .alt_box .alt {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	line-clamp: 3;
	-webkit-box-orient: vertical;
}


.shop_item_evaluation_txt_box_con_box01 .alt_box.active .alt {
	overflow: unset;
	text-overflow: unset;
	display: block;
	-webkit-line-clamp: unset;
	line-clamp: unset;
	-webkit-box-orient: unset;
}

.shop_item_evaluation_txt_box_con_box01 .alt_box.active a.more_btn01::after,
.shop_item_evaluation_txt_box_con_box01 .alt_box.active .more_btn01::after {
	transform: translateY(-50%) rotate(-180deg);
}

.shop_item_qa_info_chk_box01 {
	padding: 30px 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px 20px;
}

.shop_item_qa_info_chk_box01 .chk_flex_box01 {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 20px;
}


.shop_item_qa_add_box01 {
	background-color: #f9f9f9;
	padding: 20px;
}

.shop_textarea01 {
	width: 100%;
	background-color: #fff;
	border-radius: 5px;
	padding: 15px 20px;
	font-size: 17px;
	font-weight: 400;
	resize: none;
	border: unset;
}

.shop_textarea01::placeholder {
	color: #888;
}

.shop_item_qa_add_box01 .shop_textarea01 {
	height: 118px;
}

.shop_item_qa_add_box01 .btn_flex_box02 {
	margin-top: 20px;
}


.shop_item_answer_box01 {
	border-top: 1px solid #eee;
}

.shop_item_answer_box01 .box {
	border-bottom: 1px solid #eee;
}

.shop_item_answer_box01 .box .q_box01 {
	cursor: pointer;
	display: flex;
	align-items: flex-start;
	gap: 20px;
	padding: 30px 0;
}

.shop_item_answer_box01 .box .label01 {
	min-width: 63px;
	width: 63px;
	aspect-ratio: 1/1;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	font-size: 17px;
	font-weight: 400;
	color: var(--color-primary01);
	border-radius: 5px;
	background-color: #FFEFF4;
}

.shop_item_answer_box01 .box .shop_item_answer_alt {
	line-height: 1.52em;
	font-size: 17px;
	font-weight: 400;
	color: #333;
	margin-top: 20px;
}

.shop_item_answer_box01 .box.answer .label01 {
	color: #1976D2;
	background-color: #ECF5FF;
}

.shop_item_answer_box01 .box .a_box01 {
	padding: 30px;
	background-color: #F9F9F9;
	border-top: 1px solid #eee;
	display: none;
}

.shop_item_answer_box01 .box .a_box01 .q_com_box01 {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	line-height: 1.52em;
	font-size: 17px;
	font-weight: 400;
	color: #333;
}

.shop_item_answer_box01 .box .a_box01 .q_com_box01 .type01 {
	font-weight: 700;
}

.shop_item_answer_box01 .box .a_box01 .q_com_box01.two {
	padding-left: 25px;
	position: relative;
	padding-top: 10px;
}

.shop_item_answer_box01 .box .a_box01 .q_com_box01.two::after {
	content: '';
	position: absolute;
	left: 7px;
	top: 0;
	height: 25px;
	width: 10px;
	border-left: 1px solid #565656;
	border-bottom: 1px solid #565656;
}

.shop_item_answer_box01 .box .a_box01 .q_com_box01.two .q_tit01 {
	color: #888;
}

@media all and (max-width:1400px) {
	.shop_item_detail_top_box01 {
		gap: 40px;
	}
	.shop_item_detail_top_box01 > div {
		width: calc(50% - 20px);
	}
}

@media all and (max-width:1024px) {
	.shop_item_detail_top_box01 > div {
		width: 100%;
	}
	.shop_item_detail_slide_box01 {
		max-width: 660px;
		margin: 0 auto;
	}
	.shop_item_evaluation_box {
		flex-direction: row;
		flex-wrap: wrap;
		gap: 15px;
		padding: 20px 15px;
	}
	.shop_item_evaluation_box > div {
		flex: 1 1 calc(33.333% - 10px);
		min-width: 0;
	}
	.evaluation_box01 .e_tit {
		font-size: 16px;
	}
	.evaluation_box01 .result_box {
		font-size: 24px;
	}
	.evaluation_box01 .alt_box {
		margin: 10px 0;
		gap: 0 3px;
	}
	.evaluation_box01 .alt_box .icon01 {
		width: 16px;
		height: 16px;
	}
	.evaluation_box01 {
		gap: 10px;
	}
	.evaluation_box01 .graph_box_wrapper01 {
		gap: 3px;
	}
	.evaluation_box01 .graph_box_wrapper01 .graph_box01 {
		font-size: 12px;
		gap: 5px;
	}
	.evaluation_box01 .graph_box_wrapper01 .graph_box01 .bar {
		width: 8px;
		height: 70px;
	}
	.shop_item_evaluation_txt_box .sub_tit_box{
		flex-wrap: wrap;
		gap: 20px;
	}
	.shop_item_evaluation_txt_box .sub_tit_box .type_box01 {
		margin-left: auto;
	}
	.evaluation_tab_menu_box01 {
		gap: 10px;
	}
}

@media all and (max-width:600px) {
	/* 모바일: 상품평 필터 영역 - 포토상품평 체크박스 다음줄로 */
	.shop_item_evaluation_txt_box .sub_tit_box .l_box {
		flex-wrap: wrap;
		gap: 10px;
	}
	.shop_item_evaluation_txt_box .sub_tit_box .l_box > .id_save_box {
		width: 100%;
		margin-left: 0 !important;
	}
	/* 상품 평점 영역 - 한 줄 유지 */
	.shop_item_evaluation_box {
		gap: 10px;
		padding: 15px 10px;
	}
	.shop_item_evaluation_box > div {
		flex: 1 1 calc(33.333% - 7px);
	}
	.evaluation_box01 .e_tit {
		font-size: 14px;
	}
	.evaluation_box01 .result_box {
		font-size: 20px;
	}
	.evaluation_box01 .alt_box {
		margin: 8px 0;
		gap: 0 2px;
	}
	.evaluation_box01 .alt_box .icon01 {
		width: 14px;
		height: 14px;
	}
	.evaluation_box01 .graph_box_wrapper01 {
		gap: 2px;
	}
	.evaluation_box01 .graph_box_wrapper01 .graph_box01 {
		font-size: 11px;
		gap: 3px;
	}
	.evaluation_box01 .graph_box_wrapper01 .graph_box01 .bar {
		width: 7px;
		height: 65px;
	}
}

@media all and (max-width:768px) {
	.shop_item_qa_add_box01 .btn_flex_box02 > a {
		flex: 1;
		max-width: unset;
	}
	.shop_item_qa_add_box01 .btn_flex_box02.mok_rok_btn .btn {
		width: unset;
	}
}




.shop_order_info_tit_box01 {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
}

.shop_order_info_tit_box01 .tit {
	font-size: 24px;
	color: #333;
	font-weight: 600;
}

.shop_deliver_chk_box01 {
	display: block;
	background-color: #F9F9F9;
	border-radius: 5px;
	padding: 20px;
	border: 1px solid transparent;
}

.shop_deliver_chk_box01 .id_save_box {
	font-size: 17px;
	font-weight: 600;
}

.shop_sub_txt01 {
	font-size: 17px;
	font-weight: 400;
	color: #888;
}

.shop_deliver_chk_box01 .shop_sub_txt01 {
	margin-top: 5px;
}

.shop_deliver_chk_box01 + .shop_deliver_chk_box01 {
	margin-top: 10px;
}

.shop_deliver_chk_box01:has(input:checked) {
	border-color: var(--color-primary01);
	background-color: #FFF6F6;
}

.shop_deliver_chk_box01:has(input:checked) .id_save_box {
	color: var(--color-primary01);
}

.shop_deliver_chk_box_wrapper01 {
	margin-bottom: 20px;
}

.shop_order_info_box01 + .shop_order_info_box01{
	padding-top: 30px;
	margin-top: 30px;
	border-top: 1px solid #eee;
}

.shop_order_info_prd_box01 .top_box01 {
	display: flex;
	align-items: flex-start;
	gap: 20px;
	flex-wrap: wrap;
}

.shop_order_info_prd_box01 .top_box01 .img {
	min-width: 120px;
	width: 120px;
	height: 120px;
	aspect-ratio: 1/1;
	border-radius: 5px;
	overflow: hidden;
}

.shop_order_info_prd_box01 .top_box01 .img img {
	width: 100%;
	height: 100%;
}

.shop_order_info_prd_box01 .top_box01 .alt_box01 {
	width: calc(100% - 140px);
}

.shop_order_info_prd_box01 .top_box01 .alt_box01 > div {
	font-size: 17px;
}

.shop_order_info_prd_box01 .top_box01 .alt_box01 > div + div {
	margin-top: 8px;
}

.shop_order_info_prd_box01 .top_box01 .alt_box01 .tit {
	font-weight: 600;
	color: #333;
}


.shop_order_info_prd_box01 .top_box01 .alt_box01 .alt {
	line-height: 1.41em;
	color: #888;
	font-weight: 400;
}


.shop_order_info_prd_box01 .top_box01 .alt_box01 .option01 {
	color: #333;
	font-weight: 400;
}

.shop_order_info_prd_box01 .top_box01 .alt_box01 .discount01 {
	font-size: 15px;
	font-weight: 400;
	color: #BDBDBD;
	display: flex;
	align-items: center;
	gap: 8px;
}

.shop_order_info_prd_box01 .top_box01 .alt_box01 .discount01 b {
	font-weight: 600;
	text-decoration: line-through;
}


.shop_order_info_prd_box01 .top_box01 .alt_box01 .discount01 .rate {
	font-size: 17px;
	font-weight: 700;
	color: #c72c1e;
	text-decoration: none;
}

.shop_order_info_prd_box01 .top_box01 .alt_box01 .price01 {
	font-weight: 400;
	color: #333;
	line-height: 1.41em;
}

.shop_order_info_prd_box01 .top_box01 .alt_box01 .price01.blue {
	color: #7D9AF8;
	display: flex;
	align-items: center;
}

.price01_small_txt {
	color: #7D9AF8;
	font-size: 12px;
	font-weight: 600;
	margin-left: 5px;
	display: inline-block;
}


.shop_order_info_prd_box01 .top_box01 .alt_box01 .price01 b {
	font-weight: 600;
}


.shop_order_info_prd_box01 .top_box01 .alt_box01 .price01.with_discount {
	display: flex;
	align-items: center;
	gap: 8px;
}


.shop_order_info_prd_box01 .top_box01 .alt_box01 .price01 .org_price {
	font-size: 15px;
	font-weight: 400;
	color: #BDBDBD;
	text-decoration: line-through;
}


.shop_order_info_prd_box01 .top_box01 .alt_box01 .price01 .rate {
	font-size: 17px;
	font-weight: 700;
	color: #c72c1e;
}


.shop_order_info_prd_box01 .top_box01 .alt_box01 .price01 .grade_label {
	font-size: 14px;
	font-weight: 400;
	color: #666;
}

.shop_order_info_prd_box01 .shop_prd_info_select01 {
	margin-top: 10px;
}

.shop_order_info_prd_box_wrap .shop_order_info_prd_box01 + .shop_order_info_prd_box01 {
	margin-top: 40px;
}

/* 주문하기 페이지 상품 간 구분선 */
.shop_order_info_prd_box01.product_group_last {
	border-bottom: 3px solid #ccc;
	margin-bottom: 20px;
	padding-bottom: 20px;
}

.shop_etc_ment02 {
	font-size: 15px;
	color: #333;
	font-weight: 400;
}

.shop_order_info_box01 .shop_etc_ment02 {
	margin-top: 10px;
}

.shop_payment_wrapper01 {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.shop_payment_wrapper01 .shop_payment_box01 {
	display: flex;
	align-items: center;
	width: calc(50% - 5px);
	height: 55px;
	background-color: #F9F9F9;
	border-radius: 5px;
	font-size: 17px;
	font-weight: 400;
	color: #888;
}

.shop_payment_wrapper01 .shop_payment_box01 .img {
	width: 35%;
	text-align: center;
}

.shop_payment_wrapper01 .shop_payment_box01 span {
	width: 65%;
	position: relative;
	padding-left: 20px;
}

.shop_payment_wrapper01 .shop_payment_box01 span::after {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 1px;
	height: 20px;
	background-color: #cacaca;
}

.shop_payment_wrapper01 .shop_payment_box01.change .img .active {
	display: none;
}

.shop_payment_wrapper01 .shop_payment_box01.change.active {
	background-color: var(--color-primary01);
	color: #fff;
}

.shop_payment_wrapper01 .shop_payment_box01.kakao.active {
	background-color: #FFEB00;
	color: #333;
}

.shop_payment_wrapper01 .shop_payment_box01.naver.active {
	background-color: #00DE5A;
	color: #333;
}

.shop_payment_wrapper01 .shop_payment_box01.change.active .basic {
	display: none;
}

.shop_payment_wrapper01 .shop_payment_box01.change.active .active {
	display: inline-block;
}




.shop_mypage_top_box01 {
	display: flex;
	flex-wrap: wrap;
	border: 1px solid #eee;
	min-height: 240px;
	border-radius: 5px;
	margin: 60px auto;
}

.shop_mypage_top_box01 .box {
	width: 33.33333%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.shop_mypage_top_box01 .box.info {
	background-color: #F9F9F9;
}

.shop_mypage_top_box01 .box + .box {
	border-left: 1px solid #eee;
}

.shop_mypage_top_box01 .box.info .txt_box01 {
	font-size: 17px;
	color: #333;
	font-weight: 400;
}

.shop_mypage_top_box01 .box.info .txt_box01 .name {
	font-size: 24px;
	font-weight: 600;
}

.shop_mypage_top_box01 .box.info .evaluation_tab_menu01 {
	margin-top: 20px;
}

.shop_mypage_top_box01 .box.icon .alt_box {
	margin-top: 10px;
	font-size: 17px;
	color: #333;
	font-weight: 600;
	text-align: center;
}


.shop_mypage_top_box01 .box.icon .alt_box .num_box01 {
	margin-top: 10px;
}

.shop_mypage_top_box01 .box.icon .alt_box .num_box01 b {
	font-size: 28px;
}


.shop_mypage_top_box01 .box.icon .alt_box .num_box01 b.blue {
	color: #1F3DFF;
}


.shop_mypage_top_box01 .box.icon .alt_box .num_box01 b.red {
	color: var(--color-primary01);
}


.shop_mypage_top_box01 .box.icon .alt_box .num_box01 b.black {
	color: #333333;
}


.shop_mypage_top_box01 .box.icon .alt_box .num_box01 b.green {
	color: #4CAF50;
}



.shop_mypage_top_box01 .box.icon .img.icon-green img {
	filter: hue-rotate(-120deg);
}


.shop_item_info_con.mypage + .shop_item_info_con.mypage {
	margin-top: 60px;
}


.shop_mypage_deliver_box01 {
	display: flex;
	flex-wrap: nowrap;
}

.shop_mypage_deliver_box01 .shop_mypage_deliver_step_box01 {
	flex: 1;
	position: relative;
	min-height: 160px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	text-align: center;
}

.shop_mypage_deliver_box01 .shop_mypage_deliver_step_box01:not(:last-child)::after {
	content: '';
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 0;
	width: 22px;
	height: 22px;
	background: url('/img/shop_mypage_step_arw.png') no-repeat center / cover;
}

.shop_mypage_deliver_step_box01 {
	font-weight: 600;
	color: #333;
}

.shop_mypage_deliver_step_box01 .tit01 {
	font-size: 17px;
}


.shop_mypage_deliver_step_box01 .num01 {
	font-size: 28px;
}

.shop_mypage_deliver_box01 .shop_mypage_deliver_step_box01 .num01 {
	margin-top: 10px;
}

.shop_mypage_deliver_result_box01 {
	display: flex;
	flex-wrap: wrap;
	background-color: #F9F9F9;
	min-height: 100px;
}

.shop_mypage_deliver_result_box01 .shop_mypage_deliver_step_box01 {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
}

.shop_mypage_deliver_result_box01 .shop_mypage_deliver_step_box01 + .shop_mypage_deliver_step_box01 {
	border-left: 1px solid #eee;
}

.shop_item_info_con.mypage .tit_box {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0 20px;
}

a.total_link_btn01,
.total_link_btn01 {
	padding-right: 18px;
	font-size: 17px;
	font-weight: 400;
	color: #333;
	line-height: 1.52em;
	position: relative;
}

a.total_link_btn01::after,
.total_link_btn01::after {
	content: '';
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 14px;
	height: 14px;
	background: url('/img/shop_mypage_arw02.png') no-repeat center / cover;
}

.shop_mypage_recent_box_wrapper01 {
	margin-top: 40px;
}

.shop_mypage_recent_box_wrapper01 .shop_mypage_recent_box01 {
	border-top: 1px solid #EEE;
	border-bottom: 1px solid #EEE;
}


.shop_mypage_recent_box01 .date_box01 {
	padding: 17px 20px;
	background-color: #f9f9f9;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 0 20px;
	font-size: 17px;
	font-weight: 400;
	color: #333;
	line-height: 1.52em;
}

.shop_mypage_recent_box01 .shop_price_prd_box01 {
	padding: 20px;
}

.shop_price_prd_box01 {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
}

.shop_price_prd_box01 .info_box01 {
	display: flex;
	align-items: flex-start;
	gap: 0 20px;
	font-size: 17px;
	font-weight: 400;
	color: #333;
}

.shop_price_prd_box01 .info_box01 .alt_box01 {
	width: calc(100% - 160px);
}

.shop_price_prd_box01 .info_box01 .img {
	min-width: 140px;
	width: 140px;
	height: 140px;
	aspect-ratio: 1/1;
	border-radius: 5px;
	overflow: hidden;
}

.shop_price_prd_box01 .info_box01 .imgEx {
	min-width: 30px;
	width: 30px;
	height: 30px;
	aspect-ratio: 1/1;
	border-radius: 5px;
	overflow: hidden;
	margin-top: 30px;
	
}

.shop_price_prd_box01 .info_box01 .img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.shop_price_prd_box01 .info_box01 .imgEx img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.shop_price_prd_box01 .info_box01 .alt_box01 > div + div {
	margin-top: 8px;
}

.shop_price_prd_box01 .info_box01 .state01 {
	color: var(--color-primary01);
	font-weight: 600;
}

.shop_price_prd_box01 .info_box01 .tit01 {
	font-weight: 600;
}

.shop_price_prd_box01 .info_box01 .alt01 {
	color: #888;
	line-height: 1.41em;
}

.shop_price_prd_box01 .price_box01 {
	font-size: 17px;
	font-weight: 400;
	color: #333;
	line-height: 1.41em;
	display: flex;
	gap: 0 5px;
}

.shop_price_prd_box01 .price_box01 b {
	font-weight: 600;
}


.shop_price_prd_box01 .price_box01 {
	flex-direction: column;
	align-items: flex-end;
	gap: 3px 0;
}

.shop_price_prd_box01 .price_box01 .price_detail01 {
	display: flex;
	justify-content: space-between;
	gap: 0 15px;
	font-size: 16px;
	color: #666;
}

.shop_price_prd_box01 .price_box01 .price_detail01 span:last-child {
	font-weight: 500;
	color: #333;
	min-width: 80px;
	text-align: right;
}

.shop_price_prd_box01 .price_box01 .price_detail01.discount span:last-child {
	color: #c72c1e;
}

.shop_item_info_con.mypage .tit_box_custom01 .custom_tit01 {
	min-width: 200px;
	border: 2px solid var(--color-primary01);
	border-bottom: unset;
	border-radius: 5px 5px 0 0;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--color-primary01);
	font-size: 26px;
	font-weight: 600;
	padding: 10px 0;
	background-color: #fff;
	z-index: 1;
}

.shop_item_info_con.mypage .tit_box_custom01::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	border-bottom: 2px solid var(--color-primary01);
}

.shop_item_info_con.mypage .tit_box_custom01.type02 .custom_tit01 {
	border-color: #FF9A15;
	color: #FF9A15;
}

.shop_item_info_con.mypage .tit_box_custom01.type02::after {
	border-color: #FF9A15;
}

/* 마이페이지 메뉴 반응형 - 화면 크기에 따라 한 줄에 표시되는 메뉴 개수 조절 */
@media all and (min-width:1201px) {
	.prd_tab_wrapper.mypage .prd_tab_slide_box01 .item {
		width: 20% !important; /* 5개씩 */
		flex: none !important;
	}
}
@media all and (max-width:1200px) and (min-width:769px) {
	.prd_tab_wrapper.mypage .prd_tab_slide_box01 .item {
		width: 25% !important; /* 4개씩 */
		flex: none !important;
	}
}
@media all and (max-width:768px) {
	.prd_tab_wrapper.mypage .prd_tab_slide_box01 .item {
		width: 33.333% !important; /* 3개씩 */
		flex: none !important;
	}
}

@media all and (max-width:1024px) {
	.prd_tab_wrapper.mypage {
		height: auto !important;
	}
	.prd_tab_wrapper.mypage .inner {
		height: auto !important;
	}
	.prd_tab_wrapper.mypage .prd_tab_slide_box01 {
		overflow: hidden;
		flex-wrap: wrap;
		height: auto !important;
	}
	.prd_tab_wrapper.mypage .prd_tab_slide_box01 .item {
		padding: 0 10px;
		white-space: nowrap;
	}
}

@media all and (max-width:700px) {
	.shop_mypage_top_box01 {
		min-height: unset;
	}
	.shop_mypage_top_box01 .box {
		width: 100%;
		padding: 30px;
	}
	.shop_mypage_top_box01 .box.icon {
		width: 50%;
		padding: 15px;
	}
	.shop_mypage_top_box01 .box + .box {
		border-left: unset;
		border-top: 1px solid #eee;
	}
	.shop_mypage_top_box01 .box.icon + .box.icon {
		border-left: 1px solid #eee;
		border-top: unset;
	}
	.shop_mypage_deliver_box01 .shop_mypage_deliver_step_box01 .tit01 {
		font-size: 14px;
	}
	.shop_mypage_deliver_box01 .shop_mypage_deliver_step_box01:not(:last-child)::after {
		width: 18px;
		height: 18px;
	}
	.shop_mypage_recent_box01 .shop_price_prd_box01 {
		flex-wrap: wrap;
		padding: 10px;
	}
	.shop_price_prd_box01 .info_box01 {
		width: 100%;
	}
	.shop_price_prd_box01 .price_box01 {
		margin-left: auto;
	}
	.shop_price_prd_box01 .info_box01 .state01 {
		flex-wrap: wrap;
		white-space: normal !important;
	}
}
/* END 마이페이지 반응형 */

.shop_mypage_date_top_box {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	justify-content: space-between;
	margin-top: 40px;
}

.shop_mypage_date_flex_box01 {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 17px;
	font-weight: 400;
	color: #333;
}

.shop_mypage_date_box01 {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 20px;
}

.shop_mypage_date_box01 .shop_date_form01 {
	max-width: 200px;
	min-width: 200px;
	border-radius: 5px;
	height: 55px;
	background-color: #f9f9f9;
	position: relative;
}

.shop_mypage_date_box01 .shop_date_form01 .img {
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
}

.shop_mypage_date_box01 .shop_date_form01 input {
	outline: unset;
	width: 100%;
	height: 100%;
	border: unset;
	background-color: transparent;
	padding: 0 20px;
	padding-right: 40px;
	position: relative;
	z-index: 2;
}

.mypage_period_buttons {
	display: flex;
	border-radius: 5px;
}

.mypage_period_buttons button {
	width: 100px;
	min-width: 100px;
	background-color: #f9f9f9;
	height: 55px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 17px;
	font-weight: 400;
	color: #888;
	border: 1px solid transparent;
	padding: unset;
}

.mypage_period_buttons button:first-child {
	border-radius: 5px 0 0 5px;
}

.mypage_period_buttons button:last-child {
	border-radius: 0 5px 5px 0;
}

.mypage_period_buttons button + button {
	border-left: 1px solid #eee;
}

.mypage_period_buttons button.active {
	border-color: var(--color-primary01);
	background-color: #fff;
	color: var(--color-primary01);
	font-weight: 600;
}

.shop_mypage_search_box01 {
	max-width: 415px;
	width: 100%;
}

.shop_mypage_table01 {
	position: relative;
	margin-top: 40px;
}

.shop_mypage_table01 table {
	width: 100%;
	border-bottom: 1px solid #eee;
}

.shop_mypage_table01 table td,
.shop_mypage_table01 table th {
	height: 65px;
	font-size: 17px;
	font-weight: 400;
	color: #333;
	line-height: 1.64em;
	text-align: center;
	padding: 10px 15px;
	vertical-align: middle;
}

.shop_mypage_table01 table td.tit01 {
	font-weight: 600;
	text-align: left;
}

.shop_mypage_table01 table td.red,
.shop_mypage_table01 table td.blue {
	font-weight: 600;
}

.shop_mypage_table01 table td.red {
	color: var(--color-primary01);
}

.shop_mypage_table01 table td.blue {
	color: #1F3DFF;
}

.shop_mypage_table01 table tbody tr {
	border-top: 1px solid #eee;
}

	.shop_mypage_table01.scroll {
		overflow: auto;
	}

	.shop_mypage_table01.scroll table {
		white-space: nowrap;
	}





.shop_mypage_coupon_wrappe01 .evaluation_tab_menu_box01 {
	padding: 20px 0;
	margin-top: 40px;
	border-top: 1px solid #eee;
}

.shop_mypage_coupon_prd_box01 {
	padding: 20px;
	padding-right: 50px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	border-radius: 5px;
	border: 1px solid #eee;
	gap: 20px;
}

.shop_mypage_coupon_prd_box01 + .shop_mypage_coupon_prd_box01 {
	margin-top: 20px;
}

.shop_mypage_coupon_prd_box01 .img {
	aspect-ratio: 1/1;
	border-radius: 5px;
	overflow: hidden;
	min-width: 170px;
	width: 170px;
}

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

.shop_mypage_coupon_prd_box01 .l_box {
	display: flex;
	align-items: center;
	gap: 20px;
}

.shop_mypage_coupon_prd_box01 .alt_box01 .tit01 {
	font-size: 24px;
	color: #333;
	font-weight: 600;
	line-height: 1.08em;
}

.shop_mypage_coupon_prd_box01 .alt_box01 .alt01 {
	margin: 15px 0 20px;
	font-size: 17px;
	font-weight: 400;
	color: #888;
}

.shop_mypage_coupon_prd_box01 .alt_box01 .date01 {
	font-size: 17px;
	color: #333;
	font-weight: 400;
	line-height: 1.64em;
}

.shop_mypage_coupon_prd_box01 .evaluation_tab_menu01 {
	margin-left: auto;
	min-height: 55px;
}

.shop_mypage_coupon_prd_box01.end {
	cursor: default;
	background-color: #F9F9F9;
}

.shop_mypage_coupon_prd_box01.end .img {
	opacity: 0.3;
}

.shop_mypage_coupon_prd_box01.end .alt_box01 .tit01,
.shop_mypage_coupon_prd_box01.end .alt_box01 .alt01,
.shop_mypage_coupon_prd_box01.end .alt_box01 .date01 {
	color: #888;
}

	.shop_mypage_coupon_prd_box01 .img {
		min-width: 130px;
		width: 130px;
	}

	.shop_mypage_coupon_prd_box01 .alt_box01 .tit01 {
		font-size: 18px;
	}

	.shop_mypage_coupon_prd_box01 .alt_box01 .alt01,
	.shop_mypage_coupon_prd_box01 .alt_box01 .date01 {
		font-size: 14px;
	}

	.shop_mypage_coupon_prd_box01 .evaluation_tab_menu01 {
		min-height: 45px;
	}

	.tit_box_custom01 .login_ment01 {
		display: none;
	}

.sub_shop_detailPage_box01 .shop_mypage_recent_box01 .date_box01 {
	border-top: 1px solid #EEE;
	border-bottom: 1px solid #EEE;
}

.sub_shop_detailPage_box01 .shop_mypage_recent_box01 .shop_price_prd_box01 {
	padding: 20px 0;
}

.sub_shop_detailPage_box01 .shop_price_prd_box01 {
	border-bottom: 1px solid #eee;
}

.sub_shop_detailPage_box01 .shop_price_prd_box01 .ment01 {
	font-size: 12px;
	font-weight: 600;
	line-height: 2em;
}

.sub_shop_detailPage_box01 .shop_price_prd_box01 .price_box01.blue {
	color: #7D9AF8;
}

.sub_shop_detail_alt_box01 .l_box {
	font-size: 17px;
	font-weight: 400;
	color: #888;
}

.sub_shop_detail_alt_box01 .l_box .tit01 {
	font-weight: 600;
	color: var(--color-primary01);
}

.sub_shop_detail_alt_box01 .l_box .alt01 {
	margin-top: 10px;
	display: flex;
	gap: 10px;
}

.sub_shop_detail_alt_box01 .l_box .alt01 .price01 {
	color: #333;
}


.sub_shop_detail_alt_box02 .l_box .alt01 {
	margin-top: 10px;
	display: flex;
	gap: 20px;
	font-size: 17px;
	font-weight: 400;
	color: #333;
}

.sub_shop_detail_alt_box02 .l_box .alt01 .price01 {
	color: #333;
}

.sub_shop_detail_alt_box02 .r_box .alt01 {
	margin-top: 10px;
	display: flex;
	gap: 20px;
	font-size: 17px;
	font-weight: 400;
	color: #333;
}

.sub_shop_detail_alt_box02 .r_box .alt01 .price01 {
	color: #333;
}


.sub_shop_detail_result_box01 .shop_prd_info_quick_alt_box01 {
	padding: 20px;
	margin: unset;
	border-top: unset;
	border-bottom: 1px solid #000;
}


.sub_shop_detail_result_box01 .shop_prd_info_quick_result01 {
	padding: 20px;
	background-color: #F9F9F9;
	border-radius: 0 0 5px 5px;
}





td.fc-day-sun {
	background-color: #FFF8FA;
}



.modal01 {
	position: fixed;
	left: 50%;
	top: 50%;
	transform: translate(-50% , -50%);
	width: 380px;
	height: 100%;
    max-height: 700px;
	z-index: 10000;
	background-color: #fff;
	display: flex;
	flex-direction: column;
	box-sizing: border-box;
	display: none;
}


.modal_bg01 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
	background-color: rgba(0, 0, 0, .7);
	display: none;
}

.modal01 * {
	box-sizing: border-box;
}

.modal01 .login_submit_btn_box01 {
	padding: 30px 3.75%;
	margin-top: unset;
	-ms-flex-negative: 0;
    flex-shrink: 0;
	height: 102px;
}

.modal01 .login_submit_btn_box01 .login_chk_btn01 {
	flex: 1;
	height: 40px;
	font-size: 15px;
}


.modal01 .tit_box {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 3.75%;
	-ms-flex-negative: 0;
    flex-shrink: 0;
    position: relative;
	height: 43px;
	color: #333;
	font-weight: 700;
}

.modal_body01 {
	padding: 20px 3.75%;
	border-top: 1px solid #eee;
	overflow-y: auto;
	-webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
	max-height: calc(100% - 145px);
}

.modal_body_tit_box {
	display: flex;
	gap: 10px;
	align-items: flex-start;
	padding-bottom: 3.75%;
}

.modal_body_tit_box .img_box {
	width: 70px;
    height: 70px;
    margin-top: 1px;
    border-radius: 0;
}

.modal_body_tit_box .prd_alt_tit_box {
	width: calc(100% - 80px);
}


.modal_body_tit_box .prd_tit01 {
	font-size: 14px;
	color: #333;
	line-height: 1.55em;
	overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.modal_body_tit_box .price_box01 {
	display: flex;
	gap: 5px;
	font-size: 14px;
	margin-top: 10px;
}

.modal_body_tit_box .price_box01 .price01 {
	font-weight: 700;
	color: #333;
}

.modal_body_tit_box .price_box01 .discount01 {
	color: #888;
}

.modal_body01 .prd_alt_box01 .prd_alt01 {
	border-top: 1px solid #eee;
	padding: 3.75% 0;
}

.modal_body01 .prd_alt_box01 .prd_alt_tit01,
.modal_body01 .prd_detail01 {
	font-size: 13px;
	color: #888;
	margin-bottom: 10px;
}

.modal_body01 .prd_count_detail01 {
	display: flex;
	justify-content: space-between;
}

.modal_body01  .count_price01 {
    font-weight: 700;
    color: #333;
	font-size: 14px;
}

.modal_body01 .prd_count_detail01 .shop_prd_count_box01 .shop_option_btn01 {
	width: 27px;
	min-width: 27px;
}


.modal_body01 .prd_count_detail01 .shop_prd_count_box01 .shop_option_count01 {
	width: 40px; 
	font-size: 13px;
}

.modal_body01 .shop_prd_info_select01 {
	height: 40px;
	font-size: 15px;
}


body.active {
    touch-action: none;
    overflow: hidden !important;
    -webkit-user-select: none;
    user-select: none;
}


html.active {
    touch-action: none;
    overflow: hidden !important;
    overscroll-behavior: none;
    -webkit-user-select: none;
    user-select: none;
}


.srch_box_custom {position: relative;}

.u_btn.srch_icon_custom {
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
}



.cart_popup_bg {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1100;
}

.cart_popup_bg.on {
    display: block;
}

.cart_popup {
    display: none;
    z-index: 1101;
    position: fixed;
    left: 50%;
    top: 50%;
    width: 600px;
    max-width: 90%;
    height: 620px;
    margin: auto;
    padding: 80px 50px;
    border: unset;
    border-radius: 10px;
    transform: translate(-50%, -50%);
    background: #fff;
    text-align: center;
}

.cart_popup.on {
    display: block;
}

a.shop_pop_close_btn01 {
	position: absolute;
	right: 20px;
	top: 20px;
}

.cart_popup.renewal p.desc {
	font-size: 30px;
	font-weight: 700;
	color: #333;
}

.cart_popup.renewal i {
    display: block;
    margin: 50px auto 25px;
}

.cart_popup.renewal p.txt {
	margin-top: unset;
	font-size: 20px;
	font-weight: 400;
	line-height: 1.5em;
}

.cart_popup.renewal .login_submit_btn_box01 {
	margin-top: 60px;
}




.my_order_complete_wrapper .top_box {
	text-align: center;
	margin-bottom: 30px;
}

.my_order_complete_ment {
	font-size: 30px;
	color: #333;
	font-weight: 600;
}

.my_order_complete_ment span {
	color: var(--color-primary01);
}

.my_order_complete_sub_ment {
	margin-top: 10px;
	font-size: 17px;
	color: #888;
	font-weight: 400;
	line-height: 1.52em;
}

.my_order_complete_wrapper .body_box .my_order_con + .my_order_con {
	margin-top: 60px;
}

.my_order_complete_wrapper .my_order_con .tit {
	padding-bottom: 20px;
	border-bottom: 1px solid #EEE;
	font-size: 24px;
	color: #333;
	font-weight: 600;
}

.my_order_complete_wrapper .my_order_con .date_box01 {
	padding: 15px 20px;
	font-size: 17px;
	color: #333;
	font-weight: 400;
	line-height: 1.52em;
	background-color: #F9F9F9;
	border-bottom: 1px solid #EEE;
}

.my_order_complete_wrapper .my_order_con .alt_box {
	display: flex;
	align-items: flex-start;
	flex-wrap: nowrap;
	padding: 20px 0;
	border-bottom: 1px solid #EEE;
	font-size: 17px;
	color: #333;
}

.my_order_complete_wrapper .my_order_con .alt_box .alt_tit {
	min-width: 180px;
	flex-shrink: 0;
	font-weight: 600;
	padding: 0 20px;
	white-space: nowrap;
}

.my_order_complete_wrapper.custom {
	padding-top: 40px;
}

.my_order_complete_wrapper.custom .my_order_con .alt_box .alt_tit {
	width: 300px;
}

.my_order_complete_wrapper.custom .my_order_con .alt_box .alt{
	width: calc(100% - 300px);
}

.my_order_complete_wrapper .my_order_con .alt_box .alt {
	flex: 1;
	padding: 0 20px;
	line-height: 1.41em;
}





.sho_p_x_btn {
	position: relative;
}


.shop_x_btn {
	position: absolute;
	top: 5px;
	right: 5px;
	z-index: 10;
}

.change_wrapper02 .custom_btn_box001.btn_area {
	display: none;
}




.myPageReviewWapper {
	padding: 60px 0;
}

.myPageReviewWapper .shop_item_info_con .tit_box .tit {
	color: #888;
}

.myPageReviewWapper .shop_item_info_con .tit_box .tit.active {
	color: var(--color-primary01);
}

.myPageReviewWapper .shop_item_info_con .tit_box .tit + .tit {
	position: relative;
	padding-left: 20px;
	margin-left: 19px;
}

.myPageReviewWapper .shop_item_info_con .tit_box .tit + .tit::after {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 1px;
	height: 25px;
	background-color: #8f8f8f;
}

.prd_tab_wrapper.mypage {
	height: unset;
	border: unset;
	overflow: hidden;
}

.prd_tab_wrapper.mypage .prd_tab_slide_box01 {
	flex-wrap: wrap;
	overflow: hidden;
}

.prd_tab_wrapper.mypage .prd_tab_slide_box01 .item {
	width: 25%;
	height: 65px;
	outline: 1px solid #E3E3E3;
    outline-offset: -1px;
}

.prd_tab_wrapper.mypage .prd_tab_slide_box01 .item.active {
	border: unset;
	outline: 2px solid var(--color-primary01);
	outline-offset: -2px;
	z-index: 1;
	position: relative;
}

.shop_price_prd_box01.prd_img_booox .info_box01 .img {
    min-width: 80px;
    width: 80px;
    height: 80px;
    aspect-ratio: 1 / 1;
    border-radius: 5px;
    overflow: hidden;
}

.shop_price_prd_box01.prd_img_booox .info_box01 .alt_box01 {
    width: calc(100% - 100px);
}



.myPageInquirywWapper {
	padding: 60px 0;
}

.answer_label001.type02 {
	color: #1976D2;
    background-color: #ECF5FF;
}

.prd_name.type02 {
	color: #333;
	font-weight: 600;
	font-size: 14px;
}

.prd_img_booox.custom {
	background-color: #fff;
	padding: unset;
	margin: unset;
}

.prd_img_booox.custom .box {
	width: 100%;
}

.prd_img_booox.custom .custom_btn_box001 > div{
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 20px;
	min-width: 90px;
}

.prd_img_booox.custom .box .label01 {
	height: 33px;
}

@media all and (max-width:1024px) {
	.prd_tab_wrapper.mypage .prd_tab_slide_box01 .item {
		font-size: 14px;
	}
	.my_order_complete_wrapper.custom .my_order_con .alt_box .alt_tit {
		width: 210px;
	}
	.my_order_complete_wrapper.custom .my_order_con .alt_box .alt {
		width: calc(100% - 210px);
	}
}

.inter_prod_box {
	padding: 60px 0;
}

.inter_prod_tit {
	font-size: 30px;
	color: #333;
	font-weight: 600;
	text-align: left;
	padding-bottom: 15px;
	border-bottom: 2px solid #333;
	margin-bottom: 20px;
}

/* 관련 상품 - 항상 영역에 꽉 차도록 flex-grow 사용 */
.inter_prod_box .shop_list_con_box01.item04 {
	gap: 40px 30px;
}
.inter_prod_box .shop_list_con_box01.item04 .shop_list_item01 {
	flex: 1 1 calc(25% - 30px);
	min-width: 200px;
	max-width: calc(25% - 22.5px);
}

.inter_prod_box .shop_list_item01 .img {
	width: 100%;
	aspect-ratio: 1/1;
}

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

/* 관련 상품 가격 영역 - 기본 2줄, 공간 부족시 3줄로 자동 줄바꿈 */
.inter_prod_box .shop_list_item01 .price_box01 > .price01 {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 3px;
}
.inter_prod_box .shop_list_item01 .price_box01 .discount01 {
	font-size: 16px;
}
.inter_prod_box .shop_list_item01 .price_box01 .percent01 {
	font-size: 19px;
	margin-right: 5px;
}
.inter_prod_box .shop_list_item01 .price_box01 > .price01 > .price01 b {
	font-size: 21px;
	font-weight: 700;
}
.inter_prod_box .shop_list_item01 .price_box01 > .price01 > span {
	font-size: 15px;
}

/* 1024px 이하: 3개 → 영역 꽉 참 */
@media all and (max-width:1024px) {
	.inter_prod_box .shop_list_con_box01.item04 .shop_list_item01 {
		flex: 1 1 calc(33.333% - 20px);
		max-width: calc(33.333% - 20px);
		min-width: 180px;
	}
	/* 모바일에서 관련 상품 padding 유지 */
	.shop_relation_product_section .inter_prod_box {
		padding: 50px 15px;
	}
}

/* 700px 이하: 2개 → 영역 꽉 참 */
@media all and (max-width:700px) {
	.inter_prod_box .shop_list_con_box01.item04 {
		gap: 30px 20px;
	}
	.inter_prod_box .shop_list_con_box01.item04 .shop_list_item01 {
		flex: 1 1 calc(50% - 10px);
		max-width: calc(50% - 10px);
		min-width: 140px;
	}
}

/* 480px 이하: 모바일 가격 폰트 조정 */
@media all and (max-width:480px) {
	.inter_prod_box .shop_list_con_box01.item04 {
		gap: 25px 15px;
	}
	.inter_prod_box .shop_list_con_box01.item04 .shop_list_item01 {
		flex: 1 1 calc(50% - 7.5px);
		max-width: calc(50% - 7.5px);
		min-width: 120px;
	}
	/* 모바일에서 가격 폰트 조정 */
	.inter_prod_box .shop_list_item01 .price_box01 .discount01 {
		font-size: 13px;
	}
	.inter_prod_box .shop_list_item01 .price_box01 .percent01 {
		font-size: 15px;
		margin-right: 3px;
	}
	.inter_prod_box .shop_list_item01 .price_box01 > .price01 > .price01 b {
		font-size: 17px;
	}
	.inter_prod_box .shop_list_item01 .price_box01 > .price01 > span {
		font-size: 12px;
	}
}




.shop_prd_all_chk_box01.flex {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
	justify-content: space-between;
}

	.shop_page_none .prd_page_nav_wrapper {
		display: none;
	}



.shop_list_item01.soldOut .img {
	position: relative;
}

.shop_list_item01.soldOut .img::after {
	content: 'SOLD OUT';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.8rem;
	font-weight: 500;
	color: #fff;
	background-color: rgba(0, 0, 0, 0.4);
}



@media all and (max-width: 770px) {
}

/* =====================================================
   마이페이지 포인트/쿠폰 스타일
   ===================================================== */

/* 포인트 요약 박스 */
.shop_mypage_point_summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    margin-bottom: 30px;
    color: #fff;
}
.shop_mypage_point_summary .label {
    font-size: 16px;
    font-weight: 500;
}
.shop_mypage_point_summary .value {
    font-size: 28px;
    font-weight: 700;
}
.shop_mypage_point_summary .value strong {
    font-size: 32px;
}

/* 마이페이지 테이블 */
.shop_mypage_table01 {
    width: 100%;
    border-collapse: collapse;
    border-top: 2px solid #333;
}
.shop_mypage_table01 thead th {
    padding: 15px 10px;
    background: #f8f9fa;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    border-bottom: 1px solid #ddd;
    text-align: center;
}
.shop_mypage_table01 tbody td {
    padding: 15px 10px;
    font-size: 14px;
    color: #555;
    border-bottom: 1px solid #eee;
    text-align: center;
}
.shop_mypage_table01 tbody td.plus {
    color: #2196F3;
    font-weight: 600;
}
.shop_mypage_table01 tbody td.minus {
    color: #f44336;
    font-weight: 600;
}

/* 쿠폰 리스트 */
.shop_mypage_coupon_list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.shop_coupon_item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: all 0.2s ease;
}
.shop_coupon_item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.shop_coupon_item.used {
    background: #f5f5f5;
    opacity: 0.7;
}
.shop_coupon_item .coupon_info {
    flex: 1;
}
.shop_coupon_item .coupon_name {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}
.shop_coupon_item .coupon_discount {
    font-size: 20px;
    font-weight: 700;
    color: #e91e63;
    margin-bottom: 5px;
}
.shop_coupon_item .coupon_period {
    font-size: 13px;
    color: #888;
}
.shop_coupon_item .coupon_status {
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    background: #4CAF50;
    color: #fff;
}
.shop_coupon_item.used .coupon_status {
    background: #9e9e9e;
}

/* 데이터 없음 */
.shop_mypage_nodata {
    padding: 60px 20px;
    text-align: center;
    background: #f9f9f9;
    border-radius: 8px;
}
.shop_mypage_nodata p {
    font-size: 15px;
    color: #888;
}

/* 반응형 */
@media (max-width: 768px) {
    .shop_mypage_point_summary {
        padding: 15px 20px;
    }
    .shop_mypage_point_summary .label {
        font-size: 14px;
    }
    .shop_mypage_point_summary .value {
        font-size: 22px;
    }
    .shop_mypage_point_summary .value strong {
        font-size: 26px;
    }
    
    .shop_mypage_table01 thead th,
    .shop_mypage_table01 tbody td {
        padding: 12px 8px;
        font-size: 13px;
    }
    
    .shop_coupon_item {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    .shop_coupon_item .coupon_status {
        align-self: flex-end;
    }
}

/* 마이페이지 wrapper - 내부 스크롤 방지 */
.shop_mypage_wrapper01 {
    overflow: hidden;
}

/* 마이페이지 회원정보 폼 스타일 - 테두리와 입력필드 사이 여백 추가 */
.shop_mypage_wrapper01 .login_bg01 {
    background-color: #fff !important;
    padding: 40px !important;
    border: 1px solid #ddd;
    border-radius: 8px;
}





.shop_order_info_tit_box01 .option_box01 .option_btn01.add_address_btn {
    min-width: 84px;
    padding: 0 12px;
    border: 1px solid var(--color-primary01);
    color: var(--color-primary01);
    transition: all 0.2s ease;
}


.shop_order_info_tit_box01 .option_box01 .option_btn01.add_address_btn.expanded {
    border-color: #999;
    color: #666;
}



.shop_deliver_chk_box01 .address_item_header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
}


.shop_deliver_chk_box01 .address_item_header .id_save_box {
    flex: 1;
}



.shop_deliver_chk_box01 .address_radio_label {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}


.shop_deliver_chk_box01 .address_radio_label[title] {
    position: relative;
}



.shop_deliver_chk_box01 .address_name {
    font-weight: 600;
    font-size: 17px;
}



.shop_deliver_chk_box01 .default_badge {
    color: var(--color-primary01);
    font-size: 14px;
    font-weight: 400;
}



.shop_deliver_chk_box01 .recipient_info {
    color: #333;
    margin-top: 8px;
}



.shop_deliver_chk_box01 .entry_method_info {
    color: #888;
    margin-top: 5px;
    font-size: 15px;
}



.shop_deliver_chk_box01 .address_item_btns {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}



.shop_deliver_chk_box01 .address_btn {
    display: inline-block;
    padding: 5px 12px;
    font-size: 13px;
    color: #666;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #fff;
    text-decoration: none;
    transition: all 0.2s ease;
}


.shop_deliver_chk_box01 .address_btn:hover {
    border-color: #999;
    color: #333;
    background-color: #f5f5f5;
}



.shop_deliver_chk_box01 .address_btn.edit_btn {
    border-color: var(--color-primary01);
    color: var(--color-primary01);
}



.shop_deliver_chk_box01 .address_btn.edit_btn.expanded {
    border-color: #999;
    color: #666;
}


.shop_deliver_chk_box01 .address_btn.delete_btn:hover {
    border-color: #dc3545;
    color: #dc3545;
}



.shop_deliver_chk_box01 .address_btn.set_default_btn {
    font-size: 12px;
    padding: 2px 8px;
    border-color: #28a745;
    color: #28a745;
    background: transparent;
    border-radius: 3px;
}

.shop_deliver_chk_box01 .address_btn.set_default_btn:hover {
    background: #28a745;
    color: #fff;
}




.inline_address_form {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    margin-top: 10px;
    margin-bottom: 10px;
}


.inline_address_form .shop_order_info_tit_box01 {
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}


.inline_address_form .shop_order_info_tit_box01 .tit {
    font-size: 18px;
}



.inline_address_form .login_input_form_box01 input,
.inline_address_form .login_input_form_box01 textarea {
    background-color: #f5f5f5;
    border: none;
}


.inline_address_form .login_input_form_box01 input:focus,
.inline_address_form .login_input_form_box01 textarea:focus {
    background-color: #f0f0f0;
    outline: none;
}



.no_address_form_container {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
}


.no_address_form_container .shop_order_info_tit_box01 {
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}



.no_address_form_container .login_input_form_box01 input,
.no_address_form_container .login_input_form_box01 textarea {
    background-color: #f5f5f5;
    border: none;
}


.no_address_form_container .login_input_form_box01 input:focus,
.no_address_form_container .login_input_form_box01 textarea:focus {
    background-color: #f0f0f0;
    outline: none;
}



div.shop_deliver_chk_box01 {
    cursor: default;
}


div.shop_deliver_chk_box01 .address_radio_label {
    cursor: pointer;
}

    .shop_deliver_chk_box01 .address_item_header {
        flex-direction: column;
        gap: 10px;
    }

    
    .shop_deliver_chk_box01 .address_item_btns {
        align-self: flex-end;
    }

    
    .inline_address_form {
        padding: 15px;
    }

/* ========================================
   지점 목록 정렬 - 파일 끝에 추가하여 우선순위 보장
   ======================================== */

/* 지도 영역 - .programCon .inner 안에 있으므로 100% 너비 사용 */
.jw_map01 {
	width: 100%;
}

/* 검색 영역 좌우 여백 제거 */
.flex_select_Box001 .inner {
	padding-left: 0 !important;
	padding-right: 0 !important;
	border-top: 1px solid #ddd !important;
}

/* ========================================
   지점안내 스크롤 제거 - 최우선 적용
   ======================================== */
.programCon .bt_wrap,
.programCon .bt_wrap .common_table02,
.programCon .common_table02,
.bt_wrap .common_table02 {
	overflow: visible !important;
	overflow-x: visible !important;
	overflow-y: visible !important;
}

.common_table02 table.branch_table {
	overflow: visible !important;
	width: 100% !important;
}

/* ========================================
   SVG 아이콘 스타일 (CSS 변수로 색상 변경 가능)
   ======================================== */

/* 달력 아이콘 */
.calendar-icon {
	display: inline-block;
	width: 33px;
	height: 33px;
	background-color: #999;
	-webkit-mask: url('/img/calender_icon01_active.svg') no-repeat center / contain;
	mask: url('/img/calender_icon01_active.svg') no-repeat center / contain;
}

.calendar-icon.active,
.prd_menu_type_box.calender:hover .calendar-icon,
.prd_menu_type_box.calender.on .calendar-icon {
	background-color: var(--color-primary01);
}

.prd_menu_type_box.calender .calendar-icon.basic {
	display: inline-block;
}

.prd_menu_type_box.calender .calendar-icon.active {
	display: none;
}

.prd_menu_type_box.calender:hover .calendar-icon.basic,
.prd_menu_type_box.calender.on .calendar-icon.basic {
	display: none;
}

.prd_menu_type_box.calender:hover .calendar-icon.active,
.prd_menu_type_box.calender.on .calendar-icon.active {
	display: inline-block;
}

/* 리뷰 아이콘 */
.review-icon {
	display: inline-block;
	width: 40px;
	height: 40px;
	background-color: var(--color-primary01);
	-webkit-mask: url('/img/review_icon01.svg') no-repeat center / contain;
	mask: url('/img/review_icon01.svg') no-repeat center / contain;
}
