/* ここにCSSを記入 */

::placeholder {
	color: #AAA;
}


.comment-notes { /* コメント案内文を消す (例)メールアドレスが公開されることはありません。*/
	display: none;
}

.comment-information-messag { /* コメント入力案内文 */
	font-size: 13px;
}

.comment-form .required { /* 入力必須の装飾削除 */
	display: none;
}

.comment-form .required:before { /* 入力必須の装飾変更（現在非表示） */
	font-size:12px;
	content:'必須';
}



.commets-list > li { /* コメントリスト */
width: 100%;
	margin: 30px 0; 
}

.commets-list > li:first-child { /* コメントリストはじめの調整 */
	margin-top: 0;
	padding-top: 0;
	border: none;
}

.commets-list .children{ /* コメントのスレッド */
	margin: 0;
	padding-left: 20px;
    border-left: 2px solid #f3f5fa;
	margin-left:6px;
}

.commets-list .children ul{ /* スレッドの階層を1つまでに制御*/
	margin: 0;
	padding-left: 0;
	border-left: 0;
}

.commets-list .avatar { /* アバターの位置調整 */
	float: left;
	margin-right: 10px;
	border-radius: 50%;
}





.comment-content { /*コメントの吹き出し*/
	position: relative;
	margin: 2px 0 6px 0;
	padding: 10px 10px;
	border-radius: 4px;
	background: #f3f5fa;
}

.comment-content p { /*吹き出し内の文字を調整*/
	margin: 0;
	font-size: 15px;
	line-height: 1.5;
}

.comment-reply-link { /*返信ボタンの装飾*/
	border: none;
	transition: 0.5s;
}

.comment-reply-link:hover { /*返信ボタンのマウスホバー時*/
}

.commets-list .comment-body {
	margin-bottom: 0;
}

.comment-author .fn { /* 投稿者名の文字装飾 */
	font-style: normal;
	font-size: 17px;
	font-weight: 400;
}

.comment-author .fn a { /* 投稿者名のリンクの下線を消す */
	text-decoration: none;
}

.comment-author .says{ /* 投稿者名横のコンロを消す */
	display:none;
}

.url:after { /* URLのある投稿者の横にアイコン追加 */
	margin-left: 3px;
    font-family: "Font Awesome 5 Free",sans-serif;
    content: '\f058';
	font-weight: 900;
	color: #3DA288;
}

.commets-list .comment-meta a { /* 投稿日時のリンクを無効化 */
	pointer-events: none;
	text-decoration: none;
	color: #727272;
}

.commets-list .comment-edit-link { /* 編集リンクの装飾 */
	pointer-events: auto !important;
	text-decoration: underline !important;
	color: #1967D2 !important;
}

/*
.comment-reply-title:before {
	display: none;
}
*/

.comment-reply-title small { /* 「コメントをキャンセル」の装飾 */
	display:block;
	margin: 10px auto;
	font-size:14px;
	text-align: right;
}

.comment-reply-title a{ /* 「コメントをキャンセル」のリンク */
	text-decoration: none;
	font-weight: normal;
}

#cancel-comment-reply-link:before { /* 「コメントをキャンセル」のロゴ */
	margin-right: 6px;
    font-family: "Font Awesome 5 Free",sans-serif;
    content: '\f4b3';
	font-weight: 900;
	color: #1967D2;
}

/*
.comment-form input[type="text"]:focus,
.comment-form textarea:focus { 入力欄の枠線の変化を制御
	outline: 0 !important;
}
*/

.comment-form textarea { /* テキストエリアのリサイズを制御 */
	resize: none;
}

.comment-form-author, .comment-form-email,
.comment-form-comment, .comment-form-checkbox { /* コメント項目の高さ調整 */
	margin-bottom:8px;
}


label {
	display: flex;
    align-items: center;
}


input[type="checkbox"] {
  position: relative;
  width: 18px;
  height: 18px;
  border: 1px solid #ccc;
  vertical-align: -5px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
input[type="checkbox"]:checked {
	background: #333;
}

input[type="checkbox"]:checked:before {
	position: absolute;
	top: 2px;
	left: 5px;
	transform: rotate(50deg);
	width: 4px;
	height: 8px;
	border-right: 2px solid #FFF;
	border-bottom: 2px solid #FFF;
	content: '';
}

.form-privacy{
	margin-left: 4px;
	margin-bottom: -1px;  /*フォント別の高さ調整*/
}
