@charset "utf-8";
/* 리뉴얼 */
/* 서브페이지 기본세팅 */
.scrollLock { overflow: hidden; }
.pg-detail {
	margin-top: var(--Header);
}
.pg-detail .pg-tit {
	padding: 75px 0 90px;
	color: #000;
}
.pg-detail .pg-tit > h2 {
	font-size: 60px;
	font-weight: 800;
}
.pg-detail .pg-tit > p {
	font-size: 16px;
	color: #444;
	margin-top: 20px;
}
.pg-detail .pg-tit > p span.ev-chk-txt {
	position: relative;
	display: block;
	text-align: left;
	width: 428px;
	margin: 0 auto;
	padding-left: 17px;
	font-size: 16px;
	color: #444;
}
.pg-detail .pg-tit > p span.ev-chk-txt:after {
	content: '\2714';
	position: absolute;
	top: 0;
	left: 0;
}
.pg-detail .pg-tit:before,
.pg-detail .pg-tit:after {
	display: none;
}
.custom-scroll::-webkit-scrollbar {
	width: 20px;  /* 스크롤바의 너비 */
}
.custom-scroll::-webkit-scrollbar-thumb {
	height: 30%; /* 스크롤바의 길이 */
	background: #DCDCDC; /* 스크롤바의 색상 */
	border-radius: 10px;
	border: 7px solid #f8f8f8;
}
.custom-scroll::-webkit-scrollbar-track {
	background: transparent;  /* 스크롤바 뒷 배경 색상 */
}
.pg_login .form-checkbox input[type="checkbox"]:checked + label:before,
.pg_join .form-checkbox input[type="checkbox"]:checked + label:before {
	content: '';
	text-align: center;
	line-height: 30px;
	font-size: 30px;
	background: url(/common/img/curriculum/chk_icon.png) no-repeat;
	background-size: contain;
	border: none;
}
.pg_join .req:before {
	content: '';
	display: inline-block;
	width: 8px;
	height: 8px;
	background-color: #C53B47;
	border-radius: 50%;
	vertical-align: top;
	margin-right: 3px;
}
.pg_join .join-form .req::before {
	display: none;
}
.pg_join .join-form .req::after {
	content: '';
	display: inline-block;
	width: 8px;
	height: 8px;
	background-color: #C53B47;
	border-radius: 50%;
	vertical-align: top;
	margin-left: 2px;
}
.flex-box {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}
.nav-blk #header .top-nav,
.nav-blk #header .main-nav {
	background: #000;
}

/* 로그인 페이지 */
.pg_login {
	/*background: #fff url('/common/img/member/bg-login.png') no-repeat center 130% / auto;*/
	/*min-height: 1110px;*/
	padding-bottom: 200px;
	margin-top: -120px;
	padding-top: 120px;
}
.pg_login .pg-tit {
	/*color: #fff;*/
	/*font-family: "ohneuleun", sans-serif;*/
	font-family: "SUIT", sans-serif;
}
.pg_login .login-wrap {
	max-width: 600px;
	margin: 0 auto;
}
.pg_login .loginForm dd input[type="text"],
.pg_login .loginForm dd input[type="password"] {
	height: 70px;
	border: none;
	background: #4D4D4D;
	color: #ccc;
	font-size: 20px;
	padding-left: 1em;
}
.pg_login input::placeholder {color:#ccc;}
.pg_login input::-webkit-input-placeholder {color:#ccc;}
.pg_login input:-ms-input-placeholder {color:#ccc;}

.pg_login .login-wrap .loginForm {
	padding-right: 170px;
}
.pg_login .login-wrap .loginForm .inputWrap {
	overflow: hidden;
}
.pg_login .login-wrap .loginForm .id-wrap {
	border-radius: 5px 5px 0 0;
}
.pg_login .login-wrap .loginForm .pw-wrap {
	border-radius: 0 0 5px 5px;
	position: relative;
}
.pg_login .login-wrap .loginForm .pw-wrap:after {
	content: '';
	position: absolute;
	left: 50%;
	top: 0;
	transform: translateX(-50%);
	width: 91%;
	height: 1px;
	background: #717171;
}
.pg_login .login-wrap .login-btn {
	width: 160px;
	line-height: 140px;
	border-radius: 5px;
	background: #C53B47;
	color: #fff;
	font-size: 20px;
	font-weight: 700;
	border: 1px solid #C53B47;
	transition: all ease 0.2s;
}
.pg_login .login-wrap .login-btn:hover {
	background: #fff;
	color: #C53B47;
}
.pg_login .form-checkbox {
	margin-top: 1.5em;
}
.pg_login .form-checkbox > label {
	/*color: #fff;*/
	font-size: 16px;
	padding-left: 34px;
}
.pg_login .form-checkbox > label:before {
	background: inherit;
	width: 24px;
	height: 24px;
	border-radius: 4px;
	border: 1px solid #CCCCCC;
	transform: translateY(-50%);
	margin-top: 0;
}
.pg_login .social-wrap {
	margin-top: 30px;
	display: flex;
	/*justify-content: space-between;*/
	align-items: center;
	gap: 15px;
}
.pg_login .btn-snsLogin {
	width: 190px;
	height: 50px;
	border-radius: 5px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	padding: 0 1em;
	color: #fff;
	font-size: 16px;
	position: relative;
}
.pg_login .btn-snsLogin:after {
	content: '';
	position: absolute;
	top: 50%;
	left: 26%;
	transform: translateY(-50%);
	width: 1px;
	height: 20px;
	background: #fff;
	opacity: 0.3;
}
.pg_login .btn-snsLogin.__kakao:after {
	content: '';
	background: #000;
}
.pg_login .btn-snsLogin.__naver {
	background: #06BE34;
}
.pg_login .btn-snsLogin.__kakao {
	background: #FFEB00;
	color: #000;
}
.pg_login .btn-snsLogin.__facebook {
	background: #3B5998;
}
.pg_login .btn-snsLogin .bsL-txt {
	padding-left: 30px;
	white-space: nowrap;
}
.pg_login .login-tail {
	margin-top: 2.5em;
}
.pg_login .login-tail > li {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 0.5em;
	font-size: 16px;
	color: #666;
}
.pg_login .login-tail > li a {
	font-weight: 500;
	color: #000;
}


/* 회원가입-약관동의 */
.pg_join .step-wrap {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	gap: 10em;
}
.pg_join .step {
	width: 128px;
	height: 128px;
	background: #EEE;
	border-radius: 50%;
	font-size: 16px;
	color: #999;
	position: relative;
}
.pg_join .step > p {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	text-align: center;
}
.pg_join .step .agr {
	display: block;
	font-size: 20px;
	color: #666666;
	font-weight: 500;
}
.pg_join .step.on {
	color: #fff;
	background: #c53b47;
}
.pg_join .step.on .agr {
	color: #fff;
}
.pg_join .step-02 {
	position: relative;
}
.pg_join .step-02:before {
	content: '';
	position: absolute;
	top: 64px;
	left: -9.2em;
	width: 9em;
	height: 1px;
	border: 1px dashed #CCCCCC;
}
.pg_join .step-02:after {
	content: '';
	position: absolute;
	top: 64px;
	right: -9.2em;
	width: 9em;
	height: 1px;
	border: 1px dashed #CCCCCC;
}
.pg_join .join-agree > h4 {
	font-size: 30px;
	font-weight: 700;
	color: #000;
	letter-spacing: inherit;
	margin-bottom: 0.5em;
}
.pg_join .join-agree > div {
	border: 1px solid #ccc;
	background: #f8f8f8;
	border-radius: 5px;
	height: 280px;
	color: #444444;
	padding: 2em;
}
.pg_join .form-checkbox > label {
	font-size: 16px;
	color: #666666;
	padding-left: 34px;
}
.pg_join .form-checkbox > label:before {
	content: '';
	width: 24px;
	height: 24px;
	border-radius: 4px;
	border: 1px solid #CCCCCC;
	margin-top: 0;
	transform: translateY(-50%);
}
.pg_join .join-agree > p {
	margin-top: 1.5em;
}
.pg_join .ja-btn-wrap {
	text-align: center;
	margin-top: 60px;
	margin-bottom: 150px;
}
.pg_join .ja-btn-wrap a {
	display: inline-block;
	font-size: 18px;
	font-weight: 700;
	width: 200px;
	line-height: 50px;
	color: #C53B47;
	margin: 0 10px;
	border: 1px solid #C53B47;
	border-radius: 100px;
}
.pg_join .ja-btn-wrap a.goNext {
	background-color: #c53b47;
	border-color: #c53b47;
	color: #fff;
}

/* 회원가입-정보입력 */
.pg_join input[type='text'], .pg_join input[type='password'], .pg_join input[type='name'], .pg_join input[type='tel'], .pg_join input[type='search'], .pg_join input[type='number'] {
	border: 1px solid #CCCCCC;
	border-radius: 5px;
	width: 100%;
	max-width: 420px;
	height: 60px;
}
.pg_join .notice-txt {
	font-size: 16px;
	color: #888888;
	font-weight: 400;
	margin-bottom: 2em;
	text-align: left;
}
.pg_join .joinForm-wrap {
	margin-top: 0;
}
.pg_join .join-form {
	width: 100%;
}
.pg_join tbody th {
	text-align: left;
	font-size: 18px;
	font-weight: 700;
	color: #000;
}
.pg_join tbody tr:nth-child(8) th {
	padding-top: 0 !important;
}
.pg_join tbody td {
	padding: 10px 0;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 10px;
	color: #666;
}
.pg_join tbody td span {
	font-size: 16px;
	color: #888;
	padding-left: 1em;
}
.pg_join .input-btn-box {
	display: flex;
	gap: 10px;
}
.pg_join .btn-gray {
	width: 120px;
	height: 60px;
	border-radius: 5px;
	background: #777777;
	font-size: 18px;
	font-weight: 700;
	color: #fff;
}
.pg_join .btn-blk {
	width: 150px;
	height: 60px;
	border-radius: 5px;
	background: #000;
	font-size: 18px;
	font-weight: 700;
	color: #fff;
}
.pg_join .wrap {
	max-width: 420px;
	width: 100%;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 10px;
}
.pg_join .wrap.__phone select,
.pg_join .wrap.__phone input[type='number'] {
	border: 1px solid #CCCCCC;
	border-radius: 5px;
	height: 60px;
	width: calc(100% / 3);
	color: #666;
	font-size: 16px;
}
.pg_join .wrap.__email input[type='text'] {
	width: calc(100% / 2);
}
.pg_join select#selMail,
.pg_join select#userJob {
	width: 150px;
	height: 60px;
	border-radius: 5px;
	color: #666;
	font-size: 16px;
}
.pg_join .address-wrap {
	display: block !important;
}
.pg_join .__search {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 10px;
	margin-bottom: 15px;
}

/* 회원가입-추천인코드 */
.pg_join .recom-wrap {
	width: 100%;
	text-align: center;
	background: #FBFBFB;
	border-radius: 5px;
	color: #000;
	padding: 3em 0;
	margin-bottom: 70px;
}
.pg_join .recom-wrap > h1 {
	font-size: 30px;
	font-weight: 700;
}
.pg_join .recom-wrap > p {
	font-size: 18px;
	font-weight: 400;
}
.pg_join .search-wrap {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 2em 0 0.7em 0;
}
.pg_join .btn-search {
	width: 120px;
	height: 60px;
	background: #000;
	color: #fff;
	border-radius: 0 5px 5px 0;
	font-size: 18px;
	font-weight: 700;
}
.pg_join .search-wrap input[type=text] {
	border-radius: 5px 0 0 5px;
	max-width: 830px;
}
.pg_join .info-wrap {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 5px;
	font-size: 16px;
	color: #999;
}

/* 회원가입-가입 완료 */
.pg_join .step-clear {
	text-align: center;
	color: #000;
	font-size: 16px;
	padding-top: 100px;
}
.pg_join .step-clear h3 {
	font-size: 40px;
	font-weight: 700;
	margin: 50px 0 10px;
}

/* SNS 간편 회원가입 */
.pg_sns_login input[type='text'],
.pg_sns_login input[type='password'],
.pg_sns_login input[type='name'],
.pg_sns_login input[type='tel'],
.pg_sns_login input[type='search'],
.pg_sns_login input[type='number'],
.pg_sns_login select {
	border: 1px solid #CCCCCC;
	border-radius: 5px;
	width: 100%;
	max-width: 420px;
	padding: 0 0 0 1rem;
	height: 60px;
}
#container.pg_sns_login {
	padding-top: 0;
	margin-top: 120px;
}
.pg_sns_login .sns-join-wrap {
	width: 800px;
}
.pg_sns_login .pg-tit {
	padding: 75px 0 90px;
}
.pg_sns_login .pg-tit > h2 {
	margin-bottom: 28px;
	font-size: 60px;
	font-weight: 800;
	line-height: 60px;
}
.pg_sns_login .pg-tit span {
	display: block;
	font-size: 20px;
	font-weight: 500;
	color: #333333;
}
.pg_sns_login .form-checkbox > label:before {
	content: "";
	display: inline-block;
	width: 20px;
	height: 20px;
	background-color: #FFFFFF;
	border: 1px solid #DDDDDD;
	border-radius: 4px;
}
.pg_sns_login .form-checkbox input[type="checkbox"]:checked + label:before {
	content: '';
	text-align: center;
	line-height: 20px;
	font-size: 20px;
	background: url(/common/img/curriculum/chk_icon.png) no-repeat;
	background-size: contain;
	border: none;
}
.pg_sns_login .joinForm-wrap .joinForm {
	background-color: #FFFFFF;
	padding: 30px 0;
}
.pg_sns_login .wrap {
	max-width: 420px;
	width: 100%;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 10px;
}
.joinForm table th {
	min-width: 143px;
}
.pg_sns_login tbody td {
	padding: 10px 0;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 10px;
	color: #666;
}
.pg_sns_login select#selMail {
	width: 150px;
	height: 60px;
	border-radius: 5px;
	color: #666;
	font-size: 16px;
}
.pg_sns_login .wrap.__email input[type='text'] {
	width: calc(100% / 2);
}
.pg_sns_login .notice-txt {
	font-size: 16px;
	color: #888888;
	font-weight: 400;
	margin-bottom: 2em;
	text-align: left;
}
.pg_sns_login .req:before {
	content: '';
	display: inline-block;
	width: 8px;
	height: 8px;
	background-color: #C53B47;
	border-radius: 50%;
	vertical-align: top;
	margin-right: 3px;
	color: #d80000;
}
.pg_sns_login .ja-btn-wrap a {
	display: inline-block;
	font-size: 18px;
	font-weight: 700;
	width: 200px;
	line-height: 50px;
	color: #C53B47;
	margin: 0 10px;
	border: 1px solid #C53B47;
	border-radius: 100px;
}
.pg_sns_login .ja-btn-wrap a.goNext {
	background-color: #c53b47;
	border-color: #c53b47;
	color: #fff;
}

/* 마이페이지 */
.pg_my .coupon-frame {
	display: none;
}
.pg_my .coupon-frame.active {
	display: block;
}
.pg_my .coupon-wrap {
	width: 720px;
	margin: auto;
	box-shadow: 0 0 20px #00000017;
	border-radius: 5px;
	margin-bottom: 80px;
	padding: 35px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 26px;
	color: #000;
	position: relative;
}
.pg_my .coupon-wrap:after {
	content: '';
	position: absolute;
	top: 50%;
	left: 64%;
	transform: translate(-50%, -50%);
	width: 1px;
	height: 100px;
	border: 1px dashed #ccc;
}
.pg_my .coupon-wrap .left-wrap {
	width: 70%;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 25px;
}
.pg_my .coupon-wrap .status {
	display: block;
	width: 90px;
	line-height: 30px;
	font-size: 16px;
	font-weight: 500;
	background: #999999;
	border-radius: 18px;
	text-align: center;
	color: #fff;
}
.pg_my .coupon-wrap .user-name {
	font-weight: 700;
}
.pg_my .coupon-wrap .copy-wrap {
	font-size: 16px;
	color: #666;
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 10px;
}
.pg_my .coupon-wrap .copy-wrap input {
	width: auto;
	background: inherit;
	max-width: 80px;
	font-size: 16px;
	font-weight: 700;
}
.pg_my .coupon-wrap .copy-wrap button {
	font-weight: 700;
}
.pg_my .coupon-wrap .right-wrap {
	width: 30%;
	font-size: 26px;
	font-weight: 700;
}
.pg_my .tab {
	display: inline-flex;
	justify-content: center;
	height: 72px;
	padding: 6px;
	border: 1px solid #ddd;
	border-radius: 40px;
}
.pg_my .tab .tab-item {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	padding: 0 42px;
	border-bottom: 0;
	background-color: #fff;
	border-radius: 40px;
	color: #999;
}
.pg_my .tab .tab-item.active {
	background-color: #C53B47;
	color: #fff;
}

.pg_my .coupon-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 2em;
}
.pg_my .useable-coupon {
	font-size: 18px;
	color: #666666;
	padding-left: 2em;
}
.pg_my .select-coupon {
	width: 120px;
	height: 40px;
	border-radius: 5px;
	border: 1px solid #CCCCCC;
	font-size: 16px;
	color: #666;
}
.pg_my .coupon-list {
	padding: 2em;
	background: #FBFBFB;
	color: #000;
	border-radius: 5px;
	margin: 10px 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.pg_my .c-name {
	font-size: 24px;
	font-weight: 700;
}
.pg_my .usage-status {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 2em;
}
.pg_my .usage-status.able .use {
	font-size: 18px;
	font-weight: 700;
}
.pg_my .usage-status .use {
	position: relative;
}
.pg_my .usage-status .use:after {
	content: '';
	position: absolute;
	top: 50%;
	right: -15px;
	transform: translateY(-50%);
	background: #CCCCCC;
	width: 1px;
	height: 18px;
}
.pg_my .usage-status.able .expired {
	font-weight: 500;
}
.pg_my .usage-status.unable .use,
.pg_my .usage-status.unable .expired {
	color: #999;
	font-weight: 400;
}
.pg_my .usage-status .btn-detail {
	font-size: 16px;
	font-weight: 500;
	line-height: 40px;
	width: 128px;
	border-radius: 20px;
	background: #000;
	color: #fff;
	text-align: center;
}
/*페이지네이션*/
.pagi-wrap {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 100px 0 180px;
}
.pagi-wrap .pagi_prev_box,
.pagi-wrap .pagi_next_box {
	display: inline-block;
	width: 40px;
	height: 40px;
}
.pagi-wrap .pagi_prev_box2 {
	margin-right: 30px;
}
.pagi-wrap .pagi_next_box2 {
	margin-left: 30px;
}
.pagi-wrap .pagi_prev_box a,
.pagi-wrap .pagi_next_box a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	transition: all .3s;
}
.pagi-wrap .pg-num {
	width: 36px;
	line-height: 36px;
	margin: 0 7px;
	display: inline-block;
	border-radius: 50%;
	text-align: center;
	font-weight: 500;
	font-size: 18px;
	color: #999999;
	font-family: "Mulish", sans-serif;
	cursor: pointer;
	transition: all .3s;
}
.pagi-wrap .pg-num:hover {
	background: #C53B47;
	color: #fff;
	opacity: 0.3;
}
.pagi-wrap .pg-num.active {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: #C53B47;
	font-size: 18px;
	font-weight: 700;
	color: #fff;
	font-family: "Mulish", sans-serif;
}
.pagi-wrap .pg-num.active:hover {
	opacity: 1;
}

/* 마이페이지-쿠폰 자세히보기 */
.pg_my .pop-detail-wrap {
	background: #00000078;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 101;
	display: none;
}
.pg_my .coupon-list-wrap.pop .pop-detail-wrap {
	display: block;
}
.pg_my .pop-inner .btn-close {
	position: absolute;
	top: 20px;
	right: 20px;
	width: 26px;
	height: 26px;
	cursor: pointer;
}
.pg_my .pop-inner .btn-close:before {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	height: 2px;
	transform: rotate(45deg);
	background: #666666;
}
.pg_my .pop-inner .btn-close:after {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	height: 2px;
	transform: rotate(-45deg);
	background: #666666;
}
.pg_my .pop-inner {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 500px;
	border-radius: 10px;
	padding: 80px 40px;
	background: #fff;
}
.pg_my .pop-inner .img-wrap > img {
	width: 100%;
}
.pg_my .info-inner {
	padding: 10px 0;
	border-top: 3px solid #000;
	border-bottom: 1px solid #000;
	margin: 40px 0 25px;
}
.pg_my .info-inner > ul {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	margin: 15px 0;
}
.pg_my .info-inner .title {
	width: 100px;
	font-size: 16px;
	font-weight: 700;
	color: #000;
}
.pg_my .info-inner .info-txt {
	font-size: 16px;
	color: #666;
}
.pg_my .info-tail > li {
	text-indent: -15px;
	padding-left: 15px;
	font-size: 12px;
	color: #999;
}
.pg_my .btn-use {
	width: 280px;
	line-height: 60px;
	font-size: 20px;
	font-weight: 700;
	border-radius: 100px;
	margin-top: 30px;
	color: #fff;
}
.pg_my .btn-use.able-c {
	background: #000;
}
.pg_my .btn-use.unable-c {
	background: #CCCCCC;
}

.pg_detail .board-frame {
	margin-top: 0;
	/*margin-top: -120px;*/
}
.pg_detail .maxframe2 {
	position: relative;
	max-width: 1920px;
	margin: 0 auto;
}
.pg_detail .subframe {
	max-width: 1460px;
	margin: 0 auto;
	width: calc(100% - 100px);
}

/* animate */
[data-animate-up] {
	transform: translateY(13.89vw);
	opacity: 0;
	transition: all 0.7s;
}

[data-animate-up].on {
	transform: translateY(0);
	opacity: 1;
}

[data-animate-fade] {
	opacity: 0;
	transition: all 0.7s;
}

[data-animate-fade].on {
	opacity: 1;
}

[data-animate-last] {
	transform: translateY(36.81vw);
	transition: all 4s;
}
[data-animate-last].on {
	transform: translateY(0);
}

/* SMP */
.w-1460 {
	max-width: 1460px;
	width:90%;
	margin: 0 auto;
}
.pg-detail .academy {
	margin-top:0;
}
.academy .sec-wrap {
	padding:180px 0;
}
.academy #section1 {
	overflow: hidden;
	padding:0;
}
.academy #section1 .video-wrap {
	position:relative;
	font-size: 0;
}
.academy #section1 .video-wrap:before {
	content: "";
	position:absolute;
	top:0;
	left:0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,.7);
}
.academy #section1 video {
	max-width: 100%;
}
.academy .img-box img {
	position:static;
	min-width: initial;
	min-height: initial;
}
.academy #section2 .img-box {
	/*padding-top: 30.821%;*/
	max-width: 680px;
	border-radius: 15px;
	font-size: 0;
}
.academy #section2 .txt-box {
	/*width: calc(100% - 98px - 680px);*/
}
.academy #section2 .txt-box > strong {
	display: block;
	font-size: 50px;
	font-weight: 800;
	font-family: "Mulish", "sans-serif";
	color:#222;
	line-height: 1;
}
.academy #section2 .txt-box > span {
	font-size: 22px;
	color: #C53B47;
	font-family: "Mulish", "sans-serif";
	line-height: 2.272;
}
.academy #section2 .txt-box > p {
	margin-top: 59px;
	font-size: 24px;
	line-height: 1.458;
	color:#222;
	letter-spacing: -.3px;
}
.academy #section2 .txt-box > p > b {
	font-weight: bold;
}
.academy #section2 ul > li {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
	margin-bottom: 180px;
}
.academy #section2 ul > li:last-child {
	margin-bottom:0;
}
.academy #section2 ul > li:first-child .txt-box {
	position: relative;
	left: 0;
	max-width: 680px;
	min-width: 680px;
	width: 100%;
}
.academy #section2 ul > li:nth-child(2) .txt-box {
	position: relative;
	left: 0;
	max-width: 680px;
	min-width: 680px;
	width: 100%;
}
.academy #section2 ul > li:last-child .txt-box {
	position: relative;
	left: 0;
	max-width: 680px;
	min-width: 680px;
	width: 100%;
}
.academy #section3 {
	background: url('/common/img/academyIntro/academy_sec03_bg.png') no-repeat top 180px right -220px #111;
	padding-bottom: 240px;
}
.academy #section3 .swiper-wrap {
	position: relative;
	overflow: hidden;
	padding-bottom: 90px;
}
.academy #section3 .tit-wrap {
	text-align: center;
	margin-bottom: 61px;
	color: #fff;
}
.academy #section3 .tit-wrap > span {
	color:#FFC9C9;
	font-size: 40px;
	line-height: 1.625;
}
.academy #section3 .tit-wrap > p {
	font-size: 50px;
	font-weight: 800;
	line-height: 1.3;
}
.academy #section3 .swiper-wrapper {
	height:auto;
}
.academy #section3 .swiper-slide {
	transition:all 200ms linear;
	transform: scale(0.92);
}
.academy #section3 .swiper-slide-active {
	/*transform: scale(1.237);*/
	/*width:calc(100% + 110px) !important;*/
	margin: 0 60px;
	transform: scale(1);
}
.academy #section3 .swiper-slide .img-box {
	border-radius: 20px;
	overflow: hidden;
	font-size: 0;
}
.academy #section3 .swiper-slide .txt-box {
	text-align: center;
	margin-top: 17px;
}
.academy #section3 .swiper-slide .txt-box > p {
	font-size: 32px;
	color:#BBB;
	font-weight: bold;
	opacity: 0;
	transition: opacity .3s;
}
.academy #section3 .swiper-slide-active .txt-box > p {
	opacity: 1;
}
.academy #section3 .educationSwiper {
	margin-left: -120px;
}
.academy #section3 .swiper-container-horizontal>.swiper-pagination-progressbar,
.academy #section3 .swiper-container-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
	width:90%;
	max-width: 1460px;
	margin: 0 auto;
	left: 50%;
	bottom:0;
	top:initial;
	transform: translateX(-50%);
	height: 3px;
	background-color: #555;
}
.academy #section3 .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
	background: #C53B47;
}
.academy #section3 .btn-wrap {
	position:absolute;
	z-index: 10;
	width: 33%;
	top: calc(50% - 64px);
	left: 50%;
	transform: translate(-50%, -50%);
	/*height:57px;*/
}
.academy #section3 .swiper-button-next,
.academy #section3 .swiper-container-rtl .swiper-button-prev {
	background-image: url('/common/img/academyIntro/academy-arrow-next.png');
	height: 57px;
	width: 25px;
	background-size: 25px 57px;
}
.academy #section3 .swiper-button-prev,
.academy #section3 .swiper-container-rtl .swiper-button-next {
	background-image: url('/common/img/academyIntro/academy-arrow-prev.png');
	height: 57px;
	width: 25px;
	background-size: 25px 57px;
}
.academy #section4 {
	background-color: #F9F9F9;
}
.academy #section4 .tit-wrap {
	text-align: center;
	margin-bottom: 57px;
}
.academy #section4 .tit-wrap > span {
	display: inline-block;
	border-radius: 35px;
	border: 1px solid #C53B47;
	font-size: 24px;
	font-weight: bold;
	color:#C53B47;
	padding: 3px 30px;
}
.academy #section4 .tit-wrap > p {
	margin-top: 20px;
	font-weight: 800;
	font-size: 50px;
	color: #222;
	line-height: 1.3;
}
.academy #section4 .cont-wrap > ul {
	flex-wrap: wrap;
	justify-content: center;
	align-items: stretch;
	gap: 29px;
}
.academy #section4 .cont-wrap > ul > li {
	flex: 1;
	min-width: calc(33.333% - 58px / 3);
	max-width: calc(33.333% - 58px / 3);
	background-color: #fff;
	box-shadow: 7px 7px 20px rgba(0,0,0,.1);
	padding: 69px 20px;
	border-radius: 15px;
	text-align: center;
}
.academy #section4 .img-box {
	background-color: transparent;
	margin-bottom:40px
}
.academy #section4 .img-box > img {
	display: block;
	width:auto;
	height:auto;
	max-height: 83px;
}
.academy #section4 .txt-box > .cont-tit {
	font-size: 35px;
	font-weight: 800;
	line-height: 1.228;
	margin-bottom: 38px;
}
.academy #section4 .txt-box > .cont-txt {
	font-size: 24px;
	line-height: 1.333;
	color: #777;
}
.academy #section5 {
	overflow: hidden;
	padding-bottom: 231px;
}
.academy #section5 .tit-wrap {
	text-align: center;
	margin-bottom: 100px;
}
.academy #section5 .tit-wrap > span {
	font-size: 40px;
	font-weight: bold;
	line-height: 1.625;
}
.academy #section5 .tit-wrap > p {
	color:#C53B47;
	font-size: 50px;
	font-weight: 800;
	line-height: 1.3;
}
.academy #section5 .cont-step-wrap {
	position: relative;
}
.academy #section5 .cont-step-wrap > ul {
	position: relative;
}
.academy #section5 .cont-step-wrap > ul:before {
	content: "";
	position: absolute;
	width: 1px;
	height: calc(100% - 110px);
	background-color: #ccc;
	top: 10px;
	left: 11px;
}
.academy #section5 .cont-step-wrap > ul > li {
	position: relative;
	margin-bottom: 130px;
}
.academy #section5 .cont-step-wrap > ul > li > span {
	position:absolute;
	width:24px;
	height:24px;
	border-radius: 50%;
	background-color: #C53B47;
	top:10px;
}
.academy #section5 .cont-step-wrap > ul > li > span:before {
	content: "";
	position: absolute;
	top:50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width:55%;
	height: 55%;
	background-color: #fff;
	border-radius: 50%;
}
.academy #section5 .cont-step-wrap > ul > li:last-child {
	margin-bottom: 140px;
}
.academy #section5 .cont-step-wrap > ul > li .txt-box {
	padding-left: 88px;
}
.academy #section5 .cont-step-wrap > ul > li .txt-box > strong {
	font-size: 35px;
	font-weight: 800;
	line-height: 1.228;
}
.academy #section5 .cont-step-wrap > ul > li .txt-box > p {
	font-size: 24px;
	line-height: 1.333;
	margin-top: 8px;
	color:#777;
}
.academy #section5 .cont-step-wrap .right-cont-box {
	position: absolute;
	right: -20.616%;
	bottom: -272px;
	width: 100%;
	height: 118%;
	max-width: 1036px;
	max-height: 1036px;
	background-color: rgba(197, 59, 71, .03);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
}
.academy #section5 .cont-step-wrap .right-cont-box:before {
	content: "";
	position: absolute;
	width: 88.61%;
	height: 88.61%;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	background-color: rgba(197,59,71,.03);
	border-radius: 50%;
}
.academy #section5 .cont-step-wrap .right-cont-box > .inbox {
	text-align: center;
	z-index:0;
}
.academy #section5 .cont-step-wrap .right-cont-box > .inbox > strong {
	display: block;
	margin: 60px 0 22px;
	font-size: 45px;
	font-weight: 800;
	line-height: 1.222;
	color: #222;
}
.academy #section5 .cont-step-wrap .right-cont-box > .inbox > p {
	font-size: 24px;
	color: #777;
	line-height: 1.333;
}
.academy #section5 .cont-step-wrap .right-cont-box > .inbox > strong > span {
	color:#C53B47;
}
.academy #section5 .cont-bt-wrap > div {
	gap:55px;
	align-items: center;
}
.academy #section5 .cont-bt-wrap > div > .cont-bt {
	width: 552px;
	height: 552px;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: rgba(238,238,238,.2);
	border-radius: 50%;
	font-size: 45px;
	font-weight: 800;
	line-height: 1.222;
	text-align: center;
	position: relative;
}
.academy #section5 .cont-bt-wrap > div > .cont-bt:before {
	content: "";
	position: absolute;
	top:50%;
	left: 50%;
	transform: translate(-50%,-50%);
	background-color: rgba(238,238,238,.5);
	width:78.161%;
	height:78.161%;
	border-radius: 50%;
}
.academy #section5 .cont-bt-wrap > div > .cont-bt:after {
	content: "";
	position: absolute;
	top:50%;
	left: 50%;
	transform: translate(-50%,-50%);
	background-color: #eee;
	width:56.704%;
	height:56.704%;
	border-radius: 50%;
}
.academy #section5 .cont-bt-wrap > div > .cont-bt02 {
	background-color: rgba(239,227,221,.2);
}
.academy #section5 .cont-bt-wrap > div > .cont-bt02:before {
	background-color: rgba(239,227,221,.5);
}
.academy #section5 .cont-bt-wrap > div > .cont-bt02:after {
	background-color: #EFE3DD;
}
.academy #section5 .cont-bt-wrap > div > .cont-bt > p {
	position:relative;
	z-index: 1;
	color: #222;
}
.academy #section5 .cont-bt-wrap .txt-box > p {
	font-size: 24px;
	line-height: 1.3333;
	color:#777;
}
.academy #section5 .cont-bt-wrap .txt-box > p > b {
	color: #222;
	font-weight: bold;
}
.academy #section5 .cont-bt-wrap .txt-box > a {
	font-size: 20px;
	line-height: 2;
	color:#777;
	display: inline-block;
	border-radius: 25px;
	border: 1px solid #777;
	padding: 4px 31px;
	margin-top: 42px;
}
.academy #section5 .cont-bt-wrap > div:last-child {
	justify-content: flex-end;
}
.academy #section6 {
	background-color: #FCF5F5;
}
.academy #section6 .tit-wrap {
	text-align: center;
	margin-bottom: 100px;
}
.academy #section6 .tit-wrap > span {
	font-size: 40px;
	font-weight: bold;
	line-height: 1.625;
}
.academy #section6 .tit-wrap > p {
	color:#C53B47;
	font-size: 50px;
	font-weight: 800;
	line-height: 1.3;
}
.academy #section6 .cont_inner {
	overflow: hidden;
}
.academy #section6 .cont_inner .cont {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0 20px;
}
.academy #section6 .cont_inner.contTop {
	margin-bottom: 18px;
}
.academy #section6 .cont_inner .cont .item .img-wrap {
	position: relative;
	overflow: hidden;
	width: 266px;
	height: 266px;
	border-radius: 20px;
	background-color: rgba(0 ,0, 0, 0.3);
}
.academy #section6 .cont_inner .cont .item .img-wrap img {
	display: block;
	width: 100%;
}
.academy #section6 .btn-wrap {
	text-align: center;
	margin-top: 50px;
}
.academy #section6 .btn-wrap > a {
	display: inline-block;
	font-size: 20px;
	line-height: 2;
	color: #C53B47;
	border: 1px solid #C53B47;
	border-radius: 25px;
	padding: 4px 35px;
}

.academy #section7 video {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: fill;
}

/* 반영구 */
.semiPerm {
	font-family: "SUIT", sans-serif;
}
.semiPerm .tit_box {
	position: relative;
	text-align: center;
	padding-bottom: 65px;
}
.semiPerm .tit_box:after {
	content: '';
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);
	background-color: #222222;
	display: inline-block;
	width: 80px;
	height: 2px;
}
.semiPerm .tit_box span {
	display: block;
	font-size: 45px;
	font-weight: 400;
	color: #999999;
}
.semiPerm .tit_box h3 {
	font-size: 70px;
	font-weight: 800;
	color: #222222;
}
.semiPerm .sec-01 {
	position: relative;
	/*height: calc(100% - 120px);*/
	padding: 453px 150px 163px;
	background-image: url('/common/img/semiPerm/sec-01-bg.jpg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}
/*.semiPerm .sec-01 .bg_box {*/
/*    position: absolute;*/
/*    top: 0;*/
/*    left: 0;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*}*/
/*.semiPerm .sec-01 .bg_box img {*/
/*    position: absolute;*/
/*    top: 50%;*/
/*    left: 50%;*/
/*    transform: translate(-50%, -50%);*/
/*    width: 100%;*/
/*    height: 100%;*/
/*}*/
/*.semiPerm .sec-01 .cont_box {*/
/*    position: absolute;*/
/*    left: 150px;*/
/*    bottom: 163px;*/
/*    display: block;*/
/*}*/
.semiPerm .sec-01 p {
	font-size: 28px;
	font-weight: 700;
	color: #FFFFFF;
	line-height: 1.607;
}
.semiPerm .sec-01 .img_box {
	margin-top: 70px;
}
.semiPerm .sec-01 .img_box img {
	max-width: 100%;
}
.semiPerm .sec-01 span {
	display: block;
	margin-top: 40px;
	font-size: 30px;
	font-weight: 400;
	color: #FFFFFF;
	font-family: "Mulish", sans-serif;
}
.semiPerm .sec-02 .bg_01 {
	padding: 250px 0;
	background-color: #FFFFFF;
}
.semiPerm .sec-02 .bg_01 .cont {
	margin-top: 152px;
}
.semiPerm .sec-02 .bg_02 {
	padding: 250px 0;
	background-color: #F9F9F9;
}
.semiPerm .sec-02 .cont {
	position: relative;
}
.semiPerm .sec-02 .cont:after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	display: inline-block;
	width: 283px;
	height: 283px;
	background-image: url('/common/img/semiPerm/sec-02-img04.png');
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}
.semiPerm .sec-02 .cont_list {
	display: flex;
	align-items: center;
}
.semiPerm .sec-02 .cont_list_01 {
	justify-content: flex-start;
	gap: 0 8.4%;
	margin-bottom: 165px;
}
.semiPerm .sec-02 .cont_list_01 .profile_txt {
	min-width: 496px;
}
.semiPerm .sec-02 .cont_list_02 {
	justify-content: flex-end;
	gap: 0 15%;
}
.semiPerm .sec-02 .cont_list_02 .profile_txt {
	min-width: 483px;
}
.semiPerm .sec-02 .cont_list .img_box {
	position: relative;
	overflow: hidden;
	display: inline-block;
	border-radius: 30px;
}
.semiPerm .sec-02 .cont_list .img_box img {
	display: block;
	max-width: 100%;
}
.semiPerm .sec-02 .cont_list .profile_txt .txt_img_box {
	margin-bottom: 120px;
}
.semiPerm .sec-02 .cont_list .profile_txt .txt_img_box img {
	max-width: 100%;
}
.semiPerm .sec-02 .cont_list .profile_txt span {
	display: block;
	margin-bottom: 22px;
	font-size: 28px;
	font-weight: 700;
	color: #C53B47;
}
.semiPerm .sec-02 .cont_list .profile_txt p {
	font-size: 28px;
	font-weight: 400;
	color: #555555;
	line-height: 1.428;
}
.semiPerm .sec-03 {
	padding: 270px 0 250px;
	background-color: #111111;
}
.semiPerm .sec-03 .cont_list {
	display:flex;
	align-items: center;
	gap: 50px;
	justify-content: space-between;
	margin-bottom:180px;
}
.semiPerm .sec-03 .cont_list:last-child {
	margin-bottom: 0;
}
.semiPerm .sec-03 .cont_list .txt_box .num_txt {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	margin-bottom: 82px;
	gap: 0 17px;
	font-size: 28px;
	font-weight: 600;
	color: #C53B47;
	font-family: "Mulish", sans-serif;
}
.semiPerm .sec-03 .cont_list .txt_box .num_txt b {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 40px;
	height: 40px;
	border-radius: 50em;
	background-color: #C53B47;
	font-size: 20px;
	font-weight: 800;
	color: #111111;
}
.semiPerm .sec-03 .cont_list .txt_box h4 {
	font-size:60px;
	line-height: 1.166;
	color:#fff;
	margin-bottom:45px;
}
.semiPerm .sec-03 .cont_list .txt_box h4 b {
	font-weight: bold;
	color:#FFC9C9;
}
.semiPerm .sec-03 .cont_list .txt_box > p {
	font-size:28px;
	line-height: 1.428;
	color:#fff;
}
.semiPerm .sec-03 .cont_list .img_box {
	border-radius: 30px;
	overflow: hidden;
	font-size: 0;
}
.semiPerm .sec-03 .cont_list_02 .img_box {
	border-radius: 0;
}
.semiPerm .sec-03 .cont_list_02 .img_box > div {
	border-radius: 30px;
	overflow: hidden;
}
.semiPerm .sec-03 .cont_list_02 .img_box > div.before_img {
	margin-bottom: 31px;
}
.semiPerm .sec-04 {
	padding:242px 0;
}
.semiPerm .sec-04 .tit_box > p {
	font-size:45px;
	line-height: 1.777;
	color: #999;
}
.semiPerm .sec-04 .cont {
	padding:130px 0;
}
.semiPerm .sec-04 .cont_list {
	display:flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom:250px;
}
.semiPerm .sec-04 .cont_list:last-child {
	margin-bottom:0;
}
.semiPerm .sec-04 .img_box {
	border-radius: 30px;
	overflow: hidden;
	font-size: 0;
}
.semiPerm .sec-04 .txt_box > span {
	font-size: 28px;
	font-weight: 800;
	color: #C53B47;
	font-family: "Mulish", sans-serif;
}
.semiPerm .sec-04 .txt_box > span b {
	font-weight: 800;
	font-family: "SUIT", sans-serif;
}
.semiPerm .sec-04 .txt_box > h4 {
	margin:76px 0 45px;
	font-size:60px;
	font-weight: 400;
	line-height: 1.166;
}
.semiPerm .sec-04 .txt_box > h4 > b {
	font-weight: 700;
}
.semiPerm .sec-04 .txt_box > p {
	font-size:28px;
	line-height: 1.428;
	color:#555;
}
.semiPerm .sec-05 {
	position: relative;
	background: url('/common/img/semiPerm/sec-05-bg.jpg') no-repeat bottom center #111;
	background-size: contain;
}
.semiPerm .sec-05 .img_box {
	max-width: 100%;
	overflow: hidden;
}
.semiPerm .sec-05 .img_box > img {
	width: 100%;
	display:block;
}
.semiPerm .sec-05 .txt_box {
	color:#fff;
	padding: 9.721% 0 44.613%;
	text-align: center;
}
.semiPerm .sec-05 .txt_box h3 {
	font-size:70px;
	font-weight: 800;
	margin-bottom:32px;
}
.semiPerm .sec-05 .txt_box p {
	font-size:24px;
	font-weight: 400;
	line-height: 1.458;
}
.semiPerm .sec-06 {
	position:relative;
	padding: 235px 0;
	background-image: url('/common/img/semiPerm/sec-06-bg.jpg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}
.semiPerm .sec-06 .img_box {
	max-width: 100%;
	overflow: hidden;
}
.semiPerm .sec-06 .img_box > img {
	width: 100%;
	display:block;
}
.semiPerm .sec-06 .txt_box {
	display: inline-block;
	text-align: left;
	padding-left: 122px;
	/*position: absolute;*/
	/*top:50%;*/
	/*left:18.281%;*/
	/*transform: translateY(-50%);*/
}
.semiPerm .sec-06 .txt_box > p {
	color: #919AA1;
	font-size: 30px;
	font-weight: 400;
	margin-top: 26px;
	text-align: center;
}
.semiPerm .sec-07 video {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: fill;
}

/* 브로우 소개 */
.brow_intro {
	font-family: "SUIT", sans-serif;
}
.brow_intro .sec_01 {
	position: relative;
}
.brow_intro .sec_01 .img_box {
	position: relative;
	height: 100%;
}
.brow_intro .sec_01 .img_box img {
	display: block;
	width: 100%;
	height: 100%;
}
.brow_intro .sec_01 .video_box {
	overflow: hidden;
}
.brow_intro .sec_01 .video_box video {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: fill;
}
.brow_intro .sec_02 {
	background-image: url('/common/img/about/sec-02-bg-re.jpg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}
.brow_intro .sec_02 .flex_box {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 0 110px;
}
.brow_intro .sec_02 img {
	max-width: 100%;
	max-height: 100%;
}
.brow_intro .sec_02 .img_box2 {
	display: none;
}
.brow_intro .sec_02 .txt_box {
	padding-left: 25px;
	width: 100%;
}
.brow_intro .sec_02 .txt_box .txt {
	margin-bottom: 35px;
}
.brow_intro .sec_02 .txt_box .txt:last-child {
	margin-bottom: 0;
}
.brow_intro .sec_02 .txt_box .txt_1 {
	font-size: 24px;
	font-weight: 400;
	color: #CCCCCC;
}
.brow_intro .sec_02 .txt_box .txt_2 {
	font-size: 28px;
	font-weight: 700;
	color: #FFFFFF;
}
.brow_intro .sec_03 {
	background-color: #F9F9F9;
	padding: 180px 0;
}
.brow_intro .sec_03 .tit_box {
	margin-bottom: 66px;
	text-align: center;
}
.brow_intro .sec_03 .tit_box span {
	display: inline-block;
	padding: 5px 32px;
	border-radius: 35px;
	border: 1px solid #C53B47;
	font-size: 24px;
	font-weight: 700;
	color: #C53B47;
}
.brow_intro .sec_03 .tit_box h3 {
	font-size: 60px;
	font-weight: 800;
	color: #222222;
	margin-top: 9px;
}
.brow_intro .sec_03 .cont_box {
	max-width: 1200px;
	margin: 0 auto;
}
.brow_intro .sec_03 .cont_box ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 25px;
	margin-bottom: 25px;
}
.brow_intro .sec_03 .cont_box ul:first-child li {
	min-width: 250px;
}
.brow_intro .sec_03 .cont_box ul:last-child {
	margin-bottom: 0;
}
.brow_intro .sec_03 .cont_box ul:last-child li {
	min-width: 359px;
}
.brow_intro .sec_03 .cont_box ul li {
	flex: 1;
	height: 283px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	background-color: #FFFFFF;
	border-radius: 15px;
	box-shadow: 7px 7px 20px 0 rgba(0, 0, 0, 0.10);
}
.brow_intro .sec_03 .cont_box ul li .img_box {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 19px;
}
.brow_intro .sec_03 .cont_box ul li .img_box img {
	max-width: 100%;
}
.brow_intro .sec_03 .cont_box ul li .count_txt {
	font-size: 32px;
	font-weight: 800;
	color: #C53B47;
}
.brow_intro .sec_03 .cont_box ul li .count_txt b {
	font-size: 56px;
	font-weight: 800;
	color: #C53B47;
	font-family: "Mulish", sans-serif;
}
.brow_intro .sec_03 .cont_box ul li p {
	font-size: 21px;
	font-weight: 400;
	color: #777777;
}
.brow_intro .sec_04 {
	padding: 322px 0;
	background-image: url('/common/img/about/sec-04-bg.jpg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}
.brow_intro .sec_04 .img_box {
	text-align: center;
}
.brow_intro .sec_04 .img_box img {
	max-width: 100%;
	margin: 0 auto;
}
.brow_intro .sec_05 {
	padding: 180px 0;
}
.brow_intro .sec_05 .tit_box {
	margin-bottom: 65px;
	text-align: center;
}
.brow_intro .sec_05 .tit_box h3 {
	font-size: 60px;
	font-weight: 800;
	color: #222222;
	font-family: "Mulish", sans-serif;
}
.brow_intro .sec_05 .cont_box {
	max-width: 1198px;
	margin: 0 auto;
}
.brow_intro .sec_05 .cont_box ul {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0 28px;
	margin-bottom: 27px;
}
.brow_intro .sec_05 .cont_box ul:last-child {
	margin-bottom: 0;
}
.brow_intro .sec_05 .cont_box ul li {
    max-width: calc((100% - 28px) / 2); /* 1개여도 이 이상 커지지 않게 */
	position: relative;
	overflow: hidden;
	border-radius: 15px;
	box-shadow: 0 3px 30px 0 rgba(0, 0, 0, 0.30);
	flex: 1;
	cursor: pointer;
}
.brow_intro .sec_05 .cont_box ul li .img_box {
	position: relative;
}
.brow_intro .sec_05 .cont_box ul li .img_box img {
	display: block;
	width: 100%;
	height: 100%;
	transition: all 0.5s;
}
.brow_intro .sec_05 .cont_box ul li .img_box img:first-child {
	opacity: 1;
}
.brow_intro .sec_05 .cont_box ul li .img_box img:last-child {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	opacity: 0;
}
.brow_intro .sec_05 .cont_box ul li .img_box:hover img:first-child {
	opacity: 0;
}
.brow_intro .sec_05 .cont_box ul li .img_box:hover img:last-child {
	display: block;
	opacity: 1;
}
.brow_intro .sec_05 .cont_box ul li .txt_box {
	position: absolute;
	left: 36px;
	bottom: 35px;
	display: inline-block;
	z-index: 3;
}
.brow_intro .sec_05 .cont_box ul li .txt_box span {
	font-size: 28px;
	font-weight: 700;
	color: #FFFFFF;
	font-family: "Mulish", sans-serif;
}
.brow_intro .sec_05 .cont_box ul li .txt_box p {
	font-size: 20px;
	font-weight: 400;
	color: #ACACAC;
	font-family: "Mulish", sans-serif;
}
.brow_intro .sec_06 {
	padding: 180px 0;
	background-color: #111111;
}
.brow_intro .sec_06 .tit_box {
	margin-bottom: 65px;
	text-align: center;
}
.brow_intro .sec_06 .tit_box h3 {
	font-size: 60px;
	font-weight: 800;
	color: #FFFFFF;
	font-family: "Mulish", sans-serif;
}
.brow_intro .sec_06 .cont_box {
	/*max-width: 1199px;*/
	margin: 0 auto;
}
.brow_intro .sec_06 .cont_box ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 28px;
}
.brow_intro .sec_06 .cont_box ul li {
    max-width: calc((100% - 28px) / 2); /* 1개여도 이 이상 커지지 않게 */
	position: relative;
	overflow: hidden;
	border-radius: 15px;
	box-shadow: 0 3px 30px 0 rgba(0, 0, 0, 0.30);
	flex: 1;
	cursor: pointer;
}
.brow_intro .sec_06 .cont_box ul li .img_box {
	position: relative;
}
.brow_intro .sec_06 .cont_box ul li .img_box img {
	display: block;
	width: 100%;
	height: 100%;
	transition: all 0.5s;
}
.brow_intro .sec_06 .cont_box ul li .img_box img:first-child {
	opacity: 1;
}
.brow_intro .sec_06 .cont_box ul li .img_box img:last-child {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	opacity: 0;
}
.brow_intro .sec_06 .cont_box ul li .img_box:hover img:first-child {
	opacity: 0;
}
.brow_intro .sec_06 .cont_box ul li .img_box:hover img:last-child {
	display: block;
	opacity: 1;
}
.brow_intro .sec_06 .cont_box ul li .txt_box {
	position: absolute;
	left: 36px;
	bottom: 35px;
	display: inline-block;
	z-index: 3;
}
.brow_intro .sec_06 .cont_box ul li .txt_box span {
	font-size: 28px;
	font-weight: 700;
	color: #FFFFFF;
	font-family: "Mulish", sans-serif;
}
.brow_intro .sec_06 .cont_box ul li .txt_box p {
	font-size: 20px;
	font-weight: 400;
	color: #ACACAC;
	font-family: "Mulish", sans-serif;
}
.brow_intro .sec_07 {
	padding: 175px 0 180px;
	background-image: url('/common/img/about/sec-07-bg.jpg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}
.brow_intro .sec_07 .tit_box {
	text-align: center;
}
.brow_intro .sec_07 .tit_box h3 {
	font-size: 60px;
	font-weight: 800;
	color: #222222;
}
.brow_intro .sec_07 .img_box {
	text-align: center;
	margin: 72px auto 121px;
}
.brow_intro .sec_07 .img_box img {
	max-width: 100%;
}
.brow_intro .sec_07 .cont_box {
	max-width: 1200px;
	margin: 0 auto 110px;
}
.brow_intro .sec_07 .cont_box .cont_list {
	background-color: rgba(255, 255, 255, 0.60);
	padding: 69px 0;
	text-align: center;
	border-radius: 15px;
	box-shadow: 7px 7px 20px 0 rgba(0, 0, 0, 0.10);
	margin-bottom: 30px;
}
.brow_intro .sec_07 .cont_box .cont_list:last-child {
	margin-bottom: 0;
}
.brow_intro .sec_07 .cont_box .cont_list h4 {
	margin-bottom: 20px;
	font-size: 40px;
	font-weight: 400;
	color: #222222;
}
.brow_intro .sec_07 .cont_box .cont_list h4 b {
	font-weight: 700;
}
.brow_intro .sec_07 .cont_box .cont_list p {
	font-size: 24px;
	font-weight: 400;
	color: #777777;
}
.brow_intro .sec_07 .cont_box .cont_list p b {
	font-weight: 700;
	color: #C53B47;
}
.brow_intro .sec_07 .cont_box2 {
	padding-top: 136px;
	position: relative;
	text-align: center;
}
.brow_intro .sec_07 .cont_box2:before {
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	display: inline-block;
	width: 1px;
	height: 80px;
	background-color: #CCCCCC;
}
.brow_intro .sec_07 .cont_box2:after {
	content: '';
	position: absolute;
	top: 80px;
	left: 50%;
	transform: translateX(-50%);
	display: inline-block;
	width: 17px;
	height: 17px;
	border: 3px solid #C53B47;
	border-radius: 50%;
	background-color: #FFFFFF;
}
.brow_intro .sec_07 .cont_box2 h3 {
	margin-bottom: 50px;
	font-size: 50px;
	font-weight: 800;
	color: #222222;
}
.brow_intro .sec_07 .cont_box2 h3 span {
	font-weight: 500;
}
.brow_intro .sec_07 .cont_box2 p {
	font-size: 28px;
	font-weight: 400;
	color: #777777;
}
.brow_intro .sec_07 .cont_box2 p b {
	font-weight: 700;
	color: #C53B47;
	margin-top: 28px;
	display: block;
}
.brow_intro .sec_08 {
	position: relative;
}
.brow_intro .sec_08 .silde_hd {
	overflow: hidden;
}
.brow_intro .sec_08 .samjungSwiper {
	background: url('/common/img/about/sec-08-bg.jpg') no-repeat center / cover;
	position: relative;
	height: 693px;
}
.brow_intro .sec_08 .samjungSwiper .txt_box {
	position: absolute;
	top: 270px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 9;
	text-align: center;
}
.brow_intro .sec_08 .samjungSwiper .main_txt_box {
	top: 130px;
}
.brow_intro .sec_08 .samjungSwiper .txt_box .since {
	display: inline-block;
	font-size: 30px;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.3);
	font-family: "Mulish", sans-serif;
	margin-bottom: 10px;
}
.brow_intro .sec_08 .samjungSwiper .txt_box .tit {
	font-size: 60px;
	font-weight: 800;
	color: #FFF;
	margin-bottom: 14px;
}
.brow_intro .sec_08 .samjungSwiper .txt_box .desc {
	display: inline-block;
	font-size: 18px;
	font-weight: 400;
	color: #FFFFFF;
	font-family: "Noto Sans KR", sans-serif;
}
.brow_intro .sec_08 .samjungSwiper .img_box {
	width: 100%;
	opacity: 0;
}
.brow_intro .sec_08 .samjungSwiper .img_box img {
	display: block;
	width: 100%;
}
.brow_intro .sec_08 .samjungSwiper .swiper-pagination {
	bottom:210px;
}
.brow_intro .sec_08 .samjungSwiper .swiper-pagination.img__ {
	bottom:250px;
}
.brow_intro .sec_08 .samjungSwiper .swiper-pagination.txt__ {
	bottom:170px;
}
.brow_intro .sec_08 .samjungSwiper .swiper-pagination .swiper-pagination-bullet {
	width:16px;
	height:16px;
	border:6px solid rgba(255, 255, 255, 0.6);
	background-color:transparent;
	margin:0 130px;
	position:relative;
}
.brow_intro .sec_08 .samjungSwiper .swiper-pagination.line__ .swiper-pagination-bullet::before {
	content:'';
	position: absolute;
	width:260px;
	height:2px;
	background-color: rgba(255, 255, 255, 0.3);
}

.brow_intro .sec_08 .samjungSwiper .swiper-pagination.line__ .swiper-pagination-bullet:nth-child(2)::after {
	content:'';
	position: absolute;
	width:260px;
	height:2px;
	background-color: rgba(255, 255, 255, 0.3);
}

.brow_intro .sec_08 .samjungSwiper .swiper-pagination.line__ .swiper-pagination-bullet:nth-child(1)::before,
.brow_intro .sec_08 .samjungSwiper .swiper-pagination.line__ .swiper-pagination-bullet:nth-child(2)::after {
	top:1px;
	right: 10px;
}

.brow_intro .sec_08 .samjungSwiper .swiper-pagination.line__ .swiper-pagination-bullet-active:nth-child(2)::after {
	opacity: .2;
}

.brow_intro .sec_08 .samjungSwiper .swiper-pagination.line__ .swiper-pagination-bullet-active:nth-child(1)::before,
.brow_intro .sec_08 .samjungSwiper .swiper-pagination.line__ .swiper-pagination-bullet-active:nth-child(2)::before,
.brow_intro .sec_08 .samjungSwiper .swiper-pagination.line__ .swiper-pagination-bullet-active:nth-child(2)::before,
.brow_intro .sec_08 .samjungSwiper .swiper-pagination.line__ .swiper-pagination-bullet-active:nth-child(3)::before {
	background-color: rgba(255, 255, 255, 0.1);
}
.brow_intro .sec_08 .samjungSwiper .swiper-pagination.line__ .swiper-pagination-bullet:nth-child(3)::before,
.brow_intro .sec_08 .samjungSwiper .swiper-pagination.line__ .swiper-pagination-bullet:nth-child(2)::before {
	top:1px;
	left: 10px;
}
.brow_intro .sec_08 .samjungSwiper .swiper-pagination.img__ .swiper-pagination-bullet {
	background-image: url("/common/img/about/sec-08-img.png");
	width:23px;
	height:44px;
	border:none;
	border-radius: 0;
	margin:0 126px;
}
.brow_intro .sec_08 .samjungSwiper .swiper-pagination.txt__ .swiper-pagination-bullet {
	width:38px;
	height:23px;
	border:none;
	border-radius: 0;
	margin:0 118px;
}
.brow_intro .sec_08 .samjungSwiper .swiper-pagination.txt__ .swiper-pagination-bullet[aria-label="Go to slide 1"]{
	background-image: url('/common/img/about/sec-08-img2.png?v=2409061817');
	background-position: center;
}
.brow_intro .sec_08 .samjungSwiper .swiper-pagination.txt__ .swiper-pagination-bullet[aria-label="Go to slide 2"]{
	background-image: url('/common/img/about/sec-08-img4.png');
	background-position: center;
}
.brow_intro .sec_08 .samjungSwiper .swiper-pagination.txt__ .swiper-pagination-bullet[aria-label="Go to slide 3"]{
	background-image: url('/common/img/about/sec-08-img3.png');
	background-position: center;
}
.brow_intro .sec_08 .samjungSwiper .swiper-pagination .swiper-pagination-bullet-active{
	position:relative;
	border:6px solid rgba(255, 255, 255, 1);
}
.brow_intro .sec_08 .samjungSwiper .swiper-pagination .pagi_tit{
	color:rgba(255, 255, 255, 0.6);
	font-size:22px;
}
.brow_intro .sec_08 .samjungSwiper .swiper-pagination.img__ .swiper-pagination-bullet-active::before{
	content:'';
	display: block;
	position:relative;
	bottom: 50px;
	right: 98px;
	width:220px;
	height:220px;
	border-radius: 50em;
	background-color:rgba(255, 255, 255, 0.2);
}

.brow_intro .brow-space-sec .tit_wrap h3 {
	font-family: "Mulish", "sans-serif";
	font-weight: 900;
}
@media screen and (max-width: 1500px) {
	.brow_intro .sec_08 .samjungSwiper .txt_box__ {
		top: 70px;
	}
	.brow_intro .sec_08 .samjungSwiper .swiper-pagination {
		bottom: 170px;
	}
	.brow_intro .sec_08 .samjungSwiper .swiper-pagination.img__ {
		bottom: 210px;
	}
	.brow_intro .sec_08 .samjungSwiper .swiper-pagination.txt__ {
		bottom: 140px;
	}
}
.brow_intro .sec_09 .bg_01 {
	background-color: #F9F9F9;
	padding: 180px 0 124px;
}
.brow_intro .sec_09 .bg_01 .cont_box {
	max-width: 1198px;
	margin: 0 auto;
}
.brow_intro .sec_09 .bg_01 .cont_box ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 30px;
}
.brow_intro .sec_09 .bg_01 .cont_box ul li {
	padding: 80px 0;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 40px;
	flex-direction: column;
	width: calc(50% - 30px);
	background-color: #FFFFFF;
	border-radius: 15px;
	box-shadow: 7px 7px 20px 0 rgba(0, 0, 0, 0.10);
}
.brow_intro .sec_09 .bg_01 .cont_box ul li .img_box img {
	max-width: 100%;
}
.brow_intro .sec_09 .bg_01 .cont_box ul li p {
	font-size: 36px;
	font-weight: 800;
	color: #222222;
}
.brow_intro .sec_09 .bg_02 {
	position: relative;
	background-image: url('/common/img/about/sec-09-bg.jpg');
	background-repeat: no-repeat;
	background-position: center bottom;
	background-size: 100% 94%;
	background-color: #F9F9F9;
}
.brow_intro .sec_09 .bg_02 .cont_box {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1268px;
	margin: 0 auto;
}
.brow_intro .sec_09 .bg_02 .txt_box {
	margin-bottom: 40px;
}
.brow_intro .sec_09 .bg_02 .txt_box h3 {
	font-size: 30px;
	font-weight: 500;
	color: #222222;
}
.brow_intro .sec_09 .bg_02 .txt_box h3 span {
	font-size: 54px;
	font-weight: 800;
}
.brow_intro .sec_09 .bg_02 .txt_box h3 b {
	font-size: 30px;
	font-weight: 700;
	font-family: "Mulish", sans-serif;
}
.brow_intro .sec_09 .bg_02 .txt_box1 {
	margin-bottom: 33px;
}
.brow_intro .sec_09 .bg_02 .txt_box1 p {
	font-size: 24px;
	font-weight: 400;
	color: #222222;
}
.brow_intro .sec_09 .bg_02 .txt_box2 {
	margin-bottom: 70px;
}
.brow_intro .sec_09 .bg_02 .txt_box2 p {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 8px;
}
.brow_intro .sec_09 .bg_02 .txt_box2 p img {
	max-width: 100%;
}
.brow_intro .sec_09 .bg_02 .txt_box2 p span {
	font-size: 23px;
	font-weight: 400;
	color: #222222;
}
.brow_intro .sec_09 .bg_02 .txt_box3 p {
	font-size: 18px;
	font-weight: 400;
	color: #313131;
}
.brow_intro .sec_09 .bg_02 .txt_box3 .doctor_info {
	margin-top: 12px;
	font-size: 18px;
	font-weight: 400;
	color: #313131;
}
.brow_intro .sec_09 .bg_02 .img_box img {
	max-width: 100%;
}

/* 엠버서드 */
.ambassador {
	font-family: "Mulish", sans-serif;
}
.ambassador .sec-01 {
	position: relative;
	padding: 55px 0;
	background-image: url('/common/img/ambassador/ambas-bg01.jpg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}
.ambassador .sec-01 .txt_box {
	position: absolute;
	left: 230px;
	bottom: 196px;
	display: block;
	width: auto;
	z-index: 1;
}
.ambassador .sec-01 .txt_box p {
	font-size: 120px;
	font-weight: 800;
	color: #fff;
	margin-bottom: 15px;
}
.ambassador .sec-01 .txt_box .img_box img {
	max-width: 100%;
}
.ambassador .sec-01 .round_box {
	position: relative;
	width: 620px;
	height: 835px;
	border-radius: 320px 320px 0 0;
	overflow: hidden;
	margin: 0 auto;
	box-shadow: 0 3px 50px 0 rgba(0, 0, 0, 0.15);
}
.ambassador .sec-01 .round_box img {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: block;
	width: 100%;
	height: 100%;
}
.ambassador .sec-01 .info_txt_box {
	position: absolute;
	top: 50%;
	left: 73%;
	transform: translate(-50%, -50%);
	display: block;
	width: auto;
	z-index: 1;
}
.ambassador .sec-01 .info_txt_box span {
	display: inline-block;
	font-size: 38px;
	font-weight: 700;
	color: #FFFFFF;
}
.ambassador .sec-01 .info_txt_box p {
	font-size: 24px;
	font-weight: 300;
	color: #FFFFFF;
}
.ambassador .sec-02 {
	padding: 200px 0 0;
	background-color: #FFFFFF;
}
.ambassador .sec-02 .flex_box {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	gap: 0 108px;
	margin-bottom: 180px;
}
.ambassador .sec-02 .flex_box .txt_box1 {
	margin-bottom: 90px;
}
.ambassador .sec-02 .flex_box .txt_box1 span {
	display: block;
	font-size: 50px;
	font-weight: 800;
	color: #222222;
}
.ambassador .sec-02 .flex_box .txt_box1 p {
	font-size: 24px;
	font-weight: 400;
	color: #C53B47;
}
.ambassador .sec-02 .flex_box .txt_box2 {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 0 20px;
	margin-bottom: 105px;
}
.ambassador .sec-02 .flex_box .txt_box2 span {
	font-size: 45px;
	font-weight: 800;
	color: #222222;
	font-family: "Noto Sans KR", sans-serif;
}
.ambassador .sec-02 .flex_box .txt_box2 p {
	font-size: 24px;
	font-weight: 400;
	color: #999999;
	font-family: "Noto Sans KR", sans-serif;
}
.ambassador .sec-02 .flex_box .img_box1 img {
	max-width: 100%;
}
.ambassador .sec-02 .flex_box .img_box2 img {
	max-width: 100%;
}
.ambassador .sec-02 .flex_box2 {
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: stretch;
	gap: 60px;
}
.ambassador .sec-02 .flex_box2 .img_box3 {
	max-width: 715px;
}
.ambassador .sec-02 .flex_box2 .img_box3 img {
	max-width: 100%;
}
.ambassador .sec-02 .flex_box2 .txt_box3 {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 43%;
}
.ambassador .sec-02 .flex_box2 .txt_box3 .color_txt_box p {
	text-align: right;
	font-size: 24px;
	font-weight: 400;
	color: #C53B47;
}
.ambassador .sec-02 .flex_box2 .txt_box3 .profile_box {
	display: block;
	width: 100%;
}
.ambassador .sec-02 .flex_box2 .txt_box3 .profile_box p {
	font-size: 28px;
	font-weight: 400;
	color: #555555;
	font-family: "SUIT", sans-serif;
}
.ambassador .sec-02 .flex_box2 .txt_box3 .profile_box p.bold {
	font-weight: 700;
	color: #222222;
}
.ambassador .sec-02 .flex_box2 .txt_box3 .profile_box p.mb_5 {
	margin-bottom: 5px;
}
.ambassador .sec-02 .flex_box2 .txt_box3 .profile_box p.mb_10 {
	margin-bottom: 10px;
}
.ambassador .sec-02 .color_txt_box2 {
	padding: 170px 0;
}
.ambassador .sec-02 .color_txt_box2 span {
	display: inline-block;
	font-size: 24px;
	font-weight: 400;
	color: #C53B47;
}
.ambassador .sec-03 {
	position: relative;
	overflow: hidden;
	max-width: 1920px;
	margin: 0 auto;
}
.ambassador .sec-03 img {
	max-width: 100%;
}
.ambassador .sec-04 {
	padding: 200px 0;
	text-align: center;
}
.ambassador .sec-04 .cont_box {
	width: auto;
	margin: 0 auto;
}
.ambassador .sec-04 .cont_box .img_box {
	margin-bottom: 36px;
}
.ambassador .sec-04 .cont_box .img_box img {
	max-width: 100%;
}
.ambassador .sec-04 .cont_box span {
	display: inline-block;
	font-size: 28px;
	font-weight: 400;
	color: #555555;
	font-family: "SUIT", sans-serif;
}

/* 공지사항 */
.pg-detail .notice {
	font-family: "SUIT", sans-serif;
	/*margin-top: 120px;*/
}
.pg-detail .online-consulting {
	font-family: "SUIT", sans-serif;
	/*margin-top: 120px;*/
}
.notice .pg-tit {
	/*padding: 120px 0 90px;*/
	padding: 75px 0 90px;
}
.online-consulting .pg-tit {
	padding: 75px 0 90px;
}
.notice .pg-tit h2 {
	margin-bottom: 28px;
	font-size: 70px;
	font-weight: 800;
	color: #000000;
}
.notice .pg-tit span {
	display: block;
	font-size: 20px;
	font-weight: 500;
	color: #333333;
}
.notice .txt_sub_banner {
	overflow: hidden;
	max-width: 1920px;
	margin: 0 auto 100px;
}
.online-consulting .txt_sub_banner {
	overflow: hidden;
	max-width: 1920px;
	margin: 0 auto 100px;
}
.notice .top_search {
	display: flex;
	justify-content: space-between;
	margin-bottom: 20px;
	align-items: center;
}
.notice .top_search .num_list_txt p {
	font-size: 20px;
	font-weight: 400;
	color: #999999;
}
.notice .top_search .num_list_txt p span {
	color: #C53B47;
}
.notice .top_search .search_box {
	position: relative;
	border-radius: 10px;
	overflow: hidden;
}
.notice .top_search .search_box .search {
	min-width: 400px;
	height: 60px;
	border: none;
	background: #fbfbfb;
	padding: 0 25px;
	padding-right: 60px;
	font-size: 20px;
	font-weight: 400;
	color: #999;
}
.notice .top_search .search_box .search::-webkit-search-decoration,
.notice .top_search .search_box .search::-webkit-search-cancel-button,
.notice .top_search .search_box .search::-webkit-search-results-button,
.notice .top_search .search_box .search::-webkit-search-results-decoration {
	-webkit-appearance: none;
}
.notice .top_search .search_box .search::placeholder {
	font-size: 22px;
	font-weight: 400;
	/*color: #999;*/
	color:#ccc;
}
.notice .top_search .search_box .search_btn {
	height:100%;
	width:60px;
	background-color: #C53B47;
	position: absolute;
	top: 0;
	right: 0;
	display: flex;
	justify-content: center;
	align-items: center;
}
.notice .top_search .search_box .search_btn img {
	max-width: 100%;
}
.notice .board-wrap {
	border-top: 2px solid #C53B47;
}
.notice .board-wrap .list-wrap {
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-bottom: 1px solid #DDDDDD;
	padding: 36px 0;
	color: #222222;
	font-size: 24px;
	font-weight: 700;
}
.notice .board-wrap .list-wrap.pin {
	padding: 38px 0;
}
.notice .board-wrap .list-wrap .list {
	padding: 0 20px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	word-break: break-all;
	max-width: 80%;
	display: flex;
	align-items: center;
}
.notice .board-wrap .list-wrap .list > a {
	overflow: hidden;
	text-overflow: ellipsis;
}
.notice .board-wrap .list-wrap.no-data {
	border-bottom: 0;
	padding: 90px 0;
}
.notice .board-wrap .list-wrap.no-data .list {
	width: 100%;
	max-width: 100%;
	justify-content: center;
}
.notice .board-wrap .list-wrap .date {
	padding-left: 0;
	font-size: 20px;
	font-weight: 400;
	color: #999999;
	font-family: "Mulish", sans-serif;
}
.notice .board-wrap .list-wrap .pin-txt {
	padding: 0;
	background-color: transparent;
	color: #C53B47;
	font-size: 24px;
	font-weight: bold;
	margin-right: 0;
	border-radius: 0;
	line-height: normal;
	display: inline-block;
}
.notice .cont-wrap {
	padding-bottom: 180px;
}
.notice .cont-wrap .cont-title {
	border-bottom: 2px solid #C53B47;
	padding: 50px 0;
	margin-bottom: 40px;
	font-size: 45px;
	font-weight: 800;
	color: #222222;
}
.notice .cont-wrap .cont-date {
	display: block;
	width: 100%;
	margin-top: 20px;
	font-size: 24px;
	font-weight: 400;
	color: #999999;
	font-family: 'Mulish', sans-serif;
}
.notice .cont-wrap p {
	font-size: 24px;
	font-weight: 400;
	color: #222222;
}
.notice .cont-wrap img {
	max-width: 100%;
	height: auto !important;
}
.notice .btn-list {
	display: inline-block;
	font-size: 18px;
	font-weight: 400;
	color: #C53B47;
	border: 1px solid #C53B47;
	background: #FFFFFF;
	border-radius: 25px;
	width: 176px;
	line-height: 50px;
	margin: 180px 0 70px;
	transition: all ease 0.3s;
}
.notice .btn-list:hover {
	background: #C53B47;
	color: #fff;
}
.notice .notice_view_box {
	border-top: 1px solid #E9E9E9;
}
.notice .notice_view_box .notice_view {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	padding: 22px 33px;
	border-bottom: 1px solid #E9E9E9;
}
.notice .notice_view_box .notice_view .ico_box {
	display: inline-block;
	margin-right: 49px;
	min-width: 18px;
	height: 11px;
}
.notice .notice_view_box .notice_view .ico_box img {
	min-width: 18px;
	height: 11px;
	vertical-align: top;
}
.notice .notice_view_box .notice_view.no_data .ico_box img {
	filter: grayscale(1);
	opacity: .6;
}
.notice .notice_view_box .notice_view span {
	display: inline-block;
	margin-right: 138px;
	font-size: 18px;
	font-weight: 700;
	color: #313131;
}
.notice .notice_view_box .notice_view.no_data span {
	color: #999999;
}
.notice .notice_view_box .notice_view a {
	display: inline-block;
}
.notice .notice_view_box .notice_view p {
	text-align: left;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: normal;
	word-break: break-all;
	font-size: 18px;
	font-weight: 400;
	color: #222222;
}
.notice .notice_view_box .notice_view.no_data p {
	color: #999999;
}

/* 아카데미 뉴스 */
.pg_detail .acadNews {
	font-family: "SUIT", sans-serif;
	margin-top: 120px;
}
.acadNews .pg-tit {
	padding: 120px 0 90px;
}
.acadNews .pg-tit h2 {
	margin-bottom: 28px;
	font-size: 70px;
	font-weight: 800;
	color: #000000;
}
.acadNews .pg-tit span {
	display: block;
	font-size: 18px;
	font-weight: 500;
	color: #333333;
}
.acadNews .pg-tit span b {
	font-weight: 700;
	color: #C53B47;
}
.acadNews .txt_sub_banner {
	overflow: hidden;
	max-width: 1920px;
	margin: 0 auto 185px;
}
.acadNews .top_search {
	display: flex;
	justify-content: space-between;
	margin-bottom: 20px;
	align-items: center;
}
.acadNews .top_search .num_list_txt p {
	font-size: 20px;
	font-weight: 400;
	color: #999999;
}
.acadNews .top_search .num_list_txt p span {
	color: #C53B47;
}
.acadNews .top_search .search_box {
	position: relative;
	border-radius: 10px;
	overflow: hidden;
}
.acadNews .top_search .search_box .search {
	min-width: 400px;
	height: 60px;
	border: none;
	background: #fbfbfb;
	padding: 0 25px;
	padding-right: 60px;
	font-size: 20px;
	font-weight: 400;
	color: #999;
}
.acadNews .top_search .search_box .search::-webkit-search-decoration,
.acadNews .top_search .search_box .search::-webkit-search-cancel-button,
.acadNews .top_search .search_box .search::-webkit-search-results-button,
.acadNews .top_search .search_box .search::-webkit-search-results-decoration {
	-webkit-appearance: none;
}
.acadNews .top_search .search_box .search::placeholder {
	font-size: 22px;
	font-weight: 400;
	/*color: #999;*/
	color: #ccc;
}
.acadNews .top_search .search_box .search_btn {
	height: 100%;
	width: 60px;
	background-color: #C53B47;
	position: absolute;
	top: 0;
	right: 0;
	display: flex;
	justify-content: center;
	align-items: center;
}
.acadNews .top_search .search_box .search_btn img {
	max-width: 100%;
}
.acadNews .board-wrap {
	border-top: 1px solid #C53B47;
}
.acadNews .board-wrap .list-wrap {
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-bottom: 1px solid #DDDDDD;
	padding: 36px 0;
	color: #222222;
	font-size: 24px;
	font-weight: 700;
}
.acadNews .board-wrap .list-wrap.pin {
	padding: 38px 0;
}
.acadNews .board-wrap .list-wrap .list {
	padding: 0 20px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	word-break: break-all;
	max-width: 80%;
	display: flex;
	align-items: center;
}
.acadNews .board-wrap .list-wrap .date {
	padding-left: 0;
	font-size: 20px;
	font-weight: 400;
	color: #999999;
	font-family: "Mulish", sans-serif;
}
.acadNews .board-wrap .list-wrap .pin-txt {
	display: inline-block;
	padding: 4px 18px;
	border-radius: 22px;
	margin-right: 15px;
	background-color: #C53B47;
	font-size: 18px;
	font-weight: 500;
	color: #FFFFFF;
	line-height: normal;
}
.acadNews .board-wrap .list-wrap li.no-data {
	width: 100%;
	font-size: 20px;
	font-weight: bold;
	text-align: center;
	padding: 40px 0;
	max-width: 100%;
	justify-content: center;
}
.acadNews .cont-wrap {
	padding-bottom: 180px;
}
.acadNews .cont-wrap .cont-title {
	border-bottom: 2px solid #C53B47;
	padding: 50px 0;
	margin-bottom: 40px;
	font-size: 45px;
	font-weight: 800;
	color: #222222;
	word-break: break-word;
}
.acadNews .cont-wrap .cont-date {
	display: block;
	margin-top: 12px;
	font-size: 24px;
	font-weight: 400;
	color: #999999;
	font-family: 'Mulish', sans-serif;
}
.acadNews .cont-wrap p {
	font-size: 24px;
	font-weight: 400;
	color: #222222;
	word-break: break-all;
}
.acadNews .cont-wrap img {
	max-width: 100%;
	height: auto !important;
}
.acadNews .btn-list {
	display: inline-block;
	font-size: 18px;
	font-weight: 400;
	color: #C53B47;
	border: 1px solid #C53B47;
	background: #FFFFFF;
	border-radius: 25px;
	width: 176px;
	line-height: 50px;
	margin: 180px 0 70px;
	transition: all ease 0.3s;
}
.acadNews .btn-list:hover {
	background: #C53B47;
	color: #fff;
}
.acadNews .notice_view_box {
	border-top: 1px solid #E9E9E9;
}
.acadNews .notice_view_box .notice_view {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	padding: 22px 33px;
	border-bottom: 1px solid #E9E9E9;
}
.acadNews .notice_view_box .notice_view .ico_box {
	display: inline-block;
	margin-right: 49px;
	min-width: 18px;
	height: 11px;
}
.acadNews .notice_view_box .notice_view .ico_box img {
	min-width: 18px;
	height: 11px;
	vertical-align: top;
}
.acadNews .notice_view_box .notice_view.no_data .ico_box img {
	filter: grayscale(1);
	opacity: .6;
}
.acadNews .notice_view_box .notice_view span {
	display: inline-block;
	margin-right: 138px;
	font-size: 18px;
	font-weight: 700;
	color: #313131;
}
.acadNews .notice_view_box .notice_view.no_data span {
	color: #999999;
}
.acadNews .notice_view_box .notice_view a {
	display: inline-block;
}
.acadNews .notice_view_box .notice_view p {
	text-align: left;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: normal;
	word-break: break-all;
	font-size: 18px;
	font-weight: 400;
	color: #222222;
}
.acadNews .notice_view_box .notice_view.no_data p {
	color: #999999;
}

/* event sub page */
.gallery-type-list .board-list-wrap {
	gap:66px 50px;
	flex-wrap: wrap;
	padding-top: 50px;
}
.gallery-type-list .board-list-wrap > li {
	width: calc((100% - 50px) / 2);
	overflow: hidden;
}
.gallery-type-list .board-list-wrap > li.no-data {
	width: 100%;
	font-size: 24px;
	font-weight: bold;
	text-align: center;
	padding: 40px 0;
	cursor: auto;
}
.gallery-type-list .board-list-wrap > li > a {
	display: block;
}
.gallery-type-list .board-list-wrap .thumb-wrap {
	width: 100%;
	aspect-ratio: 710/460;
	border-radius: 10px;
	background: #eee;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: border-radius .3s;
}
.gallery-type-list .board-list-wrap .thumb-wrap > img {
	width:100%;
}
.gallery-type-list .board-list-wrap .info-wrap {
	padding: 33px 30px;
}
.gallery-type-list .board-list-wrap .txt-wrap {
	display: flex;
	gap:15px;
	align-items: center;
	margin-bottom:9px;
}
.gallery-type-list .board-list-wrap .txt-wrap > span {
	font-size: 22px;
	border-radius: 17px;
	background-color: #C53B47;
	color:#fff;
	display: inline-block;
	padding:3px 10px;
	min-width: 92px;
	text-align: center;
}

.gallery-type-list .board-list-wrap .txt-wrap > span.end {
	background-color: #999;
}
.gallery-type-list .board-list-wrap .txt-wrap > p {
	font-weight: bold;
	font-size: 28px;
	line-height: 1.428;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.gallery-type-list .board-list-wrap p.date {
	color:#999;
	font-size: 24px;
	font-family: 'Mulish', sans-serif;
}
.gallery-type-list .board-list-wrap > li:hover .info-wrap {
	background-color: #FCF5F6;
	transition: all .2s;
}
.gallery-type-list .board-list-wrap > li:hover .thumb-wrap {
	border-radius: 10px 10px 0 0;
}
.gallery-type-view .cont-wrap .cont-title {
	display: flex;
	align-items: center;
	padding-bottom: 42px;
	margin-bottom: 40px;
	justify-content: space-between;
	flex-direction: column;
	gap:17px;
}
.gallery-type-view .cont-title > .inbox {
	gap:18px;
	align-items: center;
	width: 100%;
}
.gallery-type-view .cont-title .state {
	/*font-size: 22px;*/
	border-radius: 20px;
	/*background-color: #C53B47;*/
	/*color:#fff;*/
	display: inline-block;
	/*padding:6px 10px;*/
	/*min-width: 92px;*/
	text-align: center;
	/*font-weight: 500;*/
	font-size: 45px;
	color:#C53B47;
	/*font-weight: normal;*/

}
.gallery-type-view .cont-title .state.end {
	color:#999;
}
.gallery-type-view .cont-title h3 {
	max-width: calc(100% - 200px);
	font-weight: 800;
	word-wrap: break-word;
}
.gallery-type-view .cont-title .cont-writer-box {
	flex-direction: column;
	gap: 10px;
}
.gallery-type-view .cont-title .cont-writer {
	justify-content: center;
	align-items: center;
	gap: 7px;
}
.gallery-type-view .cont-title .cont-writer img {
	max-width: 40px;
	width: 100%;
}
.gallery-type-view .cont-title .cont-writer .writer_txt {
	font-size: 28px;
	font-weight: 700;
	color: #222222;
	font-family: "SUIT", sans-serif;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.gallery-type-view .cont-title .cont-date {
	margin-top: 0;
}
.gallery-type-view .cont {
	font-size: 24px;
	color: #222222;
	word-break: break-all;
}
.gallery-type-view .cont strong,
.gallery-type-view .cont b {
	font-weight: bolder;
}
.gallery-type-view .comment_wrap {
	margin: 93px 0 50px;
}
.gallery-type-view .comment_wrap li {
	padding: 40px 20px;
	border-bottom: 1px solid rgba(197, 59, 71, 0.15);
}
.gallery-type-view .comment_wrap li.on {
	padding: 0;
}
.gallery-type-view .comment_wrap .comment_top_wrap {
	justify-content: space-between;
	align-items: center;
	padding-bottom: 15px;
	border-bottom: 1px solid rgba(197, 59, 71, 0.15);
}
.gallery-type-view .comment_wrap .comment_top_wrap .hits_wrap {
	align-items: center;
	gap: 10px;
}
.gallery-type-view .comment_wrap .comment_top_wrap .hits_wrap img {
	max-width: 26px;
	width: 100%;
}
.gallery-type-view .comment_wrap .comment_top_wrap .hits_wrap p {
	font-size: 24px;
	font-weight: 400;
	color: #999999;
	font-family: "Mulish", sans-serif;
	line-height: 24px;
	white-space: nowrap;
}
.gallery-type-view .comment_wrap .comment_top_wrap .btn_wrap {
	align-items: center;
	gap: 12px;
}
.gallery-type-view .comment_wrap .comment_top_wrap .btn_wrap button {
	min-width: 94px;
	padding: 13px 0;
	background-color: #FBFBFB;
	border: 1px solid #999999;
	border-radius: 8px;
	font-size: 18px;
	font-weight: 400;
	color: #313131;
	font-family: "SUIT", sans-serif;
}
.gallery-type-view .comment_wrap .comment_cont {
	justify-content: space-between;
	align-items: center;
	margin-bottom: 25px;
}
.gallery-type-view .comment_wrap li.on .comment_cont {
	padding: 0 20px;
	display: none;
}
.gallery-type-view .comment_wrap .comment_cont .writer_info {
	width: calc(100% - 94px);
	align-items: center;
	gap: 9px;
}
.gallery-type-view .comment_wrap .comment_cont .writer_info .cont_writer {
	max-width: calc(100% - 180px);
	align-items: center;
	gap: 12px;
}
.gallery-type-view .comment_wrap .comment_cont .writer_info .cont_writer img {
	max-width: 50px;
	width: 100%;
}
.gallery-type-view .comment_wrap .comment_cont .writer_info .cont_writer span {
	display: inline-block;
	font-size: 28px;
	font-weight: 700;
	color: #222222;
	font-family: "Mulish", sans-serif;
	line-height: 28px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.gallery-type-view .comment_wrap .comment_cont .writer_info .date {
	font-size: 16px;
	font-weight: 600;
	color: #999999;
	font-family: "Mulish", sans-serif;
}
.gallery-type-view .comment_wrap .btn_wrap {
	position: relative;
	align-items: center;
	gap: 11px;
}
.gallery-type-view .comment_wrap .btn_wrap .select_wrap {
	gap: 11px;
}
.gallery-type-view .comment_wrap .btn_wrap .comment_btn {
	max-width: 24px;
	width: 100%;
}
.gallery-type-view .comment_wrap .btn_wrap img {
	display: block;
	width: 100%;
}
.gallery-type-view .comment_wrap .btn_wrap .password_wrap {
	position: absolute;
	top: 30px;
	left: 20%;
	transform: translateX(-50%);
	display: none;
	padding: 20px 10px;
	width: 150px;
	background-color: #ffffff;
	border: 1px solid #BDBDBD;
	border-radius: 8px;
	text-align: center;
	z-index: 10;
}
.gallery-type-view .comment_wrap .btn_wrap.on .password_wrap {
	display: block;
}
.gallery-type-view .comment_wrap .btn_wrap .password_wrap label {
	display: block;
	margin-bottom: 8px;
	font-size: 18px;
	font-weight: 500;
	color: #222222;
	font-family: "SUIT", sans-serif;
}
.gallery-type-view .comment_wrap .btn_wrap .password_wrap input {
	display: block;
	padding-right: 1rem;
	width: 100%;
	height: 30px;
	background-color: #ffffff;
	border: 1px solid #BDBDBD;
	border-radius: 4px;
}
.gallery-type-view .comment_wrap .btn_wrap .password_wrap input::placeholder {
	font-size: 14px;
	font-weight: 500;
	color: #CCCCCC;
	font-family: "SUIT", sans-serif;
}
.gallery-type-view .comment_wrap .btn_wrap .password_wrap .password_confirm_btn {
	display: inline-block;
	width: 100%;
	max-width: 80px;
	border: 1px solid #C53B47;
	border-radius: 20px;
	margin-top: 8px;
	padding: 4px 0;
	font-size: 14px;
	font-weight: 400;
	color: #C53B47;
	font-family: "SUIT", sans-serif;
}
.gallery-type-view .comment_wrap .comment_text {
	font-size: 24px;
	font-weight: 300;
	color: #555555;
	font-family: "SUIT", sans-serif;
	word-break: break-word;
}
.gallery-type-view .comment_wrap li.on .comment_text {
	padding: 0 20px;
	display: none;
}
.notice.pg_writer_view .btn-list-box {
	text-align: center;
}
.notice.pg_writer_view .btn-list {
	margin: 0 auto 70px;
}
.pg_writer_view .form_group {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 16px;
	gap: 16px;
}
.pg_writer_view .form_input {
	flex: 1;
}
.pg_writer_view .form_input label {
	display: none;
}
.pg_writer_view .form_input input {
	display: block;
	width: 100%;
	border: 1px solid #ddd;
	border-radius: 8px;
	padding: 29px 40px;
	font-size: 24px;
	color: #222;
	font-family: "SUIT", sans-serif;
}
.pg_writer_view .form_input input::placeholder {
	color: #999;
}
.pg_writer_view .comment-reg-wrap {
	margin-top: 16px;
	height: auto;
	min-height: 157px;
	gap: 20px;
	justify-content: space-between;
}
.pg_writer_view .comment-reg-wrap textarea {
	border: 1px solid #ddd;
	border-radius: 8px;
	padding: 29px 40px;
	flex: 80%;
	max-width: 80%;
	font-size: 24px;
	color: #222;
	font-family: "SUIT", sans-serif;
}
.pg_writer_view .comment-reg-wrap textarea::placeholder {
	color: #999;
}
.pg_writer_view .comment-reg-wrap .btn-border {
	max-width: 20%;
	flex: 20%;
	min-width: 170px;
	background-color: #bbb;
	color: #fff;
	border-radius: 8px;
	border: none;
	font-size: 28px;
	font-weight: 400;
	font-family: "SUIT", sans-serif;
}
.pg_writer_view .edit-box {
	/*margin-top: 23px;*/
	background-color: #FBFBFB;
	/*border-bottom: 1px solid rgba(197, 59, 71, 0.15);*/
	padding: 25px;
}
.pg_writer_view .edit-box .cont_writer {
	justify-content: space-between;
	align-items: center;
	padding: 0 20px;
}
.pg_writer_view .edit-box .cont_writer > div {
	width: calc(100% - 40px);
	align-items: center;
	gap: 12px;
}
.pg_writer_view .edit-box .cont_writer img {
	max-width: 50px;
	width: 100%;
}
.pg_writer_view .edit-box .cont_writer span {
	font-size: 28px;
	font-weight: 700;
	color: #222222;
	font-family: "SUIT", sans-serif;
	line-height: 28px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.pg_writer_view .edit-box .cont_writer a {
	text-decoration: underline;
	font-size: 22px;
	font-weight: 400;
	color: #999999;
	font-family: "SUIT", sans-serif;
	cursor: pointer;
}
.pg_writer_view .edit-box .comment-reg-wrap {
	height: 124px;
	gap: 18px;
}
.pg_writer_view .edit-box textarea {
	resize: none;
}
.pg_writer_view .edit-box .btn-border {
	background-color: #C53B47;
}

/* 상담 신청 */
#userTab {
	text-align: center;
}
.pg_detail.pg_board.consult {
	padding-bottom: 80px;
}
.pg_detail.pg_board.consult .m-only {
	display: none;
}
.pg_detail.pg_board.consult .minframe {
	max-width: 1200px;
	padding: 0;
	width: calc(100% - 100px);
}
.pg_detail.pg_board.consult .pg-tit > p {
	font-size: 20px;
}
.pg_detail.pg_board.consult .tab {
	display: inline-flex;
	justify-content: center;
	height: 72px;
	padding: 6px;
	border: 1px solid #ddd;
	border-radius: 40px;
}
.pg_detail.pg_board.consult .tab .tab-item {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	padding: 0 42px;
	border-bottom: 0;
	background-color:#fff;
	border-radius: 40px;
	color: #999;
}
.pg_detail.pg_board.consult .tab .tab-item.active {
	background-color: #C53B47;
	color: #fff;
}
.pg_detail.pg_board.consult .counsel-form > .flex-box {
	gap: 40px;
}
.pg_detail.pg_board.consult .form-box {
	width: 100%;
}
.pg_detail.pg_board.consult .form-box .form-title {
	border-bottom: 1px solid #C53B47;
	padding-bottom: 12px;
	display: flex;
	align-items: baseline;
	font-size: 20px;
	color: #767676;
	gap: 24px;
	margin-bottom: 36px;
}
.pg_detail.pg_board.consult .form-box .form-title label {
	position: relative;
	font-size: 32px;
	font-weight: bold;
	color:#222222;
}
.pg_detail.pg_board.consult .form-box .form-title label.required::after {
	content: '';
	position: absolute;
	top: 0;
	left: calc(100% + 2px);
	width: 8px;
	height: 8px;
	background-color: #C53B47;
	border-radius: 50%;
}
.pg_detail.pg_board.consult .btn-list {
	margin: 0;
}
.pg_detail.pg_board.consult textarea {
	border-radius: 8px;
	border: 1px solid #DDDDDD;
	padding: 20px;
	font-size: 20px;
	font-family: "SUIT", sans-serif;
}
.pg_detail.pg_board.consult textarea::placeholder {
	color: #999;
}
.pg_detail.pg_board.consult .form-group .form-input {
	display: flex;
	width: 100%;
	flex-wrap: wrap;
	gap: 40px 0;
	font-size: 24px;
}
.pg_detail.pg_board.consult .form-group .form-input.phone-input {
	flex-wrap: nowrap;
	align-items: center;
	gap:8px;
	width: auto;
}
.pg_detail.pg_board.consult .form-group .form-input.phone-input input {
	text-align: center;
	width: 100%;
}
.pg_detail.pg_board.consult .form-input .form-check {
	display: inline-flex;
	align-items: center;
	width: 50%;
	padding: 0;
}
.pg_detail.pg_board.consult .form-input.flex-direction-column .form-check {
	width: 100%;
}
.pg_detail.pg_board.consult .form-check label.class {
	background: none;
	width: auto;
	height: auto;
	display: flex;
	align-items: center;
	font-size: 20px;
	gap: 12px;
}
.pg_detail.pg_board.consult .form-check label.class > span {
	width: 24px;
	height: 24px;
	border-radius: 30px;
	border: 1px solid #767676;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: all .3s;
}
.pg_detail.pg_board.consult .form-check input[type=checkbox] {
	display: none;
}
.pg_detail.pg_board.consult .form-check input[type=checkbox]:checked + label.class > span {
	background-color: #C53B47;
	border-color: #C53B47;
}
.pg_detail.pg_board.consult .form-check label.class > span::before {
	content: '';
	display: inline-block;
	width: 100%;
	height: 100%;
	background-color: #fff;
	border-radius: 50%;
	transition: all .25s;
}
.pg_detail.pg_board.consult .form-check input[type=checkbox]:checked + label.class > span::before {
	width: 8px;
	height: 8px;
}
.pg_detail.pg_board.consult .form-group > label {
	width: auto;
	font-size: 20px;
	font-weight: bold;
	line-height: 1.25;
	text-align: left;
	flex: 1;
}
.pg_detail.pg_board.consult .form-group > label span {
	position: relative;
}
.pg_detail.pg_board.consult .form-group > label.required span::after {
	content: '';
	position: absolute;
	top: 0;
	left: calc(100% + 2px);
	width: 8px;
	height: 8px;
	background-color: #C53B47;
	border-radius: 50%;
}
.pg_detail.pg_board.consult .form-group > .form-input {
	flex: 6;
}
.pg_detail.pg_board.consult .form-group-wrap {
	display: flex;
	/*justify-content: space-around;*/
	margin-bottom: 16px;
	gap: 16px;
}
.pg_detail.pg_board.consult .form-group-wrap .form-group {
	display: flex;
	align-items: center;
	gap: 25px;
	flex: 1;
}
.pg_detail.pg_board.consult input[type=text] {
	border-radius: 8px;
	padding: 0 24px;
	height: 57px;
	border: 1px solid #ddd;
	font-size: 20px;
	font-family: "SUIT", sans-serif;
	width: 100%;
}
#writerName {
	width: 100%;
}
.pg_detail.pg_board.consult .policy-wrap .flex-box {
	align-items: center;
	width: 100%;
}
.pg_detail.pg_board.consult .policy-wrap input[type="checkbox"] {
	display: none;
}
.pg_detail.pg_board.consult .policy-wrap label {
	position: relative;
	padding-left: 36px;
	cursor: pointer;
	font-size: 16px;
}
.pg_detail.pg_board.consult .policy-wrap label:before {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	width: 24px;
	height: 24px;
	border-radius: 4px;
	border: 1px solid #CCCCCC;
}
.pg_detail.pg_board.consult .policy-wrap input[type="checkbox"]:checked ~ label:before {
	content: '';
	text-align: center;
	line-height: 30px;
	font-size: 30px;
	background: url('/common/img/curriculum/chk_icon.png') no-repeat;
	background-size: contain;
	border: none;
}
.pg_detail.pg_board.consult .frame.privacy b {
	font-weight: 700;
	color: #000;
	display: inline-block;
	margin-right: 7px;
}
.pg_detail.pg_board.consult .frame.privacy a {
	text-decoration: underline;
	color: #888;
	margin-left: 7px;
	font-size: 16px;
}
.pg_detail.pg_board.consult .counsel-form .form-group {
	margin-bottom: 0;
}
.pg_detail.pg_board.consult .counsel-form .form-group.policy-wrap {
	margin-top: 80px;
	margin-bottom: 62px;
	padding-top: 20px;
	font-size: 24px;
	border-top: 1px solid #c53b4726;
}

#frmFranchInput .franch-info {
	gap: 40px;
}
#frmFranchInput .franch-info > div {
	flex: 1;
	margin-bottom: 0;
}
#frmFranchInput textarea,
#frmTreatInput textarea {
	height: 203px;
}

/* 유튜브 */
.pg_youtube .search-box-wrap {
	display: flex;
	gap: 10px;
}
.pg_youtube .custom-select-box {
	position: relative;
}
.pg_youtube .custom-select-box .select-txt {
	position: relative;
	display: flex;
	align-items: center;
	height: 60px;
	background-color: #FCF5F6;
	padding: 0 55px 0 25px;
	font-size: 20px;
	color: #E9B3B3;
	font-family: "SUIT", sans-serif;
	cursor: pointer;
	border-radius: 10px;
}
.pg_youtube .custom-select-box .select-txt:hover {
	filter: brightness(0.9);
}
.pg_youtube .custom-select-box .select-txt span {
	width: 205px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.pg_youtube .custom-select-box .select-txt::after {
	content: '';
	position: absolute;
	top: 50%;
	right: 20px;
	transform: translateY(-50%);
	display: inline-block;
	border-top: 10px solid #C53B47;
	border-left: 9px solid transparent;
	border-right: 9px solid transparent;
}
.pg_youtube .custom-select-box .select-list {
	display: none;
	z-index: 1;
	position: absolute;
	top: calc(100% + 5px);
	left: 0;
	width: 100%;
	box-shadow: 0 3px 10px #00000033;
	background-color: #fff;
}
.pg_youtube .custom-select-box .select-list label {
	display: flex;
	align-items: center;
	padding: 14px 25px;
	font-size: 18px;
	color: #313131;
	gap: 10px;
	cursor: pointer;
}
.pg_youtube .custom-select-box .select-list label:hover {
	background-color: #FCF5F6;
}
.pg_youtube .custom-select-box .select-list label.active {
	background-color: #FCF5F6;
}
.pg_youtube .custom-select-box .select-list label input[type=checkbox] {
	display: none;
}
.pg_youtube .custom-select-box .select-list.input_hidden input {
	display: none;
}
.pg_youtube .custom-select-box .select-list label span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
	border: 1px solid #CCCCCC;
	border-radius: 3px;
}
.pg_youtube .custom-select-box .select-list label input[type=checkbox]:checked ~ span {
	background-color: #C53B47;
	border-color: #C53B47;
}
.pg_youtube .custom-select-box .select-list label input[type=checkbox]:checked ~ span::after {
	content: '';
	display: inline-block;
	margin-bottom: 5px;
	width: 12px;
	height: 8px;
	border-left: 2px solid #fff;
	border-bottom: 2px solid #fff;
	transform: rotate(-45deg);
}
.pg_youtube .custom-select-box.active .select-list {
	display: block;
}
.pg_youtube .youtube-list-wrap {
	padding: 30px 0;
}
.pg_youtube .youtube-list-wrap .youtube-list {
	display: flex;
	flex-wrap: wrap;
	gap: 60px 30px;
}
.pg_youtube .youtube-list-wrap .youtube-list + .youtube-list {
	margin-top: 50px;
}
.pg_youtube .youtube-list-wrap .youtube-list > li {
	flex: 1;
	max-width: calc(33.333333% - 20px);
	min-width: calc(33.333333% - 20px);
	cursor: pointer;
}
.pg_youtube .youtube-list-wrap .youtube-list > li.no-data {
	max-width: 100%;
	min-width: 100%;
	font-size: 24px;
	font-weight: bold;
	text-align: center;
	padding: 60px 0;
	cursor: auto;
}
.pg_youtube .youtube-list-wrap .youtube-list > li:hover .thumb-box {
	filter: brightness(0.9);
}
.pg_youtube .youtube-list-wrap .youtube-list .youtube-box .thumb-box {
	position: relative;
	width: 100%;
	aspect-ratio: 600/335;
	border-radius: 10px;
	overflow: hidden;
	background: #eee;
	display: flex;
	align-items: center;
	justify-content: center;
}
.pg_youtube .youtube-list-wrap .youtube-list .youtube-box .thumb-box img {
	width: 100%;
}
.pg_youtube .youtube-list-wrap .youtube-list .youtube-box .txt-box {
	margin-top: 16px;
}
.pg_youtube .youtube-list-wrap .youtube-list .youtube-box .txt-box .txt-type {
	font-size: 21px;
	color: #999999;
	margin-bottom: 3px;
}
.pg_youtube .youtube-list-wrap .youtube-list .youtube-box .txt-box .txt-title {
	font-size: 24px;
	font-weight: bold;
	color: #222222;
	display: -webkit-box;
	text-overflow: ellipsis;
	overflow: hidden;
	word-break: break-word;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}
.pg_youtube .youtube-popup {
	display: none;
	z-index: 99999;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,.4);
}
.pg_youtube .youtube-popup .btn-close {
	position: absolute;
	top:0;
	right:0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border: 0;
	padding: 0;
	margin-left: auto;
	transform: translateY(-100%);
}
.pg_youtube .youtube-popup .youtube-inner {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
}
.pg_youtube .youtube-popup .youtube-inner .video-box {
	position: relative;
	width: 1028px;
	aspect-ratio: 1028 / 570;
	height: auto;
	padding: 0;
}
.pg_youtube .youtube-popup .youtube-inner .video-box iframe {
	width: 100%;
	height: 100%;
}
.notice .top_search {
	align-items: center;
	margin-bottom: 20px;
}
.notice .top_search .search_box .search {
	min-width: 400px;
	padding: 0 85px 0 25px;
	font-size: 20px;
	height: 60px;
	background-color: #FBFBFB;
	color: #222;
	border: 0;
}
.notice .top_search .search_box .search::placeholder {
	color: #CCCCCC;
}
.notice .top_search .search_box .search_btn {
	position: absolute;
	top: 0;
	right: 0;
	width: 60px;
	height: 60px;
	background-color: #C53B47;
}
.notice .top_search .search_box .search_btn img {
	filter: brightness(2);
}

/* 자유게시판 */
.pg_free_board .search-box-wrap {
	display: flex;
	gap: 10px;
}
.pg_free_board .custom-select-box {
	position: relative;
}
.pg_free_board .custom-select-box .select-txt {
	position: relative;
	display: flex;
	align-items: center;
	height: 60px;
	background-color: #FBFBFB;
	padding: 0 55px 0 25px;
	font-size: 20px;
	font-weight: 400;
	color: #313131;
	font-family: "SUIT", sans-serif;
	cursor: pointer;
	border-radius: 10px;
}
.pg_free_board .custom-select-box .select-txt:hover {
	/*filter: brightness(0.9);*/
}
.pg_free_board .custom-select-box .select-txt span {
	width: 205px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.pg_free_board .custom-select-box .select-txt::after {
	content: '';
	position: absolute;
	top: 50%;
	right: 20px;
	transform: translateY(-50%);
	display: inline-block;
	border-top: 10px solid #C53B47;
	border-left: 9px solid transparent;
	border-right: 9px solid transparent;
}
.pg_free_board .custom-select-box .select-list {
	display: none;
	z-index: 1;
	position: absolute;
	top: calc(100% + 5px);
	left: 0;
	width: 100%;
	box-shadow: 0 3px 10px #00000033;
	background-color: #fff;
}
.pg_free_board .custom-select-box .select-list label {
	display: flex;
	align-items: center;
	padding: 14px 25px;
	font-size: 18px;
	color: #313131;
	gap: 10px;
	cursor: pointer;
}
.pg_free_board .custom-select-box .select-list label:hover {
	background-color: #FCF5F6;
}
.pg_free_board .custom-select-box .select-list label.active {
	background-color: #FCF5F6;
}
.pg_free_board .custom-select-box .select-list label input[type=checkbox] {
	display: none;
}
.pg_free_board .custom-select-box .select-list.input_hidden input {
	display: none;
}
.pg_free_board .custom-select-box .select-list label span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
	border: 1px solid #CCCCCC;
	border-radius: 3px;
}
.pg_free_board .custom-select-box .select-list label img {
	display: none;
}
.pg_free_board .custom-select-box .select-list label input[type=checkbox]:checked ~ span {
	background-color: #C53B47;
	border-color: #C53B47;
}
.pg_free_board .custom-select-box .select-list label input[type=checkbox]:checked ~ span::after {
	content: '';
	display: inline-block;
	margin-bottom: 5px;
	width: 12px;
	height: 8px;
	border-left: 2px solid #fff;
	border-bottom: 2px solid #fff;
	transform: rotate(-45deg);
}
.pg_free_board .custom-select-box.active .select-list {
	display: block;
}
.pg_free_board .board_btn_wrap {
	display: flex;
	justify-content: flex-end;
	margin-top: 30px;
}
.pg_free_board .board_btn_wrap .board_write_btn {
	display: inline-block;
	background-color: #C53B47;
	border: 1px solid #C53B47;
	border-radius: 30px;
	padding: 12px 37px;
	font-size: 24px;
	font-weight: 400;
	color: #FFFFFF;
	font-family: "SUIT", sans-serif;
	transition: all .3s;
}
.pg_free_board .board_btn_wrap .board_write_btn:hover {
	border: 1px solid #C53B47;
	background-color: #FFFFFF;
	color: #C53B47;
}
.pg_free_board .board-wrap .list-wrap {
	display: block;
	border: none;
	padding: 0;
}
.pg_free_board .board-wrap .list-wrap .list {
	justify-content: flex-start;
	min-height: 103px;
	border-bottom: 1px solid #DDDDDD;
	padding: 0 40px;
	max-width: 100%;
}
.pg_free_board .list-wrap .list .txt {
	font-size: 24px;
	font-weight: 700;
	color: #222222;
	font-family: "SUIT", sans-serif;
}
.pg_free_board .list-wrap .list .front_txt {
	width: 90px;
	margin-right: 55px;
	text-overflow: ellipsis;
	white-space: wrap;
	overflow: hidden;
	word-break: break-word;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}
.pg_free_board .list-wrap .list .content {
	width: calc(100% - 400px);
	margin-right: 20px;
}
.pg_free_board .list-wrap .list .content a {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 10px;
	max-width: max-content;
}
.pg_free_board .list-wrap .list .content .content_txt {
	display: inline-block;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
}
.pg_free_board .list-wrap .list .content .hits {
	display: inline-block;
	font-size: 20px;
	font-weight: 500;
	color: #C53B47;
	font-family: "SUIT", sans-serif;
}
.pg_free_board .list-wrap .list .right_wrap {
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
.pg_free_board .list-wrap .list .name {
	text-align: center;
	width: 100px;
	margin-right: 29px;
	text-overflow: ellipsis;
	white-space: wrap;
	overflow: hidden;
	word-break: break-word;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	font-size: 20px;
	font-weight: 600;
	color: #999999;
	font-family: "Mulish", sans-serif;
}
.pg_free_board .list-wrap .list .date {
	width: 106px;
	font-size: 20px;
	font-weight: 400;
	color: #999999;
	font-family: "Mulish", sans-serif;
}
/* 자유게시판 */

/* 수강생 후기 */
.review {
	font-family: "SUIT", sans-serif;
}
.review .subframe {
	max-width: 1460px;
	margin: 0 auto;
	width: calc(100% - 100px);
}
.review .pg-tit {
	padding: 75px 0 90px;
}
.review .pg-tit > h2 {
	font-size: 70px;
	font-weight: 800;
	color:#000;
	letter-spacing: -0.714px;
	line-height: 0.714;
}
.review .pg-tit:after,
.review .pg-tit:before {
	display: none;
}
.review .review-list-wrap {
	margin-top:0;
}
.review .vw-tit-box {
	/*display: none;*/
	position:relative;
}
.review .vw-tit-box .comment {
	position: absolute;
	top: 50%;
	right: 20px;
	transform: translateY(-50%);
}
.review .vw-tit-box .comment .add-reply {
	margin-top: 0;
}
.review .add-reply .ar-head .right {
	float: none;
	font-family: 'Mulish', sans-serif;
	color:#999;
	font-size: 20px;
	font-weight: normal;
}
.review .add-reply .ar-head .right > span {
	color:#222;
}
.review .vw-list-head {
	margin-bottom: 30px;
	padding:0;
	align-items: center;
	justify-content: space-between;
}
.review .vw-list-head > h3 {
	font-size: 24px;
	line-height: 1.666;
}
.review .vw-list-head > h3 > span {
	color:#C53B47;
}
.review .vw-list-head .vw-sort button {
	background-color: transparent;
	padding:0;
	color:#999;
	line-height: 1;
	font-size:24px;
}
.review .vw-list-head .vw-sort button:last-child {
	position: relative;
	padding-left: 18px;
	margin-left: 15px;
}
.review .vw-list-head .vw-sort button:last-child:after {
	content:"";
	position: absolute;
	top:50%;
	left: 0;
	transform: translateY(-50%);
	width:1px;
	height: 80%;
	background-color: #999;
}
.review .vw-list-head .vw-sort button.active {
	color:#C53B47;
}
.review .vw-list .vw-item {
	border-top: 2px solid #C53B47;
	padding: 0;
	margin-top: 0;
}
.review .vw-tit-box {
	height: auto;
	padding:22px 20px;
	background-color:transparent;
	border-bottom: 1px solid rgba(197,59,71,.15);
	border-radius: 0;
}
.review .vw-content-box .feed {
	margin-bottom: 0;
	font-size:24px;
	line-height: 1.333;
	font-weight: 300;
}
.review .vw-content-box {
	padding-bottom: 60px;
}
.review .pagi-wrap {
	margin: 40px 0 100px;
}
.review .vw-reg-form {
	border:none;
	padding:0;
}
.review .vw-reg-form .vwrf-bottom {
	position: relative;
	margin-bottom: 110px;
}
.review .vw-img-wrap {
	position: absolute;
	bottom:33px;
	/*right:300px;*/
	right: 21%;
}
.review .vw-comment-reg-box > .inner {
	padding:0;
	border: none;
	gap:20px;
	height:100%;
}
.review .vw-comment-reg-box > .inner #contents {
	border: 1px solid #ddd;
	border-radius: 8px ;
	padding: 29px 40px;
	flex: 82.877%;
	max-width: 82.877%;
	font-family: "SUIT", sans-serif;
	font-size: 24px;
	color:#999;
}
.review .vw-comment-reg-box .inner > button {
	max-width: 17.123%;
	flex: 17.123%;
	background-color: #bbb;
	color:#fff;
	border-radius: 8px;
	border:none;
	font-size: 28px;
	font-weight: normal;
}
.review .vw-reg-form .vw-comment-reg-box {
	margin: 0;
	height: 250px;
}
.review .vw-tit-box .comment {
	display: none;
}
.review .vw-list-head .vw-sort button.active {
	background-color:transparent;
	color: #C53B47;
}
.review .reply-list .reply-item {
	display: none;
}
.review .vw-id .icon {
	width: 50px;
	height: 50px;
}
.review .vw-id .icon.l1 {
	background-image: url('/common/img/icon/l1-renew.png');
}
.review .vw-id .icon.l2 {
	background-image: url('/common/img/icon/l1-renew.png');
}
.review .vw-id .icon.l3 {
	background-image: url('/common/img/icon/l1-renew.png');
}

/* 커리큘럼 */
.curriculum {
	/*max-width: 1920px;*/
	/*margin: 0 auto;*/
	font-family: "SUIT", sans-serif;
}
.curriculum .sec_01 {
	position: relative;
	/*height: 100%;*/
}
.curriculum .sec_01 ._cont {
	display: none;
}
.curriculum.page_0 .sec_01 ._cont0,
.curriculum.page_1 .sec_01 ._cont1,
.curriculum.page_2 .sec_01 ._cont2,
.curriculum.page_3 .sec_01 ._cont3,
.curriculum.page_4 .sec_01 ._cont4,
.curriculum.page_5 .sec_01 ._cont5,
.curriculum.page_6 .sec_01 ._cont6,
.curriculum.page_7 .sec_01 ._cont7 {
	display: block;
}
.curriculum .sec_01 .img_box {
	/*height: 100%;*/
}
.curriculum .sec_01 .img_box img {
	/*position: absolute;*/
	/*top: 50%;*/
	/*left: 50%;*/
	/*transform: translate(-50%, -50%);*/
	width: 100%;
	/*height: 100%;*/
}
.curriculum .sec_01 .txt_box {
	position: absolute;
	left: 12%;
	bottom: 16%;
	display: block;
}
.curriculum .sec_01 .txt_box span {
	display: block;
	margin-bottom: 38px;
	font-size: 40px;
	font-weight: 500;
	color: #FFFFFF;
}
.curriculum .sec_01 .txt_box span b {
	font-size: 100px;
	font-weight: 800;
	color: #FFFFFF;
}
.curriculum .sec_01 .txt_box p {
	text-indent: 8px;
	font-size: 28px;
	font-weight: 400;
	color: #FFFFFF;
}
.curriculum .sec_02 {
	position: relative;
	padding-top: 120px;
	background-color: #F9F9F9;
}
.curriculum .sec_02 .youtube_box {
	position: relative;
	overflow: hidden;
	display: none;
	padding-top: 56.241%;
	background-color: #222222;
}
.curriculum.page_0 .sec_02 .youtube_box_0,
.curriculum.page_1 .sec_02 .youtube_box_1,
.curriculum.page_2 .sec_02 .youtube_box_2,
.curriculum.page_3 .sec_02 .youtube_box_3,
.curriculum.page_4 .sec_02 .youtube_box_4,
.curriculum.page_5 .sec_02 .youtube_box_5,
.curriculum.page_6 .sec_02 .youtube_box_6,
.curriculum.page_7 .sec_02 .youtube_box_7 {
	display: block;
}
.curriculum .sec_02 .youtube_box > iframe,
.curriculum .sec_02 .youtube_box > video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.curriculum .sec_02 .video_txt {
	display: block;
	padding: 20px 30px 30px 0;
	text-align: right;
	font-size: 120px;
	font-weight: 800;
	color: #F3F3F3;
	font-family: "Mulish", sans-serif;
}

/* 커리 1 */
.curriculum .curri_cont_box {
	position: relative;
	display: flex;
}
.curriculum .curri_scroll_nav {
	position: sticky;
	top: 0;
	left: 0;
	width: 293px;
	min-width: 293px;
	height: 760px;
	background-color: transparent;
	padding: 210px 44px 210px 44px;
	z-index: 10;
}
.curriculum .curri_scroll_nav li {
	border-radius: 99px;
	font-size: 16px;
	font-weight: 700;
	color: #767676;
	cursor: pointer;
}
.curriculum .curri_scroll_nav li.active {
	background-color: #111111;
	color: #FFFFFF;
}
.curriculum .curri_scroll_nav li span {
	display: block;
	width: 100%;
	padding: 14px 0 14px 20px;
}
.curriculum .type_0,
.curriculum .type_1,
.curriculum .type_2,
.curriculum .type_3,
.curriculum .type_4,
.curriculum .type_5,
.curriculum .type_6,
.curriculum .type_7 {
    width: calc(100% - 293px);
	margin-left: auto;
	display: none;
}
.curriculum.page_0 .type_0,
.curriculum.page_1 .type_1,
.curriculum.page_2 .type_2,
.curriculum.page_3 .type_3,
.curriculum.page_4 .type_4,
.curriculum.page_5 .type_5,
.curriculum.page_6 .type_6,
.curriculum.page_7 .type_7 {
	display: block;
}
.curriculum .sec_03 {
	position: relative;
	padding: 200px 0 120px;
	overflow: hidden;
}
.curriculum .sec_03 .tit_box {
	position: relative;
	display: inline-block;
	text-align: center;
	padding-bottom: 120px;
	margin: 0 auto 120px;
	left: 40.5%;
	transform: translateX(-50%);
}
.curriculum .sec_03 .tit_box:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	display: block;
	width: 80px;
	height: 2px;
	background-color: #222222;
}
.curriculum .sec_03 .tit_box h3 {
	font-size: 70px;
	font-weight: 800;
	color: #222222;
}
.curriculum .sec_03 .cont_box {
	position: relative;
	display: flex;
}
.curriculum .sec_03 .cont_box .txt_box {
	flex: 0 0 31%;
}
.curriculum .sec_03 .cont_box .txt_box span {
	display: block;
	margin-bottom: 36px;
	font-size: 2.6vw;
	font-weight: 800;
	color: #222222;
}
.curriculum .sec_03 .cont_box .txt_box span b {
	font-weight: 800;
	color: #C53B47;
	font-family: "Mulish", sans-serif;
}
.curriculum .sec_03 .cont_box .txt_box p {
	font-size: 1.45vw;
	font-weight: 400;
	color: #767676;
}
.curriculum .sec_03 .cont_box .txt_box .pagi_wrap {
	position: relative;
	margin-top: 110px;
	width: 180px;
	height: 80px;
}
.curriculum .sec_03 .cont_box .txt_box .pagi_wrap .swiper-button-prev {
	background: url('/common/img/curriculum/curri-swiper-prev.png');
	width: 80px;
	height: 80px;
	top: 0;
	left: 0;
	margin-top: 0;
}
.curriculum .sec_03 .cont_box .txt_box .pagi_wrap .swiper-button-next {
	background: url('/common/img/curriculum/curri-swiper-next.png');
	width: 80px;
	height: 80px;
	top: 0;
	right: 0;
	margin-top: 0;
}
.curriculum .sec_03 .cont_box .curriSwiper {
	overflow: hidden;
	flex: 1;
}
.curriculum .sec_03 .cont_box .curriSwiper .img_box {
	max-width: 420px;
	margin-bottom: 20px;
}
.curriculum .sec_03 .cont_box .curriSwiper .img_box img {
	width: 100%;
}
.curriculum .sec_03 .cont_box .curriSwiper span {
	display: block;
	margin-bottom: 4px;
	text-align: center;
	font-size: 24px;
	font-weight: 500;
	color: #C53B47;
}
.curriculum .sec_03 .cont_box .curriSwiper p {
	text-align: center;
	font-size: 32px;
	font-weight: 800;
	color: #222222;
}
.curriculum .sec_04 {
	padding: 120px 0;
	max-width: 1320px;
	margin: 0 auto;
}
.curriculum .sec_04 .tit_box {
	margin-bottom: 80px;
	text-align: center;
}
.curriculum .sec_04 .tit_box span {
	display: block;
	font-size: 44px;
	font-weight: 400;
	color: #C53B47;
}
.curriculum .sec_04 .tit_box h3 {
	font-size: 70px;
	font-weight: 800;
	color: #222222;
}
.curriculum .sec_04 .cont_box ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 29px;
}
.curriculum .sec_04 .cont_box ul li .img_box {
	margin-bottom: 16px;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 3px 30px 0 rgba(0, 0, 0, 0.30);
}
.curriculum .sec_04 .cont_box.artist_profile_box ul li .img_box {
	cursor: pointer;
}
.curriculum .sec_04 .cont_box ul li .img_box img {
	display: block;
	max-width: 100%;
}
.curriculum .sec_04 .cont_box ul li .txt_box {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0 10px;
}
.curriculum .sec_04 .cont_box ul li .txt_box span {
	font-size: 24px;
	font-weight: 700;
	color: #313131;
	font-family: "Mulish", sans-serif;
}
.curriculum .sec_04 .cont_box ul li .txt_box p {
	font-size: 24px;
	font-weight: 400;
	color: #999999;
	font-family: "Mulish", sans-serif;
}
.curriculum .sec_05 {
	padding: 120px 0;
	max-width: 1320px;
	margin: 0 auto;
}
.curriculum .sec_05 .cont_title_flex {
	display: flex;
	flex-direction: column;
	gap: 92px;
}
.curriculum .sec_05 .cont_title_flex_m {
	display: none;
}
.curriculum .sec_05 .tit_box {
	margin-bottom: 60px;
}
.curriculum .sec_05 .tit_box h3 {
	margin-bottom: 20px;
	text-align: center;
	font-size: 70px;
	font-weight: 800;
	color: #222222;
}
.curriculum .sec_05 .tit_box .sub_txt_box {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0 12px;
	margin-bottom: 30px;
}
.curriculum .sec_05 .tit_box .sub_txt_box span {
	font-size: 36px;
	font-weight: 700;
	color: #222222;
}
.curriculum .sec_05 .tit_box .sub_txt_box span:nth-child(2) {
	display: block;
	width: 2px;
	height: 16px;
	background-color: #C53B47;
}
.curriculum .sec_05 .tit_box .sub_txt_box span .gray_text {
	font-size: 36px;
	font-weight: 700;
	color: #949494;
}
.curriculum .sec_05 .tit_box .sub_flex_txt_box {
	display: flex;
	flex-direction: column;
	gap: 13px;
	margin-bottom: 64px;
}
.curriculum .sec_05 .tit_box .sub_flex_txt_box .sub_txt_box {
	margin-bottom: 0;
}
.curriculum .sec_05 .tit_box .sub_flex_txt_box .red_color_txt {
	text-align: center;
	font-size: 20px;
	font-weight: 400;
	color: #C62525;
}
.curriculum .sec_05 .tit_box .sub_txt {
	text-align: center;
	font-size: 24px;
	font-weight: 400;
	color: #555555;
}
.curriculum .sec_05 .tit_box .sub_txt b {
	color: #C53B47;
}
.curriculum .sec_05 .cont_box .cont_list {
	margin-bottom: 60px;
}
.curriculum .sec_05 .cont_box .cont_list:last-child {
	margin-bottom: 0;
}
.curriculum .sec_05 .cont_box .cont_list .curri_table {
	width: 100%;
}
.curriculum .sec_05 .cont_box .cont_list .curri_table tbody tr.table_tit th {
	background-color: #C53B47;
	border-right: 1px solid #FFFFFF;
	padding: 20px 0;
	font-size: 26px;
	font-weight: 700;
	color: #FFFFFF;
}
.curriculum .sec_05 .cont_box .cont_list .curri_table tbody tr.table_tit th.font_ss {
	font-size: 22px;
}
.curriculum .sec_05 .cont_box .cont_list .curri_table tbody tr.table_tit th:last-child {
	border-right: 0;
}
.curriculum .sec_05 .cont_box .cont_list .curri_table tbody tr.table_head th {
	background-color: #F9EBEC;
	padding: 13px 40px;
	text-align: left;
	font-size: 26px;
	font-weight: 700;
	color: #222222;
}
.curriculum .sec_05 .cont_box .cont_list .curri_table tbody tr.table_head th:nth-child(2) {
	border-left: 1px solid #FFFFFF;
	border-right: 1px solid #FFFFFF;
}
.curriculum .sec_05 .cont_box .cont_list .curri_table tbody tr.table_body td {
	border: 1px solid #DDDDDD;
	padding: 24px 40px;
	font-size: 24px;
	font-weight: 700;
	color: #222222;
}
.curriculum .sec_05 .cont_box .cont_list .curri_table tbody tr.table_body td b {
	font-size: 20px;
	font-weight: 500;
	color: #767676;
}
.curriculum .sec_05 .cont_box .cont_list .curri_table tbody tr.first td {
	border-top: 0;
}
.curriculum .sec_05 .cont_box .cont_list .curri_table tbody tr.bt_0 td {
	border-top: 0;
}
.curriculum .sec_05 .cont_box .cont_list .curri_table tbody tr.last-first td:first-child,
.curriculum .sec_05 .cont_box .cont_list .curri_table tbody tr.last-third td {
	border-bottom: 1px solid #222222;
}
.curriculum .sec_05 .cont_box .cont_list .curri_table tbody tr.table_body td:last-child {
	border-right: 0;
}
.curriculum .sec_05 .cont_box .cont_list .curri_table tbody tr.first td:first-child,
.curriculum .sec_05 .cont_box .cont_list .curri_table tbody tr.last-first td:first-child{
	border-left: 0;
}
.curriculum .sec_05 .cont_box .cont_list .curri_table tbody tr.third.bdl_0 td:first-child,
.curriculum .sec_05 .cont_box .cont_list .curri_table tbody tr.last-third.bdl_0 td:first-child {
	border-left: 0;
}
.curriculum .sec_05 .cont_box .cont_list .curri_table tbody tr.third.bdr_0 td:last-child,
.curriculum .sec_05 .cont_box .cont_list .curri_table tbody tr.last-third.bdr_0 td:last-child {
	border-right: 0;
}
.curriculum .sec_05 .cont_box .cont_list .curri_table tbody tr th.text_center,
.curriculum .sec_05 .cont_box .cont_list .curri_table tbody tr td.text_center {
	text-align: center;
}
.curriculum .sec_05 .cont_box .cont_list .curri_table tbody tr td.color_txt {
	color: #C53B47;
}
.curriculum .sec_05 .cont_box .cont_list .table_sub_txt.mt_8 {
	margin-top: 8px;
}
.curriculum .sec_05 .cont_box .cont_list .table_sub_txt.mt_20 {
	margin-top: 20px;
}
.curriculum .sec_05 .cont_box .cont_list .table_sub_txt.left {
	text-align: left;
}
.curriculum .sec_05 .cont_box .cont_list .table_sub_txt.right {
	text-align: right;
}
.curriculum .sec_05 .cont_box .cont_list .table_sub_txt.between {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.curriculum .sec_05 .cont_box .cont_list .table_sub_txt p {
	font-size: 20px;
	font-weight: 400;
	color: #999999;
}
.curriculum .sec_06 {
	position: relative;
	z-index: 10;
	background-color: #111;
	padding:200px 0;
}
.curriculum .sec_06 .tit-box {
	margin-bottom: 54px;
}
.curriculum .sec_06 .tit-box .tit {
	font-size: 60px;
	line-height: 1.333;
	color:#fff;
	font-weight: 800;
	margin-top: 7px;
}
.curriculum .sec_06 .cont-ul {
	flex-wrap: wrap;
	gap:54px;
}
.curriculum .sec_06 .cont-ul > li {
	width:calc((100% - 54px) / 2);
}
.curriculum .sec_06 .cont-ul > li.cont-list {
	background-color: #222;
	border-radius: 30px;
	padding: 55px 164px 55px 60px;
	position: relative;
}
.curriculum .sec_06 .cont-ul > li.cont-list .ico-box {
	position: absolute;
	right: 50px;
	top: 48px;
	max-width: 114px;
}
.curriculum .sec_06 .cont-ul > li.cont-list .ico-box > img {
	width:100%;
}
.curriculum .sec_06 .cont-ul > li.cont-list .cont-tit {
	font-size: 35px;
	font-weight: 800;
	line-height: 1.285;
	color:#fff;
	margin-bottom: 26px;
}
.curriculum .sec_06 .cont-ul > li.cont-list .cont-txt {
	font-size: 24px;
	color:#FFC9C9;
	line-height: 1.458;
}
.curriculum .sec_07 {
	padding: 113px 0 116px;
	background: url('/common/img/curriculum/sec-07-bg.jpg') no-repeat center;
	background-size: cover;
}
.curriculum .sec_07 .tit-box {
	color:#fff;
}
.curriculum .sec_07 .tit-box > span {
	font-size: 30px;
	color: #B64F4A;
	font-weight: 500;
	line-height: 2;
}
.curriculum .sec_07 .tit-box > .tit {
	font-size:50px;
	font-weight: 800;
	margin-bottom: 33px;
	line-height: 1.2;
}
.curriculum .sec_07 .tit-box > .txt {
	color:rgba(255,255,255,.8);
	font-size: 24px;
	font-weight: 300;
	line-height: 1.583;
}
.curriculum .sec_08 {
	overflow-x: hidden;
	padding: 193px 0 160px;
}
.curriculum .sec_08 .tit_box {
	margin-bottom: 60px;
	color: #222;
}
.curriculum .sec_08 .tit_box h3 {
	margin-bottom: 30px;
	text-align: center;
	font-size: 70px;
	font-weight: 800;
}
.curriculum .sec_08 .tit_box .sub_txt {
	text-align: center;
	font-size: 24px;
	font-weight: 400;
	color: #555;
}
.curriculum .sec_08 .place-wrap {
	width:100vw;
	margin-left: calc(-50vw + 50%);
	overflow: hidden;
	position: relative;
}
.curriculum .sec_08 .place-wrap .swiper-wrapper {
	height:auto;
}
.curriculum .sec_08 .place-wrap .swiper-img-box {
	position: relative;
	overflow: hidden;
	border-radius: 40px;
}
.curriculum .sec_08 .place-wrap .swiper-img-box > img {
	width:100%;
	opacity: .5;
}
.curriculum .sec_08 .place-wrap .swiper-slide-active .swiper-img-box > img {
	opacity: 1;
}
.curriculum .sec_08 .place-wrap .swiper-pagination-bullet {
	width:12px;
	height:12px;
	background-color: #fff;
	opacity: 1;
}
.curriculum .sec_08 .place-wrap .swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
	margin:0 10px;
}
.curriculum .sec_08 .place-wrap .swiper-pagination-bullet-active {
	background-color: #C53B47;
}
.curriculum .sec_08 .place-wrap .swiper-container-horizontal>.swiper-pagination-bullets {
	bottom:32px;
}
.curriculum .sec_08 .swiper-btn-wrap {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	height: 44px;
	z-index: 1;
}
.curriculum .sec_08 .swiper-btn-wrap .swiper-button-next,
.curriculum .sec_08 .swiper-btn-wrap .swiper-container-rtl .swiper-button-prev,
.curriculum .sec_08 .swiper-btn-wrap .swiper-button-prev,
.curriculum .sec_08 .swiper-btn-wrap .swiper-container-rtl .swiper-button-next{
	width: 13px;
	background-size: contain;
}
.curriculum .sec_08 .swiper-btn-wrap .swiper-button-prev,
.curriculum .sec_08 .swiper-btn-wrap .swiper-container-rtl .swiper-button-prev {
	left: 27%;
	right: auto;
}
.curriculum .sec_08 .swiper-btn-wrap .swiper-button-next,
.curriculum .sec_08 .swiper-btn-wrap .swiper-container-rtl .swiper-button-next {
	right: 27%;
	left: auto;
}
.curriculum .quick_consult_box {
	position: relative;
	padding-top: 66px;
}
.curriculum .quick_consult_box._fixed {
	position: fixed;
	width: 100%;
	left: 0;
	bottom: 0;
	z-index: 10;
}
.curriculum .quick_consult_box .bg_box {
	background-color: #FFFFFF;
}
.curriculum .quick_consult_box .quick_consult_btn {
	position: absolute;
	top: 0;
	left: 12%;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0 8px;
	padding: 0 30px;
	/*width: 257px;*/
	height: 66px;
	background-color: #C53B47;
	font-size: 24px;
	font-weight: 400;
	color: #FFFFFF;
	z-index: 10;
}
.curriculum .quick_consult_box .quick_consult_btn img {
	display: none;
}
.curriculum .quick_consult_box._fixed .quick_consult_btn img {
	display: block;
	transform: rotate(180deg);
}
.curriculum .quick_consult_box._fixed.active .quick_consult_btn img {
	transform: rotate(0deg);
}
.curriculum .quick_consult_box:after {
	content: '';
	position: absolute;
	top: 60px;
	left: 0;
	display: block;
	width: 100%;
	height: 6px;
	background-color: #C53B47;
	z-index: 9;
}
.curriculum .quick_consult_box .quick_consult {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background-color: #FFFFFF;
	padding: 74px 0 160px;
	gap: 0 4.825vw;
}
.curriculum .quick_consult_box._fixed .quick_consult {
	padding: 74px 0 120px;
	display: none;
}
.curriculum .quick_consult_box._fixed.active .quick_consult {
	display: flex;
	justify-content: space-between;
}
.curriculum .quick_consult_box .quick_consult .counult_list1,
.curriculum .quick_consult_box .quick_consult .counult_list2 {
	flex: 1;
}
.curriculum .quick_consult_box .quick_consult .counult_list1 {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: center;
	padding-right: 4.825vw;
}
.curriculum .quick_consult_box .quick_consult .counult_list1:after {
	content: '';
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	display: block;
	width: 2px;
	height: 325px;
	background-color: #DDDDDD;
}
.curriculum .quick_consult_box .quick_consult .counult_list1 .form-check2 {
	position: relative;
	flex: 0 0 50%;
	padding: 20px 0;
}
.curriculum .quick_consult_box .quick_consult .counult_list1 .form-check2 input[type="checkbox"] {
	display: none;
}
.curriculum .quick_consult_box .quick_consult .counult_list1 .form-check2 input[type="checkbox"] + label {
	display: inline-flex;
	justify-content: flex-start;
	align-items: center;
	gap: 0 16px;
}
.curriculum .quick_consult_box .quick_consult .counult_list1 .form-check2 input[type="checkbox"] + label .round_icon {
	width: 24px;
	height: 24px;
	border-radius: 30px;
	border: 1px solid #767676;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: all .3s;
}
.curriculum .quick_consult_box .quick_consult .counult_list1 .form-check2 input[type="checkbox"] + label .round_icon:after {
	content: '';
	display: inline-block;
	width: 100%;
	height: 100%;
	background-color: #fff;
	border-radius: 50%;
	transition: all .25s;
}
.curriculum .quick_consult_box .quick_consult .counult_list1 .form-check2 input[type="checkbox"] + label ._txt {
	font-size: 26px;
	font-weight: 700;
	color: #222222;
	cursor: pointer;
}
.curriculum .quick_consult_box .quick_consult .counult_list1 .form-check2 input[type="checkbox"]:checked + label .round_icon {
	background-color: #C53B47;
	border-color: #C53B47;
}
.curriculum .quick_consult_box .quick_consult .counult_list1 .form-check2 input[type="checkbox"]:checked + label .round_icon:after {
	width: 8px;
	height: 8px;
}
.curriculum .quick_consult_box .quick_consult .counult_list2 .form-group2 {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	margin-bottom: 16px;
	width: 100%;
}
.curriculum .quick_consult_box .quick_consult .counult_list2 .form-group2 label {
	display: inline-block;
	width: 103px;
	font-size: 24px;
	font-weight: 700;
	color: #767676;
}
.curriculum .quick_consult_box .quick_consult .counult_list2 .form-group2 .form-input {
	width: 100%;
}
.curriculum .quick_consult_box .quick_consult .counult_list2 .form-group2 .form-input .form-control {
	display: block;
	border: 1px solid #DDDDDD;
	border-radius: 5px;
	width: 100%;
	padding: 17px 24px;
	font-size: 28px;
	font-weight: 700;
	color: #222222;
}
.curriculum .quick_consult_box .quick_consult .counult_list2 .form-group2 .phone-input {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 0 8px;
}
.curriculum .quick_consult_box .quick_consult .counult_list2 .form-check2 input[type="checkbox"] {
	display: none;
}
.curriculum .quick_consult_box .quick_consult .counult_list2 .form-check2 input[type="checkbox"] + label {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	margin-top: 26px;
	margin-bottom: 21px;
	gap: 0 8px;
}
.curriculum .quick_consult_box .quick_consult .counult_list2 .form-check2 input[type="checkbox"] + label .round_icon {
	position: relative;
	display: inline-block;
	width: 32px;
	height: 32px;
	background-color: #FFFFFF;
	border: 1px solid #DDDDDD;
	border-radius: 4px;
	cursor: pointer;
}
.curriculum .quick_consult_box .quick_consult .counult_list2 .form-check2 input[type="checkbox"] + label ._txt {
	font-size: 26px;
	font-weight: 700;
	color: #767676;
	cursor: pointer;
}
.curriculum .quick_consult_box .quick_consult .counult_list2 .form-check2 input[type="checkbox"]:checked + label .round_icon {
	border: none;
}
.curriculum .quick_consult_box .quick_consult .counult_list2 .form-check2 input[type="checkbox"]:checked + label .round_icon:after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 100%;
	background-image: url('/common/img/curriculum/chk_icon.png');
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}
.curriculum .quick_consult_box .quick_consult .counult_list2 .submit_btn {
	background-color: #C53B47;
	display: block;
	width: 100%;
	padding: 22px 0;
	border-radius: 8px;
	text-align: center;
	font-size: 28px;
	font-weight: 700;
	color: #FFFFFF;
}
/* 가맹점 서브페이지 */
.franchise {
	font-family: 'SUIT', sans-serif;
	max-width: 1920px;
	overflow: hidden;
}
.franchise .sec_01 {
	position: relative;
}
.franchise .sec_01 .img_box img {
	max-width: 100%;
}
.franchise .sec_01 .txt_box {
	position: absolute;
	left: 46%;
	top: 60%;
	transform: translate(-50%, -50%);
	min-width: 1222px;
}
.franchise .sec_01 .txt_box p {
	margin-bottom: 90px;
	font-size: 28px;
	font-weight: 400;
	color: #FFFFFF;
}
.franchise .sec_01 .txt_box h3 {
	font-size: 105px;
	font-weight: 800;
	color: #FFFFFF;
}
.franchise .sec_02 {
	background-color: #F9F9F9;
	padding: 170px 0 180px;
}
.franchise .sec_02 .tit_box {
	margin-bottom: 80px;
	text-align: center;
}
.franchise .sec_02 .tit_box h3 {
	margin-bottom: 38px;
	font-size: 70px;
	font-weight: 800;
	color: #222222;
}
.franchise .sec_02 .tit_box p {
	font-size: 24px;
	font-weight: 400;
	color: #222222;
}
.franchise .sec_02 .cont_box ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 0 40px;
}
.franchise .sec_02 .cont_box ul li {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	max-width: 320px;
	padding: 73.5px 0;
	overflow: hidden;
	border-radius: 30px;
	background-color: #FFFFFF;
	box-shadow: 4px 4px 16px 0 rgba(0, 0, 0, 0.06);
}
.franchise .sec_02 .cont_box ul li .img_box {
	margin-bottom: 13px;
}
.franchise .sec_02 .cont_box ul li .img_box img {
	max-width: 100%;
}
.franchise .sec_02 .cont_box ul li span {
	display: block;
	font-size: 32px;
	font-weight: 700;
	color: #222222;
}
.franchise .sec_03 {
	padding: 173px 0 90px;
}
.franchise .sec_03 .tit_box {
	margin-bottom: 80px;
	text-align: center;
}
.franchise .sec_03 .tit_box h3 {
	font-size: 70px;
	font-weight: 800;
	color: #222222;
}
.franchise .sec_03 .tit_box .logo_img_box {
	margin-top: 20px;
}
.franchise .sec_03 .tit_box .logo_img_box img {
	max-width: 100%;
}
.franchise .sec_03 .cont_box ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 30px;
}
.franchise .sec_03 .cont_box ul li {
	width: calc(50% - 30px);
}
.franchise .sec_03 .cont_box ul li img {
	display: block;
	max-width: 100%;
}
.franchise .sec_04 {
	padding: 83px 0 180px;
}
.franchise .sec_04 .tit_box {
	margin-bottom: 80px;
	text-align: center;
}
.franchise .sec_04 .tit_box h3 {
	font-size: 70px;
	font-weight: 800;
	color: #222222;
}
.franchise .sec_04 .tit_box .logo_img_box {
	margin-top: 20px;
}
.franchise .sec_04 .tit_box .logo_img_box img {
	max-width: 100%;
}
.franchise .sec_04 .cont_box ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 40px;
}
.franchise .sec_04 .cont_box ul li {
	flex: 1;
}
.franchise .sec_04 .cont_box ul li .img_box {
	margin-bottom: 24px;
}
.franchise .sec_04 .cont_box ul li .img_box img {
	display: block;
	margin: 0 auto;
	max-width: 100%;
}
.franchise .sec_04 .cont_box ul li span {
	display: block;
	text-align: center;
	font-size: 32px;
	font-weight: 500;
	color: #222222;
}
.franchise .sec_05 {
	background: url('/common/img/studentFavor/franchise/sec-05-bg.png') no-repeat #111;
	background-position: left -140px bottom -120px;
	padding: 200px 0;
}
.franchise .sec_05 .cont_box {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	flex-direction: column;
	gap: 80px;
}
.franchise .sec_05 .cont_box .cont_list h3 {
	font-size: 70px;
	font-weight: 700;
	color: #FFFFFF;
	margin-bottom: 40px;
}
.franchise .sec_05 .cont_box .cont_list {
	position: relative;
}
.franchise .sec_05 .cont_box .cont_list .txt_box {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background-color: #fff;
	width: 549px;
	padding: 40px;
	padding-top: 36px;
}
.franchise .sec_05 .cont_box .cont_list .img_box {
	text-align: right;
}
.franchise .sec_05 .cont_box .cont_list .img_box img {
	margin-left: auto;
}
.franchise .sec_05 .cont_box .cont_list span {
	display: block;
	/*margin-bottom: 10px;*/
	font-size: 40px;
	font-weight: bold;
	color: #FFFFFF;
	line-height:1.75;
	color: #222;
	letter-spacing: -1.333px;
	font-family: "SUIT", "sans-serif";
}
.franchise .sec_05 .cont_box .cont_list p {
	font-size: 28px;
	font-weight: 400;
	color: #313131;
	line-height: 1.428;
}
.franchise .sec_06 {
	padding: 40px 0;
	background-image: url('/common/img/studentFavor/franchise/sec-06-bg.jpg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}
.franchise .sec_06 p {
	margin-bottom: 24px;
	text-align: center;
	font-size: 28px;
	font-weight: 400;
	color: #FFFFFF;
}
.franchise .sec_06 .franchise_btn {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 10px 26px;
	border: 1px solid #FFFFFF;
	border-radius: 99px;
	max-width: 178px;
	margin: 0 auto;
}
.franchise .sec_06 .franchise_btn span {
	font-size: 24px;
	font-weight: 700;
	color: #FFFFFF;
}
.franchise .sec_06 .franchise_btn img {
	max-width: 100%;
}

/* 취업 서브페이지 */
.employment {
	font-family: "SUIT", sans-serif;
	max-width: 1920px;
	overflow: hidden;
	margin: 0 auto;
}
.employment .sec_01 {
	position: relative;
	/*height: 100%;*/
}
.employment .sec_01 .video_box {
	position: relative;
	width: 100%;
	padding-top: 56.229%;
}
.employment .sec_01 .video_box:before {
	content: "";
	position:absolute;
	top:0;
	left: 0;
	width: 100%;
	height:100%;
	background-color: rgba(0,0,0,.6);
	z-index: 1;
}
.employment .sec_01 .video_box > video {
	position:absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 100%;
}
.employment .sec_01 .img_box {
	/*height: 100%;*/
}
.employment .sec_01 .img_box img {
	max-width: 100%;
}
.employment .sec_01 .txt_box {
	position: absolute;
	top: 72%;
	left: 30.5%;
	transform: translate(-50%, -50%);
	display: block;
	z-index: 2;
}
.employment .sec_01 .txt_box p {
	margin-bottom: 89px;
	font-size: 28px;
	font-weight: 400;
	color: #FFFFFF;
}
.employment .sec_01 .txt_box h3 {
	margin-bottom: 20px;
	font-size: 105px;
	font-weight: 800;
	color: #FFFFFF;
}
.employment .sec_01 .txt_box .cont_btn_box {}
.employment .sec_01 .txt_box .cont_btn_box ul {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 0 15px;
}
.employment .sec_01 .txt_box .cont_btn_box ul li:first-child {
	margin-right: 15px;
}
.employment .sec_01 .txt_box .cont_btn_box ul li:first-child span {
	position: relative;
	padding-left: 10px;
	font-size: 28px;
	font-weight: 400;
	color: #FFFFFF;
}
.employment .sec_01 .txt_box .cont_btn_box ul li:first-child span:before {
	content: "";
	width:2px;
	height: 16px;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	position: absolute;
	background-color: #fff;
}
.employment .sec_01 .txt_box .cont_btn_box ul li:nth-child(2),
.employment .sec_01 .txt_box .cont_btn_box ul li:nth-child(3) {
	padding: 0;
	border:none;
	border-radius: 0;
}
.employment .sec_01 .txt_box .cont_btn_box ul li:nth-child(2) span,
.employment .sec_01 .txt_box .cont_btn_box ul li:nth-child(3) span {
	font-size: 24px;
	font-weight: 700;
	color: #FFFFFF;
}
.employment .sec_01 .txt_box .cont_btn_box ul li > a {
	display: inline-block;
	background-color: #222;
	border-radius: 31px;
	color: #fff;
	font-size: 24px;
	font-weight: bold;
	padding: 15px 0;
	width: 172px;
	text-align: center;
}
.employment .sec_02 {
	padding: 180px 0;
}
.employment .sec_02 .flex_box {
	display: flex;
	justify-content: normal;
	align-items: center;
	gap: 140px;
}
.employment .sec_02 .flex_box > div:first-child {
	width: 653px;
}
.employment .sec_02 .flex_box:first-child {
	margin-bottom: 160px;
}
.employment .sec_02 .txt_box {
	padding-left: 0;
	min-width: initial;
}
.employment .sec_02 .txt_box h3 {
	margin-bottom: 80px;
	font-size: 70px;
	font-weight: 800;
	color: #222222;
}
.employment .sec_02 .txt_box p {
	margin-bottom: 62px;
	font-size: 28px;
	font-weight: 400;
	color: #313131;
}
.employment .sec_02 .txt_box p:last-child {
	margin-bottom: 0;
}
.employment .sec_02 .txt_box span {
	display: inline-block;
	margin-bottom: 70px;
	font-size: 28px;
	font-weight: 800;
	color: #C53B47;
	font-family: "Mulish", "sans-serif";
}
.employment .sec_02 .img_box {
	max-width: initial;
	max-height: initial;
	overflow: hidden;
	border-radius: 30px;
}
.employment .sec_02 .img_box img {
	max-width: 100%;
	width: 100%;
}
.employment .video-sec {
	padding: 180px 0;
	background-color: #F9F9F9;
}
.employment .video-box {
	position: relative;
	padding-top: 56.164%;
}
.employment .video-box > iframe {
	position: absolute;
	top:0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
}
.employment .sec_03 {
	padding: 173px 0 580px;
	background-image: url('/common/img/studentFavor/employment/sec-03-bg.jpg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}
.employment .sec_03 h3 {
	margin-bottom: 60px;
	font-size: 70px;
	font-weight: 800;
	color: #FFFFFF;
}
.employment .sec_03 p {
	font-size: 28px;
	font-weight: 400;
	color: #FFFFFF;
}
.employment .sec_04 {
	padding: 174px 0 180px;
}
.employment .sec_04 .tit_box {
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-bottom: 81px;
}
.employment .sec_04 .tit_box h3 {
	font-size: 60px;
	font-weight: 800;
	color: #222222;
}
.employment .sec_04 .pagi_wrap {
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 0 20px;
}
.employment .sec_04 .pagi_wrap .swiper-button-prev {
	background-image: url('/common/img/studentFavor/employment/sec-04-prev.png');
	background-size: 80px 80px;
	width: 80px;
	height: 80px;
	position: relative;
	margin-top: 0;
	transform: none;
	left: 0;
}
.employment .sec_04 .pagi_wrap .swiper-button-next {
	background-image: url('/common/img/studentFavor/employment/sec-04-next.png');
	background-size: 80px 80px;
	width: 80px;
	height: 80px;
	position: relative;
	margin-top: 0;
	transform: none;
	right: 0;
}
.employment .sec_04 .classSwiper {
	position: relative;
	max-height: 260px;
}
.employment .sec_04 .classSwiper ul {
	max-height: 260px;
}
.employment .sec_04 .classSwiper li {
	overflow: hidden;
	max-height: 260px;
	border-radius: 30px;
}
.employment .sec_04 .classSwiper li img {
	display: block;
	max-width: 100%;
	height: 100%;
}
.employment .sec_04 .cont_inner {
	overflow: hidden;
}
.employment .sec_04 .cont_inner .cont {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0 20px;
}
.employment .sec_04 .cont_inner.contTop {
	margin-bottom: 18px;
}
.employment .sec_04 .cont_inner .cont .item .img-wrap {
	position: relative;
	overflow: hidden;
	width: 266px;
	height: 266px;
	border-radius: 20px;
	background-color: rgba(0 ,0, 0, 0.3);
}
.employment .sec_04 .cont_inner .cont .item .img-wrap img {
	display: block;
	width: 100%;
}


.pg_density .notice .pg-tit {
	padding-bottom: 50px;
}
.pg_density .thumb-box img {
	position: relative;
	width: 100%;
	height: auto !important;
}
.pg_density .density-list-wrap {
	padding: 30px 0;
}
.pg_density .density-list-wrap .density-list {
	display: flex;
	flex-wrap: wrap;
	gap: 50px 30px;
}
.pg_density .density-list-wrap .density-list li {
	flex: 1;
	max-width: calc(25% - 90px/4);
	min-width: calc(25% - 90px/4);
	cursor: pointer;
}
.pg_density .density-list-wrap .density-list li.no-data {
	max-width: 100%;
	min-width: 100%;
	text-align: center;
	font-size: 24px;
	font-weight: bold;
	padding: 60px 0;
	cursor: auto;
}
.pg_density .density-list-wrap .density-list > li:hover .thumb-box {
	filter: brightness(0.9);
}
.pg_density .density-list-wrap .density-list .density-box .thumb-box {
	aspect-ratio: 465 / 450;
	border-radius: 10px;
	overflow: hidden;
	background: #eee;
	display: flex;
	align-items: center;
	justify-content: center;
}
.pg_density .density-list-wrap .density-list .density-box .thumb-box {
	width: 100%;
}
.pg_density .density-list-wrap .density-list .density-box .txt-title {
	margin-top: 5px;
	font-size: 24px;
	font-weight: bold;
	color: #222222;
	display: -webkit-box;
	text-overflow: ellipsis;
	overflow: hidden;
	word-break: break-word;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}
.pg_density .density-swiper-wrap {
	overflow: hidden;
	padding-bottom: 130px;
}
.pg_density .density-swiper-wrap .density-swiper {
	position: relative;
	width: 465px;
	height: 450px;
	margin: 0 auto;
}
.pg_density .density-swiper-wrap .density-swiper .swiper-slide {
	/*transform: scale(0.8);*/
	width: 395px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	pointer-events: none;
	position: relative;
	transition: transform .3s;
}
.pg_density .density-swiper-wrap .density-swiper .swiper-slide .view-more {
	opacity: 0;
	position: absolute;
	left: 28px;
	bottom: 24px;
	padding-left: 20px;
	padding-bottom: 20px;
	transition: opacity .3s;
}
.pg_density .density-swiper-wrap .density-swiper .swiper-slide .view-more::before {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 60px;
	height: 60px;
	background-color: #C53B47;
	border: 1px solid #c53b47;
	border-radius: 100%;
	transition: background-color .3s;
}
.pg_density .density-swiper-wrap .density-swiper .swiper-slide .view-more span {
	z-index: 1;
	position: relative;
	font-size: 19px;
	font-weight: 500;
	color: #fff;
	transition: color .3s;
	text-shadow: 0 0 5px #999;
}
.pg_density .density-swiper-wrap .density-swiper .swiper-slide:hover .view-more::before {
	background-color: #fff;
}
.pg_density .density-swiper-wrap .density-swiper .swiper-slide:hover .view-more span {
	color: #C53B47;
}
.pg_density .density-swiper-wrap .density-swiper .swiper-slide.prev { margin-right: 35%; margin-left: -35%; }
.pg_density .density-swiper-wrap .density-swiper .swiper-slide.next { margin-right: -35%; margin-left: 35%; }

.pg_density .density-swiper-wrap .density-swiper .swiper-slide.swiper-slide-active {
	transform: scale(1.275);
	cursor: pointer;
	pointer-events: auto;
	margin: 0;
}
.pg_density .density-swiper-wrap .density-swiper .swiper-slide.swiper-slide-active .view-more {
	opacity: 1;
}
.pg_density .density-swiper-wrap .density-swiper .swiper-slide .thumb-box {
	position: relative;
	width: 365px;
	aspect-ratio: 465 / 450;
	border-radius: 20px;
	background-color: #eee;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}
.pg_density .density-swiper-wrap .density-swiper .swiper-slide .thumb-box img {
	width: 100%;
}
.pg_density .density-swiper-wrap .swiper-container-horizontal>.swiper-pagination-bullets {
	bottom: -50px;
}
.pg_density .density-swiper-wrap .swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	margin: 0 10px;
}
.pg_density .swiper-pagination-bullet {
	opacity: 1;
	background: #E9E9E9;
}
.pg_density .swiper-pagination-bullet-active {
	background: #C53B47;
}
.pg_density .swiper-button-next {
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid #EEEEEE;
	border-radius: 100%;
	width: 60px;
	height: 60px;
	background: #fff;
	right: -90px;
}
.pg_density .swiper-button-next::after {
	content: '';
	display: inline-block;
	width: 14px;
	height: 14px;
	border-right: 1px solid #000;
	border-bottom: 1px solid #000;
	transform: rotate(-45deg);
	margin-right: 5px;
}
.pg_density .swiper-button-prev {
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid #EEEEEE;
	border-radius: 100%;
	width: 60px;
	height: 60px;
	background: #fff;
	left: -90px;
}
.pg_density .swiper-button-prev::after {
	content: '';
	display: inline-block;
	width: 14px;
	height: 14px;
	border-left: 1px solid #000;
	border-bottom: 1px solid #000;
	transform: rotate(45deg);
	margin-left: 5px;
}

/* Commu-수강생포트폴리오 */
.studentW .pg-tit::before,
.studentW .pg-tit::after {
	content: none;
}
.studentW .board-view-wrap {
	padding-top: 0;
}
.studentW .thumbnail {
	background: url('/common/img/commu/student-bg.jpg') no-repeat center / cover !important;
}
.gallery .board-list-wrap > .minframe {
	padding: 0;
}
.gallery .img-box img {
	min-width: inherit;
	min-height: inherit;
	width: auto;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	right: auto;
	bottom: auto;
}
.gallery .board-list-wrap {
	padding-top: 0;
}
.gallery .event-item .img-box {
	width: 360px;
	height: 360px;
	margin: 0;
	border-radius: 10px;
	filter: grayscale(1);
	margin: auto;
}
.studentW .event-item .img-box {
	filter: grayscale(0);
}
.gallery .event-list li {
	margin-bottom: 60px;
}
.gallery .event-item .tit {
	font-size: 24px;
	font-weight: 700;
	color: #222222;
}
.gallery .event-item .date {
	color: #999999;
	font-size: 18px;
	font-family: 'Roboto',sans-serif;
}
.gallery .more-btn-wrap .btn-more {
	width: 128px;
	height: 40px;
	border: 1px solid #000;
	color: #000;
	border-radius: 20px;
	font-size: 16px;
	font-weight: 600;
	transition: all 0.2s ease;
}
.gallery .more-btn-wrap .btn-more:hover {
	background: #000;
	color: #fff;
}
.gallery .board-view-wrap {
	padding-top: 0;
	padding-bottom: 0;
}

.academy #section1 {
	position:relative;
}
.academy #section1 .cont_box {
	position:absolute;
	bottom:163px;
	left: 150px;
	z-index:2;
}
.academy #section1 .cont_box > p {
	font-size: 28px;
	font-weight: 700;
	color: #FFFFFF;
	line-height: 1.607;
}
.academy #section1 .cont_box > span {
	display: block;
	margin-top: 40px;
	font-size: 30px;
	font-weight: 400;
	color: #FFFFFF;
	font-family: "Mulish", sans-serif;
}
.academy #section1 .cont_box > .img_box {
	margin-top: 70px;
}

.academy #section1 .video_box {
	position: relative;
	width: 100%;
	padding-top: 56.229%;
}

.academy #section1 .video_box:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,.6);
	z-index: 1;
}

.academy #section1 .video_box > video {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 100%;
}
/* 자유게시판 등록 페이지 */
.write_page .write_tit {
	margin-bottom: 47px;
	padding-bottom: 16px;
	border-bottom: 2px solid #C53B47;
	font-size: 32px;
	font-weight: 700;
	color: #313131;
	font-family: "SUIT", sans-serif;
}
.write_page .write_tit .regist_btn_wrap {
	display: none;
}
.write_page .custom-select-box {
	max-width: 498px;
}
.write_page .custom-select-box .select-txt {
	background-color: #FFFFFF;
	border: 1px solid #DDDDDD;
}
.write_page .write_wrap {
	padding-bottom: 263px;
	display: flex;
	flex-direction: column;
	gap: 28px;
}
.write_page .write_wrap .title {
	width: 100%;
	height: 86px;
	background-color: #FBFBFB;
	border: none;
	border-radius: 18px;
	padding: 27px 25px;
}
.write_page .write_wrap .title.warning {
	border: 1px solid red;
}
.write_page .write_wrap .title::placeholder {
	font-size: 24px;
	font-weight: 400;
	color: #CCCCCC;
	font-family: "SUIT", sans-serif;
}
.write_page .regist_btn_wrap {
	text-align: right;
}
.write_page .regist_btn_wrap .cancel {
	display: inline-block;
	background-color: #999999;
	border-radius: 30px;
	width: 176px;
	padding: 13px 0;
	text-align: center;
	font-size: 18px;
	font-weight: 400;
	color: #FFFFFF;
	font-family: "SUIT", sans-serif;
}
.write_page .regist_btn_wrap .success {
	display: inline-block;
	background-color: #C53B47;
	border-radius: 30px;
	width: 176px;
	padding: 13px 0;
	text-align: center;
	font-size: 18px;
	font-weight: 400;
	color: #FFFFFF;
	font-family: "SUIT", sans-serif;
}
.cke_chrome {
	overflow: hidden;
	border-radius: 8px;
	border: 1px solid #DDDDDD !important;
}
.cke_bottom {
	display: none !important;
}

.regist_pop {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(49, 49, 49, 0.89);
	z-index: 10000;
	display: none;
	justify-content: center;
	align-items: center;
}
.regist_pop.on {
	display: flex;
}
.regist_pop .pop_wrap {
	position: relative;
	background-color: #ffffff;
	width: 100%;
	max-width: 580px;
	padding: 19px 0 45px;
	border: 1px solid #DDDDDD;
	border-radius: 8px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 30px;
}
.regist_pop .pop_wrap .close {
	position: absolute;
	top: 25px;
	right: 25px;
	display: block;
	width: 20px;
	height: 20px;
	cursor: pointer;
}
.regist_pop .pop_wrap .ico_wrap {
	max-width: 62px;
}
.regist_pop .pop_wrap p {
	font-size: 30px;
	font-weight: 500;
	color: #222222;
}
.regist_pop .pop_wrap p span {
	font-weight: 700;
	color: #C53B47;
}
.regist_pop .pop_wrap .write_cancel {
	background-color: #FFFFFF;
	border: 1px solid #C53B47;
	border-radius: 25px;
	padding: 12px 0;
	width: 100%;
	max-width: 176px;
	font-size: 18px;
	font-weight: 400;
	color: #C53B47;
	font-family: "SUIT", sans-serif;
}

/* 상담신청 리뉴얼 20250404 */
.sec-contact-rolling {
	position: relative;
	overflow: hidden;
	background: #222;
	padding: 45px 0 115px;
	margin-bottom: 75px;
}
.sec-contact-rolling::before {
	z-index: 4;
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #000;
	opacity: 1;
	pointer-events: none;
	transition: all 1s ease-in;
}
.sec-contact-rolling.active::before {
	opacity: 0;
}
.sec-contact-rolling .rolling-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.sec-contact-rolling .rolling-bg-txt {
	z-index: 1;
	position: absolute;
	left: 0;
	bottom:0;
	width: 4672px;
	aspect-ratio: 4672 / 82;
	background: url('/common/img/contact/rolling/brow_text.png') repeat center / contain;
	animation: loop_rolling 60s infinite linear;
}
.sec-contact-rolling .rolling-bg::after {
	content: '';
	z-index: 2;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url('/common/img/contact/rolling/brow_bg.png') no-repeat center / cover;
	opacity: .5;
}
.sec-contact-rolling .subframe {
	z-index: 3;
	position: relative;
	max-width: 1520px;
}
.sec-contact-rolling .rolling-bg-swiper {
	position: absolute;
	opacity: .25;
	width: 100%;
	height: 100%;
}
.sec-contact-rolling .rolling-bg-swiper img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.sec-contact-rolling .rolling-img-swiper {
	min-width: 643px;
	width: 643px;
	aspect-ratio: 643 / 503;
	overflow: hidden;
	border-radius: 8px;
}
.sec-contact-rolling .rolling-img-swiper img {
	width: 100%;
}
.sec-contact-rolling .rolling-box {
	display: flex;
	align-items: center;
	width: 100%;
	gap: 80px;
	justify-content: space-between;
}
.rolling-box .rolling-title {
	font-family: "SUIT";
	color: #fff;
	font-weight: 400;
	font-size: 32px;
	line-height: 40px;
}
.rolling-title .__sub-title {
	position: relative;
	margin-bottom: 61px;
	overflow: hidden;
}
.rolling-title .__title {
	position: relative;
	font-size: 84px;
	line-height: 105px;
	margin-bottom: 27px;
	overflow: hidden;
}
.rolling-title .__title strong {
	color: #C53B47;
	font-weight: 800;
}
.rolling-title .__sub-text {
	position: relative;
	overflow: hidden;
}
.rolling-title .__current {
	position: relative;
	letter-spacing: -0.05em;
	transform: translateY(100%);
	opacity: 0;
	transition: all .4s;
}
.rolling-title .__current.active {
	transform: translateY(0);
	opacity: 1;
}
.rolling-title .__sub-text .__current{
	letter-spacing: -0.03em;
}
.rolling-title .__sub-title .__current {
	display: inline-block;
	padding-top: 10px;
	transform: translateY(-100%);
	opacity: 0;
}
.rolling-title .__sub-title .__current::before {
	content: '';
	position: absolute;
	top: 0;
	left: 4px;
	width: calc(100% - 6px);
	height: 1px;
	background: #fff;
	transform: translateX(-100%);
	opacity: 0;
	transition: all .4s .5s;
}
.rolling-title .__sub-title .__current.active {
	transform: translateY(0);
	opacity: 1;
}
.rolling-title .__sub-title .__current.active::before {
	transform: translateX(0);
	opacity: 1;
}

@keyframes loop_rolling {
	0% {
		background-position-x: 0;
	}
	100% {
		background-position-x: -4672px;
	}
}

@media screen and (min-width: 1921px){
	.curriculum .sec_03 .cont_box .txt_box span {
		font-size: 50px;
	}
	.curriculum .sec_03 .cont_box .txt_box p {
		font-size: 28px;
	}
	.curriculum .sec_03 .cont_box .curriSwiper .img_box {
		max-width: none;
	}
}

@media screen and (max-width: 1670px){
	/* 교육 과정 */
	.curriculum .sec_05 .cont_box .cont_list {
		padding-right: 20px;
	}

	/* 상담 신청 리뉴얼 20250404*/
	.sec-contact-rolling .rolling-box {
		gap: 40px;
	}
	.sec-contact-rolling .rolling-img-swiper {
		min-width: 580px;
		width: 580px;
	}
	.rolling-box .rolling-title {
		font-size: 28px;
		line-height: 35px;
	}
	.rolling-title .__sub-title {
		margin-bottom: 55px;
	}
	.rolling-title .__title {
		font-size: 78px;
		line-height: 95px;
		margin-bottom: 25px;
	}
}

@media screen and (max-width: 1440px){
	/* 브로우 소개 */
	.brow_intro .sec_06 .cont_box ul li {
		flex: none;
	}

	/* 엠버서더 */
	.ambassador .sec-01 .info_txt_box {
		top: 30px;
		right: 0;
		left: auto;
	}
	.ambassador .sec-01 .txt_box {
		left: 50%;
		transform: translateX(-50%);
		text-align: center;
	}
	.ambassador .sec-02 .flex_box2 {
		flex-direction: column;
	}
	.ambassador .sec-02 .flex_box2 .txt_box3 {
		width: 100%;
	}
	.ambassador .sec-02 .flex_box2 .txt_box3 .color_txt_box {
		position: absolute;
		top: 0;
		right: 0;
		display: block;
		width: auto;
	}

	/* SMP */
	.academy #section2 ul > li {
		flex-wrap: wrap;
		flex-direction: column;
	}
	.academy #section2 ul > li:nth-child(2) {
		flex-direction: column-reverse;
	}
	.academy #section2 ul > li:first-child .txt-box,
	.academy #section2 ul > li:nth-child(2) .txt-box,
	.academy #section2 ul > li:last-child .txt-box {
		min-width: auto;
	}
	.academy #section3 .btn-wrap {
		width: 45%;
	}
	.academy #section5 .cont-step-wrap .right-cont-box {
		max-width: 552px;
		max-height: 552px;
		right: -14.616%;
		bottom: -50px;
	}
	.academy #section5 .cont-step-wrap .right-cont-box > .inbox > strong {
		margin: 40px 0 12px;
		font-size: 36px;
	}
	.academy #section5 .cont-step-wrap .right-cont-box > .inbox > p {
		font-size: 16px;
	}

	/* 반영구 */
	.semiPerm .sec-01 {
		padding: 227px 75px 82px;
	}
	.semiPerm .sec-02 .cont_list .profile_txt .txt_img_box {
		margin-bottom: 60px;
	}
	.semiPerm .sec-03 .cont_list .txt_box {
		min-width: 522px;
	}
	.semiPerm .sec-03 .cont_list .img_box img {
		max-width: 100%;
	}
	.semiPerm .sec-04 .cont_list {
		margin-bottom: 125px;
		gap: 0 20px;
	}
	.semiPerm .sec-04 .cont_list .txt_box {
		min-width: 547px;
	}
	.semiPerm .sec-04 .img_box img {
		max-width: 100%;
	}

	/* 교육과정 */
	.curriculum .sec_03 .cont_box .txt_box {
		min-width: 310px;
	}
	.curriculum .sec_03 .cont_box .txt_box span {
		margin-bottom: 26px;
		font-size: 40px;
	}
	.curriculum .sec_03 .cont_box .txt_box p {
		font-size: 18px;
	}
	.curriculum .sec_06 .tit-box .tit {
		font-size: 4.15vw;
	}
	.curriculum .sec_06 .cont-ul > li img {
		max-width: 100%;
	}
	.curriculum .sec_06 .cont-ul > li.cont-list .cont-tit {
		font-size: 2.42vw;
	}
	.curriculum .sec_06 .cont-ul > li.cont-list .cont-txt {
		font-size: 1.66vw;
	}
	.curriculum .sec_08 .swiper-btn-wrap .swiper-button-prev,
	.curriculum .sec_08 .swiper-btn-wrap .swiper-container-rtl .swiper-button-prev {
		left: 22%;
	}
	.curriculum .sec_08 .swiper-btn-wrap .swiper-button-next,
	.curriculum .sec_08 .swiper-btn-wrap .swiper-container-rtl .swiper-button-next {
		right: 22%;
	}
	.curriculum .quick_consult_box .quick_consult .counult_list1 .form-check2 input[type="checkbox"] + label {
		gap: 0 1.1vw;
	}
	.curriculum .quick_consult_box .quick_consult .counult_list1 .form-check2 input[type="checkbox"] + label ._txt {
		font-size: 1.8vw;
	}
	.curriculum .quick_consult_box .quick_consult .counult_list2 .form-check2 input[type="checkbox"] + label ._txt {
		font-size: 1.8vw;
	}

	/* 가맹점 */
	.franchise .sec_01 .txt_box {
		min-width: auto;
		left: 50px;
		top: auto;
		bottom: 12%;
		transform: none;
	}
	.franchise .sec_01 .txt_box p {
		margin-bottom: 80px;
		font-size: 1.95vw;
	}
	.franchise .sec_01 .txt_box h3 {
		font-size: 7.3vw;
	}

	/* 취업 */
	.employment .sec_01 .txt_box {
		left: 50px;
		top: auto;
		bottom: 12%;
		transform: none;
	}
	.employment .sec_02 .txt_box span {
		font-size: 1.95vw;
	}
	.employment .sec_02 .txt_box h3 {
		font-size: 4.87vw;
	}

	/* 상담 신청 리뉴얼 20250404*/
	.sec-contact-rolling .rolling-img-swiper {
		min-width: 530px;
		width: 530px;
	}
	.rolling-title .__title {
		font-size: 66px;
		line-height: 80px;
	}
}

@media screen and (max-width: 1280px){
	/* 교육과정 */
	.curriculum .type_0,
	.curriculum .type_1,
	.curriculum .type_2,
	.curriculum .type_3,
	.curriculum .type_4,
	.curriculum .type_5,
	.curriculum .type_6,
    .curriculum .type_7 {
		width: calc(100% - 199px);
	}
	.curriculum .curri_scroll_nav {
		padding: 110px 20px 0 20px;
		height: 660px;
		width: 199px;
		min-width: 199px;
	}
	.curriculum .curri_scroll_nav li {
		font-size: 14px;
	}
	.curriculum .curri_scroll_nav li span {
		padding: 14px 0 14px 16px;
	}
	.curriculum .sec_03 {
		padding: 100px 0 60px;
	}
	.curriculum .sec_03 .tit_box {
		padding-bottom: 60px;
		margin: 0 auto 120px;
		left: 50%;
	}
	.curriculum .sec_03 .tit_box h3 {
		font-size: 60px;
	}
	.curriculum .sec_03 .cont_box .curriSwiper .img_box {
		margin-bottom: 10px;
	}
	.curriculum .sec_03 .cont_box .curriSwiper span {
		font-size: 20px;
	}
	.curriculum .sec_03 .cont_box .curriSwiper p {
		font-size: 28px;
	}
	.curriculum .sec_03 .cont_box .txt_box .pagi_wrap {
		width: 170px;
		height: 70px;
	}
	.curriculum .sec_03 .cont_box .txt_box .pagi_wrap .swiper-button-prev {
		width: 70px;
		height: 70px;
		background-size: cover;
	}
	.curriculum .sec_03 .cont_box .txt_box .pagi_wrap .swiper-button-next {
		width: 70px;
		height: 70px;
		background-size: cover;
	}
	.curriculum .sec_04 {
		padding: 60px 0;
	}
	.curriculum .sec_04 .tit_box span {
		font-size: 34px;
	}
	.curriculum .sec_04 .tit_box h3 {
		font-size: 60px;
	}
	.curriculum .sec_05 {
		padding: 60px 0;
	}
	.curriculum .sec_05 .tit_box {
		margin-bottom: 50px;
	}
	.curriculum .sec_05 .tit_box h3 {
		margin-bottom: 10px;
		font-size: 60px;
	}
	.curriculum .sec_05 .tit_box .sub_txt_box {
		margin-bottom: 15px;
	}
	.curriculum .sec_05 .tit_box .sub_txt_box span {
		font-size: 32px;
	}
	.curriculum .sec_05 .tit_box .sub_txt_box span .gray_text {
		font-size: 32px;
	}
	.curriculum .sec_05 .tit_box .sub_flex_txt_box {
		gap: 9px;
		margin-bottom: 60px;
	}
	.curriculum .sec_05 .tit_box .sub_flex_txt_box .red_color_txt {
		font-size: 16px;
	}
	.curriculum .sec_05 .tit_box .sub_txt {
		font-size: 20px;
	}
	.curriculum .sec_05 .cont_box .cont_list .curri_table tbody tr.table_tit th {
		padding: 16px 0;
		font-size: 22px;
	}
	.curriculum .sec_05 .cont_box .cont_list .curri_table tbody tr.table_head th {
		padding: 9px 36px;
		font-size: 22px;
	}
	.curriculum .sec_05 .cont_box .cont_list .curri_table tbody tr.table_body td {
		padding: 20px 36px;
		font-size: 20px;
	}
	.curriculum .sec_06 {
		padding: 100px 0;
	}
	.curriculum .sec_08 {
		padding: 87px 0 80px;
	}
	.curriculum .sec_08 .tit_box {
		margin-bottom: 50px;
	}
	.curriculum .sec_08 .tit_box h3 {
		margin-bottom: 20px;
		font-size: 60px;
	}
	.curriculum .sec_08 .tit_box .sub_txt {
		font-size: 20px;
	}

	/* 가맹점 */
	.franchise .sec_05 .cont_box .cont_list .img_box img {
		width: 80%;
		margin-left: auto;
	}
	.franchise .sec_05 .cont_box .cont_list .txt_box {
		max-width: 349px;
		width: 100%;
		padding: 30px;
	}
	.franchise .sec_05 .cont_box .cont_list span {
		font-size: 30px;
	}
	.franchise .sec_05 .cont_box .cont_list p {
		font-size: 18px;
	}

	/* 취업 */
	.employment .sec_02 .txt_box span {
		margin-bottom: 35px;
		font-size: 14px;
	}
	.employment .sec_02 .txt_box h3 {
		margin-bottom: 40px;
		font-size: 35px;
	}
	.employment .sec_02 .txt_box p {
		margin-bottom: 31px;
		font-size: 14px;
	}
	.employment .sec_02 .flex_box {
		gap: 70px;
	}
	.employment .sec_02 .flex_box > div:first-child {
		width: auto;
	}

	/* 수강생 포트폴리오 */
	.studentW .event-item .img-box {
		width: 270px;
		height: 270px;
	}
	.studentW .pagi-wrap {
		margin: 50px 0 90px;
	}

	/* 상담 신청 리뉴얼 20250404*/
	.sec-contact-rolling .rolling-img-swiper {
		min-width: 480px;
		width: 480px;
	}
	.rolling-box .rolling-title {
		font-size: 26px;
		line-height: 34px;
	}
	.rolling-title .__title {
		font-size: 60px;
		line-height: 72px;
	}
}

@media screen and (max-width: 1180px){
	/* SMP */
	.academy #section1 .inner-box {
		position: relative;
	}
	.academy #section1 .cont_box {
		bottom: 82px;
		left: 75px;
	}
	.academy #section1 .cont_box > .img_box img {
		max-width: 100%;
		max-height: 65px;
	}
	.academy #section4 .cont-wrap > ul > li {
		max-width: calc(50% - 29px / 2);
		min-width: calc(50% - 29px / 2);
	}
	.academy #section5 .cont-bt-wrap > div {
		flex-wrap: wrap;
		gap: 30px;
	}
	.academy #section5 .cont-bt-wrap > div:first-child {
		justify-content: center;
		margin-bottom: 75px;
	}
	.academy #section5 .cont-bt-wrap > div:last-child {
		justify-content: center;
	}

	/* 교육과정 */
	.curriculum .sec_01 .txt_box span {
		margin-bottom: 28px;
		font-size: 30px;
	}
	.curriculum .sec_01 .txt_box span b {
		font-size: 90px;
	}
	.curriculum .sec_01 .txt_box p {
		font-size: 18px;
	}
	.curriculum .sec_02 .video_txt {
		font-size: 8.46vw;
	}

	/* 삭발디자인 */
	.pg_density .density-list-wrap .density-list li {
		max-width: calc(33.333% - 60px/ 3);
		min-width: calc(33.333% - 60px/ 3);
	}

	/* 가맹점 */
	.franchise .sec_02 .cont_box ul {
		flex-wrap: wrap;
		gap: 40px;
	}
	.franchise .sec_02 .cont_box ul li {
		flex: 0 0 320px;
	}
	.franchise .sec_04 .cont_box ul li span {
		font-size: 2.7vw;
	}

	/* 상담 */
	.pg_detail.pg_board.consult .form-box .form-title {
		font-size: 18px;
	}
	#frmFranchInput .franch-info {
		flex-direction: column;
		gap: 20px;
	}
	#frmFranchInput .franch-info > div {
		width: 100%;
	}
	.pg_detail.pg_board.consult #frmFranchInput .m-only {
		display: block;
		width: 100%;
		margin-bottom: 20px;
	}
	.pg_detail.pg_board.consult #frmFranchInput .form-group-wrap .form-group {
		flex-direction: column;
		gap: 20px;
	}
	.pg_detail.pg_board.consult #frmFranchInput .form-group > label {
		width: 100%;
	}
	.pg_detail.pg_board.consult #frmFranchInput .form-group .form-input.phone-input {
		width: 100%;
	}

	/* 상담 신청 리뉴얼 20250404*/
	.sec-contact-rolling .rolling-img-swiper {
		min-width: 400px;
		width: 400px;
	}
	.rolling-box .rolling-title {
		font-size: 22px;
		line-height: 30px;
	}
	.rolling-title .__title {
		font-size: 52px;
		line-height: 66px;
	}
}

@media screen and (max-width: 1024px){
	/* SNS 간편 회원가입 */
	.pg_sns_login input[type='text'],
	.pg_sns_login input[type='password'],
	.pg_sns_login input[type='name'],
	.pg_sns_login input[type='tel'],
	.pg_sns_login input[type='search'],
	.pg_sns_login input[type='number'],
	.pg_sns_login select {
		border: 1px solid #CCCCCC;
		border-radius: 5px;
		width: 100%;
		max-width: none;
		padding: 8.5px 0 8.5px 1rem;
	}
	.pg_sns_login .sns-join-wrap {
		width: 100%;
	}
	.pg_sns_login .joinForm-wrap > p {
		width: 100%;
	}
	.pg_sns_login .notice-txt {
		margin-bottom: 0;
	}
	.pg_sns_login .joinForm table {
		width: 100%;
	}
	.pg_sns_login .joinForm table tbody {
		display: block;
		width: 100%;
	}
	.pg_sns_login .joinForm table th,
	.pg_sns_login .joinForm table td {
		width: 100%;
	}
	.pg_sns_login tbody tr {
		display: flex;
		flex-direction: column;
		width: 100%;
		margin-bottom: 2rem;
	}
	.pg_sns_login tbody tr:last-child {
		margin-bottom: 0;
	}
	.pg_sns_login tbody td {
		flex-direction: column;
	}
	.pg_sns_login .wrap {
		max-width: none;
	}
	.pg_sns_login select#selMail {
		width: 100%;
	}

	/* 반영구 */
	.semiPerm .sec-02 .bg_01 {
		padding: 125px 0;
	}
	.semiPerm .sec-02 .bg_01 .cont {
		margin-top: 76px;
	}
	.semiPerm .sec-02 .bg_02 {
		padding: 125px 0;
	}
	.semiPerm .sec-02 .cont:after {
		content: none;
	}
	.semiPerm .sec-02 .cont_list {
		flex-wrap: wrap;
		justify-content: center;
	}
	.semiPerm .sec-02 .cont_list_01 {
		margin-bottom: 0;
	}
	.semiPerm .sec-02 .cont_list_01 .profile_txt {
		min-width: auto;
		width: 100%;
		position: relative;
	}
	.semiPerm .sec-02 .cont_list_01 .profile_txt:after {
		content: '';
		position: absolute;
		top: 15px;
		right: 0;
		display: inline-block;
		width: 283px;
		height: 283px;
		background-image: url('/common/img/semiPerm/sec-02-img04.png');
		background-repeat: no-repeat;
		background-position: center;
		background-size: cover;
	}
	.semiPerm .sec-02 .cont_list_02 {
		display: none;
	}
	.semiPerm .sec-03 {
		padding: 135px 0 125px;
	}
	.semiPerm .sec-03 .cont_list {
		flex-wrap: wrap;
		justify-content: center;
		margin-bottom: 90px;
	}
	.semiPerm .sec-03 .cont_list .img_box {
		margin-bottom: 45px;
	}
	.semiPerm .sec-03 .cont_list .txt_box {
		min-width: auto;
		text-align: center;
	}
	.semiPerm .sec-03 .cont_list .txt_box .num_txt {
		margin-bottom: 41px;
		justify-content: center;
	}
	.semiPerm .sec-04 {
		padding: 121px 0;
		overflow: hidden;
	}
	.semiPerm .sec-04 .cont {
		padding: 65px 0;
	}
	.semiPerm .sec-04 .cont_list {
		flex-wrap: wrap;
		justify-content: center;
		align-items: center;
		flex-direction: column;
		gap: 20px;
	}
	.semiPerm .sec-04 .cont_list .txt_img_box {
		width: 100%;
	}
	.semiPerm .sec-04 .cont_list .txt_img_box img {
		display: block;
		max-width: 100%;
	}
	.semiPerm .sec-04 .cont_list_01 .txt_img_box img,
	.semiPerm .sec-04 .cont_list_03 .txt_img_box img {
		margin-right: auto;
		transform: translateX(-75px);
	}
	.semiPerm .sec-04 .cont_list_02 .txt_img_box img {
		margin-left: auto;
		transform: translateX(75px);
	}
	.semiPerm .sec-04 .cont_list .txt_box {
		min-width: auto;
		text-align: center;
	}
	.semiPerm .sec-04 .txt_box > span {
		display: inline-block;
		background-color: #c53b47;
		border-radius: 32px;
		font-size: 28px;
		font-weight: 500;
		color: #fff;
		padding: 14px 32px;
		margin-bottom: 22px;
	}
	.semiPerm .sec-04 .txt_box > h4 {
		margin: 0 auto 20px;
	}

	/* 교육 과정 */
	.curriculum .sec_04 .cont_box ul {
		gap: 15px;
		max-width: 646px;
		margin: 0 auto;
	}
	.curriculum .sec_04 .cont_box ul li {
		width: calc(50% - 15px);
	}
	.curriculum .sec_04 .cont_box ul li .img_box {
		max-width: 308px;
		margin: 0 auto 10px;
	}
	.curriculum .sec_04 .cont_box ul li .img_box img {
		width: 100%;
	}
	.curriculum .sec_04 .cont_box ul li .txt_box {
		gap: 0 5px;
	}
	.curriculum .sec_04 .cont_box ul li .txt_box span {
		font-size: 15px;
	}
	.curriculum .sec_04 .cont_box ul li .txt_box p {
		font-size: 15px;
	}
	.curriculum .sec_05 .cont_box .cont_list .table_sub_txt p {
		font-size: 14px;
	}
	.curriculum .sec_06 .cont-ul {
		gap: 27px;
	}
	.curriculum .sec_06 .cont-ul > li {
		width: calc((100% - 27px) / 2);
	}
	.curriculum .sec_06 .cont-ul > li.cont-list {
		padding: 28px 82px 28px 30px;
		border-radius: 15px;
	}
	.curriculum .sec_06 .cont-ul > li.cont-list .ico-box {
		right: 25px;
		top: 24px;
		max-width: 57px;
	}
	.curriculum .sec_08 .swiper-btn-wrap .swiper-button-prev,
	.curriculum .sec_08 .swiper-btn-wrap .swiper-container-rtl .swiper-button-prev {
		left: 17%;
	}
	.curriculum .sec_08 .swiper-btn-wrap .swiper-button-next,
	.curriculum .sec_08 .swiper-btn-wrap .swiper-container-rtl .swiper-button-next {
		right: 17%;
	}
	.curriculum .quick_consult_box .quick_consult {
		padding: 37px 0 60px;
	}
	.curriculum .quick_consult_box .quick_consult .counult_list1:after {
		width: 1px;
		height: 258px;
	}
	.curriculum .quick_consult_box .quick_consult .counult_list1 .form-check2 {
		padding: 15px 0;
	}
	.curriculum .quick_consult_box .quick_consult .counult_list1 .form-check2 input[type="checkbox"] + label .round_icon {
		width: 18px;
		height: 18px;
	}
	.curriculum .quick_consult_box .quick_consult .counult_list1 .form-check2 input[type="checkbox"]:checked + label .round_icon:after {
		width: 6px;
		height: 6px;
	}
	.curriculum .quick_consult_box .quick_consult .counult_list1 .form-check2 input[type="checkbox"] + label ._txt {
		font-size: 1.6vw;
	}
	.curriculum .quick_consult_box .quick_consult .counult_list2 .form-group2 label {
		width: 70px;
		font-size: 18px;
	}
	.curriculum .quick_consult_box .quick_consult .counult_list2 .form-group2 .form-input .form-control {
		font-size: 1.6vw;
		padding: 0 12px;
		height: 40px;
	}
	.curriculum .quick_consult_box .quick_consult .counult_list2 .form-check2 input[type="checkbox"] + label .round_icon {
		width: 22px;
		height: 22px;
	}
	.curriculum .quick_consult_box .quick_consult .counult_list2 .form-check2 input[type="checkbox"] + label ._txt {
		font-size: 1.6vw;
	}
	.curriculum .quick_consult_box .quick_consult .counult_list2 .submit_btn {
		padding: 14px 0;
		font-size: 2.2vw;
	}

	/* 취업 */
	.employment .sec_03 {
		padding: 87px 0 290px;
		background-position: center right;
	}
	.employment .sec_03 h3 {
		margin-bottom: 30px;
		font-size: 35px;
	}
	.employment .sec_03 p {
		font-size: 14px;
	}

	/* 유튜브 */
	.pg_youtube .search-box-wrap {
		flex-direction: column-reverse;
	}
	.pg_youtube .notice .top_search {
		align-items: flex-end;
	}
	.pg_youtube .youtube-list-wrap .youtube-list > li {
		max-width: calc(50% - 15px);
		min-width: calc(50% - 15px);
	}

	/* 자유게시판 */
	.pg_free_board .search-box-wrap {
		flex-direction: column-reverse;
	}
	.pg_free_board .notice .top_search {
		align-items: flex-end;
	}
	.pg_free_board .board-wrap .list-wrap .list {
		padding: 0 20px;
	}

	/* 이벤트 */
	.gallery-type-list .board-list-wrap > li {
		width: 100%;
	}

	/* 상담 신청 리뉴얼 20250404*/
	.rolling-title .__title strong {
		display:block;
	}
}

@media screen and (max-width: 990px){
	/* 브로우 소개 */
	.brow_intro .sec_02 {
		background-image: none;
	}
	.brow_intro .sec_02 .flex_box {
		display: block;
	}
	.brow_intro .sec_02 .img_box img {
		display: none;
	}
	.brow_intro .sec_02 .txt_box {
		text-align: center;
		padding: 75px 20px;
	}
	.brow_intro .sec_02 .txt_box .txt {
		font-size: 14px;
	}
	.brow_intro .sec_02 .txt_box .txt_1,
	.brow_intro .sec_02 .txt_box .txt_3 {
		font-weight: 400;
		color: #222222;
	}
	.brow_intro .sec_02 .txt_box .txt_2 {
		font-weight: 700;
		color: #C53B47;
	}
	.brow_intro .sec_02 .img_box2 {
		display: block;
	}
	.brow_intro .sec_02 .img_box2 img {
		width: 100%;
	}
	.brow_intro .sec_04 .img_box img {
		max-width: 90%;
	}
	.brow_intro .sec_05 .cont_box ul li .txt_box {
		bottom: auto;
		left: 24px;
		top: 85%;
		transform: translateY(-50%);
	}
	.brow_intro .sec_05 .cont_box ul li .txt_box span {
		font-size: 2.3vw;
	}
	.brow_intro .sec_05 .cont_box ul li .txt_box p {
		font-size: 1.8vw;
	}
	.brow_intro .sec_06 .cont_box ul li {
		width: calc(50% - 28px);
	}
	.brow_intro .sec_06 .cont_box ul li .txt_box {
		bottom: auto;
		left: 24px;
		top: 85%;
		transform: translateY(-50%);
	}
	.brow_intro .sec_06 .cont_box ul li .txt_box span {
		font-size: 2.3vw;
	}
	.brow_intro .sec_06 .cont_box ul li .txt_box p {
		font-size: 1.8vw;
	}
	.brow_intro .sec_08 .samjungSwiper {
		background: url('/common/img/about/sec-09-bg-m.jpg') no-repeat center / cover;
		height: 635px;
	}
	.brow_intro .sec_08 .samjungSwiper .txt_box {
		top: calc(18% + 83px);
		width: 100%;
	}
	.brow_intro .sec_08 .samjungSwiper .main_txt_box {
		top: 18%;
	}
	.brow_intro .sec_08 .samjungSwiper .txt_box .since {
		margin-bottom: 0;
		font-size: 20px;
	}
	.brow_intro .sec_08 .samjungSwiper .txt_box .tit {
		margin-bottom: 14px;
		font-size: 35px;
	}
	.brow_intro .sec_08 .samjungSwiper .txt_box .desc {
		font-size: 15px;
	}
	.brow_intro .sec_08 .samjungSwiper .swiper-pagination.img__,
	.brow_intro .sec_08 .samjungSwiper .swiper-pagination.line__ {
		display: none;
	}
	.brow_intro .sec_08 .samjungSwiper .swiper-pagination.txt__ {
		bottom:23%;
	}
	.brow_intro .sec_08 .samjungSwiper .swiper-pagination.txt__::after {
		content:'';
		top: 57px;
		left: 50%;
		transform: translateX(-50%);
		position: absolute;
		max-width: 500px;
		width: 100%;
		height: 1px;
		background-color: rgba(255, 255, 255, 0.1);
	}
	.brow_intro .sec_08 .samjungSwiper .swiper-pagination .swiper-pagination-bullet {
		width: 10px;
		height: 10px;
		border: 4px solid rgba(255, 255, 255, 0.6);
		background-color: transparent;
		margin: 0 13%;
		position: relative;
	}
	.brow_intro .sec_08 .samjungSwiper .swiper-pagination.txt__ .swiper-pagination-bullet {
		width: 110px;
		height: 110px;
		border: none;
		border-radius: 0;
		margin: 0;
		background-size: 100%;
		background-position: center;
		background-repeat: no-repeat;
		opacity: 1;
		max-width: 32%;
	}
	.brow_intro .sec_08 .samjungSwiper .swiper-pagination.txt__ .swiper-pagination-bullet[aria-label="Go to slide 1"] {
		background-image: url('/common/img/about/sec-09-img-m.png?v=2409061819');
	}
	.brow_intro .sec_08 .samjungSwiper .swiper-pagination.txt__ .swiper-pagination-bullet[aria-label="Go to slide 2"] {
		background-image: url('/common/img/about/sec-09-img3-m.png?v=2409061033');
	}
	.brow_intro .sec_08 .samjungSwiper .swiper-pagination.txt__ .swiper-pagination-bullet[aria-label="Go to slide 3"] {
		background-image: url('/common/img/about/sec-09-img2-m.png');
	}
	.brow_intro .sec_08 .samjungSwiper .swiper-pagination.txt__ .swiper-pagination-bullet-active[aria-label="Go to slide 1"] {
		background-image: url('/common/img/about/sec-09-img4-m.png?v=2409061819');
	}
	.brow_intro .sec_08 .samjungSwiper .swiper-pagination.txt__ .swiper-pagination-bullet-active[aria-label="Go to slide 2"] {
		background-image: url('/common/img/about/sec-09-img6-m.png?v=2409061031');
	}
	.brow_intro .sec_08 .samjungSwiper .swiper-pagination.txt__ .swiper-pagination-bullet-active[aria-label="Go to slide 3"] {
		background-image: url('/common/img/about/sec-09-img5-m.png');
	}
	.brow_intro .sec_09 .bg_01 .cont_box ul li {
		width: 100%;
	}

	/* 엠버서더 */
	.ambassador .sec-01 {
		padding: 68px 0 26px;
	}
	.ambassador .sec-01 .txt_box {
		bottom: 30px;
	}
	.ambassador .sec-01 .txt_box p {
		margin-bottom: 6px;
		font-size: 37px;
	}
	.ambassador .sec-01 .txt_box .img_box img {
		display: block;
		margin: 0 auto;
		max-width: 100%;
		max-height: 15px;
	}
	.ambassador .sec-01 .round_box {
		width: auto;
		height: auto;
		max-width: 310px;
		border-radius: 160px 160px 0 0;
		box-shadow: 0 1px 25px 0 rgba(0, 0, 0, 0.15);
	}
	.ambassador .sec-01 .round_box img {
		position: relative;
		top: auto;
		left: auto;
		transform: none;
	}
	.ambassador .sec-01 .info_txt_box {
		top: -55px;
		right: 20px;
		transform: none;
		text-align: right;
	}
	.ambassador .sec-01 .info_txt_box span {
		font-size: 18px;
	}
	.ambassador .sec-01 .info_txt_box p {
		font-size: 11px;
	}
	.ambassador .sec-02 .flex_box {
		flex-direction: column;
		justify-content: center;
		align-items: center;
		gap: 100px;
	}
	.ambassador .sec-02 .flex_box .txt_box1 {
		text-align: center;
		margin-bottom: 45px;
	}
	.ambassador .sec-02 .flex_box .txt_box2 {
		display: none;
	}

	/* SMP */
	.academy #section2 ul > li {
		margin-bottom: 90px;
	}
	.academy #section2 .txt-box > p {
		margin-top: 30px;
	}
	.academy #section3 .swiper-button-prev,
	.academy #section3 .swiper-button-next {
		left: auto;
	}
	.academy #section5 .cont-step-wrap .right-cont-box {
		position: relative;
		left: 0;
		bottom: 75px;
		min-height: 552px;
		display: block;
		margin: 0 auto;
	}
	.academy #section5 .cont-step-wrap .right-cont-box > .inbox {
		position: absolute;
		left: 50%;
		top: 50%;
		display: block;
		transform: translate(-50%, -50%);
		width: 100%;
	}

	/* 가맹점 */
	.franchise .sec_02 .tit_box h3 {
		font-size: 7.08vw;
	}
	.franchise .sec_02 .tit_box p {
		font-size: 2.42vw;
	}

	/* 상담 */
	.pg_detail.pg_board.consult .counsel-form > .flex-box {
		flex-direction: column;
	}
	.pg_detail.pg_board.consult .form-group-wrap .form-group {
		flex-direction: column;
		gap: 20px;
	}
	.pg_detail.pg_board.consult .form-group > label {
		width: 100%;
	}
	.pg_detail.pg_board.consult .m-only {
		display: block;
		margin-bottom: 20px;
	}

	/* 수강생 포트폴리오 */
	.studentW .event-item .img-box {
		width: 230px;
		height: 230px;
	}

	/* 상담 신청 리뉴얼 20250404*/
	.sec-contact-rolling .rolling-box {
		gap: 20px;
	}
	.sec-contact-rolling .rolling-img-swiper {
		min-width: 360px;
		width: 360px;
	}
	.rolling-box .rolling-title {
		font-size: 18px;
		line-height: 26px;
	}
	.rolling-title .__sub-title {
		margin-bottom: 40px;
	}
	.rolling-title .__title {
		font-size: 40px;
		line-height: 52px;
	}
}

@media screen and (max-width: 768px){
	.pg-detail {
		margin-top: 60px;
	}
	.pg_detail .subframe {
		padding: 0 20px;
		width: auto;
	}

	/* SNS 간편 회원가입 */
	.pg_sns_login input[type='text'],
	.pg_sns_login input[type='password'],
	.pg_sns_login input[type='name'],
	.pg_sns_login input[type='tel'],
	.pg_sns_login input[type='search'],
	.pg_sns_login input[type='number'],
	.pg_sns_login select {
		height: 40px;
	}
	#container.pg_sns_login {
		margin-top: 60px;
	}
	.pg_sns_login .pg-tit {
		padding: 20px 16px;
	}
	.pg_sns_login .pg-tit > h2 {
		margin-bottom: 14px;
		font-size: 40px;
	}
	.pg_sns_login .pg-tit span {
		font-size: 12px;
	}
	.pg_sns_login .sns-join-wrap {
		width: 100%;
	}
	.pg_sns_login select#selMail {
		height: 40px;
		padding: 0 0 0 1rem;
	}

	/* 브로우 소개 */
	.brow_intro {
		margin-top: 60px;
	}
	.brow_intro .sec_03 {
		padding: 75px 0;
	}
	.brow_intro .sec_03 .tit_box {
		margin-bottom: 30px;
	}
	.brow_intro .sec_03 .tit_box span {
		padding: 4px 22px;
		margin-bottom: 15px;
		border-radius: 14px;
		font-size: 15px;
	}
	.brow_intro .sec_03 .tit_box h3 {
		max-width: 230px;
		margin: 0 auto;
		font-size: 30px;
	}
	.brow_intro .sec_03 .cont_box {
		width: calc(100% - 30px);
		margin: 0 auto;
	}
	.brow_intro .sec_03 .cont_box ul {
		flex-direction: column;
		gap: 15px;
		margin-bottom: 15px;
	}
	.brow_intro .sec_03 .cont_box ul li {
		min-width: auto;
		width: 100%;
		height: auto;
		padding: 29px 0;
		border-radius: 8px;
		box-shadow: 3px 3px 10px 0 rgba(0, 0, 0, 0.10);
	}
	.brow_intro .sec_03 .cont_box ul:first-child li,
	.brow_intro .sec_03 .cont_box ul:last-child li {
		min-width: auto;
	}
	.brow_intro .sec_03 .cont_box ul li .img_box {
		margin-bottom: 0;
	}
	.brow_intro .sec_03 .cont_box ul li .img_box img {
		max-width: 100%;
		max-height: 41px;
	}
	.brow_intro .sec_03 .cont_box ul li .count_txt {
		font-size: 19px;
		line-height: 1.2;
	}
	.brow_intro .sec_03 .cont_box ul li .count_txt b {
		font-size: 33px;
	}
	.brow_intro .sec_03 .cont_box ul li p {
		font-size: 12px;
	}
	.brow_intro .sec_04 {
		background-image: url('/common/img/about/sec-05-bg-m.jpg');
		padding: 132px 0;
	}
	.brow_intro .sec_04 .img_box img {
		max-width: 100%;
		max-height: 192px;
	}
	.brow_intro .sec_05 {
		padding: 75px 0;
	}
	.brow_intro .sec_05 .tit_box {
		margin: 0 auto 30px;
		max-width: 263px;
	}
	.brow_intro .sec_05 .tit_box h3 {
		font-size: 30px;
	}
	.brow_intro .sec_05 .artist_profile_box .artist_profile {
		position: relative;
		margin-bottom: 15px;
	}
	.brow_intro .sec_05 .artist_profile_box .artist_profile:last-child {
		margin-bottom: 0;
	}
	.brow_intro .sec_05 .artist_profile_box .artist_profile .artist_img_box {
		overflow: hidden;
		border-radius: 15px;
	}
	.brow_intro .sec_05 .artist_profile_box .artist_profile .artist_img_box img {
		display: block;
		width: 100%;
	}
	.brow_intro .sec_05 .artist_profile_box .artist_profile .txt_box {
		position: absolute;
		top: 50%;
		left: 71%;
		transform: translate(-50%, -50%);
		display: inline-block;
		width: auto;
		text-align: center;
	}
	.brow_intro .sec_05 .artist_profile_box .artist_profile .txt_box p {
		white-space: nowrap;
		margin-bottom: 5px;
		font-size: 20px;
		font-weight: 700;
		color: #FFFFFF;
		font-family: "Pretendard", "sans-serif";
	}
	.brow_intro .sec_05 .artist_profile_box .artist_profile .txt_box span {
		font-size: 12px;
		font-weight: 400;
		color: #999999;
		font-family: "Pretendard", "sans-serif";
	}
	.brow_intro .sec_05 .artist_profile_box .artist_profile .more_btn {
		position: absolute;
		bottom: 10px;
		right: 10px;
		width: 25px;
		height: 25px;
		border-radius: 50em;
		overflow: hidden;
	}
	.brow_intro .sec_05 .artist_profile_box .artist_profile .more_btn img {
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		width: 25px;
		display: block;
	}
	.brow_intro .sec_06 {
		padding: 75px 0;
	}
	.brow_intro .sec_06 .tit_box {
		margin: 0 auto 30px;
		max-width: 263px;
	}
	.brow_intro .sec_06 .tit_box h3 {
		font-size: 30px;
	}
	.brow_intro .sec_06 .manager_profile_box .manager_profile {
		position: relative;
		margin-bottom: 15px;
	}
	.brow_intro .sec_06 .manager_profile_box .manager_profile:last-child {
		margin-bottom: 0;
	}
	.brow_intro .sec_06 .manager_profile_box .manager_profile .manager_img_box {
		overflow: hidden;
		border-radius: 15px;
	}
	.brow_intro .sec_06 .manager_profile_box .manager_profile .manager_img_box img {
		display: block;
		width: 100%;
	}
	.brow_intro .sec_06 .manager_profile_box .manager_profile .txt_box {
		position: absolute;
		top: 50%;
		left: 71%;
		transform: translate(-50%, -50%);
		display: inline-block;
		width: 32%;
		text-align: center;
	}
	.brow_intro .sec_06 .manager_profile_box .manager_profile .txt_box p {
		white-space: nowrap;
		margin-bottom: 5px;
		font-size: 20px;
		color: #fff;
		font-weight: bold;
		font-family: "Mulish", "sans-serif";
	}
	.brow_intro .sec_06 .manager_profile_box .manager_profile .txt_box span {
		font-size: 12px;
		font-weight: 400;
		color: #999;
		font-family: "Mulish", "sans-serif";
	}
	.brow_intro .sec_06 .manager_profile_box .manager_profile .more_btn {
		position: absolute;
		bottom: 10px;
		right: 10px;
		width: 25px;
		height: 25px;
		border-radius: 50em;
		overflow: hidden;
	}
	.brow_intro .sec_06 .manager_profile_box .manager_profile .more_btn img {
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		width: 25px;
		display: block;
	}
	.brow_intro .sec_07 {
		padding: 72px 0 75px;
		background-image: url('/common/img/about/sec-08-bg-m.jpg');
	}
	.brow_intro .sec_07 .tit_box h3 {
		font-size: 30px;
	}
	.brow_intro .sec_07 .img_box {
		margin: 27px auto 61px;
	}
	.brow_intro .sec_07 .img_box img {
		max-height: 21px;
	}
	.brow_intro .sec_07 .cont_box {
		margin: 0 auto 40px;
	}
	.brow_intro .sec_07 .cont_box .cont_list {
		padding: 50px 15px;
		border-radius: 10px;
		box-shadow: 3px 3px 10px 0 rgba(0, 0, 0, 0.10);
		margin-bottom: 15px;
	}
	.brow_intro .sec_07 .cont_box .cont_list h4 {
		font-size: 25px;
	}
	.brow_intro .sec_07 .cont_box .cont_list p {
		font-size: 14px;
	}
	.brow_intro .sec_07 .cont_box2 {
		padding-top: 107px;
	}
	.brow_intro .sec_07 .cont_box2:before {
		top: 0;
		height: 62px;
	}
	.brow_intro .sec_07 .cont_box2:after {
		top: 53px;
		width: 15px;
		height: 15px;
	}
	.brow_intro .sec_07 .cont_box2 h3 {
		margin-bottom: 25px;
		font-size: 27px;
	}
	.brow_intro .sec_07 .cont_box2 p {
		font-size: 16px;
	}
	.brow_intro .sec_07 .cont_box2 p b {
		margin-top: 13px;
	}
	.brow_intro .sec_09 .bg_01 {
		padding: 75px 0;
	}
	.brow_intro .sec_09 .bg_01 .cont_box ul {
		gap: 15px;
	}
	.brow_intro .sec_09 .bg_01 .cont_box ul li {
		padding: 34px 0;
		gap: 18px;
		border-radius: 8px;
		box-shadow: 3px 3px 10px 0 rgba(0, 0, 0, 0.10);
	}
	.brow_intro .sec_09 .bg_01 .cont_box ul li .img_box img {
		max-height: 43px;
	}
	.brow_intro .sec_09 .bg_01 .cont_box ul li p {
		font-size: 22px;
	}
	.brow_intro .sec_09 .bg_02 {
		padding-bottom: 50px;
		background: linear-gradient(#fff, #f1f1f1, #F2F2F2);
	}
	.brow_intro .sec_09 .bg_02 > .subframe {
		max-width: 360px;
		margin: 0 auto;
	}
	.brow_intro .sec_09 .bg_02 .cont_box {
		position: relative;
		max-width: 360px;
		padding-top: 72px;
	}
	.brow_intro .sec_09 .bg_02 .txt_box {
		position: relative;
		z-index: 10;
		min-width: 170px;
	}
	.brow_intro .sec_09 .bg_02 .txt_box h3 {
		margin-bottom: 28px;
		font-size: 15px;
	}
	.brow_intro .sec_09 .bg_02 .txt_box h3 span {
		font-size: 27px;
	}
	.brow_intro .sec_09 .bg_02 .txt_box h3 b {
		font-size: 15px;
	}
	.brow_intro .sec_09 .bg_02 .txt_box1 {
		margin-bottom: 15px;
	}
	.brow_intro .sec_09 .bg_02 .txt_box1 p {
		font-size: 12px;
		text-shadow: 1px 1px white;
	}
	.brow_intro .sec_09 .bg_02 .txt_box2 p {
		gap: 8px;
	}
	.brow_intro .sec_09 .bg_02 .txt_box2 p img {
		max-width: 100%;
		max-height: 9px;
	}
	.brow_intro .sec_09 .bg_02 .txt_box2 p span {
		font-size: 11px;
		text-shadow: 1px 1px white;
	}
	.brow_intro .sec_09 .bg_02 .txt_box3 {
		width: 98vw;
		margin-left: calc(-50vw + 50%);
		background: linear-gradient(#f1f1f1 10%, #F2F2F2);
	}
	.brow_intro .sec_09 .bg_02 .txt_box3 p {
		font-size: 12px;
		max-width: 360px;
		margin: 0 auto;
		padding: 23px 20px 0;
		/* padding: 23px 20px; // [의사가 모든 교육 및 시술을 진행합니다.]가 사라질 경우 복원*/
	}
	.brow_intro .sec_09 .bg_02 .txt_box3 .doctor_info {
		margin-top: 8px;
		font-size: 12px;
		max-width: 360px;
		margin: 0 auto;
		padding: 12px 20px 23px;
	}
	
	.brow_intro .sec_09 .bg_02 .img_box img {
		height: 100%;
		position: absolute;
		top:-30px;
		right:-40px;
		min-height: 414px;
	}

	/* 엠버서더 */
	.ambassador .sec-02 {
		padding: 60px 0;
	}
	.ambassador .sec-02 .subframe {
		padding: 0;
	}
	.ambassador .sec-02 .flex_box {
		margin-bottom: 150px;
	}
	.ambassador .sec-02 .flex_box .txt_box1 {
		margin-bottom: 30px;
	}
	.ambassador .sec-02 .flex_box .txt_box1 span {
		font-size: 30px;
		font-weight: 900;
	}
	.ambassador .sec-02 .flex_box .txt_box1 p {
		font-size: 12px;
		font-weight: 400;
	}
	.ambassador .sec-02 .flex_box .img_box1 {
		padding: 0 20px;
	}
	.ambassador .sec-02 .flex_box2 {
		padding: 0 20px;
	}
	.ambassador .sec-02 .flex_box2 .txt_box3 .color_txt_box {
		top: -90px;
		right: 20px;
	}
	.ambassador .sec-02 .flex_box2 .txt_box3 .color_txt_box p {
		font-size: 12px;
	}
	.ambassador .sec-02 .flex_box2 .txt_box3 .profile_box p {
		font-size: 14px;
	}
	.ambassador .sec-02 .flex_box2 .txt_box3 .profile_box p.bold {
		font-size: 15px;
	}
	.ambassador .sec-02 .flex_box2 .txt_box3 .profile_box p.mb_10 {
		margin-bottom: 5px;
	}
	.ambassador .sec-02 .flex_box2 .txt_box3 .profile_box p.mb_5 {
		margin-bottom: 2px;
	}
	.ambassador .sec-02 .color_txt_box2 {
		display: none;
	}
	.ambassador .sec-04 {
		padding: 60px 0;
	}
	.ambassador .sec-04 .cont_box .img_box {
		margin-bottom: 22px;
	}
	.ambassador .sec-04 .cont_box.mo_resize .img_box img {
		display: block;
		margin: 0 auto;
		max-width: 100%;
		max-height: 80px;
	}
	.ambassador .sec-04 .cont_box span {
		font-size: 14px;
	}

	/* SMP */
	.academy #section1 .cont_box {
		bottom: 8.8%;
		left: 50%;
		transform: translateX(-50%);
		width: 100%;
		max-width: 81.944%;
	}
	.academy #section1 .cont_box > p {
		font-size: 14px;
		line-height: 1.785;
		padding-bottom: 45px;
		letter-spacing: -0.714px;
	}
	.academy #section1 .cont_box > .img_box {
		margin-top: 0;
	}
	.academy #section1 .cont_box > .img_box img {
		max-height: 60px;
	}
	.academy #section1 .cont_box > span {
		font-size: 14px;
		margin-top: 12px;
	}
	.academy #section2 {
		padding: 20px 0 75px;
	}
	.academy #section2 ul > li {
		margin-bottom: 75px;
	}
	.academy #section2 .txt-box > strong {
		font-size: 30px;
	}
	.academy #section2 .txt-box > span {
		font-size: 13px;
		line-height: 1.923;
		margin-bottom: 21px;
	}
	.academy #section2 .txt-box > p {
		font-size: 13px;
		line-height: 1.428;
	}
	.academy #section3 {
		padding: 75px 0;
	}
	.academy #section3 .tit-wrap {
		margin-bottom: 25px;
	}
	.academy #section3 .tit-wrap > span {
		font-size: 20px;
		line-height: 2;
	}
	.academy #section3 .tit-wrap > p {
		font-size: 30px;
		line-height: 1.3666;
	}
	.academy #section3 .educationSwiper {
		padding-bottom: 80px;
		margin-left: 0;
		position: relative;
	}
	.academy #section3 .swiper-wrap {
		padding-bottom: 0;
	}
	.academy #section3 .swiper-slide {
		transform: translate3d(0, 0, 0);
	}
	.academy #section3 .swiper-slide-active {
		margin: 0 auto;
	}
	.academy #section3 .swiper-slide .img-box {
		position: relative;
		width: calc(100% - 94px);
		margin: 0 auto;
		border-radius: 10px;
	}
	.academy .img-box img {
		position: static;
		min-height: initial;
		min-width: 100%;
		width: 100%;
		height: auto;
		display: block;
		margin: auto;
	}
	.academy #section3 .btn-wrap {
		width: 100%;
		top: 36%;
	}
	.academy #section3 .swiper-button-prev,
	.academy #section3 .swiper-button-next {
		height: 30px;
		width: 17px;
		background-size: 17px 30px;
	}
	.academy #section3 .swiper-button-prev {
		left: 12px;
	}
	.academy #section3 .swiper-button-next {
		right: 12px;
	}
	.academy #section3 .swiper-slide .txt-box {
		margin-top: 0;
	}
	.academy #section3 .swiper-slide .txt-box > p {
		margin-top: 9px;
		font-size: 19px;
	}
	.academy #section4 {
		padding: 75px 0;
	}
	.academy #section4 .tit-wrap {
		margin-bottom: 40px;
	}
	.academy #section4 .tit-wrap > span {
		margin-bottom: 17px;
		border-radius: 14px;
		border: 1px solid #C53B47;
		font-size: 15px;
		padding: 2px 20px;
	}
	.academy #section4 .tit-wrap > p {
		font-size: 30px;
		line-height: 1.25;
		margin-top: 0;
	}
	.academy #section4 .cont-wrap > ul {
		flex-direction: column;
		gap: 17px;
	}
	.academy #section4 .cont-wrap > ul > li {
		border-radius: 15px;
		box-shadow: 7px 7px 10px rgba(0, 0, 0, .1);
		padding: 35px 20px;
		max-width: 234px;
		min-width: auto;
		width: 100%;
		margin: 0 auto;
	}
	.academy #section4 .img-box {
		margin-bottom: 20px;
	}
	.academy #section4 .img-box > img {
		min-width: initial;
		max-height: 41px;
	}
	.academy #section4 .txt-box > .cont-tit {
		font-size: 17px;
		line-height: 1.228;
		margin-bottom: 19px;
	}
	.academy #section4 .txt-box > .cont-txt {
		font-size: 12px;
		line-height: 1.333;
	}
	.academy #section5 {
		padding: 75px 0 0;
	}
	.academy #section5 .tit-wrap {
		margin-bottom: 47px;
	}
	.academy #section5 .tit-wrap > span {
		font-size: 20px;
		font-weight: 400;
		line-height: 1.9;
	}
	.academy #section5 .tit-wrap > p {
		font-size: 30px;
		line-height: 1.25;
	}
	.academy #section5 .cont-step-wrap {
		padding-left: 25px;
	}
	.academy #section5 .cont-step-wrap > ul:before {
		height: calc(100% - 125px);
		left: 5.953px;
	}
	.academy #section5 .cont-step-wrap > ul > li {
		padding-left: 34px;
		padding-bottom: 65px;
		margin-bottom: 0;
	}
	.academy #section5 .cont-step-wrap > ul > li:last-child {
		margin-bottom: 0;
	}
	.academy #section5 .cont-step-wrap > ul > li > span {
		width: 12px;
		height: 12px;
		left: 0;
		top: 5px;
	}
	.academy #section5 .cont-step-wrap > ul > li .txt-box {
		padding-left: 0;
	}
	.academy #section5 .cont-step-wrap > ul > li .txt-box > strong {
		font-size: 17px;
		line-height: 1.228;
		margin-bottom: 4px;
		display: block;
	}
	.academy #section5 .cont-step-wrap > ul > li .txt-box > p {
		font-size: 12px;
		line-height: 1.333;
	}
	.academy #section5 .cont-step-wrap .right-cont-box {
		display: none;
	}
	.academy #section5 .cont-bt-wrap {
		position: relative;
		width: 100vw;
		margin-left: calc(-50vw + 50%);
		background-color: #F9F9F9;
		padding-bottom: 82px;
	}
	.academy #section5 .cont-bt-wrap > div:first-child {
		margin-bottom: 100px;
	}
	.academy #section5 .cont-bt-wrap > .round-wrap {
		text-align: center;
		position: relative;
	}
	.academy #section5 .cont-bt-wrap > .round-wrap > img {
		width: 100%;
		max-width: 720px;
		margin: 0 auto;
	}
	.academy #section5 .cont-bt-wrap > .round-wrap:after {
		content: "";
		position: absolute;
		bottom:-65px;
		left: 50%;
		transform: translateX(-50%);
		background: url('/common/img/academyIntro/icon-toxnfill-key-m.png') no-repeat center top;
		background-size: 100%;
		width: 75px;
		height: 104px;
	}
	.academy #section5 .cont-bt {
		text-align: center;
	}
	.academy #section5 .cont-bt .tit-box > strong {
		font-size: 25px;
		font-weight: 800;
		line-height: 1.3;
		display: inline-block;
		margin-bottom: 14px;
	}
	.academy #section5 .cont-bt {
		padding-bottom: 35px;
		margin-bottom: 35px;
		position: relative;
	}
	.academy #section5 .cont-bt02 {
		padding-bottom: 0;
		margin-bottom: 0;
	}
	.academy #section5 .cont-bt02:after {
		display: none;
	}
	.academy #section5 .cont-bt:after {
		content: "";
		position: absolute;
		width: 24px;
		height: 1px;
		background-color: #ddd;
		bottom:0;
		left: 50%;
		transform: translateX(-50%);
	}
	.academy #section5 .cont-bt .tit-box > strong > span {
		color: #C53B47;
	}
	.academy #section5 .cont-bt .txt-box > p {
		font-size: 14px;
		line-height: 1.357;
		color: #333;
	}
	.academy #section5 .cont-bt .txt-box > p > b {
		font-weight: bold;
	}
	.academy #section5 .cont-bt .txt-box > a {
		border-radius: 15px;
		background-color: #222;
		color: #fff;
		font-size: 12px;
		display: inline-block;
		padding: 6px 14px;
		margin-top: 20px;
		line-height: 1.3;
		border: none;
	}
	.academy #section6 {
		padding: 75px 0;
	}
	.academy #section6 .tit-wrap {
		margin-bottom: 27px;
	}
	.academy #section6 .tit-wrap > span {
		font-size: 20px;
		font-weight: 400;
		line-height: 1.9;
	}
	.academy #section6 .tit-wrap > p {
		font-size: 30px;
		font-weight: 800;
		line-height: 1.25;
	}
	.academy #section6 .cont_inner.contTop {
		margin-bottom: 10px;
	}
	.academy #section6 .cont_inner .cont {
		gap: 0 10px;
	}
	.academy #section6 .cont_inner .cont .item .img-wrap {
		border-radius: 10px;
		max-width: 165px;
		max-height: 165px;
	}
	.academy #section6 .btn-wrap {
		margin-top: 0;
	}
	.academy #section6 .btn-wrap > a {
		border-radius: 15px;
		background-color: #C53B47;
		color: #fff;
		font-size: 12px;
		padding: 6px 14px;
		margin-top: 42px;
		line-height: 1.3;
	}

	/* 반영구 */
	.semiPerm .sec-01 {
		position: relative;
		background-image: none;
		padding: 0;
	}
	.semiPerm .sec-01 .cont_box {
		position: absolute;
		bottom: 8.8%;
		left: 50%;
		transform: translateX(-50%);
		width: 100%;
		max-width: 81.944%;
	}
	.semiPerm .sec-01 p {
		font-size: 14px;
		line-height: 1.785;
		padding-bottom: 45px;
		letter-spacing: -0.714px;
	}
	.semiPerm .sec-01 .img_box {
		margin-top: 0;
	}
	.semiPerm .sec-01 .img_box img {
		width: 100%;
	}
	.semiPerm .sec-01 span {
		font-size: 14px;
		margin-top: 12px;
	}
	.semiPerm .sec-01 .img_box2 {
		font-size: 0;
	}
	.semiPerm .sec-01 .img_box2 img {
		width: 100%;
	}
	.semiPerm .tit_box {
		padding-bottom: 33px;
		max-width: 280px;
		margin: 92.5px auto 49px;
	}
	.semiPerm .tit_box:after {
		width: 40px;
		height: 1px;
	}
	.semiPerm .tit_box span {
		font-size: 20px;
		line-height: 2;
	}
	.semiPerm .tit_box h3 {
		font-size: 35px;
		line-height: 1.143;
	}
	.semiPerm .sec-02 .bg_01 {
		padding: 0;
	}
	.semiPerm .sec-02 .bg_02 {
		background-color: #FFFFFF;
		padding: 0;
	}
	.semiPerm .sec-02 .bg_01 .cont {
		margin-top: 0;
	}
	.semiPerm .sec-02 .cont_list .img_box {
		border-radius: 15px;
	}
	.semiPerm .sec-02 .cont_list_01 {
		margin-bottom: 72.5px;
	}
	.semiPerm .sec-02 .cont_list_02 {
		margin-bottom: 72.5px;
	}
	.semiPerm .sec-02 .cont_list_01 .profile_txt {
		margin-top: 40px;
	}
	.semiPerm .sec-02 .cont_list_01 .profile_txt:after {
		top: 0;
		width: 141.5px;
		height: 141.5px;
	}
	.semiPerm .sec-02 .cont_list .profile_txt .txt_img_box {
		margin-bottom: 5px;
	}
	.semiPerm .sec-02 .cont_list .profile_txt .txt_img_box img {
		width: 132px;
	}
	.semiPerm .sec-02 .cont_list .profile_txt span {
		font-size: 14px;
		line-height: 1.428;
		margin-bottom: 34px;
	}
	.semiPerm .sec-02 .cont_list .profile_txt p {
		font-size: 14px;
		line-height: 1.428;
	}
	.semiPerm .sec-03 {
		padding: 93.5px 0;
	}
	.semiPerm .sec-03 .cont_list .txt_box .num_txt {
		font-size: 1rem;
		gap: 8px;
		margin-bottom: 32px;
	}
	.semiPerm .sec-03 .cont_list .txt_box .num_txt b {
		font-size: 10px;
		width: 20px;
		height: 20px;
		line-height: 20px;
	}
	.semiPerm .sec-03 .cont_list .txt_box h4 {
		font-size: 30px;
		line-height: 1.166;
		margin-bottom: 28px;
	}
	.semiPerm .sec-03 .cont_list .img_box {
		border-radius: 15px;
		margin-bottom: 29px;
	}
	.semiPerm .sec-03 .cont_list .txt_box > p {
		font-size: 14px;
		line-height: 1.428;
	}
	.semiPerm .sec-03 .cont_list_02 .img_box > div.before_img,
	.semiPerm .sec-03 .cont_list_02 .img_box > div.after_img {
		border-radius: 15px;
	}
	.semiPerm .sec-03 .cont_list_02 .img_box > div.before_img {
		margin-bottom: 15px;
	}
	.semiPerm .sec-04 {
		padding: 0;
		margin-bottom: 93px;
	}
	.semiPerm .sec-04 .tit_box {
		max-width: 280px;
		padding-bottom: 33px;
		margin: 92.5px auto 49px;
	}
	.semiPerm .sec-04 .tit_box > p {
		margin-top: 8px;
		font-size: 20px;
		line-height: 2;
	}
	.semiPerm .sec-04 .cont {
		padding: 0;
	}
	.semiPerm .sec-04 .cont_list {
		margin-bottom: 0;
		gap: 30px;
	}
	.semiPerm .sec-04 .cont_list .txt_img_box {
		margin-top: 30px;
	}
	.semiPerm .sec-04 .cont_list .txt_img_box img {
		max-height: 67px;
	}
	.semiPerm .sec-04 .cont_list_01 .txt_img_box img,
	.semiPerm .sec-04 .cont_list_03 .txt_img_box img {
		transform: translateX(-35px);
	}
	.semiPerm .sec-04 .cont_list_02 .txt_img_box img {
		transform: translateX(35px);
	}
	.semiPerm .sec-04 .txt_box > span {
		border-radius: 16px;
		font-size: 14px;
		padding: 7px 16px;
	}
	.semiPerm .sec-04 .txt_box > h4 {
		font-size: 30px;
		line-height: 1.166;
		margin-bottom: 20px;
	}
	.semiPerm .sec-04 .txt_box > p {
		font-size: 14px;
		line-height: 1.428;
	}
	.semiPerm .sec-05 .txt_box {
		background: url('/common/img/semiPerm/mo-sec-05-bg.jpg?v=2508010648') no-repeat bottom center #111;
		background-size: 100%;
		padding: 19.861% 0 80.833%;
	}
	.semiPerm .sec-05 .txt_box h3 {
		font-size: 35px;
		line-height: 1.142;
		margin-bottom: 20px;
	}
	.semiPerm .sec-05 .txt_box p {
		font-size: 14px;
		line-height: 1.428;
		letter-spacing: -0.9333px;
	}
	.semiPerm .sec-06 {
		padding: 60px 0 100%;
		background-image: url('/common/img/semiPerm/mo-sec-06-bg.jpg');
	}
	.semiPerm .sec-06 .txt_box {
		padding-left: 0;
		text-align: center;
		width: 100%;
	}
	.semiPerm .sec-06 .logo {
		display: inline-block;
		max-width: 370px;
		width: 51.388%;
		margin: 0 auto 22px;
	}
	.semiPerm .sec-06 .logo img {
		width: 100%;
	}
	.semiPerm .sec-06 .txt_box > p {
		margin-top: 0;
		font-size: 15px;
		line-height: 1.433;
		letter-spacing: -1px;
	}

	/* 교육과정 */
	.curriculum .sec_01 .txt_box {
		left: 20px;
		bottom: 60px;
	}
	.curriculum .sec_01 .txt_box span {
		margin-bottom: 32px;
		font-size: 20px;
	}
	.curriculum .sec_01 .txt_box span b {
		display: block;
		font-size: 50px;
		text-indent: -3px;
	}
	.curriculum .sec_01 .txt_box p {
		font-size: 14px;
		text-indent: 2px;
	}
	.curriculum .sec_02 {
		padding-top: 100px;
	}
	.curriculum .sec_02 .video_txt {
		padding: 16px 10px 37px 0;
		font-size: 37px;
	}
	.curriculum .curri_cont_box {
		display: block;
	}
	.curriculum .curri_scroll_nav {
		padding: 6px 0;
		position: sticky;
		top: 59px;
		left: 0;
		background-color: #FFFFFF;
		height: auto;
		min-width: auto;
		width: 100%;
		z-index: 11;
	}
	.curriculum .curri_scroll_nav .curri_drop_menu {
		display: flex;
		justify-content: space-between;
		align-items: center;
		width: calc(100% - 20px);
		padding: 10px 16px;
		margin: 0 auto;
		border: 1px solid #DDDDDD;
		border-radius: 50px;
		cursor: pointer;
	}
	.curriculum .curri_scroll_nav .curri_drop_menu span {
		font-size: 14px;
		font-weight: 700;
		color: #222222;
	}
	.curriculum .curri_scroll_nav .curri_drop_menu img {
		max-width: 100%;
		max-height: 20px;
	}
	.curriculum .curri_scroll_nav .curri_drop_menu.active img {
		transform: rotate(180deg);
	}
	.curriculum .curri_scroll_nav ul {
		display: none;
		position: absolute;
		top: 51px;
		left: 50%;
		transform: translateX(-50%);
		padding: 8px 0;
		width: calc(100% - 40px);
		background-color: #FFFFFF;
		border: 1px solid #DDDDDD;
		border-radius: 10px;
		z-index: 11;
	}
	.curriculum .curri_scroll_nav ul.active {
		display: block;
	}
	.curriculum .curri_scroll_nav li {
		display: flex;
		justify-content: space-between;
		align-items: center;
		padding: 10px 16px;
		margin: 0 auto;
		cursor: pointer;
	}
	.curriculum .curri_scroll_nav li.active {
		color: inherit;
		background-color: #FFFFFF;
	}
	.curriculum .curri_scroll_nav li span {
		padding: 0;
		font-size: 14px;
		font-weight: 700;
		color: #222222;
	}
	.curriculum .curri_scroll_nav li img {
		display: none;
		max-width: 100%;
		max-height: 20px;
	}
	.curriculum .curri_scroll_nav ul.active li.active span {
		color: #C53B47;
	}
	.curriculum .curri_scroll_nav ul.active li.active img {
		display: block;
	}
	.curriculum .type_0,
	.curriculum .type_1,
	.curriculum .type_2,
	.curriculum .type_3,
	.curriculum .type_4,
	.curriculum .type_5,
	.curriculum .type_6,
    .curriculum .type_7{
		width: 100%;
		margin-left: 0;
	}
	.curriculum .sec_03 {
		padding: 80px 0 80px 20px;
	}
	.curriculum .sec_03 .tit_box {
		display: block;
		text-align: center;
		padding-bottom: 36px;
		margin: 0 auto 36px;
		transform: none;
		left: auto;
	}
	.curriculum .sec_03 .tit_box:after {
		width: 40px;
		height: 1px;
	}
	.curriculum .sec_03 .tit_box h3 {
		font-size: 35px;
	}
	.curriculum .sec_03 .cont_box {
		flex-direction: column;
	}
	.curriculum .sec_03 .cont_box .txt_box {
		min-width: auto;
		margin-bottom: 40px;
		padding: 0 16px;
	}
	.curriculum .sec_03 .cont_box .txt_box span {
		margin-bottom: 18px;
		font-size: 25px;
	}
	.curriculum .sec_03 .cont_box .txt_box span b {
		font-size: 25px;
	}
	.curriculum .sec_03 .cont_box .txt_box p {
		font-size: 14px;
	}
	.curriculum .sec_03 .cont_box .curriSwiper .img_box {
		margin-bottom: 4px;
	}
	.curriculum .sec_03 .cont_box .curriSwiper span {
		margin-bottom: 4px;
		font-size: 14px;
	}
	.curriculum .sec_03 .cont_box .curriSwiper p {
		font-size: 20px;
	}
	.curriculum .sec_03 .cont_box .txt_box .pagi_wrap {
		display: none;
	}
	.curriculum .sec_04 {
		padding: 80px 20px;
	}
	.curriculum .sec_04 .tit_box {
		margin-bottom: 30px;
	}
	.curriculum .sec_04 .tit_box span {
		font-size: 22px;
	}
	.curriculum .sec_04 .tit_box h3 {
		font-size: 35px;
	}
	.curriculum .sec_04 .cont_box ul {
		flex-direction: column;
		gap: 15px;
		max-width: none;
	}
	.curriculum .sec_04 .cont_box ul li {
		position: relative;
		width: 100%;
	}
	.curriculum .sec_04 .cont_box ul li .img_box {
		width: 100%;
		max-width: 100%;
		border-radius: 15px;
		box-shadow: none;
		margin: 0 auto;
	}
	.curriculum .sec_04 .cont_box ul li .txt_box {
		flex-direction: column;
		position: absolute;
		left: 75%;
		top: 50%;
		transform: translate(-50%, -50%);
		display: inline-block;
		width: auto;
		min-width: 90px;
		text-align: center;
	}
	.curriculum .sec_04 .cont_box ul li .txt_box span {
		display: block;
		margin-bottom: 4px;
		font-size: 20px;
		font-weight: 700;
		color: #FFFFFF;
	}
	.curriculum .sec_04 .cont_box ul li .txt_box p {
		font-size: 12px;
		font-weight: 400;
		color: #999999;
	}
	.curriculum .sec_05 {
		padding: 80px 20px 100px;
	}
	.curriculum .sec_05 .cont_title_flex {
		display: none;
	}
	.curriculum .sec_05 .cont_title_flex_m {
		display: flex;
		flex-direction: column;
		gap: 66px;
	}
	.curriculum .sec_05 .tit_box {
		margin-bottom: 39px;
	}
	.curriculum .sec_05 .tit_box h3 {
		margin-bottom: 8px;
		font-size: 35px;
	}
	.curriculum .sec_05 .tit_box .sub_txt_box {
		margin-bottom: 16px;
	}
	.curriculum .sec_05 .tit_box .sub_txt_box span {
		font-size: 18px;
	}
	.curriculum .sec_05 .tit_box .sub_txt_box span:nth-child(2) {
		width: 1px;
		height: 8px;
	}
	.curriculum .sec_05 .tit_box .sub_txt_box span .gray_text {
		font-size: 18px;
	}
	.curriculum .sec_05 .tit_box .sub_flex_txt_box {
		gap: 17px;
		margin-bottom: 21px;
	}
	.curriculum .sec_05 .tit_box .sub_flex_txt_box .red_color_txt {
		font-size: 10px;
	}
	.curriculum .sec_05 .tit_box .sub_txt {
		font-size: 14px;
	}
	.curriculum .sec_05 .tit_box .sub_txt b {
		color: #C53B47;
	}
	.curriculum .sec_05 .cont_tab_box {
		margin-bottom: 30px;
	}
	.curriculum .sec_05 .cont_tab_box ul {
		display: flex;
		justify-content: center;
		align-items: center;
		border: 1px solid #C53B47;
	}
	.curriculum .sec_05 .cont_tab_box ul li {
		flex: 1;
		line-height: 1.2;
		border-bottom: 0;
		border-right: 1px solid #C53B47;
		background-color: #FFFFFF;
		padding: 10px 0;
		text-align: center;
		font-size: 12px;
		font-weight: 500;
		color: #C53B47;
		cursor: pointer;
	}
	.curriculum .sec_05 .cont_tab_box ul li:last-child {
		border-right: none;
	}
	.curriculum .sec_05 .cont_tab_box ul li.active {
		background-color: #C53B47;
		color: #FFFFFF;
	}
	.curriculum .sec_05 .cont_box .cont_list_box {
		margin-bottom: 43px;
	}
	.curriculum .sec_05 .cont_box .cont_list_box:last-child {
		margin-bottom: 0;
	}
	.curriculum .sec_05 .cont_box {
		/*display: none;*/
		padding-top: 0;
	}
	.curriculum .sec_05 .cont_box h3 {
		background-color: #C53B47;
		margin-bottom: 30px;
		padding: 10px 0;
		text-align: center;
		font-size: 12px;
		font-weight: 700;
		color: #FFFFFF;
	}
	.curriculum .sec_05 .cont_box h4 {
		margin-bottom: 30px;
		text-align: center;
		font-size: 16px;
		font-weight: 700;
		color: #222222;
	}
	.curriculum .sec_05 .cont_box .color_txt {
		display: block;
		padding: 12px 16px;
		border-top: 1px solid #222222;
		border-bottom: 1px solid #222222;
		font-size: 16px;
		font-weight: 700;
		color: #C53B47;
	}
	.curriculum .sec_05 .cont_box .cont_list {
		padding: 16px;
		margin-bottom: 0;
		border-bottom: 1px solid #DDDDDD;
	}
	.curriculum .sec_05 .cont_box .cont_list:last-child {
		border-bottom: none;
	}
	.curriculum .sec_05 .cont_box .cont_list.last {
		border-bottom: 1px solid #222222;
	}
	.curriculum .sec_05 .cont_box .cont_list span {
		display: block;
		margin-bottom: 12px;
		font-size: 16px;
		font-weight: 600;
		color: #222222;
	}
	.curriculum .sec_05 .cont_box .cont_list span b {
		color: #767676;
	}
	.curriculum .sec_05 .cont_box .cont_list p {
		margin-bottom: 8px;
		font-size: 12px;
		font-weight: 500;
		color: #767676;
	}
	.curriculum .sec_05 .cont_box .cont_list p:last-child {
		margin-bottom: 0;
	}
	.curriculum .sec_05 .cont_box .table_sub_txt {
		margin-top: 20px;
	}
	.curriculum .sec_05 .cont_box .table_sub_txt p {
		margin-bottom: 8px;
		font-size: 12px;
		font-weight: 400;
		color: #999999;
	}
	.curriculum .sec_05 .cont_box .table_sub_txt p:last-child {
		margin-bottom: 0;
	}
	.curriculum .sec_06 {
		padding: 100px 0;
	}
	.curriculum .sec_06 .tit-box {
		margin-bottom: 15px;
	}
	.curriculum .sec_06 .tit-box .tit {
		font-size: 30px;
		line-height: 1.333;
		margin-top: 3px;
	}
	.curriculum .sec_06 .cont-ul {
		flex-direction: column;
		gap: 15px;
	}
	.curriculum .sec_06 .cont-ul > li {
		width: 100%;
	}
	.curriculum .sec_06 .cont-ul > li.tit-box {
		margin-bottom: 25px;
	}
	.curriculum .sec_06 .cont-ul > li.tit-box img {
		max-height: 47px;
	}
	.curriculum .sec_06 .cont-ul > li.cont-list {
		border-radius: 15px;
		padding: 28px 75px 28px 16px;
	}
	.curriculum .sec_06 .cont-ul > li.cont-list .cont-tit {
		font-size: 17px;
		line-height: 1.285;
		margin-bottom: 13px;
	}
	.curriculum .sec_06 .cont-ul > li.cont-list .cont-txt {
		font-size: 12px;
		line-height: 1.458;
	}
	.curriculum .sec_08 {
		padding: 96px 0 120px;
	}
	.curriculum .sec_08 .tit_box {
		margin-bottom: 40px;
	}
	.curriculum .sec_08 .tit_box h3 {
		font-size: 35px;
		margin-bottom: 7px;
		line-height: 1.143;
	}
	.curriculum .sec_08 .tit_box .sub_txt {
		font-size: 14px;
		line-height: 1.428;
	}
	.curriculum .sec_08 .place-wrap {
		width: auto;
		margin-left: 0;
	}
	.curriculum .sec_08 .place-wrap .swiper-img-box {
		border-radius: 15px;
	}
	.curriculum .sec_08 .swiper-btn-wrap {
		height: 20px;
	}
	.curriculum .sec_08 .swiper-btn-wrap .swiper-button-next,
	.curriculum .sec_08 .swiper-btn-wrap .swiper-container-rtl .swiper-button-prev,
	.curriculum .sec_08 .swiper-btn-wrap .swiper-button-prev,
	.curriculum .sec_08 .swiper-btn-wrap .swiper-container-rtl .swiper-button-next {
		width: 10px;
		height: 20px;
	}
	.curriculum .sec_08 .swiper-btn-wrap .swiper-button-prev, .curriculum .sec_08 .swiper-btn-wrap .swiper-container-rtl .swiper-button-prev {
		left: 3%;
	}
	.curriculum .sec_08 .swiper-btn-wrap .swiper-button-next, .curriculum .sec_08 .swiper-btn-wrap .swiper-container-rtl .swiper-button-next {
		right: 3%;
	}
	.curriculum .sec_08 .place-wrap .swiper-container-horizontal>.swiper-pagination-bullets {
		position: relative;
		bottom: 0;
		margin-top: 20px;
	}
	.curriculum .sec_08 .place-wrap .swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
		width: 10px;
		height: 10px;
		background-color: #ccc;
		margin: 0 8px;
	}
	.curriculum .sec_08 .place-wrap .swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet-active {
		background: #C53B47;
	}

	.notice .top_search {
		flex-direction: column-reverse;
		justify-content: center;
		margin-bottom: 0;
	}
	.notice .top_search .search-box-wrap {
		width: 100%;
		height: 42px;
	}
	.notice .top_search .search_box {
		max-width: 282px;
		min-width: 282px;
		width: 100%;
		margin: 0 auto;
		border-radius: 5px;
	}
	.notice .top_search .search_box .search {
		width: 100%;
		max-width: 282px;
		min-width: auto;
		height: 42px;
		padding: 0 42px 0 18px;
		font-size: 13px;
	}
	.notice .top_search .search_box .search::placeholder {
		color:#ccc;
		font-size: 13px;
		font-weight: 400;
	}
	.notice .top_search .search_box .search_btn {
		height: 100%;
		width: 42px;
	}
	.notice .top_search .search_box .search_btn img {
		max-height: 15px;
	}
	.notice .top_search .num_list_txt {
		margin-top: 40px;
		padding-bottom: 10px;
		width: 100%;
	}
	.notice .top_search .num_list_txt p {
		font-size: 12px;
	}

	.pagi-wrap {
		margin: 40px 0 80px;
	}
	.pagi-wrap .pg-num {
		width: 22px;
		line-height: 22px;
		font-size: 12px;
		font-weight: 700;
		color: #313131;
	}
	.pagi-wrap .pg-num.active {
		width: 22px;
		height: 22px;
		font-size: 12px;
	}
	.acadNews .cont-wrap {
		padding-bottom: 66px;
	}
	.acadNews .cont-wrap .cont-title {
		padding: 25px 0;
		margin-bottom: 25px;
		border-bottom: 1px solid #C53B47;
		font-size: 28px;
	}
	.acadNews .cont-wrap .cont-date {
		margin-top: 7px;
		font-size: 14px;
	}
	.acadNews .cont-wrap p {
		font-size: 14px;
		word-break: break-all;
	}
	.acadNews .btn-list {
		margin: 66px auto 42px;
		border: 1px solid #C53B47;
		padding: 7px 15px;
		width: auto;
		line-height: 1.2;
		border-radius: 16px;
		font-size: 12px;
	}
	.acadNews .notice_view_box .notice_view {
		padding: 15px 20px;
	}
	.acadNews .notice_view_box .notice_view .ico_box {
		margin-right: 11px;
		max-width: 12px;
		height: 7px;
	}
	.acadNews .notice_view_box .notice_view .ico_box img {
		display: block;
		max-width: 12px;
		width: 100%;
		vertical-align: top;
	}
	.acadNews .notice_view_box .notice_view span {
		width: 31px;
		margin-right: 24px;
		font-size: 12px;
	}
	.acadNews .notice_view_box .notice_view p {
		font-size: 12px;
	}


	/* 삭발디자인 */
	.pg_detail .board-frame {
		margin-top: 0;
	}
	.pg_density .notice .pg-tit {
		padding: 20px 16px 15px;
	}
	.pg_density .density-swiper-wrap {
		padding-bottom: 75px;
	}
	.pg_density .density-swiper-wrap .density-swiper {
		max-width: 465px;
		max-height: 450px;
		width: 70vw;
		height: 65vw;
	}
	.pg_density .density-swiper-wrap .density-swiper .swiper-slide {
		max-width: 395px;
		width: 55vw;
	}
	.pg_density .density-swiper-wrap .density-swiper .swiper-slide .view-more {
		display: none;
		opacity: 0;
	}
	.pg_density .density-swiper-wrap .density-swiper .swiper-slide.prev {
		margin-right: 20%;
		margin-left: -20%;
	}
	.pg_density .density-swiper-wrap .density-swiper .swiper-slide.next {
		margin-right: -20%;
		margin-left: 20%;
	}
	.pg_density .density-swiper-wrap .density-swiper .swiper-slide .thumb-box {
		max-width: 365px;
		width: calc(55vw - 30px);
	}
	.pg_density .density-swiper-wrap .swiper-container-horizontal>.swiper-pagination-bullets {
		bottom: -25px;
	}
	.pg_density .density-swiper-wrap .swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
		width: 8px;
		height: 8px;
		margin: 0 10px;
	}
	.pg_density .swiper-button-next {
		border: 0;
		width: 60px;
		height: 60px;
		background: transparent;
		right: -40px;
	}
	.pg_density .swiper-button-next::after {
		width: 20px;
		height: 20px;
	}
	.pg_density .swiper-button-prev {
		border: 0;
		width: 60px;
		height: 60px;
		background: transparent;
		left: -40px;
	}
	.pg_density .swiper-button-prev::after {
		width: 20px;
		height: 20px;
	}
	.pg_density .density-list-wrap {
		padding: 12px 0;
	}
	.pg_density .density-list-wrap .density-list {
		gap: 18px 12px;
	}
	.pg_density .density-list-wrap .density-list li {
		max-width: calc(50% - 12px / 2);
		min-width: calc(50% - 12px / 2);
	}
	.pg_density .density-list-wrap .density-list li.no-data {
		font-size: 16px;
		padding: 18px 0;
	}
	.pg_density .density-list-wrap .density-list .density-box .txt-title {
		font-size: 13px;
	}

	/* 가맹점 */
	.franchise .sec_01 img {
		width: 100%;
	}
	.franchise .sec_01 .txt_box {
		left: 20px;
		bottom: 111px;
	}
	.franchise .sec_01 .txt_box p {
		margin-bottom: 6px;
		font-size: 14px;
	}
	.franchise .sec_01 .txt_box h3 {
		font-size: 45px;
	}
	.franchise .sec_02 {
		padding: 100px 0;
	}
	.franchise .sec_02 .tit_box {
		margin-bottom: 40px;
	}
	.franchise .sec_02 .tit_box h3 {
		margin-bottom: 17px;
		font-size: 35px;
	}
	.franchise .sec_02 .tit_box p {
		font-size: 14px;
		letter-spacing: -.6px;
	}
	.franchise .sec_02 .cont_box ul {
		flex-direction: column;
		gap: 15px;
	}
	.franchise .sec_02 .cont_box ul li {
		flex: 0 0 auto;
		max-width: 225px;
		width: 100%;
		padding: 56px 0;
		border-radius: 15px;
		box-shadow: 2px 2px 8px 0 rgba(0, 0, 0, 0.06);
	}
	.franchise .sec_02 .cont_box ul li .img_box {
		margin-bottom: 0;
	}
	.franchise .sec_02 .cont_box ul li .img_box img {
		max-height: 80px;
	}
	.franchise .sec_02 .cont_box ul li span {
		font-size: 20px;
	}
	.franchise .sec_03 {
		padding: 85px 0 50px;
	}
	.franchise .sec_03 .tit_box {
		margin-bottom: 40px;
	}
	.franchise .sec_03 .tit_box h3 {
		font-size: 35px;
	}
	.franchise .sec_03 .tit_box .logo_img_box {
		margin-top: 12px;
	}
	.franchise .sec_03 .tit_box .logo_img_box img {
		max-height: 20px;
	}
	.franchise .sec_03 .headOfficeSwiper {
		position: relative;
		padding-bottom: 60px;
	}
	.franchise .sec_03 .headOfficeSwiper li img {
		display: block;
		width: 100%;
	}
	.franchise .sec_03 .swiper-pagination {
		bottom: 0;
	}
	.franchise .sec_03 .swiper-pagination .swiper-pagination-bullet {
		margin: 0 8px;
		width: 10px;
		height: 10px;
		background: #CCCCCC;
		opacity: 1;
	}
	.franchise .sec_03 .swiper-pagination .swiper-pagination-bullet-active {
		background: #C53B47;
	}
	.franchise .sec_04 {
		padding: 46px 0 100px;
	}
	.franchise .sec_04 .tit_box {
		margin-bottom: 40px;
	}
	.franchise .sec_04 .tit_box h3 {
		font-size: 35px;
	}
	.franchise .sec_04 .tit_box .logo_img_box {
		margin-top: 12px;
	}
	.franchise .sec_04 .tit_box .logo_img_box img {
		max-height: 14px;
	}
	.franchise .sec_04 .spotSwiper {
		position: relative;
		padding-bottom: 43px;
	}
	.franchise .sec_04 .spotSwiper li .img_box {
		overflow: hidden;
		margin-bottom: 20px;
	}
	.franchise .sec_04 .spotSwiper li .img_box img {
		display: block;
		width: 100%;
	}
	.franchise .sec_04 .spotSwiper li span {
		display: block;
		text-align: center;
		font-size: 20px;
		font-weight: 500;
		color: #222222;
	}
	.franchise .sec_04 .swiper-pagination {
		bottom: 0;
	}
	.franchise .sec_04 .swiper-pagination .swiper-pagination-bullet {
		margin: 0 8px;
		width: 10px;
		height: 10px;
		background: #CCCCCC;
		opacity: 1;
	}
	.franchise .sec_04 .swiper-pagination .swiper-pagination-bullet-active {
		background: #C53B47;
	}
	.franchise .sec_05 {
		padding: 100px 0;
		background: #111111;
	}
	.franchise .sec_05 .cont_box {
		gap: 40px;
	}
	.franchise .sec_05 .cont_box .cont_list {
		overflow: hidden;
	}
	.franchise .sec_05 .cont_box .cont_list h3 {
		margin-bottom: 0;
		font-size: 30px;
	}
	.franchise .sec_05 .cont_box .cont_list .img_box {
		width: 79.689%;
		margin-left: auto;
		margin-bottom: 69px;
	}
	.franchise .sec_05 .cont_box .cont_list .img_box img {
		width: 100%;
		margin: 0 auto;
	}
	.franchise .sec_05 .cont_box .cont_list .txt_box {
		position: absolute;
		max-width: none;
		top: auto;
		bottom: 0;
		transform: none;
		width: 83.203%;
		background: #fff;
		padding: 27px 8px 27px 30px;
	}
	.franchise .sec_05 .cont_box .cont_list span {
		margin-bottom: 8px;
		font-size: 24px;
	}
	.franchise .sec_05 .cont_box .cont_list p {
		font-size: 14px;
		line-height: 1.607;
	}
	.franchise .sec_06 {
		padding: 30px 0;
		background-image: url('/common/img/studentFavor/franchise/sec-06-bg-m.jpg');
	}
	.franchise .sec_06 p {
		margin-bottom: 20px;
		font-size: 16px;
	}
	.franchise .sec_06 .franchise_btn {
		gap: 0 4px;
		border: 1px solid #FFFFFF;
		border-radius: 33px;
		padding: 8px 7px;
		width: auto;
		max-width: 96px;
		margin: 0 auto;
	}
	.franchise .sec_06 .franchise_btn span {
		font-size: 12px;
	}
	.franchise .sec_06 .franchise_btn img {
		max-height: 17px;
	}

	/* 취업 */
	.employment .sec_01 .txt_box {
		left: 20px;
		bottom: 20px;
	}
	.employment .sec_01 .txt_box p {
		margin-bottom: 6px;
		font-size: 14px;
	}
	.employment .sec_01 .txt_box h3 {
		font-size: 30px;
	}
	.employment .cont_btn_box ul {
		display: flex;
		justify-content: center;
		align-items: center;
		border:none;
	}
	.employment .cont_btn_box ul li {
		flex: 1;
		padding: 0;
		border-right:none;
	}
	.employment .cont_btn_box ul li:first-child {
		border-right: 1px solid #ddd;
	}
	.employment .cont_btn_box ul li > a {
		display: flex;
		background-color: #C53B47;
		color: #fff;
		padding: 17px 20px;
		font-size: 16px;
		font-weight: 500;
		justify-content: space-between;
		align-items: center;
	}
	.employment .cont_btn_box ul li > a > img {
		width:6px;
	}
	.employment .sec_02 {
		padding: 100px 0;
	}
	.employment .sec_02 .flex_box {
		flex-direction: column;
		gap: 40px;
	}
	.employment .sec_02 .flex_box:first-child {
		flex-direction: column-reverse;
		margin-bottom: 60px;
	}
	.employment .sec_02 .flex_box > div:first-child {
		width: 100%;
	}
	.employment .sec_02 .flex_box:first-child .txt_box {
		text-align: center;
	}
	.employment .sec_02 .img_box {
		border-radius: 15px;
	}
	.employment .sec_02 .img_box img {
		display: block;
	}
	.employment .sec_02 .txt_box span {
		font-size: 14px;
		margin-bottom: 16px;
	}
	.employment .sec_02 .txt_box h3 {
		font-size: 35px;
		margin-bottom: 0;
	}
	.employment .sec_02 .txt_box p {
		font-size: 14px;
	}
	.employment .sec_02 .txt_box p:first-child {
		margin-top: 16px;
		margin-bottom: 16px;
	}
	.employment .video-sec {
		padding: 100px 0;
	}
	.employment .sec_03 {
		padding: 97px 0 120%;
		background-image: url('/common/img/studentFavor/employment/sec-03-bg-m.jpg');
		background-position: center bottom;
	}
	.employment .sec_03 h3 {
		font-size: 30px;
		width: 93.75%;
		margin: 0 auto 40px;
	}
	.employment .sec_03 p {
		font-size: 14px;
		width: 93.75%;
		margin: 0 auto;
		letter-spacing: -.8px;
	}
	.employment .sec_04 {
		padding: 97px 0 100px;
	}
	.employment .sec_04 .tit_box {
		margin-bottom: 40px;
	}
	.employment .sec_04 .tit_box h3 {
		font-size: 30px;
	}
	.employment .sec_04 .cont_inner.contTop {
		margin-bottom: 10px;
	}
	.employment .sec_04 .cont_inner .cont {
		gap: 0 10px;
	}
	.employment .sec_04 .cont_inner .cont .item .img-wrap {
		border-radius: 10px;
		max-width: 165px;
		max-height: 165px;
	}
	/*.employment .sec_04 .pagi_wrap {*/
	/*	display: none;*/
	/*}*/
	/*.employment .sec_04 .classSwiper li {*/
	/*	border-radius: 15px;*/
	/*}*/
	/*.employment .sec_04 .classSwiper li img {*/
	/*	width: 100%;*/
	/*}*/

	/* 상담 */
	.pg_detail.pg_board.consult .minframe {
		max-width: 500px;
		width: 100%;
		margin: 0 auto;
		padding: 0 18px;
	}
	.pg_detail.pg_board.consult .pg-tit > p {
		display: none;
	}
	.online-consulting .pg-tit {
		padding: 20px 16px;
	}
	.notice .pg-tit h2 {
		margin-bottom: 14px;
		font-size: 40px;
	}
	.online-consulting .txt_sub_banner {
		margin: 0 auto 40px;
	}
	.online-consulting .txt_sub_banner img {
		max-height: 67px;
	}
	.pg_detail.pg_board.consult .tab {
		width: 100%;
		height: 39px;
		padding: 4px;
	}
	.pg_detail.pg_board.consult .tab .tab-item {
		font-size: 12px;
		padding: 15px 0;
		flex: 1;
		width: 100%;
		line-height: 1;
		letter-spacing: -0.03em;
	}
	.pg_detail.pg_board.consult .tab-panel {
		padding-top: 30px;
	}
	.pg_detail.pg_board.consult .form-box .form-title {
		padding-bottom: 6px;
		font-size: 12px;
		gap: 10px;
		margin-bottom: 20px;
	}
	.pg_detail.pg_board.consult .form-box .form-title label {
		font-size: 20px;
	}
	.pg_detail.pg_board.consult .form-input .form-check,
	.pg_detail.pg_board.consult .form-input.flex-direction-column .form-check {
		padding: 0 6px;
	}
	.pg_detail.pg_board.consult .form-check input[type="checkbox"] {
		width: 15px;
		height: 15px;
		margin-bottom: 2px;
	}
	.pg_detail.pg_board.consult .form-check label.class {
		font-size: 12px;
		gap: 6px;
		font-weight: 600;
	}
	.pg_detail.pg_board.consult .form-check label.class > span {
		width: 20px;
		height: 20px;
		border-radius: 30px;
	}
	.pg_detail.pg_board.consult .form-check input[type=checkbox]:checked + label.class > span::before {
		width: 6px;
		height: 6px;
	}
	.pg_detail.pg_board.consult .form-group .form-input {
		gap: 24px 0;
		font-size: 12px;
	}
	.pg_detail.pg_board.consult .form-group-wrap {
		margin-bottom: 18px;
		gap: 18px;
	}
	.pg_detail.pg_board.consult .form-group-wrap .form-group {
		gap: 8px;
	}
	.pg_detail.pg_board.consult .form-group > label {
		font-size: 16px;
		line-height: 1.25;
	}
	.pg_detail.pg_board.consult .m-only {
		margin-bottom: 8px;
	}
	.pg_detail.pg_board.consult input[type=text] {
		border-radius: 4px;
		padding: 0 14px;
		height: 38px;
		font-size: 14px;
	}
	.pg_detail.pg_board.consult .form-group .form-input.phone-input {
		width: 100%;
	}
	.pg_detail.pg_board.consult textarea {
		border-radius: 4px;
		padding: 10px 14px;
		font-size: 14px;
		height: 200px;
	}
	#frmFranchInput .franch-info {
		gap: 18px;
	}
	.pg_detail.pg_board.consult #frmFranchInput .form-group-wrap .form-group {
		gap: 8px;
	}
	.pg_detail.pg_board.consult #frmFranchInput .m-only {
		margin-bottom: 8px;
	}
	.pg_detail.pg_board.consult .counsel-form .form-group.policy-wrap {
		margin-top: 20px;
		margin-bottom: 30px;
		padding-bottom: 30px;
		font-size: 12px;
		padding-top: 0;
		padding-left: 0;
		text-align: left;
		border-top: 0;
		border-bottom: 1px solid #c53b4726;
	}
	.pg_detail.pg_board.consult .policy-wrap label {
		display: block;
		padding-left: 26px;
		margin-bottom: 20px;
	}
	.pg_detail.pg_board.consult .policy-wrap label:before {
		top: 0;
		transform: translateY(0);
		width: 20px;
		height: 20px;
		border-radius: 2px;
	}
	.pg_detail.pg_board.consult .frame.privacy b {
		display: block;
		font-size: 14px;
		margin-bottom: 5px;
	}
	.pg_detail.pg_board.consult .frame.privacy span {
		font-size: 12px;
		font-weight: 400;
		color: #999999;
	}
	.pg_detail.pg_board.consult .frame.privacy a {
		position: absolute;
		top: 1px;
		left: 145px;
		text-decoration: none;
		margin-left: 7px;
		font-size: 12px;
	}
	.notice .btn-list {
		background-color: #c53b47;
		color: #fff;
		padding: 7px 15px;
		border-radius: 16px;
		font-size: 12px;
		width: auto;
		line-height: 1.2;
	}

	/* 공지사항 */
	.notice .pg-tit {
		padding: 20px 16px;
	}
	.notice .pg-tit span {
		font-size: 12px;
	}
	.notice .txt_sub_banner {
		margin: 0 auto 39px;
	}
	.notice .txt_sub_banner img {
		max-height: 67px;
	}
	.notice .board-wrap .list-wrap {
		flex-direction: column;
		justify-content: flex-start;
		align-items: flex-start;
		padding: 15px 10px;
		font-size: 14px;
	}
	.notice .board-wrap .list-wrap.pin {
		padding: 15px 10px;
	}
	.notice .board-wrap .list-wrap .pin-txt {
		font-size: 14px;
	}
	.notice .board-wrap .list-wrap .list {
		padding: 0;
		max-width: 100%;
	}
	.notice .board-wrap .list-wrap .date {
		display: block;
		margin-top: 3px;
		font-size: 11px
	}
	.pg_board .cont-wrap .cont-title {
		padding: 25px 0;
		margin-bottom: 25px;
		border-bottom: 1px solid #C53B47;
		font-size: 28px;
	}
	.notice .cont-wrap {
		padding-bottom: 66px;
	}
	.notice .cont-wrap .cont-date {
		margin-top: 7px;
		font-size: 14px;
	}
	.notice .cont-wrap p {
		font-size: 14px;
	}
	.notice .btn-list {
		margin: 66px auto 42px;
		border: 1px solid #C53B47;
		background-color: #FFFFFF;
		padding: 7px 15px;
		border-radius: 16px;
		font-size: 12px;
		font-weight: 400;
		color: #C53B47;
	}
	.notice .notice_view_box .notice_view {
		padding: 15px 20px;
	}
	.notice .notice_view_box .notice_view .ico_box {
		margin-right: 11px;
		min-width: 11px;
		height: 7px;
	}
	.notice .notice_view_box .notice_view .ico_box img {
		min-width: 11px;
		max-height: 7px;
	}
	.notice .notice_view_box .notice_view span {
		width: 31px;
		margin-right: 24px;
		font-size: 12px;
	}
	.notice .notice_view_box .notice_view p {
		font-size: 12px;
	}

	/* 수강생 실제 후기 */
	.pg-detail.review .pg-tit > p {
		display: none;
	}
	.review .vw-list-head {
		margin-bottom: 7px;
	}
	.review .vw-list-head > h3 {
		font-size: 13px;
		line-height: 1;
	}
	.review .vw-list-head .vw-sort button {
		font-size: 13px;
		line-height: 1;
	}
	.review .vw-list-head .vw-sort button:last-child {
		padding-left: 12px;
		margin-left: 12px;
	}
	.vw-id {
		font-size: 17px;
		font-weight: bold;
		line-height: 20px;
		vertical-align: middle;
	}
	.review .vw-id .icon {
		width: 30px;
		height: 30px;
	}
	.review .vw-tit-box {
		padding: 15px 5px;
	}
	.review .vw-content-box {
		padding: 16px;
	}
	.review .vw-content-box .feed {
		font-size: 13px;
		line-height: 1.269;
	}
	.review .pagi-wrap {
		margin: 0 auto 80px;
	}
	.review .vw-comment-reg-box > .inner {
		flex-direction: column;
		gap: 16px;
	}
	.review .vw-comment-reg-box > .inner #contents {
		flex: none;
		max-width: none;
		width: 100%;
		height: 160px;
		padding: 16px;
		font-size: 14px
	}
	.review .vw-img-wrap {
		margin-top: 0;
		bottom: 103px;
		right: 13px;
	}
	.vw-upload .btn-vwf {
		width: 29px;
		height: 26px;
	}
	.vw-upload .btn-vwf img {
		max-height: 21px;
	}
	.review .vw-comment-reg-box .inner > button {
		width: 100%;
		max-width: none;
		flex: none;
		border-radius: 4px;
		background: #C53B47;
		font-size: 17px;
		font-weight: normal;
		height: 55px;
	}

	/* 유튜브 */
	.pg_youtube .notice .pg-tit span {
		display: none;
	}
	.pg_youtube .notice .top_search .search-box-wrap {
		max-width: 282px;
		margin: 0 auto;
		width: 100%;
		height: auto;
		gap: 8px;
	}
	.pg_youtube .custom-select-box .select-txt {
		height: 43px;
		padding: 0 55px 0 16px;
		font-size: 12px;
		border-radius: 5px;
	}
	.pg_youtube .custom-select-box .select-txt::after {
		border-top: 7px solid #C53B47;
		border-left: 7px solid transparent;
		border-right: 7px solid transparent;
	}
	.pg_youtube .custom-select-box .select-list label {
		padding: 14px 16px;
		font-size: 14px;
		gap: 10px;
	}
	.pg_youtube .custom-select-box .select-list label span {
		width: 18px;
		height: 18px;
	}
	.pg_youtube .youtube-list-wrap .youtube-list {
		gap: 25px 10px;
	}
	.pg_youtube .youtube-list-wrap .youtube-list > li {
		max-width: 100%;
		min-width: 100%;
	}
	.pg_youtube .youtube-list-wrap .youtube-list .youtube-box .txt-box {
		margin-top: 4px;
	}
	.pg_youtube .youtube-list-wrap .youtube-list .youtube-box .txt-box .txt-title {
		font-size: 16px;
		font-weight: bold;
		color: #222222;
		display: -webkit-box;
		text-overflow: ellipsis;
		overflow: hidden;
		word-break: break-word;
		-webkit-line-clamp: 2;
		-webkit-box-orient: vertical;
	}
	.pg_youtube .youtube-list-wrap .youtube-list .youtube-box .txt-box .txt-title > span {
		color: #999;
	}

	/* 자유게시판 */
	.pg_free_board .notice .top_search .search-box-wrap {
		flex-direction: column;
		max-width: 282px;
		margin: 0 auto;
		width: 100%;
		height: auto;
		gap: 8px;
	}
	.pg_free_board .custom-select-box .select-txt {
		background-color: #ffffff;
		border: 1px solid #DDDDDD;
		height: 43px;
		padding: 0 55px 0 16px;
		font-size: 14px;
		font-weight: 700;
		border-radius: 5px;
	}
	.pg_free_board .custom-select-box .select-txt img {
		position: absolute;
		top: 11px;
		right: 18px;
		max-width: 20px;
	}
	.pg_free_board .custom-select-box.active .select-txt img {
		transform: rotate(180deg);
	}
	.pg_free_board .custom-select-box .select-txt::after {
		border: none;
	}
	.pg_free_board .custom-select-box .select-list label {
		padding: 14px 16px;
		font-size: 14px;
		font-weight: 700;
		gap: 10px;
	}
	.pg_free_board .custom-select-box .select-list label.active {
		justify-content: space-between;
		background-color: #ffffff;
		color: #C53B47;
	}
	.pg_free_board .custom-select-box .select-list label.active img {
		display: block;
		max-width: 20px;
	}
	.pg_free_board .custom-select-box .select-list label span {
		width: 18px;
		height: 18px;
	}
	.pg_free_board .board-wrap .list-wrap {
		padding: 0;
	}
	.pg_free_board .board-wrap .list-wrap .list {
		flex-direction: column;
		gap: 2px;
		padding: 9px 0;
		min-height: auto;
	}
	.pg_free_board .list-wrap .list .txt {
		font-size: 14px;
	}
	.pg_free_board .list-wrap .list .front_txt {
		margin-right: auto;
		width: 100%;
		display: block;
		font-size: 11px;
		font-weight: 500;
		color: #999999;
		white-space: nowrap;
		-webkit-line-clamp: none;
	}
	.pg_free_board .list-wrap .list .content {
		margin-right: auto;
		width: 100%;
	}
	.pg_free_board .list-wrap .list .content .content_txt {
		text-overflow: ellipsis;
		white-space: wrap;
		overflow: hidden;
		word-break: break-word;
		display: -webkit-box;
		-webkit-line-clamp: 2;
		-webkit-box-orient: vertical;
	}
	.pg_free_board .list-wrap .list .content .hits {
		display: none;
	}
	.pg_free_board .list-wrap .list .right_wrap {
		width: 100%;
		margin-top: 3px;
	}
	.pg_free_board .list-wrap .list .name {
		display: inline-block;
		margin-right: 11px;
		width: auto;
		max-width: 80px;
		text-align: left;
		font-size: 11px;
		white-space: nowrap;
		-webkit-line-clamp: none;
	}
	.pg_free_board .list-wrap .list .date {
		display: inline-block;
		margin-right: 16px;
		margin-top: 0;
		width: auto;
		text-align: left;
		font-size: 11px;
		white-space: nowrap;
		-webkit-line-clamp: none;
	}
	.pg_free_board .list-wrap .list .right_wrap .hits_wrap {
		display: flex;
		justify-content: flex-start;
		align-items: center;
		gap: 3px;
		font-size: 11px;
		font-weight: 400;
		color: #999999;
		font-family: "Mulish", sans-serif;
	}
	.pg_free_board .list-wrap .list .right_wrap .hits_wrap img {
		max-width: 12px;
	}
	.pg_free_board .board_btn_wrap {
		justify-content: center;
		margin-top: 23px;
	}
	.pg_free_board .board_btn_wrap .board_write_btn {
		display: block;
		text-align: center;
		width: 100%;
		background-color: #C53B47;
		border: 1px solid #C53B47;
		border-radius: 15px;
		padding: 7px 0;
		font-size: 12px;
	}
	/* 이벤트 */
	.gallery-type-list .board-list-wrap {
		padding: 20px 0 0;
		gap: 20px;
		margin-bottom: 0;
	}
	.gallery-type-list .board-list-wrap .info-wrap {
		padding: 16px 15px;
	}
	.gallery-type-list .board-list-wrap .txt-wrap {
		gap: 9px;
		margin-bottom: 0;
	}
	.gallery-type-list .board-list-wrap .txt-wrap > p {
		width: calc(100% - 62px);
		font-size: 16px;
		line-height: 1.437;
	}
	.gallery-type-list .board-list-wrap .txt-wrap > span {
		border-radius: 10px;
		font-size: 12px;
		width: 53px;
		min-width: auto;
		padding: 2px 0;
	}
	.gallery-type-list .board-list-wrap p.date {
		color: #999;
		font-size: 12px;
		line-height: 1.875;
		margin-top: 6px;
	}
	.gallery-type-view .cont-wrap .cont-title {
		gap: 7px;
	}
	.gallery-type-view .cont-title > .inbox {
		flex-direction: column;
		gap: 0;
	}
	.gallery-type-view .cont-title .state {
		font-weight: 500;
		border-radius: 12px;
		font-size: 20px;
	}
	.gallery-type-view .cont-title h3 {
		max-width: none;
		width: 100%;
	}

	/* 로그인 */
	.pg_login {
		margin-top: 0;
		padding-top: 0;
		padding-bottom: 100px;
	}
	.pg_login .login-wrap {
		max-width: 500px;
	}
	.pg-detail .pg_login .pg-tit {
		padding: 60px 16px 20px;
	}
	.pg-detail .pg_login .pg-tit > h2 {
		font-size: 40px;
		letter-spacing: -0.03em;
		line-height: 1.4;
	}
	.pg_login .login-wrap .loginForm {
		padding-right: 0;
	}
	.pg_login .loginForm dd input[type="text"],
	.pg_login .loginForm dd input[type="password"] {
		height: 50px;
		font-size: 13px;
		padding: 0 1.5rem;
	}
	.pg_login .login-wrap .login-btn {
		left: 0;
		right: auto;
		top: 113px;
		width: 100%;
		border-radius: 5px;
		font-size: 16px;
		line-height: 1;
		padding: 17.2px 0;
	}
	.loginForm .id-save {
		margin-top: 4.3rem;
	}
	.pg_login .form-checkbox {
		margin-top: 1rem;
	}
	.pg_login .form-checkbox > label {
		padding-left: 25px;
		font-size: 1rem;
	}
	.pg_login .form-checkbox > label:before {
		width: 20px;
		height: 20px;
		margin-top: 0;
		border-radius: 3px;
		font-size: 1rem;
	}
	.pg_login .social-wrap {
		flex-wrap: wrap;
		margin-top: 26px;
		gap: 0.2rem 0;
	}
	.pg_login .social-wrap > div {
		width: calc(100%/3);
		min-width: 132px;
		margin: 0 0.2rem;
	}
	.pg_login .btn-snsLogin {
		width: 100%;
		height: 40px;
		border-radius: 5px;
		padding: 0 0.7rem;
		font-size: 13px;
	}
	.pg_login .btn-snsLogin:after {
		left: 35px;
		width: 1px;
		height: 10px;
	}
	.pg_login .btn-snsLogin.__kakao span:first-child {
		display: block;
		height: 15px;
	}
	.pg_login .btn-snsLogin img {
		max-height: 15px;
		vertical-align: middle;
	}
	.pg_login .btn-snsLogin.__kakao span:first-child img {
		vertical-align: top;
	}
	.pg_login .btn-snsLogin .bsL-txt {
		white-space: normal;
		padding-left: 18px;
	}
	.pg_login .login-tail > li {
		margin-top: 0.5rem;
		margin-bottom: 0;
		font-size: 13px;
	}
	.pg-detail .pg_join .pg-tit {
		padding: 60px 16px 20px;
	}
	.pg-detail .pg_join .pg-tit > h2 {
		font-size: 40px;
	}
	.pg_join {
		max-width: 500px;
		margin: 0 auto;
	}
	.pg_join .step-wrap {
		position: relative;
		justify-content: space-between;
		gap: 0;
	}
	.pg_join .step-wrap::before {
		content: '';
		position: absolute;
		top: 40px;
		left: 0;
		width: 100%;
		height: 1px;
		border: 1px dashed #CCCCCC;
	}
	.pg_join .step {
		width: 90px;
		height: 90px;
		font-size: 12px;
	}
	.pg_join .step .agr {
		font-size: 15px;
	}
	.pg_join .step-02:before,
	.pg_join .step-02:after {
		content: none;
	}
	.join-agree-wrap {
		margin-top: 0;
	}
	.join-agree {
		padding-top: 30px;
	}
	.pg_join .join-agree > h4 {
		font-size: 22px;
	}
	.pg_join .join-agree > div {
		height: 110px;
		padding: 1rem;
		font-size: 13px;
	}
	.pg_join .join-agree > p {
		margin-top: 0.5rem;
	}
	.pg_join .form-checkbox > label {
		padding-left: 25px;
		font-size: 14px;
	}
	.pg_join .form-checkbox > label:before {
		width: 20px;
		height: 20px;
		border-radius: 3px;
	}
	.pg_join .ja-btn-wrap {
		margin-bottom: 80px;
		display: flex;
	}
	.pg_join .ja-btn-wrap a {
		display: block;
		width: 100%;
		font-size: 14px;
		line-height: 48px;
		border: 1px solid #C53B47;
		border-radius: 50rem;
		margin: 0 0.5rem;
	}
	.pg_join .ja-btn-wrap a .i-next {
		position: relative;
		padding-right: 0;
		margin-right: 1rem;
		background: none;
	}
	.pg_join .ja-btn-wrap a .i-next::before,
	.pg_join .ja-btn-wrap a .i-next::after {
		content: '';
		width: 2px;
		height: 9px;
		background-color: #fff;
		position: absolute;
		top: 4px;
		right: -20%;
	}
	.pg_join .ja-btn-wrap a .i-next::before {
		transform: rotate(-45deg);
	}
	.pg_join .ja-btn-wrap a .i-next::after {
		transform: rotate(45deg);
		top: 9px;
	}
	.pg_join .joinForm-wrap {
		margin: 0 auto;
	}
	.pg_join .notice-txt {
		margin-top: 40px;
		margin-bottom: 2em;
		font-size: 13px;
	}
	.pg_join .req:before {
		width: 6px;
		height: 6px;
		margin-right: 3px;
	}
	.pg_join .join-form .req::after {
		width: 6px;
		height: 6px;
		margin-left: 3px;
	}
	.pg_join tbody tr {
		display: flex;
		flex-direction: column;
		margin-bottom: 2rem;
	}
	.pg_join tbody th {
		vertical-align: top;
		line-height: 1;
		font-size: 15px;
		padding-bottom: 0.5rem;
	}
	.pg_join tbody td {
		padding: 0;
		display: block;
	}
	.pg_join tbody td span {
		display: block;
		padding-left: 0;
		padding-top: 0.5rem;
		font-size: 12px;
	}
	.pg_join .input-btn-box {
		gap: 0;
	}
	.pg_join .btn-gray {
		width: 90px;
		margin-left: 0.2rem;
		height: 40px;
		font-size: 13px;
		font-weight: 400;
	}
	.pg_join .wrap {
		max-width: none;
		gap: 0.2rem;
	}
	.pg_join .address-wrap .wrap {
		display: block;
	}
	.pg_join .wrap.__phone select,
	.pg_join .wrap.__phone input[type='number'] {
		height: 40px;
		width: calc(100% / 3);
		font-size: 13px;
		padding: 8.5px 0 8.5px 1rem;
	}
	.pg_join .btn-blk {
		width: 100%;
		height: 40px;
		margin-top: 0.5rem;
		font-size: 13px;
	}
	.pg_join .wrap.__email input[type='text'] {
		width: calc(100% / 2);
	}
	.pg_join select#selMail{
		margin-top: 0.2rem;
	}
	.pg_join select#selMail,
	.pg_join select#userJob {
		width: 100%;
		height: 40px;
		font-size: 13px;
		padding: 8.5px 0 8.5px 1rem;
	}
	.pg_join .__search {
		gap: 0;
		margin-bottom: 0;
	}
	.pg_join .address-wrap .wrap input {
		margin-top: 5px;
	}
	.pg_join input[type='text'],
	.pg_join input[type='password'],
	.pg_join input[type='name'],
	.pg_join input[type='tel'],
	.pg_join input[type='search'],
	.pg_join input[type='number'],
	.pg_join select {
		border: 1px solid #CCCCCC;
		border-radius: 5px;
		width: 100%;
		height: 40px;
		max-width: none;
		padding: 8.5px 0 8.5px 1rem;
	}
	.pg_join .recom-wrap {
		padding: 2rem 1rem;
		margin-bottom: 50px;
	}
	.pg_join .recom-wrap > h1 {
		font-size: 20px;
		margin-bottom: 0.5rem;
	}
	.pg_join .recom-wrap > p {
		font-size: 14px;
		line-height: 1.2;
	}
	.pg_join .btn-search {
		width: 90px;
		height: 40px;
		font-size: 14px;
	}
	.pg_join .info-wrap {
		justify-content: flex-start;
		align-items: flex-start;
		gap: 5px;
		text-align: left;
		font-size: 14px;
		line-height: 1.2;
	}
	.pg_join .info-wrap img {
		display: block;
		width: 18px;
		height: 18px;
	}

	/* 마이페이지 */
	.pg_my .coupon-wrap {
		flex-direction: column;
		width: calc(100% - 40px);
		max-width: 720px;
		box-shadow: 0 0 10px #00000017;
		border-radius: 5px;
		margin-bottom: 40px;
		padding: 18px;
		font-size: 15px;
	}
	.pg_my .coupon-wrap:after {
		content: none;
	}
	.pg_my .coupon-wrap .left-wrap {
		flex-direction: column;
		text-align: center;
		gap: 13px;
		width: 100%;
		justify-content: center;
		padding-bottom: 18px;
		border-bottom: 1px dashed #999;
	}
	.pg_my .coupon-wrap .left-wrap img {
		width: 100%;
		max-height: 51px;
	}
	.pg_my .coupon-wrap .copy-wrap {
		justify-content: center;
		flex-wrap: wrap;
		gap: 5px;
	}
	.pg_my .coupon-wrap .copy-wrap button img {
		max-width: 10px;
		max-height: 10px;
	}
	.pg_my .coupon-wrap .right-wrap {
		width: 100%;
		padding-top: 18px;
	}
	.pg_my .coupon-wrap .status {
		margin: 0 auto;
		width: 70px;
		line-height: 25px;
		font-size: 12px;
	}
	.pg_my .tab {
		width: 100%;
		height: 44px;
	}
	.pg_my .tab .tab-item {
		font-size: 12px;
		padding: 15px 0;
		flex: 1;
		width: 100%;
		line-height: 1;
		letter-spacing: -0.03em;
	}
	.pg_my .tab-panel {
		padding-top: 30px;
	}
	.pg_my .notice-txt {
		margin-top: 0;
	}

	/* 수강생 포트폴리오 */
	.studentW .board-list-wrap {
		margin-bottom: 70px;
	}
	.pg-detail .studentW .pg-tit {
		padding: 20px 16px;
	}
	.pg-detail .studentW .pg-tit > h2 {
		margin-bottom: 14px;
		font-size: 40px;
	}
	.studentW .board-list-wrap > .minframe {
		padding: 0 20px;
	}
	.studentW .event-list li {
		width: 50%;
		margin-bottom: 30px;
	}
	.studentW .event-item .img-box {
		display: block;
		width: 100%;
		height: auto;
		padding-top: 100%;
		position: relative;
		margin: 0;
		border-radius: 5px;
	}
	.studentW .event-item {
		margin: 0 2px;
	}
	.studentW .event-item .tit {
		padding: 13px 0 0;
		font-size: 15px;
		line-height: 1.2;
		font-family: "SUIT", sans-serif;
	}
	.studentW .event-item .date {
		font-size: 14px;
		font-family: 'Roboto', sans-serif;
	}
	.studentW .pagi-wrap {
		margin: 0;
	}
	.studentW .more-btn-wrap .btn-more {
		margin: 0 auto;
		line-height: 1.2;
	}
	.studentW .board-view-wrap .view-tit {
		background-color: #FFFFFF;
		padding: 25px 0;
		margin-bottom: 25px;
		border-radius: 0;
		border-bottom: 1px solid #C53B47;
		font-size: 28px;
		font-weight: 800;
		color: #222222;
	}
	.studentW .board-view-wrap .view-body {
		padding: 0 0 50px;
		font-size: 13px;
	}
	.studentW .pg-his .pg-item {
		padding-top: 8px;
		padding-right: 10px;
		padding-left: 60px;
		padding-bottom: 8px;
		min-height: auto;
	}
	.studentW .pg-his .pg-item > span {
		left: 10px;
		top: 8px;
		font-size: 13px;
	}
	.studentW .pg-his .pg-item a {
		text-align: center;
		font-size: 13px;
	}
	.studentW .board-view-wrap .more-btn-wrap .btn-more {
		display: inline-block;
		margin: 0 auto 42px;
		border: 1px solid #C53B47;
		padding: 7px 15px;
		border-radius: 30px;
		font-size: 12px;
		font-weight: 400;
		color: #C53B47;
		font-family: "SUIT", sans-serif;
	}

	/*  */
	.brow-space-sec {
		background-color: #F8F8F8;
	}

	/* 자유게시판 등록 페이지 */
	.pg_free_board .subframe {
		position: relative;
	}
	.write_page .write_tit {
		margin-bottom: 19px;
		padding-bottom: 13px;
		font-size: 25px;
	}
	.write_page .write_wrap {
		padding-bottom: 40px;
		gap: 18px;
	}
	.write_page .custom-select-box {
		max-width: 100%;
	}
	.write_page .write_wrap .title {
		border: 1px solid #DDDDDD;
		background-color: #ffffff;
		height: 50px;
		border-radius: 8px;
		padding: 16px 14px;
	}
	.write_page .write_wrap .title::placeholder {
		font-size: 14px;
	}
	.write_page .write_wrap .form_label {
		display: block;
		margin-bottom: 8px;
		font-size: 14px;
		font-weight: 700;
		color: #222222;
		font-family: "SUIT", sans-serif;
	}
	.write_page .regist_btn_wrap {
		position: absolute;
		top: 0;
		right: 20px;
		display: flex;
		justify-content: center;
		align-items: center;
		gap: 10px;
	}
	.write_page .regist_btn_wrap .cancel {
		width: 91px;
		max-width: 91px;
		padding: 7px 0;
		border-radius: 15px;
		font-size: 12px;
	}
	.write_page .regist_btn_wrap .success {
		width: 91px;
		padding: 7px 0;
		border-radius: 15px;
		font-size: 12px;
	}
	.regist_pop .pop_wrap {
		padding: 10px 0 23px;
		border-radius: 4px;
		gap: 15px;
		max-width: 300px;
	}
	.regist_pop .pop_wrap .close {
		top: 13px;
		right: 13px;
		width: 15px;
		height: 15px;
	}
	.regist_pop .pop_wrap .close img {
		display: block;
		width: 100%;
	}
	.regist_pop .pop_wrap .ico_wrap {
		max-width: 31px;
	}
	.regist_pop .pop_wrap .ico_wrap img {
		width: 100%;
	}
	.regist_pop .pop_wrap p {
		font-size: 15px;
	}
	.regist_pop .pop_wrap .write_cancel {
		border-radius: 13px;
		max-width: 88px;
		padding: 6px 0;
		font-size: 11px;
	}

	/* 자유게시판 뷰페이지 */
	.pg_board .pg_writer_view .cont-wrap .cont-title {
		padding-bottom: 10px;
		gap: 33px;
	}
	.gallery-type-view .cont-title .cont-writer-box {
		width: calc(100% - 33px);
		flex-direction: row;
		align-items: center;
		gap: 4px;
	}
	.notice.pg_writer_view .cont-wrap .cont-date {
		display: flex;
		justify-content: space-between;
		align-items: center;
		width: 100%;
		gap: 8px;
	}
	.gallery-type-view .cont-title .cont-writer img {
		max-width: 30px;
	}
	.gallery-type-view .cont-title .cont-writer .writer_txt {
		max-width: 115px;
		font-size: 18px;
		line-height: 18px;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
	}
	.gallery-type-view .cont-title .menu_ico {
		position: relative;
	}
	.gallery-type-view .cont-title .menu_ico a {
		display: inline-block;
		text-align: center;
		width: 33px;
		padding: 8px 0;
		cursor: pointer;
	}
	.gallery-type-view .cont-title .menu_ico a img {
		display: block;
		margin: 0 auto;
		width: 100%;
		max-width: 3px;
	}
	.gallery-type-view .cont-title .menu_ico .select_wrap {
		position: absolute;
		top: 34px;
		right: 0;
		display: none;
		width: 128px;
		padding: 13px 9px;
		overflow: hidden;
		background-color: #ffffff;
		border-radius: 10px;
		border: 1px solid #DDDDDD;
	}
	.gallery-type-view .cont-title .menu_ico .select_wrap.active {
		display: block;
	}
	.gallery-type-view .cont-title .menu_ico .select_wrap button {
		display: block;
		padding: 12px 0;
		width: 100%;
		border-bottom: 1px solid #E9E9E9;
	}
	.gallery-type-view .cont-title .menu_ico .select_wrap button:last-child {
		border-bottom: none;
	}
	.pg_writer_view .notice .cont-wrap {
		position: relative;
	}
	.gallery-type-view .comment_wrap {
		margin: 68px 0 20px;
	}
	.gallery-type-view .comment_wrap .comment_top_wrap {
		padding-bottom: 9px;
	}
	.gallery-type-view .comment_wrap .comment_top_wrap .hits_wrap {
		align-items: center;
		gap: 2px;
	}
	.gallery-type-view .comment_wrap .comment_top_wrap .hits_wrap img {
		max-width: 13px;
		width: 100%;
	}
	.gallery-type-view .comment_wrap .comment_top_wrap .hits_wrap p {
		font-size: 13px;
	}
	.gallery-type-view .comment_wrap .comment_top_wrap .btn_wrap {
		gap: 12px;
	}
	.gallery-type-view .comment_wrap .comment_top_wrap .btn_wrap button {
		min-width: 94px;
		padding: 13px 0;
		background-color: #FBFBFB;
		border: 1px solid #999999;
		border-radius: 8px;
		font-size: 18px;
		font-weight: 400;
		color: #313131;
		font-family: "SUIT", sans-serif;
		line-height: 18px;
	}
	.gallery-type-view .comment_wrap li {
		padding: 14px 0;
	}
	.gallery-type-view .comment_wrap li.on .comment_cont {
		padding: 0;
	}
	.gallery-type-view .comment_wrap li.on .comment_text {
		padding: 0;
	}
	.gallery-type-view .comment_wrap .comment_cont {
		position: relative;
		margin-bottom: 10px;
	}
	.gallery-type-view .comment_wrap .comment_cont .writer_info {
		width: calc(100% - 28px);
		gap: 2px;
	}
	.gallery-type-view .comment_wrap .comment_cont .writer_info .cont_writer {
		max-width: none;
		gap: 7px;
	}
	.gallery-type-view .comment_wrap .comment_cont .writer_info .cont_writer img {
		max-width: 30px;
	}
	.gallery-type-view .comment_wrap .comment_cont .writer_info .cont_writer span {
		max-width: 115px;
		font-size: 18px;
		line-height: 18px;
	}
	.gallery-type-view .comment_wrap .comment_cont .writer_info .date {
		flex: 0 0 116px;
		font-size: 12px;
	}
	.gallery-type-view .comment_wrap .comment_cont .select_ico_btn {
		position: absolute;
		top: 0;
		right: 0;
		display: inline-block;
		text-align: center;
		width: 28px;
		background-color: #ffffff;
		padding: 8px 0;
		cursor: pointer;
	}
	.gallery-type-view .comment_wrap .comment_cont .select_ico_btn img {
		display: block;
		margin: 0 auto;
		width: 100%;
		max-width: 3px;
		transform: rotate(90deg);
	}
	.gallery-type-view .comment_wrap .btn_wrap {
		position: initial;
		flex-direction: column;
		gap: 0;
	}
	.gallery-type-view .comment_wrap .btn_wrap .select_wrap {
		flex-direction: column;
		position: absolute;
		top: 30px;
		right: 0;
		display: none;
		width: 128px;
		padding: 13px 9px;
		overflow: hidden;
		background-color: #ffffff;
		border-radius: 10px;
		border: 1px solid #DDDDDD;
		z-index: 11;
	}
	.gallery-type-view .comment_wrap .btn_wrap .select_wrap.active {
		display: block;
	}
	.gallery-type-view .comment_wrap .btn_wrap .comment_btn {
		display: block;
		padding: 12px 0;
		width: 100%;
		max-width: none;
		border-bottom: 1px solid #E9E9E9;
	}
	.gallery-type-view .comment_wrap .btn_wrap .comment_btn:last-child {
		border-bottom: none;
	}
	.gallery-type-view .comment_wrap .btn_wrap img {
		display: none;
	}
	.gallery-type-view .comment_wrap .btn_wrap span {
		text-align: left;
		font-size: 14px;
		font-weight: 700;
		color: #222222;
		font-family: "SUIT", sans-serif;
		line-height: 14px;
	}
	.pg_writer_view .edit-box {
		background-color: #FFFFFF;
		/*margin-top: 20px;*/
		padding: 15px 0;
	}
	.pg_writer_view .edit-box .cont_writer {
		padding: 0 7px 0 0;
	}
	.pg_writer_view .edit-box .cont_writer > div {
		gap: 7px;
	}
	.pg_writer_view .edit-box .cont_writer img {
		max-width: 30px;
	}
	.pg_writer_view .edit-box .cont_writer span {
		font-size: 18px;
		line-height: 18px;
	}
	.pg_writer_view .edit-box .cont_writer a {
		font-size: 14px;
	}
	.pg_writer_view .edit-box .comment-reg-wrap {
		padding: 0 38px;
		height: auto;
		gap: 6px;
	}
	.pg_writer_view .edit-box textarea {
		resize: none;
	}
	.pg_writer_view .edit-box .btn-border {
		background-color: #C53B47;
	}
	.pg_writer_view .form_group {
		flex-direction: column;
		margin-top: 16px;
		gap: 16px;
		width: 100%;
	}
	.pg_writer_view .form_input {
		flex: none;
		width: 100%;
	}
	.pg_writer_view .form_input label {
		display: block;
		margin-bottom: 8px;
		font-size: 14px;
		font-weight: 700;
		color: #222222;
		font-family: "SUIT", sans-serif;
	}
	.pg_writer_view .form_input input {
		padding: 16px;
		font-size: 14px;
	}
	.pg_writer_view .comment-reg-wrap {
		flex-direction: column;
		width: 100%;
	}
	.pg_writer_view .comment-reg-wrap textarea {
		flex: none;
		max-width: none;
		width: 100%;
		height: 108px;
		padding: 16px;
		font-size: 14px;
	}
	.pg_writer_view .comment-reg-wrap .btn-border {
		width: 100%;
		max-width: none;
		min-width: auto;
		flex: none;
		border-radius: 4px;
		background: #C53B47;
		font-size: 17px;
		font-weight: normal;
		height: 55px;
	}
	.gallery-type-view .comment_wrap .comment_text {
		font-size: 18px;
	}
	.gallery-type-view .comment_wrap .btn_wrap .password_wrap {
		top: 30px;
		right: 0;
		left: auto;
		transform: none;
		padding: 10px;
		width: 150px;
	}
	.gallery-type-view .comment_wrap .btn_wrap .password_wrap label {
		margin-bottom: 8px;
		font-size: 11px;
	}
	.gallery-type-view .comment_wrap .btn_wrap .password_wrap input {
		height: 30px;
	}
	.gallery-type-view .comment_wrap .btn_wrap .password_wrap input::placeholder {
		font-size: 11px;
	}
	.gallery-type-view .comment_wrap .btn_wrap .password_wrap .password_confirm_btn {
		max-width: 80px;
		border-radius: 10px;
		margin-top: 8px;
		padding: 4px 0;
		font-size: 11px;
	}

	/* 상담신청 리뉴얼 20250404 */
	.sec-contact-rolling {
		padding: 20px 0 80px;
		margin-bottom: 40px;
	}
	.sec-contact-rolling .rolling-bg-txt {
		aspect-ratio: 4672 / 60;
	}
	.sec-contact-rolling .rolling-bg::after {
		content: '';
		z-index: 2;
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: url('/common/img/contact/rolling/brow_bg_m.png') no-repeat center / cover;
		opacity: .5;
	}
	.sec-contact-rolling .subframe {
		max-width: 100%;
		padding: 0 25px;
	}
	.sec-contact-rolling .rolling-img-swiper {
		min-width: 100%;
		width: 100%;
		max-width: 620px;
		aspect-ratio: 620 / 485;
		margin: 0 auto;
	}
	.sec-contact-rolling .rolling-box {
		display: flex;
		flex-direction: column-reverse;
		align-items: flex-start;
		gap: 16px;
		width: 100%;
		justify-content: space-between;
	}
	.rolling-box .rolling-title {
		font-size: 16px;
		line-height: 20px;
	}
	.rolling-title .__sub-title {
		margin-bottom: 21px;
	}
	.rolling-title .__title {
		font-size: 42px;
		line-height: 53px;
		margin-bottom: 35px;
	}
	.rolling-title .__title strong {
		display:block;
	}
	.rolling-title .__sub-title .__current {
		padding-top: 5px;
	}
}

@media screen and (max-width: 499px){
	/*  */
	.pg_sns_login .form-checkbox {
		display: flex;
		justify-content: flex-start;
		align-items: flex-start;
	}
	.pg_sns_login .form-checkbox > label {
		width: calc(100% - 70px);
		text-indent: -26px;
		padding-left: 26px;
	}
	.pg_sns_login .form-checkbox .all_chk + label {
		width: 100%;
		word-break: break-all;
	}
	.pg_sns_login .form-checkbox > label:before {
		position: relative;
		top: 4px;
		left: auto;
		margin-right: 5px;
	}

	/* 상담 */
	.pg_detail.pg_board.consult .minframe {
		padding: 0 1rem;
	}
}