@charset "UTF-8";

/* PC */
.purchase-guide {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border: 2px solid #ebebeb;
    padding: 20px;
    box-sizing: border-box;
}

.guide-title {
    font-size: 1.2rem;
    color: #707070;
    margin-bottom: 20px;
    font-weight: bold;
}

.step {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 10px 0;
    border-bottom: 1px solid #ebebeb;
}

.step:last-child {
    border-bottom: none;
}

.step-number {
    font-size: 1rem;
    font-weight: bold;
    color: #707070;
    width: 80px;
}

.step-description {
    font-size: 1rem;
    color: #707070;
    width: calc(100% - 100px);
    line-height: 1.5;
}

/* 新しいスタイル */
.payment-guide {
    width: 100%;
    max-width: 800px;
    margin: 20px auto;
    border: 2px solid #ebebeb;
    padding: 20px;
    box-sizing: border-box;
}

.section {
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ebebeb;
}

.section:last-child {
    border-bottom: none;
}

.section-title {
    font-size: 1rem;
    color: #707070;
    margin-bottom: 10px;
    font-weight: bold;
}

.section-description {
    font-size: 1rem;
    color: #707070;
    line-height: 1.5;
}

.bank-details {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 1rem;
    color: #707070;
    line-height: 1.5;
}

.bank-details li {
    margin-bottom: 10px;
}

/* 配送・消費税・返品ガイド用の新しいスタイル */
.shipping-guide,
.tax-guide,
.return-guide {
    width: 100%;
    max-width: 800px;
    margin: 20px auto;
    border: 2px solid #ebebeb;
    padding: 20px;
    box-sizing: border-box;
}

.return-guide .return-address {
    margin-top: 20px;
}

/* 既存のスタイルを再利用 */
.section-description {
    font-size: 1rem;
    color: #707070;
    line-height: 1.5;
}


@media screen and (max-width: 1000px) {
    .purchase-guide,
    .payment-guide,
    .shipping-guide,
    .tax-guide,
    .return-guide {
        width: 90%;
        max-width: 100%;
        margin: 20px auto; /* セクション間のスペースを調整 */
        border: 2px solid #ebebeb;
        padding: 15px;
        box-sizing: border-box;
    }

    .guide-title {
        font-size: 1rem;
        color: #707070;
        margin-bottom: 15px;
        font-weight: bold;
    }

    .step {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        padding: 8px 0;
        border-bottom: 1px solid #ebebeb;
    }

    .step:last-child {
        border-bottom: none;
    }

    .step-number {
        font-size: 0.9rem;
        width: 70px;
    }

    .step-description {
        font-size: 0.9rem;
        width: calc(100% - 80px);
        line-height: 1.4;
    }

    .section {
        margin-bottom: 20px; /* セクション間の余白を追加 */
        padding-bottom: 10px;
        border-bottom: 1px solid #ebebeb;
    }

    .section:last-child {
        border-bottom: none;
    }

    .section-title {
        font-size: 0.9rem;
        color: #707070;
        margin-bottom: 8px;
        font-weight: bold;
    }

    .section-description {
        font-size: 0.9rem;
        color: #707070;
        line-height: 1.4;
    }

    .bank-details {
        font-size: 0.9rem;
        line-height: 1.4;
    }

    .bank-details li {
        margin-bottom: 8px;
    }

    .return-guide .return-address {
        margin-top: 15px;
    }
}




@media only screen and (max-width: 480px) {}