@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,li {
    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;
}

/* ==================================================
parts-style
================================================== */
.button-outline {
    display: block;
    border: 2px solid  #DF5656;
    padding: 6px 16px;
    border-radius: 16px;
    color: #DF5656;
}

/* ==================================================
contents-style
================================================== */

/* ↓ マイヘブンリニューアル 2020/04/01 */
body{
    /* background: #F2F2F2; */
    background: #FFF;
    color: #13131e;
}
/* ↑ マイヘブンリニューアル 2020/04/01 */
.body-inner{
    position: relative;
	width:1010px;
	margin:0 auto;
}

/* --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: 999;
	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-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;
/* ↓ マイヘブンリニューアル 2020/04/01 */
    /* margin-bottom: 5px; */
    border-bottom: solid 2px #f2f2f2;
/* ↑ マイヘブンリニューアル 2020/04/01 */
    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{
    /* ↓ 口コミ（第３弾） 2019/11/06 */
    /* font-size:11px; */
    /* line-height:1.8; */
    font-size: 15px;
    line-height: 1.5;
    /* ↑ 口コミ（第３弾） 2019/11/06 */
	margin-top:4px;
}
.user_introduction .user-info .user-text a{
  /* ↓ 口コミ（第３弾） 2019/11/06 */
	/* color:#DF5656; */
/* ↓ マイヘブンリニューアル 2020/04/01 */
  /* color:#55D49E; */
  color:#5EB8A3;
/* ↑ マイヘブンリニューアル 2020/04/01 */
    /* ↑ 口コミ（第３弾） 2019/11/06 */
}
.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;
}
.userHeader .button-outline {
    position: absolute;
    top: 15px;
    right: 15px;
    /* ↓ 口コミ（第３弾） 2019/11/06 */
    /* font-size: 11px; */
    font-size: 16px;
    /* ↑ 口コミ（第３弾） 2019/11/06 */
    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;
}
/* ↓ 口コミ（第３弾） 2019/11/06 */
.head-pic {
    position: relative;
}
.authentication-pic {
    width: 62px;
    height: 23px;
    margin-left: 4px;
}
.head-user-assets {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    font-size: 15px;
    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
}
.head-user {
    position: absolute;
    bottom: 0px;
    background: white;
    padding: 10px 10px 0;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    width: auto;
    max-width: 70%;
}
.head-user .user-name {
    max-width: 85%;
    white-space: nowrap;
    font-size: 19px;
    font-weight: bold;
    text-overflow: ellipsis;
    overflow: hidden;
}
.head-user .user-name a {
	color: #000;
}
/* ↑ 口コミ（第３弾） 2019/11/06 */
/* --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;
/* ↓ マイヘブンリニューアル 2020/04/01 */
	/* color:#707070; */
	color:#13131e;
/* ↑ マイヘブンリニューアル 2020/04/01 */
	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;
/* ↓ マイヘブンリニューアル 2020/04/01 */
	/* margin-bottom:40px; */
/* ↑ マイヘブンリニューアル 2020/04/01 */
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
}
/* --contents-left-- */
.contents-left{
	width:660px;
	float:left;
/* ↓ マイヘブンリニューアル 2020/04/01 */
  /* border-right:2px solid #F2F2F2; */
/* ↑ マイヘブンリニューアル 2020/04/01 */
	box-sizing:border-box;
	min-height:882px;
/* ↓ マイヘブンリニューアル 2020/04/01 */
	/* padding-bottom:10px; */
/* ↑ マイヘブンリニューアル 2020/04/01 */
}
.contents-header{
	position:relative;
	padding:15px 20px;
}
.contents-header .total{
	font-size:12px;
	font-weight:bold;
	margin-left:10px;
}
/* --select-- */
#pulldown{
  position: relative;
  display: inline-block;
}
#pulldown:after {
	content: '';
	width: 6px;
	height: 6px;
	border: 0px;
	border-bottom: solid 2px #707070;
	border-right: solid 2px #707070;
	-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;
/* ↓ マイヘブンリニューアル 2020/04/01 */
  /* border-top:5px solid; */
	border-top: 2px solid;
/* ↑ マイヘブンリニューアル 2020/04/01 */
	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;
}
.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 .total_rate{
	position:absolute;
	left:130px;
	color:#df9b56;
	font-size:18px;
	padding:2px 15px;
	font-weight: bold;
}
.review-main .review-rate .list_total_rate{
	position:absolute;
	left:130px;
	color:#df9b56;
	font-size:18px;
	padding:2px;
	font-weight: bold;
}
.review-main .review-rate .icon-visited{
	position:absolute;
	top:2px;
	left:130px;
	color:#df9b56;
	border:1px solid #df9b56;
	border-radius:20px;
	font-size:10px;
	margin-left: 50px;
	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;
}
/* ↓ マイヘブンリニューアル 2020/04/01 */
.review-title{
  font-size: 16px;
}
/* ↑ マイヘブンリニューアル 2020/04/01 */
.review-main .review-title{
	margin-top:10px;
	font-weight:bold;
	word-wrap: break-word;
/* ↓ マイヘブンリニューアル 2020/04/01 */
	color: #000;
/* ↑ マイヘブンリニューアル 2020/04/01 */
}
.review-main .review-title a:hover{
	color:#DF5656;
}
.review-main .review-text{
	font-size:12px;
/* ↓ マイヘブンリニューアル 2020/04/01 */
	color: #000;
/* ↑ マイヘブンリニューアル 2020/04/01 */
	line-height:1.8;
	word-wrap: break-word;
	user-select:none;
	-webkit-user-select:none;
	-ms-user-select: none;
	-moz-user-select:none;
	-khtml-user-select:none;
	-webkit-user-drag:none;
	-khtml-user-drag:none;
}
.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;
/* ↓ マイヘブンリニューアル 2020/04/01 */
	color: #000;
	font-size: 15px;
/* ↑ マイヘブンリニューアル 2020/04/01 */
	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.inner{
	width: 80px;
    height: 80px;
    margin-right: 10px;
    border-radius: 8px;
    overflow: hidden;
    float: left;
}
.review-shop .shop-icon a{
	width:45px;
	height:45px;
	display:block;
}
.prof-line{
	border-bottom: 1px dotted #333;
    padding-bottom: 5px;
    margin-bottom: 5px;
    font-size: 12px;
}
.review-shop .shop-info{
	overflow: hidden;
    text-align: left;
    color: #333;
    margin-bottom: 10px;
    font-size: 12px;
}
.review-shop .shop-info .girls-name{
	font-weight: bold;
}
.review-shop .shop-info .shop-name{
	margin-top:5px;
	font-weight: bold;
}
.review-shop .shop-info .shop-name-girl{
	font-weight: normal;
}
.review-shop .shop-info .shop-data{
	margin-top:3px;
}
.review-foot{
	overflow:hidden;
	line-height:22px;
}
.review-foot .reference{
	text-align: center;
	font-size:12px;
	position:relative;
/* ↓ マイヘブンリニューアル 2020/04/01 */
	color: #000;
/* ↑ マイヘブンリニューアル 2020/04/01 */
}
.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{
	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 .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;
    /* ↓ H2102_称号 2024/06/03 */
    /* width:620px; */
    width: 100%;
    /* ↑ H2102_称号 2024/06/03 */
	padding:20px 0;
}
.item-follew:last-child .item-link .follew{
	border-bottom:0;
}
.user-icon-area {
    width: 50px;
    display: inline-block;
    margin-right: 8px;
}
.user-icon-area img{
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

.item-follew .user-info{
    /*width:620px;*/
    /* ↓ H2102_称号 2024/06/03 */
    /* ↓ H2102_称号(#22334) 2024/06/03 */
    /* width: 100%; */
    /* ↑ H2102_称号(#22334) 2024/06/03 */
    /* ↑ H2102_称号 2024/06/03 */
    display: inline-block;
}
.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;
}
.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;
    /* ↓ H2102_称号 2024/06/03 */
    /* width:140px; */
    width: 26%;
    /* ↑ H2102_称号 2024/06/03 */
}
.myreview-detail .list dd{
	float:left;
    /* ↓ H2102_称号 2024/06/03 */
    /* width:478px; */
    width: 50%;
    /* ↑ H2102_称号 2024/06/03 */
}
.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:#8e8888;
}
.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;
    /* ↓ H2102_称号 2024/06/03 */
    /* width: 618px; */
    width: 100%;
    /* ↑ H2102_称号 2024/06/03 */
	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;
	word-wrap: break-word;
}
.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:#707070;
	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 #707070;
	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 #707070;
	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;
}
.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{
/* ↓ マイヘブンリニューアル 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;
/* ↓ マイヘブンリニューアル 2020/04/01 */
	/* margin-top:20px; */
/* ↑ マイヘブンリニューアル 2020/04/01 */
}
.pager a{
	line-height:55px;
	width:28%;
	float:left;
	text-align:center;
	font-size:13px;
/* ↓ マイヘブンリニューアル 2020/04/01 */
	color: #13131e;
/* ↑ マイヘブンリニューアル 2020/04/01 */
}
.pager a:hover{
	background:rgba(242, 242, 242, 0.5);
}
.pager .prev img{
	margin-right:20px;
}
.pager .prev._disable{
	background-color: #eee;
}
.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);
}
.pager .next._disable{
	background-color: #eee;
}
/* --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;
    /* ↓ H2102_称号 2024/06/03 */
    /* width:503px; */
    width: 82%;
    /* ↑ H2102_称号 2024/06/03 */
}
.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;
    /* ↓ H2102_称号 2024/06/03 */
    /* width:523px; */
    width: 82%;
    /* ↑ H2102_称号 2024/06/03 */
}
.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--*/
/* ↓ 口コミ（第３弾） 2019/11/06 */
.right-status-title{
    background-color: #55B49E;
    padding: 10px 15px;
    font-weight: bold;
    color: #FFFF;
}
.status .list:first-child{
	margin-top:0px;
}
.status .user-ranking-top{
    position: absolute;
    font-size: 10px;
    right: 20px;
    color: #55B49E;
}
.user-ranking-item .icon-my-ranking{
    padding: 2px 11px;
    border-radius: 3px;
    font-size: 10px;
    background-color: #DF5656;
    color: #FFFF;
    position: absolute;
    margin-top: 7px;
}
.review-ranking .user-ranking-title{
    position: absolute;
    background-color: #FFFF;
    padding: 0 10px;
    margin-left: 10px;
    font-weight: bold;
    color: #878787;
}
.review-ranking .user-ranking-item{
    border: solid 3px #878787;
    border-radius: 8px;
    min-height: 75px;
    padding: 20px 15px;
    margin: 10px 0;
}
.review-ranking .user-ranking-item._last{
    margin: 20px 0;
}
.review-ranking .user-ranking-detail{
    display: inline-flex;
    position: absolute;
    right: 40px;
    width: fit-content;
}
.detail-item._text{
    font-size: 10px;
    padding-top: 15px;
}
.detail-item._bold{
    font-weight: bold;
}
.detail-item._rank{
    font-size: 25px;
    font-weight: bold;
}
.detail-item._icon{
    padding: 10px 0 0 15px;
}
/* ↑ 口コミ（第３弾） 2019/11/06 */
.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%;
/* ↓ マイヘブンリニューアル 2020/04/01 */
	/* color:#707070; */
	color:#13131e;
/* ↑ マイヘブンリニューアル 2020/04/01 */
}
.status .list dd .profile-data-select:hover{
	color:#DF5656;
	cursor:pointer;
}
.status .list dd .profile-data-select option{
/* ↓ マイヘブンリニューアル 2020/04/01 */
	/* color:#707070; */
	color:#13131e;
/* ↑ マイヘブンリニューアル 2020/04/01 */
}
/* --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;
/* ↓ マイヘブンリニューアル 2020/04/01 */
	/* color:#707070; */
    color: #13131e;
/* ↑ マイヘブンリニューアル 2020/04/01 */
}
.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;
/* ↓ マイヘブンリニューアル 2020/04/01 */
	/* color:#707070; */
	color:#13131e;
/* ↑ マイヘブンリニューアル 2020/04/01 */
}
.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;
/* ↓ マイヘブンリニューアル 2020/04/01 */
	/* color:#707070; */
	color:#13131e;
/* ↑ マイヘブンリニューアル 2020/04/01 */
}
.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;
/* ↓ マイヘブンリニューアル 2020/04/01 */
	/* color:#707070; */
	color: #13131e;
/* ↑ マイヘブンリニューアル 2020/04/01 */
	-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;

}

/* レーティングの星を表示 */
.review-average-star-icon.star_on {
    background-image: url('/img/icon/star-fill.svg')
}
.review-average-star-icon.star_half {
    background-image: url('/img/icon/star-half.svg')
}
.review-average-star-icon.star_off {
    background-image: url('/img/icon/star-border.svg')
}

.review-average-star-icon.in_item {
    width: 25px;
    height: 25px;
    vertical-align: top;
}
/* 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;
}
/* ↓ 口コミ（第３弾） 2019/11/06 */
/* ランキング説明アコーディオン */
.css-fukidashi {
    padding: 0;
    margin: 0;
}
.user-box {
    position: relative;
}
.fukidashi {
    display: none;
    width: 660px;
    position: absolute;
    top: 75px;
    padding: 16px;
    line-height: 1.4;
    font-size: 18px;
    border-radius: 5px;
    border: 2px solid #5eb8a3;
    background: #ffffff;
    box-shadow: 3px 3px 8px rgba(0,0,0,0.6);
    white-space: normal;
    z-index: 1;
}
.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;
}
.favorite-head {
    width: 100%;
    background: #5EB8A3;
}
.status-title {
    color: white;
    padding: 10px 0 10px 16px;
    font-weight: bold;
/* ↓ マイヘブンリニューアル 2020/04/01 */
    font-size: 15px;
/* ↑ マイヘブンリニューアル 2020/04/01 */
    /* margin-bottom: 12px; */
}
.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;
/* ↓ マイヘブンリニューアル 2020/04/01 */
    font-size: 1.6rem;
/* ↑ マイヘブンリニューアル 2020/04/01 */
}
.rank-area-box {
    display: flex;
        align-items: center;
/* ↓ マイヘブンリニューアル 2020/04/01 */
    justify-content: space-between;
    height: 21px;
/* ↑ マイヘブンリニューアル 2020/04/01 */
}
.my-rank {
    background: red;
    color: white;
    padding: 0 7px;
    font-size: 15px;
    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: 15px;
/* ↓ マイヘブンリニューアル 2020/04/01 */
    font-size: 15px;
/* ↑ マイヘブンリニューアル 2020/04/01 */
}
.count-pic {
    vertical-align: middle;
    margin: 0 4px;
}
.rank-num {
/* ↓ マイヘブンリニューアル 2020/04/01 */
    /* position: absolute; */
    /* right: 8px; */
    font-size: 16px;
/* ↑ マイヘブンリニューアル 2020/04/01 */
}
.review-main .review-rate .icon-stars .star:nth-of-type(n+2) {
    margin-left: -5px;
}
.rank-view-more:after {
    content: '';
    width: 10px;
    height: 10px;
    border: 0px;
    border-bottom: solid 2px #5EB8A3;
    border-right: solid 2px #5EB8A3;
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(313deg);
    position: absolute;
    right: 22px;
    margin-top: 5px;
    z-index: 1;
}
/* ↑ 口コミ（第３弾） 2019/11/06 */
/* ↓ マイヘブンリニューアル 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;
}
.user-info,.shop-info,.girl-info > p{
    color: #13131e;
}
.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;
}
.topheaderbox .near a{
    line-height: 19px !important;
}
.topheader *{
    box-sizing: content-box;
}
/* ↑ マイヘブンリニューアル 2020/04/01 */
.kitene_send {
	cursor: pointer;
	width: 90px;
    height: 60px;
	position: fixed;
    right: 40px;
    bottom: 20px;
	z-index: 9999;
	background: #ec6e83;
    border: 1px solid #F28;
    color: #FFF;
    font-size: 14px;
    font-weight: bold;
    display: flex;
    align-items: center;
    border-radius: 5px;
}
.kitene_send.sent{
	background: #C0C0C0;
    color: #808080;
    border: 0;
}
.kitene_send>div {
	text-align: center;
    width: 100%;
}
.kitene_send.sent .kitene_text {
	display: none;
}
.kitene_send.sent .kitene_zumi_text {
	display: block;
}
.kitene_send .kitene_zumi_text {
	display: block;
}
.kitene_send .kitene_zumi_text {
	display: none;
}
/* ↓お礼写メ日記追加 @SMC 2021/06/29 */
.special_thanks_icon{
	position: absolute;
    top: 0;
    right: 15px;
    width: 45px;
}
.special_thanks_icon.review_detail{
	position: absolute;
    top: 10px;
    right: 20px;
    width: 45px;
}
.thanks_diary{
	font-size: 12px;
    /* ↓ H2102_称号 2024/06/03 */
    /* margin: 0 20px 20px; */
    margin: 0 0 20px;
    width: 100%;
    /* ↑ H2102_称号 2024/06/03 */
}
.thanks_diary_info{
	display: flex;
    border: 2.5px solid #878787;
    border-radius: 3px;
	height: 85px;
}
.thanks_diary_img{
/*↓ お礼写メ日記改善対応 2021/07/20*/
	/*width: 90px;*/
    /*height: 80px;*/
	position: absolute;
    top: 0;
    bottom: 0;
    margin: auto!important;
/*↑ お礼写メ日記改善対応 2021/07/20*/
    image-rendering: -webkit-optimize-contrast;
}
.thanks_diary_info_detail{
/*↓ お礼写メ日記改善対応 2021/07/20*/
	/* margin-left: 10px; */
/*↑ お礼写メ日記改善対応 2021/07/20*/
	padding-left: 10px;
	flex: 1;
	color: #000;
	background-color: #FFD5EC;
}
/* ↑お礼写メ日記追加 @SMC 2021/06/29 */
/*↓ お礼写メ日記改善対応 2021/07/20*/
.thanks_diary_info_img{
	width: 90px;
    height: 80px;
    position: relative;
    overflow: hidden;
}
.thanks_diary_title{
	display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
	color: red;
    font-size: 16px;
    font-weight: bold;
}
.thanks_diary_body {
	display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}
.thanks_diary_post_time{
	padding-top: 5px;
}
.thanks_diary_girls_name{
	padding-top: 2px;
    font-weight: bold;
}
/*↑ お礼写メ日記改善対応 2021/07/20*/
/* ↓ H2102_称号 2024/06/03 */
.contents {
    display: inline-block;
    width: 100%;
    margin-top: 20px;
}
.contents-block {
    width: 980px;
    margin: 0 auto;
}
.contents-block-box {
    border-radius: 20px!important;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.3)!important;
}
.contents-block-box-user {
    padding: 15px 24px 15px 24px;
}
.contents-block-box-rightmenu_shogo {
    width: 100%;
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}
.contents-block-box_others {
    width: 100%;
    margin-top: 16px;
    display: flex;
    align-items: flex-start;
}
.contents-block-box_others .contents-right {
    width: calc(38% - 20px);
}
.contents-block-box_othersbox {
    border-radius: 20px!important;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.3);
    width: 64%;
}
.contents-block-box-user {
    display: flex;
    align-items: flex-start;
}
.contents-block-box-user .user-top {
    padding: 10px 10px 12px 0;
    width: calc(100% - 328px);
    background-color: #fff;
}
.user-top .user-top-wrap {
    display: flex;
    align-items: center;
    position: relative;
}
.user-top-wrap-txt {
    padding: 20px 0 0 0;
    position: relative;
    font-size: 14px;
}
.user-top-wrap-txt p {
    width: 96%;
    word-wrap: break-word;
}
.user-top-wrap-txt a {
    position: relative;
    float: right;
    left: 4.3%;
    color: #FA8E00;
}
.userrank {
    /* ↓ H2213_称号フェーズ２ 2024/11/26 */
    /* border: 4px solid var(--iconColor); */
    /* ↑ H2213_称号フェーズ２ 2024/11/26 */
    border-radius: 50%;
    width: 84px;
    height: 84px;
    margin-right: 0;
    margin-top: 0;
    position: relative;
}
.userrank_none {
    background-color: rgba(0, 0, 0, 0);
    border-radius: 50%;
    width: 84px;
    height: 84px;
    margin-right: 0;
    margin-top: 0;
    position: relative;
}
.userrank a {
    width: 76px;
    height: 76px;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    border-radius: 50%;
}
.userrank_box {
    display: block;
    width: calc(100% - 84px);
    padding: 0 0 0 20px;
}
.userrank_icon {
    /* ↓ H2213_称号フェーズ２ 2024/11/26 */
    /* background-color: var(--shogoColor); */
    /* ↑ H2213_称号フェーズ２ 2024/11/26 */
    padding: 2px 24px;
    border-radius: 12px;
    color: #fff;
    font-size: 14px;
    display: inline-block;
    text-shadow: 1px 1px 3px #888;
    max-width: calc(100% - 65px);
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.user-top-wrap-name {
    font-size: 18px;
    font-weight: bold;
}
.user-top-wrap-name a {
    color: #555555;
}
.user-top-wrap-state {
    margin: -2px 0 0 0;
    font-size: 1.3em;
    color: #999;
}
/* ↓ H2213_称号フェーズ２ 2024/11/26 */
/* .comingsoon { */
/*    width: 318px; */
/*    height: 100%; */
/*    background-color: #dadada; */
/*    color: #fff; */
/*    text-align: center; */
/*    line-height: 450%; */
/*    font-size: 26px; */
/*    border-radius: 20px 0 20px 0; */
/*    margin: 10px 0 12px 10px; */
/* } */
.userrank_banner {
    width: 340px;
    height: 128px;
    background-color: #dadada;
    color: #fff;
    text-align: center;
    line-height: 170px;
    border-radius: 20px;
    margin: 10px 0 12px 10px;
    padding: 15px 20px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: center;
}
.userrank_banner_none{
    width: 340px;
    height: 128px;
    margin: 10px 0 12px 10px;
}
.user-top-rank-title {
    font-size: 20px;
    font-weight: bold;
    text-align: left;
    line-height: normal;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.4);
}
.user-top-rank-txt {
    display: flex;
    align-items: center;
    font-size: 14px;
    text-align: left;
    line-height: normal;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.4);
    cursor: pointer;
}
.user-top-rank-txt img {
    width: 14px;
    margin-right: 5px;
}
.user-top-rank-txt span {
    color: #fff;
}
/* ↑ H2213_称号フェーズ２ 2024/11/26 */
.icon_menu {
    display: flex;
    align-items: center;
    background-color: #fff;
    padding: 5px 24px 24px 24px;
}
.mm_list {
    width: 25%;
    padding: 0 5px;
    box-sizing: border-box;
    margin-top:5px;
}
.mm_list_img {
    width: 40%;
    display: block;
    margin: 0 auto;
    max-width: 34px;
}
.mm_list_txt {
    font-size: 12px;
    text-align: center;
    display: block;
    padding: 3px 0;
}

.userrank_inbox {
    border-radius: 20px;
    padding: 10px 24px;
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.3);
    background-color: #fff;
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
    margin-left: 20px;
    color: #13131e;
}
.userrank_inbox_icon {
    width: 43px;
}
.number_titles_text {
    font-size: 14px;
    padding: 5px;
}
.number_titles_icon {
    font-size: 24px;
    font-weight: bold;
    position: absolute;
    top: 50%;
    right: 24px;
    transform: translate(0, -50%);
}
.userHeader {
    position: relative;
    background-color: #fff;
    padding: 24px 24px 5px 24px;
    margin: 0 0 10px 0;
    width: 100%;
    border-bottom: none;
}
.userHeader .info {
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.userHeader .info .info-box {
    text-align: center;
    width: 20%;
    padding-bottom: 10px;
    border-bottom: 4px solid #fff;
}
.userHeader .info .info-box a {
    color: #555555;
}
.userHeader .info .info-box.active {
    border-bottom: 4px solid #FA8E00!important;
}
.userHeader .info .info-box.active a {
    color: #FA8E00!important;
}
.info .info-box .info-box-num {
    font-size: 20px;
    font-weight: bold;
}
.info .info-box .info-box-label {
    font-size: 14px;
}

.contents-header {
    display: flex;
    align-items: center;
    padding: 15px 0 10px 0;
    margin-bottom: 4px;
    background: #FFFFFF;
}
#pulldown {
    position: relative;
    display: inline-block;
}

#pulldown:after {
    content: '';
    width: 6px;
    height: 6px;
    border: 0px;
    border-bottom: solid 2px #707070;
    border-right: solid 2px #707070;
    -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 20px 0 10px;
    border: 1px solid #F2F2F2;
    border-radius: 13px;
}
.contents-header>.total {
    font-size: 12px;
    padding: 0 0 0 5px;
}
.icon-checkbox {
    position: relative;
    top: 0px;
    display: inline-block;
    width: 20px;
    height: 20px;
    object-fit: cover;
    background-repeat: no-repeat;
    background: #BCBCBC;
    border-radius: 4px;
    margin: 0 4px 0 0;
}
.contents-header .filter {
    font-size: 12px;
    line-height: 36px;
    position: absolute;
    right: 20px;
    top: 10px;
}
.checkbox-inner {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.icon-checkbox img {
    width: 14px;
    height: 11px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}
.contents-item {
    display: block;
    padding: 8px 0;
    margin-bottom: 4px;
    background: #FFFFFF;
    word-wrap: break-word;
    width: 100%;
}
.filter>input {
    display: none;
}

.contents-block-box_othersbox2 {
    width: calc(100% - 20px);
    margin: 0 0 0 20px;
}
.head-rank-area-box {
    background-color: #fa9600;
    padding: 24px;
    border-radius: 20px;
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.3);
    position: relative;
    width: 100%;
}
.head-rank-area-inbox {
    width: 100%;
}
.rank-area-head {
    font-weight: bold;
    font-size: 2.1rem;
    color: #fff;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
}
.my-rank-new {
    background-color: #000!important;
    color: #fff!important;
    border-radius: 0;
    margin-right: 4px;
    padding: 3px 8px;
    font-size: 18px;
    font-weight: bold;
    display: inline-block;
}

.my-reviews-count {
    color: #000;
}
.my-reviews-count_rank {
    font-size: 2.9rem;
    line-height: 35px;
}
.my-reviews-count_subject {
    margin: 0 0 0 5px;
    vertical-align: middle;
    font-weight: normal;
}
.my-reviews-count_subject img {
    width: 20px;
    margin: 0 0 -2px 0;
    vertical-align: baseline;
}
.my-rank_txt {
    text-align: left;
    color: #000;
    font-size: 14px;
    font-weight: bold;
    margin: 2px 0 6px 0;
}
.reviews-ranking_btn {
    background-color: #fff;
    color: #fa9600;
    font-weight: bold;
    padding: 10px 15px;
    border-radius: 30px;
    font-size: 16px;
    text-align: center;
    box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.3);
    display: block;
    width: 130px;
    margin: 15px auto 0 auto;
}

.review-discount-code {
    margin: 20px 0 0 0;
    background-color: #fff;
    padding: 24px;
    border-radius: 20px;
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.3);
    position: relative;
    width: 100%;
}
.review-discount-code_title {
    display: block;
    font-size: 18px;
    font-weight: bold;
    margin: 0 0 10px 0;

}
.review-discount-code_btn {
    background-color: #000;
    color: #fff;
    font-weight: bold;
    padding: 10px 15px;
    border-radius: 30px;
    font-size: 16px;
    text-align: center;
    box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.3);
    display: block;
    width: 140px;
    margin: 15px auto 0 auto;
}

main {
    position: relative;
    background-color: #fff;
    padding: 5px 24px 24px 24px;
    margin: 0 0 10px 0;
    width: 100%;
}

.item-user {
    padding: 15px 0;
    border-top: 2px solid;
    border-color: #F2F2F2;
    font-size: 15px;
}
.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-average-star-icon.in_item {
    width: 25px;
    height: 25px;
    vertical-align: top;
}
.review-average-star-icon.star_on {
    background-image: url(/img/icon/star-fill.svg);
}
.review-average-star-icon.star_off {
    background-image: url(/img/icon/star-border.svg);
}
.review-average-star-icon.star_half {
    background-image: url(/img/icon/star-half.svg);
}
.review-main .review-rate .list_total_rate {
    position: absolute;
    left: 130px;
    color: #df9b56;
    font-size: 18px;
    padding: 2px;
    font-weight: bold;
}
.review-main .review-rate .icon-visited-detail {
    position: absolute;
    top: 13px;
    left: 150px;
    color: #df9b56;
    border: 1px solid #df9b56;
    border-radius: 20px;
    font-size: 10px;
    margin-left: 50px;
    padding: 2px 15px;
}
.review-main .review-title {
    margin-top: 10px;
    font-weight: bold;
    word-wrap: break-word;
    color: #000;
}
.review-title {
    font-size: 18px;
}
.review-foot._user {
    line-height: 30px;
}
.review-foot {
    overflow: hidden;
    line-height: 22px;
}
.review-foot .visited-date {
    font-size: 12px;
    color: #aaa;
}
.review-main .review-text {
    font-size: 14px;
    color: #000;
    line-height: 1.5;
    word-wrap: break-word;
    user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    margin: 0;
}
.review-main .review-text span {
    color: #fa9600;
}


.review-foot .reference {
    text-align: center;
    font-size: 12px;
    position: relative;
    color: #000;
}
.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._user .reference .reference-count {
    top: 5px;
}
.review-shop {
    overflow: hidden;
    font-size: 14px;
    color: #000;
    font-size: 15px;
    margin-bottom: 10px;
}
.review-shop .shop-icon.inner {
    width: 80px;
    height: 80px;
    margin-right: 10px;
    border-radius: 8px;
    overflow: hidden;
    float: left;
}
.review-shop .shop-info {
    overflow: hidden;
    text-align: left;
    color: #333;
    margin-bottom: 10px;
    font-size: 12px;
    width: 83%;
}
.review-shop .shop-info .girls-name {
    font-weight: bold;
}
.prof-line {
    border-bottom: 1px dotted #333;
    padding-bottom: 5px;
    margin-bottom: 5px;
    font-size: 12px;
}
.review-shop .shop-info .shop-data {
    margin-top: 3px;
}


.new-review-main{
    position: relative;
    background-color: #fff;
    padding: 5px 24px 24px 24px;
    margin: 0 0 10px 0;
    width: 100%;
}
.header-right{
    height: 100%;
}
.header-right .user-follow{
    display:none;
}
.header-right .user-follow:checked + .button-outline{
    background:#FA8E00;
    color:#FFFFFF;
}
/* ↓ H2213_称号フェーズ２ 2024/11/26 */
/* .header-right .button-outline { */
/*     font-size: 16px; */
/*     font-weight: bold; */
/*     color: #FA8E00; */
/*     text-align: center; */
/*     width: 57%; */
/*     float: right; */
/*     margin-bottom: 10px; */
/*     box-shadow: 2px 2px 2px 0px rgba(0, 0, 0, 0.3); */
/*     display: block; */
/*     border: 2px solid  #FA8E00; */
/*     padding: 6px 16px; */
/*     border-radius: 40px; */
/* } */
.header-right .button-outline {
    float: right;
    display: block;
    background-color: #fff;
    border: solid 1px #f8860a;
    border-radius: 21px;
    width: 214px;
    padding: 10.5px 20px;
    text-align: center;
    color: #f8860a;
    box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.3);
    font-size: 14px;
    font-weight: bold;
}
/* ↑ H2213_称号フェーズ２ 2024/11/26 */
.header-right .button-outline:hover {
    background: #FA8E00;
    color:#FFFFFF;
}
.header-right .user-follow{
    display:none;
}
.header-right .button-outline._user{
    cursor:pointer;
    -webkit-transition: all 0.15s ease;
    transition: all 0.15s ease;
}
.header-right .user-follow:checked + .button-outline{
    background:#FA8E00;
    color:#FFFFFF;
}


.new-review-main .status:last-child{
    color: #555555;
    padding-left: 25px;
    border-bottom: 0;
    border-top: 5px solid #F2F2F2;
    padding: 20px 0 0 0;
}

.new-review-main .favorite-head-first {
    width: 100%;
}
.new-review-main .favorite-head-second {
    width: 100%;
    border-top: 5px solid #F2F2F2;
}
.new-review-main .status-title {
    color: #555555;
    padding: 10px 0 10px 25px;
    font-weight: bold;
    font-size: 16px;
}

.new-review-main .status .list{
    padding: 0 25px;
    margin-bottom: 20px;
    width: 100%;
    font-size: 10px;
    display: flex;
    align-items: center;
    position: relative;
}

.new-review-main .status .list dt{
    width: 200px;
    font-size: 14px;
}
.new-review-main .status .list dd{
    font-size: 14px;
    width: 65%;
}

.new-review-main .status .list:first-child {
    margin-top: 0;
}

.profile_none {
    font-size: 15px;
}
.body-inner-new {
    position: relative;
    width: 100%;
}
.user_text {
    width: 100%;
    padding: 0 25px;
    margin: 15px 0;
    font-size: 14px;
    line-height: 1.8;
    display: inline-block;
}
/* ↑ H2102_称号 2024/06/03 */
