@charset "utf-8";

/* ==================================================
Reset
================================================== */
html, body,
h1, h2, h3, h4, h5, h6,
a, p, span,
em, small, strong,
sub, sup,
mark, del, ins, strike,
abbr, dfn,
blockquote, q, cite,
code, pre,
ol, ul, li, dl, dt, dd,
div, section, article,
main, aside, nav,
header, hgroup, footer,
img, figure, figcaption,
address, time,
audio, video,
canvas, iframe,
details, summary,
fieldset, form, label, legend,
table, caption,
tbody, tfoot, thead,
tr, th, td {
    margin: 0;
    padding: 0;
    border: 0;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
ol,
ul {
    list-style: none;
}
img,
video {
    max-width: 100%;
}
img {
    border-style: none;
}
blockquote,
q {
    quotes: none;
}
/* ==================================================
Font, Link
================================================== */
html {
    font-size: 62.5%;
}
body {
    font-size: 1.6rem;
    line-height: 1.4;
}
* {
    font-family:メイリオ, -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", sans-serif;
    font-size: inherit;
    line-height: inherit;
}
/* ↓ マイヘブンリニューアル 2020/04/01 */
/* a, */
/* a:visited { */
a {
/* ↑ マイヘブンリニューアル 2020/04/01 */
    color: inherit;
    text-decoration: none;
}

/* ==================================================
Layout
================================================== */
article,
aside,
footer,
header,
nav,
section,
main {
    display: block;
}
* {
    box-sizing: border-box;
}
*:before,
*:after {
    box-sizing: inherit;
}

/* ==================================================
vars
================================================== */
/* :root { */

/* colors */
/*     --main-color: #DF5656; */
/*     --sub-color: #DF9B56; */
/*     --main-text: #595960; */
/*     --bace: #F2F2F2; */
/*     --sheet: #FFFFFF; */
/*     --gray: #BCBCBC; */
/*     --white: #FFFFFF; */
/*     --hover:rgba(242, 242, 242, 0.5) */
/* } */

/* ==================================================
parts-style
================================================== */
.button-outline {
    display: block;
    border: 2px solid  #DF5656;
    padding: 6px 16px;
    border-radius: 16px;
    color: #DF5656;
}

/* ==================================================
contents-style
================================================== */

body{
/* ↓マイヘブンリニューアル 2020/04/01 */
    /* background: #F2F2F2; */
    background: #FFF;
/* ↑マイヘブンリニューアル 2020/04/01 */
    color: #595960;
}
.body-inner{
    position: relative;
    width:1010px;
    margin:0 auto;
        margin-bottom: 40px;
}

/* --fixedHeader-- */
.fixedHeader {
    position: sticky;
    top: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    height: 40px;
    margin-bottom: 10px;
    padding: 6px 8px;
    background: #FFFFFF;
    z-index: 1;
    border-bottom:1px solid #F2F2F2;
}
.fixedHeader-backButton {
    display: block;
    font-size: 12px;
    line-height: 28px;
    z-index:1000;
}
.fixedHeader-backButton>img {
    display: inline-block;
    padding: 0 5px 0 5px;
    width:35px;
    vertical-align:middle;
    margin-top:-4px;
}
.fixedHeader-myPageButton {
    display: block;
    font-size: 12px;
    line-height: 28px;
    z-index:1000;
}
.fixedHeader-myPageButton>img {
    display: inline-block;
    padding: 0 5px 0 5px;
    height: 18px;
    vertical-align:middle;
    margin-top:-4px;
}
.fixedHeader-title-text {
    font-weight: bold;
    line-height: 28px;
}
.fixedHeader-notification {
  position: relative;
  display: block;
  width: 32px;
  margin-top:4px;

}
.notification-count {
    position: absolute;
    top: -9px;
    right: -2px;
    padding: 4px;
    display: block;
    width: 20px;
    height: 20px;
    border-radius: 100%;
    text-align: center;
    line-height: 1;
    font-size: 10px;
    font-weight: bold;
    background: #DF5656;
    color: #FFFFFF;
}

/* --userHeader-- */
.userHeader {
    position: relative;
    padding: 20px 15px;
    margin-bottom: 5px;
    background: #FFFFFF;
}
.user_introduction {
    overflow:hidden;
    width:980px;
}

.user_introduction .user-info{
    width:820px;
    max-width: 645px;
    margin-top:5px;
}
.user_introduction .user-info .user-name{
    font-size:16px;
    font-weight:bold;
    display: block;
}
.user_introduction .user-info .user-text{
    font-size:15px;
    line-height:1.6;
    margin-top:4px;
}
.user_introduction .user-info .user-text a{
    color: #5EB8A3;
}
.user_introduction .user-info .user-text a:hover{
    text-decoration:underline;
}
.user_introduction .user-info .user-trophy{
    font-size: 12px;
    padding: 0 10px;
    border-radius: 10px;
    margin-top:8px;
    display:inline-block;
    border-radius:13px;
    height:26px;
    line-height:26px;
    background: #DF5656;
    color: #FFFFFF;
}
.user-data{
    display: flex;
    margin-top:10px;
}
.user-dataItem {
    margin-right: 15px;
    font-size: 12px;
}
.user-dataItem>.count {
    font-weight: bold;
    font-size: 16px;
}
.userHeader .button-outline {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 11px;
    font-weight: bold;
    color: #DF5656;
    z-index:10;
}
.userHeader .button-outline:hover {
    background:#DF5656;
    color:#FFFFFF;
}
.userHeader .user-follow{
    display:none;
}
.userHeader .button-outline._user{
    cursor:pointer;
    -webkit-transition: all 0.15s ease;
    transition: all 0.15s ease;
}
.userHeader .user-follow:checked + .button-outline{
    background:#DF5656;
    color:#FFFFFF;
}
/* --navigation-- */
.navigation {
    position: relative;
    padding: 0 8px;
    background: #FFFFFF;
    border-bottom:2px solid #F2F2F2;
    box-sizing:border-box;
}
.navigation-tabs {
    display: flex;
/*    justify-content: space-between; */
}
.navigation-item {
    display: block;
    width: 18%;
    padding: 15px 0 10px;
    font-size: 14px;
    text-align: center;
    border-bottom: 3px solid;
    border-color: #FFFFFF;
    color:#595960;
    font-weight:bold;
    margin-right:1%;
}
.navigation-item:hover{
    border-color: #DF5656;
    color:#DF5656;
}
.navigation-item._current {
    border-color: #DF5656;
    color:#DF5656;
}

/* --main-- */
.contents-item{
    width:1010px;
    overflow:hidden;
    background:#FFFFFF;
    margin-bottom:40px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
}
/* --contents-left-- */
.contents-left{
    width:660px;
    float:left;
    border-right:2px solid #F2F2F2;
    box-sizing:border-box;
    min-height:882px;
    padding-bottom:10px;
}
.contents-header{
    position:relative;
    padding:15px 20px;
}
.contents-header .total{
    font-size:12px;
    font-weight:bold;
    margin-left:10px;
    position: absolute;
    right: 20px;
    top: 20px;
}
/* --select-- */
#pulldown{
  position: relative;
  display: inline-block;
}
#pulldown:after {
    content: '';
    width: 6px;
    height: 6px;
    border: 0px;
    border-bottom: solid 2px #595960;
    border-right: solid 2px #595960;
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    top: 50%;
    right: 10px;
    margin-top: -4px;
    z-index:1
}
.select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  height: 26px;
  font-size:12px;
  background: #F2F2F2;
  position: relative;
  z-index: 1;
  padding: 0 40px 0 10px;
  border: 1px solid #F2F2F2;
  border-radius: 13px;
  min-width: 140px;
}
.select:hover{
    cursor:pointer;
}
select::-ms-expand{
    display:none;
}
#pulldown:-ms-expand {
    display: none;
}
/* --checkbox-- */
.contents-header .filter {
    font-size: 12px;
    line-height: 36px;
    position:absolute;
    right:20px;
    top:10px;
}
.filter>input {
    display: none;
}
.filter>input:checked + .checkbox-inner {
    color: #DF5656;
}
.filter>input:checked + .checkbox-inner .icon-checkbox {
    background:#DF5656;
}
.icon-checkbox {
    position: relative;
    top: 6px;
    display: inline-block;
    width: 20px;
    height: 20px;
    object-fit: cover;
    background-repeat: no-repeat;
    background:#BCBCBC;
    border-radius:4px;
}
.icon-checkbox:hover{
    cursor:pointer;
}
.icon-checkbox img {
    width: 14px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}
/* --item-user-- */
.item-user{
    padding:15px 20px;
    border-top:5px solid;
    border-color:#F2F2F2;
}
.item-user:hover{
    background-color:rgba(242, 242, 242, 0.5);
    -webkit-transition: .1s ease-in-out;
    transition: .1s ease-in-out;
}
.item-header{
    overflow:hidden;
    width:618px;
    border-bottom:1px solid;
    border-color:#F2F2F2;
    padding-bottom:10px;
    margin-bottom:10px;
}
.item-header .user-info{
    width:618px;
}
.item-header .user-info .user-name{
    font-weight:bold;
    font-size:14px;
}
.item-header .user-info .user-name:hover{
    color:#DF5656;
}
.item-header .user-info .user-trophy{
    font-size:12px;
    margin-top:4px;
}
.item-review .review-main{
    margin-bottom:20px;
}
.review-main .review-rate{
    position:relative;
}
.review-main .review-rate .icon-stars{
    overflow:hidden;
    width:120px;
}
.review-main .review-rate .icon-stars .star{
    float:left;
    width:24px;
}
.review-main .review-rate .icon-visited{
    position:absolute;
    top:0px;
    left:130px;
    color:#df9b56;
    /* border:1px solid #df9b56;
    border-radius:20px; */
    font-size:21px;
    /* padding:2px 15px; */
}
.review-main .review-rate .icon-auth{
    position: absolute;
    top: 3px;
    right: 0;
    display: block;
    border: 1px solid;
    padding: 2px 8px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: bold;
}
.review-main .review-rate .icon-auth._wait{
    color:#4D86C8;
}
.review-main .review-rate .icon-auth._out {
    color: #DF5656;
}
.review-main .review-title{
    margin-top:10px;
    font-weight:bold;
}
.review-main .review-title a:hover{
    color:#DF5656;
}
.review-main .review-text{
    margin-top:15px;
    font-size:14px;
    line-height:1.8;
}
.review-main .review-text span{
    color:#DF5656;
}
.review-url:hover{
    background: rgba(242, 242, 242, 0.5);
    display: block;
}
.review-shop{
    overflow:hidden;
    font-size:14px;
    margin-bottom:10px;
}
.review-shop .shop-icon{
    float:left;
    width:45px;
    margin-right:10px;
    height:45px;
    border-radius:10px;
    overflow:hidden;
}
.review-shop .shop-icon a{
    width:45px;
    height:45px;
    display:block;
}

.review-shop .shop-info{
    float:left;
    width:563px;
    font-size:12px;
}
.review-shop .shop-info .shop-name{
    margin-top:5px;
}
.review-shop .shop-info .shop-data{
    margin-top:3px;
}

.review-foot{
    overflow:hidden;
    line-height:22px;
}
.review-foot .reference{
    float:left;
    width:70%;
    font-size:12px;
    position:relative;
}
.review-foot .reference .reference-count{
    background:#bcbcbc;
    color:#FFFFFF;
    padding:1px 10px;
    border-radius:15px;
    margin-left:10px;
    font-size:12px;
    line-height:17px;
    position:absolute;
    top:2px;
}
.review-foot .visited-date{
    float:left;
    width:30%;
    text-align:right;
    font-size:12px;
    color:#aaa;
}
.review-foot._user{
    line-height:30px;
}
.review-foot._user  .user_reference .checkbox{
    display:none;
}.review-foot._user  .user_reference .checkbox:checked+.got_reference{
    color:#FFFFFF;
    background:#DF5656;
}
.review-foot._user .reference .got_reference{
    border: 2px solid #DF5656;
    padding: 4px 10px;
    font-weight: bold;
    color: #DF5656;
    border-radius: 15px;
    cursor: pointer;
    -webkit-transition: all 0.15s ease;
    transition: all 0.15s ease;

}
/*
.review-foot._user .reference .got_reference:hover{
    background:#DF5656;
    color:#FFFFFF;
}
*/
.review-foot._user .reference .reference-count{
    top:5px;
}
/* --item-follew-- */
.item-follew{
    padding:0 20px;
}
.item-follew:hover{
    background-color: rgba(242, 242, 242, 0.5);
}
.item-follew .follew{
    border-bottom:1px solid #F2F2F2;
    overflow:hidden;
    width:620px;
    padding:20px 0;
}
.item-follew:last-child .item-link .follew{
    border-bottom:0;
}

.item-follew .user-info{
    width:620px;
}
.item-follew .user-info .user-name{
    font-size:14px;
    font-weight:bold;
}
.item-follew .user-info .user-trophy{
    font-size:12px;
    margin-top:4px;
}
.item-follew .user-info .user_support{
    font-size:12px;
    margin-top:8px;
}
.item-follew .user-info .user_support .user-comment,.user-follewers{
    margin-right:20px;
}
.item-follew .user-info .user_support .user-comment img{
    width:17px;
    vertical-align:middle;
    margin-right:5px;
}
/* --myreview-detail-- */
.myreview-detail .review-shop{
    position:relative;
    border-bottom: 1px solid #F2F2F2;
    padding:10px 20px;
    margin:10px 0 0;
}
.myreview-detail .review-shop .shop-info .shop-name{
    font-weight:bold;
}
.myreview-detail .review-shop .shop-info .shop-data{
    font-size:12px;
    /*color:#aaa;*/
}
.myreview-detail .review-shop .icon-auth{
    position:absolute;
    top:10px;
    right:20px;
    display:block;
    border:1px solid;
    padding:2px 8px;
    border-radius:3px;
    font-size:11px;
    font-weight:bold;
}
.myreview-detail .review-shop .icon-auth._wait{
    color:#4D86C8;
}
.myreview-detail .review-shop .icon-auth._out{
    color:#DF5656;
}
.myreview-detail .item-review{
}
.myreview-detail .item-review .review-visit{
    border-bottom: 1px solid #F2F2F2;
    padding:10px 20px;
    font-size:12px;
}
.myreview-detail .list{
    overflow:hidden;
    margin-top:10px;
}
.myreview-detail .list:first-child{
    margin-top:0;
}
.myreview-detail .list dt{
    float:left;
    width:140px;
}
.myreview-detail .list dd{
    float:left;
    width:478px;
}
.myreview-detail .review-rate{
    padding:10px 20px;
}
.myreview-detail .review-rate .icon-visited{
    left:150px;
    top:13px;
}
.myreview-detail .review-rate .review-evaluation{
    overflow:hidden;
    margin-top:5px;
}
.myreview-detail .review-rate .review-evaluation li{
    float:left;
    font-size:12px;
    margin-right:15px;
    color:#aaa;
}
.myreview-detail .review-rate .review-evaluation li span{
    margin-left:5px;
}
.myreview-detail .review-title,
.myreview-detail .review-text,
.myreview-detail .review-foot{
    padding:0 20px;
}
.myreview-detail .review-foot{
    margin-bottom:30px;
}
.myreview-detail .restaurant_reply{
    background: #F2F2F2;
    border-radius: 15px;
    width: 618px;
    margin: 0 auto;
    padding:20px 0;
}
.myreview-detail .review-foot .reference{
    float:none;
    width:100%;
    text-align:left;
}
.myreview-detail .review-foot .got_reference:hover{
    background:#DF5656;
    color:#FFFFFF;
}
.myreview-detail .review-foot._user .reference{
    float:none;
    width:100%;
    text-align:center;
}
.restaurant_reply .review-title{
    font-weight:bold;
}
.restaurant_reply .review-title img{
    margin-left:5px;
    vertical-align:middle;
    margin-bottom:3px;
    width:20px;
}
.restaurant_reply .review-text{
    margin-top:15px;
    font-size:12px;
    line-height:1.8;
}
.myreview-detail .button{
    margin:20px;
    text-align:center;
}
.myreview-detail .button-link{
    background-color: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    appearance: none;
    border: 2px solid #DF5656;
    padding: 0 50px;
    line-height: 40px;
    border-radius: 20px;
    font-size:14px;
    color:#DF5656;
    font-weight:bold;
    display:inline-block;
}
.myreview-detail .fixing_button{
    padding:0 80px;
    margin-right:10px;
}
.myreview-detail .button-link:hover{
    background:#DF5656;
    color:#FFFFFF;
}


/* --myreview-profile-- */

.myreview-profile{
    padding:20px 25px;
}
.myreview-profile .user-text{
    margin-bottom:20px;
    font-size:14px;
    line-height:1.8
}
.myreview-profile .trophy{
    border-top:1px solid #F2F2F2;
    position:relative;
    margin-bottom:10px;
}
.myreview-profile .trophy-preference{
    margin-bottom:20px;
}
.myreview-profile .title{
    font-size:16px;
    margin:0 0 20px;
    font-weight:bold;
}
.myreview-profile .trophy .title{
    margin:20px 0 20px;
    position:relative;
}
.myreview-profile .attention{
    position:absolute;
    left:230px;
    top:25px;
    font-size:10px;
    color:#aaa;
}
.myreview-profile .title span{
    background:#595960;
    color:#FFFFFF;
    font-weight:normal;
    font-size:10px;
    border-radius:10px;
    padding:2px 7px;
    margin-left:10px;
    position:absolute;
    top:3px;
}
.myreview-profile .list{
    overflow:hidden;
    margin-bottom:10px;
    font-size:10px;
    line-height:24px;
}
.myreview-profile .list:last-child{
    margin-bottom:0;
}
.myreview-profile .list dt{
    float:left;
    width:120px;
    font-weight:bold;
}
.myreview-profile .list dd{
    float:left;
    padding:0 10px;
    background:#DF5656;
    color:#FFFFFF;
    width:140px;
    text-align:center;
    border-radius:13px;
}
.myreview-profile .list.point dd{
    background:none;
    color:#DF5656;
    font-weight:bold;
}
.myreview-profile .trophy-list{
    overflow:hidden;
    width:608px;
}
.myreview-profile .trophy-list a{
    float:left;
    width:140px;
    border:1px solid #595960;
    text-align:center;
    font-size:12px;
    border-radius:15px;
    line-height:28px;
    height:28px;
    margin-right:16px;
    margin-bottom:20px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    display:block;
}
.myreview-profile .trophy-list a:hover{
    border:1px solid #DF5656;
    color:#DF5656;
    cursor:pointer;
}
.myreview-profile .trophy-list a:nth-of-type(4n){
    margin-right:0;
}
.myreview-profile .box input[type=radio] {
    display: none;
}
.myreview-profile .box label:focus,
.myreview-profile .box label:hover,
.myreview-profile .box label:active,
.myreview-profile .box input:checked + label {
    color: #DF5656;
    border:1px solid #DF5656;
}
.myreview-profile .box label:focus:before,
.myreview-profile .box label:hover:before,
.myreview-profile .box label:active:before,
.myreview-profile .box input:checked + label:before {
    border-color: #DF5656;
}
.myreview-profile .box label {
    font-size: 12px;
    width:140px;
    border:1px solid #595960;
    border-radius:15px;
    line-height:28px;
    height:28px;
    display: block;
    margin-right:16px;
    margin-bottom:20px;
    overflow: hidden;
    text-align:center;
    text-overflow: ellipsis;
    white-space: nowrap;
    float:left;
    cursor: pointer;
    -webkit-transition: all 0.15s ease;
            transition: all 0.15s ease;
}
.myreview-profile .box label:nth-of-type(4n){
    margin-right:0;
}
#modalBody{
    position: fixed;
    top: 0;
    left: 0;
    background: #F2F2F2;
    z-index: 999;
    width: 100%;
    height: 100%;
    opacity: 0;
    pointer-events: none;
    transition: opacity ease-out .25s;
}
#modalBody.is-visible{
    opacity: 1;
    pointer-events: all;
    cursor: pointer;
    background:#FFFFFF;
}
#closeModal{
    position: absolute;
    top: 8px;
    left: 8px;
    font-size: 40px;
    line-height: 40px;
    transform: rotate(45deg);
    cursor: pointer;
}
.trophy-modal{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 80%;
    text-align: center;
}
.modalBody{
    position: fixed;
    top: 0;
    left: 0;
    right:0;
    margin:auto;
    background: #F2F2F2;
    z-index: 999;
    width: 1010px;
    height: 100%;
    opacity: 0;
    pointer-events: none;
    transition: opacity ease-out .25s;
}
.modalBody.is-visible{
    opacity: 1;
    pointer-events: all;
    cursor: pointer;
    background:#FFFFFF;
}
.modalBody .fixedHeader-title{
    line-height:28px;
    font-size:12px;
    margin-right:10px;
}
.modalBody .checkbox-list{
    overflow:hidden;
    padding:20px 0;
    width:750px;
    margin:0 auto;
}
.modalBody .checkbox-item{
    float:left;
    width:32%;
    margin-right:1%;
    position:relative;
    margin-bottom:10px;
}
.modalBody .checkbox-item:nth-of-type(3n){
    margin-right:0;
}
.modalBody label{
    position:relative;
    display:block;
    padding-left:30px;
}
.modalBody label:hover{
    cursor:pointer;
    color:#DF5656;
}
.modalBody input{
    display:none;
}
.modalBody .icon-checkbox{
    position:absolute;
    top:0;
    left:0;
/*    background-image: url(../img/icon/check-box_off.svg); */
}
.modalBody input:checked + .checkbox-label{
    color: #DF5656;
}
.modalBody input:checked + .checkbox-label > .icon-checkbox {
    background:#DF5656;

}
.modalBody .button-outline{
    padding:0 50px;
    line-height:40px;
    margin:0 auto;
    text-align:center;
    border-radius:20px;
    font-weight:bold;
    width:140px;
}
.modalBody .button-outline:hover{
    color:#FFFFFF;
    background:#DF5656;
}
.profile-footer{
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
}
.popzenkoku_list li{
/* ↓ マイヘブンリニューアル 2020/04/01 */
    /* width: 24%; */
/* ↑ マイヘブンリニューアル 2020/04/01 */
    display: inline-block;
    text-align: center;
}
.popzenkoku_list a{
    /*color: #BCBCBC;*/
/* ↓ マイヘブンリニューアル 2020/04/01 */
    /* border: 2px solid; */
/* ↑ マイヘブンリニューアル 2020/04/01 */
    display: inline-block;
/* ↓ マイヘブンリニューアル 2020/04/01 */
    /* padding: 8px; */
    /* margin-top: 4px; */
    /* margin-bottom: 8px; */
    /* border-radius: 20px; */
    /* min-width: 120px; */
    padding:5px 0;
/* ↑ マイヘブンリニューアル 2020/04/01 */
    font-size: 12px;
}
.popzenkoku_list a.selected{
    color: #DF5656;
}
#modalBodyAr1 .popzenkoku_list a{
    vertical-align: top;
    height: 54px;
    display: flex;
    text-align: center;
    flex-direction: column;
}
/* --myreview-profile-edit-- */
.profile-edit .text-edit{
    width:608px;
    font-size:14px;
    height:200px;
    line-height:1.8;
    background-color: #F2F2F2;
    border-radius:4px;
    border:none;
    padding:15px;
    position:relative;

}
.profile-edit .text-edit:focus{
    border:1px solid #DF5656;
}
.profile-edit .button{
    margin:20px;
    text-align:center;
}
.profile-edit .button-link{
    background-color: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    appearance: none;
    border: 2px solid #DF5656;
    padding: 0 50px;
    line-height: 40px;
    border-radius: 20px;
    font-size:14px;
    color:#DF5656;
    font-weight:bold;
    display:inline-block;
}
.profile-edit .fixing_button{
    padding:0 80px;
    margin-right:10px;
}
.profile-edit .button-link:hover{
    background:#DF5656;
    color:#FFFFFF;
}
.profile-edit .setting_edit .edit{
    border:1px solid #DF5656;
    color:#DF5656;
}
.profile-edit .trophy-normal .attention{
    left:165px;
    top:25px;
}
/* --pager--*/
.pager{
    border-top:1px solid #F2F2F2;
    border-bottom:1px solid #F2F2F2;
    width:100%;
    overflow:hidden;
    margin-top:20px;
}
.pager a{
    line-height:55px;
    width:28%;
    float:left;
    text-align:center;
    font-size:12px;
}
.pager a:hover{
    background:rgba(242, 242, 242, 0.5);
}
.pager .prev img{
    margin-right:20px;
}
.pager .pager-list{
    width:44%;
    border-left:1px solid #F2F2F2;
    border-right:1px solid #F2F2F2;
}
.pager a img{
    vertical-align:middle;
    margin-top:-2px;
    width:26px;
}
.pager .next img{
    margin-left:20px;
    transform: rotate(180deg);
}
/* --user-reviews-detail --*/
.navigation._user .navigation-item{
    position:relative;
    padding:10px 0 20px;
    font-size:18px;
    width:19%;
}
.navigation._user .navigation-item:last-child{
    margin-right:0;
}
.navigation._user .navigation-item span{
    position:absolute;
    bottom:8px;
    font-size:10px;
    font-weight:normal;
    left:0;
    right:0;
    margin:auto;
}
/* --user-girls-- */
.girl-item{
    padding:0 20px;
}
.girl-item .girl-link{
    padding:20px 0;
    border-bottom:1px solid #F2F2F2;
    overflow:hidden;
    display:block;
}
.girl-item .girl-link:hover{
    background: rgba(242, 242, 242, 0.5);
    box-shadow: -8px 0 rgba(242, 242, 242, 0.5);
}
.girl-item:last-child .girl-link{
    border-bottom:0;
}
.girl-item .item-inner{
    width: 80px;
    height: 80px;
    overflow:hidden;
    border-radius:10px;
    display:block;
    float:left;
    margin-right:15px;
    -webkit-transition: .1s ease-in-out;
    transition: .1s ease-in-out;
}
.girl-item .girl-info{
    float:left;
    width:503px;
}
.girl-item .girl-info .girl-name{
    font-size:16px;
    font-weight:bold;
}
.girl-item .girl-info .girl-data{
    font-size:14px;
}
.girl-item .girl-info .shop-name{
    margin-top: 15px;
    font-size: 12px;
    color: #BCBCBC;
}
.girl-item .girl-info .shop-data{
    font-size: 12px;
    color: #BCBCBC;
}
/* --user-shops-- */
.shop-item{
    padding:0 20px;
}
.shop-item .shop-link{
    padding:20px 0;
    border-bottom:1px solid #F2F2F2;
    overflow:hidden;
    display:block;
}
.shop-item .shop-link:hover{
    background: rgba(242, 242, 242, 0.5);
    box-shadow: -8px 0 0 0px rgba(242, 242, 242, 0.5);
}
.shop-item:last-child .shop-link{
    border-bottom:0;
}
.shop-item .item-inner{
    width:80px;
    height:80px;
    overflow:hidden;
    border-radius:10px;
    float:left;
    margin-right:15px;
    -webkit-transition: .1s ease-in-out;
    transition: .1s ease-in-out;
}

.shop-item .shop-info{
    float:left;
    width:523px;
}
.shop-item .shop-info .shop-name{
    font-size:16px;
    font-weight:bold;
    margin-top:15px;
}
.shop-item .shop-info .shop-name a:hover{
    color:#DF5656;
}
.shop-item .shop-info .shop-data{
    font-size:14px;
    color: #BCBCBC;
    margin-top:5px;
}
/* --contents-right--*/
.contents-item .contents-right{
    width:350px;
    float:left;
}
.status{
    padding:20px;
    border-bottom:5px solid #F2F2F2;
}
.status:last-child{
    border-bottom:0;
}
.status .status-title{
    font-size:16px;
    font-weight:bold;
    margin-bottom:10px;
}
.status .list{
    overflow:hidden;
    width:310px;
    margin-top:20px;
    line-height:18px;
}
.status .list dt{
    float:left;
    width:135px;
    font-size:12px;
    position:relative;
}
.status .list dd{
    float:left;
    width:175px;
    font-size:12px;
    position:relative;
}
.status .list dd .checkbox-wrap:hover{
    cursor:pointer;
    color:#DF5656;
}
.status .list dd .icon_question{
    background: #DF5656;
    color: #FFFFFF;
    margin-left: 10px;
    width: 18px;
    height: 18px;
    display: inline-block;
    text-align: center;
    border-radius: 100%;
    display:none;
}
.profile-data-atend{
    font-size: 11px;
    display: block;
    color: #DF5656;
}
.checkbox-wrap.js-openCheckModal {
    position: relative;
    z-index: 1;
}
.selected-value {
    z-index: -1;
    position: relative;
}
.status .list .edit-icon{
    background: #DF5656;
    color: #FFFFFF;
    width: 18px;
    height: 18px;
    display: inline-block;
    text-align: center;
    border-radius: 100%;
    position:absolute;
    right:0;
    line-height:18px;
    font-weight:bold;
    top:0;
    font-size:13px;
}
.status .list .edit-icon img{
    width:16px;
}
.status .list dd .profile-data-select{
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border:none;
    width:100%;
    color:#595960;
}
.status .list dd .profile-data-select:hover{
    color:#DF5656;
    cursor:pointer;
}
.status .list dd .profile-data-select option{
    color:#595960;
}
/* --mypage-myreview-edit-- */
.fixedHeader .shop-title{
    position:absolute;
    left:0;
    right:0;
    width:100%;
    margin:auto;
    text-align:center;
    font-size:12px;
    top:12px;
    font-weight:bold;
}
.buzz-item{
    background:#FFFFFF;
    padding:20px 0 80px;
}
.buzz-item .guideline_description{
    background:#F2F2F2;
    width:800px;
    margin:0 auto;
    border-radius:5px;
    padding:10px 20px;
    font-size:12px;
}
.buzz-item .guideline_description a{
    color:#DF5656;
}
.buzz-item .guideline_description a:hover{
    text-decoration:underline;
}
.buzz-item .editor-body{
    margin:20px auto 0;
    width:800px;
    border:1px solid #BCBCBC;
    border-radius:5px;
}
.buzz-item .editor-body .star_evaluation .editor-element{
    width:410px;
    margin: 0 0 15px auto;
}
.buzz-item .editor-body .star_evaluation,
.buzz-item .editor-body .editor-element{
    width:450px;
    margin:20px auto 0;
    overflow:hidden;
}

.buzz-item .editor-body .editor-headding {
    font-size: 14px;
    color: #595960;
}
.buzz-item .editor-body .star_evaluation .editor-star-box{
    overflow:hidden;
    margin-top:2px;
}
.buzz-item .editor-body .evaluation_point .editor-headding {
    font-weight:bold;
    font-size:16px;
    color:#595960;
}
.buzz-item .editor-body .evaluation_point .editor-headding {
}


.editor-element .editor-title{
    height: 40px;
    border-radius: 5px;
    border: 1px solid #BCBCBC;
    padding: 10px;
    width: 450px;
    font-size: 14px;
    color:#BCBCBC;
}
.editor-element .editor-text-box{
    margin-top:20px;
}
.editor-element .editor-text{
    height:250px;
    width:450px;
    padding:10px;
    border:1px solid #BCBCBC;
    border-radius:5px;
    color:#BCBCBC;
    font-size:12px;
}
.editor-element .editor-title:focus,
.editor-element .editor-text:focus{
    border:1px solid #DF5656;
    color:#595960;
}
.editor-element .editor-text-information{
    display:inline-block;
    margin-top:10px;
    font-size:12px;
}
.editor-element .editor-hedding-box{
    float:left;
    width:250px;
    font-weight:bold;
    font-size:14px;
    line-height:30px;
}
.editor-element .editor-date-serect,
.editor-element .editor-girl-serect{
    float:left;
    width:200px;
}
.editor-element .editor-date-serect label,
.editor-element .editor-girl-serect label{
    position:relative;
}
.editor-element .editor-date-serect input,
.editor-element .editor-girl-serect select{
    width:200px;
    font-size:12px;
    height:30px;
    padding:5px 5px 5px 20px;
    border:1px solid #BCBCBC;
    border-radius:5px;
    color: #595960;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.editor-element .editor-date-serect label:after,
.editor-element .editor-girl-serect label:after{
    display: block;
    content: " ";
    position: absolute;
    top: 50%;
    right: 8px;
    width: 20px;
    height: 20px;
    margin-top: -15px;
    background: url("../img/icon/left-arrow.png") 0 0 no-repeat;
    background-size: 8px;
    pointer-events: none;
    transform:rotate(270deg);
    -ms-transform: rotate(270deg);
    -webkit-transform: rotate(270deg);
}
.buzz-item .guideline-box{
    margin:40px 0 60px;
    width:100%;
    border-top:1px solid #F2F2F2;
}
.buzz-item .guideline-box .guideline-link{
    color:#DF5656;
    display: block;
    width: 80px;
    margin: 20px auto 10px;
    font-weight: bold;
    font-size: 12px;
    text-align:center;
}
.buzz-item .guideline-box .guideline-link:hover{
    text-decoration:underline;
}
.buzz-item .guideline-box .post{
    color:#DF5656;
    padding:0 60px;
    border:2px solid #DF5656;
    line-height:40px;
    border-radius: 20px;
    display:block;
    width:360px;
    text-align:center;
    margin:0 auto;
    font-weight:bold;
    font-size:14px;
}
.buzz-item .guideline-box .post:hover{
    background:#DF5656;
    color:#FFFFFF;
}
/* --mypage-myreview-guideline-- */
.guideline_body{
    background:#FFFFFF;
    padding:50px 130px;
    font-size:13px;
    line-height: 1.5;
}
.guideline_body .return{
    padding:0 60px;
    border:2px solid #DF5656;
    color:#DF5656;
    line-height:40px;
    border-radius:20px;
    display:block;
    text-align:center;
    margin:100px auto 0;
    width:240px;
    font-weight:bold;
    font-size:14px;
}
.guideline_body .return:hover{
    background:#DF5656;
    color:#FFFFFF;
}
/* --mypage-notification-- */
.notification_body{
    background:#FFFFFF;
    padding:20px 0;
    min-height:700px;
}
.notification_body .notification-list{
    width:800px;
    margin:20px auto;
    border:1px solid #F2F2F2;
    border-radius:10px;
    padding:25px 20px;
}
.notification_body .notification-list .trophy-list{
    overflow:hidden;
    border-bottom:1px solid #F2F2F2;
    padding:15px 0;
    font-size:12px;
}
.notification_body .notification-list .trophy-list:last-child{
    border-bottom:0;
}
.notification_body .notification-list .trophy-list .date{
    float:left;
    width:200px;
    color:#BCBCBC;
}
.notification_body .notification-list .trophy-list a{
    float:left;
    max-width:550px;
}
.notification_body .notification-list .trophy-list a:hover{
    color:#DF5656;
    text-decoration:underline;
}
/* --mypage-notification-detail-- */
.notification-list-data{
    width:800px;
    margin:20px auto;
    border:1px solid #F2F2F2;
    border-radius:10px;
    padding:25px 20px;
    font-size:12px
}
.notification-list-data .date{
    color:#BCBCBC;
}
.notification-list-data .notification-title{
    margin-top:10px;
}
.notification-list-data .notification-text{
    border-top:1px solid #F2F2F2;
    margin-top:20px;
    padding-top:25px;
}/* --mypage-post-completion-- */
.post_completion{
    background:#FFFFFF;
    padding:20px 0;
}
.post_completion .completion_inner{
    margin:20px auto;
    width:800px;
    border: 1px solid #F2F2F2;
    border-radius: 10px;
    padding: 25px 20px;
}
.post_completion .completion_inner h3{
    color: #DF5656;
    font-size:20px;
}
.post_completion .completion_inner .completion_text{
    margin-top:20px;
}
.post_completion .completion_inner .completion_link{
    text-align:right;
}
.post_completion .completion_inner .completion_link .return{
    color:#DF5656;
    position:relative;
    padding-left:10px;
    font-size:14px;
}
.post_completion .completion_inner .completion_link .return:hover{
    text-decoration:underline;
}
.post_completion .completion_inner .completion_link .return:after{
    content:"";
    position:absolute;
    left:0;
    top:5px;
    display:block;
    width:0;
    height:0;
    border:4px solid #FFFFFF;
    border-left:7px solid #DF5656;

}
/* 2019/8/22 追加 */
.my-prof:visited {
    color: #56b49e;
}
.user-genre {
    margin-top: 8px;
    font-weight: bold;
}

.head-user-ranking {
    display: flex;
    margin-bottom: 4px;
}
.contents-box-head {
    padding: 12px;
    width: 100%;
    position: relative;
    background: #5EB8A3;
    line-height: 1.3;
    margin-bottom: 28px;
}
.status-title {
    color: white;
    font-weight: bold;
    /* margin-bottom: 12px; */
    font-size: 22px;
    padding: 0px;
}
.rank-area1 {
    border: 2px solid #878787;
    border-radius: 6px;
    padding: 12px;
    position: relative;
        margin-bottom: 26px;
}
.rank-area1-head {
    position: absolute;
    top: -12px;
    background: white;
    padding: 0 8px;
}
.rank-area-box {
    display: flex;
    align-items: center;
    width: 310px;
    /* position: absolute;
    right: 24px;
    top: 0px; */
}
.my-rank {
    background: #F55B5B;
    color: white;
    padding: 0 20px;
    font-size: 14px;
    border-radius: 7px;
}
.count-span {
    font-size: 16px;
    font-weight: bold;
}
.favorite-box {
    position: relative;
}
.status .list:first-child {
    margin-top: 0;
}
.reviews-ranking {
    margin-top: 12px;
}

.rank-view-more {
    color: #5EB8A3;
    text-align: right;
    display: block;
    padding-right: 16px;
}
.rank-text {
    position: absolute;
    right: 8px;
}
.count-pic {
    position: absolute;
    right: 38px;
}
.rank-num {
    position: unset;
    right: 0px;
}
.user-name {
    padding-right: 8px;
    align-self: flex-end;
    font-size: 20px;
    font-weight: bold;
}
.authentication-pic {
    width: 68px;
}
/* 2019/8/22 追加 */

/* 口コミランキング */
.user-area {
    font-size: 12px;
    font-weight: normal;
}
.rank-item {
    margin-right: 15px;
}
.head-prof{
    padding: 10px 20px;
        line-height: 1.2;
}
.my-prof{
    color: #56b49e;}
.head-pic {
    background: white;
}
.head-info {
    padding-bottom: 10px;
    color: #56b49e;
}
.contents {
    padding: 12px 20px;
    background: white;
    margin-bottom: 28px
}
.contents-box {
    margin-bottom: 52px;
}
.status-title2 {
    color: white;
/* ↓ マイヘブンリニューアル 2020/04/01 */
    font-size: 1.6rem;
/* ↑ マイヘブンリニューアル 2020/04/01 */
}
.area-change {
    position: absolute;
    right: 16px;
    top: 15px;
    padding: 10px;
    border: 1px solid #eee;
    background: white;
    border-radius: 5px;
}
.area-text {
    color: #5eb8a3;
    font-weight: bold;
}
.section {
    padding: 20px;
    margin-bottom: 14px;
}
.section-head {
    position: relative;
    display: flex;
justify-content: space-between;
}

.section-head-rank {
    font-size: 22px;
    font-weight: bold;
}
.section-head-count {
    color: #C8C8C8;
/* ↓ マイヘブンリニューアル 2020/04/01 */
    font-size: 1.6rem;
/* ↑ マイヘブンリニューアル 2020/04/01 */
}
.section-list {
    padding: 10px 0 20px 0;
}
.section-sort {
    display: flex;
    max-height: 1289px;
    flex-wrap: wrap;
}
.listArrow {
    transform: rotate(180deg);
    margin-top: -2px;
}
.list-item {
    display: flex;
    /* width: 330px; */
    overflow: hidden;
}
.list-item.count {
    /* width: 90px; */
    align-items: center;
}
.list-item.count img {
    width: 20px;
    min-width: 20px;
}
.list-item img {
    vertical-align: middle;
}
.listIcon {
    width: 25px;
    margin-right: 9px;
}
.listName {
    max-width: 235px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin-right: 4px;
    font-size: 20px;
    font-weight: bold;
    line-height: 30px;
}

.sort-item {
    width: 420px;
    min-height: 220px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    margin-right: 25px;
    overflow: hidden;
    line-height: 27px;
}
.list-num {
    padding: 0 3px;
    margin-right: 9px;
    text-align: center;
    font-weight: bold;
    border: 1px solid #595960;
    height: 25px;
/* ↓ マイヘブンリニューアル 2020/04/01 */
    font-size: 1.6rem
/* ↑ マイヘブンリニューアル 2020/04/01 */
}
.listClor{
    color: #999;
/* ↓ マイヘブンリニューアル 2020/04/01 */
    font-size: 1.6rem;
/* ↑ マイヘブンリニューアル 2020/04/01 */
    margin-left: 5px;
    line-height: 30px;
}

.viewMore-rist {
    text-align: center;
}
.viewMore-button {
    border: solid 2px #5eb8a3;
    color: #5eb8a3;
    padding: 12px 138px;
    border-radius: 6px;
    font-weight: bold;
    font-size: 20px;
}
.viewMore-button:visited {
    color: #5eb8a3;
}
.viewOther-area {
    text-align: center;
    margin: 44px 0;
}
.viewOther-button {
    border: solid 2px #4C4C4C;
    color: #fff;
    background: #4C4C4C;
    padding: 12px 138px;
    border-radius: 6px;
    font-weight: bold;
    font-size: 20px;
}
.viewOther-button:visited {
    color: #fff;
}
.review-write-btn {
    border: 1px solid;
    border-radius: 23px;
    background: #DF5656;
    color: white;
    position: fixed;
    /* top: 753px; */
    padding: 11px 19px;
    font-weight: bold;
    font-size: 21px;
    left: calc((100% - -656px) / 2);
    z-index: 1;
    bottom: 50px;
}
/* 口コミランキング */


/* アコーディオン */
.acd {
    padding: 12px 20px 0;
}
.acd-label:after {
    content: '';
    width: 11px;
    height: 11px;
    border: 0px;
    border-bottom: solid 3px #5eb8a3;
    border-right: solid 3px #5eb8a3;
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    top: 7px;
    right: 9px;
    margin-top: -4px;
}
.acd-check{
    display: none;
}
.acd-label{
    color: #5eb8a3;
    display: block;
    font-size: 17px;
    margin-bottom: 1px;
    /*padding-bottom: 10px;*/
    width: 242px;
    position: relative;
}
.acd-content{
    /* border: 1px solid #333; */
    height: 0;
    opacity: 0;
    /* padding: 0 10px; */
    /* transition: .5s; */
    visibility: hidden;
/* ↓ マイヘブンリニューアル 2020/04/01 */
    font-size: 1.6rem;
/* ↑ マイヘブンリニューアル 2020/04/01 */
}
.acd-check:checked + .acd-label + .acd-content{
    height: auto;
    opacity: 1;
    padding-bottom: 10px;
    visibility: visible;
}



/* フッターCSS */
/* ↓ マイヘブンリニューアル 2020/04/01 */
/* #zenkokuFooterLink-wrap {
    background: white;
    padding: 20px;
}
#zenkokuFooterLink-wrap *{
    color: #333;
    margin: 0;
    padding: 0;
    text-align: left;
}
#zenkokuFooterLink-wrap .zenkokuFooter-title{
    margin: 10px 0 0 0;
    padding: 0;
    font-size: 13px;
    font-weight: bold;
}
#zenkokuFooterLink-wrap .zenkokuFooter-inner:after{
    clear: both;
    display: block;
    content: "";
}
#zenkokuFooterLink-wrap .zenkokuFooter-inner {
    margin: 10px 0 0;
}
#zenkokuFooterLink-wrap .zenkokuArea-list {
    float: left;
    width: 50%;
    margin: 0 0 5px 0;
}
#zenkokuFooterLink-wrap .zenkokuArea-list dt {
    float: left;
    font-size: 12px;
    margin: 0 15px 0 0;
    width: 100px;
    font-weight: bold;
}
#zenkokuFooterLink-wrap .zenkokuArea-list dd {
    float: left;
    width: 380px;
    margin: 2px 0 0 0;
}
#zenkokuFooterLink-wrap .zenkokuArea-list ul li {
    display: block;
    float: left;
    margin: 0 5px 0 0;
    padding: 0 5px 0 0;
    border-right: 1px solid #999;
    line-height: 14px;
}
#footer #zenkokuFooterLink-wrap .zenkokuArea-list ul li:nth-last-of-type(1) {
    border: none;
    margin: 0;
    padding: 0;
}
#zenkokuFooterLink-wrap  .zenkokuArea-list a {
    font-size: 11px;
}
div#footer {
    margin: 5px auto -30px;
    padding: 0 0 10px;
}
div#footer > .footermenu {
    height: auto;
    margin-bottom: 6px;
    overflow: hidden;
    border-top: 1px solid #ccc;
    margin: 15px 0 10px 0;
    padding: 10px 0 0 0;
    border-bottom: none;
}
div#footer ul,
div#footer address,
div#footer p,
div#footer div#end {
    padding: 0;
}
#footer .ritFootBox {
    padding: 12px 0 0;
    float: right;
}
#ritSpecialContents a {
    font-size: 10px;
}
#ritSpecialContents .ritSpCntMainCtg li {
    border-right: 1px solid #999;
    float: left;
    margin: 0 5px 0 0;
    padding: 0 5px 0 0;
    line-height: 12px;
}
#ritSpecialContents .ritSpCntMainCtg li:nth-last-of-type(1) {
    border: none;
} */
/* ↑ マイヘブンリニューアル 2020/04/01 */
/* フッターCSS */


/* アイコンアコーディオン */
.css-fukidashi {
      padding: 0;
      margin: 0;
    }
    .user-box {
      position: relative;
    }
    .fukidashi {
        top: 50px;
    }
    .fukidashi:after {
        position: absolute;
        top: -21px;
        left: 21px;
        border: 5px solid transparent;
        border-bottom: 14px solid #5eb8a3;
        width: 0;
        height: 0;
        pointer-events: none;
        content: " ";
    }
    .fukidashi:before {
        content: "";
        position: absolute;
        top: -17px;
        left: 21px;
        border: 5px solid transparent;
        border-bottom: 15px solid #ffffff;
        width: 0;
        height: 0;
        z-index: 1;
        pointer-events: none;

}
    .user-box:hover + .fukidashi {
      display: block;
    }


/* モーダルウィンドウ */

.modal{
    display: none;
    height: 100vh;
    position: fixed;
    top: 0;
    width: 100%;
/* ↓ マイヘブンリニューアル 2020/04/01 */
    /* z-index: 2; */
    z-index: 1000;
/* ↑ マイヘブンリニューアル 2020/04/01 */
    left: 0;
}
.modal.js-modal{
    overflow: auto;
}
.modal__bg{
    background: rgba(0, 0, 0, 0.5);
/* ↓ マイヘブンリニューアル 2020/04/01 */
    /* height: 150%; */
    height: 175%;
/* ↑ マイヘブンリニューアル 2020/04/01 */
    position: absolute;
    width: 100%;
}
.modal__content{
    background: #fff;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 527px;
    border-radius: 6px;
    box-shadow: 3px 3px 8px rgba(0,0,0,0.6);
}

/* 口コミを書く */
.review-btn-txt {
    border-bottom: 1px solid #bebaba;
    padding: 30px 30px 12px;
    font-weight: bold;
}
.revie-btn-box {
    background-color: white;
    border-radius: 6px;
    padding: 46px 24px;
    line-height: 1rem;
    text-align: center;
    margin: 0 auto;
    width: 100%;
}
.form-item{
    position: relative;
}
.revie-btn-box form {
    position: relative;
    -webkit-appearance: none;
    border-radius: 0 2px 2px 0;
    border-radius: 3px;
}
.revie-btn-box input[type="search"] {
    border: 1px solid #bababa;
    border-radius: 5px;
    width: 368px;
    left: 0;
    top: 0;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding: 10px 11px;
}
.revie-btn-box input[type="submit"] {
    background-color: #ffb951;
    border: none;
    padding: 0;
    position: absolute;
    right: 56px;
    top: 0px;
    height: 99%;
    width: 45px;
    background-image: url('/img/icon/icon_001_w1.png');
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 0 2px 2px 0;
    background-size: 27px auto;
}
.closeBtn {
    position: absolute;
    right: -20px;
    top: -22px;
    width: 46px;
}
input::placeholder {
  color: #bababa;
}

/* モーダル全国エリア */
.modal__content-wrap {
    position: relative;
    box-shadow: 5px 7px 8px rgba(0,0,0,0.6);
}
.modal__content-zenkokuArea {
    background: #fff;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 828px;
    border-radius: 6px;
}
.modal.js-modal .modal__content-zenkokuArea {
    top: 75%;
}
.modal__content_head {
    border-bottom: 1px #bababa solid;
    padding: 25px 18px 18px;
    font-weight: bold;
    font-size: 25px;
}
.modal__zenkokuFooter-inner {
    padding: 36px;
}
.modal__zenkokuArea-list dd {
    padding: 12px;
}
.modal__zenkokuArea-list dt {
    color: #5eb8a3;
    font-size: 20px;
    font-weight: bold;
        margin-bottom: 4px;
}
.modal__zenkokuArea-list ul {
    display: flex;
}
.modal__zenkokuArea-list li {
    width: 12%;
    font-size: 16px;
}
.modal__zenkokuArea-list {
    margin-bottom: 28px;
}


.inner-top {
    display: flex;
    margin-bottom: 25px;
    align-items: center;
}
.top-ken {
    font-size: 26px;
    font-weight: bold;
}
.choiceKen {
    padding: 8px;
    background: #ddd;
}
.innner-section {
    margin-bottom: 28px;
}
.modal__section-head {
    font-size: 23px;
    font-weight: bold;
    margin-bottom: 4px;
}
.modall__section-nav {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 7px;
}
.modal__section-list {
    width: 33%;
    margin-bottom: 7px;
}
/* entry */
.entry-text{
    padding: 10px;
    font-size: 20px;
}
.entry-text._bold{
    font-size: 20px;
    text-align: center;
    font-weight: bold;
    margin: 50px;
}
.entry-text._caution{
    text-align: center;
    color: #55B49E;
    font-size: 18px;
    margin: 30px 0 60px;
}
/* ↓ マイヘブンリニューアル 2020/04/01 */
div#global {
    margin: 0px auto;
    width: 990px;
    text-align: left;
    font-size: 1.2em;
}
p.local_city a {
    background: linear-gradient(rgb(255, 218, 47), rgb(255, 177, 0));
    padding: 5px 0px;
    border-radius: 2px;
    border: 1px solid rgb(255, 196, 88);
    border-image: none;
    width: 80px;
    text-align: center;
    color: white;
    font-size: 11px;
    margin-left: 5px;
    display: block;
}
.mb10 {
    margin-bottom: 10px;
}
div.keyword_search{
    height: 38px !important;
    width: 245px !important;
    padding: 4px !important;
}
.popbox dd {
    line-height: 1.5;
}
.popbox li {
    line-height: 1.5;
}
.popbox.poparea > a{
    color: #1d3994;
}
.popbox > a:hover,dd>a:hover,dt>a:hover,li>a:hover,p.local_city a:hover {
    text-decoration: underline;
}
.list-item > p{
    color: #595960;
}
.modal__content-wrap > * a:not(.top-ken) {
    font-size: 1.6rem;
}
.modal__content-wrap > * a {
    color: #595960;
}
.topheaderbox .near a{
    line-height: 19px !important;
}
.topheader *{
    box-sizing: content-box;
}
/* KeepFunction addpart */
#keepFunction .keepMenu .keepMenuItem.keepIcon.btn.keepActive{
    height: 40px;
}
#keepFunction .keepMenu .keepMenuItem.historyIcon.btn{
    height: 40px;
}
#keepFunction .keepMenu .keepMenuItem.chatIcon.btn{
    height: 40px;
}
#keepFunction .keepFunctionBox .closeMenuBtn{
    font-size: 10px;
}
#keepFunction .keepFunctionBox .keepChoose{
    font-size: 10px;
}
#keepFunction .keepFunctionBox .dateListItem{
    margin-left: 5px;
    font-size: 10px;
}
#keepFunction .keepMenuItem.keepIcon.btn{
    height: 40px;
}
#keepFunction .keepMenuItem.historyIcon.btn{
    height: 40px;
}
#keepFunction .historyBox.functionBox.keepOpen{
    font-size: 10px;
}
/* ↑ マイヘブンリニューアル 2020/04/01 */
.reviews-ranking_notice {
    font-size: 13px;
    margin: 10px 0 0 20px;
}
/* ↓ マイページランキング口コミ表示対応 @SMC 2020/05/20 */
.ranking {
    padding: 20px;
}
.sort-item {
    width: 440px;
    flex-wrap: wrap;
    border-radius: 6px;
    box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.16);
    padding: 16px;
}
.sort-item a:hover {
    text-decoration: none;
}
.sort-item-user {
    width: 420px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 3px;
}
.sort-item-review {
    color: #595960;
    line-height: 1.3;
    padding-bottom: 4px;
    margin-bottom: 8px;
    border-bottom: 1px dotted #666;
}
.sort-item-review__title {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 2px;
}
.sort-item-review__body {
    font-size: 12px;
}
.sort-item-girl {
    color: #595960;
}
.sort-item-girl__flex {
    display: flex;
}
.sort-item-girl__flexLeft {
    width: 100px;
    height: 100px;
    overflow: hidden;
    margin-right: 8px;
}
.sort-item-girl__flexLeft--girl {
    border-radius: 4px;
}
.sort-item-girl__flexRight {
    width: 282px;
    line-height: 1.5;
}
.sort-item-girl__name {
    font-size: 14px;
    font-weight: bold;
}
.sort-item-girl__info {
    font-size: 12px;
}
.sort-item-girl__shop {
    font-size: 12px;
}
.sort-item-girl__cat {
    font-size: 12px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.not-display-info {
    width: 100%;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
}
/* ↑ マイページランキング口コミ表示対応 @SMC 2020/05/20 */