/************************************************************
　　　　コンテンツ
************************************************************/

/* お問い合わせ */
#contentArea #telBox .notes {
	border-bottom: 1px solid #eee;
	padding-bottom: 40px;
	margin-bottom: 40px;
}

#contentArea #telBox span {
	font-size: 1.8em;
}

#contentArea .notes {
	margin-top: 40px;
}

#contentArea .notes.hide {
	display: none;
}

#contentArea #poricy {
	margin: 10px 0 30px;
}

#contentArea #poricy h1 {
	font-size: 16px;
	margin-bottom: 20px;
}

#contentArea #poricy h2 {
	font-size: 14px;
	margin: 20px 0 4px;
}

#contentArea #poricy h3 {
	font-size: 14px;
}

#contentArea #poricy .box {
	border: 1px solid #fff;
	padding: 10px;
	margin: 10px 0 20px;
}

#contentArea #poricy .button {
	position: relative;
	padding-left: 18px;
}

#contentArea #poricy .button:before {
	content: "";
	width: 6px;
	height: 6px;
	border-top: 1px solid #E50019;
	border-right: 1px solid #E50019;
	position: absolute;
	top: 50%;left: 0;
	margin-top: -3px;
	-webkit-transform: rotate(45deg);
	   -moz-transform: rotate(45deg);
	     -ms-transform: rotate(45deg);
	        -o-transform: rotate(45deg);
	            transform: rotate(45deg);
}

#contentArea #poricy .modal {
	display: none;
	position: fixed;
	background-color: rgba(0,0,0,0.9);
	width: 100%;
	height: 100%;
	top:0; left: 0;
	z-index: 9999;
}

#contentArea #poricy .modal .inner {
	height: calc(100% - 80px);
	margin: 60px 10px 20px;
	color: #fff;
	overflow-x: scroll;
}

#contentArea #poricy .modal .closeBtn {
	display: block;
	width: 26px;height: 26px;
	position: absolute;
	top:16px;right: 36px;
	text-indent: -9999px;
}

#contentArea #poricy .modal .closeBtn:before,
#contentArea #poricy .modal .closeBtn:after {
	content: "";
	position: absolute;
	left: 3px;top: 7px;
	width: 20px;height: 2px;
	background-color: #fff;
	border-radius: 1px;
	transition: all .4s;
}

#contentArea #poricy .modal .closeBtn:before {
	-webkit-transform: translateY(7px) rotate(-135deg);
	transform: translateY(7px) rotate(-135deg);
}
#contentArea #poricy .modal .closeBtn:after {
	-webkit-transform: translateY(-5px) rotate(135deg);
	transform: translateY(-5px) rotate(135deg);
	top: 19px;
}

#contentArea form:not(.back) {
	margin-top: 40px;
}

#contentArea form dl * {
	box-sizing: border-box;
}

#contentArea form dt {
	font-weight: bold;
	margin: 8px 0 4px;
}

#contentArea form .requred {
	display: inline-block;
	font-size: 10px;
	color: #fff;
	line-height: 1;
	background-color: #E01B2A;
	padding: 2px 4px;
	margin-left: 10px;
	vertical-align: middle;
}

#contentArea form dd:not(:last-child) {
	border-bottom: 1px solid #eee;
	padding-bottom: 8px;
	min-height: 1em;
}

#contentArea form input[type="text"],
#contentArea form input[type="email"],
#contentArea form input[type="tel"] {
	border: 1px solid transparent;
	background: #f5f5f5;
	width: 100%;
	padding: 10px;
	border-radius: 0;
}

#contentArea form input[type="radio"],
#contentArea form input[type="checkbox"]{
	display: none;
}

#contentArea form input[type="checkbox"] + label {
	padding-left: 30px;
	margin-right: 20px;
	position: relative;
	cursor: pointer;
}

#contentArea form input[type="checkbox"] + label:before {
	content: "";
	display: block;
	width: 18px;
	height: 18px;
	background-color: #f5f5f5;
	position: absolute;
	top: 50%;
	left: 0px;
	margin-top: -8px;
}

#contentArea form input[type="checkbox"]:checked + label:after {
	content: "";
	display: block;
	width: 8px;
	height: 12px;
	border:3px solid #E60020;
	border-right: none;
	border-bottom: none;
	position: absolute;
	top: 50%;
	left: 4px;
	margin-top: -10px;
	-webkit-transform: rotate(225deg);
	   -moz-transform: rotate(225deg);
	     -ms-transform: rotate(225deg);
	        -o-transform: rotate(225deg);
	            transform: rotate(225deg);
}

#contentArea form input[type="radio"] + label {
	padding-left: 30px;
	margin-right: 20px;
	position: relative;
	cursor: pointer;
}

#contentArea form input[type="radio"] + label:before {
	content: "";
	display: block;
	width: 18px;
	height: 18px;
	background-color: #f5f5f5;
	border-radius: 50%;
	position: absolute;
	top: 50%;
	left: 0;
	margin-top: -8px;
}

#contentArea form input[type="radio"]:checked + label:after {
	content: "";
	display: block;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background-color: #E60020;
	position: absolute;
	top: 50%;
	left: 3px;
	margin-top: -5px;
}

#contentArea form select {
	width: 100%;
	padding:10px 0;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	text-indent: 10px;
	background: url('/common/images/select_arrow.png') no-repeat right center;
	background-size:16px;
	border-radius: 0;
	border: 1px solid #eee;

	box-shadow: none;
}

#contentArea form textarea {
	width: 100%;
	border: 1px solid transparent;
	background: #f5f5f5;
	padding: 15px 20px;
	height: 15em;
}

#contentArea form .errorMsg {
	display: none;
}

#contentArea form .ad {
	font-weight: bold;
	display: block;
	margin-top: 10px;
	}

/*エラー*/
#contentArea form input:focus:required:invalid,
#contentArea form textarea:focus:required:invalid,
#contentArea form input:required:invalid,
#contentArea form textarea:required:invalid {
	background: url('/common/images/form_ng.png') no-repeat right 5px top 50% #fdf5f5;
	background-size: 14px 14px;
}

#contentArea form input:focus:required:valid,
#contentArea form input:focus:valid,
#contentArea form textarea:focus:required:valid,
#contentArea form textarea:focus:valid {
	background: url('/common/images/form_ok.png') no-repeat right 5px top 50% #f0fcf2;
	background-size: 14px 14px;
}

#contentArea form input[type="submit"]:focus:valid {
	background-image: none;
	background-color: #f00;
}

/*OK(入力済)*/
#contentArea form input:required:valid,
#contentArea form textarea:required:valid {
}

#contentArea form #submit {
	margin-bottom: 20px;
	text-align: center;
}

#contentArea form #submit input#submitBtn {
	width: 100%;
	display: block;
	text-align: center;
	border: 1px solid #000000;
	background-color: transparent;
	padding: 12px;
	font-size: 12px;
	color: #000;
	max-width: 400px;
	margin: 0 auto;
	border-radius: 0;
}


#contentArea form #BackBtn {
	-webkit-appearance: none;
	background-color: transparent;
	border: none;
	margin: 0 auto;
	text-align: center;
}

/*エラー*/
#contentArea form .error {
	color:#E01B2A!important;
}

#contentArea form .error input {
	color: #000!important;
}

#contentArea form .error input,
#contentArea form .error select {
	border-color: #E01B2A!important;
}

#contact footer {
	margin-top: 0;
}

/*****************************************************************/
	@media print, screen and (min-width: 920px) {
		#contentArea #telBox .notes {
			padding-bottom: 60px;
			margin-bottom: 60px;
		}

		#contentArea #telBox span {
			margin-right: 14px;
		}

		#contentArea .notes {
			margin-top: 60px;
		}

		#contentArea #poricy {
			margin: 60px 0 30px;
		}

		#contentArea #poricy .box {
			display: inline-block;
			border: 1px solid #000;
			padding: 20px;
			margin: 20px 0 0;
		}

		#contentArea #poricy .button {
			text-align: center;
			font-size: 18px;
		}

		#contentArea #poricy .button:before {
			display: none;
		}

		#contentArea #poricy .modal {
			display: block;
			position: relative;
			background-color: #fff;
			height: 500px;
		}

		#contentArea #poricy .modal .inner {
			margin-top: 30px;
			color: #000;
			overflow: auto;
			padding: 20px;
		}

		#contentArea #poricy .modal .closeBtn {
			display: none;
		}

		#contentArea .notes.hide {
			display: block;
		}

		#contentArea .notes a.outLink:after {
			background-image: url('/common/images/icon_outlink_g.png') ;
		}

		#contentArea .notes a.internalLink:before {
			border-left-color: #E60020;
		}

		#contentArea .notes .closeBtn a {
			display:none;
		}


#contentArea .notes .contactBox {
	margin-top: 20px;
	padding: 20px 0;
	border-top: 1px dotted #eee;
}

#contentArea .notes .contactBox h2 {
	font-size: 14px;
}

		#contentArea form:not(.back) {
			margin-top: 60px;
		}

		#contentArea form dl * {
			box-sizing: content-box;
		}

		#contentArea form dt {
			color:#000;
			font-weight: normal;
			margin: 0;
			float: left;
			width: 200px;
			padding-top: 31px;
		}

		#contentArea form dd {
			padding: 20px 20px 20px 240px;
			border-bottom: 1px solid #eee;
			position: relative;
		}

		#contentArea form dd:before {
			content: "";
			width: 0;height: 100%;
			border-left: 1px solid #eee;
			position: absolute;
			top: 0;
			left: 220px;
		}

		#contentArea form dd:not(:last-child) {
			padding-bottom: 20px ;
			padding-right: 0;
		}


		#contentArea form input[type="text"].length150,
		#contentArea form input[type="email"].length150,
		#contentArea form input[type="tel"].length150 {
			width: 150px;
		}

		#contentArea form input[type="text"].length300,
		#contentArea form input[type="email"].length300,
		#contentArea form input[type="tel"].length300 {
			width: 300px;
		}

		#contentArea form input[type="text"].length400,
		#contentArea form input[type="email"].length400,
		#contentArea form input[type="tel"].length400 {
			width: 400px;
		}


		#contentArea form select {
			width: 200px;
		}

		#contentArea form select.subject {
			width: 620px;
		}

		#contentArea form textarea {
			width: 600px;
		}

		#contentArea form .error .errorMsg,
		#contentArea form .errorMsg {
			background: #D45252;
			color: #fff;
			font-size: 12px;
			padding: 3px 10px 2px;
			position: relative;
			margin-left: 10px;
			display: inline-block;
			opacity: 0;
			-webkit-transition: all 0.5s linear;
			       -moz-transition: all 0.5s linear;
			        -ms-transition: all 0.5s linear;
			         -o-transition: all 0.5s linear;
			            transition: all 0.5s linear;
		}

		#contentArea form .errorMsg:before {
			content: "";
			display: block;
			left: 0;
			top: 50%;
			position: absolute;
			margin-top: -4px;
			margin-left: -10px;
			border: 4px solid transparent;
			border-right: 6px solid #D45252;
		}

		#contentArea form textarea + .errorMsg {
			margin-top: 10px;
		}

		#contentArea form textarea + .errorMsg:before {
			border-bottom: 6px solid #D45252;
			border-right-color: transparent;
			top: -6px;
			left: 20px;
		}

		#contentArea form .bottom.errorMsg {
			margin: 15px 0 0 0;
		}

		#contentArea form .address li {
			position: relative;
			padding-left: 130px;
		}

		#contentArea form .address li:not(:last-child) {
			margin-bottom: 8px;
		}

		#contentArea form .ad {
			position: absolute;
			left: 0;
			width: 115px;
			font-weight: normal;
		}


		#contentArea form #submit {
			margin-top: 20px;
			text-align: center;
		}

		#contentArea form #submit input#submitBtn {
			width: 200px;
			-webkit-transition: all 0.1s linear;
			       -moz-transition: all 0.1s linear;
			        -ms-transition: all 0.1s linear;
			         -o-transition: all 0.1s linear;
			            transition: all 0.1s linear;
		}

		#contentArea form #submit input#submitBtn:hover {
			background-color: #E60020;
			color: #fff;
			-webkit-transition: all 0.1s linear;
			       -moz-transition: all 0.1s linear;
			        -ms-transition: all 0.1s linear;
			         -o-transition: all 0.1s linear;
			            transition: all 0.1s linear;
		}

		#contentArea form input:focus:invalid + .errorMsg,
		#contentArea form input:focus:required:invalid + .errorMsg,
		#contentArea form textarea:focus:required:invalid + .errorMsg{
			opacity: 1;
			-webkit-transition: all 0.5s linear;
			       -moz-transition: all 0.5s linear;
			        -ms-transition: all 0.5s linear;
			         -o-transition: all 0.5s linear;
			            transition: all 0.5s linear;
		}

		/*確認画面*/
		#contentArea form .check dt {
			padding-top: 20px;
		}

		#contentArea form .check .address li {
			margin-top: 0;
		}

		#contentArea form .check .ad {
			margin-top: 0;
		}

	}



/* Add style 'disabled submit button' */

#contentArea form .agree-checkbox {
	margin-bottom: 20px;
	text-align: center;
}

#contentArea form #submit .submit-btn {
	width: 100%;
	display: block;
	text-align: center;
	border: 1px solid #000000;
	background-color: transparent;
	padding: 12px;
	font-size: 12px;
	color: #000;
	max-width: 400px;
	margin: 0 auto;
	border-radius: 0;
}

.submit-btn[disabled] {
	opacity: 0.3;
	cursor: not-allowed;
}

@media print, screen and (min-width: 920px) {

	#contentArea form #submit .submit-btn {
		width: 200px;
		transition: all 0.1s linear;
	}

	#contentArea form #submit .submit-btn:hover {
		background-color: #E60020;
		color: #fff;
		transition: all 0.1s linear;
	}

	#contentArea form #submit .submit-btn[disabled]:hover {
		background-color: #fff;
		color: #000;
	}
}

#poricy .inner .text-right {
	margin-bottom: 20px;
	text-align: right;
}


#poricy .inner ul li {
	position: relative;
	padding-left: 1.3em;
}

#poricy .inner ul li::before {
	position: absolute;
	left: 0;
}

#poricy .inner ul li:nth-child(1):before {
	content:"\02460";
}

#poricy .inner ul li:nth-child(2):before {
	content:"\02461";
}

#poricy .inner ul li:nth-child(3):before {
	content:"\02462";
}

#poricy .inner ul li:nth-child(4):before {
	content:"\02463";
}

#poricy .inner ul li:nth-child(5):before {
	content:"\02464";
}

#poricy .inner ul li:nth-child(6):before {
	content:"\02465";
}

#poricy .inner ul li:nth-child(7):before {
	content:"\02466";
}

#poricy .inner ul li:nth-child(8):before {
	content:"\02467";
}

#poricy .inner ul li:nth-child(9):before {
	content:"\02468";
}

#poricy .inner ul li:nth-child(10):before {
	content:"\02469";
}