/*area*/

body>* {
    box-sizing: border-box;

}

.area {
    padding: 20px;
    background-color: #fff;
    overflow-y: auto;
    max-height: 80vh;
}

.areaBox {
    display:flex;
    flex-wrap: nowrap;
    box-sizing: border-box;
    width:100%;
}

.area h1 {
    display: block;
    margin: 20px auto 0 auto;
    width: 100%;
    text-align: center;
    font-size: 20px;
}

.area h1 span {
    display: block;
    color: #f00;
    font-size: 12px;
    margin-top: 10px;
    margin-bottom: 20px;
}

.area h2 {
    display: block;
    margin: 0px auto 20px auto;
    width: 100%;
    text-align: center;
    font-size: 14px;
    padding: 10px;
    font-weight: normal;
}

.area .areaColumns {
    display: block;
    width: 25%;
    padding: 10px;
}

.area .areaColumns ol {
    padding-left: 30px;
}

.area .areaColumns ol li {
    line-height: 1.5;
    font-size: 14px;
}

.area .areaColumns ol li a {
    text-decoration: none;
}

.areaColumns.hosp h2 {
    background-color: #a8d08d;
}

.areaColumns.dent h2 {
    background-color: #5b9bd5;
}

.areaColumns.pharm h2 {
    background-color: #ed7d31;
}

.areaColumns.nurs h2 {
    background-color: #ea8b8e;
}

/*スクロールバー全体*/
.area::-webkit-scrollbar {
    width: 10px;
}

/*スクロールバーの軌道*/
.area::-webkit-scrollbar-track {
    border-radius: 10px;
    box-shadow: inset 0 0 6px rgba(0, 0, 0, .1);
}

/*スクロールバーの動く部分*/
.area::-webkit-scrollbar-thumb {
    background-color: rgba(0, 163, 22, 0.5);
    border-radius: 10px;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, .3);
}

.modal-content {
    position: relative;
}

.closeBtn {
    display: block;
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 14px;
    cursor: pointer;
    background-color: rgba(200, 250, 200, 0.7);
    padding: 10px;
    border-radius: 5px;
    box-shadow: 1px 1px 5px rgba(0, 0, 0, .25);
}

.copyRight {
    clear: both;
    padding: 40px 20px 20px 20px;
    text-align: right;
    font-size: 12px;
    line-height: 1.5;
}