@charset "utf-8";
/* おすすめアイコン
------------------------------------------ */
.ico_osusume {
    margin: 0 10px 10px;
    text-align: right;
}
.ico_osusume img {
    width: 24px;
    height: 24px;
}

/* モーダルウィンドウ
------------------------------------------ */
.modal_pr-back {
    display: none;
    position:fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(45,45,45, 0.5);
    z-index: 1000;
}
.modal_pr-back.open {
    display: block;
}
.modal_pr-front {
    position:fixed;
    top: 50%;
    left: 50%;
    width: 90%;
    max-height: 100%;
    margin: auto;
    overflow: auto;
    transform: translate(-50%, -50%);
    z-index: 3;
}
.modal_pr-data {
    max-width: 280px;
    margin: auto;
}
.modal-pr {
    line-height: 1.4;
    margin: auto;
    padding: 15px;
    border-radius: 5px 5px 0 5px;
    background: #FFF;
    font-size: 13px;
    word-break: break-all;
}
.modal-pr p.r_note {
    padding: 0 0 5px 2.5em;
    text-indent: -2.5em;
}
.modal-pr p img {
    width: inherit;
    margin: 0 10px 0 0;
}
.modal_pr-data ul {
    margin: 5px 0 0;
}
.modal_pr-data ul li {
    display: list-item;
    list-style-type: decimal;
    margin: 0 0 5px 1.6em;
}
.modal_pr-close {
    display: block;
    width: 70px;
    padding: 4px 4px;
    border-radius: 0 0 3px 3px;
    background: #000;
    color: #FFF;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    float: right;
}

/* サイズ別
------------------------------------------ */
@media screen and (min-width: 768px) {
    .modal_pr-data {
        max-width: 700px;
    }
    .modal-pr {
        line-height: 1.6;
        padding: 30px;
    }
    .modal_pr-data ul li {
        margin-left: 3.2em;
    }
    .modal-pr p.r_note {
        margin: 0 0 5px 2em;
        padding: initial;
        text-indent: initial;
    }
}