@charset "UTF-8";

/* Common CSS
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
.k-form { font-size: 16px;font-family: inherit; }
.k-form * { box-sizing: border-box; }
.k-form a { text-decoration: none;}
.k-form .kf__font_lg { font-size: 18px; }


/* inputPage
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
/* レイアウト */
.k-form ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
}

.k-form > ul {
	margin-bottom: 50px;
}

.k-form .kf__row {
    margin-bottom: 16px;
}

.k-form .kf__d-flex {
    display: flex;
    flex-wrap: wrap;
}

.k-form .justify_content-center {
    justify-content: center;
}

/* 見出し */
.k-form .kf__head {
    padding: 12px 0 10px 0;
    font-size: 18px;
}
/* 必須アイコン */
.k-form .kf__head.kf__required::after {
    content: "必須";
    background-color: #d3606a;    
    border-radius: 6px;
    color: #fff;
    font-size: 14px;
    padding: 6px;
    margin-left: 5px;
}

/* 入力項目 */
.k-form .kf__data,
.k-form .kf__data input,
.k-form .kf__data select,
.k-form .kf__data textarea {
    font-size: 16px;
}
.k-form .kf__data .kf__text,
.k-form .kf__data .kf__select,
.k-form .kf__data .kf__calendar,
.k-form .kf__data .kf__textarea {
    font-family: inherit;
    -webkit-appearance: none;
    appearance: none;
    display: block;
    width: 100%;
    max-width: unset;
    background-color: #fff;
    border: 1px solid #ced4da;
    border-radius: 2px;
    padding: 16px;
    height: auto;
    line-height: 1.2;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.k-form .kf__data .kf__text:focus,
.k-form .kf__data .kf__select:focus,
.k-form .kf__data .kf__calendar:focus,
.k-form .kf__data .kf__textarea:focus {
    border-color: #80bdff;
    outline: 0;
    box-shadow: 0 0 0 2px rgba(0,123,255,.25);
}

.k-form .kf__data .kf__select {
    background-repeat: no-repeat;
    background-position: right 7.5px center;
    background-size: 16px 12px;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.k-form .kf__data ul li {
    margin-bottom: 10px;
}
.k-form .kf__data ul li:last-of-type {
    display: flex;
    flex-wrap: wrap;
}

.k-form label {
    padding-left: 6px;
}


/* agreement */
.k-form .agreement_text {
    background: #fff;
    margin: 0 auto 30px auto;
    width: 100%;
    border: 1px solid #ccc;
    height: 200px;
    overflow-y: scroll;
    padding: 16px;
    box-sizing: border-box;
}
.k-form .agreement_text,
.k-form .agreement_text p {
    font-size: 14px;
}


/* エラー表示 */
.k-form .formError {
    padding: 10px;
    color: #fff;
    background: #d3606a;
    font-size: 16px;
    order: 9;
    width: 100%;
}
.k-form .formErrorContent {
    color: #fff;
    background: #d3606a;
}


/* 送信ボタン */
.k-form .submit_btn {
    -webkit-appearance: none;
    text-align: center;
    margin: 30px auto 20px auto;
}
.k-form .submit {
    -webkit-appearance: none;
    background-color: #00378A;
    border: none;
    border-radius: 3.6px;
    cursor: pointer;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 10px 60px;
    color: #fff;
    font-weight: bold;
    font-size: 16px;
    margin: 30px auto 20px auto;
}


/* 戻るボタン */
.k-form .return {
    -webkit-appearance: none;
    background-color: #8a8a8a;
    border: none;
    border-radius: 3.6px;
    cursor: pointer;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 10px 60px;
    color: #fff;
    font-weight: bold;
    font-size: 16px;
}

@media (min-width: 992px) {
    .k-form .agreement {
        width: 80%;
        max-width: 900px;
        margin: 0 auto;
    }
    .k-form .kf__row {
        display: flex;
        margin-bottom: 30px;
    }
    .k-form .kf__head {
        width: 26%;
    }
    .k-form .kf__data {
        width: 74%;
    }
}



/* confirmPage
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
.k-form table {
    width: 100%;
    margin: 0 auto;
}
.k-form table th {
    text-align: left;
    width: 100%;
    display: block;
    padding: 12px 6px 2px 6px;
}
.k-form table td {
    text-align: left;
    width: 100%;
    display: block;
    /* margin-bottom: 20px; */
    padding: 8px 6px 16px 6px;
}
.k-form .kf__note {
    text-align: center;
}

@media (min-width: 992px) {
    .k-form table th {
        width: 30%;
        display: inline-block;
        margin-bottom: 20px;
    }
    .k-form table td {
        width: 70%;
        display: inline-block;
    }
}


.k-form tr:nth-child(even) {
    background: #fff;
}
.k-form tr:nth-child(odd) {
    background: #f6f6f6;
}


.inquiry-estimate input[type="checkbox"] {
    width: unset;
}

.inquiry-estimate .mt-3 {
    margin-top: 30px;
}