@charset "utf-8";
#shopping-loan h1{
    text-align: center;
    color: var(--color-mainColor);
    font-size: clamp(20px, 5vw, 26px);
}
.loan__box {
    display: flex;
    justify-content: center;
    gap: min(5vw, 50px);
}
.loan__content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.reason .loan__content,
.guarantee .loan__content{
    gap: 0;
}
.reason .loan__content p,
.guarantee .loan__content p {
    text-align: center;
}
.reason .loan__content img,
.guarantee .loan__content img{
    height: 60px;
    width: auto;
}
.loan__price{
    display: flex;
    align-items: center;
    width: 100%;
}
.loan__icon {
    background: var(--color-mainColor);
    color: var(--color-white);
    padding: 5px 10px;
    border-radius: 3px;
    margin-right: 10px;
    font-size: 14px;
}
.loan__price p{
    font-size: 14px;
    font-weight: bold;
}
.loan__price p .big{
    font-size: 26px;
    margin-right: 5px;
}


.loan__ul{
    list-style: none;
    margin-bottom: 0;
    margin-top: 10px;
}
.loan__step{
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 20px;
    margin-bottom: 20px;
}
.loan__step__titleBox{
    display: flex;
    width: 30%;
    align-items: center;
}
.loan__step__box{
    margin-right: 30px;
    display: flex;
    flex-direction: column;
    text-align: center;
    color: var(--color-mainColor);
    font-weight: 600;
    font-size: 14px;
    line-height: 1;
}
.loan__step__number{
    font-size: 40px;
}
.loan__step__title {
    text-align: left;
    color: var(--color-mainColor);
    display: flex;
    align-items: center;
    margin: 0;
}
.loan__step__text{
    flex: 1;
}
.loan-image .loan__box{
    justify-content: space-between;
    align-items: center;
}
.loan-image .loan__content{
    width: calc(60% - 30px);
}
.loan-image .loan__content:has(img){
    width: 40%;
}

.guarantee p{
    margin: 0 0 20px 0;
}
.guarantee__box{
    margin: 30px 0;
}
.guarantee__box h3{
    text-align: left;
    margin-bottom: 10px;
}

.guarantee__box  ul{
    margin: 20px 0;
}
.guarantee__box  li::before{
    display: inline-block;
    content: "・";
    color: #666;
}

@media screen and (max-width:767px){
    .loan__box{
        flex-direction: column;
    }
    .loan-image .loan__content:has(img),
    .loan-image .loan__content{
        width: 100%;
    }
    .loan__ul{
        padding: 0;
    }
    .loan__img{
        width: 100%;
        height: 60vw;
    }
    .loan__step{
        flex-direction: column;
        gap: 20px;
    }
    .loan__step__titleBox{
        width: 100%;
    }
}