@charset "UTF-8";

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

お問い合わせ

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

.form-wrap {
    max-width: 740px;
    margin-bottom: 150px;
    text-align: left;
}

.form-wrap dl {
    margin-bottom: 50px;
}

.form-wrap dt {
    margin-bottom: 20px;
    font-weight: bold;
    border-left: 4px solid #40577d;
    padding-left: 15px;
    line-height: 1.4;
    font-size: 115%;
}

.form-wrap p {
    text-align: center;
    font-weight: bold;
    margin: 70px 0;
    font-size: 110%;
}

.form-wrap p a {
    text-decoration: underline;
}

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

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

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
}

dl.type dd{position: relative;}
dl.type dd:after {
    position: absolute;
    font-size: 16px;
    height: 16px;
    top:0;
    bottom:0;
    right:1em;
    margin: auto 0;
    content: "\f0d7";
    font-family: FontAwesome;
    color: #40577d;
    pointer-events: none;
}

/*送信ボタン*/
input[type="submit"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    font-size: 130%!important;
    display: block;
    color: #fff;
    text-decoration: none;
    width: 100%!important;
    padding: 15px 0;
    text-align: center;
    border: none;
    background: #102d5c;
    -webkit-transition-property: all;
    transition-property: all;
    -webkit-transition: 0.2s linear;
    transition: 0.2s linear;
}

input[type="submit"]:hover {
    background: #000;
}
input[type="button"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    font-size: 130%!important;
    display: block;
    color: #fff;
    text-decoration: none;
    width: 100%!important;
    padding: 15px 0;
    text-align: center;
    border: none;
    background: #102d5c;
    -webkit-transition-property: all;
    transition-property: all;
    -webkit-transition: 0.2s linear;
    transition: 0.2s linear;
    margin-bottom: 20px;
}

input[type="button"]:hover {
    background: #000;
}

/*==== mobile スマフォ縦用css ===*/
@media screen and (max-width: 480px) {

    .form-wrap {
        margin-bottom: 70px;
    }

    .form-wrap dl {
        margin-bottom: 30px;
    }

    .form-wrap dt {
        margin-bottom: 10px;
    }

    .form-wrap p {
        margin: 30px 0;
    }

}

.alert {
    padding: .75rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: .25rem;
    background-color: #f2dede;
    border-color: #ebcccc;
    color: #a94442;
    margin-bottom: 20px;

}




.alert p{
    margin: 0;
}



