/*html*/
html {
    font-size: 14px;
    font-family: 'Noto Sans KR', sans-serif;
    word-break: keep-all;
}

/*header*/
.listBg::after {
    content: "";
    width: 100%;
    height: 0vw;
    display: block;
    position: absolute;
    z-index: 2;
    top: 50px;
    background: #f7f8fc;
    transition: all .5s linear;
}

.listBg.active::after {
    height: 60vh;
}

header {
    background: #fff;
    width: 100%;
}

header .hWrap {
    display: flex;
    width: 1440px;
    margin: 0px auto;
    justify-content: flex-start;
    align-items: center;
}

header .hWrap .logo a {
    width: 80px;
}

header .hWrap .logo a img {
    width: 100%;
}

header .hWrap>ul {
    display: flex;
    white-space: nowrap;
    position: relative;
    justify-content: center;
    align-items: center;
    font-weight: 500;
    z-index: 3;
}

header .hWrap a {
    display: block;
}

header .hWrap>ul.gnb>li {
    padding: 16px;
}

.hWrap>ul>li>ul.depthlist1 {
    position: absolute;
    top: 100%;
    left: 0px;
    z-index: 2;
    font-size: 16px;
    visibility: hidden;
    opacity: 0;
    height: 0;
    transition: all .5s linear;
}

.hWrap>ul>li>ul.depthlist1>li {
    padding: 14px;
}

ul.depthlist1>li>ul.depthlist2 {
    position: absolute;
    left: 150%;
    top: 0;
    display: none;
}

ul.depthlist1>li>ul.depthlist2>li {
    padding: 14px;
    width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
}

ul.depthlist2>li ul.depthlist3 {
    position: absolute;
    left: 150%;
    top: 0;
    display: none;
    flex-direction: column;
    height: 30vw;
    flex-wrap: wrap;
}

ul.depthlist2>li ul.depthlist3>li {
    padding: 14px;
}

/* active */
ul.gnb>li>ul.depthlist1.active {
    opacity: 1;
    visibility: visible;
    height: auto;
}

ul.depthlist2.active::before,
ul.depthlist3.active::before {
    content: "";
    width: 1px;
    height: 27vw;
    display: block;
    position: absolute;
    left: -10%;
    top: 13px;
    background-color: #000;
}

ul.depthlist1>li>ul.depthlist2.active {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    height: 30vw;
}

ul.depthlist2>li ul.depthlist3.active {
    display: flex;
}

/*top*/
header .hWrap>.logo {
    flex: 1;
}
header .hWrap>ul.gnb {
    flex:10;
    justify-content: flex-start;
}
header .hWrap>ul.pcPrivacy {
    flex:1;
}

header .hWrap>ul.pcPrivacy>li {
    padding: 5px;
}

header .hWrap .mobile {
    display: none;
}

.toggleBar {
    display: none;
}

/* banner */
.banner {
    position: relative;
    width: 100%;
    height: 550px;
}

.banner ul li figure {
    line-height: 0;
    width: 100%;
    background: #F3F4F7;
}

.banner ul li img {
    width: 1440px;
    margin: 0px auto;
    display: block;
}

.banner a {
    display: block;
}

.banner>button {
    position: absolute;
    top: calc(50% - (15px)/2);
    background: none;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner>button:first-of-type {
    left: calc(50% + (25px)/2 - 720px);
}

.banner>button:last-of-type {
    right: calc(50% + (25px)/2 - 720px);
    left: auto;
}

/* swipe button remove */
.swiper-button-prev:after,
.swiper-button-next:after {
    content: "";
    display: none;
}

/*books base*/
.blog,
.product,
.books {
    width: 1440px;
    margin: 0px auto;
}

.blog figure,
.product figure,
.books figure {
    overflow: hidden;
}

.books figure {
    height: 300px;
    line-height: 0;
}

.blog figure>img,
.product figure>img,
.books figure>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all .2s linear;
}

.blog figure:hover>img,
.product figure:hover>img,
.books figure:hover>img {
    transform: scale(1.1);
}

.product dl,
.books dl {
    margin-top: 30px;
    text-align: center;
}

.product dl dt,
.books dl dt {
    position: relative;
}

.product dl dt>h2,
.books dl dt>h2 {
    font-size: 1.4rem;
    font-weight: 700;
    width: 100%;
}

.blog dl dt>a:last-of-type,
.product dl dt>a:last-of-type,
.books dl dt>a:last-of-type {
    position: absolute;
    right: calc(50% - 465px);
    bottom: -10px;
}

.product dl dd ul,
.books dl dd ul,
.books dl dd ol {
    width: 75%;
    display: flex;
    box-sizing: border-box;
    padding: 20px;
    margin: 0px auto;
    justify-content: center;
}

.product dl dd ul li,
.books dl dd ul li,
.books dl dd ol li {
    width: calc((100% / 4) - 45px);
    text-align: center;
    margin-right: 15px;
    overflow: hidden;
    position: relative;
}

.product dl dd ul li:last-of-type,
.books dl dd ul li:last-of-type,
.books dl dd ol li:last-of-type {
    margin: 0;
}

.books dl dd ul h3,
.books dl dd ol h3 {
    font-size: 1.2rem;
    font-weight: 500;
    text-overflow: ellipsis;
    overflow: hidden;
    margin: 12px 0px 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.product p,
.books p {
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.books span,
.product span {
    position: absolute;
    top: 10px;
    width: 45%;
    left: 0;
    color: #fff;
    background: #252628;
    padding: 10px 15px 10px 0px;
    font-weight: 100;
    font-size: 1.2rem;
    transition: all .4s linear;
    white-space: nowrap;
    clip-path: polygon(100% 0%, 90% 50%, 100% 100%, 0 100%, 0% 50%, 0 0);
}

.books li:hover span,
.product li:hover span {
    background: #ff2683;
    display: block;
}

/*btnlist*/
.books .btnList {
    display: flex;
    position: relative;
    justify-content: center;
    margin-top: 30px;
    margin-bottom: 510px;
}

.books .btnList dt {
    padding: 0px 5px 5px;
    margin: 0px 8px;
    font-size: 1.2rem;
    font-weight: 100;
    cursor: pointer;
    position: initial;
}

.books .btnList dd {
    display: none;
    top: 150%;
    width: 100%;
    /* background:#f7f8fc; */
    position: absolute;
}

.books .btnList dd figure {
    margin: 0px auto;
}

.books .btnList dd h3 {
    font-size: 1.2rem;
    white-space: pre-line;
    font-weight: 700;
    margin-top: 10px;
}

.books .btnList dd p {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: block;
}

.books .btnList dt h2 {
    font-weight: 100;
}

.btnList dt a {
    display: none;
    font-size: 1rem;
    font-weight: 500;
}

.books .btnList dt.active {
    border-bottom: 2px solid #000;
}

.books .btnList dt.active h2 {
    font-weight: 700;
}

.btnList dt.active a {
    display: block;
}

.btnList dd.active {
    display: block;
}

.btnList.topMode.top h3 {
    font-size: 1.5rem;
    margin-top: 0px;
}

.btnList.topMode.top figure {
    margin-top: 10px;
}

.books .btnList .threeTypeList li {
    width: calc(100%/3);
}

.books .btnList .threeTypeList figure {
    width: 270px;
    height: 270px;
}

.books .btnList .twoTypeList li {
    width: 49%;
}

.books .btnList .twoTypeList li iframe {
    object-fit: cover;
    width: 100%;
}

.books .btnList .oneTypeList {
    padding: 10px 0px;
}

/* 서브배너 */
.subBanner {
    margin-top: 20px;
    padding-bottom: 10px;
}

.subBanner>ul>li {
    background: #F7F8FB;
    text-align: center;
}

.subBanner>ul>li>a {
    display: block;
}

/*footer*/
footer {
    background: #f7f8fc;
    padding-top: 20px;
}

footer>div {
    width: 1440px;
    margin: 0px auto;
}

.tFoot {
    display: flex;
    font-size: 1.2rem;
    justify-content: space-around;
    padding-bottom: 25px;
}

.tFoot dl {
    display: flex;
    flex-direction: column;
}

.tFoot dl dd {
    font-size: 1rem;
}

.tFoot dt,
.mFoot ul>li {
    font-weight: 700;
    padding: 10px 20px;
    font-size: 1.1rem;
}

.tFoot a {
    padding: 10px 20px;
    display: block;
}

.mFoot {
    width: 100%;
    padding: 10px 0px;
    border-top: 1px solid #93999B;
    border-bottom: 1px solid #93999B;
}

.mFoot ul {
    display: flex;
    width: 1440px;
    margin: 0px auto;
    justify-content: space-around;
}

.fFoot {
    display: flex;
    padding: 40px 45px;
    box-sizing: border-box;
}

.fFoot div {
    width: 50%;
}

.fFoot .fleft>* {
    margin-bottom: 10px;
}

.fFoot .fright div:nth-of-type(2)>a,
.fFoot .fright div:nth-of-type(3)>a {
    display: flex;
    align-items: center;
}

.fFoot .fright div:nth-of-type(1),
.fFoot .fright div:nth-of-type(4) {
    display: flex;
}

.fFoot .fright div:nth-of-type(1)>a,
.fFoot .fright div:nth-of-type(4)>a {
    display: flex;
    padding-right: 5px;
}

.fFoot .fright div:nth-of-type(1)>a::after,
.fFoot .fright div:nth-of-type(4)>a::after {
    content: "";
    display: inline-block;
    width: 1px;
    height: 20px;
    margin-left: 7px;
    background: #000;
}

.fFoot .fright div:nth-of-type(1)>a:last-of-type::after,
.fFoot .fright div:nth-of-type(4)>a:last-of-type::after {
    display: none;
}

.fFoot .fright div:nth-of-type(4)>a>figure {
    display: flex;
    align-items: center;
}

/* 도서 서브페이지 */
.content .category {
    display: flex;
    position: relative;
    padding-bottom: 100px;
    border-top: .5px solid #000;
    padding-top: 50px;
}

.content .category>dt {
    position: absolute;
    left: 50%;
    top: 12.5px;
    font-size: 1.2rem;
    font-weight: 100;
    transform: translateX(-50%);
    cursor: pointer;
}

.content .category>dt:nth-of-type(1) {
    transform: translateX(-200%);
}

.content .category>dt:nth-of-type(3) {
    transform: translateX(120%);
}

.content .category>dd {
    width: 0;
    height: 0;
    overflow: hidden;
    visibility: hidden;
}

.content .category>dt.active {
    font-weight: 700;
}

.content .category>dd.active {
    width: 100%;
    height: auto;
    visibility: visible;
}

/* 국내도서 버튼리스트 */
.books .btnList.inBook {
    margin-top: 15px;
}

/* 국내도서 이벤트 단락 */

.books .event dd ul {
    width: auto;
    padding: 0px;
    justify-content: flex-start;
    margin-top: 20px;
}

.books .event dd ul li {
    margin: 0;
}

.books .event dd ul li figure {
    height: auto;
    background: none;
}

/* 장르리스트 */
.product .categoryGenre,
.books .categoryGenre {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 20px;
    width: 100%;
}

.product .categoryGenre li,
.books .categoryGenre li {
    margin: 5px;
    border-radius: 10px;
    background: #F7F8FB;
    width: auto;
    transition: background-color .2s linear;
}

.product .categoryGenre li:hover,
.books .categoryGenre li:hover {
    margin: 5px;
    border-radius: 10px;
    background: #93999B;
    width: auto;
}

.product .categoryGenre li a,
.books .categoryGenre li a {
    padding: 8px 20px;
    display: block;
    white-space: nowrap;
}

.product .categoryGenre li:last-of-type,
.books .categoryGenre li:last-of-type {
    margin: 5px;
}

/* 제목있는 장르리스트 */
.product dl dd>.categoryGenre,
.books dl dd>.categoryGenre {
    margin-top: 0px;
}

.product .btnList .categoryGenre li,
.books .btnList .categoryGenre li {
    margin: 5px;
}

/* 해외도서 버튼리스트 */
.books .btnList.outBook {
    margin-bottom: 470px;
}

/* 해외도서 이벤트단락 */
.books .event.outBook dd ul {
    width: 1440px;
    margin-top: 25px;
}

/* eBook 버튼리스트 */
.books .btnList.eBook {
    margin-top: 15px;
    margin-bottom: 500px;
}

.books .btnList.eBook dt h2 {}

.books .btnList.eBook>dd {
    top: 150%;
}

.books .btnList.eBook ul,
.books .btnList.eBook ol {
    width: 2320px;
    padding: 0;
    justify-content: flex-start;
}

.books .btnList.eBook ul li,
.books .btnList.eBook ol li {
    margin-right: 0px;
}

.books .btnList.eBook>dd>div {
    overflow: hidden;
    width: calc((217px + 15px)*4);
    margin: 0px auto;
}

/* 알라딘 굿즈 */
.product>dl:last-of-type {
    padding-bottom: 100px;
}

.product figure {
    height: 215px;
    line-height: 0;
    margin-bottom: 10px;
}

.product p:first-of-type {
    margin-top: 7.5px;
    font-weight: 700;
    font-size: 1.2rem;
}

/* 펀딩 */
.product .funding dd a:first-of-type {
    position: relative;
}

.product .funding h3 {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.product .funding span {
    position: absolute;
    top: 8px;
    left: -95px;
    background: none;
    color: inherit;
    bottom: auto;
    right: auto;
    width: auto;
    transform: translateX(0%);
    padding: 0;
    border-radius: 0;
    font-weight: inherit;
    font-size: inherit;
    clip-path: none;
    z-index: 3;
}

.product .funding li:hover span {
    background: none;
}

.product .funding dd ul li.active i,
.product .funding dd ul li.active span {
    font-weight: 700;
}

.product .funding dd a:last-of-type {
    display: block;
    background: #C2C3C1;
    line-height: 3;
    margin-top: 10px;
}

.product .funding dd ul li.active a:last-of-type {
    background: #252628;
    color: #fff;
}

/* 캐릭터굿즈 리스트 */
.product .charList {
    width: auto;
}

.product .charList li a figure {
    width: 140px;
    height: 140px;
    display: block;
    margin: 0px auto;
}

/* 커피단락 리스트  */
.product .coffeeList p {
    font-size: 1rem;
    font-weight: 400;
    -webkit-line-clamp: 3;
}

.product .coffeeList h3 {
    font-size: 1.2rem;
    font-weight: 700;
}

/* 중고페이지 */
.product.used>dl {
    padding: 0;
}

.books dl.searchBox {
    width: 70%;
    margin: 20px auto 0px;
    background: #f7f8fb;
    padding: 30px 40px 40px 40px;
}

.books dl.searchBox fieldset {
    border: 0;
    display: flex;
    justify-content: center;
}

.books dl.searchBox fieldset>* {
    height: 25px;
    box-sizing: border-box;
    margin: 30px 0 0 0;
    border: 0;
    background: #fff;
    height: 40px;
}

.books dl.searchBox fieldset #searchType {
    padding-right: 80px;
    border: 0.25px solid #DEDFE4;
    border-right: 0;
}

.books dl.searchBox fieldset #search {
    width: 400px;
    border: 0.25px solid #DEDFE4;
}

.books dl.searchBox fieldset button {
    width: 40px;
    background: #DEDFE4;
    cursor: pointer;
}

.searchBox dd a {
    border-bottom: 1px solid #000;
    margin: 10px;
    display: inline-block;
}

.books .btnList.usedBtnList {
    margin-top: 15px;
    margin-bottom: 435px;
}

.btnList.usedBtnList>dd {
    top: 85%;
}

.btnList.usedBtnList.thirdBtn,
.btnList.usedBtnList.fourthBtn {
    margin-bottom: 135px;
}

.btnList.usedBtnList.thirdBtn dd,
.btnList.usedBtnList.fourthBtn dd {
    width: 100%;
}

.btnList.usedBtnList.thirdBtn dd ul,
.btnList.usedBtnList.fourthBtn dd ul {
    justify-content: center;
}

.content .category.mnb>dt:nth-of-type(1) {
    transform: translateX(-250%);
}

/* 서재 */
.blog>dl {
    position: relative;
    width: 70%;
    margin: 20px auto 0px;
}

.blog dl>dt {
    margin-bottom: 10px;
    text-align: center;
    font-size: 1.4rem;
    font-weight: 700;
}

.blog dl>dt p {
    font-size: 1.1rem;
    font-weight: 400;
}

.blog figure {
    width: 150px;
    height: 150px;
    box-sizing: border-box;
    padding: 10px;
}

.blog dl li>a {
    display: flex;
}

/* blog 버튼리스트 */
.blog .btnList {
    display: flex;
    position: relative;
    margin-bottom: 510px;
    justify-content: center;
}

.blog .btnList dt {
    padding: 0px 5px 5px;
    margin: 0px 8px;
    font-weight: 100;
    cursor: pointer;
    font-size: 1.2rem;
}

.blog .btnList dt>a {
    position: absolute;
}

.blog .btnList dd {
    display: none;
    top: 135%;
    margin: 0px auto;
}

.blog .btnList dd li {
    margin-bottom: 5px;
}

.blog .btnList dd li:last-of-type {
    margin: 0;
}

.blog .btnList div {
    width: calc(100% - 270px);
}

.blog .btnList li a>h3:first-of-type {
    width: 120px;
}

/* 유튜브 리스트 */
.blog .btnList.youtube {
    margin-bottom: 240px;
}

.blog .btnList.youtube li {
    width: 25%;
}

.blog .btnList.youtube figure {
    width: 100%;
    padding: 10px;
}

.blog .btnList dt.active {
    font-weight: 500;
    border-bottom: 2px solid #000;
}

.blog .btnList dd.active {
    display: block;
    position: absolute;
}

/* 마니아 단락 */
.blog .mania dd>h2 {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 10px 0px 30px;
}

.blog .mania dd h3 {
    font-weight: 500;
}

.blog .mania+dl dd,
.blog .mania dd {
    text-align: center;
}

.blog .mania+dl dd ul,
.blog .mania dd ul {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.blog .mania dd .maniaList {
    justify-content: flex-start;
}

.blog .mania dd .maniaList li {
    width: calc(100% /8);
    padding: 0;
}

.blog .mania dd li {
    width: 135px;
    padding: 10px;
}

.blog .mania+dl dd li>a,
.blog .mania dd li>a {
    flex-direction: column;
}

.blog .mania dd li>a>figure {
    width: 110px;
    height: 110px;
    margin: 0 auto 10px;
    border-radius: 50%;
    overflow: hidden;
    padding: 0;
}

.blog .libraryList h3 {
    white-space: pre-line;
    font-weight: 500;
    font-size: 1.1rem;
}

.blog .libraryList p:nth-of-type(1) {
    font-size: 0.9rem;
    font-weight: 300;
}

.blog .libraryList p:last-of-type {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.blog .libraryList.fourthBtn p:nth-of-type(2) {
    font-size: 0.9rem;
    font-weight: 300;
}

footer.blogFooter {
    text-align: center;
    padding-bottom: 20px;
}

footer.blogFooter a {
    padding-right: 10px;
    padding-bottom: 10px;
    display: inline-block;
}

footer.blogFooter a:after {
    content: "";
    width: 1px;
    height: 15px;
    background: #000;
    display: inline-block;
    margin-left: 10px;
    transform: translateY(3px);
}

footer.blogFooter a:last-of-type {
    padding: 0;
}

footer.blogFooter a:last-of-type:after {
    display: none;
}

/* 상세페이지 */
.detailContent .subBanner ul li {
    background: none;
}

.detailContent {
    width: 1000px;
    margin: 0 auto;
}

p.productCategory {
    margin-top: 25px;
    margin-bottom: 15px;
    font-weight: 500;
    font-size: 1.2rem;
}

.productInfo {
    display: flex;
    justify-content: space-between;
}

.productInfo>figure {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.productInfo>figure img {
    width: 60%;
    margin: 0 auto;
    display: block;
    box-shadow: 2px 2px 25px #00000047;
    transition: all .3s linear;
}
.productInfo>figure:hover img {
    width: 70%;
}

.paraGrup {
    width: 50%;
    font-size: 1.15rem;
}

p.productEvent {
    font-weight: 500;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

p.productEvent+h1 {
    font-weight: 500;
    font-size: 1.7rem;
}

.paraGrup>dl {
    display: flex;
    flex-wrap: wrap;
    margin-top: 15px;
}

.paraGrup dd {
    width: 80%;
}

.paraGrup dt {
    width: 20%;
}

.paraGrup dt:nth-of-type(2),
.paraGrup dd:nth-of-type(2) {
    font-size: 1.7rem;
    font-weight: 500;
}

.paraGrup dt:nth-of-type(2)~dt,
.paraGrup dd:nth-of-type(2)~dd {
    margin-top: 18px;
    font-size: 1.1rem;
}

.paraGrup>p:nth-of-type(2) {
    margin: 15px 0;
}

.paraGrup figure {
    width: 20%;
    display: inline-block;
}

.paraGrup figure img {
    width: 100%;
}

.paraGrup>figure+p {
    display: inline-block;
}

ul.priceInfo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px 0;
}

ul.priceInfo>li {
    width: calc(100%/3);
}

.paraGrup form {
    display: flex;
    flex-wrap: wrap;
}

.paraGrup form>* {
    border-radius: 0;
    border: 0;
}

.paraGrup form figure {
    width: 55px;
    height: 55px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.paraGrup form label {
    width: 20%;
}

.paraGrup input#count {
    margin-right: 40%;
}

.paraGrup form figure img {
    width: 50%;
}

.paraGrup form>button {
    margin-right: 5px;
    cursor: pointer;
    margin-top: 20px;
}

.paraGrup form>button:first-of-type {
    padding: 0 100px;
    font-size: 1.3rem;
    background: #252628;
    color: #fff;
    font-weight: 500;
}

.paraGrup form~p {
    display: inline-block;
    margin: 20px 50px 10px 0;
}
.detailContent.used {
    margin-top: 40px;
}
.paraGrup.used h1 {
    font-size: 2rem;
}
.paraGrup.used .titleCaption {
    font-size: 1.1rem;
    font-weight: 400;
}
.paraGrup.used dl {
    margin-bottom:20px;
}
.paraGrup.used dt {
    width:40%;
}
.paraGrup.used dd {
    width:60%;
}

.paraGrup.used dt:nth-of-type(2), 
.paraGrup.used dd:nth-of-type(2) {
    font-size: inherit;
    font-weight: 400;
    margin-top: 18px;
    padding-bottom:20px;
}
.paraGrup.used table {
    width: 100%;
    text-align: center;
}
.paraGrup.used table caption {
    text-align: left;
    margin:20px 0;
}
.paraGrup.used table th {
    background: #DEDFE4;
    padding: 5px;
    border-right: 5px solid #fff;
    box-sizing: border-box;
    font-weight: 400;
}
.used+form {
    margin-top: 25px;
    width:30%;
}
.used+form button {
    display: block;
    width: 100%;
    padding: 20px;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
    border: 0;
    background: #252628;
    color: #fff;
}
.used+form button:last-of-type {
    background: #DEDFE4;
    color:#000;
}