@charset "utf-8";
/*
CSS Information
 File name:      photoblog_detail.css
 Author:         Administrator
 Style Info:     /photoblog_detail.php
----------------------------------------------------- */
@import url(photoblog_lady.css);
.check_box-lady {
	text-align: center;
	margin: 20px auto;
	display: block;
}

.check_box.check_box-item {
	vertical-align: middle;
	font-size: 16px;
	padding-left: 30px;
	position: relative;
}
.check_box-lady input[type="checkbox"]  {
	margin: 0;
	padding: 0;
	background: none;
	border: none;
	border-radius: 0;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

/* チェックボックスデザイン */
.check_box-lady input[type="checkbox"] {
	display: none;
}
.check_box-lady input[type="checkbox"]::before,
.check_box-lady input[type="checkbox"]::after {
	content: "";
	display: block; 
	position: absolute;
}
.check_box-lady input[type="checkbox"]::before {
	border: 2px solid red;
	content: "";
	display: block;
	position: absolute;
	top: 2px;
	left: 0;
	height: 16px;
	width: 16px;
}
.check_box-lady input[type="checkbox"]::after {
	border-bottom: 2px solid white;
	border-right: 2px solid white;
	content: "";
	display: block;
	position: absolute;
	top: 3px;
	left: 5px;
	height: 11px;
	width: 6px;
	transform: rotate(40deg);
}
.check_box.check_box-item::before {
	background-color: white;
	border: 2px solid red;
	content: "";
	display: block;
	position: absolute;
	top: 2px;
	left: 0;
	height: 16px;
	width: 16px;
}
input[type="checkbox"]:checked + .check_box-item::after {
	border-bottom: 2px solid white;
	border-right: 2px solid white;
	content: "";
	display: block;
	position: absolute;
	top: 3px;
	left: 5px;
	height: 11px;
	width: 6px;
	transform: rotate(40deg);
}
input[type="checkbox"]:checked + .check_box-item::before {
	background-color: red;
}
#addComment input[type="submit"] {
	font-size: 17px;
	margin: 10px auto;
	width: 280px;
}