@charset "utf-8";
body {

}
#comment_menu {
	position: fixed;
	bottom: -100%;
	width: 100vw;
	max-width: 828px;
	transition: 0.5s;
	z-index: 200;
}

#comment_menu.isOpen {
	bottom: 0;
	transition: 0.5s;
}

#comment_menu .comments {
	background: rgba(255,255,255,0.93);
	padding: 25px 5% 0;
	box-sizing: border-box;
	border-radius: 14px 14px 0 0;
	-ms-overflow-style: none; 
	scrollbar-width: none;
}

#comment_menu h3 {
	font-size: 16px;
	text-align: center;
	font-family: 'Noto-Sans-JP-Light';
	padding: 0 0 7%;
}

#comment_menu .comments {
	height: 40vh;
	overflow-y: scroll;
}

#comment_menu .comments .close_menu {
	position: absolute;
	right: 12px;
	top: 12px;
}

#comment_menu .comments .comment_list {
	padding: 0 0 3%;
	position: absolute;
	overflow-y: scroll;
	width: 100%;
	box-sizing: border-box;
	left: 0;
	padding: 0 4% 3%;
	height: calc(100% - 110px);
	top: 50px;
	-webkit-overflow-scrolling: touch;
	-ms-overflow-style: none;
	scrollbar-width: none;
	
}

#comment_menu .comments .comment_list .comment_box {
	margin: 0 auto 20px;
}

#comment_menu .comments .comment_list .comment_box .avatar {
	float: left;
	width: 27px;
	height: 27px;
	color: #fff;
	font-size: 14px;
	text-align: center;
	line-height: 24px;
	border-radius: 100px; 
	margin: 0 20px 0 0;
}

#comment_menu .comments .comment_list .comment_box .white_box {
	float: left;
	width: calc(100% - 47px);
	border-radius: 12px; 
	box-sizing: border-box;
}

#comment_menu .comments .comment_list .comment_box .white_box .username {
	font-size: 11px;
	font-family: 'Noto-Sans-JP-Bold';
	letter-spacing: 1px;
	padding: 0 0 8px;
}

#comment_menu .comments .comment_list .comment_box .white_box .comment {
	font-size: 13px;
	line-height: 140%;
	font-family: 'Noto-Sans-JP-Light';
}

#comment_menu form {
	background: #fff;
	position: relative;
	height: 60px;
}

#comment_menu input[type="text"] {
	position: absolute;
	width: 100%;
	height: 100%;
	box-sizing: border-box;
	border: none;
	outline: none;
	padding: 15px 105px 15px 15px;
	font-family: 'Noto-Sans-JP-Light';
}

#comment_menu input[type="submit"] {
	position: absolute;
	right: 10px;
	top: 0;
	bottom: 0;
	width: 85px;
	height: 40px;
	background: #ea4a62;
	font-size: 15px;
	color: #fff;
	font-family: 'Noto-Sans-JP-Light';
	text-align: center;
	margin: auto;
	border-radius: 1000px; 
} 
