
/*
GENERAL
MAIN
Sub Menu
Chat Body
Chat Bar
Main Box
User List
Mypage
Info
HEADER
FOOTER
Login form
Form Parts
*/


/* GENERAL */

html {
	margin: 0;
	padding: 0;
}

body {
	margin: 0;
	padding: 0;
	text-align: center;
	font-family: Verdana, Roboto, "Droid Sans", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", sans-serif;
	overscroll-behavior: none;
	user-select: none;
	-moz-user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
	overscroll-behavior-y: none;
}

.error {
	color:red;
	font-size: 80%;
	margin: 3px;
	padding:0;
}

.additional_info {
	color:blue;
	font-size: 80%;
	margin: 3px;
	padding:0;
}

input {
	appearance: none;
	-webkit-appearance: none;
}

.input-right{
	text-align: right;
}

.input-left{
	text-align: left;
}

.input-center{
	text-align: center;
}

.btn-round {
	
}

#wrapper {
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	height: 100%;
}

/* *************************** */
/* *************************** */

/* MAIN */

.w-main {
	flex-grow: 1;
	/* width: 720px; */
	height: 100%;
	width: 100vw;
	margin: 0;
	/* border-right: 1px solid #cccccc; */
	/* border-left: 1px solid #cccccc; */
}

.main-title-bar {
	/* position: fixed; */
	/* top: 40px; */
	/* width: 720px; */
	display: flex;
	justify-content: stretch;
	flex-flow: row nowrap;
	align-items: stretch;
	position: sticky;
	top: 40px;
	margin: 0;
	background-color: #BCA3D6;
	height: 40px;
	color: #ffffff;
	line-height: 40px;
	font-size: 20px;
	font-weight: bold;
	z-index: 100;
}

.main-title-bar .main-title-bar-leftbox{
	/* position: absolute; */
	/* left: 0; */
	flex-grow: 1;
	margin: 0;
	padding: 0;
	width: 60px;
	height: 40px;
}

.main-title-bar .main-title-bar-rightbox{
	/* position: absolute; */
	/* right: 0; */
	flex-grow: 1;
	margin: 0;
	padding: 0;
	width: 60px;
	height: 40px;
}

.main-title-bar .main-title-bar-leftbox img,
.main-title-bar .main-title-bar-rightbox img{
	width: 40px;
	height: 40px;
}

.main-title-bar p.main-title-bar-text{
	/* position: absolute; */
	/* left: 0; */
	margin: 0;
	padding: 0;
	width: 100%;
}

/* *************************** */
/* *************************** */

/* Sub Menu */

.submenu-bar{
	position: fixed;
	top: 80px;
	/* width: 720px; */
	margin: 0;
	background-color: #BCA3D6;
	height: 30px;
	color: #ffffff;
	line-height: 30px;
	font-size: 16px;
}

.submenu-bar ul{
	/* width: 720px; */
	margin: 0;
	padding: 0;
}

.submenu-bar ul li {
	display: inline-block;
	margin: 0;
	padding: 0;
	/* width: 357px; */
}

.submenu-bar ul li.enable{
	background-color: #BCA3D6;
}

.submenu-bar ul li.disable{
	background-color: #999999;
}

.submenu-bar ul li a{
	margin: 0;
	padding: 0;
	text-decoration: none;
	color: #ffffff;
}

.submenu-bar-chat{
	position: fixed;
	top: 80px;
	/* width: 720px; */
	margin: 0;
	background-color: #BCA3D6;
	height: 30px;
	color: #ffffff;
	line-height: 30px;
	font-size: 16px;
}

.submenu-bar-chat ul{
	/* width: 720px; */
	margin: 0;
	padding: 0;
	background-color: #999999;
}

.submenu-bar-chat ul li{
	display: inline-block;
	margin: 0;
	padding: 0;
	/* width: 174px; */
}

.submenu-bar-chat ul li{
	background-color: #999999;
	cursor: pointer;
	border-right: 1px solid #ffffff;
}

.submenu-bar-chat ul li.noborder{
	border: none;
}

.submenu-bar-chat ul li a{
	margin: 0;
	padding: 0;
	text-decoration: none;
	color: #ffffff;
}

/* *************************** */
/* *************************** */

/* Chat Body */

.chat-body{
	margin: 0;
	padding: 0;
	width: 100vw;
}

.mes-box-me{
	margin: 10px 10px 0 10px;
	text-align: right;
}

.mes-box-other{
	margin: 10px 10px 0 10px;
	text-align: left;
}

.mes-box-other img.other-image{
	vertical-align: top;
	width: 40px;
	height: 40px;
	border-radius: 20px;
	border: 1px solid #aaaaaa;
	display: inline-block;
}

.mes-box-body{
	margin: 0 0 0 5px;
	display: inline-block;
}

.mes-box-body img.chat-image{
	width: 150px;
	border-radius: 10px;
	border: 1px solid #aaaaaa;
}

.mes-pop-me{
	min-height: 20px;
	text-align: left;
	background-color: #eeffee;
	padding: 10px 15px 10px 15px;
	border-radius: 10px;
	min-inline-size: 20px;
	max-inline-size: 250px;
	overflow-wrap: break-word;
}

.mes-pop-other{
	min-height: 20px;
	text-align: left;
	background-color: #ffeeee;
	padding: 10px 15px 10px 15px;
	border-radius: 10px;
	min-inline-size: 20px;
	max-inline-size: 250px;
	overflow-wrap: break-word;
}

.mes-time{
	font-size: 14px;
	color: #666666;
}

/* *************************** */
/* *************************** */

/* Chat Bar */

.chat-bar{
	position: sticky;
	/*bottom: 30px;*/
	bottom: 0;
	width: 100vw;
	margin: 0;
	background-color: #cccccc;
	color: #ffffff;
	line-height: 30px;
	font-size: 16px;
}

.text-sender{
	display: flex;
	justify-content: space-between;
}

.text-sender__button{
	display: flex;
	flex-direction: column;
	flex-grow: 0;
	padding: 5px;
}

.text-sender__button input{
	margin-top: auto;
}

.text-sender textarea{
	/* width: 450px; */
	margin: 5px 0 5px 0;
	resize: none;
	font-size: 16px;
	line-height: 18px;
	height: 23px;
	flex-grow: 1;
}

.file_sendbutton{
	margin: 5px;
	height: 30px;
	appearance: none;
	-webkit-appearance: none;
	border: 1px solid #666666;
	background-color: #8970a3;
	color: #fff;
	font-size: 14px;
	font-weight: bold;
	border-radius: 3px;
	flex-grow: 100;
}

.file_sender_hidden{
	position: absolute;
	top: -2000px;
}

.chat-send-button{
	height: 30px;
	appearance: none;
	-webkit-appearance: none;
	border: 1px solid #666666;
	background-color: #8970a3;
	color: #fff;
	font-size: 14px;
	font-weight: bold;
	border-radius: 3px;
}

.image-sender form,
.image-sender form fieldset
{
	margin: 0;
	padding: 0;
	border: none;
	display: flex;
	justify-content: space-between;
}

.chat-image-send-button{
	height: 30px;
	appearance: none;
	-webkit-appearance: none;
	border: 1px solid #666666;
	background-color: #8970a3;
	color: #fff;
	font-size: 14px;
	font-weight: bold;
	border-radius: 3px;
}

.chat-mode-switcher{
	height: 30px;
	appearance: none;
	-webkit-appearance: none;
	border: 1px solid #666666;
	background-color: #8970a3;
	color: #fff;
	font-size: 14px;
	font-weight: bold;
	border-radius: 3px;
}

/* *************************** */
/* *************************** */

/* Main Box */

.main-content-box {
	text-align: left;
}

.main-content-box-withsub {
	text-align: left;
}

/* *************************** */
/* *************************** */

/* User List */

table.user-list {
	margin: 0;
	padding: 0;
	border: none;
	border-style: none;
	border-collapse: collapse;
	/* width: 720px; */
	width: 100vw;
}

table.user-list tbody.nopointer:hover{
	background-color: #eeeeee;
}

table.user-list tbody.pointer:hover{
	cursor: pointer;
	background-color: #eeeeee;
}

table.user-list tr td{
	margin: 0;
	padding: 0;
	border: none;
	border-style: none;
}

table.user-list tr td.imgbox{
	padding: 3px;
	width: 86px;
}

table.user-list tr td.imgbox img{
	margin: 5px;
	padding: 0;
	width: 70px;
	height: 70px;
	border-radius: 35px;
	border: 1px solid #aaaaaa;
}

table.user-list tr td.online-stats{
	padding: 3px 0 0 3px;
	text-align: left;
	font-size: 13px;
	color: #666666;
}

table.user-list tr td.last-time{
	padding: 3px;
	text-align: right;
	font-size: 13px;
	color: #666666;
}

table.user-list tr td.name{
	padding: 0 0 3px 3px;
	text-align: left;
	font-size: 18px;
	color: #333333;
	font-weight: bold;
}

table.user-list tr td.unread{
	padding: 3px;
	text-align: right;
}

table.user-list tr td.unread p{
	display: block;
	margin: 0 0 0 auto;
	padding: 2px;
	text-align: center;
	background-color: #00aa00;
	color: #ffffff;
	font-size: 15px;
	font-weight: bold;
	width: 20px;
	height: 20px;
	border-radius: 10px;
}

table.user-list tr td.last-text{
	padding: 3px;
	text-align: left;
	font-size: 13px;
	color: #333333;
}

table.user-list tr td.prof{
	padding: 0 0 0 3px;
	text-align: left;
	font-size: 13px;
	color: #333333;
}

/* *************************** */
/* *************************** */

.search-user-box {
	position: relative;
	display: inline-block;
	margin: 3px;
	width: 230px;
}

.search-user-box a{
	position: absolute;
	top: 0;
	left: 0;
	height:100%;
	width: 100%;
}

.single-user-image-box {
	position: relative;
}

.single-user-image-box img{
	width: 230px;
	height: 230px;
}

.single-user-image-box p{
	position: absolute;
	top: 190px;
	left: 0;
	margin: 0;
	padding: 5px;
	width: 220px;
	height: 30px;
	background-color: rgba(0,0,0,0.5);
	color: white;
	text-align: left;
	font-size: 14px;
}

.single-user-image-box img.new-cover{
	position: absolute;
	top: 0;
	left: 0;
	margin: 0;
	padding: 0;
	width: 230px;
	height: 230px;
	
}

.single-user-label-box{
	font-size: 14px;
}

.single-user-label-box img{
	width: 14px;
	height: 14px;
}

/* *************************** */
/* *************************** */

/* Mypage */

.check-prof-box{
	margin: 0;
	padding: 10px;
	text-align: left;
	font-size: 14px;
	font-weight: bold;
}

.prof-box{
	margin: 0;
	padding: 10px;
	text-align: center;
}

.prof-box img{
	margin: 0;
	padding: 0;
	width: 150px;
	height: 150px;
	border: 1px solid #cccccc;
	vertical-align: top;
	border-radius: 75px;
}

.prof-box div.sub-box{
	margin: 0;
	padding: 0;
}

.prof-box p{
	margin: 5px;
	padding: 0;
	font-size: 18px;
	font-weight: bold;
}

.prof-box input{
	margin: 0;
	padding: 5px;
}

.status-box{
	margin: 0;
	padding: 0;
	width: 100vw;
	text-align: center;
}

.status-box-block{
	display: inline-block;
	margin: 0;
	padding: 0 auto 0 auto;
	/* height: 100px; */
	width: 90vw;
	text-align: center;
	border: 1px solid #cccccc;
	background-color: #ffffff;
	cursor: pointer;
}

.status-box-block:hover{
	background-color: #eeeeee;
}

.status-box-block p.status-box-value{
	margin: 10px 0 0 0;
	padding: 0;
	font-size: 20px;
	color: #333333;
	font-weight: bold;
}

.status-box-block p.rubi{
	margin: 5px 0 5px 0;
	padding: 0;
	font-size: 15px;
	color: #666666;
}

.mypage-menu-box{
	margin: 0;
	padding: 0;
	width: 100vw;
}

.mypage-menu-block-empty{
	display: inline-block;
	margin: 5px 0 0 0;
	padding: 0;
	height: 150px;
	width: 230px;
	text-align: center;
	border: 1px solid #cccccc;
	background-color: #ffffff;
}

.mypage-menu-block-empty img{
	margin: 20px 0 10px 0px;
	paffing: 0;
	width: 60px;
}

.mypage-menu-block-empty p.rubi{
	margin: 10px 0 0 0;
	padding: 0;
	font-size: 15px;
	color: #666666;
}

.mypage-menu-block{
	margin: 5px auto 5px auto;
	padding: 0;
	width: 90vw;
	text-align: center;
	border: 1px solid #cccccc;
	background-color: #ffffff;
	cursor: pointer;
}

.mypage-menu-block-text{
	margin: 5px 10px 5px 10px;
	width: 90%;
	text-align: left;
	font-size: 12px;
	color: #666;
}

.mypage-menu-block:hover{
	background-color: #eeeeee;
}

.mypage-menu-block img{
	margin: 10px 0 0 0px;
	paffing: 0;
	width: 60px;
}

.mypage-menu-block p.rubi{
	margin: 10px 0 5px 0;
	padding: 0;
	font-size: 15px;
	color: #666666;
}

/* *************************** */
/* *************************** */

/* Info */
table.info-list {
	margin: 0;
	padding: 0;
	border: none;
	border-style: none;
	border-collapse: collapse;
	width: 720px;
}

table.info-list tbody.pointer:hover{
	cursor: pointer;
	background-color: #eeeeee;
}

table.info-list tbody tr td{
	margin: 0;
	padding: 5px;
	border: none;
	border-style: none;
}

table.info-list tbody tr td.info-time{
	font-size: 14px;
	color: #999999;
}

table.info-list tbody tr td.info-title{
	font-size: 18px;
	color: #333333;
	font-weight: bold;
}

p.info-time{
	margin: 10px;
	font-size: 15px;
	color: #999999;
}

p.info-title{
	margin: 10px;
	font-size: 20px;
	color: #333333;
	font-weight: bold;
}

div.info-body{
	margin: 10px;
	font-size: 18px;
	color: #333333;
	width: 90%;
	word-wrap: break-word;
}

.setting-text{
	font-size: 12px;
}

/* *************************** */
/* *************************** */

/* HEADER */

.w-header {
	position: sticky;
	top: 0;
	background-color: #BCA3D6;
	width: 100%;
	margin: 0;
	height: 40px;
	flex-shrink: 0;
	z-index: 100;
}

.header-menu {
	
}

.header-menu ul{
	/* width: 720px; */
	margin: 0;
	height: 40px;
	display: flex;
	flex-wrap: nowrap;
	padding: 0;
	list-style: none;
	justify-content: center;
	align-items: center;
}

.header-menu ul li {
	margin: 0;
	padding: 0;
	width:100%;
}

.header-menu ul li a{
	margin: 0;
	padding: 0;
	text-decoration: none;
}

.header-menu ul li a img{
	margin: 0;
	padding: 0;
}

/* *************************** */
/* *************************** */

/* FOOTER */

.w-footer {
	position: sticky;
	bottom: 0;
	background-color: #000000;
	color: #ffffff;
	width: 100%;
	height: 30px;
	flex-shrink: 0;
}

.w-footer p{
	margin: 0;
	padding: 0;
	font-size: 12px;
	line-height: 30px;
	font-weight: bold;
}

/* *************************** */
/* *************************** */

/* Login form */

.login-box {
	margin: 5px auto 5px auto;
	width:90vw;
}

.login-form {
	border-radius: 3px;
	border: 1px solid #eee;
	box-shadow: 0px 0px 2px 0px #000000;
}

.login-form label {
	font-size: 13px;
}

/* *************************** */
/* *************************** */

/* Form Parts */

.form-parts {
	
}

.input-box {
	
}

.input-texts {
	border:none;
	border-radius:0px;
	color: #333333;
	border-bottom: 1px solid #c5c5c5;
	box-shadow: none !important;
	padding-left: 0;
	padding-right: 0;
	font-size: 16px;
}

.btn {
	padding: 10px;
	font-size: 15px;
	color: #000000;
	box-shadow: none !important;
	outline: none !important;
}

.tips-text{
	width: 80vw;
	margin: 0 auto 0 auto;
	font-size: 12px;
}

.tips-link{
	width: 80vw;
	margin: 3px auto 3px auto;
	font-size: 12px;
	font-weight: bold;
	
}

.input-select{
	font-size: 16px;
	color: #666;
	border: 1px solid #999;
	border-radius: 3px;
	background-color: #fff;
}

.btn-login{
	margin: 5px;
	height: 30px;
	appearance: none;
	-webkit-appearance: none;
	border: 1px solid #666666;
	background-color: #8970a3;
	color: #fff;
	width: 100px;
	padding: 5px;
	font-size: 14px;
	font-weight: bold;
	border-radius: 3px;
}

/* *************************** */
/* *************************** */

/* payrequest form */

.payrequest-box {
	margin: 5px auto 5px auto;
	padding: 10px;
	width:80vw;
}

.payrequest-box h3{
	color: #fff;
	background-color: #8970a3;
	margin: 5px auto 5px auto;
	padding: 5px;
	width:80vw;
	border:none;
	border-radius: 3px;
	/* box-shadow: 0px 0px 2px 0px #000000; */
}

.payrequest-form {
	padding: 10px;
	border-radius: 3px;
	border: 1px solid #aaa;
	/* box-shadow: 0px 0px 2px 0px #000000; */
}

.payrequest-form label {
	font-size: 18px;
}

/* *************************** */
/* *************************** */

/* charbox */

.charbox{
	width: 100vw;
}

.charbox-title{
	width: 100vw;
	height: 30px;
	background-color: #9A81B4;
	line-height: 30px;
	font-weight: bold;
	font-size: 16px;
	color: #fff;
	padding: 0 8px;
}

.charbox-list-box{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap    : wrap;
	flex-wrap        : wrap;
	
	width: 100vw;
}

.charbox-list-box-content{
	padding: 10px;
	text-align: center;
}

.charbox-list-box-content-image{
	
}

.charbox-list-box-content-image img{
	width: 80px;
	height: 80px;
	border:1px solid #aaa;
	border-radius: 40px;
}

.charbox-list-box-content-name{
	text-align: center;
	color: #666;
	font-size: 15px;
	line-height: 30px;
}

/* *************************** */
/* *************************** */

.flex_user_listbox{
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	position: relative;
	margin: 0;
	padding: 0;
	pointer-events: none;
}

.flex_user_childbox{
	width: 31%;
	margin: 1%;
	text-align: center;
	position: relative;
	overflow: hidden;
	pointer-events: none;
}

.flex_user_childbox::before{
	content: "";
	padding-top: 100%;
	position: relative;
	display: block;
	pointer-events: none;
}

.flex_user_childbox img.uimg{
	/* object-fit: cover; */
	position: absolute;
	top: 0;
	left: 0;
	padding: 0;
	margin: 0;
	width: 100%;
	pointer-events: none;
}

.flex_user_childbox img.ost{
	position: absolute;
	top: 5px;
	left: 5px;
	width: 15%;
	pointer-events: none;
}

.flex_user_childbox .obi{
	width: 100%;
	position: absolute;
	bottom: 0;
	left: 0;
	padding: 0 0 0 5px;
	margin: 0;
	color: #fff;
	line-height: 20px;
	text-align: left;
	font-size: 14px;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
	background-color: rgba(0,0,0,0.4);
	pointer-events: none;
}

.ucv{
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	padding: 0;
	margin: 0;
	background-color: rgba(255,255,255,0.0);
	pointer-events: auto;
}

.user_mainimg img{
	width: 100%;
}

.usr_mesbutton{
	width: 200px;
	height: 30px;
	color: #000;
	border: 1px solid #333;
	border-radius: 3px;
}

.usr_waitbutton{
	width: 200px;
	height: 30px;
	color: #000;
	border: 1px solid #333;
	border-radius: 3px;
}

.usr_iinethanksbutton{
	width: 200px;
	height: 30px;
	color: #000;
	border: 1px solid #333;
	border-radius: 3px;
}

.usr_iinebutton{
	width: 200px;
	height: 30px;
	color: #000;
	border: 1px solid #333;
	border-radius: 3px;
}

/* *************************** */
/* *************************** */

.sub-title-box {
	display: flex;
	justify-content: stretch;
	flex-flow: row nowrap;
	align-items: stretch;
	position: sticky;
	top: 80px;
	margin: 0;
	background-color: #fff;
	height: 40px;
	color: #000;
	line-height: 40px;
	font-size: 16px;
	font-weight: bold;
	z-index: 100;
}

.sub-title-box div.sub-title-active{
	margin:0;
	padding:0;
	width:50%;
	text-align:center;
	background-color: #CDB4E7;
	color: #fff;
}

.sub-title-box div.sub-title-deactive{
	margin:0;
	padding:0;
	width:50%;
	text-align:center;
	background-color: #ddd;
	color: #aaa;
}

/* *************************** */
/* *************************** */

.mypage_new{
	position: absolute;
	right: 3px;
	bottom: 3px;
	background-color: #ff6666;
	font-size: 9px;
	font-weight: bold;
	width: 16px;
	height: 16px;
	border-radius: 8px;
	color: #fff;
	padding: 0 0;
	pointer-events: none;
}