@charset "UTF-8";
body.scroll_off {
	overflow: hidden;
}

.display_none {
    display: none;
}

/* 전 페이지 공통 */
.m_display_none {
	display: none;	
}

.display_flex {
    display: flex;
}

.flex_wrap {
    flex-wrap: wrap;
}

.flex_nowrap {
    flex-wrap: nowrap;
}

.flex_start {
    justify-content: flex-start;
}

.flex_center {
    justify-content: center;
}

.flex_end {
    justify-content: flex-end;
}

.flex_between {
    justify-content: space-between;
}

.flex_around {
    justify-content: space-around;
}

.flex_align_s {
    align-items: flex-start;
}

.flex_align_c {
    align-items: center;
}

.flex_align_e {
    align-items: flex-end;
}

.flex_align_str {
    align-items: stretch;
}

.flex_dir_column {
    flex-direction: column;
}

input,
textarea {
    cursor: text;
    resize: none;
}

input::placeholder,
textarea::placeholder {
	color: #999999;
}

input::-webkit-inner-spin-button {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}

input:disabled,
input:read-only {
	cursor: default;
}

select,
select option,
button,
button *,
a img,
a p,
a {
    cursor: pointer;
}

button,
img {
    display: inline-block;
    background-color: transparent;
}

button[disabled] {
    cursor: default;
    color: #999!important;
    background-color: #ddd!important;
}

* {
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}

select::-ms-expand { 
	display: none;
}

select {
    -o-appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

body {
	width: 100%;
	height: auto;
    background-color: #FFFFFF;
}

body::-webkit-scrollbar {
	display: none;
}

a,
a *,
button,
button *,
select,
select * {
    cursor: pointer;
}


.main_section {
    width: calc(100% - 40px);
	min-height: calc(100vh - 70px);
    padding: 70px 20px 0 20px;
    margin: 0 auto;
}


p {
    word-break: keep-all;
}


/* 제목 공통 */
p.common_main_title {
	font-size: 16px;
	line-height: 24px;
	font-weight: bold;
	color: #191919;
}


/* 간격 공통 */
.mt0b10 {
	margin: 0 auto 10px auto;
}

.mt30b0 {
	margin: 30px auto 0 auto;
}

.mt30b15 {
	margin: 30px auto 15px auto;
}

.mt30b10 {
	margin: 30px auto 10px auto;
}

.mt50b0 {
	margin: 50px auto 0 auto;
}




.common_submenu_whole {
    position: fixed;
    width: 100%;
    height: auto;
    padding: 15px 0;
    top: 70px;
    left: 0;
    background-color: #FAFAFA;
    z-index: 5;
    display: none;
}

.common_submenu_inner {
    width: 100%;
    height: auto;
    margin: 0 auto;
    overflow: hidden;
    overflow-x: auto;
}

.common_submenu_inner::-webkit-scrollbar {
    display: none;
}

.common_submenu_txt {
    min-width: max-content;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    color: #8D92A5;
    margin: 0;
}

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

.common_submenu_txt.txt_on {
    font-weight: 500;
    color: #F05612;
}

.common_submenu_txt:first-child {
    padding-left: 20px;
}

.common_submenu_txt:last-child {
    padding-right: 20px;
}

.common_submenu_inner span {
    display: block;
    min-width: 1px;
    width: 1px;
    height: 14px;
    background-color: #8D92A5;
    margin: 0 15px;
}



/*컨텐츠 공통*/
.common_contents_whole {
    width: 100%;
    height: auto;
    margin: 0 auto;
}

.common_contents_row {
    width: 100%;
    height: auto;
    margin: 150px auto 0 auto;
}

.common_contents_row:first-child {
    margin-top: 50px;
}

.common_contents_row:last-child {
    margin-bottom: 150px;
}

p.common_contents_title {
    font-size: 24px;
    line-height: 36px;
    font-weight: bold;
    color: #333544;
    margin: 0 auto 20px auto;
}

p.common_contents_txt {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    color: #8D92A5;
    margin: 0 auto 40px auto;
}

.common_contents_inner {
    width: 100%;
    height: auto;
    margin: 0 auto;
}

.readingm_scroll {
    width: 100%;
    height: auto;
    margin: 0 auto;
    overflow: hidden;
    overflow-x: auto;
}

.readingm_scroll::-webkit-scrollbar {
    display: none;
}



/* progress */
.readingm_progressbar {
    position: relative;
	width: 100%;
	height: 8px;
	background-color: #CAEBEF;
    border-radius: 20px;
    overflow: hidden;
}

.readingm_progressbar .fill {
    position: absolute;
    width: auto;
    height: 100%;
    background-color: #2BA9BC;
    margin: 0!important;
    top: 0;
    left: 0;
    z-index: 1;
    border-radius: 20px;
}

progress {
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    height: 100%;
}

progress::-webkit-progress-bar {
    background: transparent;
}

progress::-webkit-progress-value {
    background-color: #2BA9BC;
}




@media (min-width: 768px) {
    .t_display_block {
        display: block;
    }

    .t_display_flex {
        display: flex;
    }
}




@media (min-width: 1024px) {
    /* 전 페이지 공통 */
    .w_display_none {
        display: none!important;
    }
    
    .w_display_flex {
        display: flex!important;
    }
    
    .w_display_block {
        display: block!important;
    }
    
    .w_flex_wrap {
        flex-wrap: wrap;
    }

    .w_flex_nowrap {
        flex-wrap: nowrap;
    }
    
    .w_flex_start {
        justify-content: flex-start;
    }

    .w_flex_center {
        justify-content: center;
    }

    .w_flex_end {
        justify-content: flex-end;
    }

    .w_flex_between {
        justify-content: space-between;
    }

    .w_flex_around {
        justify-content: space-around;
    }

    .w_flex_align_s {
        align-items: flex-start;
    }

    .w_flex_align_c {
        align-items: center;
    }

    .w_flex_align_e { 
        align-items: flex-end;
    }

    .w_flex_align_str {
        align-items: stretch;
    }

    .w_flex_dir_column {
        flex-direction: column;
    }
    
    /* 제목 공통 */
	p.common_main_title {
		font-size: 20px;
		line-height: 29px;
	}
    
    /* 간격 공통 */
    .wt0b15 {
    	margin: 0 auto 15px auto;
    }
    
    .wt10b15 {
    	margin: 10px auto 15px auto;
    }
    
    .wt16b10 {
    	margin: 16px auto 10px auto;
    }
    
    .wt16b15 {
    	margin: 16px auto 15px auto;
    }
    
    .wt50b15 {
    	margin: 50px auto 15px auto;
    }

	.wt50b0 {
		margin: 50px auto 0 auto;
	}


    .main_section {
        width: calc(100% - 100px);
        max-width: 1600px;
        padding: 130px 50px 0 50px;
    }


    .common_submenu_whole {
        display: block;
        padding: 27px 0;
        top: 130px;
    }

    .common_submenu_txt {
        font-size: 18px;
        line-height: 27px;
    }

    .common_submenu_inner span {
        margin: 0 24px;
    }

    .common_submenu_txt:first-child {
        padding-left: 50px;
    }

    .common_submenu_txt:last-child {
        padding-right: 50px;
    }


     /*컨텐츠 공통*/
    .common_contents_row {
        margin-top: 200px;
    }

    .common_contents_row:first-child {
        margin-top: 120px;
    }

    .common_contents_row:last-child {
        margin-bottom: 200px;
    }

    p.common_contents_title {
        font-size: 32px;
        line-height: 47px;
    }

    p.common_contents_txt {
        font-size: 16px;
        line-height: 24px;
    }
}


@media (min-width: 1300px) {
    .w_display_flex2 {
        display: flex;
    }

    .main_section {
        width: calc(100% - 200px);
        padding: 130px 100px 0 100px;
    }
}



@media (min-width: 1500px) {
    .w_display_flex3 {
        display: flex;
    }

    .main_section {
        width: calc(100% - 200px);
        padding: 130px 100px 0 100px;
    }
}



@media (min-width: 1620px) {
    .w_display_flex4 {
        display: flex;
    }
}