@charset "UTF-8";

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

お問い合わせ Css

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

/*-----------------------------
お問い合わせ
-----------------------------*/

p.txt {
    margin-bottom: 65px;
    text-align: center;
}

.tel-wrap {
    display: block;
    color: #fff;
    width: 100%;
    max-width: 650px;
    padding: 25px 0;
    margin: 0 auto;
    text-align: center;
    border-radius: 10px;
    background: #699a5f;
}

.tel-wrap .tel {
    display: inline-block;
    color: #e4d338;
    font-size: 200%;
    padding-left: 15px;
}

/*==== mobile スマフォ縦用css ===*/

@media screen and (max-width: 480px) {
    p.txt {
        margin-bottom: 40px;
        text-align: left;
    }

    .tel-wrap {
        padding: 15px 0;
    }

    .tel-wrap .tel {
        display: block;
        padding-left: 0;
        margin-top: 10px;
    }

}

/*******************************
フォーム
 *******************************/

.formWrap {
    width: 100%;
    margin: 100px auto;
    text-align: left;
}

.formWrap dl {
    margin-bottom: 40px;
}

.formWrap dt {
    margin-bottom: 10px;
}

.formWrap dt span {
    display: inline-block;
    color: #699a5f;
    border: 2px solid #699a5f;
    border-radius: 3px;
    font-size: 80%;
    padding: 3px 5px 2px;
    margin-left: 10px;
    line-height: 1;
}

.formWrap dl.contact dd {
    border: 2px solid #bfbfbf;
    border-radius: 5px;
    padding: 20px;
}

.formWrap p {
    text-align: center;
    margin: 50px 0;
}

.formWrap p a {
    color: #699a5f;
    text-decoration: underline;
}

.formWrap p a:hover {
    text-decoration: none;
}

/*テキストエリア*/
input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
    color: #333;
    width: 100%;
    border: none;
    font-size: 100%;
    padding: 1em;
    border-radius: 4px;
    background: #efefef;
}

dl.name input[type="text"],
dl.furigana input[type="text"],
dl.tel input[type="tel"],
dl.fax input[type="tel"] {
    max-width: 500px;
}

/*チェックボックス*/
.checkbox-input {
    display: none;
}

.checkbox-parts {
    padding-left: 20px;
    position: relative;
    margin-right: 20px;
}

.checkbox-parts::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 15px;
    height: 15px;
    border: 1px solid #7d7d7d;
}

.checkbox-input:checked + .checkbox-parts::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 15px;
    height: 15px;
    border: 1px solid #6a9b61;
    background: #6a9b61;
}

/*送信ボタン*/
input[type="submit"] {
    -webkit-appearance: none;
    font-size: 130%!important;
    font-weight: bold;
    display: block;
    color: #fff;
    text-decoration: none;
    width: 100%!important;
    max-width: 650px;
    padding: 30px 0;
    margin: 0 auto;
    text-align: center;
    border: none;
    border-radius: 10px!important;
    background: #699a5f;
    -webkit-transition-property: all;
    transition-property: all;
    -webkit-transition: 0.2s linear;
    transition: 0.2s linear;
}

input[type="submit"]:hover {
    background: #2a5800;
}

/*==== mobile スマフォ縦用css ===*/

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

    .formWrap {
        margin: 50px auto;
    }

}
