@charset "utf-8";
/*===========================================
netkeiba オーナーズ
ご意見ご要望
============================================*/

/*===========================================
ご意見ご要望 #UserOpnionForm
============================================*/
.OpnionFormArea01 {
	
}
.OpnionFormArea01 .OpnionTitle01{
	background: #fff;
	text-align: center;
	color: var(--PrimaryColor);
	font-size: 20px;
	line-height: 1.6;
	font-weight: bold;
	padding: 11px 0;
}
.OpnionFormArea01 .NDRegistInfo01 {
	margin: 0 28px 28px;
}
.OpnionFormArea01 .NDRegistInfo01 p{
	color: #444;
	font-size: 16px;
	line-height: 1.6;
}
.OpnionFormArea01 .NDRegistInfo01 p + p{
	margin-top: 1em;
}
ul.FormArea {

}
ul.FormArea li {
	margin: 0 28px 20px;
}
ul.FormArea li .FormItem_Head{
	color: #444;
	font-size: 16px;
	font-weight: bold;
	line-height: 1.2;
	margin-bottom: 10px;
}
ul.FormArea li .FormItem_Head strong{
	color: #F14C2E;
}
ul.FormArea li .FormItem_Head .required {
	display: inline-block;
	background-color: #ff5c5c;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	border-radius: 4px;
	color: #fff;
	font-size: 77.8%;
	font-weight: bold;
	padding: 5px 6px;
	text-box-trim: trim-both;
	text-box-edge: cap alphabetic;
	margin-left: 4px;
}
ul.FormArea .SelectMenu01 select {
	font-size: 15px;
	font-weight: normal;
	border-radius: 10px;
	height: 40px;
}
ul.FormArea li .FormItem_Input{
	position: relative;
}
ul.FormArea li .FormItem_Input input.Txt_Form{
	border-radius: 10px;
	max-width: 320px;
	width: 100%;
	max-width: 320px;
}
ul.FormArea li .FormItem_Input label.CheckLabelWrap {
	display: block;
}
ul.FormArea li .FormItem_Input label.CheckLabelWrap + label.CheckLabelWrap{
	margin-top: 18px;
}
label.CheckLabelWrap .CheckLabel {
	display: inline-block;
	position: relative;
	color: #444;
	font-size: 16px;
	line-height: 1.2;
	top: -3px;
	margin-left: 6px;
}
/* 入力フォーム */
input.Txt_Form {
	background: #fff;
	border: 1px solid #bfbfbf;
	overflow: hidden;
	line-height: 1.4;
	padding: 8px 9px 8px 16px;
	font-size: 15px;
	width: 100%;
	height: 40px;
	max-width: 440px;
	margin: 0;
	color: #444;
	-webkit-border-radius: 4px;
	border-radius: 4px;
	-webkit-appearance: none;
	-webkit-rtl-ordering: logical;
	-webkit-user-select: auto;
	user-select: auto;
}
#UserOpnionForm .CommentForm {
	position: relative;
	margin: 0 0 8px;
}
#UserOpnionForm .CommentForm textarea{
	display: block;
	width: 100%;
	height: 270px;
	min-height: 270px;
	font-size: 16px;
	line-height: 1.5;
	padding: 12px;
	border: 1px solid #b8b8b8;
	box-shadow: none;
	border-radius:10px;
	-webkit-appearance: none;
	background: #fff;
}
#UserOpnionForm textarea.CommentForm:focus-within {
	box-shadow: 0 0 5px 0 rgba(202, 202, 202, .6);
}
#UserOpnionForm input.Txt_Form::placeholder,
#UserOpnionForm .CommentForm textarea::placeholder {
	color: #B7B7B7;
}


/* チェックボックス */
span.CheckboxWrap {
	position: relative;
	display: inline-block;
	min-width: 18px;
	height: 18px;
	cursor: pointer;
	font-variant: tabular-nums
	outline: none;
	white-space: nowrap
}
span.CheckboxWrap .CheckboxInput{
	min-width: 18px;
	height: 18px;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}
span.CheckboxWrap .CheckboxInner {
	background-color: #fff;
	border: 2px solid #bfbfbf;
	border-collapse: initial;
	display: block;
	width: 18px;
	height: 18px;
	position: relative;
	top: 0;
	left: 0;
	transition: all .2s;
}
span.CheckboxWrap .CheckboxInner::after {
	content: " ";
	display: block;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8.431 6.386'%3E%3Cpath d='M49.176,53.432a1.121,1.121,0,0,0-1.574.079l-3.537,3.537-1.172-1.172a1.063,1.063,0,1,0-1.5,1.5l1.8,1.8a1.227,1.227,0,0,0,.832.364h.081a1.226,1.226,0,0,0,.831-.364l4.16-4.161a1.121,1.121,0,0,0,.079-1.574' transform='translate(-41.032 -53.146)' fill='%23fff'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: center;
	opacity: 0;
	position: absolute;
	top: 50%;
	left: 6px;
	transform: rotate(-2deg) scale(0) translate(-50%,-50%);
	transition: all .1s cubic-bezier(.71,-.46,.88,.6),opacity .1s;
	width: 8.43px;
	height: 6.39px;
}
span.CheckboxWrap input:checked + .CheckboxInner {
	border: none;
	background-color: var(--TertiaryColor);
}
span.CheckboxWrap input:checked + .CheckboxInner::after {
	opacity: 1;
	transform: rotate(0deg) scale(1) translate(-10%, -50%);
	transition: all .2s cubic-bezier(.12,.4,.29,1.46) .1s;
}
/* ボタン */
.CommonBtn01 button:hover {
	text-decoration: none;
	background-color: #874B4B;
}
/* プライバシーポリシー */
.PrivacyPolicyWrap {
	margin: 28px 28px 16px;
}
.PrivacyPolicyWrap .Txt,
.PrivacyPolicyWrap label.CheckLabelWrap .CheckLabel{
	font-size: 14px;
	font-weight: bold;
	line-height: 1.6;
}
.PrivacyPolicyWrap .Txt {
	margin-bottom: 20px;
}
.PrivacyPolicyWrap label.CheckLabelWrap .CheckLabel{
	margin-left: 0;
}
.OpnionFormArea01 .NDRegistInfo01 p a,
.PrivacyPolicyWrap .Txt a{
	color: #03a;
	text-decoration: underline;
	font-weight: bold;
}
.OpnionFormArea01 .NDRegistInfo01 p a:hover,
.PrivacyPolicyWrap .Txt a:hover{
	text-decoration: none;
}
#opinion_form .submit_form .FormItem_Submit_Btn{
	cursor: default;
	pointer-events: none;
	box-shadow: none;
	background-color: #c5c5c5;
}
#privacypolicy:checked~.submit_form .FormItem_Submit_Btn {
	cursor: pointer;
	pointer-events: auto;
	background-color: #0033aa;
}
#UserOpnionForm .CommonBtn01 {
	padding: 12px 28px 0;
	max-width: 480px;
	margin: auto;
}
.CommonBtn01 button:disabled{
	background-color: #c1c1c1;
}
#UserOpnionForm footer .UserOpinionArea {
	display: none;
}
/***   フォーム 入力エラー表示   ***/
.formError {
	position: absolute;
	top: auto !important;
	bottom: 0;
	left: 0 !important;
	z-index: 1;
	-webkit-transform: translateY(100%);
	transform: translateY(100%);
}
.formErrorContent {
	position: relative;
	min-width: 120px;
	margin-top: 6px;
	padding: 6px 10px 5px;
	color: #fff;
 	 font-size: 0.6875rem;
	line-height: 1.4;
	background-color: #e75050;
	border-radius: 3px;
}
.formErrorArrow {
	position: absolute;
	top: 0;
	left: 12px;
	border: 0 solid transparent;
	border-width: 0 6px 6px;
	border-bottom-color: #e75050;
}


@media only screen and (min-width: 834px){
	#UserOpnionForm .Contents {
		max-width: 800px;
		margin: auto;
	}
	.OpnionFormArea01 {
		
	}
	.PrivacyPolicyWrap {
		text-align: center;
	}
	.PrivacyPolicyWrap .Txt,
	.PrivacyPolicyWrap label.CheckLabelWrap .CheckLabel {
		font-size: 16px;
	}
}

.