@charset "utf-8";
/* ============================================================ */
/* お問い合せ用スタイル */
/* ============================================================ */
.inquiry .inner p {
	/*text-align: center;*/
}

.inquiry .inner .txt_red {
	color: #e62929;
	font-weight: bold;
}

.inquiry #inquiry_tel {
	margin-top: 10px;
}

.inquiry #inquiry_tel div {
	background: #ffecf2;
	padding: 15px;
	width: 100%;
	text-align: center;
	border-radius: 5px;
	box-sizing:border-box;
}

.inquiry #inquiry_tel div h2 {
	font-size: 1.5rem;
	color: #7b4317;
	font-weight: bold;
	text-align: center;
}

.inquiry #inquiry_tel div p span {
	font-size: 2.2rem;
	color: #f66796;
	font-weight: bold;
	line-height: 1.4;
}

.inquiry #inquiry_tel div p a {
	color: #f66796 !important;
}


/* .contact_error
------------------------------------------------------------ */
.inquiry .contact_error {
	/*background: #fff0f1;
	border: 3px solid #eabcbf;
	padding: 25px;
	margin: 0 auto;*/
	margin: 15px 0;
}

.inquiry .contact_error p {
	background: #d70000;
	color: #fff;
	font-weight: bold;
	padding: 6px 10px;
	font-size: 1.4rem;
}

/*.inquiry .contact_error ul li {
	color: #e62929;
	font-weight: bold;
	list-style-type: disc;
	margin: 0 0 0 20px;
}*/



/* table
------------------------------------------------------------ */
#inquiry_index .inner table {
	margin: 20px 0;
}

#inquiry_confirm .inner table {
	margin: 20px 0 0 0;
}

.inquiry .inner table {
	width: 100%;
	border: none;
	border-bottom: 1px solid #ddd;
}

.inquiry .inner table tr ,
.inquiry .inner table th ,
.inquiry .inner table td {
	display: block;
}

.inquiry .inner table th ,
.inquiry .inner table td {
	border-bottom: none;
}

.inquiry .inner table td {
	vertical-align: middle;
}

.inquiry .inner table td p {
	margin: 5px 0 0 0;
	text-align: left !important;
}

.inquiry .inner table td .txt_error {
	color: #e62929;
	font-weight: bold;
}

.inquiry .inner table th {
	text-align: left;
}


/* formパーツ */
.inquiry .inner table td input[type="text"] ,
.inquiry .inner table td textarea {
	border: 1px solid #a9a9a9;
	background: none;
	-webkit-appearance:none;
	padding: 6px 8px;
	margin: 0 !important;
	line-height: 1.4;
	box-sizing: border-box;
	-webkit-appearance:none;
	border-radius: 0;
}

.inquiry .inner table td .tbox_s {
	width: 40%;
}

.inquiry .inner table td .tbox_m {
	width: 80%;
}

.inquiry .inner table td .tbox_l {
	width: 100%;
}

.inquiry .inner table td textarea {
	width: 100%;
	height: 100px;
	padding: 6px 8px;
	margin: 0;
	line-height: 1.4;
	overflow: scroll;
	-webkit-overflow-scrolling: touch;
}

.inquiry .inner table td .txt_error {
	color: #e62929;
	font-weight: bold;
}



/* .list_checkbox */
.inquiry .inner table td .list_checkbox {
	overflow: hidden;
	margin: 0 0 5px 0;
}

.inquiry .inner table td .list_checkbox li {
	width: 100%;
	position: relative;
	margin: 0;
}

.inquiry .inner table td .list_checkbox li label {
    color:#333;
    display:block;
    text-align: left;
	padding: 8px 10px;
    border: 1px solid #ddd;
    border-bottom: none;
    background-image:-webkit-gradient(linear,left top,left bottom,from(#F9F9F9),to(#EEEEEE));
    background:-moz-linear-gradient(#F9F9F9,#EEEEEE);
}

.inquiry table td .list_checkbox li:last-of-type label {
    border-bottom: 1px solid #ddd;
}

.inquiry .inner table td .list_checkbox li label input[type="checkbox"] {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border-radius: 3px;
	box-sizing: border-box;
	position: relative;
	margin-right: 12px;
	width: 18px;
	height: 18px;
	border: 1px solid #aaa;
	vertical-align: -.7em;
	background: #e2e2e2;
	background: -webkit-gradient(linear, left top, left bottom, color-stop(.00, #fff), color-stop(1.00, #e2e2e2));
	background: linear-gradient(to bottom, #fff 0%, #e2e2e2 100%);
}

.inquiry .inner table td .list_checkbox li label input[type="checkbox"]:checked {
	background: #e90b09;
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ff5d7b), color-stop(100%, #ee4464));
	background: linear-gradient(to bottom, #ff5d7b 0%, #ee4464 100%);
	border: 1px solid #ef3255;
}

.inquiry .inner table td .list_checkbox li label input[type="checkbox"]:checked::before {
	display: block;
	content: "";
	position: absolute;
	left: -1px;
	top: 11px;
	width: 10px;
	height: 3px;
	background: #fff;
	-webkit-transform: rotate(45deg);
	-webkit-transform-origin: right center;
}

.inquiry .inner table td .list_checkbox li label input[type="checkbox"]:checked::after {
	display: block;
	content: "";
	position: absolute;
	left: 7px;
	top: 11px;
	width: 12px;
	height: 3px;
	background: #fff;
	-webkit-transform: rotate(-53deg);
	-webkit-transform-origin: left center;
}


/*.inquiry table td .list_checkbox li input[type="checkbox"] {
    height: 100%;
    width: 100%;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
}

.inquiry table td .list_checkbox li input[type="checkbox"] + label{
    color:#333;
    display:block;
    text-align: left;
	padding: 8px 10px;
    border: 1px solid #ddd;
    border-bottom: none;
    background-image:-webkit-gradient(linear,left top,left bottom,from(#F9F9F9),to(#EEEEEE));
    background:-moz-linear-gradient(#F9F9F9,#EEEEEE);
}

.inquiry table td .list_checkbox li:last-of-type input[type="checkbox"] + label{
    border-bottom: 1px solid #ddd;
}

.inquiry table td .list_checkbox li input[type="checkbox"] + label span {
	background: url(/common/img/common/ico_check.png) 0 0 no-repeat;
	background-size: 16px;
	display: inline-block;
	padding: 0 0 0 25px;
}

.inquiry table td .list_checkbox li input[type="checkbox"]:checked + label{
    background-image:-webkit-gradient(linear,left top,left bottom,from(#ff5d7b),to(#ee4464));
    background: -moz-linear-gradient(#ff5d7b, #ee4464);
	border: 1px solid #ef3255;
    border-bottom: none;
    color:#fff;
}

.inquiry table td .list_checkbox li:last-of-type input[type="checkbox"]:checked + label{
    border-bottom: 1px solid #ef3255;
}

.inquiry table td .list_checkbox li input[type="checkbox"]:checked + label span {
	background: url(/common/img/common/ico_check_on.png) 0 0 no-repeat;
	background-size: 16px;
	display: inline-block;
	padding: 0 0 0 25px;
}*/


/* .txt_ssl */
.inquiry .txt_ssl img {
	margin: 0 0 15px 0;
}


/* .btn_form */
.inquiry .btn_form {
	margin: 20px 0 0 0;
	overflow: hidden;
}

#inquiry_index .btn_form .btn ,
#inquiry_complete .btn_form .btn {
	width: 100% !important;
	box-sizing:border-box;
}

#inquiry_confirm .btn_form .btn {
	width: 48%;
	float: left;
}

#inquiry_confirm .btn_form .btn_gray {
	margin: 0 4% 0 0;
}








