/* reset */
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; font-size: 100%;	font: inherit;}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {display: block;}
body {line-height: 1;}ol, ul { list-style: none;}blockquote, q {quotes: none;}blockquote:before, blockquote:after, q:before, q:after {content: '';content: none;}table {border-collapse: collapse;border-spacing: 0;}
a{text-decoration: none; color: inherit;}
button{border: none; font-family: inherit; background-color: transparent; cursor: pointer;}

@font-face {font-family: 'Platypi'; src: url('../fonts/Platypi/Platypi-Light.woff2') format('woff2'); font-weight: 300; font-style: normal;}@font-face {font-family: 'Platypi'; src: url('../fonts/Platypi/Platypi-Regular.woff2') format('woff2'); font-weight: 400; font-style: normal;}
@font-face {font-family: 'Platypi'; src: url('../fonts/Platypi/Platypi-Medium.woff2') format('woff2'); font-weight: 500; font-style: normal;}
@font-face {font-family: 'Platypi'; src: url('../fonts/Platypi/Platypi-SemiBold.woff2') format('woff2'); font-weight: 600; font-style: normal;}
@font-face {font-family: 'Pretendard'; src: url('../fonts/Pretendard/Pretendard-Regular.subset.woff2') format('woff2'); font-weight: 400; font-style: normal;}
@font-face {font-family: 'Pretendard'; src: url('../fonts/Pretendard/Pretendard-Medium.subset.woff2') format('woff2'); font-weight: 500; font-style: normal;}
@font-face {font-family: 'Pretendard'; src: url('../fonts/Pretendard/Pretendard-SemiBold.woff2') format('woff2'); font-weight: 600; font-style: normal;}

 /* Variables  */
 :root {
    --background-light: #FAFAFA;
    --background-dark: #F2F2F2;
    --background-onsurface: #FFFFFF;
    --border-light: #E6E6E6;
    --border-dark: #D9D9D9;
    --border-control: #CCCCCC;
    --icon-disabled: #B3B3B3;
    --icon-default: #333333;
    --text-disabled: #999999;
    --text-subdued: #595959;
    --text-default: #1A1A1A;
    --primary-40: #2273BB;
    --primary-50: #348CDA;
    --primary-90: #E9F3FB;
    --primary-95: #FAFCFE;
    --secondary-40: #C76505;
    --secondary-50: #F97E06;
    --secondary-70: #FBB26A;
    --secondary-80: #FCCB9C;
    --secondary-90: #FEE5CD;
    --secondary-95: #FFFAF5;
    --level-pawn: #F20D0D;
    --level-bishop: #EB6014;
    --level-rook: #F79F08;
    --level-knight: #39C64C;
    --level-queen: #169CE9;
    --level-king: #6F15EA;
    --level-pawn-gradient-end: #F2590D;
    --level-bishop-gradient-end: #EBA714;
    --level-rook-gradient-end: #F7CF08;
    --level-knight-gradient-end: #39C692;
    --level-queen-gradient-end: #1655E9;
    --level-king-gradient-end: #B515EA;
    --level-pawn-gradient: linear-gradient(90deg, #F20D0D 0%, var(--level-pawn-gradient-end) 100%);
    --level-bishop-gradient: linear-gradient(90deg, #EB6014 0%, var(--level-bishop-gradient-end) 100%);
    --level-rook-gradient: linear-gradient(90deg, #F79F08 0%, var(--level-rook-gradient-end) 100%);
    --level-knight-gradient: linear-gradient(90deg, #39C64C 0%, var(--level-knight-gradient-end) 100%);
    --level-queen-gradient: linear-gradient(90deg, #169CE9 0%, var(--level-queen-gradient-end) 100%);
    --level-king-gradient: linear-gradient(90deg, #6E15EA 0%, var(--level-king-gradient-end) 100%);
    --container-padding: 60px;
    --container-width: 1080px;
}
[data-theme="dark"]{
    --background-light: #1A1A1AFF;
    --background-dark: #595959FF;
    --background-onsurface: #000000FF;
    --border-light: #333333FF;
    --border-dark: #B3B3B3FF;
    --border-control: #CCCCCCFF;
    --icon-default: #F2F2F2FF;
    --text-disabled: #E6E6E6FF;
    --text-subdued: #F2F2F2FF;
    --text-default: #FAFAFAFF;
    --primary-40: #2273BBFF;
    --primary-50: #348CDAFF;
    --primary-90: #E9F3FBFF;
    --primary-95: #FAFCFEFF;
    --secondary-40: #C76505FF;
    --secondary-50: #F97E06FF;
    --secondary-70: #FBB26AFF;
    --secondary-80: #FCCB9CFF;
    --secondary-90: #FEE5CDFF;
    --secondary-95: #FEF5EBFF;
}
.flex{display: flex;}
.column{flex-direction: column;}

/**************** common ****************/

html{min-height: 100%; display: flex; flex-direction: column;}
body{font-family: 'Platypi', 'Pretendard'; font-weight: 400; margin: 0; padding: 0; color: var(--text-default); display: flex; flex-direction: column; min-height: 100%; flex-grow: 1; word-break: keep-all;}
body *{margin: 0; padding: 0; box-sizing: border-box;}

input[type="text"], input[type="password"]{display: flex; height: 56px; padding: 0px 16px; border-radius: 8px; border: 1px solid var(--border-control, #CCC); background: var(--background-onsurface, #FFF); font-size: 16px; font-weight: 500; font-family: inherit;}
input[type="text"]:focus, input[type="password"]:focus{outline: none; border: 1px solid var(--primary-50, #348CDA);;}
input[type="text"]::placeholder, input[type="password"]::placeholder{color: var(--text-disabled, #999);}
label{color: var(--text-subdued, #595959); font-size: 16px; font-weight: 500; line-height: 150%;}

select{border-radius: 8px; border: 1px solid var(--border-control, #CCC); background: var(--background-onsurface, #FFF); font-size: 16px; font-weight: 500; padding: 0 16px; height: 56px; flex-grow: 1; appearance: none; background: url('../img/arrow-down.svg') right 16px center no-repeat; font-family: inherit;}
select:focus{outline: none;}
select:invalid{color: var(--text-disabled, #999);}


.container{max-width: var(--container-width, 1080px); margin: 0 auto;}
.contents_wrap{padding: var(--container-padding, 60px) 0; min-height: 600px; flex-grow: 1; position: relative; z-index: 1;}
.color_primary{color: var(--primary-50, #348CDA);}
.color_secondary{color: var(--secondary-50, #F97E06);}
.pretendard, .pretendard *{font-family: 'Pretendard';}

/* button */
.contents_wrap a[class*="btn_"], .contents_wrap button[class*="btn_"]{position: relative; top: 0; transition: all 50ms ease-out; box-shadow: 0px 2px 0px 0px rgba(255, 255, 255, 0.25) inset; border-radius: 40px; min-height: 36px; display: flex; align-items: center; justify-content: center;}
.contents_wrap a[class*="btn_"]:after, .contents_wrap button[class*="btn_"]:after{content: ''; display: block; position: absolute; left: 0; top: 4px; width: 100%; height: 100%; border-radius: 40px; z-index: -1;}
.btn_wrap{position: relative; z-index: 1;}
.btn_xl{height: 72px; min-width: 400px; font-size: 22px;}

/* button hover */
.contents_wrap a[class*="btn_"]:active, .contents_wrap button[class*="btn_"]:active{top: 4px; box-shadow: 0px 2px 0px 0px rgba(0, 0, 0, 0.05) inset;}
.contents_wrap a[class*="btn_"]:active:after, .contents_wrap button[class*="btn_"]:active:after{top: 0px;}

/* button primary */
.contents_wrap .btn_primary{background: var(--primary-50, #348CDA); color: #FAFAFA;}
.contents_wrap .btn_primary:after{background: var(--primary-40, #2273BB);}

/* button secondary */
.contents_wrap .btn_secondary{background: var(--secondary-50, #F97E06); color: #FAFAFA;}
.contents_wrap .btn_secondary:after{background: var(--secondary-40, #C76505);}

/* button outline */
.contents_wrap .btn_outline{background: var(--background-onsurface, #FFF); border: 1px solid var(--border-dark, #D9D9D9);}
.contents_wrap .btn_outline:after{background: var(--border-dark, #D9D9D9);}


/* table */
table{border-top: 1px solid #E8E8E8; border-collapse: collapse; border-spacing: 0;}
table caption{font-size: 16px; line-height: 170%; font-weight: 600; text-align: left; margin: 0 0 15px;}
table tr{border-bottom: 1px solid #E8E8E8;}
table th{font-weight: 400;}
table td{padding: 16px;}
table th *, table td *{display: flex;}
table th *:not(:first-child), table td *:not(:first-child){margin: 10px 0 0 0;}
table.row{ font-size: 13px; line-height: 140%;}
table.row thead{background: #F9F9F9; height: 50px; font-weight: 600; text-align: center;}
table.row tbody{text-align: center;}
table.row td *{justify-content: center;}
table.column{font-size: 14px; line-height: 170%;}
table.column tbody{text-align: left;}
table.column th{background: #F9F9F9; font-weight: 600; text-align: center; position: relative;}
table.column th *{justify-content: center;}
table.column img{margin: 0 auto;}
table.secondary{border-top: 1px solid var(--secondary-90, #FEE5CD);}
table.secondary tr{border-bottom: 1px solid var(--secondary-90, #FEE5CD);}
table.secondary thead{background: var(--secondary-95, #FFFAF5);}

/* page header */
.page_header{display: flex; align-items: center; justify-content: space-between; font-size: 28px; font-weight: 500; line-height: 140%; height: 56px;}
.page_header.center{justify-content: center;}

/* pagination */
.pagination{display: flex; justify-content: center; padding: 20px 0;}
.pagination a, .pagination span{width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; font-size: 20px; font-weight: 300; color: var(--text-subdued, #595959);}
.pagination .active{border-radius: 100%; background: var(--primary-90, #E9F3FB); color: var(--primary-50, #348CDA); font-weight: 500;}


/* header */
header{border-bottom: 1px solid var(--border-light, #E6E6E6); background-color: var(--background-onsurface, #FFFFFF);}
header .container{display: flex; height: 100px; align-items: center; justify-content: space-between;}
header .container .left{display: flex; gap: 24px; height: 100%;}
header .container .left .logo{align-self: center;}
header .container .header_menu{display: flex;}
header .container .header_menu li{display: flex;}
header .container .header_menu a{padding: 0 16px; display: flex; align-items: center; justify-content: center; font-size: 20px; font-weight: 500;}
header .container .header_menu .on a{color: var(--primary-50, #348CDA); position: relative;}
header .container .header_menu .on a:after{content: ''; display: block; position: absolute; left: 0; bottom: -1px; width: 100%; height: 3px; background-color: var(--primary-50, #348CDA);}
header .container .log_wrap{display: flex;}
header .container .btn_wrap{display: flex; justify-content: center; align-items: center; gap: 12px;}
header .container .btn_wrap [class*="btn"]{display: flex; height: 44px; padding: 0px 20px; border-radius: 40px; justify-content: center; align-items: center; font-size: 16px; font-weight: 600;}
header .container .btn_t{background: var(--secondary-95, #FFFAF5); color: var(--secondary-50, #F97E06);}
header .container .btn_s{background: var(--primary-90, #E9F3FB);color: var(--primary-50, #348CDA);}
header .container .login_a .member_name{color: var(--text-subdued, #595959); font-size: 16px; font-weight: 600;}
header .container .login_a .btn_logout{border: 1px solid var(--border-light, #E6E6E6); font-weight: 400;}

/* footer */
footer{text-align: center; background-color: #1A1A1A; color: #E6E6E6;}
footer .container{height: 60px; display: flex; align-items: center; justify-content: center; font-size: 16px; font-weight: 300;}

/* layer */
.layer_wrap{position: fixed; left: 0; top: 0; width: 100%; height: 100%; z-index: 100; background-color: rgba(0, 0, 0, 0.3); display: flex; align-items: center; justify-content: center;}
.layer_wrap .layer_container{max-height: calc(100% - 200px); width: 560px; border-radius: 16px; background: var(--background-onsurface, #FFF); display: flex; flex-direction: column; overflow: hidden; gap: 20px;}
.layer_wrap .layer_header{display: flex; align-items: center; border-bottom: 1px solid var(--border-light, #E6E6E6); height: 60px; flex-shrink: 0; margin: 0 16px;}
.layer_wrap .layer_header strong{font-size: 18px; font-weight: 600; flex-grow: 1; padding: 0 8px;}
.layer_wrap .layer_header button{width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; flex-shrink: 0;}
.layer_wrap .layer_contents{overflow: overlay; padding: 0 24px 20px; font-size: 16px; font-weight: 400; line-height: 170%;}



/**************** //common ****************/

/* index */
.index_wrap{display: flex; flex-direction: column;}
.index_wrap .text_wrap{display: flex; flex-direction: column; gap: 40px; padding: 40px 0; text-align: center;}
.index_wrap .text_wrap h1{font-size: 80px; font-weight: 600;}
.index_wrap .text_wrap h2{font-size: 16px; font-weight: 500; color: var(--text-subdued); line-height: 170%;}
.index_wrap .text_wrap h2 .color_primary{font-weight: 600;}
.index_wrap .text_wrap .btn_wrap{display: flex; gap: 16px; justify-content: center;}
.index_wrap .text_wrap .btn_wrap [class*="btn_"]{display: flex; width: 220px; height: 68px; border-radius: 40px; justify-content: center; align-items: center; flex-shrink: 0; font-size: 22px;}
.index_wrap .menu_wrap{display: flex; flex-grow: 1; gap: 20px; padding: 20px 0;}
.index_wrap .menu_wrap li{flex-grow: 1; display: flex; align-items: center; justify-content: center; flex-basis: 0;}
.index_wrap .menu_wrap li .menu{position: relative; transition: all 0.1s ease-out; top: 0; display: flex; align-items: center; justify-content: center; text-align: center; width: 100%; height: 100%; color: var(--text-default, #FAFAFA); font-size: 20px; font-weight: 600; border-radius: 16px; height: 400px;}
.index_wrap .menu_wrap li .menu:hover{top: -10px;}
.index_wrap .menu_wrap li.chapter1 .menu{background: url('../img/index-menu/chapter1.png')no-repeat;}
.index_wrap .menu_wrap li.test .menu{background: url('../img/index-menu/placement-test.png')no-repeat;}
.index_wrap .menu_wrap li.enrichment .menu{background: url('../img/index-menu/enrichment.png')no-repeat;}
.index_wrap .menu_wrap li.resource .menu{background: url('../img/index-menu/resource.png')no-repeat;}




.layer_chapater1 .layer_contents{display: flex; flex-direction: column; gap: 40px;}
.layer_chapater1 .title{font-size: 16px; font-weight: 600; line-height: 170%;}
.layer_chapater1 .level_chart img{width: 40px; margin: 0 auto;}
.layer_chapater1 .curriculum{display: flex; flex-direction: column; gap: 12px;}
.layer_chapater1 .curriculum li{background: #F9F9F9; padding: 15px; border-radius: 8px; display: flex; flex-direction: column; gap: 5px;}
.layer_chapater1 .curriculum li strong{display: flex; align-items: flex-start; gap:6px; font-size: 16px; line-height: 170%; font-weight: 500;}
.layer_chapater1 .curriculum li strong span{width: 27px; height: 27px; border-radius: 100%; background: var(--primary-90, #E9F3FB); color: var(--primary-50, #348CDA); display: flex; align-items: center; justify-content: center; font-size: 16px; font-weight: 700; }
.curriculum li p{font-size: 14px; line-height: 170%; color: var(--text-subdued, #595959);}
.layer_chapater1 .program{display: flex; flex-direction: column; gap: 15px;}
.layer_chapater1 .program ul{display: flex; flex-wrap: wrap;}
.layer_chapater1 .program li{padding: 15px 0; display: flex; flex-direction: column; align-items: center; gap: 8px; flex-basis: 25%;}
.layer_chapater1 .program li img{width: 46px; height: 46px; border-radius: 100%; background: var(--primary-90, #E9F3FB); object-fit: none;}
.layer_chapater1 .program li p{font-size: 14px; line-height: 140%; font-weight: 400;}
.layer_chapater1 .area{display: flex; flex-wrap: wrap; counter-reset: item; position: relative;}
.layer_chapater1 .area:before{content: 'CHAPTER I'; display: flex; align-items: center; justify-content: center; text-align: center;  width: 100px; height: 100px; border-radius: 100%; position: absolute; left: 50%; top: 50%; margin: -50px 0 0 -50px; background: var(--primary-50, #348CDA); color: #fff; font-size: 16px; line-height: 140%; font-weight: 700; outline: 10px solid var(--primary-90, #E9F3FB);}
.layer_chapater1 .area li{flex-basis: 50%; flex-shrink: 0; font-weight: 500;line-height: 170%;}
.layer_chapater1 .area li:before{content: counter(item, decimal-leading-zero); counter-increment: item; display: block; font-weight: 700; color: var(--primary-50, #348CDA);}
.layer_chapater1 .area li:nth-child(odd){border-right: 1px solid #E8E8E8; padding-left: 15px; padding-right: 20px;}
.layer_chapater1 .area li:nth-child(even){padding-left: 20px; padding-right: 15px; text-align: right;}
.layer_chapater1 .area li:nth-child(-n+2){border-bottom: 1px solid #E8E8E8; padding-top: 18px; padding-bottom: 20px;}
.layer_chapater1 .area li:nth-child(n+2){padding-top: 20px; padding-bottom: 18px;}
.layer_chapater1 .book_level img{width: 63px;}
.layer_chapater1 .book_level strong{font-weight: 600;}
.layer_chapater1 .book_level ul{flex-direction: column;}
.layer_chapater1 .book_level li{display: flex; align-items: flex-start; gap: 8px;}
.layer_chapater1 .book_level li:before{content: ''; display: block; width: 4px; height: 4px; border-radius: 100%; background: #222; margin: 10px 0 0 0; flex-shrink: 0;}
.layer_chapater1 .book_level tr:nth-child(2) th{color: #F08951;}
.layer_chapater1 .book_level tr:nth-child(3) th{color: #47A6DD;}
.layer_chapater1 .book_level .bookmark{position: absolute; left: 0; top: 0; display: flex; align-items: center; justify-content: center;}
.layer_chapater1 .book_level .bookmark .book{width: 12px; position: absolute; margin: 0 0 4px;}
.layer_chapater1 .book_level .bookmark .mark{width: 26px;}
.layer_chapater1 .book_level td{font-weight: 300}


/* login */
.login_wrap{background: var(--background-light, #FAFAFA);}
.login_wrap .login_box{display: flex; width: 560px; padding: 40px 28px; border-radius: 20px; box-shadow: 0px 0px 20px 0px #F2F2F2; background: var(--background-onsurface, #FFF); flex-direction: column; gap: 40px; margin: 0 auto;}
.login_wrap .input_wrap{display: flex; flex-direction: column; gap: 20px;}
.login_wrap .input_set{display: flex; flex-direction: column; gap: 8px;}
.login_wrap .login_box input{height: 64px;}
.login_wrap .error_valid{color: #D92626; font-size: 14px; font-weight: 500; line-height: normal;}
.login_wrap .caution{color: #D92626; font-size: 14px; font-weight: 500; line-height: normal;}
.login_wrap .btn_wrap{display: flex; flex-direction: column;}

/* vocabulary */
.vocabulary_wrap{background: var(--primary-95, #FAFCFE);}
.vocabulary_wrap .container{display: flex; flex-direction: column; gap: 32px;}
.vocabulary_wrap .search_wrap{position: relative; display: flex; width: 480px; height: 56px; padding: 0px 8px; border-radius: 40px; border: 1px solid var(--border-control, #CCC); background: var(--background-onsurface, #FFF); gap: 16px; align-items: center}
.vocabulary_wrap .search_wrap select{border: none; border-right: 1px solid var(--border-dark, #D9D9D9); height: 28px; width: 140px; font-size: 14px; border-radius: 0; flex-shrink: 0; background: url('../img/arrow-down-primary.svg')no-repeat right 8px center;;}
.vocabulary_wrap .search_wrap input{ width: 400px; height: 56px; padding: 0px 24px; border-radius: 40px; border: none; background: transparent; padding: 0;}
.vocabulary_wrap .search_wrap button{position: absolute; width: 56px; height: 56px; right: 8px; top: 0; display: flex; align-items: center; justify-content: center;}
.vocabulary_wrap .table_wrap{display: flex; flex-direction: column; gap: 40px; padding: 40px 28px; border-radius: 24px; box-shadow: 0px 0px 20px 0px #EDF5FD; background: var(--background-onsurface, #FFF); flex-direction: column; gap: 40px;}
.vocabulary_wrap tr:hover{background: var(--primary-90, #E9F3FB);}
.vocabulary_wrap tr:hover td{color: var(--primary-50, #348CDA);}
.vocabulary_wrap tr:hover td .title{font-weight: 600}
.vocabulary_wrap .btn_view{width: 100px; margin: 0 auto;}

/* mypage */
.mypage_wrap{background: var(--primary-95, #FAFCFE);}
.mypage_wrap .container{display: flex; flex-direction: column; gap: 32px}
.mypage_wrap .box{display: flex; flex-direction: column; padding: 28px; border-radius: 12px; background: var(--background-onsurface, #FFF); gap: 40px; box-shadow: 0px 0px 20px 0px #EDF5FD;}
.mypage_wrap .box h4{font-size: 18px; font-weight: 600; line-height: 170%; padding: 0 0 16px; border-bottom: 1px solid var(--border-light, #E6E6E6);}
.mypage_wrap .summary{flex-direction: row; padding: 0 28px; height: 72px; justify-content: space-between; align-items: center; border: 1px solid #E6E6E6;}
.mypage_wrap .summary .level_wrap{display: flex; gap: 12px; font-size: 24px; font-weight: 400; line-height: 140%; color: var(--text-subdued, #595959);}
.mypage_wrap .summary .level_wrap .level{font-weight: 600;}
.mypage_wrap .summary .level_wrap .pawn{color: var(--level-pawn);}
.mypage_wrap .summary .level_wrap .bishop{color: var(--level-bishop);}
.mypage_wrap .summary .level_wrap .rook{color: var(--level-rook);}
.mypage_wrap .summary .level_wrap .knight{color: var(--level-knight);}
.mypage_wrap .summary .level_wrap .queen{color: var(--level-queen);}
.mypage_wrap .summary .level_wrap .king{color: var(--level-king);}
.mypage_wrap .period{padding-top: 12px; display: flex; align-items: center; gap: 30px;}
.mypage_wrap .period strong{font-size: 16px; font-weight: 400; line-height: 170%;}
.mypage_wrap .period .gauge_wrap{flex-grow: 1; border-radius: 8px; background: var(--background-dark, #F2F2F2); height: 16px; display: flex;}
.mypage_wrap .period .gauge{display: flex; position: relative;}
.mypage_wrap .period .bar{border-radius: 8px; width: 100%; background: linear-gradient(90deg, #1686E9 0%, #1640E9 100%);
}
.mypage_wrap .period .pawn .bar{background: var(--level-pawn-gradient);}
.mypage_wrap .period .bishop .bar{background: var(--level-bishop-gradient);}
.mypage_wrap .period .rook .bar{background: var(--level-rook-gradient);}
.mypage_wrap .period .knight .bar{background: var(--level-knight-gradient);}
.mypage_wrap .period .queen .bar{background: var(--level-queen-gradient);}
.mypage_wrap .period .king .bar{background: var(--level-king-gradient);}
.mypage_wrap .period .goal{position: absolute; right: -40px; top: -36px; width: 80px; height: 28px; display: flex; align-items: center; justify-content: center; border-radius: 14px; color: #FAFAFA; font-size: 14px; font-weight: 500; background: #1640E9;
}
.mypage_wrap .period .goal:after{content: ''; display: block; width: 0; height: 0; border-style: solid; border-width: 4px 3px 0px 3px; position: absolute; bottom: -4px; border-color: #1640E9 transparent transparent transparent; }
.mypage_wrap .period .pawn .goal{background: var(--level-pawn-gradient-end);}
.mypage_wrap .period .pawn .goal:after{border-color: var(--level-pawn-gradient-end) transparent transparent transparent; }
.mypage_wrap .period .bishop .goal{background: var(--level-bishop-gradient-end);}
.mypage_wrap .period .bishop .goal:after{border-color: var(--level-bishop-gradient-end) transparent transparent transparent; }
.mypage_wrap .period .rook .goal{background: var(--level-rook-gradient-end);}
.mypage_wrap .period .rook .goal:after{border-color: var(--level-rook-gradient-end) transparent transparent transparent; }
.mypage_wrap .period .knight .goal{background: var(--level-knight-gradient-end);}
.mypage_wrap .period .knight .goal:after{border-color: var(--level-knight-gradient-end) transparent transparent transparent; }
.mypage_wrap .period .queen .goal{background: var(--level-queen-gradient-end);}
.mypage_wrap .period .queen .goal:after{border-color: var(--level-queen-gradient-end) transparent transparent transparent; }
.mypage_wrap .period .king .goal{background: var(--level-king-gradient-end);}
.mypage_wrap .period .king .goal:after{border-color: var(--level-king-gradient-end) transparent transparent transparent; }

.mypage_wrap .words{display: flex; flex-direction: column; gap: 12px;}
.mypage_wrap .words .title{display: flex; align-items: center; justify-content: space-between; font-size: 16px; font-weight: 400; line-height: 170%;}
.mypage_wrap .words .title strong{font-weight: 400;}
.mypage_wrap .words .title .learn_cnt{display: flex; gap: 4px; color: var(--text-subdued, #595959); font-size: 14px; font-weight: 300;}
.mypage_wrap .words .title .learn_cnt strong{color: var(--secondary-50, #F97E06);}
.mypage_wrap .words ul{display: flex; flex-wrap: wrap; gap: 8px;}
.mypage_wrap .words li{display: flex; padding: 0 16px; height: 44px; align-items: center; justify-content: space-between; border-radius: 4px; border: 1px solid var(--border-light, #E6E6E6); background: var(--background-onsurface, #FFF); flex-basis: calc(20% - 6.4px);}
.mypage_wrap .words li.ok{border: 1px solid var(--secondary-80, #FCCB9C); color: var(--secondary-50, #F97E06); font-weight: 600;}
.mypage_wrap .words li.ok:after{content: ''; display: block; width: 18px; height: 18px; background: url('../img/tick_secondary.svg')no-repeat; flex-shrink: 0;}

/* placement test */
.test_wrap {background: var(--primary-95, #FAFCFE);}
.test_wrap .container{display: flex; flex-direction: column; gap: 32px;}
.test_wrap .input_box{display: flex; width: 560px; padding: 40px 28px; border-radius: 20px; box-shadow: 0px 0px 20px 0px #EDF5FD; background: var(--background-onsurface, #FFF); flex-direction: column; gap: 40px; margin: 0 auto;}
.test_wrap .input_wrap{display: flex; flex-direction: column; gap: 20px;}
.test_wrap .input_set{display: flex; flex-direction: column; gap: 8px;}
.test_wrap .input_set label{font-size: 14px; font-weight: 400; line-height: 140%;}
.test_wrap .grade_wrap{display: flex; gap: 16px;}
.test_wrap .grade_wrap select{flex-basis: 0;}

/* test start */
.test_start_wrap{background: var(--primary-95, #FAFCFE);}
.test_start_wrap .container{display: flex; flex-direction: column; gap: 32px;}
.test_start_wrap .box{display: flex; padding: 40px 28px; border-radius: 20px; box-shadow: 0px 0px 20px 0px #EDF5FD; background: var(--background-onsurface, #FFF); flex-direction: column; gap: 40px; align-items: center; font-size: 18px; font-weight: 400; line-height: 140%; text-align: center;}
.test_start_wrap .level_wrap{display: flex; flex-direction: column; gap: 12px;}
.test_start_wrap .level{display: flex; border-radius: 8px; background: linear-gradient(90deg, #0AF 0%, #B515EA 100%); color: rgba(255, 255, 255, 0.5); font-size: 14px; font-weight: 500; padding: 12px 0; width: 960px;}
.test_start_wrap .level li{flex-basis: 64px; height: 40px; flex-shrink: 0; display: flex; justify-content: center; align-items: center; position: relative}
.test_start_wrap .level li:not(:last-child){border-right: 1px solid rgba(255, 255, 255, 0.40);}
.test_start_wrap .level li.on{color: #fff;}
.test_start_wrap .level li.on:after{content: ''; display: block; position: absolute; width: 40px; height: 40px; border-radius: 100%; outline: 2px solid #fff; left: calc(50% - 20px); top: calc(50% - 20px);}
.test_start_wrap .box .color_secondary{font-weight: 600;}
.test_start_wrap .box .caution{color: var(--text-subdued, #595959); font-size: 14px; font-weight: 500;}

/* placement test quiz */
.test_quiz_wrap{background: var(--primary-95, #FAFCFE);} 
.test_quiz_wrap .container{width: 900px; display: flex; flex-direction: column; gap: 40px;} 
.test_quiz_wrap .gauge_wrap{flex-grow: 1; border-radius: 8px; background: var(--background-dark, #F2F2F2); height: 16px; display: flex;}
.test_quiz_wrap .gauge_wrap .gauge{display: flex; position: relative;transition: all 0.5s ease;}
.test_quiz_wrap .gauge_wrap .bar{border-radius: 8px; width: 100%; background: linear-gradient(90deg, #6E15EA 0%, #B515EA 100%);}
.test_quiz_wrap .gauge_wrap .goal{position: absolute; right: -32px; top: -32px; width: 64px; height: 24px; display: flex; align-items: center; justify-content: center; border-radius: 14px; color: #FAFAFA; font-size: 13px; font-weight: 500; background: #B515EA;}
.test_quiz_wrap .gauge_wrap .bar:after{content: ''; display: block; position: absolute; top: 4px; left: 8px; width: calc(100% - 16px); height: 4px; background-color: #fff; opacity: 0.2; border-radius: 2px;}
.test_quiz_wrap .q_wrap{display: flex; flex-direction: column; gap: 16px;}
.test_quiz_wrap .q_wrap strong{color: var(--text-disabled, #999); font-size: 16px; font-weight: 500; line-height: 170%;}
.test_quiz_wrap .q_wrap p{font-size: 20px; font-weight: 400; line-height: 170%;}
.test_quiz_wrap .a_wrap{display: flex; flex-direction: column; gap: 12px;}
.test_quiz_wrap .a_wrap li{cursor: pointer; display: flex; height: 60px; align-items: center; gap: 20px; padding: 0 20px; border-radius: 8px; border: 1px solid var(--border-dark, #D9D9D9); font-size: 16px; font-weight: 400; line-height: 170%;}
.test_quiz_wrap .a_wrap .index{width: 20px; text-align: center; color: var(--text-disabled, #999);}
.test_quiz_wrap .a_wrap p{flex-grow: 1;}
.test_quiz_wrap .a_wrap .circle{width: 24px; height: 24px; flex-shrink: 0; border-radius: 100%; border: 2px solid var(--border-control, #CCC);}
.test_quiz_wrap .a_wrap .on{border: 1px solid var(--secondary-70, #FBB26A); background: var(--background-onsurface, #FFF); box-shadow: 0px 0px 25px 0px #FEF5EB; color: var(--secondary-50, #F97E06); font-weight: 600;}
.test_quiz_wrap .a_wrap .on .index{color: inherit;}
.test_quiz_wrap .a_wrap .on .circle{border: 1px solid var(--secondary-50, #F97E06); display: flex; align-items: center; justify-content: center;}
.test_quiz_wrap .a_wrap .on .circle span{width: 14px; height: 14px; background-color: var(--secondary-50, #F97E06); border-radius: 100%;}
.test_quiz_wrap .btn_wrap{display: flex; justify-content: flex-end;align-items: center;gap: 20px;}
.test_quiz_wrap .btn_wrap [class*="btn_"]{width: 180px; height: 60px; font-size: 22px;}

/* placement test result */
.test_result_wrap{background: var(--primary-95, #FAFCFE);}
.test_result_wrap .container{padding: 100px 0; display: flex; flex-direction: column; gap: 20px; text-align: center;}
.test_result_wrap h1{font-size: 42px;font-weight: 600; line-height: 140%;}
.test_result_wrap p{font-size: 20px; font-weight: 400; line-height: 140%;}
.test_result_wrap .color_secondary{font-weight: 600;}

/* quiz search */
.quiz_search_wrap{display: flex; flex-direction: column; gap: 20px; align-items: center;}
.quiz_search_wrap .sch_form{display: flex; gap: 10px; width: 700px;}
.quiz_search_wrap .sch_form input[type="text"]{height: 60px; border-radius: 30px; padding: 0 24px; flex-grow: 1;}
.quiz_search_wrap .sch_form [class*="btn_"]{width: 160px; height: 60px; font-size: 22px;}
.quiz_search_wrap .tip_box{display: flex; width: 700px; padding: 28px; border-radius: 24px; box-shadow: 0px 0px 20px 0px #F8F3ED; background: var(--background-onsurface, #FFF); flex-direction: column; gap: 20px;}
.quiz_search_wrap .tip_box strong{font-size: 18px; line-height: 170%; font-weight: 600;}
.quiz_search_wrap .tip_box ol{display: flex; gap: 40px; font-size: 14px; font-weight: 400; line-height: 140%;}

.quiz_sch_wrap{background: #FCFAF8;}
.quiz_sch_wrap .container{display: flex; flex-direction: column; gap: 32px;}
.quiz_sch_wrap .recommend_wrap{display: flex; position: relative; padding: 60px; border-radius: 24px; box-shadow: 0px 0px 20px 0px #F8F3ED; background: #FFF; gap: 40px; margin: 48px 0 0 0; position: relative;}
.quiz_sch_wrap .recommend_wrap strong{padding: 40px 0; font-size: 32px; font-weight: 500; line-height: 150%; flex-grow: 1;}
.quiz_sch_wrap .recommend_wrap ul{display: flex; gap: 40px; z-index: 1;}
.quiz_sch_wrap .recommend_wrap li{display: flex; flex-direction: column; gap: 32px; position: relative;}
.quiz_sch_wrap .recommend_wrap li img{width: 175px; height: 240px; border-radius: 2px; border: 1px solid #FFF; box-shadow: 2px 0px 8px 0px #B9AD9B; z-index: 1;}
.quiz_sch_wrap .recommend_wrap li:after{content: ''; display: block; width: 66px; height: 280px; background: url('../img/book_shadow.png')no-repeat; position: absolute; right: -45px; top: -19px;}
.quiz_sch_wrap .recommend_wrap li p{display: flex; flex-direction: column; gap: 4px; text-align: center; font-size: 16px; font-weight: 500; line-height: 150%; width: 175px;}
.quiz_sch_wrap .recommend_wrap li .grade{font-size: 12px; font-weight: 600; line-height: 140%;}
.quiz_sch_wrap .recommend_wrap li .grade.color_red{color: var(--level-pawn);}
.quiz_sch_wrap .recommend_wrap li .grade.color_org{color: var(--level-bishop);}
.quiz_sch_wrap .recommend_wrap li .grade.color_yel{color: var(--level-rook);}
.quiz_sch_wrap .recommend_wrap li .grade.color_grn{color: var(--level-knight);}
.quiz_sch_wrap .recommend_wrap li .grade.color_blu{color: var(--level-queen);}
.quiz_sch_wrap .recommend_wrap li .grade.color_pup{color: var(--level-king);}
.quiz_sch_wrap .recommend_wrap .bookcase{position: absolute; width: 1144px; left: -32px; top: 286px;}

/* quiz list */
.quiz_list_wrap{background: #FCFAF8;}
.quiz_list_wrap .container{display: flex; flex-direction: column; gap: 32px;}
.quiz_list_wrap .box{display: flex; padding: 40px 28px; border-radius: 24px; box-shadow: 0px 0px 20px 0px #F8F3ED; background: var(--background-onsurface, #FFF); flex-direction: column; gap: 40px; margin: 48px 0 0 0;}
.quiz_list_wrap .book_list{display: flex; flex-wrap: wrap; gap: 40px;}
.quiz_list_wrap .book_list .list{flex-basis: calc(50% - 20px);display: flex; gap: 16px;  z-index: 1;}
.quiz_list_wrap .book_list .list .text{display: flex; flex-direction: column; gap: 20px; justify-content: space-between; flex-grow: 1;}
.quiz_list_wrap .book_list .list img{width: 145px; height: 200px; flex-shrink: 0;object-fit: cover;}
.quiz_list_wrap .book_list .list .top{display: flex; flex-direction: column; gap: 8px;}
.quiz_list_wrap .book_list .list .grade{font-size: 12px; font-weight: 600;}
.quiz_list_wrap .book_list .list .grade.pawn{color: var(--level-pawn);}
.quiz_list_wrap .book_list .list .grade.bishop{color: var(--level-bishop);}
.quiz_list_wrap .book_list .list .grade.rook{color: var(--level-rook);}
.quiz_list_wrap .book_list .list .grade.knight{color: var(--level-knight);}
.quiz_list_wrap .book_list .list .grade.queen{color: var(--level-queen);}
.quiz_list_wrap .book_list .list .grade.king{color: var(--level-king);}
.quiz_list_wrap .book_list .list .title{display: flex; flex-direction: column;}
.quiz_list_wrap .book_list .list .title strong{font-size: 16px; font-weight: 500; line-height: 170%;}
.quiz_list_wrap .book_list .list .title p{font-size: 13px; color: var(--text-subdued, #595959); font-weight: 400; line-height: 140%;}
.quiz_list_wrap .book_list .list .tag{display: flex; flex-wrap: wrap; gap: 8px;}
.quiz_list_wrap .book_list .list .tag li{font-size: 12px; font-weight: 500; color: var(--text-subdued, #595959); height: 24px; padding: 0 8px; border-radius: 4px; border: 1px solid var(--border-light, #E6E6E6); display: flex; align-items: center;}
.quiz_list_wrap .book_list .list [class*="btn_"]{height: 52px; font-size: 13px; line-height: 140%; text-align: center;}
.quiz_list_wrap .book_list .list .teacher_btn{display: flex; flex-wrap: wrap; gap: 10px;}
.quiz_list_wrap .book_list .list .teacher_btn [class*="btn_"]{flex-basis: calc(50% - 5px);}
.quiz_list_wrap .book_list .list .teacher_btn .btn_quiz{height: 44px; font-size: 12px; flex-basis: 100%;}


/* quiz start */
.quiz_start_wrap{background: #FCFAF8;}
.quiz_start_wrap .container{display: flex; flex-direction: column; gap: 32px;}
.quiz_start_wrap .box{display: flex; width: 560px; padding: 40px 28px; border-radius: 20px; box-shadow: 0px 0px 20px 0px #F8F3ED; background: var(--background-onsurface, #FFF); flex-direction: column; align-items: center; gap: 48px; margin: 0 auto;}
.quiz_start_wrap .book_info{display: flex; flex-direction: column; gap: 28px; text-align: center; align-items: center;}
.quiz_start_wrap .book_info img{width: 145px; height: 200px;}
.quiz_start_wrap .book_info .text{display: flex; flex-direction: column; gap: 20px;}
.quiz_start_wrap .book_info .text .top{display: flex; flex-direction: column; gap: 12px;}
.quiz_start_wrap .book_info .grade{font-size: 14px; font-weight: 600; line-height: 140%;}
.quiz_start_wrap .book_info .grade.pawn{color: var(--level-pawn);}
.quiz_start_wrap .book_info .grade.bishop{color: var(--level-bishop);}
.quiz_start_wrap .book_info .grade.rook{color: var(--level-rook);}
.quiz_start_wrap .book_info .grade.knight{color: var(--level-knight);}
.quiz_start_wrap .book_info .grade.queen{color: var(--level-queen);}
.quiz_start_wrap .book_info .grade.king{color: var(--level-king);}
.quiz_start_wrap .book_info .title{display: flex; flex-direction: column; gap: 4px;}
.quiz_start_wrap .book_info .title strong{font-size: 18px; font-weight: 500; line-height: 170%;}
.quiz_start_wrap .book_info .title p{color: var(--text-subdued, #595959); font-size: 15px; font-weight: 400; line-height: 140%;}
.quiz_start_wrap .book_info .tag{display: flex; flex-wrap: wrap; gap: 8px;}
.quiz_start_wrap .book_info .tag li{font-size: 13px; font-weight: 500; color: var(--text-subdued, #595959); height: 28px; padding: 0 8px; border-radius: 4px; border: 1px solid var(--border-light, #E6E6E6); display: flex; align-items: center;}
.quiz_start_wrap .btn_wrap{display: flex; gap: 12px; width: 100%;}
.quiz_start_wrap .btn_wrap .btn_back{min-width: auto; padding: 0 36px;}
.quiz_start_wrap .btn_wrap .btn_start{min-width: auto; flex-grow: 1;}

/* book quiz */
.quiz_wrap{background: #FCFAF8;} 
.quiz_wrap .container{width: 900px; display: flex; flex-direction: column; gap: 40px;} 
.quiz_wrap .book_info{margin-bottom: 40px; display: flex; flex-direction: column; gap: 20px;} 
.quiz_wrap .book_info .subtitle{display: flex; gap: 8px; font-size: 18px; font-weight: 400; line-height: 140%; justify-content: center;} 
.quiz_wrap .book_info .subtitle .grade{font-size: 14px; font-weight: 400; line-height: 140%; border-radius: 20px; height: 32px; display: flex; align-items: center; padding: 0 12px; border-width: 1px; border-style: solid;} 
.quiz_wrap .book_info .subtitle .grade.pawn{color: var(--level-pawn); border-color: var(--level-pawn);} 
.quiz_wrap .book_info .subtitle .grade.bishop{color: var(--level-bishop); border-color: var(--level-bishop);} 
.quiz_wrap .book_info .subtitle .grade.rook{color: var(--level-rook); border-color: var(--level-rook);} 
.quiz_wrap .book_info .subtitle .grade.knight{color: var(--level-knight); border-color: var(--level-knight);} 
.quiz_wrap .book_info .subtitle .grade.queen{color: var(--level-queen); border-color: var(--level-queen);} 
.quiz_wrap .book_info .subtitle .grade.king{color: var(--level-king); border-color: var(--level-king);} 
.quiz_wrap .book_info .title{border-top: 1px solid var(--border-dark, #D9D9D9); display: flex; flex-direction: column; gap: 8px; text-align: center; padding: 24px 0;} 
.quiz_wrap .book_info .title strong{font-size: 28px; font-weight: 600; line-height: 140%;} 
.quiz_wrap .book_info .title p{font-size: 16px; font-weight: 400; line-height: 140%; color: var(--text-subdued, #595959);
}
.quiz_wrap .gauge_wrap{flex-grow: 1; border-radius: 8px; background: var(--background-dark, #F2F2F2); height: 16px; display: flex;}
.quiz_wrap .gauge_wrap .gauge{display: flex; position: relative;transition: all 0.5s ease;}
.quiz_wrap .gauge_wrap .bar{border-radius: 8px; width: 100%; background: linear-gradient(90deg, #6E15EA 0%, #B515EA 100%);}
.quiz_wrap .gauge_wrap .goal{position: absolute; right: -32px; top: -32px; width: 64px; height: 24px; display: flex; align-items: center; justify-content: center; border-radius: 14px; color: #FAFAFA; font-size: 13px; font-weight: 500; background: #B515EA;}
.quiz_wrap .gauge_wrap .bar:after{content: ''; display: block; position: absolute; top: 4px; left: 8px; width: calc(100% - 16px); height: 4px; background-color: #fff; opacity: 0.2; border-radius: 2px;}
.quiz_wrap .q_wrap{display: flex; flex-direction: column; gap: 16px;}
.quiz_wrap .q_wrap strong{color: var(--text-disabled, #999); font-size: 16px; font-weight: 500; line-height: 170%;}
.quiz_wrap .q_wrap p{font-size: 20px; font-weight: 400; line-height: 170%;}
.quiz_wrap .a_wrap{display: flex; flex-direction: column; gap: 12px;}
.quiz_wrap .a_wrap li{cursor: pointer; display: flex; height: 60px; align-items: center; gap: 20px; padding: 0 20px; border-radius: 8px; border: 1px solid var(--border-dark, #D9D9D9); font-size: 16px; font-weight: 400; line-height: 170%;}
.quiz_wrap .a_wrap .index{width: 20px; text-align: center; color: var(--text-disabled, #999);}
.quiz_wrap .a_wrap p{flex-grow: 1;}
.quiz_wrap .a_wrap .circle{width: 24px; height: 24px; flex-shrink: 0; border-radius: 100%; border: 2px solid var(--border-control, #CCC);}
.quiz_wrap .a_wrap .on{border: 1px solid var(--secondary-70, #FBB26A); background: var(--background-onsurface, #FFF); box-shadow: 0px 0px 25px 0px #FEF5EB; color: var(--secondary-50, #F97E06); font-weight: 600;}
.quiz_wrap .a_wrap .on .index{color: inherit;}
.quiz_wrap .a_wrap .on .circle{border: 1px solid var(--secondary-50, #F97E06); display: flex; align-items: center; justify-content: center;}
.quiz_wrap .a_wrap .on .circle span{width: 14px; height: 14px; background-color: var(--secondary-50, #F97E06); border-radius: 100%;}
.quiz_wrap .btn_wrap{display: flex; justify-content: flex-end; gap: 12px;}
.quiz_wrap .btn_wrap [class*="btn_"]{width: 180px; height: 60px; font-size: 22px;}

.quiz_wrap .btn_wrap .btn_stop{font-size: 18px;}

/* quiz evaluate */
.quiz_evaluate_wrap{background-color: #FCFAF8;}
.quiz_evaluate_wrap .container{display: flex; flex-direction: column; gap: 32px;} 
.quiz_evaluate_wrap .box{display: flex; padding: 40px 28px; border-radius: 20px; box-shadow: 0px 0px 20px 0px #F8F3ED; background: var(--background-onsurface, #FFF);  gap: 48px;}
.quiz_evaluate_wrap .book_info{display: flex; flex-direction: column; gap: 28px; text-align: center; align-items: center; flex-shrink: 0;}
.quiz_evaluate_wrap .book_info img{width: 145px; height: 200px;}
.quiz_evaluate_wrap .book_info .text{display: flex; flex-direction: column; gap: 20px;}
.quiz_evaluate_wrap .book_info .text .top{display: flex; flex-direction: column; gap: 12px;}
.quiz_evaluate_wrap .book_info .grade{font-size: 14px; font-weight: 600; line-height: 140%;}
.quiz_evaluate_wrap .book_info .grade.pawn{color: var(--level-pawn);}
.quiz_evaluate_wrap .book_info .grade.bishop{color: var(--level-bishop);}
.quiz_evaluate_wrap .book_info .grade.rook{color: var(--level-rook);}
.quiz_evaluate_wrap .book_info .grade.knight{color: var(--level-knight);}
.quiz_evaluate_wrap .book_info .grade.queen{color: var(--level-queen);}
.quiz_evaluate_wrap .book_info .grade.king{color: var(--level-king);}
.quiz_evaluate_wrap .book_info .title{display: flex; flex-direction: column; gap: 4px;}
.quiz_evaluate_wrap .book_info .title strong{font-size: 18px; font-weight: 500; line-height: 170%;}
.quiz_evaluate_wrap .book_info .title p{color: var(--text-subdued, #595959); font-size: 15px; font-weight: 400; line-height: 140%;}
.quiz_evaluate_wrap .book_info .tag{display: flex; flex-wrap: wrap; gap: 8px;}
.quiz_evaluate_wrap .book_info .tag li{font-size: 13px; font-weight: 500; color: var(--text-subdued, #595959); height: 28px; padding: 0 8px; border-radius: 4px; border: 1px solid var(--border-light, #E6E6E6); display: flex; align-items: center;}
.quiz_evaluate_wrap .line{width: 1px; background: var(--border-light, #E6E6E6); flex-shrink: 0;}
.quiz_evaluate_wrap .review{display: flex; flex-direction: column; align-items: center; gap: 60px; flex-grow: 1; text-align: center; z-index: 1;}
.quiz_evaluate_wrap .review .title{display: flex; flex-direction: column; gap: 4px;}
.quiz_evaluate_wrap .review .title strong{font-size: 24px; font-weight: 500; line-height: 140%;}
.quiz_evaluate_wrap .review .title p{color: var(--text-subdued, #595959); font-size: 16px; font-weight: 400; line-height: 140%;}
.quiz_evaluate_wrap .review .star_wrap{display: flex; gap: 16px; justify-content: center;}
.quiz_evaluate_wrap .review .star_wrap li{display: flex; flex-direction: column; gap: 4px; align-items: center; color: var(--text-subdued, #595959); font-size: 14px; font-weight: 400; line-height: 140%;}
.quiz_evaluate_wrap .review .star_wrap .star{width: 72px; height: 72px; background: url('../img/star_off.svg')no-repeat; cursor: pointer;}
.quiz_evaluate_wrap .review .star_wrap li.on .star{background: url('../img/star_on.svg')no-repeat;}
.quiz_evaluate_wrap .review [class*="btn_"]{width: 180px;; height: 60px; font-size: 22px;}

/* quiz evaluate */
.quiz_evaluate_wrap{background-color: #FCFAF8;}
.quiz_evaluate_wrap .quiz_result{display: flex; flex-direction: column; align-items: center; gap: 40px; text-align: center; flex-grow: 1; z-index: 1;} 
.quiz_evaluate_wrap .quiz_result .title{font-size: 24px; font-weight: 500; line-height: 140%;} 
.quiz_evaluate_wrap .quiz_result table{width: 100%; table-layout: fixed;}
.quiz_evaluate_wrap .quiz_result table caption{margin-bottom: 12px; font-size: 14px; font-weight: 400; line-height: 140%; color: var(--text-subdued, #595959);}
.quiz_evaluate_wrap .quiz_result .print_wrap{display: flex; align-items: center; justify-content: space-between; width: 100%;}
.quiz_evaluate_wrap .quiz_result [class*="btn_"]{width: 180px;; height: 60px; font-size: 22px;}
.quiz_evaluate_wrap .rating{display: flex; align-items: center; gap: 8px; color: var(--text-subdued, #595959); font-size: 14px; font-weight: 400; line-height: 140%;}
.quiz_evaluate_wrap .rating ul{display: flex;}
.quiz_evaluate_wrap .rating li{width: 24px; height: 24px; background: url('../img/star_off_24.svg')no-repeat; background-size: contain;}
.quiz_evaluate_wrap .rating_1 li:nth-child(-n+1){background: url('../img/star_on_24.svg')no-repeat; background-size: contain;}
.quiz_evaluate_wrap .rating_2 li:nth-child(-n+2){background: url('../img/star_on_24.svg')no-repeat; background-size: contain;}
.quiz_evaluate_wrap .rating_3 li:nth-child(-n+3){background: url('../img/star_on_24.svg')no-repeat; background-size: contain;}
.quiz_evaluate_wrap .rating_4 li:nth-child(-n+4){background: url('../img/star_on_24.svg')no-repeat; background-size: contain;}
.quiz_evaluate_wrap .rating_5 li:nth-child(-n+5){background: url('../img/star_on_24.svg')no-repeat; background-size: contain;}


/* bookshelf */
.bookshelf_wrap{background: #FCFAF8;}
.bookshelf_wrap .container{display: flex; flex-direction: column; gap: 32px;}
.bookshelf_wrap .box_wrap{display: flex; flex-direction: column ;gap: 60px;}
.bookshelf_wrap .box{display: flex; padding: 40px 28px; border-radius: 24px; box-shadow: 0px 0px 20px 0px #F8F3ED; background: var(--background-onsurface, #FFF); flex-direction: column; gap: 40px;}
.bookshelf_wrap .box h5{font-size: 16px; font-weight: 500;}
.bookshelf_wrap .box .book_list{display: flex; flex-wrap: wrap; gap: 40px 36px; ;}
.bookshelf_wrap .box .list{flex-basis: 176px; display: flex; flex-direction: column; gap: 16px;}
.bookshelf_wrap .list .img_wrap{display: flex; border-radius: 8px; border: 1px solid var(--border-light, #E6E6E6); padding: 4px; width: 176px;}
.bookshelf_wrap .list .img_wrap img{width: 168px; height: 221px; border-radius: 4px;}
.bookshelf_wrap .list .text{padding: 0 4px; display: flex; flex-direction: column; gap: 4px;}
.bookshelf_wrap .list .top{display: flex; flex-direction: column ;gap: 8px; margin-bottom: 12px;}
.bookshelf_wrap .list .top .grade{font-size: 12px; font-weight: 600; line-height: 140%;}
.bookshelf_wrap .list .grade.pawn{color: var(--level-pawn);}
.bookshelf_wrap .list .grade.bishop{color: var(--level-bishop);}
.bookshelf_wrap .list .grade.rook{color: var(--level-rook);}
.bookshelf_wrap .list .grade.knight{color: var(--level-knight);}
.bookshelf_wrap .list .grade.queen{color: var(--level-queen);}
.bookshelf_wrap .list .grade.king{color: var(--level-king);}
.bookshelf_wrap .list .grade.king{color: var(--level-king);}
.bookshelf_wrap .list .title{display: flex; flex-direction: column;}
.bookshelf_wrap .list .title strong{font-size: 14px; font-weight: 500; line-height: 140%;}
.bookshelf_wrap .list .title p{color: var(--text-subdued, #595959); font-size: 12px; font-weight: 400; line-height: 140%;}
.bookshelf_wrap .list dl{display: flex; align-items: center; justify-content: space-between; color: var(--text-subdued, #595959); font-size: 12px; font-weight: 400; line-height: 140%;}
.bookshelf_wrap .list dt{font-size: 12px;}
.bookshelf_wrap .list dd{font-size: 14px; display: flex;}
.bookshelf_wrap .list dd img{width: 16px;}
.bookshelf_wrap .list .rating dd{font-size: 13px;}


.quiz_sch_wrap .recommend_wrap li.red{background:url('/common/images/icon/bookicon_red.svg') no-repeat 0 0; background-size: contain;padding: 273px 0 0 0;}
.quiz_sch_wrap .recommend_wrap li.org{background:url('/common/images/icon/bookicon_org.svg') no-repeat 0 0;background-size: contain;padding: 273px 0 0 0;}
.quiz_sch_wrap .recommend_wrap li.yel{background:url('/common/images/icon/bookicon_yel.svg') no-repeat 0 0;background-size: contain;padding: 273px 0 0 0;}
.quiz_sch_wrap .recommend_wrap li.grn{background:url('/common/images/icon/bookicon_grn.svg') no-repeat 0 0;background-size: contain;padding: 273px 0 0 0;}
.quiz_sch_wrap .recommend_wrap li.pup{background:url('/common/images/icon/bookicon_pup.svg') no-repeat 0 0;background-size: contain;padding: 273px 0 0 0;}
.quiz_sch_wrap .recommend_wrap li.blu{background:url('/common/images/icon/bookicon_blu.svg') no-repeat 0 0;background-size: contain;padding: 273px 0 0 0;}