@charset "UTF-8";

.rate-form {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    position: relative;
}

.rate-form input[type=radio] {
    position: absolute;
    top: 50%;
    left: 20px;
    opacity: 0;
    z-index: -1;
}

.rate-form label {
    position: relative;
    padding: 0 5px;
    color: #ccc;
    cursor: pointer;
    font-size: 35px;
}

.rate-form label:hover {
    color: #ffcc00;
}

.rate-form label:hover~label {
    color: #ffcc00;
}

.rate-form input[type=radio]:disabled~label {
    color: #ccc;
}

.rate-form input[type=radio]:checked~label {
    color: #ffcc00;
}


.star5_rating {
    position: relative;
    z-index: 0;
    display: inline-block;
    white-space: nowrap;
    color: #CCCCCC;
    /* グレーカラー 自由に設定化 */
    /*font-size: 30px; フォントサイズ 自由に設定化 */
}

.star5_rating:before,
.star5_rating:after {
    content: '★★★★★';
}

.star5_rating:after {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    overflow: hidden;
    white-space: nowrap;
    color: #ffcf32;
    /* イエローカラー 自由に設定化 */
}

.star5_rating[data-rate="5"]:after {
    width: 100%;
}

/* 星5 */
.star5_rating[data-rate="4.5"]:after {
    width: 90%;
}

/* 星4.5 */
.star5_rating[data-rate="4"]:after {
    width: 80%;
}

/* 星4 */
.star5_rating[data-rate="3.5"]:after {
    width: 70%;
}

/* 星3.5 */
.star5_rating[data-rate="3"]:after {
    width: 60%;
}

/* 星3 */
.star5_rating[data-rate="2.5"]:after {
    width: 50%;
}

/* 星2.5 */
.star5_rating[data-rate="2"]:after {
    width: 40%;
}

/* 星2 */
.star5_rating[data-rate="1.5"]:after {
    width: 30%;
}

/* 星1.5 */
.star5_rating[data-rate="1"]:after {
    width: 20%;
}

/* 星1 */
.star5_rating[data-rate="0.5"]:after {
    width: 10%;
}

/* 星0.5 */
.star5_rating[data-rate="0"]:after {
    width: 0%;
}

/* 星0 */

.fas_sns_circlecolor {
    margin: 0;
    padding: 0;
    display: -webkit-flex;
    display: -moz-flex;
    display: flex;
}

.fas_sns_circlecolor li {
    list-style: none;
    margin: 0 5px 0 0;
}

.fas_sns_circlecolor li a {
    text-decoration: none;
    display: inline-block;
    background: #ffffff;
    border: 1px solid #d1497a;
    color: #d1497a;
    border-radius: 20px;
}

.fas_sns_circlecolor li a i {
    width: 30px;
    height: 30px;
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}


li.sidebar_menu_list {
    position: relative;
}

li.sidebar_menu_list[data_num="!"]::before {
    top: calc(50% - 2px);
    left: -20px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    content: attr(data_num);
    min-width: 20px;
    height: 20px;
    box-sizing: border-box;
    padding: 4px;
    font-size: 10px;
    font-weight: bold;
    border: 1px solid #fff;
    border-radius: 10px;
    transform: translate(40%, -40%);
    z-index: 1;
    background-color: #ef5350;
    color: #fff;
}


.fm_files_link_box {
    margin-top: 10px;
}

.message_history_head.toggle_hook .message_open_btn .fa-angle-up {
    display: none;
}

.message_history_head.toggle_hook.close .message_open_btn .fa-angle-up {
    display: initial;
}

.message_history_head.toggle_hook .message_open_btn .fa-angle-down {
    display: initial;
}

.message_history_head.toggle_hook.close .message_open_btn .fa-angle-down {
    display: none;
}

.message_history_box_inner.sos_history {
    margin-bottom: 5px;
}

.sos_message {
    border: 1px solid #a5a5a5;
    padding: 15px 20px;
    border-radius: 5px;
    margin-bottom: 15px;
}


.menu_head_open_btn {
    display: none;
    font-size: 20px;
}

li.menu_head .fa-angle-up {
    display: block;
}

li.menu_head .fa-angle-down {
    display: none;
}

li.menu_head.active .fa-angle-up {
    display: none !important;
}

li.menu_head.active .fa-angle-down {
    display: block !important;
}

@media screen and (max-width: 640px) {
    .menu_head_open_btn {
        display: block;
    }
}


h2.toggle_search .fa-angle-up {
    display: block;
}

h2.toggle_search .fa-angle-down {
    display: none;
}

h2.toggle_search.active .fa-angle-up {
    display: none !important;
}

h2.toggle_search.active .fa-angle-down {
    display: block !important;
}

.review_box {
    padding: 10px 20px;
    border: 2px solid #f5eee7;
    margin-bottom: 10px;
}

.review_box_data {
    display: flex;
    width: 100%;
    padding: 10px 0 10px;
    align-items: center;
}

.review_box_data .review_icon {
    width: 30px;
    margin-right: 10px;
}

.review_box_data .review_username {
    width: 80%;
}

.review_box_detail .review_star {
    font-size: 24px;
}

.review_box_detail .review_message {
    margin: 5px 0 10px;
}

.review_box_detail .review_date {
    font-size: 80%;
    color: #999;
}


.review_read_more {
    padding: 5px 20px;
}

.review_read_more:hover {
    color: #999;
    cursor: pointer;
}

.display_none {
    display: none;
}

.form_td input.fm_profile_fee {
    width: 100px;
}


.pc_none {
    display: none;
}

@media screen and (max-width: 640px) {
    .pc_none {
        display: block;
    }

    .pc_display {
        display: none;
    }
}


table.table_access {
    width: 100%;
    border-right: #d1497a solid 1px;
    border-collapse: collapse;
}

table.table_access thead th {
    background: #d1497a;
    color: #FFF;
    padding: 10px 15px;
    border-right: #FFF solid 1px;
    border-bottom: #FFF solid 1px;
}

table.table_access thead th:last-child {
    border-right: #d1497a solid 1px;
}

table.table_access tbody th {
    background: #d1497a;
    color: #FFF;
    padding: 10px 15px;
    border-bottom: #FFF solid 1px;
    vertical-align: top;
}

table.table_access tbody tr:last-child th {
    border-bottom: #d1497a solid 1px;
}

table.table_access tbody td {
    background: #FFF;
    padding: 10px 15px;
    border-left: #d1497a solid 1px;
    border-bottom: #d1497a solid 1px;
    vertical-align: top;
}


.access_monthly table {
    width: initial !important;
}

.access_monthly table th {
    width: 200px;
    max-width: 20%;
    text-align: left;
    font-size: 2rem;
    vertical-align: top;
    padding: 15px 0;
}

.access_monthly table td {
    padding: 15px 0;
    font-size: 1.6rem;
}

.access_monthly table td select {
    border: 1px solid;
    padding: 10px 10px;
    width: 200px;
    position: relative;
}

.access_monthly table td.access_monthly_select::before {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 7px 10px;
    border-color: #333 transparent transparent;
    position: absolute;
    top: 50%;
    left: 170px;
    margin-top: -5px;
}

.access_monthly table td {
    position: relative;
}

.access_monthly table td input[type="submit"] {
    margin: auto;
}

.form_td.fm_movie_type label {
    display: block;
}

i.fa-solid.fa-lock {
    color: #fbb03b;
}

h2.page_ttl span.movie_type {
    display: block;
    font-size: 65%;
    color: #fbb03b;
    padding: 5px 0 0;
}

section.section.show_list {
    padding: 0;
}

.blog_boxs.f_box.grids_03 {
    margin: 0 0 40px;
}

body section.section.pagenation {
    margin: 0;
}

.movie_area {
    text-align: center;
    margin: 20px 0;
}

.movie_area iframe {
    border-radius: 10px;
}

.movie_type_message_div {
    text-align: center;
    font-weight: bold;
    padding: 10px;
    width: 100%;
    max-width: 780px;
    margin: auto;
    border-radius: 10px;
}

article.article .post-content .contentarea .movie_type_message_div p.movie_type_button,
article.article .post-content .contentarea .movie_type_message_div p.movie_type_message {
    margin: 0;
    line-height: initial;
}



.movie_type_message_div p.movie_type_button a {
    height: 40px;
    width: 305px;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 30px;
    color: #fff;
    background-color: #fbb03b;
    transition: 0.3s;
    max-width: 95%;
    margin: 10px auto 5px;
}

.movie_type_message_div p.movie_type_button.two_button {
    display: flex;
    justify-content: center;
}

.movie_type_message_div p.movie_type_button.two_button a {
    width: 150px;
    margin: 10px 10px 5px;
    color: #fff;
    background-color: #d1497a;
    border: 1px solid #d1497a;
}

.movie_type_message_div p.movie_type_button.two_button a:first-child {
    color: #d1497a;
    background-color: #fff;
}

.movie_text {
    width: 100%;
    max-width: 780px;
    margin: 20px auto;
}