@import url("font.css");
@import url("reset.css");
@import url("common.css");
@import url("//fonts.googleapis.com/earlyaccess/nanummyeongjo.css");

html,
body {
    font-size: 62.5%;
    font-family: "Pretendard", sans-serif;
}
@media all and (max-width: 900px) {
    html,
    body {
        font-size: 62.5%;
    }
}
body {
    font-size: var(--fs-18);
    font-weight: 300;
    color: #353535;
}
.row {
    display: flex;
    max-width: 144rem;
    margin: auto;
    padding-left: 2rem;
    padding-right: 2rem;
    width: 100%;
    flex-wrap: nowrap;
    position: relative;
    flex-direction: column;
}
.row > * {
    padding: 0;
}
#wrap {
    display: flex;
    flex-direction: column;
    position: relative;
    align-items: center;
    min-height: 100vh;
    padding-top: 7.5rem;
}
#header {
    border-bottom: 1px solid #dfdfdf;
    background: #fff;
    width: 100%;
    position: fixed;
    top: 0;
    transition: all 0.2s ease;
    z-index: 99;
}
#header.head-hide {
    transform: translateY(-100%);
}
#header.nav-blur {
    -webkit-backdrop-filter: blur(40px);
    backdrop-filter: blur(40px);
    background-color: hsla(0, 0%, 100%, 0.8);
}
#header .row {
    justify-content: space-between;
    height: 7.5rem;
    align-items: center;
    flex-direction: row;
}
#header .nav {
    display: flex;
    gap: 3rem;
    align-items: center;
    height: 100%;
}
#header .nav li {
    height: 100%;
    display: flex;
    align-items: center;
}
#header .nav li a {
    display: flex;
    min-width: 10rem;
    text-align: center;
    justify-content: center;
    font-size: 1.8rem;
    height: 100%;
    align-items: center;
}
#header .nav li.active a {
    border-bottom: 2px solid var(--color-blue);
}
#header .nav li.admin a {
    padding: 0 2rem;
    height: 3.5rem;
    align-items: center;
    background-color: var(--color-blue);
    color: #fff;
    border-radius: 3rem;
    font-size: 1.6rem;
}
#header .menu-btn {
    display: none;
}
#contents {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding-bottom: 10rem;
}
#footer {
    width: 100%;
    background: #3c3c3c;
    color: #eceef2;
    margin-top: auto;
}
#footer .row {
    align-items: center;
    gap: 4rem;
    padding: 2rem;
    flex-direction: row;
}
#footer .foot-con {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    font-size: 1.2rem;
    font-weight: 300;
}
#footer .foot-con ul {
    display: flex;
    font-size: 1.4rem;
    gap: 1rem;
}
#footer .foot-con a {
    color: #eceef2;
}
#footer .foot-con b {
    text-decoration: underline;
    font-weight: 400;
}

@media all and (max-width: 900px) {
    .row {
        display: flex;
        max-width: 144rem;
        margin: auto;
        padding-left: 2rem;
        padding-right: 2rem;
        width: 100%;
        flex-wrap: nowrap;
    }
    .row > * {
        padding: 0;
    }
    #wrap {
        display: flex;
        flex-direction: column;
        position: relative;
        align-items: center;
        min-height: 100dvh;
        padding-top: 6rem;
    }
    #header {
        border-bottom: 1px solid #dfdfdf;
        background: #fff;
        width: 100%;
    }

    #header .row {
        justify-content: space-between;
        height: 6rem;
    }
    #header .nav {
        position: fixed;
        background-color: #fff;
        top: 6.1rem;
        left: 0;
        right: 0;
        height: calc(100dvh - 6.1rem);
        flex-direction: column;
        padding: 3rem 2rem;
        align-items: flex-start;
        transition: all 0.2s ease;
        transform: translateX(-100%);
    }
    #header .nav.active {
        transform: translateX(0);
    }
    #header .nav li {
        width: 100%;
        display: flex;
        justify-content: flex-start;
        height: auto;
    }
    #header .nav li a {
        min-width: auto;
    }
    #header .nav li.admin {
        margin-top: auto;
    }
    #header .nav li.admin a {
        width: 100%;
        height: 5rem;
        border-radius: 4px;
        font-size: 1.8rem;
    }
    body.fixed {
        overflow: hidden;
    }
    #header .menu-btn {
        display: flex;
    }
    #header h1 img {
        width: 8.2rem;
    }
    #footer h1 img {
        width: 9.4rem;
    }
    #footer .row {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }
    #footer .foot-con {
        font-size: 1rem;
        font-weight: 300;
    }
    #footer .foot-con ul {
        font-size: 1.2rem;
        gap: 0.8rem;
    }
    #footer .foot-con p {
        line-height: 1.4rem;
    }
}
/* index */
.index-visual {
    background-color: #edeff4;
    height: 108rem;
    display: flex;
    align-items: center;
}
.index-visual .row {
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding-top: 10.8rem;
    overflow: hidden;
}
.index-visual dl {
    text-align: center;
}
.index-visual dl dt {
    font-size: 7rem;
    font-weight: 400;
    margin-bottom: 1.2rem;
}
.index-visual dl dt b {
    font-weight: 600;
}
.index-visual dl dd * {
    line-height: 140%;
}
.index-visual dl dd:nth-of-type(1) {
    font-size: 3.2rem;
}
.index-visual dl dd:nth-of-type(2) {
    margin-top: 5rem;
    line-height: 3rem;
    font-size: 2.2rem;
    color: var(--color-blue);
}
.index-visual dl dd:nth-of-type(3) {
    line-height: 3rem;
    font-size: 2.2rem;
}
.index-visual dl dd:nth-of-type(4) {
    margin-top: 2rem;
}
.index-visual dl dd:nth-of-type(4) a {
    display: inline-flex;
    color: #fff;
    height: 3.7rem;
    align-items: center;
    justify-content: center;
    background: var(--color-blue);
    border-radius: 2rem;
    font-size: 1.8rem;
    padding: 0 2rem;
}
.index-visual ul {
    display: flex;
    align-items: flex-end;
    width: 100%;
    justify-content: center;
    margin-top: 9.5rem;
}
.index-visual ul li {
    margin-left: -20rem;
}
.index-visual ul li:first-of-type {
    margin-left: 0rem;
}
.book-summery {
    display: flex;
    align-items: center;
    padding: 10rem 0;
    gap: 5rem;
    width: 100%;
    justify-content: space-between;
}
.book-summery .book-slider {
    flex-grow: 1;
    width: 80rem;
}
.book-summery .bookSwiper {
    width: 100%;
}
.book-summery .bookSwiper .swiper-slide {
    width: auto;
}
.book-summery .bookSwiper .swiper-slide a {
    display: flex;
    border: 1px solid #dfdfdf;
    padding: 1.2rem 1.5rem 1.2rem 1.5rem;
    width: 27rem;
}
.book-summery .bookSwiper .swiper-slide a dt {
    width: 24rem;
    height: 24rem;
    overflow: hidden;
    display: flex;
    margin-bottom: 1.5rem;
}
.book-summery .bookSwiper .swiper-slide a dd:nth-of-type(1) {
    font-size: 1.4rem;
}
.book-summery .bookSwiper .swiper-slide a dd:nth-of-type(2) {
    font-size: 2rem;
    font-weight: 700;
    margin-top: 0.9rem;
}
.book-intro {
    flex: none;
}
.book-intro p {
    font-size: 1.8rem;
    margin-top: 0.5rem;
}
.control {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
}
.control .swiper-button-next {
    position: static;
    top: auto;
    margin-top: 0;
    width: auto;
    height: auto;
}
.control .swiper-button-prev {
    position: static;
    top: auto;
    margin-top: 0;
    width: auto;
    height: auto;
}

.review-section {
    background: #f5f5f5;
    text-align: center;
}
.review-section .row {
    padding: 10rem 2rem;
}
.review-section h2 {
    margin-bottom: 0.4rem;
    line-height: 140%;
}
.review-section .row > p {
    font-size: var(--fs-18);
}
.review-section .review-summery {
    display: flex;
    margin-top: 4rem;
}
.review-section .review-summery .swiper-slide {
    width: 27rem;
}
.review-section .review-summery .review .title {
    color: #fff;
    font-size: var(--fs-18);
    background-color: #0265e8;
    white-space: nowrap;
    overflow: hidden;
    word-break: break-all;
    text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
    vertical-align: middle;
    width: 100%;
    padding: 1rem;
}
.review-section .review-summery .review .review-con {
    border: 1px solid #dfdfdf;
    border-top: none;
    background-color: #fff;
    padding: 2rem;
    text-align: left;
}
.review-section .review-summery .review .review-con .score {
}
.review-section .review-summery .review .review-con .text {
    margin-top: 1rem;
    font-size: var(--fs-16);
    line-height: 140%;
    min-height: 11.2rem;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    word-wrap: break-wrod;
}
.review-section .review-summery .review .review-con .more {
    margin-top: 2.5rem;
    font-size: 1.2rem;
}
.review-section .review-summery .review .review-con dl {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #dfdfdf;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.review-section .review-summery .review .review-con dl dt {
    font-size: 1.4rem;
    font-weight: 500;
}
.review-section .review-summery .review .review-con dl dd {
    color: var(--color-gray);
    font-size: 1.2rem;
    font-weight: 300;
}
@media all and (max-width: 900px) {
    .index-visual {
        height: fit-content;
    }
    .index-visual .row {
        padding-top: 2.8rem;
        overflow: hidden;
    }
    .index-visual dl dt {
        font-size: 3.6rem;
    }
    .index-visual dl dd:nth-of-type(1) {
        font-size: 2rem;
    }
    .index-visual dl dd:nth-of-type(2) {
        margin-top: 2rem;
        line-height: 140%;
        font-size: 1.6rem;
        color: var(--color-blue);
    }
    .index-visual dl dd:nth-of-type(3) {
        line-height: 140%;
        font-size: 1.6rem;
    }
    .index-visual dl dd:nth-of-type(4) {
        margin-top: 2rem;
    }

    .index-visual ul {
        display: flex;
        align-items: flex-start;
        width: 100%;
        justify-content: center;
        padding-left: 0rem;
        padding-right: 0rem;
        margin-top: 2.6rem;
        overflow: hidden;
        margin-bottom: -2rem;
    }
    .index-visual ul li {
        display: flex;
        width: fit-content;
        margin-left: -16%;
        min-width: 11rem;
    }
    .index-visual ul li:first-of-type {
        margin-left: 0;
    }
    .index-visual ul li img {
        width: 100%;
        object-fit: cover;
    }

    .book-summery {
        flex-direction: column;
        padding: 5rem 0 5rem 0rem;
        gap: 2rem;
        align-items: flex-start;
    }
    .book-summery .book-slider {
        flex-grow: 1;
        /* width: 80rem; */
        width: 100%; /* 2024-10-18 최미래 해당 내용 확인 필요 */
    }
    .book-summery .bookSwiper {
        width: 100%;
    }
    .book-summery .bookSwiper .swiper-slide {
        width: auto;
    }
    .book-summery .bookSwiper .swiper-slide a {
        display: flex;
        border: 1px solid #dfdfdf;
        padding: 1rem;
        width: 20rem;
    }
    .book-summery .bookSwiper .swiper-slide a dt {
        width: 17.8rem;
        height: 17.8rem;
        margin-bottom: 1.2rem;
    }
    .book-summery .bookSwiper .swiper-slide a dd:nth-of-type(1) {
        font-size: 1.4rem;
    }
    .book-summery .bookSwiper .swiper-slide a dd:nth-of-type(2) {
        font-size: 1.6rem;
        font-weight: 700;
        margin-top: 0.8rem;
    }
    .book-intro p {
        font-size: 1.4rem;
        margin-top: 0.4rem;
    }
    .control a {
        font-size: 1.4rem;
    }
    .control .swiper-button-next img {
        width: 1.7rem;
    }
    .control .swiper-button-prev img {
        width: 1.7rem;
    }

    .review-section .row {
        padding: 5rem 2rem;
        padding-right: 0;
    }
    .review-section h2 {
        margin-bottom: 0.4rem;
        line-height: 140%;
    }
    .review-section .review-summery {
        display: flex;
        margin-top: 2rem;
    }
    .review-section .review-summery .swiper-slide {
        width: 20rem;
    }

    .review-section .review-summery .review .title {
        padding: 0.75rem 1rem;
    }
    .review-section .review-summery .review .review-con {
        border: 1px solid #dfdfdf;
        border-top: none;
        background-color: #fff;
        padding: 1.5rem;
        text-align: left;
    }
    .review-section .review-summery .review .review-con .score img {
        width: 1.6rem;
    }
    .review-section .review-summery .review .review-con .text {
        margin-top: 0.7rem;
        min-height: 8rem;
        font-size: 1.4rem;
    }
    .review-section .review-summery .review .review-con .more {
        margin-top: 1.2rem;
    }
    .review-section .review-summery .review .review-con dl dt {
        font-size: 1.2rem;
    }
}

/* account */
.row.account {
    flex-grow: 1;
    align-items: center;
    padding-top: 13rem;
}
.account-con {
    display: flex;
    width: 50rem;
    flex-direction: column;
    text-align: center;
}
.account-con h2 {
    margin-bottom: 5rem;
}
.account-tab {
    display: flex;
    margin-bottom: 2rem;
}
.account-tab li {
    width: 100%;
}
.account-tab li button {
    border-bottom: 2px solid #fff;
    width: 100%;
    height: 4.5rem;
    color: #999;
}
.account-tab li.active button {
    border-bottom: 2px solid #0265e8;
    color: var(--color-black);
}
.login-bottom {
    display: flex;
    justify-content: center;
    font-size: 1.4rem;
    gap: 2rem;
    margin-top: 2rem;
}
.login-bottom li {
    display: flex;
    align-items: center;
    gap: 2rem;
}
.login-bottom li::after {
    content: "";
    display: flex;
    width: 1px;
    height: 1rem;
    background-color: #dfdfdf;
}
.login-bottom li:last-of-type:after {
    display: none;
}
.tab-con {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
/* .tab-con > *{display: flex; gap: 1rem;} */
.check-input {
    flex-direction: column;
    gap: 0;
}
.check-input > p {
    display: flex;
    gap: 1rem;
}
.check-input .error-msg {
    display: none;
}
.error-msg {
    display: flex;
    font-size: var(--fs-16);
    color: var(--color-red);
    gap: 0.4rem;
    margin-top: 0.6rem;
}
.check-input .error > input {
    border-color: var(--color-red);
}
.check-input .error + .error-msg {
    display: flex;
}
.check-input ul {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.check-input ul li {
    display: flex;
    gap: 0.4rem;
}
.check-input ul li a {
    text-decoration: underline;
}
.check-input ul li label {
    margin-right: 0.4rem;
}
@media all and (max-width: 900px) {
    .row.account {
        padding-top: 5rem;
    }
    .account-con {
        display: flex;
        width: 100%;
        flex-direction: column;
        text-align: center;
    }
}

.form-block {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}
.form {
    display: flex;
    gap: 6rem;
}
.form dt {
    display: flex;
    align-items: center;
    height: 5rem;
    width: 15rem;
    flex: none;
    font-weight: 600;
}
.form dd {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex-grow: 1;
    justify-content: center;
}
.form .form-line {
    display: flex;
    gap: 1rem;
    min-height: 5rem;
    align-items: center;
}
.form .form-line.row-list {
    gap: 6rem;
}
.form-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex-grow: 1;
    justify-content: center;
}

@media all and (max-width: 900px) {
    .form-block {
        gap: 3rem;
    }
    .form {
        flex-direction: column;
        gap: 1rem;
    }
    .form dt {
        height: auto;
        width: 100%;
        font-size: 1.6rem;
    }
    .form dd {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        flex-grow: 1;
        justify-content: center;
    }
    .form .form-line {
        display: flex;
        gap: 1rem;
        min-height: auto;
    }
    .form .form-line .btn {
        padding: 0 1rem;
        min-width: auto;
    }
    .form .form-line.row-list {
        gap: 4rem;
    }
    .m-colum {
        flex-direction: column;
    }
}

.order-complete-box {
    display: flex;
    flex-direction: column;
    margin: 20rem auto auto auto;
    width: 50rem;
    text-align: center;
}
.order-complete-box .order-info {
    display: flex;
    flex-direction: column;
    margin-top: 4rem;
    margin-bottom: 1rem;
    border-top: 1px solid #dfdfdf;
    border-bottom: 1px solid #dfdfdf;
    padding: 2rem;
    gap: 2rem;
    align-items: flex-start;
}
.order-complete-box .order-info dl {
    display: flex;
    width: 100%;
    font-size: var(--fs-16);
}
.order-complete-box .order-info dl dt {
    display: flex;
    width: 10rem;
    flex: none;
}
.order-complete-box .order-info dl dd {
    display: flex;
    justify-content: space-between;
    flex-grow: 1;
    text-align: left;
}
.order-complete-box .order-info dl dd p {
    line-height: 160%;
}
@media all and (max-width: 900px) {
    .order-complete-box {
        width: 100%;
        margin-top: 3.5rem;
    }
    .order-complete-box .order-info {
        margin-top: 3rem;
    }
    .order-complete-box .order-info dl dd {
        flex-direction: column;
        gap: 0.6rem;
    }
}

.page-header {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    padding: 0 4rem;
    justify-content: center;
    align-items: center;
    background: #edeff4;
    text-align: center;
    height: 15rem;
}
.page-header h2 {
    font-size: 3rem;
    font-weight: 500;
}
.page-header p {
    font-size: 1.4rem;
}
.bbs-block {
    padding-top: 5rem;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}
.tag-list {
    display: flex;
    justify-content: center;
    gap: 1rem;
}
.tag-list a {
    display: inline-flex;
    border: 1px solid #dfdfdf;
    border-radius: 2rem;
    padding: 0 2rem;
    height: 3.4rem;
    align-items: center;
}
.search-line {
    display: flex;
    gap: 0.5rem;
    width: 66rem;
    align-self: center;
}
.search-line * {
    font-size: 1.6rem !important;
}
.search-line select {
    width: 15rem;
    flex: none;
}

.table-default {
    border: 1px solid var(--color-light-gray);
    text-align: center;
    border-left: none;
    border-right: none;
}
.table-default thead {
    border-bottom: 1px solid var(--color-light-gray);
}
.table-default thead th {
    height: 6rem;
}
.table-default tbody tr {
    border-bottom: 1px solid var(--color-light-gray);
    font-size: 1.6rem;
}
.table-default tbody tr td {
    padding-top: 2rem;
    padding-bottom: 2rem;
}
.table-default tbody tr td:nth-child(2) {
    text-align: left;
    padding: 0 1.6rem;
}
.table-community colgroup col:nth-child(1) {
    width: 15rem;
}
.table-community colgroup col:nth-child(2) {
}
.table-community colgroup col:nth-child(3) {
    width: 20rem;
}
.table-community colgroup col:nth-child(4) {
    width: 14rem;
}

.file-block p {
    position: relative;
    display: flex;
}
.file-block input[type="file"] {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 10;
    cursor: pointer;
}
@media all and (max-width: 900px) {
    .file-block {
        flex-direction: column;
    }
    .file-block p {
        width: 100%;
    }
    .tag-list {
        flex-wrap: wrap;
        gap: 0.5rem;
        row-gap: 1rem;
    }
    .tag-list a {
        height: 3rem;
    }
    .search-line {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
        width: 100%;
    }
    .search-line select {
        width: 100%;
    }
    .search-line input {
        width: auto;
        flex-grow: 1;
    }
    .search-line button {
        flex-grow: 0;
    }

    .table-default {
        display: flex;
        flex-grow: 1;
    }
    .table-default thead {
        display: none;
    }
    .table-default thead th {
        height: 6rem;
    }
    .table-default tbody {
        display: flex;
        flex-direction: column;
        flex-grow: 1;
    }
    .table-default tbody tr {
        display: flex;
        flex-grow: 1;
        padding: 2rem;
        position: relative;
        flex-wrap: wrap;
    }
    .table-default tbody tr td {
        padding: 0;
        text-align: left;
    }
    .table-default tbody tr td:nth-child(1) {
        font-size: 1.4rem;
        width: 100%; /* 2024-10-17 최미래*/
    }
    .table-default tbody tr td:nth-child(2) {
        padding: 0;
        padding: 0.6rem 0;
        width: 100%; /* 2024-10-17 최미래*/
    }
    .table-default tbody tr td:nth-child(3) {
        font-size: 1.2rem;
        width: 50%;
    }
    .table-default tbody tr td:nth-child(4) {
        font-size: 1.2rem;
        width: 50%;
        text-align: right;
    }
    .table-default colgroup {
        display: none;
    }
}

.bbs-header {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.bbs-header dt {
    font-size: 2.4rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}
.bbs-header dd {
}
.bbs-header dd ul {
    display: flex;
    font-size: 1.4rem;
    color: #999999;
}
.bbs-header dd ul li {
    display: flex;
    align-items: center;
}
.bbs-header dd ul li:last-of-type::after {
    display: none;
}
.bbs-header dd ul li::after {
    content: "";
    width: 1px;
    height: 1rem;
    background-color: #dfdfdf;
    margin: 0 1rem;
    display: flex;
}
.bbs-content {
    font-size: 1.6rem;
}
.repple-block {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}
.repple-block .name {
    font-size: 1.6rem;
}
.repple-write {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}
.repple-write textarea {
    height: 15rem;
    font-size: 1.6rem;
}
.repple-list {
    display: flex;
    flex-direction: column;
    border-top: 1px solid #dfdfdf;
}
.repple-list .repple {
    border-bottom: 1px solid #dfdfdf;
    padding: 2rem 1rem;
}
.repple-list .repple .date {
    font-size: 1.2rem;
    color: var(--color-gray);
    margin-top: 0.6rem;
}
.repple-list .repple .rep-text {
    margin-top: 1.2rem;
    font-size: 1.6rem;
}
.repple-list .repple .text-right {
    margin-top: 1.2rem;
    display: flex;
    justify-content: flex-end;
    gap: 0.5rem;
}
@media all and (max-width: 900px) {
    .bbs-header dt {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.6rem;
    }
    .bbs-block {
        padding-top: 3rem;
        gap: 3rem;
    }
    .repple-block {
        gap: 3rem;
    }
    .repple-list {
        display: flex;
        flex-direction: column;
        border-top: 1px solid #dfdfdf;
    }
    .repple-list .repple {
        border-bottom: 1px solid #dfdfdf;
        padding: 2rem 1rem;
    }
    .repple-list .repple .date {
        font-size: 1.2rem;
        color: var(--color-gray);
        margin-top: 0.6rem;
    }
    .repple-list .repple .rep-text {
        margin-top: 1.2rem;
        font-size: 1.6rem;
    }
}

.product-tab {
    display: flex;
    justify-content: center;
    padding-top: 3rem;
}
.product-tab li {
    display: flex;
    align-items: center;
}
.product-tab li:last-of-type::after {
    display: none;
}
.product-tab li::after {
    content: "";
    width: 1px;
    height: 1.6rem;
    background-color: #dfdfdf;
    margin: 0 3rem;
    display: flex;
}
.product-tab li a {
    color: #999999;
}
.product-tab li.active a {
    color: #353535;
    font-weight: 600;
}
.product-list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 2rem;
    row-gap: 6rem;
    margin-top: 5rem;
}
.product-list .product {
}
.product-list .product a {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #edeff4;
    margin-bottom: 2rem;
}
.product-list .product a img {
    width: 100%;
    object-fit: cover;
}
dl.cate-score {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    font-size: 1.4rem;
}
dl.cate-score dt {
    display: flex;
    align-items: center;
    color: var(--color-gray);
}
dl.cate-score dt:after {
    content: "";
    width: 1px;
    height: 1.4rem;
    background-color: #dfdfdf;
    margin: 0 1.2rem;
    display: flex;
}
dl.cate-score dd {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
dl.cate-score dd img {
    width: ;
}
.product-list .product p {
    margin-top: 1.2rem;
}
.product-list .product .title {
    font-weight: 500;
    line-height: 140%;
}
.product-list .product .price span {
    margin-right: 1rem;
}
.product-list .product .price b {
    font-size: 2.4rem;
}
@media all and (max-width: 900px) {
    .product-tab li::after {
        margin: 0 2rem;
    }
    .product-list {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
        row-gap: 4rem;
        margin-top: 3rem;
    }
    .product-list .product {
    }
    .product-list .product a {
        margin-bottom: 1rem;
    }
    .product-list .product a img {
        width: 100%;
        object-fit: cover;
    }
    .product-list .product dl {
        margin-top: 2rem;
        display: flex;
        align-items: center;
        font-size: 1rem;
    }
    .product-list .product dl dt {
        display: flex;
        align-items: center;
        color: var(--color-gray);
    }
    .product-list .product dl dt:after {
        content: "";
        width: 1px;
        height: 1.4rem;
        background-color: #dfdfdf;
        margin: 0 0.5rem;
        display: flex;
    }
    .product-list .product dl dd {
        display: flex;
        align-items: center;
        gap: 0.4rem;
    }
    .product-list .product dl dd img {
        width: 1rem;
    }
    .product-list .product p {
        margin-top: 0.5rem;
    }
    .product-list .product .title {
        font-weight: 500;
        font-size: 1.2rem;
        height: 3.4rem;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        word-wrap: break-wrod;
    }

    .product-list .product .price {
        font-weight: 500;
    }
    .product-list .product .price span {
        margin-right: 0.5rem;
    }
    .product-list .product .price b {
        font-size: 1.6rem;
    }
}

.product-detail {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    padding-top: 9rem;
    row-gap: 0;
}
.product-detail .image {
    flex-grow: 1;
    flex-basis: 40rem;
}
.product-detail .product-info {
    border: 1px solid #dfdfdf;
    width: 56rem;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    position: sticky;
    top: 8.5rem;
    height: min-content;
}
.product-detail .product-info .title {
    gap: 2rem;
    display: flex;
    align-items: flex-start;
}
.product-detail .product-info .title h3 {
    line-height: 140%;
}
.product-detail .product-info .title a {
    display: flex;
    height: 3.4rem;
    align-items: center;
}
.product-detail .product-info .buy-info {
    margin-top: 2rem;
    font-size: 1.4rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.product-detail .product-info .buy-info li {
    display: flex;
    gap: 2rem;
}
.product-detail .product-info .buy-info li b {
    width: 5.2rem;
}
.product-detail .product-info .price {
    margin-top: 2rem;
    text-align: right;
    font-weight: 500;
    margin-bottom: 2rem;
}
.product-detail .product-info .price b {
    font-size: 2.4rem;
}
.product-detail .product-info .buy-btn {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    /*margin-top: auto;*/
}
.product-detail .product-info .buy-btn .btn {
    flex-grow: 1;
    min-width: auto;
}
.product-contents {
    display: flex;
    flex-direction: column;
    padding-right: 58rem;
    margin-top: 4rem;
    width: 100%;
}
.repple-slider {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.repple-slider .repSwiper {
    width: 100%;
}
.repple-slider .swiper-slide {
    width: 40rem;
    border: 1px solid #dfdfdf;
    border-radius: 1rem;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}
.slider-head {
    position: relative;
    align-items: center;
    justify-content: center;
    display: flex;
    gap: 1rem;
    font-weight: 500;
}
.slider-head > * {
    position: static;
    margin: 0;
}
.repple-slider .swiper-slide dl {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.repple-slider .swiper-slide dl dt {
    font-size: 1.4rem;
}
.repple-slider .swiper-slide dl dd {
    font-size: 1.2rem;
    color: var(--color-gray);
}
.repple-slider .swiper-slide .text {
    font-size: 1.4rem;
}
.repple-slider .swiper-slide .text p {
    line-height: 140%;
}
.repple-slider .swiper-slide .text p:first-of-type {
    height: 6rem;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    word-wrap: break-wrod;
}
.repple-slider .swiper-slide .text a {
    text-decoration: underline;
}
.product-tab-slider {
    margin-top: 4rem;
    position: sticky;
    top: 0;
    background-color: #fff;
}
.tabSwiper {
    border-bottom: 1px solid #dfdfdf;
    font-size: 1.6rem;
}
.tabSwiper a {
    display: flex;
    width: 16.4rem;
    justify-content: center;
    align-items: center;
    height: 7rem;
    border-bottom: 2px solid #fff;
    color: #999999;
}
.tabSwiper a.active {
    border-bottom: 2px solid var(--color-blue);
    color: var(--color-black);
    font-weight: 500;
}
.product-con {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    padding-top: 5rem;
}
.product-con .con-header {
    border-bottom: 2px solid var(--color-blue);
    padding: 0 2rem;
    height: 7rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.product-con .con-header ul {
    display: flex;
    font-size: 1.4rem;
}
.product-con .con-header ul button {
    color: #999;
}
.product-con .con-header ul li {
    display: flex;
    align-items: center;
}
.product-con .con-header ul li::after {
    content: "";
    width: 1px;
    height: 1.6rem;
    background-color: #dfdfdf;
    margin: 0 2rem;
    display: flex;
}
.product-con .con-header ul li:last-of-type:after {
    display: none;
}
.product-con .con-header ul button.active {
    color: var(--color-black);
}
.product-con .con-text {
    font-size: 1.6rem;
    line-height: 140%;
}
/* 2024-10-21 */
.product-con .con-text img {
    max-width: 100%;
}

.replist {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.replist dl {
    font-size: 1.6rem;
}
.replist .rep {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    border: 1px solid var(--color-light-gray);
    padding: 2rem;
    font-size: 1.4rem;
}
.replist ul {
    color: var(--color-gray);
}
.product-type {
    display: flex;
    flex-direction: column;
    margin: 2rem 0;
    gap: 1rem;
}
.product-type button {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border: 1px solid var(--color-light-gray);
    border-radius: 1rem;
    padding: 2rem;
}
.product-type button.active {
    border: 2px solid var(--color-blue);
}
.product-type button dl {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}
.product-type button dl dd {
    font-size: 1.4rem;
}
.product-type button p {
    margin: 0 !important;
    font-weight: 300;
}
@media all and (max-width: 1035px) {
    .product-detail .product-info{width: 100%; position: relative; top: 2.5rem;}
    .product-contents{padding-right: 0;}
    .product-detail .product-info .buy-btn {
        margin-top: 2rem;
        display: flex;
        gap: 1rem;
        margin-top: auto;
        position: fixed;
        bottom: 2rem;
        width: 100%;
        z-index: 30;
        left: 0;
        padding: 0 2rem;
    }

}

@media all and (max-width: 900px) {
    .product-detail {
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
        gap: 2rem;
        padding-top: 0rem;
        row-gap: 0;
    }
    .product-detail .image {
        flex-grow: 1;
        width: 100%;
    }
    .product-detail .product-info {
        border: 0;
        width: 100%;
        padding: 2rem 0;
        display: flex;
        flex-direction: column;
        position: static;
    }
    .product-detail .product-info .title {
        gap: 2rem;
        display: flex;
        align-items: flex-start;
    }
    .product-detail .product-info .title h3 {
        line-height: 140%;
    }
    .product-detail .product-info .title a {
        display: flex;
        height: 3.4rem;
        align-items: center;
    }
    .product-detail .product-info .buy-info {
        margin-top: 2rem;
        font-size: 1.4rem;
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    .product-detail .product-info .buy-info li {
        display: flex;
        gap: 2rem;
    }
    .product-detail .product-info .buy-info li b {
        width: 5.2rem;
    }
    .product-detail .product-info .price {
        margin-top: 2rem;
        text-align: right;
        font-weight: 500;
        margin-bottom: 2rem;
    }
    .product-detail .product-info .price b {
        font-size: 2.4rem;
    }
    .product-detail .product-info .buy-btn {
        margin-top: 2rem;
        display: flex;
        gap: 1rem;
        margin-top: auto;
        position: fixed;
        bottom: 2rem;
        width: 100%;
        z-index: 30;
        left: 0;
        padding: 0 2rem;
    }
    .product-detail .product-info .buy-btn .btn {
        flex-grow: 1;
        min-width: auto;
    }
    .product-contents {
        padding-right: 0rem;
        margin-top: 0rem;
    }
    .repple-slider {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }
    .repple-slider .repSwiper {
        width: 100%;
    }
    .repple-slider .swiper-slide {
        width: 40rem;
        border: 1px solid #dfdfdf;
        border-radius: 1rem;
        padding: 2.5rem;
        display: flex;
        flex-direction: column;
        gap: 0.8rem;
    }
    .slider-head {
        position: relative;
        align-items: center;
        justify-content: center;
        display: flex;
        gap: 1rem;
        font-weight: 500;
    }
    .slider-head > * {
        position: static;
        margin: 0;
    }
    .repple-slider .swiper-slide dl {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .repple-slider .swiper-slide dl dt {
        font-size: 1.4rem;
    }
    .repple-slider .swiper-slide dl dd {
        font-size: 1.2rem;
        color: var(--color-gray);
    }
    .repple-slider .swiper-slide .text {
        font-size: 1.4rem;
    }
    .repple-slider .swiper-slide .text p {
        line-height: 140%;
    }
    .repple-slider .swiper-slide .text p:first-of-type {
        height: 6rem;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        word-wrap: break-wrod;
    }
    .repple-slider .swiper-slide .text a {
        text-decoration: underline;
    }
    .product-tab-slider {
        margin-top: 4rem;
        position: sticky;
        top: 0;
        background-color: #fff;
    }
    .tabSwiper {
        font-size: 1.4rem;
    }
    .tabSwiper a {
        display: flex;
        width: 10rem;
        height: 5rem;
    }
    .tabSwiper a.active {
        border-bottom: 2px solid var(--color-blue);
        color: var(--color-black);
        font-weight: 500;
    }
    .product-con {
        display: flex;
        flex-direction: column;
        gap: 4rem;
    }
    .product-con .con-header {
        border-bottom: 2px solid var(--color-blue);
        padding: 0 2rem;
        height: 7rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .product-con .con-header ul {
        display: flex;
        font-size: 1.4rem;
    }
    .product-con .con-header ul button {
        color: #999;
    }
    .product-con .con-header ul li {
        display: flex;
        align-items: center;
    }
    .product-con .con-header ul li::after {
        content: "";
        width: 1px;
        height: 1.6rem;
        background-color: #dfdfdf;
        margin: 0 2rem;
        display: flex;
    }
    .product-con .con-header ul li:last-of-type:after {
        display: none;
    }
    .product-con .con-header ul button.active {
        color: var(--color-black);
    }
    .product-con .con-text {
        font-size: 1.4rem;
        line-height: 140%;
    }
    .replist {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    .replist dl {
        font-size: 1.6rem;
    }
    .replist .rep {
        display: flex;
        flex-direction: column;
        gap: 1.2rem;
        border: 1px solid var(--color-light-gray);
        padding: 2rem;
        font-size: 1.4rem;
    }
    .replist ul {
        color: var(--color-gray);
    }
    .product-type {
        display: flex;
        flex-direction: column;
        margin: 2rem 0;
        gap: 1rem;
    }
    .product-type button {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        border: 1px solid var(--color-light-gray);
        border-radius: 1rem;
        padding: 2rem;
    }
    .product-type button.active {
        border: 2px solid var(--color-blue);
    }
    .product-type button dl {
        text-align: left;
        display: flex;
        flex-direction: column;
        gap: 0.4rem;
    }
    .product-type button dl dd {
        font-size: 1.4rem;
    }
    .product-type button p {
        margin: 0 !important;
        font-weight: 300;
    }
}

.my-page-tab {
    border-bottom: 1px solid var(--color-light-gray);
}
.my-page-tab h2 {
    display: none;
}
.my-page-tab ul {
    display: flex;
    justify-content: center;
}
.my-page-tab ul li {
    width: 15rem;
}
.my-page-tab ul li a {
    height: 7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--color-gray);
}
.my-page-tab ul li.active a {
    color: var(--color-black);
    font-weight: 500;
    border-bottom: 2px solid var(--color-blue);
}

.order-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}
.order-list .order-product {
    border: 1px solid var(--color-light-gray);
    border-radius: 1rem;
    padding: 2.5rem;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}
.order-list .order-product .image {
    width: 15rem;
    flex: none;
}
.order-list .order-product .order-detail {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.order-list .order-product ul {
    font-size: 1.4rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.order-list .order-product ul li {
    display: flex;
    gap: 1rem;
    white-space: nowrap;
    overflow: hidden;
    word-break: break-all;
    text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
}
.order-list .order-product ul li b {
    width: 6rem;
    color: var(--color-gray);
    font-weight: 400;
}
.order-list .order-product .order-menu {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.mypage-con {
    display: flex;
    flex-direction: column;
    padding-top: 5rem;
}
@media all and (max-width: 900px) {
    .mypage-con {
        padding-top: 3rem;
    }
    .my-page-tab {
        border-bottom: 0;
        margin-top: 1rem;
        padding-left: 2rem;
        padding-right: 2rem;
        position: relative;
        z-index: 10;
    }
    .my-page-tab h2 {
        display: flex;
        justify-content: space-between;
        border-bottom: 1px solid var(--color-blue);
        height: 6rem;
        align-items: center;
        font-size: 1.6rem;
        padding: 0 1rem;
    }
    .my-page-tab h2 img {
        transition: all 0.2s ease;
    }
    .my-page-tab.active h2 img {
        transform: rotateZ(180deg);
    }
    .my-page-tab ul {
        flex-direction: column;
        padding: 1rem 0;
        border: 1px solid var(--color-light-gray);
        position: absolute;
        left: 2rem;
        right: 2rem;
        top: 6rem;
        background-color: #fff;
        box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25),
            0 10px 10px rgba(0, 0, 0, 0.22);
        overflow: hidden;
        display: none;
    }
    .my-page-tab ul li {
        width: 100%;
    }
    .my-page-tab ul li a {
        height: 4rem;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        font-size: 1.4rem;
        color: var(--color-gray);
        padding: 0 1rem;
    }
    .my-page-tab ul li.active a {
        color: var(--color-black);
        font-weight: 500;
        border-bottom: 0;
    }

    .order-list {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .order-list .order-product {
        padding: 1.5rem;
        gap: 2rem;
        flex-direction: column;
    }
    .order-list .order-product .image {
        width: 100%;
        flex: none;
    }
    .order-list .order-product .order-detail {
        gap: 1.5rem;
    }
    .order-list .order-product ul {
        font-size: 1.4rem;
        display: flex;
        flex-direction: column;
        gap: 0.6rem;
    }
    .order-list .order-product ul li {
        display: flex;
        gap: 1rem;
        white-space: wrap;
    }
    .order-list .order-product ul li b {
        flex: none;
    }
}

.score-list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 2rem;
}
.score-list .score-block {
    border: 1px solid var(--color-light-gray);
    border-radius: 1rem;
    padding: 2.5rem;
    font-size: 1.4rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}
.score-list .score-block dl {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.no-contents {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 10rem;
    gap: 1rem;
    text-align: center;
}
.no-contents dt {
    font-size: 2.6rem;
    font-weight: 600;
}
.no-contents dd {
    font-size: 2rem;
}
@media all and (max-width: 900px) {
    .score-list {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .score-list .score-block {
        padding: 1.5rem;
        gap: 0.4rem;
    }
    .no-contents {
        padding-top: 3rem;
    }
    .no-contents dt {
        font-size: 2.2rem;
    }
    .no-contents dd {
        font-size: 1.8rem;
    }
}

.table-qna colgroup col:nth-child(1) {
    width: 20rem;
}
.table-qna colgroup col:nth-child(2) {
}
.table-qna colgroup col:nth-child(3) {
    width: 20rem;
}

.seller-join {
    margin-top: 5rem;
    background-color: #f4f6fa;
    padding: 5rem;
}
.seller-join dl {
    gap: 1rem;
    display: flex;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.seller-join dt {
    font-size: 2.6rem;
    font-weight: 600;
}
.seller-join dd {
    font-size: 2rem;
}
.seller-join dd ul {
    text-align: left;
}
@media all and (max-width: 900px) {
    .seller-join {
        padding: 3rem 2rem;
    }
    .seller-join dt {
        font-size: 2.2rem;
    }
    .seller-join dd {
        font-size: 1.8rem;
    }
}

.join-caution {
    display: flex;
    flex-direction: column;
    background-color: #f4f6fa;
    padding: 2rem;
    font-size: 1.4rem;
}
.bulit {
    display: flex;
    align-items: center;
    position: relative;
}
.bulit::before {
    content: "";
    display: flex;
    width: 0.4rem;
    height: 0.4rem;
    background-color: #353535;
    border-radius: 50%;
    margin-right: 0.8rem;
    flex: none;
}

@media all and (max-width: 900px) {
    .bulit {
        align-items: flex-start;
    }
    .bulit::before {
        margin-top: 1rem;
    }
}

.table-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 5rem;
}
.table-header h3 {
    font-size: 2rem;
    display: flex;
    gap: 1rem;
    align-items: center;
}
.table-header h3 span {
    font-size: 1.4rem;
    color: var(--color-gray);
    font-weight: 400;
}

.scroll-table {
    width: 100%;
    overflow-x: auto;
    border: 1px solid #dfdfdf;
}
.table-mypage {
    width: 139.8rem;
}
.table-mypage.sell colgroup col:nth-child(1) {
    width: 50rem;
}
.table-mypage.sell colgroup col:nth-child(2) {
    width: 20rem;
}
.table-mypage.sell colgroup col:nth-child(3) {
    width: 24rem;
}
.table-mypage.sell colgroup col:nth-child(4) {
    width: 18rem;
}
.table-mypage.sell colgroup col:nth-child(5) {
    width: 28rem;
}
.table-mypage thead th {
    text-align: center;
    background-color: #f4f6fa;
    height: 6rem;
    border-left: 1px solid #dfdfdf;
    border-bottom: 1px solid #dfdfdf;
}
.table-mypage thead th:first-of-type {
    border-left: 0;
}
.table-mypage tbody th {
    border-left: 1px solid #dfdfdf;
    padding: 1rem;
    height: 6rem;
    border-bottom: 1px solid #dfdfdf;
    font-size: 1.6rem;
    background-color: #f4f6fa;
}
.table-mypage tbody td {
    border-left: 1px solid #dfdfdf;
    padding: 1rem;
    height: 6rem;
    border-bottom: 1px solid #dfdfdf;
    font-size: 1.6rem;
}
.table-mypage tbody th:first-of-type {
    border-left: 0;
    border-right: 1px solid var(--color-light-gray);
}
.table-mypage tbody td:first-of-type {
    border-left: 0;
}
.table-mypage tbody tr:last-of-type th {
    border-bottom: 0;
}
.table-mypage tbody tr:last-of-type td {
    border-bottom: 0;
}
.table-mypage.sell tbody td:nth-child(1) {
}
.table-mypage.sell tbody td:nth-child(2) {
    text-align: right;
}
.table-mypage.sell tbody td:nth-child(3) {
    text-align: right;
}
.table-mypage.sell tbody td:nth-child(4) {
    text-align: right;
}
.table-mypage.sell tbody td:nth-child(5) {
    text-align: center;
}

.date-select {
    display: flex;
    justify-content: flex-end;
    gap: 2rem;
    align-items: center;
}
.date-select .date {
    display: flex;
    gap: 1rem;
    align-items: center;
}
.date-select ul {
    display: flex;
    border: 1px solid var(--color-light-gray);
    border-radius: 0.4rem;
    overflow: hidden;
    background-color: var(--color-light-gray);
    gap: 1px;
}
.date-select ul li button {
    display: flex;
    height: 4.8rem;
    align-items: center;
    font-weight: 300;
    background-color: #fff;
    width: 8rem;
    justify-content: center;
}
.date-select ul li button.active {
    color: #fff;
    background-color: var(--color-blue);
}
.datepicker {
    width: 18rem;
}
@media all and (max-width: 900px) {
    .table-header {
        margin-top: 3rem;
        align-items: flex-end;
    }
    .table-header h3 {
        font-size: 1.8rem;
        gap: 0.6rem;
    }
    .table-header h3 span {
        font-size: 1.4rem;
    }
    .table-mypage.sell {
        width: 85rem;
    }
    .table-mypage.sell colgroup col:nth-child(1) {
        width: 22rem;
    }
    .table-mypage.sell colgroup col:nth-child(2) {
        width: 15rem;
    }
    .table-mypage.sell colgroup col:nth-child(3) {
        width: 15rem;
    }
    .table-mypage.sell colgroup col:nth-child(4) {
        width: 15rem;
    }
    .table-mypage.sell colgroup col:nth-child(5) {
        width: 18rem;
    }

    .date-select {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }
    .date-select .date {
        display: flex;
        gap: 1rem;
        align-items: center;
        flex-grow: 1;
        width: 100%;
    }
    .date-select ul {
        width: 100%;
    }
    .date-select ul li {
        flex-grow: 1;
    }
    .date-select ul li button {
        flex-grow: 1;
        width: 100%;
    }
}

.table-mypage.money col:nth-child(1) {
    width: 20rem;
}
.table-mypage.money col:nth-child(2) {
    width: 14rem;
}
.table-mypage.money col:nth-child(3) {
    width: 24rem;
}
.table-mypage.money col:nth-child(4) {
    width: 18rem;
}
.table-mypage.money col:nth-child(5) {
    width: 18rem;
}
.table-mypage.money col:nth-child(6) {
    width: 18rem;
}
.table-mypage.money col:nth-child(7) {
    width: 28rem;
}
.table-mypage.money tbody td {
    text-align: center;
}

.form-line.date-select {
    justify-content: flex-start;
}

.search-result-block {
    display: flex;
    flex-direction: column;
    padding-top: 5rem;
}
.result-head {
}
.result-head dt {
    font-size: var(--fs-20);
}
.result-head dt span {
    font-size: var(--fs-14);
    color: var(--color-gray);
    margin-left: 1rem;
}
.result-head dd {
    color: var(--color-gray);
    font-size: var(--fs-14);
    margin-top: 0.6rem;
}

.table-mypage.review col:nth-child(1) {
    width: 6rem;
}
.table-mypage.review col:nth-child(2) {
    width: 15rem;
}
.table-mypage.review col:nth-child(3) {
    width: 26rem;
}
.table-mypage.review col:nth-child(4) {
    width: 14rem;
}
.table-mypage.review col:nth-child(5) {
    width: 8rem;
}
.table-mypage.review col:nth-child(6) {
    width: 40rem;
}
.table-mypage.review col:nth-child(7) {
    width: 12rem;
}
.table-mypage.review col:nth-child(8) {
    width: 9.5rem;
}
.table-mypage.review col:nth-child(9) {
    width: 9.5rem;
}
.table-mypage.review tbody td {
    text-align: center;
    height: auto;
    padding: 1rem;
}
.table-mypage.review tbody td:nth-child(3),
.table-mypage.review tbody td:nth-child(6) {
    text-align: left;
}
.tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 5rem;
    font-size: 1.2rem;
    padding: 0 1.6rem;
    height: 2.2rem;
    line-height: 100%;
}
.tag.tag-blue {
    background-color: var(--color-blue);
    color: #fff;
}
.tag.tag-red {
    background-color: #e80202;
    color: #fff;
}

.company-text {
    margin-top: 2rem;
    padding: 2rem 1.4rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    font-size: 1.4rem;
    background: #f4f6fa;
}
.company-text li a {
    text-decoration: underline;
}
.table-mypage.company col:nth-child(1) {
    width: 24rem;
}
.table-mypage.company col:nth-child(2) {
    width: 42rem;
}
.table-mypage.company col:nth-child(3) {
    width: 24rem;
}
.table-mypage.company col:nth-child(4) {
    width: 42rem;
}
.table-mypage.company th {
    text-align: center;
}
.table-mypage.company td {
    text-align: left;
    padding-left: 2rem;
    padding-right: 2rem;
}

.modal-table {
    border: 1px solid var(--color-light-gray);
}
.modal-table th {
    border-bottom: 1px solid var(--color-light-gray);
    background-color: #f5f5f5;
    border-right: 1px solid var(--color-light-gray);
    padding: 1rem 1.4rem;
    text-align: center;
}
.modal-table td {
    border-bottom: 1px solid var(--color-light-gray);
    padding: 1rem;
}
.modal-table tr:last-of-type th,
.modal-table tr:last-of-type td {
    border-bottom: 0;
}
.modal-table colgroup col:nth-child(1) {
    width: 8rem;
}
.contents-raw {
    display: flex;
    flex-direction: column;
    font-size: var(--fs-16);
    gap: 2rem;
}
.contents-raw * {
}

.btn-line-popup {
    display: flex;
    justify-content: space-between;
    flex-grow: 1;
}
.btn-line-popup p {
    display: flex;
    gap: 1rem;
}
.review-block {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.review-block dl {
    display: flex;
    align-items: flex-start;
}
.review-block dl.colum {
    flex-direction: column;
    gap: 0rem;
}
.review-block dl dt {
    font-size: 1.8rem;
    width: 15rem;
    flex: none;
    min-height: 4.5rem;
    align-items: center;
    display: flex;
}
.review-block dl dd {
    font-size: 1.6rem;
    min-height: 4.5rem;
    flex-grow: 1;
    align-items: center;
    display: flex;
    width: 100%;
}
.review-block dl dd textarea {
    height: 16rem;
}
@media all and (max-width: 900px) {
    .btn-line-popup {
        flex-direction: column;
        gap: 1rem;
    }
    .review-block {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }
    .review-block dl {
        flex-direction: column;
    }
    .review-block dl.colum {
        flex-direction: column;
    }
    .review-block dl dt {
        width: auto;
        flex: none;
        align-items: center;
        height: 4.5rem !important;
    }
    .review-block dl dd {
        font-size: 1.6rem;
        min-height: auto;
        flex-grow: 1;
        align-items: center;
        display: flex;
        width: 100%;
    }
    .review-block dl dd textarea {
        height: 16rem;
    }
}

.modal-dialog.modal-video {
    padding: 0;
    width: 100vw;
    height: 100vh;
    max-width: none;
}
.modal-dialog.modal-video .modal-content {
    width: 100vw;
    height: 100vh;
    background: none;
    padding: 0;
}
.modal-dialog.modal-video .modal-header {
    background-color: #353535;
    color: #fff;
    height: 10rem;
    display: flex;
    flex-direction: row;
    padding: 0 5rem;
    font-size: 2rem;
}
.modal-dialog.modal-video .modal-header h1 {
    margin-right: auto;
}
.modal-dialog.modal-video .modal-header .btn-close {
    position: static;
    margin-left: auto;
    background: url(../images/ico-pop-close-w.svg);
    width: 2rem;
    height: 2rem;
}
.modal-dialog.modal-video .modal-body {
    flex-grow: 1;
    padding: 1rem;
    align-items: center;
    justify-content: center;
    display: flex;
    background: #000;
}
.modal-dialog.modal-video .video-player {
    max-width: 100rem;
    max-height: 54rem;
    display: flex;
}

.modal-login{
    max-width: 570px;
}
.modal-login #send-auth-num{
    min-width: fit-content;
    height: 5rem;
}

@media all and (max-width: 900px) {
    .modal-dialog.modal-video .modal-header {
        height: auto;
        flex-direction: column;
        padding: 2rem;
        font-size: 2rem;
        align-items: flex-start;
        font-size: 1.6rem;
        gap: 1rem;
        padding-right: 6rem;
        text-align: left;
    }
    .modal-dialog.modal-video .modal-header h1 img {
        width: 8rem;
    }
    .modal-dialog.modal-video .modal-header h1 {
        margin-right: auto;
    }
    .modal-dialog.modal-video .modal-header .btn-close {
        position: absolute;
        top: 2rem;
        right: 2rem;
    }
    .modal-dialog.modal-video .modal-content {
        padding-bottom: 12rem;
    }
}

.modal-dialog.modal-preview {
    padding: 0;
    width: 100vw;
    height: 100vh;
    max-width: none;
}
.modal-dialog.modal-preview .modal-content {
    width: 100vw;
    height: 100vh;
    background: none;
    padding: 0;
}
.modal-dialog.modal-preview .modal-header {
    color: #fff;
    height: 10rem;
    display: flex;
    flex-direction: row;
    padding: 0 5rem;
    font-size: 2rem;
}
.modal-dialog.modal-preview .modal-header h1 {
    margin-right: auto;
}
.modal-dialog.modal-preview .modal-header .btn-close {
    position: static;
    margin-left: auto;
    background: url(../images/ico-pop-close-w.svg);
    width: 2rem;
    height: 2rem;
}
.modal-dialog.modal-preview .modal-body {
    flex-grow: 1;
    padding: 1rem;
    align-items: center;
    justify-content: center;
    display: flex;
}

.preview-slider {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    max-width: 140rem;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}
.preview-slider .swiper-slide {
    text-align: center;
}
.preview-slider .swiper-slide img {
    max-width: 100%;
}

@media all and (max-width: 900px) {
    .preview-slider {
        padding-left: 4rem;
        padding-right: 4rem;
    }
    .preview-slider .swiper-button-prev {
        left: 0;
    }
    .preview-slider .swiper-button-next {
        right: 0;
    }
    .preview-slider .swiper-button-prev,
    .preview-slider .swiper-button-next {
        width: 3rem;
        height: 3rem;
    }
    .preview-slider .swiper-button-prev img,
    .preview-slider .swiper-button-next img {
        width: 3rem;
    }
    .modal-dialog.modal-preview .modal-header {
        height: auto;
        flex-direction: column;
        padding: 2rem;
        font-size: 1.6rem;
        align-items: flex-start;
        font-size: 1.6rem;
        gap: 1rem;
        padding-right: 6rem;
        text-align: left;
        position: relative;
    }
    .modal-dialog.modal-preview .modal-header h1 {
        display: none;
    }
    .modal-dialog.modal-preview .modal-header .btn-close {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        right: 2rem;
    }
    .modal-dialog.modal-preview .modal-content {
    }
}

.policy-block {
    padding: 4rem 0;
}

.about-wrap {
    font-family: "Nanum Myeongjo", serif;
    font-weight: 700;
    font-style: normal;
    position: relative;
    padding-top: 2.5rem;
}
.about-wrap .about-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    padding-top: 9.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    pointer-events: none;
    z-index: -1;
}
.about-wrap .about-bg img:nth-child(2) {
    margin-top: 4rem;
}
.about-wrap .line {
    display: flex;
    width: 1px;
    height: 20rem;
    background-color: #cacaca;
    margin-top: 5rem;
    margin-left: auto;
    margin-right: auto;
}
.about-slogan {
    display: flex;
    align-items: flex-end;
    gap: 2.5rem;
}
.about-slogan dt {
    font-size: 5rem;
}
.about-slogan dt b {
    font-size: 7rem;
}
.about-slogan dd {
    font-size: 3rem;
}
.about-slogan.right {
    text-align: right;
    justify-content: flex-end;
    margin-top: -4rem;
}
.about-wrap .title {
    margin-top: 5.5rem;
    text-align: center;
}
.about-wrap .title dt {
    margin-bottom: 2rem;
}
.about-wrap .title dd {
    font-size: 3rem;
}
.about-wrap .title dd.image {
    margin-top: 4rem;
}
.about-wrap .title dd.text {
    font-size: 2.4rem;
    margin-top: 2rem;
    line-height: 180%;
}
.about-wrap .title dd.text span {
    font-size: 3rem;
}
.about-con {
    margin-top: 10rem;
    display: flex;
    gap: 2rem;
}
.about-con.about-con-right {
    flex-direction: row-reverse;
    text-align: right;
}
.about-con dl {
    flex: none;
}
.about-con dl dt {
    font-size: 3.4rem;
    margin-bottom: 5rem;
}
.about-con dl dd {
    font-size: 2.4rem;
    line-height: 200%;
}
@media all and (max-width: 900px) {
    .about-wrap {
        padding-top: 3rem;
    }
    .about-wrap .about-bg {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        padding-top: 19.5rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        pointer-events: none;
        z-index: -1;
    }
    .about-wrap .about-bg img {
        width: 50%;
    }
    .about-wrap .about-bg img:nth-child(1) {
        margin-left: auto;
    }
    .about-wrap .about-bg img:nth-child(2) {
        margin-top: 6rem;
        margin-right: auto;
    }
    .about-wrap .line {
        display: flex;
        width: 1px;
        height: 10rem;
        background-color: #cacaca;
        margin-top: 3rem;
        margin-left: auto;
        margin-right: auto;
    }
    .about-slogan {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }
    .about-slogan img {
        width: 6rem;
    }
    .about-slogan dt {
        font-size: 3rem;
    }
    .about-slogan dt b {
        font-size: 5rem;
    }
    .about-slogan dd {
        font-size: 1.6rem;
    }
    .about-slogan.right {
        text-align: right;
        justify-content: flex-end;
        margin-top: 2rem;
        align-items: flex-end;
    }
    .about-wrap .title {
        margin-top: 3rem;
        text-align: center;
    }

    .about-wrap .title dt img {
        height: 4.6rem;
    }
    .about-wrap .title dt {
        margin-bottom: 2rem;
    }
    .about-wrap .title dd {
        font-size: 2rem;
    }
    .about-wrap .title dd.image {
        margin-top: 3rem;
    }
    .about-wrap .title dd.text {
        font-size: 1.8rem;
        margin-top: 2rem;
        line-height: 180%;
    }
    .about-wrap .title dd.text span {
        font-size: 2rem;
    }
    .about-con {
        margin-top: 5rem;
        display: flex;
        gap: 3rem;
        flex-direction: column;
    }
    .about-con.about-con-right {
        flex-direction: column;
        text-align: right;
    }
    .about-con dl {
        flex: none;
    }
    .about-con dl dt {
        font-size: 2.4rem;
        margin-bottom: 1rem;
    }
    .about-con dl dd {
        font-size: 1.8rem;
        line-height: 200%;
    }
}
/* 2024-10-17 최미래 추가 */
.file-block div {
    width: 100%;
}
.file-block div input:not(:first-child) {
    margin-top: 10px;
}
.search-block {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}
ul.tag-list label span {
    display: inline-flex;
    border: 1px solid #dfdfdf;
    border-radius: 2rem;
    padding: 0 2rem;
    height: 3.4rem;
    align-items: center;
}
ul.tag-list input[type="radio"] {
    display: none;
}
ul.tag-list input[type="radio"]:checked + span {
    box-shadow: 0 0 0 1px #111;
}

.wrap-loading {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1000;
    opacity: 0.5;
    background-color: #333;
}
.wrap-loading div {
    position: relative;
    top: calc(50% - 40px);
    left: calc(50% - 40px);
}

.file-box {
    position: relative;
}
.file-box:not(:first-child) {
    margin-top: 10px;
}
.file-delete-btn {
    position: absolute;
    right: 10px;
    top: calc(50% - 11px);
    transform: rotate(45deg);
    cursor: pointer;
}

/* 2024-10-22 */
.bbs-file-box {
    border: 1px solid #dfdfdf;
    padding: 10px 20px 10px 20px;
    border-radius: 4px;
    margin-bottom: 20px;
}
.bbs-file-box > div.bbs-file {
    margin: 2px 0;
    line-height: 20px;
}
.bbs-file-box > div.bbs-file img {
    margin-right: 6px;
}
.tag-list li.active a {
    border-color: #333;
}
#modal-bestrv .modal-content .bestrv-box {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}
#modal-bestrv .modal-content dl {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#modal-bestrv .modal-content dt {
    font-size: 1.4rem;
}
#modal-bestrv .modal-content dd {
    font-size: 1.2rem;
    color: var(--color-gray);
}
#modal-bestrv .modal-content .text {
    font-size: 1.4rem;
}
#modal-bestrv .modal-content {
    position: relative;
}
#modal-bestrv .modal-content .modal-swiper-btn .btn {
    margin-top: -30px;
    position: absolute;
    top: 50%;
    z-index: 10;
}
#modal-bestrv .modal-content .modal-swiper-btn .btn-prev {
    left: -70px;
}
#modal-bestrv .modal-content .modal-swiper-btn .btn-next {
    right: -70px;
}

@media (max-width: 992px) {
    #modal-bestrv > .modal-dialog{ margin-left:30px; margin-right:30px}
}

.video-wrap video {
    max-width: 100%;
    max-height: 80vh;
    background-color: rgba(81, 81, 81, 0.5);
}

/* 반응형 디자인 */
@media (max-width: 768px) {
    .video-wrap video {
        width: 100%;
        height: auto;
    }
}

.modal-dialog.lg-modal {
    width: 60rem;
    max-width: 60rem;
}
.modal-dialog.lg-modal .btn-lg {
    min-width: 26rem;
}

/*  2024-11-26 최미래 */
#popup-body{ position:relative; max-width:480px; height:100%;  }
#popup-body > div.btn-box{ position:absolute; width:100%;  height:9.5%;  bottom:0; display:flex; justify-content: space-between; }
#popup-body > img{ width:100%; }
#popup-body > div.btn-box button{ width:45%; height:100%; }
