

/*202406追加分*/
.m-b-20{
    margin-bottom: 2rem;
}
.attention_202406_wrapper{
    display: flex;
}
dl.attention_202406{
    display: flex;
    margin: 0 auto;
    border: 1px solid #f0f0f0;
    padding: 0;
    dt{
        background-color: #E4FAF8;
        box-sizing: border-box;
        padding: 1em 2em;
        text-align: center;
        font-weight: bold;
        display: flex;
        align-items: center;
    }
    dd{
        box-sizing: border-box;
        padding: 1em;
        display: flex;
        ul{
            li::before{
                content: "●";
                color: #21B8EA;
                margin-right: 0.5em;
            }
        }
    }
}

@media screen and (max-width: 812px) {
    .attention_202406_wrapper{
        flex-direction: column;
    }
    dl.attention_202406{
        width: 100%;
        flex-direction: column;
        dt{
            width: 100%;
        }
        dd{
            width: 100%;
        }
    }
}


/*clinical*/
.clinical_info{
    width: 100%;
    background-color:#eee;
    box-sizing: border-box;
    position: relative;
    display: block;
    a{
        background-color: #fff;
        box-sizing: border-box;
        border-radius: 10px;
        padding: 1em 2em;
        display: block;
        margin: 1em auto;
        text-align: center;
        box-shadow: 3px 3px rgb(180,180,180,0.5);
        font-weight: bold;
        letter-spacing: 0.05em;
    }
    .title_overlay{
        font-size: 12px;
        background-color: #999;
        color: #fff;
        font-weight: bold;
        position: absolute;
        top: 3.4em;
        left: 15vw;
        padding: 0.2em 1em;
        border-radius: 100px;
    }
}

@media screen and (max-width: 812px) {
    .clinical_info{
        a{
            font-size: 12px;
            letter-spacing: 0;
        }
        .title_overlay{
            top: -6px;
            left: 34%;
        }
    }
}