.claimBg{
    background: var(--color-mint);
    padding: var(--space-50) calc(var(--space-50)*1);
}
.claimContainer{
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    margin:0 auto 5px;
    padding: var(--space-20) var(--space-10);
    font-weight: bold;
    line-height: 1.5;
    background: var(--color-fff);
}
.claimContainer p{
    align-self: flex-start;
    margin-bottom: var(--space-20);
}

.claimContainer button{
    background: var(--color-blue);
    border-radius: 50px;
    padding: var(--space-10) var(--space-20);
    width: 200px;
    border: none;

}
.claimContainer button a{
    color:var(--color-fff);
    font-weight: bold;
    font-size: var(--font-size-base);
}
.addBox{
    width: 100%;
    padding: var(--space-10);
    box-sizing: border-box;
}
.addBox .detailContainer{
    display: flex;
    justify-content: flex-start;
}
.addBox .detailContainer .title{
    width: 15%;
}
.addBox .detailContainer .detail{
    width: 85%;
}
.addBox .tel span{
    margin-right: var(--space-10);
}
.addBox .detailContainer .tel{
    font-size: var(--font-size-2);
    color: var(--color-grey-light);
    font-weight: bold;
    display: flex;
}

.addBox .detailContainer p{
    margin-bottom: 5px;
}

.addBox .detailContainer .img{
    width: 10%;
    min-width: 50px;
}
.addBox .detailContainer .tel img{
    width: 100%;
}
.detail{
    font-weight: 400;
}


    /* ========================================================== */
    /* ==============  2023スマホ     768px   ==================== */
    /* ========================================================== */
    @media screen and (max-width:1024px){
        .claimBg{
            padding: var(--space-30) calc(var(--space-30)*1);
        }
        .addBox .detailContainer .title{
            width: 25%;
        }
        .addBox .detailContainer .detail{
            width: 75%;
        }
    }
    /* ========================================================== */
    /* ==============  2023スマホ     600px   ==================== */
    /* ========================================================== */
    @media screen and (max-width:600px){
        .claimBg{
            padding: var(--space-10) calc(var(--space-10)*1);
        }
        .addBox .detailContainer{
         flex-direction: column;
        }
        .addBox .detailContainer .title{
            width: 100%;
        }
        .addBox .detailContainer .detail{
            width: 100%;
        }
    }
        
