/* ✏ 폰트 */
@font-face {
    font-family:'zonaPro_R';
    src: url('../font/ZonaPro-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family:'zonaPro_SmB';
    src: url('../font/ZonaPro-SemiBold.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family:'zonaPro_B';
    src: url('../font/ZonaPro-Bold.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* ------------------------------------------------------------------------------------ */
/* input 자동완성 배경 제거 */
input:-webkit-autofill {
	-webkit-box-shadow: 0 0 0 30px #FFF inset;
	-webkit-text-fill-color: #000;
}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
	transition: background-color 5000s ease-in-out 0s;
}

/* ------------------------------------------------------------------------------------ */
/* ✏ 마우스 드래그 */
::-moz-selection {
   background-color: #05A2E6;
   color: #FFF;
}
::selection {
   background-color: #05A2E6;
   color: #FFF
}

/* ------------------------------------------------------------------------------------ */
/* ✏ 초기화 */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	vertical-align: baseline;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
ol, ul {
	list-style: none;
}
a {
    text-decoration: none;
    color: #000;
	transition: all .5s;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
input, button, textarea, select {
    outline: none;
}
select {
	color: #000;
    cursor: pointer;
}
button {
	background-color: unset;
	border: unset;
	color: #000;
	cursor: pointer;
	transition: all .5s;
}
img {
	transition: all .5s;
}
p {
	word-break: keep-all;
}
html {
    width: 100%;
    height: 100%;
    font-family: 'zonaPro_R';
	font-size: 16px;
	word-break: keep-all;
}
body {
    width: 100%;
}

/* ------------------------------------ */
/* 스크롤 */
.scroll::-webkit-scrollbar {
	width: 0.6rem;
	padding: 5rem;
}
.scroll::-webkit-scrollbar-thumb {
	background-color: rgba(32, 32, 79, 0.3);
	border-radius: 10px;
	background-clip: padding-box;
	border: 2px solid transparent;
}
.scroll::-webkit-scrollbar-track {
	background-color: rgba(32, 32, 79, 0.2);
	border-radius: 10px;
	box-shadow: inset 0px 0px 5px white;
}

/* ------------------------------------ */
/* ✏ 상단(header.php) */
#header {
    width: 100%;
    height: 120px;
    box-sizing: border-box;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #FFF;
    z-index: 100;
    padding: 0 3rem;
}
#header .box {
    width: 100%;
    max-width: 1400px;
    height: 100%;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
}
#header .box .logo img {
    width: 11rem;
}
#header .box .menu {
    width: 70%;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 1rem;
    background-image: linear-gradient(90deg, #9771F8 0%, #05A2E6 50%, #00F29D 100%);
    border-radius: 40px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    padding: 0.9rem 5rem;
}
#header .box .menu .list {
    position: relative;
}
#header .box .menu .list .link {
    display: block;
    position: relative;
    font-family: 'zonaPro_SmB';
    font-size: 1.1rem;
    color: #FFF;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 10px;
    z-index: 1;
}
#header .box .menu .list .link.active {
	color: #FFF;
}
#header .box .menu .list .link:after {
    content: '';
    width: 0;
    height: 4px;
    position: absolute;
    bottom: -10px;
    left: 50%;
    background-color: #FFF;
    z-index: -1;
	transition: all .5s;
}
#header .box .menu .list .link.active:after {
    width: 100%;
    left: 0%;
}
#header .box .menu .list .drop {
    width: 10rem;
    box-sizing: border-box;
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);
    display: none;
    background-color: #FFF;
    border-radius: 20px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
    padding: 1.3rem 0;
}
#header .box .menu .list .drop li {
    text-align: center;
    margin-bottom: 0.8rem;
}
#header .box .menu .list .drop li:last-child {
    margin-bottom: 0;
}
#header .box .menu .list .drop li a {
    width: 100%;
    box-sizing: border-box;
    display: block;
    font-size: 1rem;
    line-height: 120%;
    text-align: center;
    padding: 0 1rem;
}
#header .box .btn .link {
    width: 7.5rem;
    height: 2.5rem;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #4642AE;
    border-radius: 30px;
    font-family: 'zonaPro_SmB';
    font-size: 0.95rem;
    color: #FFF;
    padding: 0.5rem;
}
#header .box .burger {
	width: 23px;
	height: 20px;
    display: none;
	z-index: 300;
	cursor: pointer;
}
#header .box .burger .trigger {
    width: 100%;
    height: 100%;
	display: inline-block;
	position: relative;
	transition: all .5s;
}
#header .box .burger .trigger span {
	position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #000;
    border-radius: 4px;
    display: inline-block;
    transition: all .5s;
}
#header .box .burger .trigger .line1 {
	top: 0;
}
#header .box .burger .trigger .line2 {
    top: 9px;
}
#header .box .burger .trigger .line3 {
	bottom: 0;
}
#header .box .burger .trigger .line1.cross {
	transform: translateY(9px) rotate(-45deg);
}
#header .box .burger .trigger .line2.out {
	opacity: 0;
}
#header .box .burger .trigger .line3.cross {
	transform: translateY(-9px) rotate(45deg);
}
#header .box .mobile {
    width: 80%;
    height: 100%;
    position: fixed;
    top: 0;
    right: 0;
    transform: translateX(100px);
	background-color: #F6F6F6;
	visibility: hidden;
    opacity: 0;
    z-index: 200;
    transition: all .5s;
}
#header .box .mobile.open {
	display: none;
	visibility: visible;
    opacity: 1;
    transform: translateX(0px);
}
#header .box .mobile .mb_box {
    display: flex;
    flex-direction: column;
    margin-top: 60px;
}
#header .box .mobile .mb_box .main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    background-color: #FFF;
    border-bottom: 1px solid #DDD;
    padding: 1.5rem;
}
#header .box .mobile .mb_box .main:first-child {
    border-top: 1px solid #DDD;
}
#header .box .mobile .mb_box .main span {
    font-family: 'zonaPro_SmB';
	font-size: 1.35rem;
}
#header .box .mobile .mb_box .main .arrow {
    width: 1.5rem;
    height: 1.5rem;
    background-image: url('../img/arrow_bottom1.png');
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center;
}
#header .box .mobile .mb_box .main .arrow.up {
    background-image: url('../img/arrow_top1.png');
}
#header .box .mobile .mb_box .sub {
    display: none;
    background-color: #F6F6F6;
    padding: 1.5rem;
}
#header .box .mobile .mb_box .sub a {
	display: block;
    font-size: 1.2rem;
    line-height: 130%;
	transition: all .5s;
    margin-bottom: 1rem;
}
#header .box .mobile .mb_box .sub a:last-child {
    margin-bottom: 0;
}
#header .box .mobile_bg {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, .3);
	visibility: hidden;
    opacity: 0;
    transition: all 0.5s;
    z-index: 100;
}
#header .box .mobile_bg.set {
	display: none;
	visibility: visible;
    opacity: 1;
    transition: all .5s;
}

/* ------------------------------------ */
/* ✏ 하단(footer.php) */
#footer {
	width: 100%;
	box-sizing: border-box;
    background-image: linear-gradient(91deg, #9771F8 0%, #05A2E6 50%, #00F29D 100%);
	overflow: hidden;
    padding: 3rem;
}
#footer .box {
	width: 100%;
    height: 100%;
    max-width: 1400px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 1.625rem;
    margin: 0 auto;
}
#footer .box .info {
    width: 100%;
	box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: 1.5rem;
}
#footer .box .info .con1 {
	display: flex;
    flex-direction: column;
    row-gap: 2rem;
}
#footer .box .info .con1 .logo {
    width: 11rem;
}
#footer .box .info .con1 .txt {
    font-family: 'zonaPro_R';
    font-size: 0.95rem;
	color: #FFF;
    line-height: 150%;
}
#footer .box .info .con1 .txt .m_br {
	display: none;
}
#footer .box .info .con2 .txt1 {
    font-family: 'zonaPro_B';
    font-weight: 700;
    font-size: 2.125rem;
	color: #FFF;
    line-height: 130%;
    margin-bottom: 0.5rem;
}
#footer .box .info .con2 .txt2 {
    font-family: 'zonaPro_R';
    font-size: 0.95rem;
    color: #FFF;
    line-height: 150%;
}
#footer .box .copyright {
    font-family: 'zonaPro_SmB';
    font-size: 1.125rem;
	color: #FFF;
}

/* ------------------------------------ */
/* ✏ [공통] 페이지 */
/* 메인(index.html), 티칭(teach.html), 회원가입(signup.html) */
/* FAQ(faq.html), 교육용 자료(training_materials.html) */ 
.page {
	margin-top: 120px;
}
.page .substance {
    width: 100%;
    box-sizing: border-box;
	padding: 5rem 3rem;
}
.page .substance .substance_box {
    width: 100%;
    max-width: 1400px;
    box-sizing: border-box;
    margin: 0 auto;
}
.page .substance .substance_box .titleBox {
    border-bottom: 5px solid #EEE;
    margin-bottom: 3rem;
}
.page .substance .substance_box .titleBox .title_txt {
    width: fit-content;
    position: relative;
    font-family: 'zonaPro_B';
    font-size: 3rem;
    padding-bottom: 0.3rem;
}
.page .substance .substance_box .titleBox .title_txt::after {
    content: '';
    width: 100%;
    border-bottom: 5px solid #05A2E6;
    position: absolute;
    bottom: -5px;
    left: 0;
}

/* ------------------------------------ */
/* ✏ 메인(index.html) */
#main {
	width: 100%;
    box-sizing: border-box;
	overflow: hidden;
}
/* 섹션1 */
#main .sec1 {
    width: 100%;
    box-sizing: border-box;
    position: relative;
    background-color: #FFF;
    padding: 3rem;
}
#main .sec1 .point1 {
    width: 16rem;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 0;
}
#main .sec1 .box {
    width: 100%;
    max-width: 1400px;
    height: 100%;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    column-gap: 2rem;
    margin: 0 auto;
}
#main .sec1 .box .left {
    width: 55%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
	z-index: 0;
}
#main .sec1 .box .left .teach_txt1 {
    font-family: 'zonaPro_B';
    font-size: 4.5rem;
    color: #2A2A2A;
    line-height: 110%;
    margin-bottom: 1rem;
}
#main .sec1 .box .left .teach_txt2 {
    font-size: 2rem;
    color: #2A2A2A;
    line-height: 140%;
    margin-bottom: 3rem;
}
#main .sec1 .box .left .teach_btn {
    width: 17rem;
	max-width: 100%;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 0.5rem;
    background-color: #05A2E6;
    border-radius: 35px;
    font-size: 1.5rem;
    font-family: 'zonaPro_B';
    color: #FFF;
    padding: 0.5rem 1rem;
}
#main .sec1 .box .left .teach_btn .btn_txt {
    text-align: center;
}
#main .sec1 .box .left .teach_btn .btn_img {
    width: 2.5rem;
}
#main .sec1 .box .right {
	width: 45%;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
}
#main .sec1 .right .point2 {
	width: 100%;
    box-sizing: border-box;
}
/* 공통 구성1 */
#main .commonForm1 {
    box-sizing: border-box;
    background-image: linear-gradient(91deg, #9771F8 0%, #05A2E6 50%, #00F29D 100%);
    padding: 2rem 3rem;
}
#main .commonForm1 .box {
    width: 100%;
    max-width: 1400px;
	height: 100%;
    min-height: 25rem;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 2rem;
    margin: 0 auto;
}
#main .commonForm1 .box .common_txt1 {
    font-family: 'zonaPro_B';
    font-size: 3.2rem;
    color: #FFF;
    text-align: center;
    line-height: 120%;
}
#main .commonForm1 .box .common_txt2 {
    font-size: 1.9rem;
    color: #FFF;
    text-align: center;
    line-height: 150%;
}
/* 공통 텍스트 */
#main .titleTxt {
    font-family: 'zonaPro_B';
    font-size: 3.2rem;
    text-align: center;
    margin-bottom: 3rem;
}
/* 섹션2 */
#main .sec2 {
	width: 100%;
    box-sizing: border-box;
}
/* 섹션3 */
#main .sec3 {
	width: 100%;
    box-sizing: border-box;
	padding: 5rem 3rem 0;
}
#main .sec3 .box {
	width: 100%;
	max-width: 1400px;
    box-sizing: border-box;
	margin: 0 auto;
}
#main .sec3 .box .award {
    display: flex;
    justify-content: center;
    column-gap: 5%;
	margin-bottom: 2rem;
}
#main .sec3 .box .award .award_img {
    width: 30%;
}
#main .sec3 .box .reason {
    display: flex;
    column-gap: 2rem;
}
#main .sec3 .box .reason .r_wrap {
    width: 100%;
	box-sizing: border-box;
}
#main .sec3 .box .reason .r_wrap .text1 {
    box-sizing: border-box;
    position: relative;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    background-color: #9771F8;
    border-radius: 50px;
    font-family: 'zonaPro_B';
    font-size: 1.6rem;
    color: #FFF;
    text-align: center;
    line-height: 130%;
    padding: 1.5rem 1rem;
    z-index: 1;
}
#main .sec3 .box .reason .r_wrap .text1 br {
	display: none;
}
#main .sec3 .box .reason .r_wrap .text2 {
    min-height: 20rem;
    background-color: #FDFCFF;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
    border-radius: 0 0 45px 45px;
    font-size: 1.3rem;
    color: #2A2A2A;
    line-height: 160%;
    transform: translateY(-3rem);
    padding: 4.5rem 2rem 3rem;
}
#main .sec3 .box .child {
    height: 30rem;
    position: relative;
    overflow: hidden;
}
#main .sec3 .box .child .child_img {
    height: 100%;
    object-fit: contain;
    position: absolute;
}
#main .sec3 .box .child .child_img1 {
    width: 25%;
    top: 58%;
    left: 25%;
    transform: translate(-50%, -50%);
    z-index: 1;
}
#main .sec3 .box .child .child_img2 {
    width: 30%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
#main .sec3 .box .child .child_img3 {
    width: 25%;
    top: 58%;
    right: 25%;
    transform: translate(50%, -50%);
    z-index: 1;
}
#main .sec3 .box .child .point_img {
	width: 100%;
    position: absolute;
    bottom: 0%;
    left: 50%;
    transform: translate(-50%, 45%);
}
/* 섹션4 */
#main .sec4 {
	width: 100%;
    box-sizing: border-box;
}
/* 섹션5 */
#main .sec5 {
    width: 100%;
    box-sizing: border-box;
    padding: 8rem 3rem;
}
#main .sec5 .box {
	width: 100%;
	max-width: 1400px;
    box-sizing: border-box;
	display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 8%;
	margin: 0 auto;
}
#main .sec5 .box .logo_img1 {
	width: 22%;
}
#main .sec5 .box .logo_img2 {
	width: 40%;
}
#main .sec5 .box .logo_img3 {
	width: 22%;
}
/* 섹션6 */
#main .sec6 {
	width: 100%;
    box-sizing: border-box;
}
/* 섹션7 */
#main .sec7 {
    width: 100%;
    box-sizing: border-box;
    padding: 8rem 3rem;
}
#main .sec7 .box {
    width: 100%;
    max-width: 1400px;
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    column-gap: 10%;
    row-gap: 3rem;
    margin: 0 auto;
}
#main .sec7 .box .e_wrap {
    width: 45%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    row-gap: 1rem;
}
#main .sec7 .box .e_wrap .e_txt1 {
    box-sizing: border-box;
    background-color: #9771F8;
    border-radius: 35px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    font-family: 'zonaPro_B';
    font-size: 1.6rem;
    color: #FFF;
    text-align: center;
    line-height: 150%;
    padding: 1.2rem 1rem;
}
#main .sec7 .box .e_wrap .e_txt2 {
    font-size: 1.6rem;
    color: #2A2A2A;
    line-height: 130%;
}
/* 섹션8 */
#main .sec8 {
	width: 100%;
    box-sizing: border-box;
}
/* 섹션9 */
#main .sec9 {
    width: 100%;
    box-sizing: border-box;
    padding: 5rem 3rem;
}
#main .sec9 .box {
    width: 100%;
    max-width: 1400px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
	column-gap: 2rem;
    margin: 0 auto;
}
#main .sec9 .box .instructor {
    width: 40%;
    box-sizing: border-box;
}
#main .sec9 .box .right {
    width: 60%;
    box-sizing: border-box;
}
#main .sec9 .box .right .sub_txt {
    font-size: 1.9rem;
    color: #2A2A2A;
    margin-bottom: 2rem;
}
#main .sec9 .box .right .i_box {
    display: flex;
    flex-direction: column;
    row-gap: 2rem;
}
#main .sec9 .box .right .i_box .i_wrap {
	display: flex;
    align-items: flex-start;
    column-gap: 1rem;
}
#main .sec9 .box .right .i_box .i_wrap .checkbox {
    width: 2.4rem;
}
#main .sec9 .box .right .i_box .i_wrap .i_txt {
    font-size: 1.8rem;
    color: #2A2A2A;
    line-height: 130%;
}
/* 섹션10 */
#main .sec10 {
    width: 100%;
    box-sizing: border-box;
    padding: 5rem 3rem;
}
#main .sec10 .box {
    width: 100%;
    max-width: 1400px;
    box-sizing: border-box;
    margin: 0 auto;
}
#main .sec10 .box .swiper {
    padding: 0 0 2rem;
}
#main .sec10 .box .swiper .swiper-slide {
    transform: scale(0.8);
}
#main .sec10 .box .swiper .swiper-slide.swiper-slide-prev {
    transform: scale(0.9) translateX(5rem);
	z-index: -1;
}
#main .sec10 .box .swiper .swiper-slide.swiper-slide-next {
    transform: scale(0.9) translateX(-5rem);
	z-index: -1;
}
#main .sec10 .box .swiper .swiper-slide.swiper-slide-active {
    transform: scale(1);
}
#main .sec10 .box .swiper .swiper-button-next,
#main .sec10 .box .swiper .swiper-button-prev {
    width: 3.5rem;
    height: 3.5rem;
    top: 55%;
    background-repeat: no-repeat;
    background-size: 90%;
    background-color: #103666;
    border-radius: 50%;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
    color: unset;
    margin: 0;
    padding: 0;
	transition: all .5s;
}
#main .sec10 .box .swiper .swiper-button-next {
    right: 30%;
    transform: translate(-30%, -50%);
    background-image: url('../img/btn_next.png');
    background-position: right;
}
#main .sec10 .box .swiper .swiper-button-prev {
    left: 30%;
    transform: translate(30%, -50%);
    background-image: url('../img/btn_prev.png');
    background-position: center;
}
#main .sec10 .box .swiper .swiper-button-next:after {
	display: none;
}
#main .sec10 .box .swiper .swiper-button-prev:after {
	display: none;
}
#main .sec10 .box .con {
    min-height: 42rem;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    row-gap: 2rem;
    position: relative;
    background-color: rgba(245, 245, 245, 0.8);
    border-radius: 20px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
    padding: 9rem 2rem 2rem;
    margin-top: 8rem;
}
#main .sec10 .box .con .instructor_img {
    width: 13rem;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #F5F5F5;
    border-radius: 50%;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
    padding: 1rem;
}
#main .sec10 .box .con .txt1 {
    font-size: 1.25rem;
    color: #2A2A2A;
    line-height: 150%;
    text-align: center;
}
#main .sec10 .box .con .txt2 {
    font-family: 'zonaPro_B';
    font-size: 1.5rem;
    color: #2A2A2A;
    text-align: center;
}
/* 섹션11 */
#main .sec11 {
    width: 100%;
    box-sizing: border-box;
    background-image: linear-gradient(91deg, #9771F8 0%, #05A2E6 50%, #00F29D 100%);
    padding: 5rem 3rem;
}
#main .sec11 .box {
    width: 100%;
    max-width: 1400px;
    box-sizing: border-box;
    margin: 0 auto;
}
#main .sec11 .box .titleTxt {
	color: #FFF;
}
#main .sec11 .box .p_box {
    display: flex;
    justify-content: center;
    align-items: center;
	margin-left: -9rem;
}
#main .sec11 .box .p_box .p_wrap {
    width: 18rem;
    position: relative;
}
#main .sec11 .box .p_box .p_wrap:nth-child(1) {
    transform: translateX(9rem);
    z-index: 3;
}
#main .sec11 .box .p_box .p_wrap:nth-child(2) {
    transform: translateX(6rem);
    z-index: 2;
}
#main .sec11 .box .p_box .p_wrap:nth-child(3) {
    transform: translateX(3rem);
    z-index: 1;
}
#main .sec11 .box .p_box .p_wrap:nth-child(4) {
    z-index: 0;
}
#main .sec11 .box .p_box .p_wrap .polygon_img {
    width: 100%;
}
#main .sec11 .box .p_box .p_wrap .texts {
    width: 60%;
    height: 50%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: absolute;
    top: 50%;
    left: 55%;
    transform: translate(-50%, -50%);
}
#main .sec11 .box .p_box .p_wrap:first-child .texts {
    left: 50%;
}
#main .sec11 .box .p_box .p_wrap .texts .text1 {
    font-family: 'zonaPro_SmB';
    font-size: 3.8rem;
	color: #2A2A2A;
    word-break: break-all;
	margin-bottom: 0.5rem;
}
#main .sec11 .box .p_box .p_wrap .texts .text2 {
    font-family: 'zonaPro_SmB';
    font-size: 1.7rem;
	color: #FFF;
    word-break: break-all;
}
/* 섹션12 */
#main .sec12 {
    width: 100%;
    box-sizing: border-box;
    padding: 6rem 3rem;
}
#main .sec12 .box {
    width: 100%;
    max-width: 1400px;
    box-sizing: border-box;
    margin: 0 auto;
}
#main .sec12 .box .i_box {
    display: flex;
    justify-content: center;
    column-gap: 2rem;
    margin-bottom: 5rem;
}
#main .sec12 .box .i_box .i_wrap {
    width: 35%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    row-gap: 0.5rem;
}
#main .sec12 .box .i_box .i_wrap .icon {
	width: 55%;
}
#main .sec12 .box .i_box .i_wrap .txts {
    display: flex;
    flex-direction: column;
    row-gap: 0.5rem;
}
#main .sec12 .box .i_box .i_wrap .txts .txt {
    font-family: 'zonaPro_SmB';
    font-size: 1.75rem;
    color: #1F1F1F;
    word-break: break-all;
    text-align: center;
}
#main .sec12 .box .btn {
    width: 24rem;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 0.5rem;
    background-color: #05A2E6;
    border-radius: 60px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    font-family: 'zonaPro_B';
    font-size: 2rem;
    color: #FFF;
    text-align: center;
    padding: 1rem;
    margin: 0 auto;
}
#main .sec12 .box .btn .btn_img {
    width: 3rem;
}

/* ------------------------------------ */
/* ✏ 티칭(teach.html) */
#teach {
	width: 100%;
    box-sizing: border-box;
	overflow: hidden;
}
/* 섹션1 */
#teach .sec1 {
    width: 100%;
    box-sizing: border-box;
    position: relative;
    background-color: #FFF;
    padding: 6.5rem 3rem;
}
#teach .sec1 .point1 {
    width: 16rem;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 0;
}
#teach .sec1 .box {
    width: 100%;
    max-width: 1400px;
    height: 100%;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    column-gap: 2rem;
    margin: 0 auto;
}
#teach .sec1 .box .left {
    width: 60%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 0;
}
#teach .sec1 .box .left .teach_txt1 {
    font-family: 'zonaPro_B';
    font-size: 3.5rem;
    color: #2A2A2A;
    margin-bottom: 1rem;
}
#teach .sec1 .box .left .teach_txt2 {
    font-size: 2rem;
    color: #2A2A2A;
    line-height: 140%;
    margin-bottom: 3rem;
}
#teach .sec1 .box .left .teach_btn {
    width: 17rem;
    max-width: 100%;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 0.5rem;
    background-color: #05A2E6;
    border-radius: 35px;
    font-size: 1.5rem;
    font-family: 'zonaPro_B';
    color: #FFF;
    padding: 0.5rem 1rem;
}
#teach .sec1 .box .left .teach_btn .btn_txt {
	text-align: center;
}
#teach .sec1 .box .left .teach_btn .btn_img {
    width: 2.5rem;
}
#teach .sec1 .box .right {
    width: 40%;
    box-sizing: border-box;
}
#teach .sec1 .box .right .point2 {
    width: 42rem;
    box-sizing: border-box;
    position: absolute;
    bottom: 0;
    transform: translateX(-2rem);
}
/* 공통 구성1 */
#teach .commonForm1 {
    box-sizing: border-box;
    background-image: linear-gradient(91deg, #9771F8 0%, #05A2E6 50%, #00F29D 100%);
    padding: 2rem 3rem;
}
#teach .commonForm1 .box {
    width: 100%;
    max-width: 1400px;
	height: 100%;
    min-height: 25rem;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 2rem;
    margin: 0 auto;
}
#teach .commonForm1 .box .common_txt1 {
    font-family: 'zonaPro_B';
    font-size: 3.2rem;
    color: #FFF;
    text-align: center;
    line-height: 120%;
}
#teach .commonForm1 .box .common_txt2 {
    font-size: 1.9rem;
    color: #FFF;
    text-align: center;
    line-height: 150%;
}
/* 섹션2 */
#teach .sec2 {
    width: 100%;
    box-sizing: border-box;
}
/* 섹션3 */
#teach .sec3 {
    width: 100%;
    box-sizing: border-box;
    padding: 10rem 3rem;
}
#teach .sec3 .box {
    width: 100%;
    max-width: 1400px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    row-gap: 5rem;
    margin: 0 auto;
}
#teach .sec3 .box .w_wrap {
    display: flex;
    align-items: center;
    column-gap: 3rem;
}
#teach .sec3 .box .w_wrap .way {
    width: 26rem;
    border-radius: 20px;
}
#teach .sec3 .box .w_wrap .txts {
    max-width: 100%;
	box-sizing: border-box;
    display: flex;
    flex-direction: column;
    row-gap: 1rem;
}
#teach .sec3 .box .w_wrap .txts .txt1 {
    width: 12rem;
    max-width: 100%;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #9771F8;
    border-radius: 40px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    font-family: 'zonaPro_B';
    font-size: 1.6rem;
    color: #FFF;
    padding: 0.8rem 0.5rem;
}
#teach .sec3 .box .w_wrap .txts .txt2 {
    font-size: 1.5rem;
    color: #2A2A2A;
    line-height: 150%;
}
/* 섹션4 */
#teach .sec4 {
    width: 100%;
    box-sizing: border-box;
}
/* 섹션5 */
#teach .sec5 {
    width: 100%;
    box-sizing: border-box;
    padding: 4rem 3rem;
}
#teach .sec5 .box {
    width: 100%;
    max-width: 1400px;
    box-sizing: border-box;
    margin: 0 auto;
}
#teach .sec5 .box .point {
	width: 100%;
}
/* 섹션6 */
#teach .sec6 {
    width: 100%;
    box-sizing: border-box;
}
/* 섹션7 */
#teach .sec7 {
    width: 100%;
    box-sizing: border-box;
    padding: 6rem 3rem;
}
#teach .sec7 .box {
    width: 100%;
    max-width: 1400px;
    box-sizing: border-box;
    margin: 0 auto;
}
#teach .sec7 .box .i_box {
    display: flex;
    justify-content: center;
    column-gap: 2rem;
    margin-bottom: 5rem;
}
#teach .sec7 .box .i_box .i_wrap {
    width: 35%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    row-gap: 0.5rem;
}
#teach .sec7 .box .i_box .i_wrap .icon {
	width: 55%;
}
#teach .sec7 .box .i_box .i_wrap .txt {
    font-family: 'zonaPro_SmB';
    font-size: 1.75rem;
    color: #1F1F1F;
    word-break: break-all;
    text-align: center;
}
#teach .sec7 .box .btn {
    width: 24rem;
	max-width: 100%;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 0.5rem;
    background-color: #05A2E6;
    border-radius: 60px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    font-family: 'zonaPro_B';
    font-size: 2rem;
    color: #FFF;
    text-align: center;
    padding: 1rem;
    margin: 0 auto;
}

/* ------------------------------------ */
/* ✏ 회원가입(signup.html) */
#signup {
	width: 100%;
	box-sizing: border-box;
	overflow: hidden;
}
#signup .entry {
	margin-bottom: 5rem;
}
#signup .entry:last-child {
	margin-bottom: 0;
}
#signup .entry .e_title {
	width: 100%;
	box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: linear-gradient(90deg, #9771F8 0%, #05A2E6 50%, #00F29D 100%);
    border-radius: 10px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    font-family: 'zonaPro_B';
    font-size: 1.6rem;
    color: #FFF;
    text-align: center;
    padding: 1.3rem 1rem;
    margin-bottom: 10px;
}
#signup .entry .e_info {
    display: flex;
    flex-direction: column;
    row-gap: 7px;
}
#signup .entry .e_info.e_info2 {
    flex-direction: row;
    column-gap: 7px;
}
#signup .entry .e_info .wrap {
    display: flex;
    column-gap: 6px;
}
#signup .entry .e_info .wrap.wrap2 {
    width: 100%;
    flex-direction: column;
    row-gap: 6px;
}
#signup .entry .e_info .wrap .main {
    width: 20rem;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(151, 113, 248, 0.1);
    font-family: 'zonaPro_B';
    font-size: 1.4rem;
    color: #2A2A2A;
    text-align: center;
    line-height: 130%;
    padding: 1rem;
}
#signup .entry .e_info .wrap .main br {
	display: none;
}
#signup .entry .e_info .wrap:first-child .main {
    border-radius: 10px 0 0 0;
}
#signup .entry .e_info .wrap:last-child .main {
    border-radius: 0 0 0 10px;
}
#signup .entry .e_info2 .wrap2:last-child .main {
    border-radius: 0 10px 0 0;
}
#signup .entry .e_info .wrap .main.main2 {
	border-radius: 10px;
}
#signup .entry .e_info .wrap .main.main3 {
	width: 100%;
	height: 100%;
}
#signup .entry .e_info .wrap .sub {
    width: 100%;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    border: 1px solid #A6A6A6;
    padding: 0.8rem 1rem;
}
#signup .entry .e_info .wrap:first-child .sub {
    border-radius: 0 10px 0 0;
}
#signup .entry .e_info .wrap:last-child .sub {
    border-radius: 0 0 10px 0;
}
#signup .entry .e_info2 .wrap2:first-child .sub {
    border-radius: 0;
}
#signup .entry .e_info2 .wrap2:last-child .sub {
    border-radius: 0;
}
#signup .entry .e_info2 .wrap2:first-child .sub:last-child {
    border-radius: 0 0 0 10px;
}
#signup .entry .e_info2 .wrap2:last-child .sub:last-child {
    border-radius: 0 0 10px 0;
}
#signup .entry .e_info .wrap .sub.sub2 {
    flex-direction: column;
    align-items: flex-start;
	justify-content: center;
    row-gap: 5px;
}
#signup .entry .e_info .wrap .sub.sub3 {
    justify-content: center;
	border-radius: 10px;
    padding: 2rem 1rem;
}
#signup .entry .e_info .wrap .sub .input {
    width: 50%;
    box-sizing: border-box;
    border: 1px solid #A6A6A6;
    border-radius: 10px;
    font-size: 1.3rem;
    color: #4B4B4B;
    padding: 1rem;
}
#signup .entry .e_info .wrap .sub .input.input2 {
    text-align: center;
} 
#signup .entry .e_info .wrap .sub .input.input3 {
    width: 100%;
}
#signup .entry .e_info .wrap .sub .input.input4 {
	width: 100%;
	min-height: 10rem;
    font-family: 'zonaPro_R';
    font-size: 1.3rem;
    color: #4B4B4B;
	resize: none;
}
#signup .entry .e_info .wrap .sub .bundle {
    width: 100%;
    box-sizing: border-box;
    display: flex;
    column-gap: 0.5rem;
}
#signup .entry .e_info .wrap .sub .bundle2 {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 1.5rem;
}
#signup .entry .e_info .wrap .sub .bundle3 {
    width: 80%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    row-gap: 1rem;
}
#signup .entry .e_info .wrap .sub .btn {
    background-color: #A6A6A6;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'zonaPro_B';
    font-size: 1.2rem;
    color: #FFF;
    padding: 0.5rem 2rem;
	cursor: pointer;
	transition: all .5s;
}
#signup .entry .e_info .wrap .sub .mini {
	font-family: 'zonaPro_B';
    font-size: 1rem;
    color: #5A5A5A;
    text-align: left;
}
#signup .entry .e_info .wrap .sub .radio_btn {
    display: flex;
    align-items: center;
    column-gap: 5px;
}
#signup .entry .e_info .wrap .sub .radio_btn .radio {
    width: 1.25rem;
    height: 1.25rem;
	position: relative;
    background-color: #FFF;
    border: 1px solid #D9D9D9;
    border-radius: 3px;
    appearance: none;
    outline: 0;
    margin: 0;
	cursor: pointer;
    transition: all .5s;
}
#signup .entry .e_info .wrap .sub .radio_btn .radio::after {
    content: '';
    width: 15%;
    height: 40%;
    display: none;
    position: absolute;
    top: 20%;
    left: 40%;
    transform: rotate(45deg);
    border: 1px solid #FFF;
    border-width: 0 2px 2px 0;
}
#signup .entry .e_info .wrap .sub .radio_btn .radio:checked {
	background-color: #05A2E6;
	border: 1px solid #05A2E6;
}
#signup .entry .e_info .wrap .sub .radio_btn .radio:checked::after {
	display: block;
}
#signup .entry .e_info .wrap .sub .radio_btn .txt {
    position: relative;
    font-size: 1.3rem;
    color: #4B4B4B;
    cursor: pointer;
}
#signup .entry .e_info .wrap .sub .radio_btn .txt::after {
    content: '';
    width: 0;
    height: 0.6rem;
    position: absolute;
    bottom: 0;
    left: 50%;
    background-color: rgba(5, 162, 230, 0.2);
    transition: all .5s;
}
#signup .entry .e_info .wrap .sub .radio_btn .radio:checked + .txt::after {
	width: 100%;
	left: 0;
}
#signup .entry .e_info .wrap .sub .file {
	display: none;
}
#signup .entry .e_info .wrap .sub .t_box {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 2rem;
}
#signup .entry .e_info .wrap .sub .t_box .text {
	width: 20%;
	font-family: 'zonaPro_B';
    font-size: 1.4rem;
    color: #2A2A2A;
}
#signup .entry .e_info .wrap .sub .t_box .time {
	width: 80%;
    display: flex;
    align-items: center;
    column-gap: 1rem;
}
#signup .entry .e_info .wrap .sub .t_box .time  .time_input {
    display: flex;
    align-items: center;
    column-gap: 0.5rem;
}
#signup .entry .e_info .wrap .sub .t_box .time .side_txt {
    font-size: 1.3rem;
    color: #4B4B4B;
}
#signup .signup_btn {
    width: 20rem;
    max-width: 100%;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #05A2E6;
    border: navajowhite;
    border-radius: 50px;
    font-family: 'zonaPro_B';
    font-size: 2rem;
    color: #FFF;
    padding: 1rem 1rem;
    margin: 0 auto;
    transition: all .5s;
    cursor: pointer;
}

/* ------------------------------------ */
/* ✏ FAQ(faq.html) */
#faq .list_box {
    display: flex;
	flex-direction: column;
	row-gap: 1rem;
}
#faq .list_box .list {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #D9D9D9;
    border-radius: 8px;
    padding: 0 2rem;
	transition: all .5s;
}
#faq .list_box .list.active {
    border: 1px solid #05A2E6;
}
#faq .list_box .list .question {
	box-sizing: border-box;
    display: flex;
    align-items: baseline;
    column-gap: 1rem;
    background-image: url('../img/arrow_bottom1.png');
    background-position: right center;
	background-size: 1.3rem;
    background-repeat: no-repeat;
    cursor: pointer;
    padding: 1.5rem 2rem 1.5rem 0;
}
#faq .list_box .list.active .question {
    background-image: url('../img/arrow_top1.png');
}
#faq .list_box .list .question .q {
    width: 2.5rem;
    height: 2.5rem;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #9B9B9B;
    border-radius: 10px;
    font-family: 'zonaPro_SmB';
    font-size: 1.6rem;
    color: #FFF;
    padding: 0.5rem;
}
#faq .list_box .list.active .question .q {
    background-color: #05A2E6;
}
#faq .list_box .list .question .txt {
    font-family: 'zonaPro_SmB';
    font-size: 1.6rem;
    color: #1F1F1F;
	line-height: 130%;
}
#faq .list_box .list .answer {
    box-sizing: border-box;
    display: none;
    border-top: 1px solid #DDE0E4;
    padding: 1.5rem 0;
}
#faq .list_box .list.active .answer {
    display: block;
}
#faq .list_box .list .answer .wrap {
    display: flex;
    align-items: baseline;
    column-gap: 1rem;
}
#faq .list_box .list .answer .wrap .a {
    width: 2.5rem;
    height: 2.5rem;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
	flex-shrink: 0;
    background-color: #FED001;
    border-radius: 10px;
    font-family: 'zonaPro_SmB';
    font-size: 1.6rem;
    color: #FFF;
    padding: 0.5rem;
}
#faq .list_box .list .answer .wrap .txts {
    display: flex;
    flex-direction: column;
    row-gap: 2rem;
}
#faq .list_box .list .answer .wrap .txt1 {
    font-size: 1.3rem;
    color: #757575;
    line-height: 150%;
}
#faq .list_box .list .answer .wrap .txt1.type1 {
	margin-left: 1.5rem;
}
#faq .list_box .list .answer .wrap .txt2 {
    font-family: 'zonaPro_SmB';
    font-size: 1.5rem;
    color: #4B4B4B;
    margin-bottom: 0.5rem;
}
#faq .list_box .list .answer .wrap .txt2.type1 {
	color: #05A2E6;
	margin-bottom: 1rem;
}
#faq .list_box .list .answer .wrap .gap {
	margin-left: 1.5rem;
}
#faq .list_box .list .answer .wrap .gap2 {
    margin-bottom: 0.8rem;
}

/* ------------------------------------ */
/* ✏ 교육용 자료(training_materials.html) */
#traMat .video_box .tabnav {
    display: flex;
    align-items: center;
    column-gap: 1.5rem;
    margin-bottom: 4rem;
}
#traMat .video_box .tabnav .nav {
    width: 100%;
    box-sizing: border-box;
    background-color: #FFF;
    border: 2px solid #05A2E6;
    border-radius: 60px;
    font-family: 'zonaPro_SmB';
    color: #4B4B4B;
    font-size: 1.8rem;
    text-align: center;
    line-height: 120%;
    padding: 1rem;
}
#traMat .video_box .tabnav .nav.active {
    background-color: #05A2E6;
    color: #FFF;
    pointer-events: none;
}
#traMat .video_box .tabnav .nav br.br1 {
    display: none;
}
#traMat .video_box .tabnav .nav br.br2 {
    display: none;
}
#traMat .video_box .tabcontent .con {
	display: flex;
	flex-direction: column;
	row-gap: 5rem;
}
#traMat .video_box .tabcontent .con .wrap .title {
    width: 100%;
    box-sizing: border-box;
    background-image: linear-gradient(90deg, #5970FC 0%, #FA66C6 100%);
	border-radius: 10px;
    font-family: 'zonaPro_SmB';
    color: #FFF;
    font-size: 1.8rem;
    text-align: center;
    padding: 1rem;
    margin-bottom: 1.5rem;
}
#traMat .video_box .tabcontent .con .wrap .video {
    width: 100%;
    box-sizing: border-box;
    position: relative;
}
#traMat .video_box .tabcontent .con .wrap .video video {
    width: 100%;
    box-sizing: border-box;
    border: 5px solid #000;
    border-radius: 10px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
    object-fit: fill;
}
#traMat .video_box .tabcontent .con .wrap .video .play {
    width: 7rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
}

/* ------------------------------------------------------------------------------------ */
/* 마우스 hover */
/* ✏ 상단(header.php) */
/* 메뉴의 텍스트 - 형광펜 */
#header .box .menu .list:hover .link:after {
	width: 100%;
	left: 0;
}

/* ------------------------------------------------------------------------------------ */
/* 마우스 hover PC 버전만 적용 */
@media (hover: hover) {
	/* ✏ 상단(header.php) */
	/* 메뉴 드롭 텍스트 - 폰트 색상 변경 */
	#header .box .menu .list .drop li a:hover {
		color: #05A2E6;
	}
	/* 모바일 메인 텍스트 - 배경 색상 및 폰트 색상 변경 */
	#header .box .mobile .mb_box .main:hover {
	    background-color: #05A2E6;
		color: #FFF;
	}
	/* 모바일 메인의 화살표 - 배경 이미지 변경 */
	#header .box .mobile .mb_box .main:hover .arrow {
	    background-image: url('../img/arrow_bottom2.png');
	}
	/* 모바일 메인의 화살표의 위 - 배경 이미지 변경 */
	#header .box .mobile .mb_box .main:hover .arrow.up {
		background-image: url('../img/arrow_top2.png');
	}
	/* 모바일 서브 텍스트 - 폰트 색상 변경 */
	#header .box .mobile .mb_box .sub a:hover {
		color: #05A2E6;
	}
	
	/* ------------------------------------ */
	/* ✏ 메인(index.html) */
	/* 섹션1 */
	/* JOIN NOW 버튼 - 배경 색상 변경, 그림자 추가 */
	#main .sec1 .box .left .teach_btn:hover {
		background-color: #0092D0;
		box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
	}
	/* 섹션10 */
	/* swiper 이전 버튼 - 확대 */
	#main .sec10 .box .swiper .swiper-button-prev:hover {
		transform: translate(30%, -50%) scale(1.1);
	}
	/* swiper 다음 버튼 - 확대 */
	#main .sec10 .box .swiper .swiper-button-next:hover {
		transform: translate(-30%, -50%) scale(1.1);
	}
	/* 섹션12 */
	/* JOIN NOW 버튼 - 배경 색상 변경, 그림자 추가 */
	#main .sec12 .box .btn:hover {
		background-color: #0092D0;
		box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
	}

	/* ------------------------------------ */
	/* ✏ 티칭(teach.html) */
	/* 섹션1 */
	/* JOIN NOW 버튼 - 배경 색상 변경, 그림자 추가 */
	#teach .sec1 .box .left .teach_btn:hover {
		background-color: #0092D0;
		box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
	}
	/* 섹션7 */
	/* SIGN UP 버튼 - 배경 색상 변경, 그림자 추가 */
	#teach .sec7 .box .btn:hover {
		background-color: #0092D0;
		box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
	}

	/* ------------------------------------ */
	/* ✏ 회원가입(signup.html) */
	/* 버튼 - 배경 색상 변경, 그림자 추가 */
	#signup .entry .e_info .wrap .sub .btn:hover {
		background-color: #797979;
		box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
	}
	/* 라디오 버튼 - 형광펜 */
	#signup .entry .e_info .wrap .sub .radio_btn:hover .txt::after {
	    width: 100%;
		left: 0;
	}
	/* SIGN UP 버튼 - 배경 색상 변경, 그림자 추가 */
	#signup .signup_btn:hover {
		background-color: #0092D0;
		box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
	}

	/* ------------------------------------ */
	/* ✏ FAQ(faq.html) */
	/* 리스트 - 선 색상 변경, 그림자 추가 */
	#faq .list_box .list:hover {
	    border: 1px solid #05A2E6;
		box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
	}
	/* 선택된 리스트 - 선 색상 변경, 그림자 추가 */
	#faq .list_box .list.active:hover {
		box-shadow: none;
	}

	/* ------------------------------------ */
	/* ✏ 교육용 자료(training_materials.html) */
	/* 탭 버튼 - 배경 색상, 텍스트 색상 변경 */
	#traMat .video_box .tabnav .nav:hover {
		background-color: #05A2E6;
		color: #FFF;
	}
	/* 동영상 재생	버튼 - 확대 */
	#traMat .video_box .tabcontent .con .wrap .video .play:hover {
		transform: translate(-50%, -50%) scale(1.1);
	}
}

/* ------------------------------------------------------------------------------------ */
/* 반응형 */
/* PC 기준 */
@media only screen and (max-width: 1600px) {
	/* [1600px] ✏ 초기화 */
	html {
		font-size: 15px;
	}
}
@media only screen and (max-width: 1400px) {
	/* [1400px] ✏ 초기화 */
	html {
		font-size: 14px;
	}
}
@media only screen and (max-width: 1280px) {
	/* [1280px] ✏ 초기화 */
	html {
		font-size: 13px;
	}

	/* ------------------------------------ */
	/* [1280px] ✏ 상단(header.php) */
	#header {
	    height: 100px;
	}
    #header .box .logo img {
        width: 10rem;
    }
	#header .box .menu {
		width: 75%;
	    padding: 0.8rem 4rem;
	}

	/* ------------------------------------ */
	/* [1280px] ✏ 하단(footer.php) */
	#footer .box .info .con1 .txt {
		font-size: 1.05rem;
	}
	#footer .box .info .con2 .txt2 {
		font-size: 1.05rem;
	}

	/* ------------------------------------ */
	/* [1280px] ✏ [공통] 페이지 */
	/* [1280px] 메인(index.html), 티칭(teach.html), 회원가입(signup.html) */
	/* [1280px] FAQ(faq.html), 교육용 자료(training_materials.html) */ 
	.page {
		margin-top: 100px;
	}

	/* ------------------------------------ */
	/* [1280px] 메인(index.html) */
	/* [1280px] 섹션1 */
	#main .sec1 {
		padding: 5rem 3rem;
	}
	#main .sec1 .point1 {
		width: 14rem;
	}
	#main .sec1 .box .left .teach_txt1 {
		font-size: 4.2rem;
	}
	#main .sec1 .box .left .teach_txt2 {
		font-size: 1.8rem;
	}
	/* [1280px] 공통 구성1 */
	#main .commonForm1 .box .common_txt1 {
		font-size: 3rem;
	}
	#main .commonForm1 .box .common_txt2 {
		font-size: 1.7rem;
	}
	/* [1280px] 공통 텍스트 */
	#main .titleTxt {
		font-size: 3rem;
	}
	/* [1280px] 섹션3 */
	#main .sec3 .box .reason .r_wrap .text2 {
		min-height: 21rem;
	}
	/* [1280px] 섹션10 */
	#main .sec10 .box .swiper .swiper-button-next {
		right: 27.5%;
	}
	#main .sec10 .box .swiper .swiper-button-prev {
		left: 27.5%;
	}
	#main .sec10 .box .con {
		min-height: 44rem;
	}
	/* [1280px] 섹션12 */
	#main .sec12 .box .i_box .i_wrap {
		width: 40%;
	}

	/* ------------------------------------ */
	/* [1280px] ✏ 티칭(teach.html) */
	/* [1280px] 섹션1 */
	#teach .sec1 {
		padding: 8.5rem 3rem;
	}
	#teach .sec1 .point1 {
		width: 14rem;
	}
	#teach .sec1 .box .left .teach_txt1 {
		font-size: 3.3rem;
	}
	#teach .sec1 .box .left .teach_txt2 {
		font-size: 1.8rem;
	}
	#teach .sec1 .box .right .point2 {
		width: 40rem;
		transform: translateX(-3rem);
	}
	/* [1280px] 공통 구성1 */
	#teach .commonForm1 .box .common_txt1 {
		font-size: 3rem;
	}
	#teach .commonForm1 .box .common_txt2 {
		font-size: 1.7rem;
	}
	/* [1280px] 섹션7 */
	#teach .sec7 .box .i_box .i_wrap {
		width: 40%;
	}
}
@media only screen and (max-width: 1100px) {
	/* [1100px] 메인(index.html) */
	/* [1100px] 섹션1 */
	#main .sec3 .box .child .child_img1 {
		width: 28%;
		left: 22%;
	}
	#main .sec3 .box .child .child_img2 {
		width: 35%;
	}
	#main .sec3 .box .child .child_img3 {
		width: 28%;
		right: 22%;
	}
}
/* TABLET 기준 */
@media only screen and (max-width: 1023px) {
	/* [1023px] ✏ 초기화 */
	html {
		font-size: 12px;
	}

	/* ------------------------------------ */
	/* [1023px] ✏ 상단(header.php) */
	#header {
	    height: 80px;
		padding: 0 2rem;
	}
	#header .box .logo img {
		width: 9rem;
	}
	#header .box .menu {
		width: 80%;
		padding: 0.8rem 2rem;
	}

	/* ------------------------------------ */
	/* [1023px] ✏ 하단(footer.php) */
	#footer {
		padding: 3rem 2rem;
	}

	/* ------------------------------------ */
	/* [1023px] ✏ [공통] 페이지 */
	/* [1023px] 메인(index.html), 티칭(teach.html), 회원가입(signup.html) */
	/* [1023px] FAQ(faq.html), 교육용 자료(training_materials.html) */ 
	.page {
		margin-top: 80px;
	}
    .page .substance {
        padding: 4rem 2rem;
    }

	/* ------------------------------------ */
	/* [1023px] 메인(index.html) */
	/* [1023px] 섹션1 */
	#main .sec1 {
		padding: 7rem 2rem;
	}
    #main .sec1 .point1 {
        width: 12rem;
    }
    #main .sec1 .box .left .teach_txt1 {
        font-size: 3.9rem;
    }
    #main .sec1 .box .left .teach_txt2 {
        font-size: 1.7rem;
    }
	/* [1023px] 공통 구성1 */
	#main .commonForm1 {
		padding: 2rem;
	}
	/* [1023px] 섹션3 */
	#main .sec3 {
		padding: 5rem 2rem 0;
	}
	#main .sec3 .box .reason {
		column-gap: 1.5rem;
	}
	#main .sec3 .box .reason .r_wrap .text1 br {
		display: block;
	}
    #main .sec3 .box .reason .r_wrap .text2 {
        min-height: 26rem;
        padding: 4rem 1.5rem 2rem;
    }
	/* [1023px] 섹션5 */
	#main .sec5 {
		padding: 7rem 2rem;
	}
	/* [1023px] 섹션7 */
	#main .sec7 {
		padding: 7rem 2rem;
	}
	#main .sec7 .box {
		column-gap: 5%;
	}
	#main .sec7 .box .e_wrap {
		width: 47.5%;
	}
	/* [1023px] 섹션9 */
	#main .sec9 {
		padding: 5rem 2rem;
	}
	#main .sec9 .box .instructor {
		width: 45%;
	}
	#main .sec9 .box .right {
		width: 55%;
	}
	#main .sec9 .box .right .i_box {
		row-gap: 1.5rem;
	}
	/* [1023px] 섹션10 */
	#main .sec10 {
		padding: 5rem 2rem;
	}
	#main .sec10 .box .swiper .swiper-button-next {
		right: 17.5%;
	}
	#main .sec10 .box .swiper .swiper-button-prev {
		left: 17.5%;
	}
	#main .sec10 .box .con {
		min-height: 40rem;
	}
	/* [1023px] 섹션11 */
	#main .sec11 {
		padding: 5rem 2rem;
	}
	#main .sec11 .box .p_box .p_wrap .texts .text1 {
		font-size: 3.6rem;
	}
	#main .sec11 .box .p_box .p_wrap .texts .text2 {
		font-size: 1.5rem;
	}
	/* [1023px] 섹션12 */
	#main .sec12 {
		padding: 6rem 2rem;
	}
	#main .sec12 .box .i_box .i_wrap {
		width: 45%;
	}

	/* ------------------------------------ */
	/* [1023px] ✏ 티칭(teach.html) */
	/* [1023px] 섹션1 */
    #teach .sec1 {
        padding: 8.5rem 2rem;
    }
    #teach .sec1 .point1 {
        width: 12rem;
    }
    #teach .sec1 .box .right .point2 {
        width: 38rem;
        transform: translateX(-4rem);
    }
	/* [1023px] 공통 구성1 */
	#teach .commonForm1 {
		padding: 2rem;
	}
	/* [1023px] 섹션3 */
	#teach .sec3 {
		padding: 8rem 2rem;
	}
	#teach .sec3 .box .w_wrap {
		column-gap: 2rem;
	}
	#teach .sec3 .box .w_wrap .way {
		width: 23rem;
	}
	/* [1023px] 섹션5 */
	#teach .sec5 {
		padding: 3rem 2rem;
	}
	/* [1023px] 섹션7 */
	#teach .sec7 {
		padding: 6rem 2rem;
	}
    #teach .sec7 .box .i_box .i_wrap {
        width: 45%;
    }

	/* ------------------------------------ */
	/* [1023px] ✏ 회원가입(signup.html) */
	#signup .entry .e_info .wrap .sub .bundle3 {
		width: 90%;
	}
	
	/* ------------------------------------ */
	/* [1023px] ✏ 교육용 자료(training_materials.html) */
	#traMat .video_box .tabnav {
		column-gap: 1rem;
		margin-bottom: 3rem;
	}
	#traMat .video_box .tabnav .nav {
		font-size: 1.7rem;
		padding: 1rem 0.5rem;
	}
	#traMat .video_box .tabcontent .con {
		row-gap: 4rem;
	}
	#traMat .video_box .tabcontent .con .wrap .title {
		font-size: 1.7rem;
	}
	#traMat .video_box .tabcontent .con .wrap .video .play {
		width: 6.5rem;
	}
}
@media only screen and (max-width: 900px) {
	/* [900px] 메인(index.html) */
	/* [900px] 섹션3 */
	#main .sec3 .box .child {
		height: 27rem;
	}
}
/* MOBILE 기준 */
@media only screen and (max-width: 767px) {
	/* [767px] ✏ 초기화 */
	html {
		font-size: 11px;
	}

	/* ------------------------------------ */
	/* [767px] ✏ 상단(header.php) */
	#header {
	    height: 60px;
		padding: 0 1.5rem;
	}
	#header .box .logo img {
		width: 9rem;
	}
    #header .box .menu {
        display: none;
    }
	#header .box .burger {
		display: block;
	}
	#header .box .mobile.open {
		display: block;
	}
	#header .box .mobile_bg.set {
		display: block;
	}

	/* ------------------------------------ */
	/* [767px] ✏ 하단(footer.php) */
	#footer {
		padding: 2rem 1.5rem;
	}
	#footer .box .info {
		flex-direction: column;
		row-gap: 2rem;
		align-items: flex-start;
	}
	#footer .box .info .con1 .txt {
		font-size: 1.15rem;
	}
	#footer .box .info .con1 .txt .m_br {
		display: block;
	}
	#footer .box .info .con1 .txt .m_line {
		display: none;
	}
	#footer .box .info .con2 .txt2 {
		font-size: 1.15rem;
	}

	/* ------------------------------------ */
	/* [767px] ✏ [공통] 페이지 */
	/* [767px] 메인(index.html), 티칭(teach.html), 회원가입(signup.html) */
	/* [767px] FAQ(faq.html), 교육용 자료(training_materials.html) */ 
	.page {
		margin-top: 60px;
	}
    .page .substance {
        padding: 3rem 1.5rem;
    }
	.page .substance .substance_box .titleBox {
		border-bottom: 3px solid #EEE;
		margin-bottom: 2rem;
	}
	.page .substance .substance_box .titleBox .title_txt {
		font-size: 2.8rem;
	}

	/* ------------------------------------ */
	/* [767px] 메인(index.html) */
	/* [767px] 섹션1 */
    #main .sec1 {
        padding: 2rem 1.5rem;
    }
    #main .sec1 .point1 {
        width: 8rem;
        top: 0;
        left: -5px;
        bottom: unset;
        transform: rotate(90deg);
    }
	#main .sec1 .box {
		flex-direction: column;
		justify-content: flex-start;
		row-gap: 3.5rem;
	}
	#main .sec1 .box .left {
		width: 100%;
        align-items: center;
	}
    #main .sec1 .box .left .teach_txt1 {
        font-size: 3.6rem;
		text-align: center;
    }
    #main .sec1 .box .left .teach_txt2 {
        font-size: 1.6rem;
        text-align: center;
	    margin-bottom: 2rem;
    }
	#main .sec1 .box .right {
		width: 100%;
	}
    #main .sec1 .right .point2 {
        width: 30rem;
    }
	/* [767px] 공통 구성1 */
	#main .commonForm1 {
		padding: 2rem 1.5rem;
	}
    #main .commonForm1 .box .common_txt1 {
        font-size: 2.8rem;
    }
	#main .commonForm1 .box .common_txt1 br {
		display: none;
	}
    #main .commonForm1 .box .common_txt2 {
        font-size: 1.6rem;
    }
	#main .commonForm1 .box .common_txt2 br {
		display: none;
	}
	/* [767px] 공통 텍스트 */
    #main .titleTxt {
        font-size: 2.8rem;
    }
	/* [767px] 섹션3 */
    #main .sec3 {
        padding: 4rem 1.5rem 0;
    }
	#main .sec3 .box .award {
		column-gap: 3%;
		margin-bottom: 1.5rem;
	}
	#main .sec3 .box .reason {
        flex-direction: column;
        row-gap: 0;
    }
	#main .sec3 .box .reason .r_wrap .text1 {
		border-radius: 20px;
		font-size: 1.7rem;
		padding: 1.5rem 1rem;
	}
	#main .sec3 .box .reason .r_wrap .text1 br {
		display: none;
	}
    #main .sec3 .box .reason .r_wrap .text2 {
        min-height: unset;
        border-radius: 0 0 20px 20px;
        font-size: 1.4rem;
        margin-bottom: -1rem;
    }
    #main .sec3 .box .child {
        height: 25rem;
    }
	/* [767px] 섹션5 */
	#main .sec5 {
		padding: 6rem 1.5rem;
	}
	#main .sec5 .box {
		column-gap: 5%;
	}
	#main .sec5 .box .logo_img1 {
		width: 23%;
	}
	#main .sec5 .box .logo_img2 {
		width: 44%;
	}
	#main .sec5 .box .logo_img3 {
		width: 23%;
	}
	/* [767px] 섹션7 */
    #main .sec7 {
        padding: 6rem 1.5rem;
    }
    #main .sec7 .box {
        row-gap: 2rem;
    }
    #main .sec7 .box .e_wrap {
        width: 100%;
    }
	#main .sec7 .box .e_wrap .e_txt1 {
		border-radius: 15px;
		padding: 1rem;
	}
	/* [767px] 섹션9 */
    #main .sec9 {
        padding: 4rem 1.5rem;
    }
	#main .sec9 .box {
		flex-direction: column;
		row-gap: 2rem;
	}
    #main .sec9 .box .instructor {
        width: 50%;
    }
    #main .sec9 .box .right {
        width: 100%;
    }
	#main .sec9 .box .titleTxt {
		margin-bottom: 1.5rem;
	}
	#main .sec9 .box .right .sub_txt {
		margin-bottom: 1.5rem;
	}
	#main .sec9 .box .right .i_box .i_wrap .checkbox {
		width: 2.2rem;
	}
	/* [767px] 섹션10 */
	#main .sec10 {
		padding: 4rem 1.5rem;
	}
	#main .sec10 .box .swiper .swiper-button-next {
		right: 3.5%;
	}
	#main .sec10 .box .swiper .swiper-button-prev {
		left: 3.5%;
	}
	#main .sec10 .box .con {
		padding: 9rem 1.5rem 2rem;
	}
	#main .sec10 .box .con .txt1 {
		font-size: 1.35rem;
	}
	#main .sec10 .box .con .txt2 {
		font-size: 1.6rem;
	}
	/* [767px] 섹션11 */
    #main .sec11 {
        padding: 5rem 1.5rem;
    }
	#main .sec11 .box .p_box {
		margin-left: -7.5rem;
	}
	#main .sec11 .box .p_box .p_wrap:nth-child(1) {
		transform: translateX(7.5rem);
	}
	#main .sec11 .box .p_box .p_wrap:nth-child(2) {
		transform: translateX(5rem);
	}
	#main .sec11 .box .p_box .p_wrap:nth-child(3) {
		transform: translateX(2.5rem);
	}
    #main .sec11 .box .p_box .p_wrap .texts .text1 {
        font-size: 3.4rem;
    }
    #main .sec11 .box .p_box .p_wrap .texts .text2 {
        font-size: 1.4rem;
    }
	/* [767px] 섹션12 */
	#main .sec12 {
		padding: 4rem 1.5rem;
	} 
    #main .sec12 .box .i_box {
        flex-direction: column;
        row-gap: 2rem;
        margin-bottom: 3rem;
    }
    #main .sec12 .box .i_box .i_wrap {
        width: 100%;
    }
    #main .sec12 .box .i_box .i_wrap .icon {
        width: 15rem;
    }
	#main .sec12 .box .i_box .i_wrap .txts .txt {
		font-size: 1.65rem;
	}

	/* ------------------------------------ */
	/* [767px] ✏ 티칭(teach.html) */
	/* [767px] 섹션1 */
    #teach .sec1 {
        padding: 2rem 1.5rem;
    }
    #teach .sec1 .point1 {
        width: 8rem;
        top: 0;
        left: -5px;
        bottom: unset;
        transform: rotate(90deg);
    }
	#teach .sec1 .box {
		flex-direction: column;
		justify-content: flex-start;
		row-gap: 3.5rem;
	}
	#teach .sec1 .box .left {
		width: 100%;
        align-items: center;
	}
	#teach .sec1 .box .left .teach_txt1 {
        font-size: 3.1rem;
		text-align: center;
    }
    #teach .sec1 .box .left .teach_txt2 {
        font-size: 1.6rem;
        text-align: center;
        margin-bottom: 2rem;
    }
	#teach .sec1 .box .right {
		width: 100%;
		box-sizing: border-box;
		display: flex;
		justify-content: center;
	}
    #teach .sec1 .box .right .point2 {
        width: 36rem;
        position: unset;
        transform: unset;
        margin-bottom: -2rem;
    }
	/* [767px] 공통 구성1 */
	#teach .commonForm1 {
		padding: 2rem 1.5rem;
	}
    #teach .commonForm1 .box .common_txt1 {
        font-size: 2.8rem;
    }
	#teach .commonForm1 .box .common_txt1 br {
		display: none;
	}
    #teach .commonForm1 .box .common_txt2 {
        font-size: 1.6rem;
    }
	#teach .commonForm1 .box .common_txt2 br {
		display: none;
	}
	/* [767px] 섹션3 */
    #teach .sec3 {
        padding: 6rem 1.5rem;
    }
	#teach .sec3 .box {
		row-gap: 3rem;
	}
    #teach .sec3 .box .w_wrap {
        flex-direction: column;
        row-gap: 1rem;
    }
    #teach .sec3 .box .w_wrap .way {
        width: 50%;
        border-radius: 10px;
    }
	#teach .sec3 .box .w_wrap .txts {
		align-items: center;
	    row-gap: 0.5rem;
	}
	#teach .sec3 .box .w_wrap .txts .txt2 {
		text-align: center;
	}
	/* [767px] 섹션5 */
	#teach .sec5 {
		padding: 2rem 1.5rem;
	}
	/* [767px] 섹션7 */
	#teach .sec7 {
		padding: 4rem 1.5rem;
	} 
	#teach .sec7 .box .i_box {
        flex-direction: column;
        row-gap: 2rem;
        margin-bottom: 3rem;
	}
	#teach .sec7 .box .i_box .i_wrap {
		width: 100%;
	}
	#teach .sec7 .box .i_box .i_wrap .icon {
		width: 15rem;
	}
	#teach .sec7 .box .i_box .i_wrap .txt {
		font-size: 1.65rem;
	}

	/* ------------------------------------ */
	/* [767px] ✏ 회원가입(signup.html) */
	#signup .entry {
		margin-bottom: 3rem;
	}
	#signup .entry .e_title {
		margin-bottom: 8px;
	}
	#signup .entry .e_info {
		row-gap: 5px;
	}
	#signup .entry .e_info.e_info2 {
		column-gap: 5px;
	}
	#signup .entry .e_info .wrap {
		column-gap: 4px;
	}
	#signup .entry .e_info .wrap.wrap2 {
		justify-content: flex-end;
	    row-gap: 4px;
	}
	#signup .entry .e_info .wrap .main {
		width: 14rem;
        padding: 0.6rem;
	}
	#signup .entry .e_info .wrap .main br {
		display: block;
	}
	#signup .entry .e_info .wrap .main.main3 {
	    word-break: break-all;
	}
	#signup .entry .e_info .wrap .sub {
		padding: 0.6rem;
	}
	#signup .entry .e_info .wrap .sub.sub3 {
		padding: 0.6rem;
	}
	#signup .entry .e_info .wrap .sub .input {
		width: 100%;
	    border-radius: 5px;
	}
    #signup .entry .e_info .wrap .sub .bundle3 {
        width: 100%;
    }
	#signup .entry .e_info .wrap .sub .radio_btn .radio::after {
		top: 15%;
		border-width: 0 1.5px 1.5px 0;
	}
	#signup .entry .e_info .wrap .sub .t_box {
		flex-direction: column;
		row-gap: 5px;
	}
	#signup .entry .e_info .wrap .sub .t_box .text {
		width: 100%;
	}
	#signup .entry .e_info .wrap .sub .t_box .time {
		width: 100%;
		column-gap: 0.5rem;
	}

	/* ------------------------------------ */
	/* [767px] ✏ FAQ(faq.html) */
	#faq .list_box .list {
		padding: 0 1.5rem;
	}
	#faq .list_box .list .question {
	    column-gap: 0.8rem;
	    background-size: 1.1rem;
	    padding: 1.2rem 2rem 1.2rem 0;
	}
	#faq .list_box .list .question .q {
		border-radius: 5px;
	}
	#faq .list_box .list .answer {
		padding: 1.2rem 0;
	}
	#faq .list_box .list .answer .wrap {
		column-gap: 0.8rem;
	}
	#faq .list_box .list .answer .wrap .a {
		border-radius: 5px;
	}
	
	/* ------------------------------------ */
	/* [767px] ✏ 교육용 자료(training_materials.html) */
    #traMat .video_box .tabnav {
        column-gap: 0.7rem;
        margin-bottom: 2rem;
    }
    #traMat .video_box .tabnav .nav {
        border: 1px solid #05A2E6;
        border-radius: 10px;
        font-size: 1.6rem;
    }
	#traMat .video_box .tabnav .nav br.br2 {
		display: block;
	}
    #traMat .video_box .tabcontent .con {
        row-gap: 3rem;
    }
    #traMat .video_box .tabcontent .con .wrap .title {
        font-size: 1.6rem;
	    margin-bottom: 1rem;
    }
	#traMat .video_box .tabcontent .con .wrap .video video {
		border: 2px solid #000;
	}
    #traMat .video_box .tabcontent .con .wrap .video .play {
        width: 6rem;
    }
}
@media only screen and (max-width: 700px) {
	/* [700px] 메인(index.html) */
	/* [700px] 섹션3 */
    #main .sec3 .box .child {
        height: 22rem;
    }
}
@media only screen and (max-width: 600px) {
	/* [600px] 메인(index.html) */
	/* [600px] 섹션3 */
    #main .sec3 .box .child {
        height: 20rem;
    }
	/* [600px] 섹션11 */
    #main .sec11 .box .p_box .p_wrap .texts .text1 {
        font-size: 3rem;
    }
    #main .sec11 .box .p_box .p_wrap .texts .text2 {
        font-size: 1.4rem;
    }
}
@media only screen and (max-width: 500px) {
	/* [500px] 메인(index.html) */
	/* [500px] 섹션3 */
    #main .sec3 .box .child {
        height: 17rem;
    }
	/* [500px] 섹션9 */
    #main .sec9 .box .instructor {
        width: 60%;
    }
	/* [500px] 섹션10 */
    #main .sec10 .box .swiper .swiper-button-prev {
        left: 1.5%;
    }
    #main .sec10 .box .swiper .swiper-button-next {
        right: 1.5%;
    }
	/* [500px] 섹션11 */
	#main .sec11 .box .p_box .p_wrap .texts {
        left: 55%;
    }
    #main .sec11 .box .p_box .p_wrap .texts .text1 {
        font-size: 2.6rem;
    }
    #main .sec11 .box .p_box .p_wrap .texts .text2 {
        font-size: 1.2rem;
    }

	/* ------------------------------------ */
	/* [500px] ✏ 티칭(teach.html) */
	/* [500px] 섹션3 */
    #teach .sec3 .box .w_wrap .way {
        width: 60%;
    }
}
@media only screen and (max-width: 450px) {
	/* [450px] ✏ 초기화 */
	html {
		font-size: 10px;
	}

	/* ------------------------------------ */
	/* [450px] 섹션9 */
    #main .sec9 .box .instructor {
        width: 70%;
    }
	/* [450px] 섹션11 */
    #main .sec11 .box .p_box .p_wrap .texts {
        left: 60%;
    }
    #main .sec11 .box .p_box .p_wrap .texts .text1 {
        font-size: 2.4rem;
    }
    #main .sec11 .box .p_box .p_wrap .texts .text2 {
        font-size: 1.1rem;
    }

	/* ------------------------------------ */
	/* [450px] ✏ 티칭(teach.html) */
	/* [450px] 섹션3 */
    #teach .sec3 .box .w_wrap .way {
        width: 70%;
    }
}
@media only screen and (max-width: 400px) {
	/* [400px] 메인(index.html) */
	/* [400px] 섹션3 */
    #main .sec3 .box .child {
        height: 15rem;
    }
	/* [400px] 섹션9 */
    #main .sec9 .box .instructor {
        width: 80%;
    }
	/* [400px] 섹션10 */
	#main .sec10 .box .con {
        min-height: 45rem;
    }

	/* ------------------------------------ */
	/* [400px] ✏ 티칭(teach.html) */
	/* [400px] 섹션3 */
    #teach .sec3 .box .w_wrap .way {
        width: 80%;
    }
}
@media only screen and (max-width: 380px) {
	/* [380px] ✏ 교육용 자료(training_materials.html) */
	#traMat .video_box .tabnav .nav br.br1 {
		display: block;
	}
}
@media only screen and (max-width: 350px) {
	/* [350px] 메인(index.html) */
	/* [350px] 섹션3 */
    #main .sec3 .box .child {
        height: 12rem;
    }
	/* [350px] 섹션9 */
    #main .sec9 .box .instructor {
        width: 90%;
    }

	/* ------------------------------------ */
	/* [350px] ✏ 티칭(teach.html) */
	/* [350px] 섹션3 */
    #teach .sec3 .box .w_wrap .way {
        width: 90%;
    }
}
@media only screen and (max-width: 300px) {
	/* [300px] 메인(index.html) */
	/* [300px] 섹션7 */
	#main .sec7 .box .e_wrap .e_txt1 br {
		display: none;
	}
	/* [300px] 섹션9 */
    #main .sec9 .box .instructor {
        width: 100%;
    }

	/* ------------------------------------ */
	/* [300px] ✏ 티칭(teach.html) */
	/* [300px] 섹션3 */
    #teach .sec3 .box .w_wrap .way {
        width: 100%;
    }

	/* ------------------------------------ */
	/* [300px] ✏ 회원가입(signup.html) */
	#signup .entry .e_info .wrap .main {
        word-break: break-all;
	}
}