@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap');

* {
	margin:0;
	padding:0;
	box-sizing:border-box;
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	-webkit-font-smoothing:antialiased;
	-moz-font-smoothing:antialiased;
	-o-font-smoothing:antialiased;
	font-smoothing:antialiased;
	text-rendering:optimizeLegibility;
}

body {
	font-family:'Noto Sans JP', Helvetica, Arial, sans-serif;
	font-weight:300;
	font-size: 12px;
	line-height:30px;
	color:#000;
	background:#aaa;
}

.comment-form {
    width:100%;
	height:100%;
	overflow:hidden;
	box-Sizing:border-box;
	position:fixed;
	top:0;
	background-color: rgba(0.2,0.2,0.2,0.5);
}

.container-comment {
	max-width:400px;
	width:100%;
    height: 100%;
	margin:0 auto;
	position:relative; 
}

#comment input[type="text"], #comment input[type="email"], #comment input[type="tel"], #comment input[type="url"], #comment textarea, #comment button[type="submit"] { font:400 12px/16px }

#comment {
    opacity: 1;
	background:#F9F9F9;
	padding:25px;
	margin:50px 0;
    border-radius: .5em;
    transition: all 300ms 0s ease;
}

#comment .title {
	margin:5px 0 15px;
}

#comment h3 {
	color: #222;
	display: block;
	font-size: 1.5rem;
	font-weight: bold;
}

fieldset {
	border: medium none !important;
	margin: 0 0 10px;
	min-width: 100%;
	padding: 0;
	width: 100%;
}

#comment input[type="text"], #comment input[type="email"], #comment input[type="tel"], #comment input[type="url"], #comment textarea {
	width:100%;
	border:1px solid #CCC;
	background:#FFF;
	margin:0 0 5px;
	padding:10px;
	border-radius: .5em;
}

#comment input[type="text"]:hover, #comment input[type="email"]:hover, #comment input[type="tel"]:hover, #comment input[type="url"]:hover, #comment textarea:hover {
	-webkit-transition:border-color 0.3s ease-in-out;
	-moz-transition:border-color 0.3s ease-in-out;
	transition:border-color 0.3s ease-in-out;
	border:1px solid #AAA;
}

#comment textarea {
	height:100px;
	max-width:100%;
  resize:none;
}

#comment button[type="submit"] {
	cursor:pointer;
	width:100%;
	border:none;
	background:rgb(0,38,85);
	color:#FFF;
	margin:0 0 5px;
	padding:10px;
	font-size:15px;
    font-weight: bold;
    border-radius: .25em;
}

#comment button[type="submit"]:hover {
	background:rgb(33, 79, 136);
	-webkit-transition:background 0.3s ease-in-out;
	-moz-transition:background 0.3s ease-in-out;
	transition:background-color 0.3s ease-in-out;
}

#comment button[type="submit"]:active { box-shadow:inset 0 1px 3px rgba(0, 0, 0, 0.5); }

#comment input:focus, #comment textarea:focus {
	outline:0;
	border:1px solid #999;
}
::-webkit-input-placeholder {
 color:#888;
}
:-moz-placeholder {
 color:#888;
}
::-moz-placeholder {
 color:#888;
}
:-ms-input-placeholder {
 color:#888;
}
