@charset "utf-8";
/* ------------------------------
 お問合せ・資料請求（PC）
------------------------------ */
.cms_text table th,
.cms_text table td {
	padding: 20px;
}
.required,
.any {
	display: inline-block;
	width: 45px;
	margin-bottom: 2px;
	margin-right: 10px;
	border-radius: 5px;
	background-color: #693;
	color: #fff;
	font-size: 1.3rem;
	font-weight: bold;
	text-align: center;
	line-height: 24px;
	vertical-align: middle;
}
.any {
	background-color: #808080;
}
label {
	display: inline-block;
	vertical-align: baseline;
}
/* フォーム */
.formBlock textarea::-webkit-input-placeholder,
.formBlock input::-webkit-input-placeholder {
	color: #939192;
}
.formBlock textarea::-moz-placeholder,
.formBlock input::-moz-placeholder {
	color: #939192;
}
.formBlock textarea:-ms-input-placeholder,
.formBlock input:-ms-input-placeholder {
	color: #939192;
}
.formBlock input[type='text'],
.formBlock input[type='number'],
.formBlock input[type='tel'],
.formBlock input[type='email'],
.formBlock input[type='password'],
.formBlock textarea {
	-webkit-appearance: none;
	-webkit-border-radius: 0;
	width: 50%;
	padding: 4px;
	border: solid 1px #bfbfbf;
	background: #fff;
	color: #343232;
	text-align: left;
	vertical-align: middle;
}
.formBlock input.w100p,
.formBlock textarea {
	width: 100%;
}
.formBlock input.w92p {
	width: 92%;
}
.formBlock input[type='text']:focus,
.formBlock input[type='number']:focus,
.formBlock input[type='tel']:focus,
.formBlock input[type='email']:focus,
.formBlock select:focus,
.formBlock textarea:focus {
	outline: 0;
	box-shadow: 0 0 2px 3px #ddd inset;
}
.formBlock input[type='text']:focus,
.formBlock input[type='number']:focus,
.formBlock input[type='tel']:focus,
.formBlock input[type='email']:focus,
.formBlock textarea:focus {
	outline: 0;
}
/* type="number"の矢印消す */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}
input[type="number"] {
	-moz-appearance: textfield;
}
/* ラジオボタン */
.formBlock input[type=radio] {
	display: none;
}
.formBlock input[type=radio] + span {
	display: inline-block;
	position: relative;
	width: 20px;
	height: 20px;
	margin: 0 5px 1px 0;
	border: solid 1px #bfbfbf;
	border-radius: 100%;
	background-color: #fff;
	vertical-align: middle;
}
.formBlock input[type=radio] + span::before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: 10px;
	height: 10px;
	margin: auto;
	border-radius: 100%;
	background-color: transparent;
}
.formBlock input[type=radio]:checked + span::before {
	background-color: #693;
}
/* チェックボックス */
.formBlock input[type=checkbox] {
	display: none;
}
.formBlock input[type=checkbox] + span {
	display: inline-block;
	position: relative;
	width: 20px;
	height: 20px;
	margin: 0 5px 1px 0;
	border: 1px solid #bfbfbf;
	border-radius: 4px;
	background-color: #fff;
	vertical-align: middle;
}
.formBlock input[type=checkbox] + span::before {
	content: "";
	display: none;
}
.formBlock input[type=checkbox]:checked + span {
	border: none;
	background-color: #693;
}
.formBlock input[type=checkbox]:checked + span::before {
	content: "";
	display: block;
	position: absolute;
	top: 4px;
	left: 4px;
	width: 9px;
	height: 5px;
	border-left: 3px solid #fff;
	border-bottom: 3px solid #fff;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
/* チェックボックス横並び */
.formBlock .cms_text table th p {
	display: inline-block;
	vertical-align: top;
}
.catalog label {
	margin-bottom: 10px;
}
@media print, screen and (min-width: 768px) {
	.catalog {
		display: -ms-flexbox;
		display: flex;
		flex-flow: row wrap;
	}
	.catalog label {
		width: calc(100% / 3);
	}
}
@media all and (-ms-high-contrast:none) {
	.catalog {
		display: block;
	}
	*::-ms-backdrop, .catalog label {
		width: 32.9%;
	}
}
/* 住所検索 */
.w46p {
	width: 46% !important;
}
.zip_search {
	-webkit-appearance: none;
	-webkit-border-radius: 0;
	margin-left: 12px;
	padding: 3px 1em;
	border: 2px solid #693;
	border-radius: 5px;
	background-color: #693;
	color: #fff;
	font-weight: bold;
	cursor : pointer;
}
@media print, screen and (min-width: 768px) {
	.zip_search {
		-webkit-transition: 0.3s ease-in-out;
		transition: 0.3s ease-in-out;
	}
	.zip_search:hover {
		background-color: #fff;
		color: #693;
	}
}
/* プルダウン */
.formBlock select {
	-webkit-appearance: none;
	position: relative;
	width: auto;
	height: 36px;
	padding: 0 32px 0 8px;
	border: solid 1px #bfbfbf;
	background: url("../img/select.png") no-repeat right 12px center / 10px auto;
	color: #343232;
	line-height: 36px;
	vertical-align: middle;
}
.formBlock select::-ms-expand {
	display: none;
}
/* ボタン */
.tac {
	margin-top: 80px;
}
.tac::after {
	content: "";
	display: block;
	clear: both;
}
/* 入力内容を確認・送信 */
.formBlock button.btn-submit {
	display: inline-block;
	position: relative;
	border: 2px solid #693;
	border-radius: 6px;
	background-color: #693;
	color: #fff;
	font-size: 1.8rem;
	font-weight: bold;
	-webkit-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
	cursor: pointer
}
.formBlock button.btn-submit:disabled {
	opacity: 0.4;
}
.formBlock button.btn-submit::after {
	content: "";
	display: inline-block;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 20px;
	width: 10px;
	height: 10px;
	margin: auto;
	border: 0;
	border-top: solid 3px #fff;
	border-right: solid 3px #fff;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	-webkit-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}
@media print, screen and (min-width: 768px) {
	.formBlock button.btn-submit {
		min-width: 258px;
		padding: 14px 20px;
	}
	.formBlock button.btn-submit:hover {
		background-color: #fff;
		color: #693;
	}
	.formBlock button.btn-submit:hover::after {
		border-top: solid 3px #693;
		border-right: solid 3px #693;
	}
}
/* 戻る */
.formBlock button.btn-back {
	display: inline-block;
	position: relative;
	border: 2px solid #808080;
	border-radius: 6px;
	background-color: #808080;
	color: #fff;
	font-size: 1.8rem;
	font-weight: bold;
	-webkit-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
	cursor: pointer
}
.formBlock button.btn-back::after {
	content: "";
	display: inline-block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 20px;
	width: 10px;
	height: 10px;
	margin: auto;
	border: 0;
	border-top: solid 3px #fff;
	border-left: solid 3px #fff;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	-webkit-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}
@media print, screen and (min-width: 768px) {
	.formBlock button.btn-back {
		float: left;
		min-width: 158px;
		margin-left: 71px;
		margin-right: -229px;
		padding: 14px 20px;
	}
	.formBlock button.btn-back:hover {
		background-color: #fff;
		color: #808080;
	}
	.formBlock button.btn-back:hover::after {
		border-top: solid 3px #808080;
		border-left: solid 3px #808080;
	}
}

/* ------------------------------
 お問合せ・資料請求（SP）
------------------------------ */
@media screen and (max-width: 767px) {
	.down table th {
		padding: 10px;
	}
	.down table td {
		padding: 10px 10px 20px;
	}
	.down table tr.last td {
		padding: 10px 10px 0;
	}
	.down.slrn table td {
		padding: 10px 0 20px;
	}
	.down.slrn table tr.last td {
		padding: 10px 0 0;
	}
	.cms_text table td span.red {
		display: inline-block;
	}
	/* フォーム */
	.formBlock textarea::-webkit-input-placeholder,
	.formBlock input::-webkit-input-placeholder {
		font-size: 1.3rem;
	}
	.formBlock textarea::-moz-placeholder,
	.formBlock input::-moz-placeholder {
		font-size: 1.3rem;
	}
	.formBlock textarea:-ms-input-placeholder,
	.formBlock input:-ms-input-placeholder {
		font-size: 1.3rem;
	}
	.formBlock input[type='text'],
	.formBlock input[type='number'],
	.formBlock input[type='tel'],
	.formBlock input[type='email'],
	.formBlock input[type='password'],
	.formBlock textarea {
		width: 100%;
		font-size: medium;
	}
	.formBlock input.w92p {
		width: 100%;
	}
	/* ラジオボタン */
	.formBlock input[type=radio] + span {
		width: 18px;
		height: 18px;
	}
	.formBlock input[type=radio] + span::before {
		width: 9px;
		height: 9px;
	}
	/* チェックボックス */
	.formBlock input[type=checkbox] + span {
		width: 18px;
		height: 18px;
		border-radius: 3px;
	}
	.formBlock input[type=checkbox]:checked + span::before {
		top: 4px;
		left: 4px;
		width: 8px;
		height: 4px;
		border-left: 3px solid #fff;
		border-bottom: 3px solid #fff;
	}
	/* チェックボックス横並び */
	.formBlock .cms_text table th p br {
		display: none;
	}
	.catalog label {
		display: inline-block;
		margin-right: 2em;
	}
	/* 住所検索 */
	.w46p {
		width: calc(100% - 1.8em) !important;
	}
	.zip_search {
		margin-top: 10px;
		margin-left: 0;
		padding: 3px 1em 4px;
	}
	/* プルダウン */
	.formBlock select {
		font-size: medium;
	}
	/* ボタン */
	.tac {
		margin-top: 30px;
	}
	/* 入力内容を確認・送信 */
	.formBlock button.btn-submit {
		min-width: 240px;
		padding: 12px 15px 11px;
		font-size: 1.6rem;
		background-color: #693;
		color: #fff;
	}
	.formBlock button.btn-submit::after {
		right: 15px;
		width: 8px;
		height: 8px;
	}
	.formBlock button.btn-submit:hover {
		color: #fff !important;
	}
	/* 戻る */
	.formBlock button.btn-back {
		float: none;
		min-width: 240px;
		margin: 10px 0 0;
		padding: 12px 15px 11px;
		font-size: 1.6rem;
		background-color: #808080;
		color: #fff;
	}
	.formBlock button.btn-back::after {
		left: 15px;
		width: 8px;
		height: 8px;
	}
	.formBlock button.btn-back:hover {
		color: #fff !important;
	}
	.down table tr:last-child td {
    padding: 10px 0 20px;
	}
}

/* ------------------------------
 お問合せの種類選択調整
------------------------------ */
.contact_box .contact_input_box {
	opacity: 0;
	overflow-y: hidden;
	max-height: 0;
	transition: all 500ms 0s ease;
}
.contact_box .contact_input_box.on {
	opacity: 1;
	max-height: 500px;
}
div.contact_input_box table th:first-child, div.contact_input_box table td:first-child,
div.contact_input_box table th:last-child, div.contact_input_box table td:last-child {
	border-bottom: 1px solid #ccc;
	text-align: left;
}
.cms_text table.border_table th:first-child, .cms_text table.border_table td:first-child,
.cms_text table.border_table th:last-child, .cms_text table.border_table td:last-child {
	border-bottom: 1px solid #ccc;
	text-align: left;
}
