#book_list {
    align-items: center;
}

#book_list li {
    padding-bottom: 0;
    margin: 0 10px;
    border-top-left-radius: 24px;
    border-bottom-right-radius: 48px;
    overflow: hidden;
    background-color: #fff;
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
}

#book_list li::before {
    pointer-events: none;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-right: 1px solid rgb(138 135 132 / 35%);
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    opacity: 0
}

#book_list li img {
    aspect-ratio: 2/ 1.5;
    object-fit: cover;
    object-position: top;
}

#book_list li .info_box {
    padding: 25px 20px 10px;
    font-size: 15px;
    letter-spacing: 3.3px;
    color: #444;
    padding-bottom: 20px;
    margin-bottom: 0px;
}

#book_list li .info_box p * {
    font-weight: 100;
    font-size: 14px
}

#book_list li .info_box p a {
    margin-right: 10px;
    padding: 0 2px;
    max-width: calc(100% - 82px);
    height: 23px;
    z-index: 2
}

#book_list .bookInfoBox {
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    align-items: center;
    padding-bottom: 10px;
    margin-bottom: 12px;
    border-bottom: 1px solid #c2c2c2;
}

#book_list .bookInfoBox .tagBox {
    padding: 0
}

#book_list .bookInfoBox .dateBox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

#book_list .bookInfoBox .dateBox .classTitle {
    padding: 2px 14px;
    align-self: flex-end;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.03em;
    line-height: 1.5;
    color: #b3b3b3;
}

#book_list .bookInfoBox .dateBox .day {
    font-size: 40px;
    color: var(--primary);
    line-height: 56px;
    font-weight: bold;
    margin-right: 13px;
    letter-spacing: 1.28px;
    font-weight: 500;
    font-family: 'Outfit', sans-serif;
}

#book_list .bookInfoBox .dateBox .month,.bookInfoBox .dateBox .year {
    line-height: 1.2;
    font-size: 15px;
    font-weight: 600;
    color: #555555;
    white-space: nowrap;
    letter-spacing: 1.28px;
    font-weight: 500;
    font-family: 'Outfit', sans-serif;
}

#book_list .bookInfoBox .dateBox .month .slash,.bookInfoBox .dateBox .year .slash {
    margin-left: 5px;
    margin-right: 5px
}

#book_list .bookInfoBox .dateBox .year {
    font-size: 14px;
    letter-spacing: 1px
}

#book_list li .bookInfoBox .classTitle {
    position: relative;
    display: inline-block;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.03em;
    line-height: 1.5;
    color: #353535;
}

#book_list li h3 {
    height: 72px;
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 10px;
    -webkit-line-clamp: 2;
    letter-spacing: 2px
}

#book_list li .text {
    -webkit-line-clamp: 1;
    height: auto;
    font-size: 1rem;
    color: #444;
    letter-spacing: .5px;
    margin-bottom: 30px;
}

#book_list li .plus {
    position: relative;
    right: 0;
    pointer-events: none;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    background: var(--triadic1);
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#book_list li .plus::before {
    content: "";
    width: 16px;
    height: 16px;
    border-right: 1px solid #ffffff;
    border-bottom: 1px solid #ffffff;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    display: block;
}

#book_list li .more {
    margin: 9px 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    pointer-events: auto;
    border-style: solid;
    border-color: #deecf3;
    border-width: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    flex-wrap: nowrap;
    background: linear-gradient(to right, #007791, #0099a8);
    position: relative;
    z-index: 1;
}

#book_list li .more svg {
    width: 18px;
    height: 13px;
    fill: #ffffff;
}

.bookinner #book_list {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
}

@media screen and (max-width: 1280px) {
    .bookinner #book_list {grid-template-columns: repeat(3, 1fr);}
}
@media screen and (max-width: 980px) {
    .bookinner #book_list {grid-template-columns: repeat(2, 1fr);}
}
@media screen and (max-width: 640px) {
    .bookinner #book_list {grid-template-columns: repeat(1, 1fr);}
}