@charset "utf-8";





article {
    width:80%;
    max-width:1000px;
    margin:0 auto 0;
    padding:50px 0 100px;
}
section h3 {
    margin:0 auto 30px;
    font-size:1.8rem;
    text-align:center;
    line-height:1.8;
}
section h3 span {
    display:block;
    font-size:1.2rem;
    color:#008166;
}

@media only screen and (max-width:640px){

    article {
        padding:30px 0 100px;
    }
    section h3 {
        font-size:1.5rem;
        line-height:1.5;
        letter-spacing:0.08rem !important;
    }
    section h3 span {
        margin-top: 10px;
        font-size:1rem;
        letter-spacing:0.08rem !important;
    }
}





/* manufacturerList */

.manufacturerList {
    width:80%;
    margin:50px auto 0;
    padding:50px 10%;
    border-radius:20px;
    background:#fff;
}

.manufacturerList ul {
    width:100%;
    margin:50px auto 20px;
    display:flex; flex-flow:row wrap; justify-content:space-between; align-content:stretch; align-items:stretch;
}
.manufacturerList ul li {
    width:40%;
    margin:8px 0;
    padding:15px 4.2% 18px;
    border-radius:10px;
    border:solid 2px #e6e6e6;
}
.manufacturerList ul li b {
    display:block;
    font-size: 1.25rem;
    font-weight:400;
    color:#f0831e;
    line-height:1.4;
}
.manufacturerList ul li span {
    display:inline-block;
    position:relative;
}
.manufacturerList ul li span:before {
    content:"電子カルテ名";
    margin-right:8px;
    font-size:0.85rem;
    letter-spacing:0.08rem;
    color:#787878;
}

p.update-date {
    text-align:right;
}

@media only screen and (max-width:640px){

    .manufacturerList ul {
        margin:30px auto 20px;
    }
    .manufacturerList ul li {
        width:100%;
        margin:5px 0;
        padding:8px 0 20px;
        border-radius:0;
        border:none;
        border-bottom:solid 2px #e6e6e6;
    }
    .manufacturerList ul li b {
        font-size: 1.15rem;
    }
    .manufacturerList ul li span {
        letter-spacing:0.05rem;
    }
    .manufacturerList ul li span:before {
        content:"電子カルテ名";
        margin-right:12px;
        font-size:0.8rem;
        letter-spacing:0.02rem;
    }
}

