.title-wrapper {
    display: flex;
    align-items: start;
    vertical-align: center;
}
.title-wrapper > div {
    margin-left: .5rem;
    margin-right: 1rem;
}
.title-wrapper > h3 {
    font-size: 1.2rem;
    font-weight: bold;
    margin-left: 6px;
}

.disease-tag-box,
.product-tag-box {
    display: inline-flex;
    font-weight: bold;
    margin-left: 8px;
}
.disease-tag-box li,
.product-tag-box li {
    background-color: #fff;
    border-radius: 4px;
    margin-right: 1rem;
    padding: 2px 6px;
}
.disease-tag-box li {
    border: 2px solid #4e84ce;
}
.disease-tag-box li a {
    color: #4e84ce;
    text-decoration: none;
}
.product-tag-box li {
    border: 2px solid #008b56;
}
.product-tag-box li a {
    color: #008b56;
    text-decoration: none;
}

.movie-panel-list-wrapper {
    margin: 10px 10px 30px 10px;
}
.movie-panel-list {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}
.movie-panel-wrapper {
    cursor: pointer;
    flex: 0 0 auto;
    padding: 6px;
    width: 48%;
}
.movie-panel {
    border: 1px solid #555;
    box-shadow: 3px 3px 6px -2px gray;
    padding: 8px;
}
.movie-panel-image {
    aspect-ratio: 16 / 9;
    background: black;
    margin: 0 auto 12px;
    overflow: hidden;
    position: relative;
}
.movie-panel-image img {
    max-width: 100%;
    object-fit: cover;
    object-position: center;
}
.movie-panel-length {
    text-align: right;
}
.movie-panel-title {
    color: #333;
    height: 2.4rem;
    font-weight: bold;
}
.movie-panel-description {
    color: #333;
    height: 5.2rem;
}
.lock-image {
    opacity: .5;
}
.lock-icon {
    position: absolute;
    top: calc(50% - 40px);
    left: calc(50% - 40px);
    width: 80px;
}
.overlapped-tag-wrapper {
    padding-bottom: 3px;
    text-align: right;
}
.overlapped-tag-d,
.overlapped-tag-p {
    background-color: #fff;
    border-radius: 4px;
    display: inline-block;
    font-weight: bold;
    padding: 2px 6px;
}
.overlapped-tag-d {
    border: 2px solid #4e84ce;
    color: #4e84ce;
}
.overlapped-tag-p {
    border: 2px solid #008b56;
    color: #008b56;
}

/* modal */
.modal-background {
    display: none;
}
.modal-background.active {
    display: block;
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .6);
    top: 0;
    left: 0;
    z-index: 10;
}
.modal {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.modal-content{
    width: 640px;
    height: 520px;
    background-color: #fff;
    position: relative;
    padding: 20px 40px;
    box-sizing: border-box;
}
.modal-content #modal-box,
.modal-content #modal-medpass-box {
    text-align: center;
    margin-bottom: 20px;
}
.modal-content #modal-box #video_title,
.modal-content #modal-medpass-box .modal-box-title {
    color: #2675bc;
    font-size: 1.4rem;
    font-weight: bold;
    text-align: center;
    padding-bottom: 6px;
}
.modal-content #modal-box #video_caution,
.modal-content #modal-medpass-box .modal-box-caution {
    color: #333333;
    font-size: .9rem;
    padding-top: 6px;
}
.modal-content #modal-medpass-box .button-wrapper {
    padding: 24px;
}
.modal-content #modal-medpass-box .button-wrapper p {
    margin-bottom: 16px;
    line-height: 2.4rem;
}
.modalClose {
    background-color: #ffffff;
    border: 1px solid #2675bc;
    border-radius: 4px;
    color: #2675bc;
    display: inline-block;
    padding: 2px 24px;
    text-align: center;
    text-decoration: none;
    transition: .5s;
}
.modalClose:hover {
    background-color: #e7f1fa;
    cursor: pointer;
}
.modal-button-wrapper {
    text-align: right;
}
.close-btn {
    position: absolute;
    right: 0;
    top: -50px;
    cursor: pointer;
}
.close-btn>div {
    width: 30px;
    height: 30px;
    position: relative;
}
.close-btn>div>span {
    width: 100%;
    height: 1px;
    background-color: #fff;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.close-btn>div>span:first-of-type {
    transform: rotate(45deg);
}
.close-btn>div>span:last-of-type {
    transform: rotate(-45deg);
}

.page-links {
    margin-bottom: 1rem;
}