/* 墓じまいページ */

/* トラブル */
.tb_case {
    width: fit-content;
    max-width: fit-content;
    background: #7e9627;
    border-radius: 22% 78% 49% 51% / 53% 54% 46% 47%;
    /* padding: 2rem; */
}

.tb_index {
    width: fit-content;
    max-width: fit-content;
}

.trouble {
    background: #fff;
    border-radius: 50px;
    margin: 0 2vw;
    /* padding: 1rem; */

}

.trouble-box {
    width: 95%;
    justify-content: center;
}


/* 3つの安心 */
.circle {
    max-width: 320px;
    width: 320px;
    height: 320px;
    background: #B9C67F;
    border-radius: 80% 80% 71% 95% / 84% 87% 68% 82%;
    overflow: hidden;
    text-align: center;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    flex-wrap: wrap;
    position: relative;
}

.num_circle {
    position: absolute;
    top: 20px;
    left: 70px;
    font-size: 2rem;
    font-weight: 600;
}

.h5_circle {
    background-color: white;
}

.p_circle {
    font-size: small;
    padding: 1rem;
    margin-bottom: 0;
}

.pp_circle {
    font-size: 0.7rem;
    padding: 0rem 1rem 0rem 1rem;
    margin-bottom: 0;
}

/* メディアクエリ */

@media screen and (min-width: 481px) {

    /* 481px以上に適用されるCSS（タブレット用） */

    /* タブ */
    .tab-wrap {
        margin: 1rem auto;
        width: 90%;

    }

}

@media screen and (min-width: 960px) {
    /* 960px以上に適用されるCSS（PC用） */

    /* トラブル */
    .tb_case {
        padding: 2rem;
    }

    .trouble {
        margin: 0 10vw;
        padding: 1rem;

    }

    .trouble-box {
        width: 70%;
        justify-content: center;
    }

    /* 3つの安心 */
    .circle {
        margin: 0rem 3rem;
    }

}