@charset "utf-8";

#buying .mvarea{
    background: url(/html/user_data/assets/img/buying/selling-watch-pc.webp) no-repeat center;
    background-size: cover;
}
.buying__box {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.buying__box img{
    width: 40%;
}
.buying__box .buying__list {
    width: calc(60% - 35px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
}
.buying__box .buying__list li{
    padding-left: 1em;
    text-indent: -1.2em;
}
.buying__box .buying__list li::before{
    content: "・";
    color: #666;
}

.buying__flow {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    margin-bottom: 50px;
    gap: 50px 30px;
}
.buying__flowContent {
    text-align: center;
    display: flex;
    align-items: center;
    flex-direction: column;
    position: relative;
}
.buying__flowContent span {
    font-family: var(--fonts-title);
    letter-spacing: 0.05em;
    color: var(--color-mainColor);
    font-weight: 600;
    margin-top: 20px;
}
.buying__flowContent p{
    font-weight: 600;
}
.buying__flowContent:not(:last-child)::after{
    content: "";
    background: url(/html/user_data/assets/img/buying/selling-steps-arrow.svg) no-repeat;
    background-size: contain;
    display: inline-block;
    width: 32px;
    height: 30px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}
.buying__flowContent.no-arrow::after{
    display: none;
}

.buying__flowLastContent {
    border: 1px solid #666;
    padding: 10px;
    border-radius: 10px;
}
.buying__iconBox {
    display: flex;
    align-items: center;
    gap: 30px;
    justify-content: center;
    margin: 20px 0;
}
.more-bt {
    margin-bottom: 70px;
}
.buying__iconBox img{
        max-width: 40px;
}

.buying.sec03{
    background: #dedede;
    padding: 70px calc(50vw - 50%);
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}
.buying__text{
    margin: 50px 0;
}
.buying__text h3{
    text-align: left;
}

.buying__nav {
    background: var(--color-mainColor);
    color: var(--color-white);
    position: fixed;
    bottom: auto;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    writing-mode: vertical-rl;
    border-radius: 10px 0 0 10px;
    z-index: 10;
    width: auto;
    white-space: nowrap;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    z-index: 9999;
}
.buying__nav ul{
    display: flex;
}
.buying__nav ul li{
    position: relative;
    padding: 16px 20px;
    display: flex;
    align-items: center;
}
.buying__nav ul li:not(:last-child)::after{
    content: "";
    display: block;
    width: 60%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.50);
    position: absolute;
    top: 100%;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
}
.buying__nav01::before,
.buying__nav02::before,
.buying__nav03::before{
    content: "";
    margin-bottom: 7px;
    margin-left: 3px;
    width: 18px;
    height: 18px;
    display: inline-block;
}
.buying__nav01::before{
    background: url(/html/user_data/assets/img/buying/delivery-icon.svg) no-repeat;
    background-size: contain;
}
.buying__nav02::before{
    background: url(/html/user_data/assets/img/buying/store-icon.svg) no-repeat;
    background-size: contain;
}
.buying__nav03::before{
    background: url(/html/user_data/assets/img/buying/chat-icon.svg) no-repeat;
    background-size: contain;
}

@media screen and (max-width:1024px){
    .buying__nav{
        top: auto;
        bottom: 0;
        writing-mode: initial;
        width: 100%;
        border-radius: 0;
        transform: none;
    }
    .buying__nav ul{
        justify-content: space-between;
    }
    .buying__nav ul li{
        width: calc(100% / 3);
        text-align: center;
        justify-content: center;
    }
    .buying__nav01::before,
    .buying__nav02::before,
    .buying__nav03::before{
        margin: 0 5px 0 0;
    }
    .buying__nav ul li:not(:last-child)::after{
        width: 1px;
        height: 60%;
        position: absolute;
        right: 0;
        top: 50%;
        left: auto;
        transform: translateY(-50%);
    }
    .buying__flow{
        flex-direction: column;
    }
    .buying__flowContent:not(:last-child)::after{
        display: none;
    }
}
@media screen and (max-width:767px){
    .buying__box{
        flex-direction: column;
        gap: 30px;
    }
    .buying__box img{
        width: 100%;
    }
    .buying__box .buying__list{
        width: 100%;
        gap: 10px;
    }
    .buying__nav ul li{
        flex-direction: column;
    }
    .buying__nav01::before,
    .buying__nav02::before,
    .buying__nav03::before{
        margin: 0;
    }
}