@charset "UTF-8";


/* common */
html {
	height: 100%;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
body {
	position: relative;
	top: 0;
	bottom: 0;
	width: 100%;
	min-width: 320px;
	min-height: 100%;
	background-color: #f3f3f3;
	word-wrap: break-word;
}
body:after {		/* floatされたside_contentsの高さ確保のため */
	content: "";
	display: block;
	clear: both;
	height: 80px;
}
body, button, input, option {
	color: #555;
	font-family: 'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','メイリオ',Meiryo,'ＭＳ Ｐゴシック',sans-serif;
}
a {
	color: inherit;
	text-decoration: none;
}
a:hover {
	text-decoration: underline;
}

ul.notes {
	font-size: 11px;
}
ul.notes li:before {
	content: "※";
}

.compact {
	display: none;
}

/* エラーメッセージ */
.err_msg {
	color: #da0b00;
	font-weight: bold;
}

/* ボタン */
a.button {
	display: inline-block;
	font-size: 13px;
	line-height: 1;
	color: #fff;
	background-color: #da2c21;
	padding: 7px 10px;
	border-radius: 3px;
}
a.button:hover {
	background-color: #ca1c13;
	text-decoration: none;
}
a.button:before {
	content: "";
	display: inline-block;
	vertical-align: middle;
	width: 11px;
	height: 11px;
	margin-right: 5px;
	margin-bottom: 1px;
	background: url(/images/icon/icon_sub_h3_w.png) 0px 0px no-repeat;
}
a[href*="/logout"].button {
	color: #f5b7b0;
	background-color: transparent;
	padding: 6px 9px;
	border: 1px solid #f5b7b0;
}
a[href*="/logout"].button:hover {
	background-color: #da2c21;
	padding: 7px 10px;
	border: none;
}
a[href*="/logout"].button:before {
	content: url(/images/icon/icon_sub_h3_p.png);
}

/* オンライン状態 */
.online_status:after {
	display: inline-block;
	padding: 2px 5px;
	border-width: 1px;
	border-style: solid;
	border-radius: 3px;
	font-size: 12px;
	line-height: 1;
	text-align: center;
	font-weight: bold;
	white-space: nowrap;
}
.online .online_status:after {
	content: "ONLINE";
	color: #fff;
	background-color: #c60000;
	border-color: #c60000;
}
.chat .online_status:after {
	content: "2SHOT";
	color: #1b3994;
	border-color: #1b3994;
}
.wait .online_status:after {
	content: "待ち合わせ";
	color: #f94709;
	border-color: #f94709;
}
.offline .online_status:after {
	content: "OFFLINE";
	color: #999;
	border-color: #999;
}
.standby .online_status:after {
	content: "STANDBY";
	color: #085948;
	border-color: #085948;
}

/* 新着アイコン */
.date.is_new {
	display: flex;
	align-items: center;
}
.date.is_new:before {
	content: "";
	display: inline-block;
	width: 30px;
	height: 13px;
	margin-right: .5em;
	background: url(/images/icon/icon_info_new.svg) 0 0 no-repeat;
    border-radius: 2px;
	line-height: 1;
}

/* 非公開 */
.private:before {
	content: "非公開";
	position: absolute;
	top: 0;
	left: 0;
	z-index: 8;
	width: 62px;
	font-size: 13px;
	line-height: 2;
	color: #fff;
	background-color: #000;
	opacity: .75;
	text-align: center;
}

/* header */
#header {
	position: relative;
	margin-bottom: 16px;
}
#header h1 {
	margin: 0;
	background-color: #fff;
}
#header h1 a {
	display: block;
	height: 0;
	width: 571px;
	padding-top: 53px;
	background: url(/images/header_logo_red.png) 10px 0 no-repeat;
	overflow: hidden;
}
#header ul {
	margin: 0;
	padding: 0 10px;
	color: #fff;
	background-color: #e74c3c;
	font-size: 16px;
}
#header li {
	list-style-type: none;
	display: inline-block;
	border-right: 1px dotted #f5b7b0;
}
#header li a {
	display: inline-block;
	line-height: 46px;
	padding: 0 1em;
}
#header li a:hover {
	text-decoration: none;
}
#header li:first-child {
	border-left: 1px dotted #f5b7b0;
	vertical-align: top;
}
#header li:first-child a:before {
	content: "";
	background: url(/images/blog/icon_blog.png) 0 -152px no-repeat;
	background-size: 66px 294px;
	width: 28px;
	height: 28px;
	transform: translateY(6px);
	display: inline-block;
	margin-right: 6px;
}
#header li:hover {
	background-color: #da2c21;
}
#header li.selected {
	position: relative;
	background-color: #da2c21;
	border-left: 1px solid #da2c21;
	border-right: 1px solid #da2c21;
	margin-left: -1px;
}
#header li.selected:first-child {
	margin-left: 0;
}
#header li.selected:before {
	content: "";
	position: absolute;
	bottom: -8px;
	left: 50%;
	width: 16px;
	height: 16px;
	margin-left: -8px;
	background-color: #da2c21;
 	transform: rotate(45deg);
}
#header a.button {
	position: absolute;
	right: 10px;
	bottom: 10px;
}

/* footer */
#footer {
	clear: both;
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	z-index: 9999;
	font-size:12px;
	line-height: 40px;
	color: #fff;
	background-color: #e74c3c;
	text-align: center;
	white-space: nowrap;
}
#footer a[href$="_top"] {
	display: block;
	position: absolute;
	right: 12px;
	bottom: 12px;
	width: 85px;
	height: 0;
	padding-top: 85px;
	overflow: hidden;
	background: url(/images/btn/btn_totop_2.png) 0 0 no-repeat;
	opacity: .7;
	transition: opacity .3s linear;
}
#footer a[href$="_top"].active {
	opacity: 1;
}
#footer a[href$="_top"]:hover {
	background-position: 0 -85px;
}

/* side */
#menu_overlay {
	display: none;
}

/* contents */
#contents {
	margin: 0 10px;
	overflow: hidden;
}
#contents .title {
	border-left: 6px solid #e74c3c;
	color: #e74c3c;
	background-color: #fff;
	margin-bottom: 8px;
	position: relative;
	border-top: 1px solid #ccc;
	border-right: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
	padding: 8px;
}
#contents .title h2 {
	height: 33px;
	margin: 0 0 -55px;
	padding: 20px 10px 0;
/*	border: 1px solid #ccc; */
	border-left: none;
	font-size: 20px;
	font-weight: normal;
	white-space: nowrap;
}
#contents .title h2 small:before {
	content: " - ";
}
#contents .title p.sub {
	height: 55px;
	margin: 0;
	padding: 0 10px;
	font-size: 10px;
	line-height: 32px;
}

/* modal */
#modal {
	width: 90%;
	max-width: 770px;
	min-width: 320px;
	background-color: #fff;
	overflow-y: auto;
/*
	-webkit-overflow-scrolling: touch;
*/
}
#modal > .plainmodal-close {
	position: absolute;
	top: 0;
	right: 0;
	width: 54px;
	height: 0;
	padding: 54px 0 0;
	border: none;
	background-color: transparent;
	overflow: hidden;
	outline: none;
}
#modal > .plainmodal-close:hover {
	opacity: 0.7;
}
#modal > .plainmodal-close:before {
	content: "";
	display: block;
	position: absolute;
	top: 12px;
	right: 12px;
	background: url(/images/blog/icon_blog_girls.png) 0 -38px no-repeat;
	width: 28px;
	height: 28px;
}
#modal h2 {
	margin: 0;
	border-bottom: 1px solid #aaa;
	font-weight: normal;
	text-align: center;
	font-size: 16px;
	line-height: 3.4;
}

/* form */
form {
	padding: 0 1.5em;
}
form dl {
	margin: 0;
	line-height: 3;
}
form dl dt {
	clear: left;
	float: left;
	width: 12em;
	text-align: right;
}
form dl dt:after {
	content: "：";
}
form dl dd {
	margin: 0;
}
form ul {
	margin: 0;
	padding: 0;
}
form ul li {
	list-style-type: none;
}
form .button {
	display: inline-block;
	border: none;
	color: #fff;
	background-color: #da3700;
	width: 96px;
	font-size: 14px;
	line-height: 2.6;
	text-align: center;
	margin: 0 .2em;
	padding: 0;
	cursor: pointer;
	border-radius: 0;
}
form .button.cancel {
	background-color: #555;
}
form .button.stretch {
	letter-spacing: 1em;
	text-indent: 1em;
}
form input[type="checkbox"] {
	margin-right: .5em;
}
form textarea {
	box-sizing: border-box;
	border: 1px solid #aaa;
	width: 100%;
	height: 10em;
	padding: .5em;
	resize: none;
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	border-radius: 0;
}
form .file {
	position: relative;
	overflow: hidden;
}
form .file:before {
	content: "画像を選択";
}
.dummy form .file:before {			/* for IE8 */
	content: "画像を選択" "";
}
form .file input[type="file"] {
	position: absolute;
	top: -300px;
	left: 0;
}
form .submit {
	margin: 20px 0;
	text-align: center;
}

/* ページング */
ul.paging {
	display: none;
}

.scroll_pagination_loading {
	font-size: 13px;
	background: #e6e6e6;
	text-align: center;
	padding: 10px;
	color: #999;
	margin-top: 0.8em;
}

/* 管理メニュー */
#manage_menu {
	color: #fff;
	background-color: #333;
	font-size: 14px;
	line-height: 40px;
}
#manage_menu h1 {
	float: left;
	font-size: inherit;
	font-weight: normal;
	background-color: #111;
	width: 130px;
	margin: 0;
	text-align: center;
}
#manage_menu h1:after {
	content: "";
	display: inline-block;
	background: url(/images/blog/icon_arrow_blog.png) 0 -208px no-repeat;
	width: 16px;
	height: 16px;
	margin-left: .5em;
	vertical-align: middle;
}
#manage_menu .nick_name {
	float: right;
	color: #e64c3b;
	padding: 0 1.2em;
}
#manage_menu .nick_name:before {
	content: "";
	display: inline-block;
	width: 19px;
	height: 19px;
	background: url(/images/blog/icon_blog_avatar.png) 0 0 no-repeat;
	vertical-align: middle;
}
#manage_menu .menu {
	overflow: hidden;
}
#manage_menu .menu > * {
	float: left;
}
#manage_menu ul {
	display: inline;
	margin: 0 .5em;
	padding: 0;
}
#manage_menu ul li {
	list-style-type: none;
	display: inline;
	margin-left: .5em;
}
#manage_menu ul li a:before {
	content: "";
	display: inline-block;
	width: 28px;
	height: 28px;
	background: url(/images/blog/icon_blog_girls.png) 0 -76px no-repeat;
	vertical-align: middle;
}
#manage_menu ul li:nth-child(3) a {
	color:#ff6347;
}
#manage_menu ul li:nth-child(3) a:before {
	background: url(/images/blog/icon_blog_girls_chip.svg) 0 0 no-repeat;
	vertical-align: middle;
}
#manage_menu ul li a.modal:before {
	background-position: 0 0;
}
#manage_menu a.back {
	font-size: 12px;
	text-decoration: underline;
	margin-left: 1em;
}
#manage_menu a.back:before {
	content: ">";
}

/* 投稿一覧 */
ol.posts {
	display: flex;
	flex-wrap: wrap;
	padding: 0;
	margin: 4px -6px;
	font-size: 13px;
}
ol.posts > li {
	list-style-type: none;
	flex-grow: 1;
	display: inline-block;
	position: relative;
	background-color: #fff;
	width: 218px;
	min-width: 218px;
	border: 1px solid #ccc;
	margin: 6px;
}
ol.posts > li.dummy {
	width: 232px;
	min-width: 232px;
	margin: 0;
	border: none;
	background-color: transparent;
}
ol.posts > li a:hover {
	text-decoration: none;
}
ol.posts > li a.summary {
	display: block;
	padding-bottom: 1em;
}
ol.posts > li a.summary:hover {
	opacity: .7;
}
ol.posts > li .media {
	position: relative;
	margin-bottom: 12px;
	overflow: hidden;
}
ol.posts > li .media:before {
	content: "";
	display: block;
	padding-top: 75%;
}
ol.posts > li .media img {
	position: absolute;
	top: -100%;
	left: -100%;
	right: -100%;
	bottom: -100%;
	/*width: 100%;*/
	height: auto;
	margin: auto;
	width: auto;
	max-width: 140%;
}
ol.posts > li .date {
	color: #e74c3c;
	font-size: 12px;
	line-height: 2;
	margin: 0 10px;
}
ol.posts > li .comment {
	margin: 0 1em 7px;
	line-height: 1.5;
	height: 4.5em;
	overflow: hidden;
}
ol.posts > li .blog_title {
	font-weight: bold;
	margin: 2px 10px;
	line-height: 1.5;
	height: 1.5em;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	color: #fe392e;
	font-size: 15px;
}
ol.posts > li .s_comment {
	margin: 0 10px;
	line-height: 1.5;
	height: 3em;
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	}

ol.posts > li .girl {
	display: block;
	border-top: 1px dotted #ccc;
	color: #e74c3c;
	overflow: hidden;
	position: relative;
	font-weight: bold;
}
ol.posts > li .girl:hover {
	opacity: .7;
}
ol.posts > li .girl:after {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	right: 10px;
	width: 9px;
	height: 9px;
	margin-top: -4px;
	border-top: 2px solid #ccc;
	border-right: 2px solid #ccc;
	transform: rotate(45deg);
}
ol.posts > li .girl .thumbnail {
	float: left;
	width: 44px;
	overflow: hidden;
	margin: 8px 12px 8px 8px;
	border-radius: 22px;
}
ol.posts > li .girl .thumbnail img {
	position: relative;
	left: -7px;
	height: 44px;
	background: #fff url(/images/now_loading_thumb.gif) center center no-repeat;
	vertical-align: top;
}
ol.posts > li .girl .online_status {
	margin: 9px 0 3px;
}

ol.posts > li .function {
	display: inline-block;
	box-sizing: border-box;
	border-top: 1px dotted #ccc;
	line-height: 44px;
	text-align: center;
}
ol.posts > li .function:hover {
	color: #e74c3c;
}
ol.posts > li .function:before {
	content: "";
	display: inline-block;
	background: url(/images/blog/icon_blog.png) 0 0 no-repeat;
	background-size: 66px 294px;
	width: 28px;
	height: 28px;
	vertical-align: middle;
	margin-right: .3em;
}
ol.posts > li .mail {
	float: left;
	width: 45%;
	border-right: 1px dotted #ccc;
}
ol.posts > li .mail:hover:before {
	background-position: -38px 0;
}
ol.posts > li .like {
	background-color: transparent;
	width: 55%;
	border-left: none;
	border-right: none;
	border-bottom: none;
	padding: 0;
}
ol.posts > li .like.disabled {
	background-color: #ccc;
}
ol.posts > li .like.liked {
	/*box-shadow: 0 0 5px 2px #ff8 inset;*/
	color: #e74c3c;
	font-weight: bold;
}
ol.posts > li .like:before {
	background-position: 0 -38px;
}
ol.posts > li .like:hover:before {
	background-position: -38px -38px;
}
ol.posts > li .like .count {
	color: #e74c3c;
	margin-left: .3em;
}
ol.posts > li ul.my_menu {
	position: absolute;
	top: 0;
	right: 0;
	z-index: 9;
	background: #333 url(/images/blog/icon_blog_girls.png) 3px 3px no-repeat;
	margin: 0;
	padding: 0;
	width: 36px;
	height: 36px;
	opacity: .75;
}
ol.posts > li:hover ul.my_menu {
	opacity: 1;
}
ol.posts > li ul.my_menu li {
	display: none;
	border-bottom: 1px solid #555;
}
ol.posts > li ul.my_menu li a {
	display: block;
	color: #fff;
	background-color: #333;
	width: 78px;
	line-height: 36px;
	text-align: center;
	cursor: pointer;
}
ol.posts > li ul.my_menu li a:hover {
	background-color: #555;
}
ol.posts > li ul.my_menu:hover li {
	list-style-type: none;
	float: right;
	display: block;
	margin-right: 36px;
}
ol.posts > li ul.my_menu:hover li:nth-child(3) {
	display: none;
}
ol.posts > li.private ul.my_menu:hover li:nth-child(3) {
	display: block;
}
ol.posts > li.private ul.my_menu:hover li:nth-child(4) {
	display: none;
}
body.in_app.op ol.posts > li .function {
	display: none;
}

/* パンくずリスト */
ol.topic_path {
	margin: 0;
	padding: 0 .5em;
	background-color: #e6e6e6;
	font-size: 12px;
	line-height: 32px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
ol.topic_path li {
	display: inline;
}
ol.topic_path li:after {
	content: "";
	display: inline-block;
	width: 5px;
	height: 5px;
	border-top: 1px solid #555;
	border-right: 1px solid #555;
	margin-left: .6em;
	margin-right: .3em;
	transform: rotate(45deg);
	vertical-align: middle;
}
ol.topic_path li:first-child:before {
	content: "";
	display: inline-block;
	background: url(/images/blog/icon_blog_s.png) 0 -121px no-repeat;
	width: 20px;
	height: 20px;
	vertical-align: middle;
}
ol.topic_path li:last-child:after {
	display: none;
}

/* ユーザーページタイトル */

body.user #contents .title h2, body.user.op #contents .title h2 {
	height: auto;
	margin: 0 0 0 72px;
	padding: 0;
	line-height: 1.4;
}
body.user #contents .title h2:after, body.op #contents .title h2:after {
	margin-left: 1em;
	vertical-align: 2px;
}
body.user #contents .title .thumbnail, body.op #contents .title .thumbnail {
	display: inline-block;
	width: 60px;
	margin: 10px;
	overflow: hidden;
	position: absolute;
	top: 0;
	left: 0;
	border-radius: 30px;
}
body.user #contents .title .thumbnail img, body.op #contents .title .thumbnail img {
	position: relative;
	left: -10px;
	height: 60px;
	background: url(/images/now_loading_thumb.gif) center center no-repeat;
	vertical-align: top;
}
body.user #contents .title .thumbnail:after, body.op #contents .title .thumbnail:after {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	background-image: url(/images/spacer.gif);
	z-index: 999;
}
#contents .title nav {
	margin: 2px 0 0 72px;
}
#contents .title nav a, #contents .title nav button {
	position: relative;
	color: #555;
	margin-right: .5em;
	display: inline-block;
	line-height: 30px;
}
body.user #contents .title nav button {
	border: none;
	background: transparent;
	padding: 0;
	color: #14b9d5;
}
body.user #contents .title nav a:hover {
	color: #e74c3c;
	text-decoration: none;
}

body.user #contents .title nav a:before, body.op #contents .title nav a:before {
	content: "";
	display: inline-block;
	background: url(/images/blog/icon_blog.png) 0 0 no-repeat;
	background-size: 66px 294px;
	width: 28px;
	height: 28px;
	margin-right: .3em;
	vertical-align: middle;
}
body.user #contents .title nav button::before {
	content: "";
	display: inline-block;
	background: url(/images/blog/icon_chip_b2.svg) 0 0 no-repeat;
	width: 28px;
	height: 28px;
	margin-right: .3em;
	vertical-align: middle;
}
body.user #contents .title nav button:hover::before {
	background: url(/images/blog/icon_chip_b3.svg) 0 0 no-repeat;
}
body.user #contents .title nav a:hover:before {
	background-position: -38px 0;
}
body.user #contents .title nav a[href*="/online"]:before, body.op #contents .title nav a[href*="/online"]:before {
	background-position: 0 -76px;
}
body.user #contents .title nav a[href*="/online"]:hover:before, body.op #contents .title nav a[href*="/online"]:hover:before {
	background-position: -38px -76px;
}
body.user #contents .title nav a[href^="/blog/"]:before, body.op #contents .title nav a[href^="/blog/"]:before {
	background-position: 0 -114px;
}
body.user #contents .title nav a[href^="/blog/"]:hover:before, body.op #contents .title nav a[href^="/blog/"]:hover:before {
	background-position: -38px -114px;
}
body.user ol.posts nav li .girl {
	display: none;
}




/* ログイン画面 */
#login_top form {
	width: 300px;
	background-color: #fff;
	border: 1px solid #ddd;
	margin: 0 auto;
	box-sizing: border-box;
	padding: 2em 1em;
}
#login_top form dl dt {
	width: 6em;
}
#login_top form input[type="text"], #login_top form input[type="password"] {
	width: 9em;
	border: 1px solid #ddd;
	padding: 0.3em;
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	border-radius: 0;
}
#login_top form ul {
	margin: 2.2em auto 0;
	width: 75%;
	font-size: 14px;
}

#login_top form .button {
	background-color: #e74c3c;
	width: 240px;
	font-size: 16px;
	margin: 0;
	padding: 6px 0;
}
#login_top form .button:hover {
	background-color: #da2c21;
}
#login_top form .submit {
	margin: 12px 0 0;
}

/* 記事一覧 */
#index_top #footer {
	position: fixed;
	bottom: -40px;
	transition: bottom .3s;
}
#index_top #footer a[href$="_top"] {
	bottom: 52px;
	transition: bottom .3s, opacity .3s linear;
}
#index_top #footer.show {
	bottom: 0;
}
#index_top #footer.show a[href$="_top"] {
	bottom: 12px;
}

/* 記事詳細 */
#article_top .body {
	padding: 1.2em 3em 3em;
	border: 1px solid #ccc;
	background-color: #fff;
}
#article_top .body.private {
	position: relative;
}
#article_top .body .date {
	color: #e74c3c;
	line-height: 2.4;
	margin: 0;
}
#article_top .body .media img {
	box-sizing: border-box;
	width: 100%;
	max-width: 800px;
	border: 10px solid #eee;
}
#article_top .body .comment {
	white-space: pre-wrap;
	margin: 1.5em 0;
}
#article_top .body .blog_title {
	font-weight: bold;
	white-space: pre-wrap;
	margin: 1em 0;
	font-size: 24px;
	color: #fe392e;
}
#article_top .body .like {
	padding: 0 .6em;
	border: 1px solid #ddd;
	background-color: #fff;
	font-size: 15px;
	line-height: 2.8;
	margin: 0 12px 12px 0;
}
#article_top .body .add_chip_button_2 {
	padding: 0 .6em;
	border: 1px solid #14b9d5;
	background-color: #14b9d5;
	color: #fff;
	font-size: 15px;
	line-height: 2.8;
	border-radius: 4px;
}
#article_top .body .like.disabled {
	background-color: #ccc;
}
#article_top .body .like.liked {
	box-shadow: 0 0 5px 2px #ff8 inset;
}
#article_top .body .like:before {
	content: "";
	display: inline-block;
	background: url(/images/blog/icon_blog.png) 0 -38px no-repeat;
	background-size: 66px 294px;
	width: 28px;
	height: 28px;
	vertical-align: middle;
	margin-right: .3em;
}
#article_top .body .add_chip_button_2:before {
	content: "";
	display: inline-block;
	background: url(/images/blog/icon_chip_b.svg) 0 0 no-repeat;
	width: 28px;
	height: 28px;
	vertical-align: middle;
	margin-right: .3em;
}
#article_top .body .like:hover {
	color: #e74c3c;
}

#article_top .body .like:hover:before {
	background-position: -38px -38px;
}
#article_top .body .add_chip_button_2:hover {
	box-shadow: 0 0 0 5px rgba(20, 185, 213, 0.2);
	transition: .3s;
}


#article_top .body .like .count {
	color: #e74c3c;
	margin-left: .3em;
}
#article_top .navigation {
	overflow: hidden;
	margin-top: 10px;
}
#article_top .navigation a {
	float: left;
	padding: 0 .8em;
	border: 1px solid #ddd;
	background-color: #fff;
	font-size: 15px;
	line-height: 2.8;
}
#article_top .navigation a:hover {
	color: #e74c3c;
	text-decoration: none;
}
#article_top .navigation a.prev:before {
	content: "";
	display: inline-block;
	background: url(/images/blog/icon_arrow_blog.png) 0 -130px no-repeat;
	width: 16px;
	height: 16px;
	margin-left: -.2em;
	vertical-align: middle;
}
#article_top .navigation a.next {
	float: right;
}
#article_top .navigation a.next:after {
	content: "";
	display: inline-block;
	background: url(/images/blog/icon_arrow_blog.png) 0 -104px no-repeat;
	width: 16px;
	height: 16px;
	margin-right: -.2em;
	vertical-align: middle;
}
#article_top.op .manage_box {
	margin: 80px 0 40px;
	border: 1px solid #aaa;
	border-radius: 10px;
	padding: 25px;
}
#article_top.op .manage_box h2 {
	font-size: 18px;
	background: #f1f1f1;
	padding: 10px 16px;
	margin: 0 0 15px;
}
#article_top.op .manage_box p {
	font-weight: normal;
	font-size: 11px;
	margin: 0 0 40px 10px;
}
#article_top.op .manage_box table.basic caption {
	text-align: left;
	color: #e74c3c;
}

#article_top.op .manage_box table.basic.chip_msg_list {
	margin: 40px 0 0;
}
#article_top.op .manage_box table.basic td.msg {
	width: 45%;
}
#article_top.op .manage_box table.basic td.chip {
	color: #e74c3c;
}

/* 投稿フォーム */
form#post_form {
	padding-top: 1em;
	padding-bottom: 1em;
}
form#post_form ::placeholder {
	color: #ccc;
}
form#post_form ul.notes {
	position: relative;
	top: -.2em;
}
form#post_form ul.notes li {
	line-height: 1.3;
	margin-left: 1em;
	margin-bottom: .2em;
}
form#post_form ul.notes li:before {
	margin-left: -1em;
}
form#post_form .select_media .file {
	float: left;
	margin: 0 1.5em 1em 0;
	z-index: 1;
}
form#post_form .media_info {
	display: none;
}
form#post_form .media_info .thumb {
	float: left;
	height: 81px;
	max-width: 144px;
	margin-right: 1.5em;
	margin-bottom: 1em;
}
form#post_form .media_info .thumb img {
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 100%;
}
form#post_form .media_info ul {
	font-size: 11px;
	line-height: 3;
	margin-bottom: 1.2em;
}
form#post_form .media_info ul li {
	display: inline;
}
form#post_form .media_info ul li:after {
	content: "/";
	margin: 0 .3em;
}
form#post_form .media_info ul li:last-child:after {
	display: none;
}
form#post_form .media_info .button {
	margin: 0;
	margin-right: .2em;
	width: 66px;
	font-size: 12px;
}
form#post_form .submit {
	margin-bottom: 0;
}
form#post_form.selected .media_info {
	display: block;
}
form#post_form.selected .select_media {
	display: none;
}
form#post_form.disabled {
	position: relative;
}
form#post_form.disabled:before {
	content: "しばらくお待ちください...";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	color: #333;
	background: #fff url(/images/now_loading_thumb.gif) center center no-repeat;
	opacity: .7;
	z-index: 9;
	text-align: center;
	line-height: 240px;
}
form#post_form.disabled.upload:before {
	content: "ファイルをアップロードしています...";
}
form#post_form.disabled.delete:before {
	content: "ファイルを削除しています...";
}
form#post_form .media_info::after, form#post_form .select_media::after {
	content: "";
	clear: both;
	display: block;
}
form#post_form input[name="title"] {
	box-sizing: border-box;
	border: 1px solid #aaa;
	width: 80%;
	height: 2.5em;
	margin: .5em 0 1em;
	padding: .5em;
	resize: none;
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	border-radius: 0;
}
form#post_form ::placeholder {
	color: #ccc;
}

/* チップを送るモーダル*/

#add_chip_window {
	display: none;
	width: 90%;
	max-width: 770px;
	min-width: 300px;
	background-color: #fff;
	overflow-y: auto;
}
#add_chip_window h2 {
	margin: 0;
	border-bottom: 1px solid #aaa;
	font-weight: normal;
	text-align: center;
	font-size: 18px;
	line-height: 2.7;
	color: #e74c3c;
}
#add_chip_window .plainmodal-close {
	position: absolute;
	top: 0;
	right: 0;
	width: 44px;
	height: 0;
	padding: 44px 0 0;
	border: none;
	background-color: transparent;
	overflow: hidden;
	outline: none;
}
#add_chip_window .plainmodal-close:before {
	content: "";
	display: block;
	position: absolute;
	top: 20px;
	right: 24px;
	border-top: 1px solid #aaa;
	width: 28px;
	height: 28px;
	transform: rotate(45deg);
}
#add_chip_window .plainmodal-close:after {
	content: "";
	display: block;
	position: absolute;
	top: 20px;
	right: 4px;
	border-top: 1px solid #aaa;
	width: 28px;
	height: 28px;
	transform: rotate(-45deg);
}
#add_chip_form {
	padding: 32px;
}
#add_chip_form label {
	display: inline-block;
	border: 1px solid #ccc;
	background-color: #fff;
	padding: 8px 16px;
	cursor: pointer;
	border-radius: 3px;
	margin: 6px 8px 6px 0;
}
#add_chip_form label:hover {
	background: #f1fdff;
}
#add_chip_form label input {
	margin-right: 8px;
	outline: none;
}
#add_chip_form label input#chip_count_input {
	width:30px;
	display: none;
	margin: 0 0 0 8px;
	padding: 0 4px;
	text-align: center;
	border: 1px solid #ccc;
	border-radius: 0;
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
}
#add_chip_form label span.pt_text {
	display: none;
	margin-left: 4px;
}
#add_chip_form h3 {
	font-size: 15px;
	margin: 0 0 4px;
	font-weight: normal;
}
#add_chip_form h3:nth-of-type(2) {
	margin: 16px 0 4px;
}
#add_chip_form textarea {
	height: 6em;
	padding: 10px;
}
#add_chip_form textarea::placeholder {
	color: #bbb;
}
#add_chip_form .submit_wrap {
	text-align: center;
	margin: 16px 0;
}
#add_chip_form .submit_wrap span {
	display: inline-block;
	border: none;
	color: #fff;
	background: #555;
	font-size: 16px;
	line-height: 2.6;
	text-align: center;
	margin: 0 .3em;
	padding: 0 20px;
	cursor: pointer;
	border-radius: 0;
}
#add_chip_form .submit_wrap span#btn_send_chip {
	background: #da3700;
	letter-spacing: 1em;
	text-indent: 1em;
}
#add_chip_form .submit_wrap span:hover {
	opacity: .7;
	transition: .3s;
}

/* 汎用タブ */
ul.tab_btn {
	list-style-type: none;
	margin: 16px 0 24px;
	padding: 0;
	display: flex;
	border-bottom: 1px solid #e74c3c;
}
ul.tab_btn li {
	padding: 8px 24px;
	cursor: pointer;
	font-size: 14px;
}
ul.tab_btn li:not(.selected):hover {
	opacity: .7;
}
ul.tab_btn li.selected {
	background: #e74c3c;
	color: #fff;
	cursor: auto;
	border-radius: 4px 4px 0 0;
	border-top: 1px solid #e74c3c;
}
ul.tab_content {
	list-style-type: none;
	margin: 16px 0 24px;
	padding: 0;
}
ul.tab_content li.hide {
	display: none;
}

/* 汎用テーブル */
table.basic {
	width: 100%;
	max-width: 800px;
	margin: 8px 0;
	border-collapse: collapse;
}
table.basic caption {
	font-weight: bold;
	color: #777;
	margin-bottom: 8px;
	font-size: 15px;
}
table.basic th {
	border: 1px solid #ddd;
	padding: 12px 16px;
	background: #fafafa;
	text-align: center;
}
table.basic td {
	border: 1px solid #ddd;
	padding: 12px 16px;
	background: #fff;
	text-align: center;
}
table.basic a {
	text-decoration: underline;
}
table.basic a:hover {
	opacity: .7;
}
/* 汎用ページナビ */
.page_navi {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 24px 0;
	list-style-type: none;
	font-size: 16px;
	padding: 0;
}
ul.page_navi li {
	margin: 0 5px;
	box-sizing: border-box;
}
ul.page_navi li span {
	display: block;
	border: 1px solid #ccc;
	min-width: 36px;
	height: 36px;
	padding: 0 8px;
	text-align: center;
	line-height: 35px;
	position: relative;
	text-decoration: none;
	box-sizing: border-box;
	cursor: pointer;
}
ul.page_navi li span:hover {
	opacity: .7;
	transition: .3s;
	color: #888;
}
ul.page_navi li.active span {
	pointer-events: none;
	background: #fe392e;
	color: #fff;
	border-color: #fe392e;
}
ul.page_navi li span.prev {
	padding: 0 8px 0 24px;
}
ul.page_navi li span.prev::before {
	display: block;
	content: "";
	position: absolute;
	border-top: 1px solid #555;
	border-left: 1px solid #555;
	width: 8px;
	height: 8px;
	transform: rotate(-45deg);
	top: 13px;
	left: 12px;
}
ul.page_navi li span.next {
	padding: 0 24px 0 8px;
}
ul.page_navi li span.next::before {
	display: block;
	content: "";
	position: absolute;
	border-top: 1px solid #555;
	border-left: 1px solid #555;
	width: 8px;
	height: 8px;
	transform: rotate(135deg);
	top: 13px;
	right: 12px;
}
ul.page_navi li span.first {
	padding: 0 8px 0 26px;
}
ul.page_navi li span.first::before {
	display: block;
	content: "";
	position: absolute;
	border-top: 1px solid #555;
	border-left: 1px solid #555;
	width: 8px;
	height: 8px;
	transform: rotate(-45deg);
	top: 13px;
	left: 8px;
}
ul.page_navi li span.first::after {
	display: block;
	content: "";
	position: absolute;
	border-top: 1px solid #555;
	border-left: 1px solid #555;
	width: 8px;
	height: 8px;
	transform: rotate(-45deg);
	top: 13px;
	left: 12px;
}
ul.page_navi li span.last {
	padding: 0 26px 0 8px;
}
ul.page_navi li span.last::before {
	display: block;
	content: "";
	position: absolute;
	border-top: 1px solid #555;
	border-left: 1px solid #555;
	width: 8px;
	height: 8px;
	transform: rotate(135deg);
	top: 13px;
	right: 8px;
}
ul.page_navi li span.last::after {
	display: block;
	content: "";
	position: absolute;
	border-top: 1px solid #555;
	border-left: 1px solid #555;
	width: 8px;
	height: 8px;
	transform: rotate(135deg);
	top: 13px;
	right: 12px;
}
/* チップ（女性側）*/
#op_chip_list_top .body {
	padding: 1.2em 3em 3em;
	border: 1px solid #ccc;
	background-color: #fff;
}
#op_chip_list_top .body h3 {
	color: #e74c3c;
	font-weight: normal;
	margin: 16px 0 48px 0;
	padding: 12px 0 12px 12px;
	font-size: 20px;
	border-left: 4px solid #e74c3c;
	line-height: 1.3;
	background: #fafafa;
}
#op_chip_list_top ul.tab_btn {
	width: 100%;
	max-width: 800px;
}
#op_chip_list_top .page_navi {
	width: 100%;
	max-width: 800px;
}

/* ポップアップ */
.popup_message {
	display: none;
	background-color: #fff;
	border-radius: 10px;
	padding: 0 1rem .7rem;
	width: 86%;
	max-width: 500px;
	text-align: center;
}
.popup_message > h1 {
	color: #c60001;
	font-size: 120%;
	padding: 0;
	margin: 0 0 .7rem;
	line-height: 2.5;
	border-bottom: 1px solid #ccc;
}
.popup_message > button.close {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	position: absolute;
	top: .7rem;
	right: .7rem;
	width: 24px;
	height: 24px;
	padding: 0;
	border: none;
	overflow: hidden;
	text-indent: 5em;
	color: #999;
	background-color: transparent;
}
.popup_message > button.close:before {
	font-family: "bb_font";
	content: "\e903";
	position: absolute;
	top: 0;
	left :0;
	right: 0;
	bottom: 0;
	text-indent: 0;
	font-size: 24px;
	line-height: 1;
	text-align: center;
}
.popup_message > button.close ~ div:not(.mt_12) {
	max-height: 70vh;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}
