@charset "UTF-8";

/*----------------- TOPページ -----------------*/

#index_top #contents > div {
	width: auto;
	max-width: 100%;
	min-width: 970px
}
#index_top #main {
	margin-left: 200px;
	background-color: transparent;
	box-shadow: none;

	/* box-shadowを可視化するためのスタイルだが、
	不用意にコンテンツ内でfloatを解除するとサイドメニューの下にぶら下がってしまうので注意 */
	overflow: visible;
	width: auto;
}
/* カルーセルパネル */
#index_top #film_roll_slider {
	display: none;
}
#index_top #carousel_panel {
	position: relative;
	box-shadow: 0 0 3px rgba(0, 0, 0, .3);
	margin-bottom: 103px;
}
#index_top #carousel_panel > div ul {
	background-color: #ddd;
	height: 0;
	overflow: hidden;
}
#index_top #carousel_panel > div li {
	margin: 0 2px;
	background: #fff;
}
#index_top #carousel_panel img.carousel_panel_pager {
	position: absolute;
	top: 67px;
	opacity: .4;
	transition: .3s;
	width: 36px;
	height: 36px;
}
#index_top #carousel_panel img.carousel_panel_pager[data-target="prev"] {
	left: 8px;
}
#index_top #carousel_panel img.carousel_panel_pager[data-target="next"] {
	right: 8px;
}
#index_top #carousel_panel:hover img.carousel_panel_pager {
	opacity: .9;
}
#index_top #carousel_panel > ul {
	float: left;
	width: 100%;
	padding-top: 12px;
	text-align: center;
	white-space: nowrap;
	word-wrap: normal;
	overflow: hidden;
}
#index_top #carousel_panel > ul li {
	display: inline-block;
	box-shadow: 0 0 3px rgba(0, 0, 0, .3);
	margin: 3px 5px;
	border: 2px solid #fff;
	position: relative;
}
#index_top #carousel_panel > ul li.selected {
	border-color: #d14848;
}
#index_top #carousel_panel > ul li.selected:after {
	content: "";
	float: left;
	position: relative;
	left: 83px;
	bottom: 9px;
	width: 16px;
	height: 16px;
	margin-left: -16px;
	background-color: #d14848;
 	transform: rotate(45deg);
}
#index_top #carousel_panel > ul li img {
	position: relative;
	z-index: 2;
}
#index_top #carousel_panel .remaining_time_wrap {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: 5px;
	color: #fff;
	border: 2px solid #fff;
	padding: 7px 0 0;
	line-height: 1;
	font-weight: bold;
	background: rgba(200,0,0,.8);
	font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
	z-index: 100;
	animation: remainTimer 3s linear infinite;
}
#index_top #carousel_panel .remaining_time_wrap > span {
	font-size: 24px;
	color: #ffe040;
	margin-left: 3px;
	font-weight: bold;
	letter-spacing: 2px;
	position: relative;
}
/* バナーの種類ごとに個別のクラスがspanに付与される .remaining_time_xx */

@keyframes remainTimer {
	0% {
		opacity: 1;
	}
	10% {
		opacity: 0;
	}
	45% {
		opacity: 0;
	}
	55% {
		opacity: 1;
	}
	100% {
		opacity: 1;
	}
}
#index_top #carousel_panel .remaining_time_wrap > span::before {
	content: "hour";
	position: absolute;
	font-size: 10px;
	bottom: -8px;
	left: 3px;
	transform: scale(.9);
	letter-spacing: initial;
}
#index_top #carousel_panel .remaining_time_wrap > span::after {
	content: "minute";
	position: absolute;
	font-size: 10px;
	bottom: -8px;
	right: 0px;
	transform: scale(.9);
	letter-spacing: initial;
}
#index_top #carousel_panel .remaining_time_wrap.day_hour {
	padding-top: 9px;
}
#index_top #carousel_panel .remaining_time_wrap.day_hour > span {
	margin-left: 0;
}
#index_top #carousel_panel .remaining_time_wrap.day_hour > span::before {
	display: none;
}
#index_top #carousel_panel .remaining_time_wrap.day_hour > span::after {
	display: none;
}
#index_top #carousel_panel .remaining_time_wrap.day_hour > span > span {
	font-size: 11px;
	letter-spacing: initial;
	margin-right: 2px;
}
/* オンライン一覧 */
#index_top #online_girls {
	box-shadow: 0 0 3px rgba(0, 0, 0, .3);
	min-height: calc(100vh - 385px);
}
/* スクロールするインフォメーション */
#index_top .animated_info {
	margin: 0 0 12px;
}
#index_top .animated_info > div {
	height: 26px;
	padding: 0 5px;
}
#index_top .animated_info > div > span {
	display: block;
}

/* 本文 */
#index_top #main .body {
	padding: 15px 11px 10px;
	overflow: hidden;
}
/* オススメガール */
#index_top #main > .pickup {
	background: #fff6db;
	background: linear-gradient(#fff, #fff6db);
	margin: 25px 0 0;
	box-shadow: 0 0 3px rgba(0, 0, 0, .3);
	position: relative;
}
#index_top #main > .pickup:after {
	content: "";
	position: absolute;
	top: 2px;
	right: 3px;
	display: block;
	background: url(/images/btn/btn_function@2x.png) -489px -205px no-repeat;
	background-size: 673px 236px;
	width: 66px;
	height: 31px;
	cursor: pointer;
	pointer-events: none;
}
#index_top #main > .pickup.today:after {
	background-position-y: -123px;
}
#index_top #main > .pickup.close:after {
	background-position-y: -164px;
}
#index_top #main > .pickup.close.today:after {
	background-position-y: -82px;
}
#index_top #main > .pickup.close > .body {
	display: none;
}
#index_top #main > .pickup .title {
	border-bottom: 1px solid #8c6900;
	cursor: pointer;
}
#index_top #main > .pickup .title h2 {
	background-position: 0 -36px;
}
#index_top #main > .pickup a.osusume_box_1 {
	position: relative;
	display: block;
	float: left;
	width: 233px;
	border: 1px solid #dca702;
	margin: 0 5px 8px 4px;
	background: #fff;
	border-radius: 3px;
	box-shadow: 0 0 3px rgba(0,0,0,.1);
}
#index_top #main > .pickup a.osusume_box_1:after {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 99999;
	margin: auto;
	background-image: url(/images/spacer.gif);
}
#index_top #main > .pickup a.osusume_box_1:hover {
	opacity: 0.7;
	text-decoration: none;
}
#index_top #main > .pickup a.osusume_box_1 span {
	display: block;
}
#index_top #main > .pickup a.osusume_box_1 .status {
	width: 115px;
	height: 0;
	padding-top: 22px;
	margin: 5px 0 3px -4px;
	overflow: hidden;
	float: left;
	background-image: url(/images/icon/icon_status.png);
	background-repeat: no-repeat;
}
#index_top #main > .pickup a.osusume_box_1 .status.online { background-position: 0 0; background-image: url(/images/icon/icon_status_anime.gif); }
#index_top #main > .pickup a.osusume_box_1 .status.chat { background-position: 0 -32px; }
#index_top #main > .pickup a.osusume_box_1 .status.wait { background-position: 0 -64px; }
#index_top #main > .pickup a.osusume_box_1 .status.appear_time {
	background-position: 0 -268px;
	text-indent: .5em;
	color: #555;
	background-color: transparent;
	vertical-align: middle;
	height: 22px;
	padding-top: 0;
	line-height: 20px;
}
#index_top #main > .pickup a.osusume_box_1 .status.appear_time:before {
	content: "IN：";
	font-size: 90%;
}
#index_top #main > .pickup a.osusume_box_1 .icon {
	position: absolute;
	top: 8px;
	right: 125px;
}
#index_top #main > .pickup a.osusume_box_1 .icon .mic {
	float: right;
}
#index_top #main > .pickup a.osusume_box_1 .status.appear_time + .icon .mic:before {
	content: url(/images/icon/icon_mic_g.png);
	display: inline-block;
	height: 13px;
}
#index_top #main > .pickup a.osusume_box_1 .status.appear_time + .icon .mic img {
	display: none;
}
#index_top #main > .pickup a.osusume_box_1 .nick_name {
	text-align: center;
	color: #1b3993;
	font-weight: bold;
	margin: 5px 0 0;
	background: #fff7de;
	float: left;
	height: 19px;
	width: 114px;
	line-height: 21px;
}
#index_top #main > .pickup a.osusume_box_1 .hd {
	position: absolute;
	top: 35px;
	left: 8px;
}
#index_top #main > .pickup a.osusume_box_1 .photo {
	width: 124px;
	height: 93px;
	background: #fff url(/images/now_loading_thumb.gif) center center no-repeat;
	margin: 2px 0 0 5px;
	clear: both;
	float:left;
}
#index_top #main > .pickup a.osusume_box_1 .osusume_right {
	color: #333;
	font-size: 11px;
	float: left;
	height: 87px;
	width: 84px;
	border-top: 1px dotted #dca702;
	border-bottom: 1px dotted #dca702;
	margin: 2px 0 8px 8px;
	padding: 5px 2px 2px;
	line-height: 1.9;
}
/* 本日オススメ */
#index_top #main > .pickup.today {
	background: linear-gradient(#fff, #eef2ff);
	content-visibility: auto;
	contain-intrinsic-size: 266px;
}
#index_top #main > .pickup.today .title {
	border-bottom: 1px solid #1c3994;
}
#index_top #main > .pickup.today .title h2 {
	background-position: 0 -72px;
}
#index_top #main > .pickup.today a.girls_box {
	border: 1px solid #a7bdff;
}
/* メディアファイル投稿サービス関連 */
#index_top #main > .pickup.blog_posts {
	background-color: #fff;
	background-image: none;
	content-visibility: auto;
	contain-intrinsic-size: 902px;
}
#index_top #main > .pickup.blog_posts .title {
	border-bottom: 1px solid #c60000;
}
#index_top #main > .pickup.blog_posts .title h2 {
	background-position: 0 -252px;
}
#index_top #main > .pickup.blog_posts:after {
	background-position: -489px -41px;
}
#index_top #main > .pickup.blog_posts.close:after {
	background-position: -489px 0;
}
#index_top #main .blog_posts .body {
	padding: 6px;
}
/* 下部インフォ */
#index_top #information {
	background-color: #fff;
	margin: 25px 0 0;
	box-shadow: 0 0 3px #999;
	content-visibility: auto;
	contain-intrinsic-size: 417px;
}
#index_top #information .title h2 {
	background-position: 0 -108px;
}
#index_top #information .body {
	padding: 0;
}
#index_top #information .body iframe {
	width: 100%;
	min-width:760px;
	height: 380px;
	border: 0;
	vertical-align: top;
}

/*----------------- 下層ページ共通 -----------------*/

.gray_box_01 {
	background: #fafafa;
	border: 1px solid #e3e3e3;
	padding: 25px;
	border-radius: 3px;
	clear: both;
}

.white_box_01 {
	background: #fff;
	border: 1px solid #e3e3e3;
	padding: 25px;
	border-radius: 3px;
	clear: both;
}

/*----------------- 新規会員登録 -----------------*/

/*入力*/

#mem_regist_top #main form > dl > dd p.note:before, #otoiawase_top #main form > dl > dd p.note:before {
	content: "※";
}
#mem_regist_top #main form > dl > dt.posi_re .note {
	position: absolute;
	bottom: 0;
	right: 1em;
}
#mem_regist_top #main form > dl > dd input.form_guide[type="text"] {
	color: #ccc;
}
#mem_regist_top #main form > dl > dd .system_msg {
	position: relative;
	top: 5px;
	text-align: left;
	color: #08f;
	line-height: 2;
}
#mem_regist_top #main form > dl > dd iframe {
	border: 1px solid #ccc;
	width: 436px;
	height: 200px;
	background: #fff;
}
#mem_regist_top #main form > label {
	display: block;
	width: 280px;
	margin: 1em auto 0;
}
#mem_regist_top form.ud_form input[name="touroku_kubun"] + label {
	min-width: 340px;
}
#mem_regist_top #main form > dl > dd iframe { 
	width: 100%;
	box-sizing: border-box;
}

/*確認*/

.regist_msg {
	font-size: 15px;
	font-weight: bold;
	text-align: center;
}
.regist_msg span {
	font-size: 12px;
	font-weight: normal;
}
#mem_regist2_top h4 , #mem_regist3000_top h4 {
	font-size: 15px;
	font-weight: normal;
	border-bottom: 1px dotted #555;
	margin-bottom: 15px;
}
#mem_regist2_top h4:before , #mem_regist3000_top h4:before {
	content: "";
	width: 8px;
	height: 8px;
	display: inline-block;
	border: 2px solid #eb2731;
	border-radius: 50%;
	margin-right: 2px;
}
.kakunin_table {
	width: 100%;
	margin: 0 auto 40px;
}
.kakunin_table th {
	background: #666;
	color: #fff;
	font-size: 15px;
	padding: 8px 0;
	font-weight: normal;
	width: 40%;
	border-bottom: 1px solid #fff;
}
.kakunin_table td {
	border: 1px solid #ccc;
	padding: 10px 10px 10px 15px;
	font-size: 15px;
	text-align: left;
	width: 60%;
	background: #fff;
}

/* 楽天_新規会員登録 */

#login_top #main .title.rakuten_regist { background-position: 5px -429px }

/*----------------- ログインページ -----------------*/

#login_top #main form > label {
	display: block;
	width: 280px;
	margin: 1em auto 0;
}
#login_top input[type="checkbox"] {
	vertical-align: middle;
}
#login_top form > dl > dd label.note {
	border: 0;
	background-color: transparent;
	line-height: inherit;
	padding: auto;
	font-size: 12px;
}
#login_top .girls_login_flex {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
#login_top div.girls_login_flex_contents a:hover {
	opacity: .7;
}
#login_top div.girls_login_flex_contents a img {
	width: 252px;
	height: 30px;
}
#login_top form dt, #male_unsubscribe_top dt, #forget_top dt {
	width: 150px;
	justify-content: center;
}
#login_top input[type="text"], #login_top input[type="password"], #male_unsubscribe_top input[type="text"], #male_unsubscribe_top input[type="password"], #forget_top input[type="email"] {
	width: 280px;
}

/*----------------- オンラインページ -----------------*/

#girl_online_top #main {
	overflow: visible;		/* こうしておかないと高さが足りない場合にプルダウンメニューが隠れてしまう */
}
#girl_online_top #contents > div {
	width: auto;
}

/*----------------- 待機視聴 WebRTC-----------------*/

#online_rtc_top.large iframe {
	width:600px;
	height:450px;
}

#online_rtc_top iframe {
	width:320px;
	height:240px;
}

#online_rtc_top #main {
	background-color: transparent;
	box-shadow: none;
	overflow: visible;
	position: relative;
}
/* jQuery perfectScrollbarプラグイン用 */
#online_rtc_top #main .ps-container > .ps-scrollbar-x-rail,
#online_rtc_top #main .ps-container > .ps-scrollbar-x-rail {
	z-index: 100000;
}
#online_rtc_top #main .ps-container > .ps-scrollbar-x-rail > .ps-scrollbar-x,
#online_rtc_top #main .ps-container > .ps-scrollbar-y-rail > .ps-scrollbar-y {
	background-color: #c60000;
}
#online_rtc_top #main .ps-container.ps-in-scrolling > .ps-scrollbar-x-rail > .ps-scrollbar-x,
#online_rtc_top #main .ps-container.ps-in-scrolling > .ps-scrollbar-y-rail > .ps-scrollbar-y {
	background-color: #c60000;
}
#online_rtc_top #main .ps-container:hover > .ps-scrollbar-x-rail:hover > .ps-scrollbar-x,
#online_rtc_top #main .ps-container:hover > .ps-scrollbar-y-rail:hover > .ps-scrollbar-y {
	background-color: #c60000;
}

/* header */
#online_rtc_top #header .menu {
	display: none;
}
#online_rtc_top #header .menu.online {
	display: block;
}
#online_rtc_top #header .menu.online ul {
	position: relative;
	width: 960px;
}
#online_rtc_top #header .menu.online ul li a {
	cursor: pointer;
}
/* 前の女の子 */
#online_rtc_top #header .menu.online ul li.prev a {
	background: url(/images/btn/btn_next-prev_red@2x.png) 0 0 no-repeat;
	background-size: 236px 80px;
	width: 118px;
	margin-left: 10px;
}
#online_rtc_top.member #header .menu.online ul li.prev a {
	background-image: url(/images/btn/btn_next-prev_blue@2x.png);
	background-size: 236px 80px;
}
#online_rtc_top #header .menu.online ul li.prev a:hover { background-position: 0 -40px; }
/* 次の女の子 */
#online_rtc_top #header .menu.online ul li.next a {
	background: url(/images/btn/btn_next-prev_red@2x.png) -118px 0 no-repeat;
	background-size: 236px 80px;
	width: 118px;
}
#online_rtc_top.member #header .menu.online ul li.next a {
	background-image: url(/images/btn/btn_next-prev_blue@2x.png);
	background-size: 236px 80px;
}
#online_rtc_top #header .menu.online ul li.next a:hover { background-position: -118px -40px; }
/* size */
#online_rtc_top #header .menu.online ul li.size a {
	background: url(/images/btn/btn_display_size_red@2x.png) 0 0 no-repeat;
	background-size: 246px 80px;
	width: 123px;
}
#online_rtc_top.member #header .menu.online ul li.size a {
	background-image: url(/images/btn/btn_display_size_blue@2x.png);
	background-size: 246px 80px;
}
#online_rtc_top #header .menu.online ul li.size a:hover { background-position: 0 -40px; }
/* 新規会員登録 */
#online_rtc_top #header .menu.online ul li.regist a {
	position: absolute;
	right: 86px;
	top: 0;
	background: url(/images/btn/btn_online_menu_red.png) 0 0 no-repeat;
	width: 90px;
}
#online_rtc_top #header .menu.online ul li.regist a:hover { background-position: 0 -40px; }
/* ポイント購入 */
#online_rtc_top #header .menu.online ul li.point a {
	position: absolute;
	right: 0;
	top: 0;
	background: url(/images/btn/btn_online_menu_red.png) -90px 0 no-repeat;
	width: 86px;
}
#online_rtc_top #header .menu.online ul li.point a:hover { background-position: -90px -40px; }
#online_rtc_top.member #header .menu.online ul li.point a {
	background: url(/images/btn/btn_online_menu_blue.png) 0 0 no-repeat;
	width: 108px;
}
#online_rtc_top.member #header .menu.online ul li.point a:hover { background-position: 0 -40px; }

/* パンくずリスト */
#online_rtc_top #main ul.topic_path {
	float: left;
	width: 266px;
	border: 1px solid #ccc;
	padding: 0;
	margin: 0 10px 16px 0;
	line-height: 26px;
	background-color: #fff;
	box-shadow: 0 1px 0 #fff;
	overflow: hidden;
}
#online_rtc_top #main ul.topic_path:before {
	content: "";
	display: block;
	border-top: 1px solid #eee;
}
#online_rtc_top #main ul.topic_path li {
	position: relative;
	float:left;
	padding: 0 10px;
	margin-top: -1px;
}
#online_rtc_top #main ul.topic_path li:first-child {
	border-left: 1px solid #eee;
}
#online_rtc_top #main ul.topic_path li em {
	color: #c60000;
}
#online_rtc_top #main ul.topic_path li a:after {
	content: "";
	position: absolute;
	top: -1px;
	right: -12px;
	width: 16px;
	height: 16px;
	background-image: none;
	border-top: 1px solid #ccc;
	border-right: 1px solid #ccc;
 	transform-origin: left top;
 	transform: rotate(45deg) skew(9deg, 9deg);
}
/* 動く告知メッセージ */
#online_rtc_top .animated_info:before {
	width: 75px;
	background: url(/images/bb_news.png) center center no-repeat;
}

/* contents */
#online_rtc_top #main .contents {
	position: relative;
	background-color: #fff;
	border: 1px solid #ccc;
	box-shadow: 0 0 3px rgba(0, 0, 0, .2) inset;
	border-radius: 10px;
}
#online_rtc_top #main .contents:before {
	content: "";
	position: absolute;
	top: -2px;
	right: -2px;
	bottom: -2px;
	left: -2px;
	z-index: -10;
	border-bottom: 1px solid #fff;
	border-right: 1px solid #fff;
	border-radius: 10px;
}
#online_rtc_top #main .contents > .title {
	border-bottom: 0;
	margin-bottom: .4em;
}
/* 拡張コンテンツ */
#online_rtc_top #main .extension {
	clear: both;
}
#online_rtc_top #main .extension .contents {
	padding: 10px;
	margin-bottom: 16px;
}
#online_rtc_top #main .extension .contents > .body {
	margin: 0 5px 5px;
}

/* main */
#online_rtc_top #main > .main {
	position: relative;
	float: left;
	width: 750px;
	padding: 15px;
	margin-bottom: 46px;
}
#online_rtc_top #main .ad,
#online_rtc_top #main dl.detail {
	background-image: linear-gradient(to bottom, #f7f7f7 0, #fff 9px);
	box-shadow: 0 0 3px rgba(0, 0, 0, .4);
}
#online_rtc_top #main a.chat_start {
	background-position: -10px -10px;
	background-repeat: no-repeat;
	overflow: hidden;
}
/* stream_display */
#online_rtc_top #main .stream_display {
	float: left;
	width: 328px;
	margin-bottom: 15px;
}
#online_rtc_top #main .stream_display > div {
	position: relative;
	/*overflow: hidden;*/
}
#online_rtc_top #main .stream_display > div .event_target {
	font-size: 11px;
	font-weight: bold;
	text-align: center;
	position: absolute;
	left: 8px;
	transform: translateY(6px);
	border-radius: 10px;
	padding: 3px 10px;
	line-height: 1;
	color: #fff;
	background: #ff2d2d;
	background-image: linear-gradient(60deg, #ff2d2d 0%, #ff9e00 100%);
	border: 1px solid #ff2d2d;
}
#online_rtc_top #main .stream_display > div .nick_name ul {
	float: right;
}
#online_rtc_top #main .stream_display > div .nick_name ul li {
	display: inline;
}
#online_rtc_top #main .stream_display > div .nick_name ul img {
	vertical-align: middle;
}
#online_rtc_top #main .stream_display > div .standby_message {
	position: relative;
	border: 1px solid #f3ae06;
	padding: 5px;
	margin: 8px 16px;
	font-size: 13px;
	line-height: 21px;
	background: #ffecb1;
	background: linear-gradient(to bottom, #fff, #ffecb1);
	border-radius: 10px;
}
#online_rtc_top #main .stream_display > div .standby_message:before {
	content: "";
	position: absolute;
	top: -19px;
	left: 20%;
	width: 17px;
	height: 17px;
	border-top: 1px solid #f3ae06;
	border-left: 1px solid #f3ae06;
	background: #fff;
	background: linear-gradient(135deg,  #fff 0%,#fff 50%,#fffaea 100%);
 	transform-origin: left bottom;
 	transform: rotate(45deg) skew(15deg, 15deg);
}
#online_rtc_top #main .stream_display > div .standby_message div {
	position: relative;
	z-index: 2;
	height: 42px;
	overflow: auto;
}
#online_rtc_top #main .stream_display.sp > div:before {
	content: url(/images/icon/icon_spapp.gif);
	position: absolute;
	left: 5px;
	bottom: 78px;
	line-height: 0;
}
/* detail */
#online_rtc_top #main dl.detail {
	float: right;
	position: relative;
	width: 401px;
}
#online_rtc_top #main dl.detail > dt {
	position: absolute;
	right: 0;
	top: 0;
	width: 200px;
	height: 0;
	padding-top: 21px;
	border-bottom: 1px solid #ccc;
	background: url(/images/tl_gallery.png) center 3px no-repeat;
	overflow: hidden;
}
#online_rtc_top #main dl.detail > dt:not(.selected) {
	cursor: pointer;
}
#online_rtc_top #main dl.detail > dt:hover {
	opacity: 0.7;
}
#online_rtc_top #main dl.detail > dt.selected:hover {
	opacity: 1;
}
#online_rtc_top #main dl.detail > dt.selected {
	overflow: visible;
	text-align: center;
	height: 21px;
	padding-top: 0;
}
#online_rtc_top #main dl.detail > dt.selected:before {
	content: "";
	width: 192px;
	height: 38px;
	top: -5px;
	left: 6px;
	position: absolute;
	background: url(/images/tl_gallery_select.png) top left no-repeat;
}
#online_rtc_top #main dl.detail > dt:first-child {
	position: relative;
	background-image: url(/images/tl_profile.png);
	border-right: 1px solid #ccc;
}
#online_rtc_top #main dl.detail > dt.selected:first-child:before {
	background-image: url(/images/tl_profile_select.png);
}
#online_rtc_top #main dl.detail > dd {
	background-color: #f3f3f3;
	padding: 15px 10px 10px;
	font-size: 12px;
}
/* profile */
#online_rtc_top #main dl.detail > dt.profile + dd > dl {
	float: right;
	width: 178px;
	line-height: 21px;
}
#online_rtc_top #main dl.detail > dt.profile + dd > dl > dt {
	float: left;
	width: 66px;
	margin-right: 4px;
	text-align: center;
	background-color: #fff;
	box-shadow: 0 0 3px rgba(0, 0, 0, .3) inset;
}
#online_rtc_top #main dl.detail > dt.profile + dd > dl > dt.age,
#online_rtc_top #main dl.detail > dt.profile + dd > dl > dt.area,
#online_rtc_top #main dl.detail > dt.profile + dd > dl > dt.height,
#online_rtc_top #main dl.detail > dt.profile + dd > dl > dt.job {
	letter-spacing: 1em;
	text-indent: 1em;
}
#online_rtc_top #main dl.detail > dt.profile + dd > dl > dd {
	color: #980000;
	background-color: transparent;
	border-bottom: 1px dotted #555;
	padding-bottom: 4px;
	margin-bottom: 4px;
	white-space: nowrap;
}
#online_rtc_top #main dl.detail > dt.profile + dd > dl > dd:last-child {
	border-bottom: 0;
}
#online_rtc_top #main dl.detail > dt.profile + dd > dl > dt.three_size + dd dl {
	display: inline;
}
#online_rtc_top #main dl.detail > dt.profile + dd > dl > dt.three_size + dd dt {
	display: none;
}
#online_rtc_top #main dl.detail > dt.profile + dd > dl > dt.three_size + dd dd {
	display: inline;
}
#online_rtc_top #main dl.detail > dt.profile + dd > dl > dt.three_size + dd dd:after {
	content: " -";
}
#online_rtc_top #main dl.detail > dt.profile + dd > dl > dt.three_size + dd dd:last-child:after {
	content: "";
}
#online_rtc_top #main dl.detail > dt.profile + dd .thumbnail {
	width: 168px;
	padding: 10px;
	margin: 0 1px;
	background-color: #fff;
	box-shadow: 0 0 3px rgba(0, 0, 0, .3) inset;
}
#online_rtc_top #main dl.detail > dt.profile + dd .thumbnail a {
	display: inline-block;
	position: relative;
}
#online_rtc_top #main dl.detail > dt.profile + dd .thumbnail a:after {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 99999;
	margin: auto;
	background-image: url(/images/spacer.gif);
}
#online_rtc_top #main dl.detail > dt.profile + dd .button {		/* 汎用ボタンのスタイルを上書きする */
	display: block;
	width: 159px;
	height: 0;
	min-height: 0;
	padding: 27px 0 0;
	margin: 8px 16px;
	overflow: hidden;
	background: url(/images/btn/btn_taiki.png) 0 0 no-repeat;
}
#online_rtc_top #main dl.detail > dt.profile + dd .button:hover {
	opacity: 1;
	background-position: 0 -37px;
}
#online_rtc_top #main dl.detail > dt.profile + dd .button.faved {
	background-position: 0 -74px;
}
#online_rtc_top #main dl.detail > dt.profile + dd .button.faved:hover {
	background-position: 0 -111px;
}
#online_rtc_top #main dl.detail > dt.profile + dd a.button {
	background-position: -179px 0;
}
#online_rtc_top #main dl.detail > dt.profile + dd a.button:hover {
	background-position: -179px -37px;
}
#online_rtc_top #main dl.detail > dt.profile + dd a.chat_start {
	display: block;
	width: 191px;
	height: 0;
	padding-top: 73px;
	background-image: url(/images/btn_chatstart_s.png);
	background-position: -10px -176px;
}
#online_rtc_top #main dl.detail > dt.profile + dd a.chat_start.wait {
	background-position: -10px -425px;
}
#online_rtc_top #main dl.detail > dt.profile + dd a[href].chat_start {
	background-position: -10px -10px;
}
#online_rtc_top #main dl.detail > dt.profile + dd a[href].chat_start:hover {
	background-position: -10px -93px;
}
#online_rtc_top #main dl.detail > dt.profile + dd a[href].chat_start.wait {
	background-position: -10px -259px;
}
#online_rtc_top #main dl.detail > dt.profile + dd a[href].chat_start.wait:hover {
	background-position: -10px -342px;
}
#online_rtc_top #main dl.detail > dt.profile + dd ul.award {
	clear: right;
	margin: 10px 0;
	line-height: 30px;
	background-color: #fff;
	box-shadow: 0 0 3px rgba(0, 0, 0, .3) inset;
}
#online_rtc_top #main dl.detail > dt.profile + dd ul.award:before {
	content: "";
	display: inline-block;
	width: 90px;
	height: 30px;
	background: url(/images/tl_award.png) center center no-repeat;
	border-right: 1px solid #ccc;
	vertical-align: top;
	margin-right: 5px;
}
#online_rtc_top #main dl.detail > dt.profile + dd ul.award li {
	display: inline;
	margin-right: 3px;
}
#online_rtc_top #main dl.detail > dt.profile + dd ul.award li img {
	vertical-align: middle;
}
#online_rtc_top #main dl.detail > dt.profile + dd .gallery {
	clear: right;
	position: relative;
	background-color: #fff;
	padding: 0 10px 10px;
	margin-top: 8px;
	box-shadow: 0 0 3px rgba(0, 0, 0, .3) inset;
}
#online_rtc_top #main dl.detail > dt.profile + dd .gallery h3 {
	display: block;
	text-align: center;
	line-height: 30px;
	border-bottom: 0;
	background-image: none;
	text-indent: 0;
	padding: 0;
}
#online_rtc_top #main dl.detail > dt.profile + dd .gallery h3 img {
	vertical-align: middle;
}
#online_rtc_top #main dl.detail > dt.profile + dd .gallery .goto_gallery {
	float: right;
	margin: -24px 2px 0;
	border: 0;
	padding-right: 14px;
	color: #555;
	background: #fff url(/images/icon/icon_sub_h3.png) right 5px no-repeat;
	font-size: 11px;
	cursor: pointer;
}
#online_rtc_top #main dl.detail > dt.profile + dd .gallery > .body {
	position: relative;
	border-top: 1px dotted #555;
	width: 100%;
	padding-top: 10px;
	overflow: hidden;
}
#online_rtc_top #main dl.detail > dt.profile + dd .gallery > .body ul {
	height: 87px;
	white-space: nowrap;
	word-wrap: normal;	/* IE10対策 */
}
#online_rtc_top #main dl.detail > dt.profile + dd .gallery > .body li {
	display: inline;
	margin: 0 1px;
}
#online_rtc_top #main dl.detail > dt.profile + dd .gallery > .body li a {
	display: inline-block;
	position: relative;
}
#online_rtc_top #main dl.detail > dt.profile + dd .gallery > .body li a:after {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 99999;
	margin: auto;
	background-image: url(/images/spacer.gif);
}
/* gallery */
#online_rtc_top #main dl.detail > dt.gallery + dd {
	overflow: hidden;
	display: none;
	padding-bottom: 9px;
}
#online_rtc_top #main dl.detail > dt.gallery + dd li {
	float: left;
	margin: 5px;
}
#online_rtc_top #main dl.detail > dt.gallery + dd a {
	display: inline-block;
	position: relative;
	border: 6px solid #fff;
}
#online_rtc_top #main dl.detail > dt.gallery + dd a:after {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 99999;
	margin: auto;
	background-image: url(/images/spacer.gif);
}
#online_rtc_top #main dl.detail > dt.gallery + dd img {
	width: 168px;
	height: 126px;
}
/* ad */
#online_rtc_top #main .ad {
	clear: left;
	float: left;
	width: 334px;
	height: 120px;/* 2015-05-25 add */
}
#online_rtc_top #main .ad:before {
	content: url(/images/tl_ad_box.png);
	display: block;
	height: 13px;
	margin: 4px 0 4px 10px;
}
#online_rtc_top #main .ad ul {
	height: 70px !important;/* 2015-05-25 add */
	padding: 14px 0;
	margin: 0;
	border-top: 1px solid #ccc;
	background-color: #f3f3f3;
	text-align: center;
	letter-spacing: 8px;
}
#online_rtc_top #main .ad li {
/*   2015-05-25
	display: inline;
	line-height: 1;
*/
display: block;
height: 68px;
}
#online_rtc_top #main .ad li img {
	border: 1px solid #ccc;
}
#online_rtc_top #main .ad li a:hover {
	opacity: 0.7;
}
/* オンライン中の女の子 */
#online_rtc_top #main > .online_girls {
	float: right;
	width: 160px;
	background-color: #fff;
	border: 1px solid #ccc;
	z-index: 10;
	box-shadow: 0 0 3px rgba(0,0,0,0.2) inset;
	border-radius: 10px;
}
#online_rtc_top #main > .online_girls h2 {
	background: url(/images/tl_waitContents_right.png) top left no-repeat;
	overflow: hidden;
	height: 0;
	padding-top: 28px;
	padding-bottom: 3px;
	margin: 6px 5px 0;
	border-bottom: 1px solid #ccc;
}
#online_rtc_top #main > .online_girls .btn_reload {
	position: absolute;
	top: 3px;
	right: 1px;
	background: url(/images/btn/btn_function.png) -362px 0px no-repeat;
	width: 31px;
	height: 0;
	padding-top: 31px;
	overflow: hidden;
	cursor: pointer;
}
#online_rtc_top #main > .online_girls .btn_reload:hover { opacity: .7; }
#online_rtc_top #main > .online_girls > .body {
	position: relative;
	height: 482px;
	overflow: hidden;
}
#online_rtc_top #main > .online_girls li {
	overflow: hidden;
}
#online_rtc_top #main > .online_girls li a:hover {
	opacity: .7;
	text-decoration: none;
}
#online_rtc_top #main > .online_girls li dl {
	margin: 0 5px;
	padding: 4px 0 6px;
	border-bottom: 1px dotted #ccc;
	font-size: 11px;
	overflow: hidden;
	cursor: pointer;
}

#online_rtc_top #main > .online_girls li:last-child > dl {
	border-bottom: none;
}
#online_rtc_top #main > .online_girls li dl > dt {
	display: none;
}
#online_rtc_top #main > .online_girls li dl > dd {
	color: #555;
	line-height: 1.8;
}
#online_rtc_top #main > .online_girls li dl > dt.nick_name + dd {
	display: block;
	font-size: 11px;
	font-weight: bold;
	color: #1d3994;
}
#online_rtc_top #main > .online_girls li dl > dt.thumb + dd {
	position: relative;
	float: left;
	width: 76px;
	height: 57px;
	background:#fff url(/images/now_loading_thumb.gif) center center no-repeat;
	margin-right: 7px;
	border: 1px solid #ddd;
}
#online_rtc_top #main > .online_girls li dl > dt.thumb + dd:after {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 99999;
	margin: auto;
	background-image: url(/images/spacer.gif);
}
#online_rtc_top #main > .online_girls li dl:hover {
	background: #fafafa;
}
#online_rtc_top #main > .online_girls li dl:hover dt.thumb +dd {
	opacity: .7;
}
#online_rtc_top #main > .online_girls li dl > dt.status + dd {
	width: 62px;
	height: 0;
	padding-top: 15px;
	margin-bottom: 4px;
	overflow: hidden;
}
#online_rtc_top #main > .online_girls li dl > dt.status.online + dd {
	background-image: url(/images/icon/icon_online_left.png);
}
#online_rtc_top #main > .online_girls li dl > dt.status.chat + dd {
	background-image: url(/images/icon/icon_2shot_left.png);
}
#online_rtc_top #main > .online_girls li dl > dt.status.wait + dd {
	background-image: url(/images/icon/icon_wait_left.png);
}
#online_rtc_top #main > .online_girls li dl > dt.status.offline + dd {
	background-image: url(/images/icon/icon_offline_left.png);
}
/* 外部リンク */
#online_rtc_top #main ul.social {
	position: absolute;
	bottom: -31px;
	right: 17px;
}
#online_rtc_top #main ul.social li {
	float: left;
	box-shadow: 0 1px 0 #fff;
}
#online_rtc_top #main ul.social li a {
	display: block;
	width: 29px;
	height: 0;
	padding-top: 29px;
	border-bottom: 1px solid #ccc;
	border-left: 1px solid #ccc;
	overflow: hidden;
	background: #fff url(/images/btn_social_29px.svg) 0 0 no-repeat;
	background-size: 29px 87px;
}
#online_rtc_top #main ul.social li:last-child a { border-right: 1px solid #ccc; }
#online_rtc_top #main ul.social li a:hover { opacity: .7; }
#online_rtc_top #main ul.social li.ugoclip + li.comet {
	border-left: 1px solid #ccc;
}
#online_rtc_top #main ul.social li.bb_blog a {
	border-right: 1px solid #ccc;
	width: 76px;
	background-image: url(/images/btn/btn_blog.png);
	background-size: 60px 65px;
	background-position: 9px -43px;
	background-color: #e74c3c;
}
#online_rtc_top #main ul.social li.blog a {
	border-right: 1px solid #ccc;
	width: 60px;
	background-image: url(/images/btn/btn_blog.png);
	background-size: 60px 65px;
	background-position: 9px -18px;
}
#online_rtc_top #main ul.social li.comet a {
	margin-left: 5px;
}
#online_rtc_top #main ul.social li.tw a {
	background-position: 0 -58px;
}
#online_rtc_top #main ul.social li.question a {
	width: auto;
	height: 29px;
	padding: 0 10px;
	background-image: none;
	display: flex;
	align-items: center;
	font-weight: 700;
	color: #289ee7;
	text-decoration: none;
	margin-right: 5px;
    border-right: 1px solid #ccc;
}

/* comment */
#online_rtc_top #main .extension .comment {
	float: left;
	width: 328px;
	margin-right: 16px;
}
#online_rtc_top #main .extension .contents.comment > iframe.body {
	width: 318px;
	height: 244px;
	border: 0;
	border-top: 1px dotted #999;
	vertical-align: top;
}
/* memo */
#online_rtc_top #main .extension .memo {
	float: left;
	width: 572px;
}
#online_rtc_top #main .extension .memo .body {
	height: 245px;
}
#online_rtc_top #main .extension .memo textarea {
	border: 1px solid #ddd;
	box-sizing: border-box;
	width: 100%;
	height: 143px;
	resize: none;
}
#online_rtc_top #main .extension .memo ul {
	height: 20px;	/* 高さを確実にするために */
	margin: 12px 0;
	overflow: hidden;
}
#online_rtc_top #main .extension .memo ul:before {
	content: "チャット履歴";
	float: left;
	border-right: 1px dotted #999;
	padding: 0 .7em;
	font-weight: bold;
}
#online_rtc_top #main .extension .memo li {
	float: left;
	border-right: 1px dotted #999;
	padding: 0 .7em;
}
#online_rtc_top #main .extension .memo .button_wrapper {
	margin-bottom: 0;
}
#online_rtc_top #main .extension .memo .button_wrapper button {
	height: 50px;	/* 高さを確実にするために */
	box-sizing: border-box;
}
/* recent */
#online_rtc_top #main .extension .recent {
	clear: both;
}
#online_rtc_top #main .extension .recent .body {
	position: relative;
	overflow:hidden;
	white-space: nowrap;
	word-wrap: normal;	/* IE10対策 */
	padding-bottom: 14px;
}
#online_rtc_top #main .extension .recent li {
	display: inline;
	margin-right: 5px;
}
#online_rtc_top #main .extension .recent li a {
	display: inline-block;
	position: relative;
	width: 116px;
	border: 1px solid #ccc;
	border-radius: 3px;
	padding: 5px;
	font-weight: bold;
	line-height: 1;
	text-align: center;
	white-space: normal;
	font-size: 12px;
}
#online_rtc_top #main .extension .recent li a:hover {
	text-decoration: none;
	opacity: .7;
}
#online_rtc_top #main .extension .recent li a.online:before {
	content: "ONLINE";
	background: #980000;
	background: linear-gradient(#c60000, #9a0000);
}
#online_rtc_top #main .extension .recent li a.chat:before {
	content: "2SHOT";
	background: #183384;
	background: linear-gradient(#1b3994, #152d76);
}
#online_rtc_top #main .extension .recent li a.wait:before {
	content: "待ち合わせ";
	background: #f94709;
	background: linear-gradient(#f94709, #e03e0b);
}
#online_rtc_top #main .extension .recent li a.offline:before {
	content: "OFFLINE";
	background: #999;
	background: linear-gradient(#999, #7e7e7e);
}
#online_rtc_top #main .extension .recent li a:before {
	display: block;
	color: #fff;
	line-height: 18px;
	font-weight: normal;
}
#online_rtc_top #main .extension .recent li a:after {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 99999;
	margin: auto;
	background-image: url(/images/spacer.gif);
}
#online_rtc_top #main .extension .recent li img {
	margin-bottom: 5px;
	background:#fff url(/images/now_loading_thumb.gif) center center no-repeat;
}

/* large */
#online_rtc_top.large #header .menu ul li.size a {
	background-position: -123px 0;
}
#online_rtc_top.large #header .menu ul li.size a:hover { background-position: -123px -40px; }

#online_rtc_top.large #main .online_girls {
	display: none;
}
#online_rtc_top.large #main .main {
	width: auto;
}
#online_rtc_top.large #main .stream_display {
	width: auto;
	margin-bottom: 0;
}
#online_rtc_top.large #main .stream_display > div {
	position: relative;
	width: 600px;
}
#online_rtc_top.large #main .stream_display > div .nick_name {
	position: absolute;
	bottom: 0;
	left: 0;
	line-height: 23px;
	width: 277px;
	margin-left: 3px;
}
#online_rtc_top.large #main .stream_display > div > ul {
	top: auto;
	right: 326px;
	bottom: 3px;
	line-height: 23px;
}
#online_rtc_top.large #main .stream_display > div .stream {
	width: 600px;
	height: 450px;
}
#online_rtc_top.large #main .stream_display > div .standby_message {
	padding: 0 5px;
	margin: 0 0 0 280px;
}
#online_rtc_top.large #main .stream_display > div .standby_message:before {
	top: -10px;
	width: 8px;
	height: 8px;
}
#online_rtc_top.large #main .stream_display > div .standby_message br {
	display: none;
}
#online_rtc_top.large #main .stream_display > div .standby_message div {
	height: 21px;
	overflow: hidden;
	white-space: nowrap;
	word-wrap: normal;	/* IE10対策 */
}
#online_rtc_top.large #main .stream_display.sp > div:before {
	bottom: 31px;
}

#online_rtc_top.large #main .ad {
	display: none;
}

#online_rtc_top.large #main dl.detail {
	width: 299px;
	float: none;
	margin-left: 629px;
}
#online_rtc_top.large #main dl.detail > dt {
	width: 149px;
}
#online_rtc_top.large #main dl.detail > dt.selected:before {
	width: 142px;
	left: 5px;
	background-image: url(/images/tl_gallery_select_l.png);
}
#online_rtc_top.large #main dl.detail > dt.selected:first-child:before {
	background-image: url(/images/tl_profile_select_l.png);
}
#online_rtc_top.large #main dl.detail > dt.profile + dd > dl {
	width: 162px;
	margin-bottom: 6px;
}
#online_rtc_top.large #main dl.detail > dt.profile + dd .thumbnail {
	width: 95px;
	padding: 6px;
	margin: 0;
}
#online_rtc_top.large #main dl.detail > dt.profile + dd .thumbnail img {
	width: 100%;
	height: auto;
}
#online_rtc_top.large #main dl.detail > dt.profile + dd .button {
	width: 95px;
	height: 0;
	padding-top: 26px;
	margin: 8px 6px;
	background-position: -382px 0;
}
#online_rtc_top.large #main dl.detail > dt.profile + dd .button:hover {
	background-position: -382px -36px;
}
#online_rtc_top.large #main dl.detail > dt.profile + dd .button.faved {
	background-position: -382px -72px;
}
#online_rtc_top.large #main dl.detail > dt.profile + dd .button.faved:hover {
	background-position: -382px -108px;
}
#online_rtc_top.large #main dl.detail > dt.profile + dd a.button {
	background-position: -497px 0;
}
#online_rtc_top.large #main dl.detail > dt.profile + dd a.button:hover {
	background-position: -497px -36px;
}
#online_rtc_top.large #main dl.detail > dt.profile + dd ul.award {
	display: none;
}
#online_rtc_top.large #main dl.detail > dt.profile + dd a.chat_start {
	width: 107px;
	height: 0;
	padding-top: 87px;
	background-image: url(/images/btn_chatstart_l.png);
	background-position: -10px -204px;
}
#online_rtc_top.large #main dl.detail > dt.profile + dd a.chat_start.wait {
	background-position: -10px -495px;
}
#online_rtc_top.large #main dl.detail > dt.profile + dd a[href].chat_start {
	background-position: -10px -10px;
}
#online_rtc_top.large #main dl.detail > dt.profile + dd a[href].chat_start:hover {
	background-position: -10px -107px;
}
#online_rtc_top.large #main dl.detail > dt.profile + dd a[href].chat_start.wait {
	background-position: -10px -301px;
}
#online_rtc_top.large #main dl.detail > dt.profile + dd a[href].chat_start.wait:hover {
	background-position: -10px -398px;
}

#online_rtc_top.large #main dl.detail > dt.gallery + dd a {
	width: 117px;
}
#online_rtc_top.large #main dl.detail > dt.gallery + dd img {
	width: 100%;
	height: auto;
}

#online_rtc_top .view_msg {
	position: absolute;
	top: -26px;
	left: -10px;
	background: #ffd533;
	padding: 5px 6px;
	line-height: 1.0;
	box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
	font-size: 12px;
	font-weight: 700;
}
#online_rtc_top .view_msg:after {
	top: 100%;
	left: 50%;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
	border-color: rgba(255, 213, 51, 0);
	border-top-color: #ffd533;
	border-width: 7px;
	margin-left: -7px;
}
#online_rtc_top .newface_camp_balloon {
	position: absolute;
	width: 155px;
	height: 33px;
	top: -30px;
	right: -10px;
	background: url(/images/img_today_msg.png) top left no-repeat;
	line-height: 1.0;
	text-indent: -9999px;
}
#online_rtc_top .newface_camp_balloon.wide {
	width: 204px;
	background-image: url(/images/img_todaynew_msg.png);
}

/*----------------- ポイント購入ページ -----------------*/

#point_tsuika_top ul.isp_login li {
	display: flex;
    align-items: center;
}
#point_tsuika_top ul.isp_login li form {
	margin-left: 30px;
}
#point_tsuika_top ul.isp_login li p {
	color: #c00;
	margin: 0 0 0 30px;
}
.gray_box_01.point_bnr {
	padding: 10px 0;
	text-align: center;
	margin: 20px 0;
	position: relative;
}
.gray_box_01.point_bnr:after {
	content: "";
	position: absolute;
	width: 68px;
	height: 67px;
	background: url(/images/ribon_camp.png) top left no-repeat;
	top: -4px;
	left: -4px;
	}
.gray_box_01.point_bnr img {
	margin: 5px 0;
}
.gray_box_01.point_bnr a img:hover {
	opacity: 0.7;
}
.white_box_01.message {
	margin: 15px 0 0;
	padding: 15px 25px;
}
.white_box_01.message div {
	text-align: center;
	font-weight: bold;
	color: #c60000;
	font-size: 15px;
}
.white_box_01.message p {
	margin: 5px 0 0 !important;
}
ul.kessai_select_menu > li {
	float: left;
	background: #ccc;
	color: #fff;
	margin-right: 2px;
	width: 141px;
	height: 91px;
	text-align: center;
	padding-top: 9px;
	cursor: pointer;
}
ul.kessai_select_menu > li.selected {
	cursor: default;
}
ul.kessai_select_menu > li .service_logo, ul.e_service_logo li {
	background: #fff url(/images/logo_kessai_tab@2x.png) no-repeat;
	background-size: 786px 138px;
	overflow: hidden;
}
ul.kessai_select_menu > li .service_logo {
	height: 0;
	padding-top: 64px;
	margin: 5px 5px 0;
}
ul.kessai_select_menu > li:first-child:hover , ul.kessai_select_menu > li:first-child.selected {
	background: #eb2731;
}
ul.kessai_select_menu > li:first-child .service_logo {
	background-position: 0 -74px;
}
ul.kessai_select_menu > li:first-child:hover .service_logo , ul.kessai_select_menu > li:first-child.selected .service_logo {
	background-position: 0 0;
}
ul.kessai_select_menu > li:nth-child(2):hover, ul.kessai_select_menu > li:nth-child(2).selected {
	background: #27ae60;
}
ul.kessai_select_menu > li:nth-child(2) .service_logo {
	background-position: -141px -74px;
}
ul.kessai_select_menu > li:nth-child(2):hover .service_logo , ul.kessai_select_menu > li:nth-child(2).selected .service_logo {
	background-position: -141px 0;
}
ul.kessai_select_menu > li:nth-child(3):hover , ul.kessai_select_menu > li:nth-child(3).selected {
	background: #08f;
}
ul.kessai_select_menu > li:nth-child(3) .service_logo {
	background-position: -282px -74px;
}
ul.kessai_select_menu > li:nth-child(3):hover .service_logo , ul.kessai_select_menu > li:nth-child(3).selected .service_logo {
	background-position: -282px 0;
}
ul.kessai_select_menu > li:nth-child(4):hover , ul.kessai_select_menu > li:nth-child(4).selected {
	background: #f39c12;
}
ul.kessai_select_menu > li:nth-child(4) {
	margin-right: 0;
	width: 240px;
}
ul.e_service_logo {
	height: 0;
	padding-top: 64px;
	margin: 5px 5px 0;
	overflow: hidden;
	position: relative;
	background: #fff;
}
ul.e_service_logo li {
	position: absolute;
}
ul.e_service_logo li:first-child {
	background-position: -423px -74px;
	width: 50px;
	height: 0;
	padding-top: 50px;
	top: 8px;
	left: 16px;
}
ul.e_service_logo li:first-child.selected , ul.e_service_logo li:first-child:hover {
	background-position: -423px 0;
}
ul.e_service_logo li:nth-child(2) {
	background-position: -483px -74px;
	width: 77px;
	height: 0;
	padding-top: 22px;
	top: 8px;
	left: 72px;
}
ul.e_service_logo li:nth-child(2).selected , ul.e_service_logo li:nth-child(2):hover {
	background-position: -483px 0;
}
ul.e_service_logo li:nth-child(3) {
	background-position: -570px -74px;
	width: 50px;
	height: 0;
	padding-top: 22px;
	top: 8px;
	left: 155px;
}
ul.e_service_logo li:nth-child(3).selected , ul.e_service_logo li:nth-child(3):hover {
	background-position: -570px 0;
}
ul.e_service_logo li:nth-child(4) {
	background-position: -630px -74px;
	width: 88px;
	height: 0;
	padding-top: 24px;
	top: 35px;
	left: 72px;
}
ul.e_service_logo li:nth-child(4).selected , ul.e_service_logo li:nth-child(4):hover {
	background-position: -630px 0;
}
ul.e_service_logo li:nth-child(5) {
	background-position: -728px -74px;
	width: 48px;
	height: 0;
	padding-top: 24px;
	top: 35px;
	left: 163px;
}
ul.e_service_logo li:nth-child(5).selected , ul.e_service_logo li:nth-child(5):hover {
	background-position: -728px 0;
}

.kessai_price_header {
	padding: 20px;
	position: relative;
	border: 5px solid #eb2731;
}
#kessai_price h4 {
	font-size: 16px;
	border-bottom: 1px dotted #555;
	margin-bottom: 15px;
}
#kessai_price h4:before {
	content: "";
	width: 8px;
	height: 8px;
	display: inline-block;
	border: 2px solid #eb2731;
	border-radius: 50%;
	margin-right: 4px;
}
#kessai_price h4 span {
	color: #eb2731;
}
ul.flow_chart_01 {
	margin-bottom: 10px;
}
ul.flow_chart_01 li {
	float: left;
	background: #eee;
	color: #777;
	height: 64px;
	width: 132px;
	margin-right: 4px;
	position: relative;
	padding: 10px 4px 10px 16px;
	text-align: center;
	line-height: 1.4;
	font-size: 12px;
}
ul.flow_chart_01 li:first-child {
	border-radius: 5px 0 0 5px;
}
ul.flow_chart_01 li:last-child {
	border-radius: 0 5px 5px 0;
	margin-right: 0;
}
ul.flow_chart_01 li:before {
	content: "";
	position: absolute;
	top: 50%;
	margin-top: -42px;
	border-top: 42px solid transparent;
	border-bottom: 42px solid transparent;
	border-left: 18px solid;
	border-left-color: white;
	right: -21px;
	z-index: 1;
}
ul.flow_chart_01 li:after {
	content: "";
	position: absolute;
	top: 50%;
	margin-top: -42px;
	border-top: 42px solid transparent;
	border-bottom: 42px solid transparent;
	border-left: 18px solid;
	right: -17px;
	z-index: 2;
	border-left-color: #eee;
}
ul.flow_chart_01 li:last-child:before {
	border: none;
}
ul.flow_chart_01 li:last-child:after {
	border: none;
}
ul.flow_chart_01 li.pay_selected {
	background: #eb2731;
	color: #fff;
}
ul.flow_chart_01 li.pay_selected:after {
	border-left-color: #eb2731;
}
ul.flow_chart_01 li span {
	display: block;
	font-weight: bold;
	font-size: 13px;
	margin-bottom: 2px;
	}
.kessai_price_header .note_01 {
	position: absolute;
	top: 148px;
	left: 191px;
	font-size: 10px;
	color: #777;
}
.kessai_price_header .note_02 {
	position: absolute;
	top: 148px;
	left: 348px;
	font-size: 10px;
}
.kessai_price_inner {
	padding: 20px;
	border: 5px solid #eb2731;
	border-top: none !important;
	}
.kessai_table {
	width: 100%;
}
.kessai_table tr:nth-child(even) {
	background: #fafafa;
}
.kessai_table th {
	background: #666;
	color: #fff;
	font-size: 15px;
	padding: 8px 0;
	white-space: nowrap;
}
.kessai_table td {
	border-bottom: 1px dotted #999;
	padding: 10px 0;
	font-size: 15px;
	text-align: center;
	white-space: nowrap;
	}
.kessai_table.consumption td , .kessai_table.consumption th {
	text-align: left;
	padding-left: 20px;
	}
.kessai_table input[type="image"] {
	margin: 3px 0 3px 0;
}
.kessai_table input[type="image"]:hover {
	opacity: 0.7;
}
body[id*="point_tsuika"] .kessai_table th b {
	color: #ff0;
}
body[id*="point_tsuika"] .kessai_table td b {
	font-weight: normal;
	color: #f00;
}
body[id*="point_tsuika"] .kessai_table td.has_text {
	background-color: #ffd;
}
.kessai_kakunin_table {
	width: 85%;
	margin: 0 auto;
}
.kessai_kakunin_table th {
	background: #666;
	color: #fff;
	font-size: 15px;
	padding: 8px 0;
	font-weight: normal;
	width: 50%;
	border-bottom: 1px solid #fff;
	}
	.kessai_kakunin_table tr:last-child th {
		border-bottom: 1px solid #666;
		}
.kessai_kakunin_table td {
	border: 1px solid #ccc;
	padding: 10px;
	font-size: 15px;
	text-align: center;
	width: 50%
	}
.kessai_kakunin_table td #quick_tel {
	height: 40px;
	padding: 0 5px;
	font-size: 15px;
	width: auto;
	margin-bottom: 5px;
	}
.kessai_kakunin_table td li {
	font-size: 12px;
	text-align: left;
}
.kessai_douji_table {
	width: 100%;
	margin-top: 20px;
}
.kessai_douji_table caption {
	text-align: left;
	font-size: 16px;
	font-weight: bold;
	color: #06f;
	margin-bottom: 5px;
}
.kessai_douji_table td {
	background: #fafafa;
	border-top: 1px dotted #999;
	border-bottom: 1px dotted #999;
	}
.kessai_douji_table input[type="image"] {
	margin: 3px 0 3px 0;
}
.kessai_douji_table input[type="image"]:hover {
	opacity: 0.7;
}
.kessai_douji_table td p {
	margin-right: 15px;
	margin-bottom: 0 !important;
	color: #c60000;
	background: url(/images/icon/icon_arrow_10.png) 0 -26px no-repeat;
	text-indent: 9px;
}
.kessai_douji_table td span {
	font-size: 16px;
	color: #f00;
}
.kessai_douji_table td b {
	font-size: 14px;
}
.kessai_douji_table td:first-child {
	padding: 10px;
}
.kessai_douji_table td:last-child {
	padding: 10px;
}
a.buy_btn {
	text-align: center;
	background: #f00;
	border-radius: 5px;
	color: #fff;
	display: block;
	box-shadow: 0 2px 0 #a70101;
	padding: 8px 0;
	position: relative;
	margin: 0 10px;
	font-size: 15px;
	cursor: pointer;
	font-weight: 700;
	transition: transform var(--hover_transition), box-shadow var(--hover_transition), background var(--hover_transition);
}
a.buy_btn:after {
	content: "";
	position: absolute;
	width: 6px;
	height: 6px;
	top: 50%;
	right: 10px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	transform: translateY(-50%) rotate(45deg);
}
a.buy_btn:hover {
	background: #f44;
	text-decoration: none;
	box-shadow: none;
	transform: translateY(2px);
}

div.buy_btn {				/* inputに:afterを適応 */
	background: #f00;
	border-radius: 5px;
	box-shadow: 0 2px 0 #a70101;
	padding: 8px 0;
	position: relative;
	margin: 0 auto;
	border: 0;
	width: 180px;
	cursor: pointer;
	transition: transform var(--hover_transition), box-shadow var(--hover_transition), background var(--hover_transition);
	}
div.buy_btn input {
	-webkit-appearance: none;
	appearance: none;
	background: transparent;;
	color: #fff;
	display: block;
	margin: 0 auto;
	font-size: 16px;
	border: 0;
	width: 100%;
	cursor: pointer;
	font-weight: 700;
	}
div.buy_btn:after {
	content: "";
	position: absolute;
	width: 6px;
	height: 6px;
	top: 50%;
	right: 10px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	transform: translateY(-50%) rotate(45deg);
}
div.buy_btn:hover {
	background: #f44;
	text-decoration: none;
	box-shadow: none;
	transform: translateY(2px);
	}

#point_smoney_top div.buy_btn { width: 240px; }

.btn_kakunin {
	width: 50%;
	margin: 20px auto;
	}
a.buy_btn.next {
	font-size: 15px;
	text-align: center;
	float: right;
	width: 150px;
	margin: 0;
	}
a.buy_btn.prev {
	background: #ddd;
	color: #555;
	box-shadow: 0 2px 0 #777;
	font-size: 15px;
	text-align: center;
	float: left;
	width: 150px;
	margin: 0;
	}
a.buy_btn.prev:after {
	right: auto;
	left: 10px;
	border-top: 2px solid #555;
	border-right: 2px solid #555;
	transform: translateY(-50%) rotate(-135deg);
}
	a.buy_btn.prev:hover {
		background: #eee;
		text-decoration: none;
		box-shadow: none;
		}

.kessai_kakunin_table.bitcash {
	margin-bottom: 20px;
}
.kessai_kakunin_table.bitcash input[type="text"] , .kessai_kakunin_table.smoney input[type="text"] {
	-webkit-appearance: none;
	appearance: none;
	font-size: 15px;
	height: 32px;
	padding: 0 5px;
	border: 1px solid #CCC;
	width: 190px;
	border-radius: 0;
}
div.buy_btn.reset {
	background: #ddd;
	width: 150px;
	box-shadow: 0 2px 0 #777;
	float: left;
}
div.buy_btn.reset input {
	color: #555;
}
div.buy_btn.reset:after {
	content: none;
}
div.buy_btn.reset:hover {
	box-shadow: none;
	}
div.buy_btn.submit {
	width: 146px;
	float: right;
}
.bank_type {
	border: 1px solid #ccc;
	border-radius: 10px;
	margin: 20px 0;
	padding: 16px;
	display: flex;
	align-items: center;
	gap: 20px;
}
.bank_type .logo {
	width: 200px;
	flex-shrink: 0;
}
.bank_type .logo img {
	display: block;
	margin: 0 auto;
}
.bank_type table {
	width: 100%;
	font-size: 13px;
}
.bank_type table caption {
	font-size: 18px;
	text-align: left;
	margin-bottom: 10px;
	margin-left: 10px;
	font-weight: 700;
}
.bank_type table tr:nth-child(odd) {
	background: #f3f3f3;
}
.bank_type table th {
	padding: 4px 1px 4px 12px;
	text-align: left;
	width: 4em;
}
.bank_type table td {
	padding: 4px 2px;
}
.kessai_note {
	background: #fee;
	padding: 20px;
	margin: 20px 0 0;
	text-align: center;
}
.kessai_note h5 {
	color: #c60000;
	font-size: 14px;
	text-align: center;
}
.point_msg {
	color: #c60000;
	font-size: 18px;
	text-align: center;
	font-weight: bold;
	margin-bottom: 10px;
	}
.point_msg span {
	font-size: 16px;
	}
#bank_furikomi_top dd label.item {
	margin-bottom: 5px;
	}

body[id*="point_tsuika"] #extra_information {
	margin-bottom: 1em;
}

/*----------------- 女の子検索 -----------------*/
#girl_search_top .total_num {
	text-align: center;
	margin-top: 0;
	margin-bottom: 10px;
	font-weight: bold;
}
#girl_search_top .total_num strong {
	color: var(--color_accent);
	font-size: 120%;
	font-weight: bold;
}
#girl_search_top form > dl {
	margin-top: 20px;
	row-gap: 25px;
}
#girl_search_top form > dl > dt {
	margin-top: 12px;
}
#girl_search_top #search_form.disabled button[type="submit"] {
	opacity: .3;
	pointer-events: none;
}
#girl_search_top .rangeForm_wrap {
	display: none;
	margin-top: 10px;
}
#girl_search_top .rangeForm_wrap.active {
	display: block;
}
#girl_search_top .rangeForm_wrap .select-group {
	width: 76px;
	display: inline-block;
}
#girl_search_top #result {
	display: none;
	padding: 0 15px 50px;
	overflow: hidden;
}
#girl_search_top #result .description {
	margin-bottom: 10px;
	text-align: center;
}
#girl_search_top #result .description strong.total {
	font-size: 20px;
	color: #08f;
	margin-right: 3px;
}
#girl_search_top #result ul.page_link {
	width: 308px;
    margin: 10px auto;
}
#girl_search_top #result ul.page_link li a {
	margin: 0 5px;
}
#girl_search_top #result ul.page_link li.selected a {
	color: #fff;
	background-color: #08c;
	border-color: #08c;
}
#girl_search_top #result ul.page_link li.prev a,
#girl_search_top #result ul.page_link li.next a {
	padding: 34px 0 0;
}
#girl_search_top #result .girls {
	clear: both;
	padding: 4px;
	overflow: hidden;
}

/*----------------- 会員様ページ -----------------*/
#mem_account_top #main > .body {
	padding: 50px 20px;
}
#mem_account_top #main .sub_body .actions_line {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	margin-bottom: 2em;
}
#mem_account_top #main .sub_body .actions_line + * {
	margin-top: 36px;
}
#mem_account_top ul.my_girls > li:first-child {
	border-top: 1px solid #ccc;
}
#mem_account_top #main ul.sub_menu li a:before {
	background-image: url(/images/icon/icon_mem_tab.png);
}
#mem_account_top #main ul.sub_menu li#kaiin_info_tab a:before { background-position: 0 0; }
#mem_account_top #main ul.sub_menu li#furikomi_info_tab a:before { background-position: 0 -68px; }
#mem_account_top #main ul.sub_menu li#mail_info_tab a:before { background-position: 0 -136px; }
#mem_account_top #main ul.sub_menu li#favorite_tab a:before { background-position: 0 -204px; }
#mem_account_top #main ul.sub_menu li#chat_rireki_tab a:before { background-position: 0 -272px; }
#mem_account_top #main ul.sub_menu li#comment_tab a:before { background-position: 0 -340px; }

#mem_account_top #main ul.sub_menu li#kaiin_info_tab.selected a:before,
#mem_account_top #main ul.sub_menu li#kaiin_info_tab:hover a:before {
	background-position: -68px 0;
}
#mem_account_top #main ul.sub_menu li#furikomi_info_tab.selected a:before,
#mem_account_top #main ul.sub_menu li#furikomi_info_tab:hover a:before {
	background-position: -68px -68px;
}
#mem_account_top #main ul.sub_menu li#mail_info_tab.selected a:before,
#mem_account_top #main ul.sub_menu li#mail_info_tab:hover a:before {
	background-position: -68px -136px;
}
#mem_account_top #main ul.sub_menu li#favorite_tab.selected a:before,
#mem_account_top #main ul.sub_menu li#favorite_tab:hover a:before {
	background-position: -68px -204px;
}
#mem_account_top #main ul.sub_menu li#chat_rireki_tab.selected a:before,
#mem_account_top #main ul.sub_menu li#chat_rireki_tab:hover a:before {
	background-position: -68px -272px;
}
#mem_account_top #main ul.sub_menu li#comment_tab.selected a:before,
#mem_account_top #main ul.sub_menu li#comment_tab:hover a:before {
	background-position: -68px -340px;
}

#mem_account_top #main .sub_body {
	padding: 30px 20px;
}
#mem_account_top #main form > dl > dt {
	color: #c60000;
	width: 150px;
	justify-content: center;
}
#mem_account_top #main form#form_name > dl > dt, #mem_account_top #main form#form_pw > dl > dt, #mem_account_top #main form#form_mail > dl > dt, #mem_account_top #main form#form_haishin > dl > dt, #mem_account_top #main form#form_viewlog > dl > dt, #mem_account_top #main form#form_favflag > dl > dt, #mem_account_top #main #mail_info_box form > dl > dt { 
	display: flex;
	justify-content: center;
}
#mem_account_top #main form > dl > dd {
	font-weight: bold;
}
#mem_account_top #main form#form_mail dt:nth-of-type(2)::before {
	content: "";
}
#mem_account_top #main form#form_mail dd:nth-of-type(2) {
	padding-top: 5px;
}
#mem_account_top a.extra_link {
	clear: right;
	float: right;
	color: #555;
	background-color: #fafafa;
	text-decoration: none;
	border: 1px solid #ccc;
	border-radius: 3px;
	padding: 0 8px;
	margin: 40px 0 0;
	line-height: 1.8;
	transition: opacity var(--hover_transition);
	font-size: 14px;
}
#mem_account_top a.extra_link:hover {
	opacity: var(--hover_opacity);
}
#mem_account_top a.extra_link:before {
	content: "";
	background: url(/images/icon/icon_mail_submenu.png) 0 -307px no-repeat;
	display: inline-block;
	width: 24px;
	height: 24px;
	margin-left: -4px;
	vertical-align: middle;
}

table.furikomi_list {
	width: 100%;
	margin: 10px auto 20px;
	}
table.furikomi_list th {
	background: #666;
	color: #fff;
	font-size: 15px;
	padding: 8px 0;
	border-bottom: 1px solid #fff;
}
table.furikomi_list td {
	font-size: 15px;
	padding: 8px 0;
	border-bottom: 1px dotted #999;
	text-align: center;
}
table.furikomi_list .form-check { /* なぜかズレるので微調整 ko */
	transform: translateY(-5px);
}
.kaiin_info_table th {
	color:red;
	text-align:right;
	padding:5px;
}
#mem_account_top .sub_body ul.one {
	overflow: hidden;
	border-bottom: 1px dotted #ccc;
	padding: 8px;
}
#mem_account_top .sub_body ul.one:first-child {
	border-top: 1px dotted #ccc;
}
#mem_account_top .sub_body ul.one:nth-child(even) {
	background: #fafafa;
}
#mem_account_top .sub_body .online img {
	vertical-align: middle;
}
#mem_account_top .sub_body .image {
	position: relative;
	float: left;
	margin-right: 12px;
	cursor: pointer;
	border: 1px solid #ddd;
}
#mem_account_top .sub_body .image:after {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 99999;
	margin: auto;
	background-image: url(/images/spacer.gif);
}
#mem_account_top .sub_body .image:hover {
	opacity: .7;
}
#mem_account_top .sub_body .image img{
	width: 100px;
	height: 75px;
}
#mem_account_top .sub_body .name {
	margin: 5px 0;
	font-size: 16px;
	color: #1d3994;
	cursor: pointer;
}
#mem_account_top .sub_body .name:hover {
	color: #4a61a9;
	text-decoration: underline !important;
}
#mem_account_top .sub_body .fav_del_btn {
	background: url(/images/btn/btn_taiki.png) 0 -74px no-repeat;
	width: 159px;
	height: 0;
	padding-top: 27px;
	cursor: pointer;
	margin: 10px 0 6px 0;
	overflow: hidden;
}
#mem_account_top .sub_body .fav_del_btn:hover {
	background-position: 0 -111px;
}
#mem_account_top .sub_body .fav_add_btn {
	background: url(/images/btn/btn_taiki.png) 0 0 no-repeat;
	width: 159px;
	height: 0;
	padding-top: 27px;
	cursor: pointer;
	margin: 10px 0 6px 0;
	overflow: hidden;
}
#mem_account_top .sub_body .fav_add_btn:hover {
	background-position: 0 -37px;
}
#mem_account_top .sub_body ul .fav_mail_btn {
	background: url(/images/btn/btn_taiki.png) -179px 0 no-repeat;
	width: 159px;
	height: 0;
	padding-top: 27px;
	overflow: hidden;
	cursor: pointer;
}
#mem_account_top .sub_body .fav_mail_btn:hover {
	background-position: -179px -37px;
}
.kaiin_info_table{
	font-size:16px;
}
#mem_account_top .comet_box {
	background: url(/images/logo_comet.png) top left no-repeat;
	height: 150px;
	position: relative;
	background-size: 140px 140px;
}
#mem_account_top .comet_box h4 {
	background:  url(/images/tl_comet.png) top left no-repeat;
	position: absolute;
	top: 0;
	left: 152px;
	width: 302px;
	height: 0;
	padding-top: 31px;
	overflow: hidden;
}
#mem_account_top .comet_box p.arrow_1 {
	position: absolute;
	top: 12px;
	right: 20px;
}
#mem_account_top .comet_box form {
	position: absolute;
	top: 38px;
	left: 155px;
}
#mem_account_top .comet_box textarea{
	font-size:12px;
	width:430px;
	height:40px;
	border:1px solid #ccc;
	line-height:1.0;
	color:#666;
	padding:8px 10px;
	overflow:auto;
	border-radius:8px;
	position:relative;
	margin-bottom: 3px;
}
#mem_account_top .comet_box input[type="submit"] {
	cursor: pointer;
	-webkit-appearance: none;
	appearance: none;
	border: none;
	background: #199fe8;
	color: #fff;
	font-size: 14px;
	letter-spacing: 1em;
	text-indent: 1em;
	padding: 5px 0 4px;
	width: 100px;
	margin-right: 3px;
}
#mem_account_top .comet_box input[type="submit"]:hover {
	background: #7ccaf2
}
#mem_account_top .comet_box input[type="button"] {
	cursor: pointer;
	-webkit-appearance: none;
	appearance: none;
	border: none;
	background: #eee;
	color: #555;
	font-size: 14px;
	padding: 5px 0 4px;
	width: 100px;
}
#mem_account_top .comet_box input[type="button"]:hover {
	background: #f7f7f7;
}
#mem_account_top #comment_box #notes_msg , #mem_account_top #comment_box #notes_msg1 , #mem_account_top #comment_box #notes_msg2 {
	text-align: center;
}
#mem_account_top table.comment_list {
	margin: 5px auto;
	border: 1px solid #ddd;
	width: 100%;
}
#mem_account_top table.comment_list th  {
	text-align: center;
	border: 1px solid #ddd;
	padding: 8px;
	background-color: #199fe8;
	color: #fff;
	font-weight: normal;
}
#mem_account_top table.comment_list th:first-child {
	width: 65%;
}
#mem_account_top table.comment_list td {
	border: 1px solid #ddd;
	padding: 8px 10px;
	text-align: center;
}
#mem_account_top table.comment_list span {
	background: #1abc9c;
	padding: 5px;
	color: #fff;
	margin-right: 7px;
}
#mem_account_top ul.mem_bnr {
	margin: 50px 0 0;
}
#mem_account_top ul.mem_bnr li {
	float: left;
	margin: 0 15px 15px 0;
}
#mem_account_top ul.mem_bnr li:nth-child(4n) {
	margin-right: 0;
}
#mem_account_top ul.mem_bnr li a {
	display: block;
	width: 126px;
	height: 50px;
	background: #fff url(/images/mem_bnr@2x.png) 0 0 no-repeat;
	background-size: 136px 574px;
	padding: 86px 5px 0;
	font-size: 11px;
	line-height: 1.4;
	color: #555;
	border: 10px solid #f3f3f3;
}
#mem_account_top ul.mem_bnr li a:hover {
	opacity: .7;
	text-decoration: none;
}
#mem_account_top ul.mem_bnr li:first-child + li a {
	background-position: 0 -146px;
}
#mem_account_top ul.mem_bnr li:first-child + li + li a {
	background-position: 0 -292px;
}
#mem_account_top ul.mem_bnr li:first-child + li + li + li a {
	background-position: 0 -438px;
}
/*----------------- お問い合わせ -----------------*/

#otoiawase_top #main form > dl > dd input#kind {
	width: 120px;
	margin-right: 10px;
	margin-left: 10px;
}
#otoiawase_top #browser_kind {
	margin-left: 10px;
}
#otoiawase_top .inquiry_msg {
	font-size: 15px;
	font-weight: bold;
	text-align: center;
}
#otoiawase_top #main form > dl > dd dt {
	display: inline;
	margin-right: 10px;
}
#otoiawase_top #main form > dl > dd dd {
	display: inline;
	margin-left: -.3em;
	margin-right: .5em;
}

/*----------------- 代理店お問い合わせ -----------------*/


#agent_otoiawase_top #main form > dl > dd input#kind {
	width: 120px;
	margin-right: 10px;
	margin-left: 10px;
}
#agent_otoiawase_top #browser_kind {
	margin-left: 10px;
}
#agent_otoiawase_top .inquiry_msg {
	font-size: 15px;
	font-weight: bold;
	text-align: center;
}
#agent_otoiawase_top #main form > dl > dd dt {
	display: inline;
}
#agent_otoiawase_top #main form > dl > dd dt:after {
	content: "：";
}
#agent_otoiawase_top #main form > dl > dd dd {
	display: inline;
	margin-left: -.3em;
	margin-right: .5em;
}

/* -- サポートマスター -- */

#m_tyokutuu_top h3 {
	cursor: pointer;
}
#m_tyokutuu_top #main form > dl > dd input#kind {
	width: 120px;
	margin-right: 10px;
	margin-left: 10px;
}
#m_tyokutuu_top #browser_kind {
	margin-left: 10px;
}
#m_tyokutuu_top .inquiry_msg {
	font-size: 15px;
	font-weight: bold;
	text-align: center;
}
#m_tyokutuu_top #main form > dl > dd dt {
	display: inline;
}
#m_tyokutuu_top #main form > dl > dd dt:after {
	content: "：";
}
#m_tyokutuu_top #main form > dl > dd dd {
	display: inline;
	margin-left: -.3em;
	margin-right: .5em;
}

/*----------------- 利用規約 -----------------*/

#kiyaku_top .body ul li {
	margin: 0 0 0 2em;
	padding: 0;
	list-style-type: decimal;
}


#kiyaku_top .body iframe {
	width: 100%;
	border: 0;
}
#kiyaku_top .body {
	padding: 38px;
	/* 50px-12px（iframeのパディング分を引く） */
}


/* ----- プライバシーポリシー ----- */
#privacy_top .body ul li {
	margin: 0 0 0 2em;
	padding: 0;
	list-style-type: decimal;
}


#privacy_top .body iframe {
	width: 100%;
	border: 0;
}
#privacy_top .body {
	padding: 38px;
	/* 50px-12px（iframeのパディング分を引く） */
}

.privacy_no {
	font-size: 14px;
	border-bottom: 2px solid #555;
	line-height: 1.5;
	display: inline-block;
	padding-right: 4px;
}

.privacy_no01 {
	font-size: 14px;
	text-indent: 23px;
	border-bottom: 2px solid #555;
	line-height: 1.5;
	display: inline-block;
	padding-right: 4px;
	background: url(/images/icon/icon_no01.png) 4px 3px no-repeat;
}

.privacy_no02 {
	font-size: 14px;
	text-indent: 23px;
	border-bottom: 2px solid #555;
	line-height: 1.5;
	display: inline-block;
	padding-right: 4px;
	background: url(/images/icon/icon_no02.png) 4px 3px no-repeat;
}

.privacy_no03 {
	font-size: 14px;
	text-indent: 23px;
	border-bottom: 2px solid #555;
	line-height: 1.5;
	display: inline-block;
	padding-right: 4px;
	background: url(/images/icon/icon_no03.png) 4px 3px no-repeat;
}

.privacy_no04 {
	font-size: 14px;
	text-indent: 23px;
	border-bottom: 2px solid #555;
	line-height: 1.5;
	display: inline-block;
	padding-right: 4px;
	background: url(/images/icon/icon_no04.png) 4px 3px no-repeat;
}

.privacy_no05 {
	font-size: 14px;
	text-indent: 23px;
	border-bottom: 2px solid #555;
	line-height: 1.5;
	display: inline-block;
	padding-right: 4px;
	background: url(/images/icon/icon_no05.png) 4px 3px no-repeat;
}

/*----------------- サイトマップ -----------------*/

.arrow_map_l {
	background: url(/images/icon/arrow_map_l.png) 0 1px no-repeat;
	text-indent: 12px;
	font-size:14px;
	font-weight:bold;
	line-height:14px;
	float:left;
	margin:8px 8px 0px 18px ;
}
ul.arrow_map_s {
	list-style:none;
	line-height:14px;
	padding:8px 8px 0px 18px ;
}
.arrow_map_s li {
	background: url(/images/icon/arrow_map_s.png) 0 1px no-repeat;
	text-indent: 20px;
	margin-left:14px;
	float:left;
}
ul.arrow_map_t {
	list-style:none;
	line-height:14px;
	padding:8px 8px 0px 0px ;
}
.arrow_map_t li {
	background: url(/images/icon/arrow_map_t.png) 0 1px no-repeat;
	width:147px;
	text-indent: 9px;
	margin-left:18px;
	margin-bottom:10px;
	float:left;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

hr.dot_map {
	border:none;
	border-top:1px dotted #555;
	height:1px;
	color:#fff;
	clear:both;
	padding-top:8px;
	margin:0px 0px 15px;
}

/*----------------- 男性チャット画面 -----------------*/
#mem_chat_top #contents > div {
	width: auto;
	padding-top: 0;
}
#mem_chat_top #main {
	background-color: transparent;
	box-shadow: none;
	margin: auto;
	width: 784px;
	overflow: visible;
}
#mem_chat_top #main .mem_chat_header {
	display: flex;
	align-items: center;
}
#mem_chat_top #main h1 {
	margin: 0 47px 0 1px;
    height: 36px;
}
/* 新着メールアイコン */
/*
#mem_chat_top .newmail {
	display: none;
}
#mem_chat_top .newmail.on {
	float: left;
	display: inline-block;
	line-height: 1;
	margin: 8px 2px 8px -30px;
}
*/
/* 動く告知メッセージ */
#mem_chat_top .animated_info {
	border: 0;
	box-shadow: none;
	background-color: transparent;
	line-height: 24px;
	margin: 10px 1px;
	width: 100%;
}
#mem_chat_top .animated_info:before {
	background-image: url(/images/news.svg);
	background-size: 31px 8px;
	width: 43px;
}
#mem_chat_top .animated_info > div {
	box-shadow: none;
	background-color: #fff;
	border: 1px solid #ccc;
	height: 24px;
}
/* チャットアプリケーション */
/*
#mem_chat_top .chat_app {
	margin-bottom: 16px;
}
*/
/* 拡張コンテンツ */
#mem_chat_top #main .extension {
	clear: both;
	margin: 0 1px;
}
#mem_chat_top #main .extension .contents {
	padding: 10px;
	margin-bottom: 16px;
}
#mem_chat_top #main .extension .contents > .body {
	margin: 0 5px 5px;
}
#mem_chat_top #main .contents {
	position: relative;
	background-color: #fff;
	border: 1px solid #ccc;
	box-shadow: 0 0 3px rgba(0, 0, 0, .2) inset;
	border-radius: 10px;
}
#mem_chat_top #main .contents:before {
	content: "";
	position: absolute;
	top: -2px;
	right: -2px;
	bottom: -2px;
	left: -2px;
	z-index: -10;
	border-bottom: 1px solid #fff;
	border-right: 1px solid #fff;
	border-radius: 10px;
}
#mem_chat_top #main .contents > .title {
	border-bottom: 0;
	margin-bottom: .4em;
}
#mem_chat_top #main .extension .profile {
	float: left;
	width: 328px;
	margin-right: 16px;
	height: 460px;
}
#mem_chat_top #main .extension .profile .button {		/* 汎用ボタンのスタイルを上書きする */
	display: block;
	width: 159px;
	height: 0;
	min-height: 0;
	padding: 27px 0 0;
	margin: 8px 16px;
	overflow: hidden;
	background: url(/images/btn/btn_taiki@2x.png) 0 0 no-repeat;
	background-size: 592px 170px;
}
#mem_chat_top #main .extension .profile .button:hover {
	opacity: 1;
	background-position: 0 -37px;
}
#mem_chat_top #main .extension .profile .button.faved {
	background-position: 0 -74px;
}
#mem_chat_top #main .extension .profile .button.faved:hover {
	background-position: 0 -111px;
}
#mem_chat_top #main .extension .profile > .body > dl {
	font-size: 14px;
	margin: 15px 0;
	overflow: hidden;
}
#mem_chat_top #main .extension .profile > .body > dl > dt {
	float: left;
	border-bottom: 1px dotted #555;
	text-align: right;
	width: 28%;
	padding: 6px 0;
	clear: both;
}
#mem_chat_top #main .extension .profile > .body > dl > dt:after {
	content: "：";
}
#mem_chat_top #main .extension .profile > .body > dl > dt.stretch:after {
	margin-left: -1em;
	margin-right: -1em;
}
#mem_chat_top #main .extension .profile > .body > dl > dd {
	border-bottom: 1px dotted #555;
	padding: 6px 0;
	float: left;
	width: 72%;
	text-indent: 8px;
	color: #c60000;
}
#mem_chat_top #main .extension .profile > .body > dl dl {
	overflow: hidden;
}
#mem_chat_top #main .extension .profile > .body > dl dl dt {
	float: left;
	font-size: 11px;
	margin-top: 3px;
}
#mem_chat_top #main .extension .profile > .body > dl dl dd {
	float: left;
	text-indent: 2px;
}
#mem_chat_top #main .extension .memo {
	float: left;
	width: 394px;
	height: 460px;
}
#mem_chat_top #main .extension .memo .body {
	height: 245px;
}
#mem_chat_top #main .extension .memo textarea {
	border: 1px solid #ddd;
	box-sizing: border-box;
	width: 100%;
	height: 275px;
	resize: none;
}
#mem_chat_top #main .extension .memo ul {
	height: 20px;	/* 高さを確実にするために */
	margin: 12px 0;
	overflow: hidden;
	font-size: 12px;
}
#mem_chat_top #main .extension .memo ul:before {
	content: "チャット履歴";
	float: left;
	border-right: 1px dotted #999;
	padding: 0 .7em;
	font-weight: bold;
}
#mem_chat_top #main .extension .memo li {
	float: left;
	border-right: 1px dotted #999;
	padding: 0 .7em;
}
#mem_chat_top #main .extension .memo .button_wrapper {
	margin-bottom: 0;
}
#mem_chat_top #main .extension .memo .button_wrapper button {
	height: 50px;	/* 高さを確実にするために */
	box-sizing: border-box;
}


#bottom_bnr,
#bottom_bnr_hinotori,
#bottom_bnr_nendo ,
#bottom_bnr_rank ,
#bottom_bnr_rankup_camp ,
#bottom_bnr_10pt {
	position: fixed;
	left: 0;
	bottom: 0;
	z-index: 1000;
	width: 100%;
	padding: 10px 0;
	background: #666;
	background: rgba(0,0,0,0.5);
}
a#bottom_bnr_img img:hover {
	opacity: 0.5;
}

#bottom_bnr_close ,
#bottom_bnr_hinotori_close ,
#bottom_bnr_nendo_close ,
#bottom_bnr_rank_close ,
#bottom_bnr_rankup_camp_close ,
#bottom_bnr_10pt_close {
	font-size: 20px;
	font-weight: bold;
	color: #fff;
	background-color: transparent;
	position: absolute;
	top: 0;
	right: 4px;
	cursor: pointer;
}

.bottom_bnr_box {
	padding: 10px;
	margin: 0 auto;
	width: 640px;
	text-align: center;
	background: #fff;
	background: linear-gradient(#fff, #eee);
	border-radius: 5px;
	box-shadow: 0 0 5px rgba(0,0,0,0.6);
}

.bottom_bnr_box p {
	float: left;
	width: 230px;
	padding-bottom: 10px;
	border-bottom: 1px solid #ccc;
	margin: 0;
	line-height: 1.6;
}

.bottom_bnr_btn {
	float: left;
	width: 230px;
	display: block;
	text-align: center;
	border-top: 1px solid #fff;
	padding-top: 8px;
}
a.bottom_bnr_btn:hover img {
	opacity: 0.7;
}
a.bottom_bnr_btn:hover {
	background: transparent;
}

/* バナーが2つ重なる場合用 */
#bottom_bnr + #bottom_bnr_nendo {
	bottom: 137px;
}
#bottom_bnr + #bottom_bnr_rank {
	bottom: 137px;
}
/* 右下オーバーレイバナー チケ割など*/
#bottom_bnr.right_fix ,
#bottom_bnr_nendo.right_fix ,
#bottom_bnr_rank.right_fix ,
#bottom_bnr_rankup_camp.right_fix ,
#bottom_bnr_10pt.right_fix {
	position: fixed;
	right: 0;
	left: auto;
	bottom: 10px;
	z-index: 1000;
	width: auto;
	padding: 0;
	background: transparent;
}
#bottom_bnr.right_fix #bottom_bnr_close ,
#bottom_bnr_hinotori.right_fix #bottom_bnr_hinotori_close ,
#bottom_bnr_nendo.right_fix #bottom_bnr_nendo_close ,
#bottom_bnr_rank.right_fix #bottom_bnr_rank_close ,
#bottom_bnr_rankup_camp.right_fix #bottom_bnr_rankup_camp_close ,
#bottom_bnr_10pt.right_fix #bottom_bnr_10pt_close {
	top: -17px;
	left: -17px;
	right: auto;
	font-size: 30px;
	position: absolute;
	z-index: 1000;
	width: 34px;
	height: 34px;
	background-color: #fff;
	border: 2px solid #333;
	border-radius: 50%;
	cursor: pointer;
}
#bottom_bnr.right_fix #bottom_bnr_close::before ,
#bottom_bn_hinotorir.right_fix #bottom_bnr_hinotori_close::before ,
#bottom_bnr_nendo.right_fix #bottom_bnr_nendo_close::before ,
#bottom_bnr_rank.right_fix #bottom_bnr_rank_close::before ,
#bottom_bnr_rankup_camp.right_fix #bottom_bnr_rankup_camp_close::before ,
#bottom_bnr_10pt.right_fix #bottom_bnr_10pt_close::before {
	position: absolute;
	content: "";
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) rotate(-45deg);	
	background: #333;
	width: 20px;
	height: 3px;
}
#bottom_bnr.right_fix #bottom_bnr_close::after ,
#bottom_bnr_hinotori.right_fix #bottom_bnr_hinotori_close::after ,
#bottom_bnr_nendo.right_fix #bottom_bnr_nendo_close::after ,
#bottom_bnr_rank.right_fix #bottom_bnr_rank_close::after ,
#bottom_bnr_rankup_camp.right_fix #bottom_bnr_rankup_camp_close::after ,
#bottom_bnr_10pt.right_fix #bottom_bnr_10pt_close::after {
	position: absolute;
	content: "";
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) rotate(-45deg);
	background: #333;
	width: 3px;
	height: 20px;
}
#bottom_bnr.right_fix .bottom_bnr_box ,
#bottom_bnr_hinotori.right_fix .bottom_bnr_box ,
#bottom_bnr_nendo.right_fix .bottom_bnr_box ,
#bottom_bnr_rank.right_fix .bottom_bnr_box ,
#bottom_bnr_rankup_camp.right_fix .bottom_bnr_box ,
#bottom_bnr_10pt.right_fix .bottom_bnr_box {
	padding: 15px;
	text-align: center;
	background: #fff;
	border-radius: 5px 0 0 5px;
	box-shadow: 0 0 5px rgb(0 0 0 / 60%);
	display: block;
	text-decoration: none;
	width: auto;
}
#bottom_bnr.right_fix .bottom_bnr_box div ,
#bottom_bnr_hinotori.right_fix .bottom_bnr_box div ,
#bottom_bnr_nendo.right_fix .bottom_bnr_box div ,
#bottom_bnr_rank.right_fix .bottom_bnr_box div ,
#bottom_bnr_rankup_camp.right_fix .bottom_bnr_box div ,
#bottom_bnr_10pt.right_fix .bottom_bnr_box div {
	margin-top: 8px;
	font-size: 13px;
	font-weight: bold;
}

/*----------------- ひと夏のK券 購入ページ -----------------*/

#main .hitonatsu h3{
	font-size:16px;
	color:#c00;
	margin:0;
	padding:10px 0;
	text-indent: 0;
	background: none;
	border-bottom: 1px dotted #555;
	}
.hitonatsu table {
	width:540px;
	margin:15px auto 0;
	font-size: 14px;
	}
.hitonatsu th {
	width:70px;

	vertical-align:top;
	text-align:left;
	color: #060;
	padding: 3px 0;
	}
.hitonatsu td {
	text-align:left;
	padding: 3px 0;
	}
.hitonatsu strong{
	color:#c00;
	}
.hitonatsu p{
	text-align:center;
	color:#00c;
	font-weight:bold;
	font-size: 14px;
	margin-top: 12px;
	}
.gray_box_01.hitonatsu:after {
	content: "";
	position: absolute;
	width: 68px;
	height: 67px;
	background: url(/images/ribon_hitonatsu.png) top left no-repeat;
	top: -4px;
	left: -4px;
}
.kessai_table tr.hitonatsu_table {
	background: #430502 url(/img/ryoukin_img/bg_hitonatsu.gif) top left no-repeat;
	}
.hitonatsu_table td {
	color: #fff;
	border-bottom: none;
}
.hitonatsu_table a.buy_btn {
	color: #472f00;
	background: #ffde43;
	background: linear-gradient(#ffde43 0%, #f2d741 47%, #a96e05 100%);
	box-shadow: 0 2px 0 #472f00;
}
.hitonatsu_table a.buy_btn:after {
	background-position: 0 -25px;
}

.kessai_table tr.rankup_camp_table {
	background: #172831 url(/img/ryoukin_img/bg_rankup_camp.jpg) top left no-repeat;
	}
.rankup_camp_table td {
	color: #fff;
	border-bottom: none;
}
.rankup_camp_table a.buy_btn {
	color: #472f00;
	background: #ffde43;
	background: linear-gradient(#ffde43 0%, #f2d741 47%, #a96e05 100%);
	box-shadow: 0 2px 0 #472f00;
}
.rankup_camp_table a.buy_btn:after {
	background-position: 0 -25px;
}

/*----------------- イベント一覧ページ -----------------*/

ul.event_bnr_flex {
	display: flex;
	flex-wrap: wrap;
	font-size: 12px;
}
ul.event_bnr_flex li {
	text-align: center;
	border: 5px solid #eee;
	margin: 0 10px 10px 0;
	width: 150px;
}
ul.event_bnr_flex li:nth-child(4n) {
	margin-right: 0;
}
ul.event_bnr_flex li a {
	display: block;
}
ul.event_bnr_flex li a:hover {
	opacity: 0.7;
}
ul.event_bnr_flex li span.event_name {
	display: block;
	margin: 4px 0 1px;
	font-weight: bold;
}
ul.event_bnr_flex li span.event_copy {
	display: block;
	margin: 0 0 4px;
	color: #555;
}
