@charset "UTF-8";



/* プロフィール */

.user_info{
	display:flex;
	justify-content:center;
	align-items:center;
	box-sizing:border-box;
	padding:10px;
	background-color:#ffffff;
}

.user_image{
	width:120px;
}

.user_image img{
	width:120px;
	height:120px;
	border:1px solid #cdcdcd;
}

.user_profile{
	margin-left:10px;
	width:100%;
}

.user_profile div{
	border-bottom: 1px dashed #ccc;
	line-height: 24px;
	width:100%;
}


.user_profile span{
	width: 3.7em;
	display: inline-block;
	background: #fe7d00;
	color: #fff;
	font-size: 12px;
	line-height: 18px;
	text-align: center;
	margin-right: 5px;
	border-radius: 5px;
}



#back {
	position: fixed;
	top: 0;
	left: 0;
	background-color: rgba(0,0,0,0.7);
	display: none;
	width: 100%;
	height: 100%;
	z-index: 99;
}


#back_boxx {
	width: 86%;
	position: fixed;
	top: 50%;
	left: -43%;
	margin-top: -118px;
	margin-left: -43%;
	z-index: 100;
	background-color:#ffffff;
	border-radius:5px;
	border:1px solid #cdcdcd;
}
#back_boxx .back_bar {
	color: #444;
	padding:3px 0 3px 10px;
	border-bottom:1px dotted #cdcdcd;
	display:flex;
}

#back_boxx .back_bar img {
	width: 24px;
	height:24px;
	vertical-align: middle;
}
#back_boxx .back_data img {
	display:block;
	width: 120px;
	height: 120px;
	float:left;
}
#back_boxx .back_data {
	padding: 15px;
}
#back_boxx .back_data p {
	font-weight: bold;
	color: #333;
	line-height: 1.3em;
	margin-bottom: 5px;
	margin-left: 140px;
}
#back_boxx .back_data p.name {
	font-size: 22px;
	line-height: 1.3em;
}
#back_boxx .back_data span {
	width: 3.5em;
	display: inline-block;
	font-weight: normal;
}
#back_boxx .back_btn {
	text-align: center;
	font-size: 16px;
	font-weight:bold;
	display: block;
	margin: 0px auto 0px;
	line-height: 50px;
	padding:;
	color: #ffffff;
	border-radius:5px;
	background-color:#00c300;
	text-decoration:none;
}




.itemname{
	display:inline;
}

.itemname div{
	display:inline;
	font-size:16px;
}

.back_link{
	border-top: solid 1px #a7aebc;
	padding:10px;
}

.click_install{
	font-size:13px;
	text-align:center;
	padding-bottom:5px;
}


/* 点滅 */
.blinking{
	-webkit-animation:blink 1.5s ease-in-out infinite alternate;
    -moz-animation:blink 1.5s ease-in-out infinite alternate;
    animation:blink 1.5s ease-in-out infinite alternate;
}
@-webkit-keyframes blink{
    0% {opacity:0;}
    100% {opacity:1;}
}
@-moz-keyframes blink{
    0% {opacity:0;}
    100% {opacity:1;}
}
@keyframes blink{
    0% {opacity:0;}
    100% {opacity:1;}
}

.online {
	font-size:16px;
	margin:5px 0;
    background-color: #ff0000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.4em;
    color: #ffffff;
    margin-left: 10px;
    padding: 0 3px;
}