@charset "utf-8";
/* CSS Document */

.ppBox {
	padding: 15px;
	width: auto;
	height: 200px;
	overflow-y: scroll;
	border: 1px solid #dcdcdc;
}

.ppBox h1 {
	margin: 10px auto;
	padding-bottom: 10px;
	border-bottom: double 3px #004818;
}

.ppBox ol {
	margin: 40px auto 0;
	padding-left: 40px;
	list-style: decimal;
}
.ppBox ol li {
	list-style: decimal;
}
.ppBox ol li + li {
	margin-top: 10px;
}



.smp_hdn { display: block;}
.pc_hdn { display: none; }
@media (max-width: 820px) {
	.smp_hdn { display: none; }
	.pc_hdn { display: block; }
}

#ctitle {
    margin-top: 40px;
}
.contact_end {
    margin: 100px auto;
}
.contact_end p {
    text-align: center;
}

/*-----------------------
	お問い合わせ
------------------------*/

#inquiry p {
	margin: 40px 0;
	text-align: center;
}

.hissu {
	margin-left: 20px;
	padding: 2px 10px;
	font-size: 14px;
	text-align: center;
	color: #FFFFFF;
	background: #dc143c;
	display: inline-block;
	border-radius: 5px;
}

#inquiry table {
	margin-bottom: 40px;
	width: 100%;
	border-collapse: collapse;
}

#inquiry table tr { border-bottom: 1px solid #a9a9a9; }
#inquiry table tr:last-child { border-bottom: none; }
#inquiry table th, table td {
	padding: 10px;
	text-align: left;
	box-sizing: border-box;
}
#inquiry table th {
	width: 30%;
	background: #efefef;
}
#inquiry table td {
	width: 70%;
}

@media (max-width: 820px) {
	#inquiry table th, #inquiry table td {
		display: block;
		width: 100%;
		box-sizing: border-box;
	}

	#inquiry table td { padding-bottom: 20px; }
}

#inquiry table td span {
	color: #A9A9A9;
	font-size: 14px;
}
#inquiry table td span:before {
	content: "（例）";
	margin-right: 5px;
}
#inquiry table td span.en:before {
	content: "(Example)";
	margin-right: 5px;
    margin-left: 15px;
}

.sentBtn {
	margin: 0 auto;
	width: 95%;
	text-align: center;
}
.sentBtn input


/* formパーツスタイル */
input, button, textarea {
	margin: 0;
	padding: 0;
	background: none;
	border: none;
	border-radius: 0;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

input[type="text"],
textarea {
	padding: 5px;
	outline: none;
	border: 1px solid #aaa;
	-webkit-transition: all .3s;
	transition: all .3s;
}
input[type="text"]:focus,
textarea:focus {
	box-shadow: 0 0 7px #1abc9c;
	border: 1px solid #004818;
}

input[type="text"] {
	margin-right: 0;
	width: 40%;
}
@media (max-width: 820px) {
	input[type="text"] {
		margin-right: 20px;
		width: 80%;
	}
}


textarea {
	width: 90%;
}

input[type="image"] {
	max-width: 100%;
	width: auto;
}
input[type="image"]:hover { opacity: 0.6;}

/* ラジオボタン */
input[type="radio"] {
	display: none;
}
label.radio {
	margin-right: 20px;
	position: relative;
	display: inline-block;
	padding: 3px 3px 3px 20px;
	cursor: pointer;
}
label.radio::before,
label.radio::after {
	position: absolute;
	content: '';
	top: 50%;
	border-radius: 100%;
	-webkit-transition: all .2s;
	transition: all .2s;
}
label.radio::before {
	left: 0;
	width: 14px;
	height: 14px;
	margin-top: -8px;
	margin-right: 3px;
	background: #f3f3f3;
	border: 1px solid #ccc;
}
label.radio:hover::before {
	background: #fff;
}
label.radio::after {
	opacity: 0;
	left: 4px;
	width: 8px;
	height: 8px;
	margin-top: -4px;
	background: #004818;
	-webkit-transform: scale(2);
	transform: scale(2);
}
input[type="radio"]:checked + label.radio::before {
	background: #fff;
	border: 1px solid #004818;
}
input[type="radio"]:checked + label.radio::after {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}


/* セレクトボックス */
select, option {
	padding: 5px 10px;
}


/* チェックボックス */
input[type="checkbox"] {
	display: none;
}
label.check {
	margin-right: 20px;
	position: relative;
	display: inline-block;
	padding: 3px 3px 3px 22px;
	cursor: pointer;
	-webkit-transition: all .2s;
	transition: all .2s;
}
label.check::before,
label.check::after {
	position: absolute;
	content: '';
	-webkit-transition: all .2s;
	transition: all .2s;
}
label.check::before {
	top: 50%;
	left: 0;
	width: 14px;
	height: 14px;
	margin-top: -8px;
	background: #f4f4f4;
	border: 1px solid #ccc;
	border-radius: 3px;
}
label.check::after {
	opacity: 0;
	top: 50%;
	left: 3px;
	width: 8px;
	height: 4px;
	margin-top: -4px;
	border-left: 2px solid #004818;
	border-bottom: 2px solid #004818;
	-webkit-transform: rotate(-45deg) scale(.5);
	transform: rotate(-45deg) scale(.5);
}
label.check:hover::before {
	background: #fff;
}
input[type="checkbox"]:checked + label.check::before {
	background: #fff;
	border: 1px solid #004818;
}
input[type="checkbox"]:checked + label.check::after {
	opacity: 1;
	-webkit-transform: rotate(-45deg) scale(1);
	transform: rotate(-45deg) scale(1);
}


/* ボタン */
.formBtn { float: left; }
.btnBackBox { float: right;}

