section .inr {
	max-width: 900px;
}

article.products {
	border: 1px solid #b4b4b4;
	padding: 35px;
	justify-content: center;
}

article.products figure {
	max-width: 210px;
	margin-right: 40px;
	margin-left: -40px;
}

article.products .textarea p:not(:last-child) {
	margin-bottom: 10px;
}

article.products .price {
	color: #d21923;
}

article.products .tax {
	font-size: 70%;
}

/* 写真セクション
/* ----------------------------------- */

.photo_sec {
	margin-bottom: 20px;
}

.photo_container {
	display: flex;
	flex-wrap: wrap;
	padding: 0;
	margin: 0;
}

.photo_sec .photo_container .photo_box {
	width: calc(100% / 4);
	box-sizing: border-box;
	padding: 0px;
	background-color: #fff;
	margin-bottom: 20px;
	margin-right: 10px;
	flex: 1;
	padding-bottom: 20px;
}

.photo_box .photo_ttl {
	text-align: center;
	padding: 10px 5px;
	background-color: #3E953A;
	color: #fff;
	min-height: 70px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.photo_box div p {
	padding: 15px 10px;
	min-height: 200px;
	width: 100%;
}

.photo_box div img {
	max-width: 100%;
	margin-bottom: 15px;
}

@media screen and (max-width: 853px) {
	.photo_container {
		justify-content: space-between !important;
	}

	.photo_sec .photo_container .photo_box {
		flex: none !important;
		width: calc(50% - 5px) !important;
		margin-right: 0 !important;
		margin-bottom: 20px;
	}
}

@media screen and (max-width: 400px) {
	.photo_sec .photo_container .photo_box {
		flex: none !important;
		width: 100% !important;
		/* 1列にする */
		margin-right: 0 !important;
		margin-bottom: 20px;
	}

	.photo_box div p {
		min-height: auto;
	}
}

/* 写真添付セクション
/* ----------------------------------- */

.input_sec {
	display: flex;
	justify-content: center;
	margin-bottom: 40px;
}

.input_sec dl {
	margin-bottom: 20px;
}

.input_sec dl dt {
	margin-bottom: 10px;
}

.input_sec dl dd {
	margin-bottom: 10px;
}

.upload {
	position: relative;
}

.upload::before {
	content: url(../img/common/ico_pic.png);
	width: 196px;
	height: 46px;
	display: inline-block;
	vertical-align: middle;
	transition: opacity 0.3s ease;
}

.upload:hover::before {
	opacity: 0.7;
}

.upload::after {
	display: inline-block;
	margin-left: 10px;
	vertical-align: middle;
	font-size: 14px;
}

.upload input[type=file] {
	opacity: 0;
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1;
}

p input[type=button] {
	padding: 5px 10px;
}

#upload_note{
	background-color: #FFEBF1;
	color: red;
	padding: 2%;
	width: 100%;
	max-width: 960px;
	border: 1px solid red;
	font-weight: bold;
	margin-bottom: 20px;
}
#upload_note p{
	color: red;
	text-align: center;
}

.del_btn{
	display: block;
	width: 40%;
	max-width: 40%;
	padding: 5px 0;
	background: #ccc;
	color: #000;
	text-align: center;
	margin: 10px auto;
}

/* リセット系 
/* ----------------------------------- */

#form input[type=text],
#form input[type=email],
#form textarea {
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	background-color: transparent;
	background-image: none;
	border: 1px solid rgba(0, 0, 0, 0.16);
	border-radius: 0;
	color: inherit;
	font-family: inherit;
	font-size: 1em;
	padding: 0.4em 0.8em;
	width: 100%;
}

#form input[type=text],
#form input[type=email],
#form textarea {
	border: 1px solid rgba(0, 0, 0, 0.32);
	box-shadow: none;
	outline: none;
}

#form input[type=submit] {
	-webkit-appearance: none;
	background-color: rgba(0, 0, 0, 0.32);
	background-image: none;
	border: none;
	border-radius: 0;
	color: #fff;
	cursor: pointer;
	display: inline-block;
	font-size: 1em;
	margin: 0;
	padding: 0;
	text-decoration: none;
}

#form input[type=submit]:hover,
#form input[type=submit]:focus {
	outline: none;
}

#form input[type=submit]::-moz-foucus-inner {
	border: none;
	padding: 0;
}

#form select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border: none;
	outline: none;
	background: transparent;
}

/* ----------------------------------- */

#form input[type=text],
#form input[type=email],
#form textarea {
	border: 1px solid #b4b4b4;
	padding: 20px;
	background: #fff;
	border-radius: 5px;
	font-size: 100%;
	box-sizing: border-box;
}

#form input[type=text].w100 {
	width: 100px;
}

#form select {
	width: 100%;
}

.select_wrap {
	position: relative;
	border: 1px solid #b4b4b4;
	padding: 20px;
	background: #fff;
	border-radius: 5px;
}

.select_wrap:after {
	content: "";
	position: absolute;
	right: 3rem;
	top: 50%;
	width: 6px;
	height: 6px;
	border-top: 2px solid #b4b4b4;
	border-left: 2px solid #b4b4b4;
	transform: translateY(-50%) rotate(-135deg);
	pointer-events: none;
}

table.form {
	/*table-layout: fixed;*/
	width: 100%;
}

table.form th {
	width: 30%;
	font-weight: 200;
	text-align: left;
	padding-bottom: 15px;
}

.required {
	color: #d21923;
}

table.form td {
	width: calc(100% - 230px);
}

table.form td {
	padding-bottom: 15px;

}

table.form tr {
	margin-bottom: 10px;
}

.btn_area {
	margin-top: 40px;
	justify-content: center;
}

#form .btn_next input[type="submit"],
#form .btn_next a {
	display: block;
	width: 300px;
	max-width: 100%;
	padding: 20px 0;
	background: #329637;
	color: #fff;
	text-align: center;
}

.btn_next input[type="submit"]:hover,
.btn_next a:hover {
	background: #322c2d;
	transition: .3s;
}

.btn_next {
	position: relative;
	margin-bottom: 20px;
}

.btn_next:after {
	content: '';
	position: absolute;
	right: 20px;
	top: 50%;
	width: 6px;
	height: 6px;
	margin-top: -4px;
	border-top: solid 1px #fff;
	border-right: solid 1px #fff;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

#form .btn_back button,
#form .btn_back a {
	display: block;
	width: 300px;
	max-width: 100%;
	padding: 20px 0;
	background: #cccccc;
	color: #000;
	text-align: center;
	border:none;
	cursor: pointer;
}

.btn_back button:hover,
.btn_back a:hover {
	background: #322c2d;
	transition: .3s;
}

.btn_back {
	position: relative;
	margin-right: 20px;
	margin-bottom: 20px;
}

.btn_back:after {
	content: '';
	position: absolute;
	left: 20px;
	top: 50%;
	width: 6px;
	height: 6px;
	margin-top: -4px;
	border-bottom: solid 1px #000;
	border-left: solid 1px #000;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.contact_box {
	width: 100%;
	max-width: 550px;
	padding: 30px;
	border: 3px solid #329637;
	margin-right: auto;
	margin-left: auto;
}

.contact_box em {
	display: block;
	font-style: normal;
	color: #329637;
	font-weight: bold;
	font-size: 160%;
	padding-bottom: 2rem;
}

.contact_box ul li:not(:last-child) em {
	border-bottom: 1px solid #cdcdcd;
}

@media screen and (max-width: 520px) {

	table.form th,
	table.form td {
		display: block;
		width: 100%;
	}

	.contact_box em {
		font-size: 160%;
	}

	.btn_back {
		position: relative;
		margin-right: 0px;
		margin-bottom: 20px;
	}
}

.mw_wp_form .error {
	color: #d21923;
	background: #ffecec;
	padding: 0.5rem 1.5rem;
	margin-top: 0.5rem;
}