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

/*************** 送信ボタン ****************/
.btnSend a {
    width: 210px;
    height: 60px;
    margin: 40px auto 0;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid;
    background: #fff;
}

/*==================================================
  CONTACT FORM : common
==================================================*/

#form {
    padding-top: 200px;
    margin: -200px auto 5%;
}
#form .entrytbl .brdr_td{
max-width: 765px;
}
#form .entrytbl .brdr_td select{
max-width: 100%;
}
#form .entrytbl .brdr_td p {
    margin-top: 0;
}
#form .entrytbl .brdr_td label {
    cursor: pointer;
}
#form .entrytbl .brdr_td a {
    display: inline;
}
#form .entrytbl .message p:first-child {
    margin-bottom: 10px;
}

/*************** entrytbl ****************/
.entrytbl {
    width: 100%;
    border-top: 1px solid #eee;
}
.entrytbl tr:not(:last-of-type) {
    border-bottom: 1px solid #eee;
}
.entrytbl th {
    width: 25%;
    padding: 20px;
    font-weight: bold;
}
.entrytbl td {
    padding: 20px;
}
.entrytbl td p {
    margin-top: 10px;
}
.entrytbl td table td {
    padding: 10px 0;
}

/*************** フォーム内サブ見出し ****************/
.entrytbl .subHead{
	margin-right:10px;
}

/*************** フォーム注釈 ****************/
.required,
.arbitrary {
    padding-left: 3em !important;
	position:relative;
}
.required::before,
.arbitrary::after{
	display: inline-block;
    font-size: 0.8em;
	font-weight:normal;
    line-height: 100%;
    padding: 5px;
    position: absolute;
    top: 20px;
    left: 5px;
    color: #FFF;
}
.required::before{
    content: "必須";
    background: var(--color-main);
}
.arbitrary::after {
    content: "任意";
    background: #999;
}

.form_note{
	display:inline-block;
	font-size:0.8em;
}

/*************** form parts ****************/
input:not([type="submit"]), textarea, select {
    cursor: pointer;
    font-family: 'Noto Sans JP', sans-serif;
    position: relative;
    transition: 0.5s;
    border: 2px solid #ccc;
    margin-right:5px;
    padding: 5px;
}
input:not([type="submit"]):focus, textarea:focus, select:focus {
    border: 2px solid var(--color-main);
    outline: none;
}

.entrytbl .listTd .wpcf7-list-item{
	margin-left:0;
	margin-right:1em;
    margin-bottom:1em;
}

/*************** チェックボックス ****************/
input[type="checkbox"] {
    border: 1px solid #aaaaaa;
    vertical-align: -8px;
    -webkit-appearance: none;
    position: relative;
    margin-right: 5px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    box-sizing: border-box;
    width: 26px;
    height: 26px;
    background: #e2e2e2;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0.00, #ffffff), color-stop(1.00, #e2e2e2));
    background: linear-gradient(to bottom, #ffffff 0%, #e2e2e2 100%);
}
input[type="checkbox"]:checked {
    background: #666666;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0.00, #666666), color-stop(1.00, #111));
    background: linear-gradient(to bottom, #666666 0%, #111 100%);
    border: 1px solid #111;
}
input[type="checkbox"]:checked:before {
    position: absolute;
    left: 1px;
    top: 16px;
    display: block;
    box-shadow: 0 1px 1px rgba(0, 0, 0, .5);
    content: "";
    width: 10px;
    height: 4px;
    background: #ffffff;
    transform: rotate(45deg);
    transform-origin: right center;
}
input[type="checkbox"]:checked:after {
    display: block;
    position: absolute;
    left: 9px;
    top: 16px;
    content: "";
    box-shadow: 0 1px 1px rgba(0, 0, 0, .5);
    width: 16px;
    height: 4px;
    background: #ffffff;
    transform: rotate(-53deg);
    transform-origin: left center;
}

/*************** 郵便番号 ****************/
#zip,
#zip02{
	width:10em;
}

/*************** カレンダー・来店時間 ****************/
.calendar01,
.calendar02{
	margin-left:1em;
	margin-bottom:10px;
	width:15em;
}
.time01,
.time02{
	width:6em;
}

.class-holiday span {
    color: #E81733 !important;
}
.ui-datepicker-month{
	background:#fff;
}
/*************** 自由入力欄 ****************/
.your-message textarea,
.assessment-pr textarea{
	width:60%;
}

/*************** プライバシーポリシー ****************/
.privacy .wpcf7-list-item{
	margin-left:0;
	margin-bottom:1em;
}

/*************** reCAPTCHA ****************/
.recaptcha {
    display: flex;
    justify-content: center;
    margin: 20px 0
}

/*************** フォーム用送信ボタン ****************/
.submit_warning {
    color: #E81733;
    font-weight: bold;
    text-align: center;
    margin: 20px auto 5px auto;
    font-size: 1.4em;
}
.submit_box {
    margin: 30px 0 0;
    text-align: center;
}
.btn_submit_form {
	width:60%;
	max-width:240px;
    padding: 1em;
    font-size: 1.2em;
    font-weight: bold;
    background: var(--color-main) linear-gradient(rgba(255,255,255,.2), rgba(255,255,255,.2) 50%, transparent 50%);
    color: #fff;
    -webkit-transition: opacity .3s;
    transition: opacity .3s;
}
.btn_submit_form:hover {
	opacity:0.7;
}
.btn_submit_form:disabled,
.btn_submit_form:disabled:hover{
    background:#999;
	opacity:1;
}

/*************** 送信時 ****************/
.wpcf7 .ajax-loader {
    margin: 1% auto;
    display: block;
}

/*************** バリデーション ****************/
.wpcf7-not-valid-tip{
    display: inline-block !important;
    width: auto;
    /*width: 60%;*/
    margin: 5px;
    background: #F00;
    padding: 5px;
    color: #fff !important;
}

/*==================================================
  CONTACT FORM :indivisual
==================================================*/
/*assessment*/
.entrytbl .kdtDisp,
.entrytbl .manDisp,
.entrytbl .lndDisp,
.entrytbl .sntDisp,
.cstDisp{
	display:none;
}


/*///////////////////////////////////////////////////////////

スマートフォン版（～767px）

///////////////////////////////////////////////////////////*/
@media only screen and (max-width: 767px) {
    /*************** フォーム ****************/
    #form {
        padding-top: 80px;
        margin: -80px 2% 5%;
    }
    input[type="text"], input[type="email"], textarea {
        width: 70%;
    }
    input[type="text"][name="etc"] {
        width: 96%;
    }
    input[type="tel"] {
        width: 70%;
    }
    input[type="text"]#text_shop, select#select-title, select#model-title {
        width: 96%;
    }
	
    /*==================================================
      スマホ版 entrytbl
    ==================================================*/
	.entrytblWrap {
		margin:5% 0;
	}
    .entrytbl {
        width: 98%;
        margin: 0 auto;
        border-collapse: separate;
		border:none;
        border-right: 1px solid #eee;
		border-left: 1px solid #eee;
        clear: both;
        background-color: #FFF;
    }
	.entrytblWrap .entrytbl:first-of-type{
		border-top: 1px solid #eee;
	}
	.entrytblWrap .entrytbl:last-of-type{
		border-bottom: 1px solid #eee;
	}
    .entrytbl a {
        text-decoration: underline;
    }
    .entrytbl tr {
        display: block;
    }
    .entrytbl th {
        background-color: #eee;
        font-weight: bold;
        border-radius: 0px;
        display: list-item;
        border: none;
        list-style-type: none;
        margin: 0px;
        padding: 1em;
        width: auto;
    }
    .entrytbl td {
        display: list-item;
        border: none;
        list-style-type: none;
        margin: 0px;
        padding: 1em;
        word-wrap: break-word !important;
        word-break: break-all;
    }

    .entrytbl td table {
        width: 100%;
    }
    .entrytbl td table td {
        padding: 10px;
    }
	
	.required::before,
	.arbitrary::after{
		left:0.5em;
		top:1.25em;
	}
	
	/*************** チェックボックス ****************/
	.listTd .wpcf7-list-item{
		display:block;
		margin-left:0;
	}
	
	/*************** カレンダー・来店時間 ****************/
	.calendar01,
	.calendar02{
		max-width:15em;
	}

	/*************** 自由入力欄 ****************/
	.your-message textarea{
		width:98%;
	}
	
	/*************** 送信ボタン ****************/
	.submit_warning {
    font-size: 1em;
	}
	
	/*==================================================
	  CONTACT FORM :indivisual
	==================================================*/
	/*assessment*/
	input.length5{
		width:5em;
	}
	input.length10{
		width:10em;
	}
	.assessment-pr textarea{
		width:98%;
	}
	
} /* スマホ版ここまで --------------------------------------- */