@charset "UTF-8";
/*******************************

form Css

*******************************/
.wrap-common>p{text-align: center;}

/*-----------------------------
フォーム
-----------------------------*/
.form-wrap {
    margin: 40px 0 80px;
    -webkit-box-shadow: 0px 0px 16px -6px rgba(0,0,0,0.6);
    box-shadow: 0px 0px 16px -6px rgba(0,0,0,0.6);
    padding: 70px 8%;
}

.form-wrap p.req {
    text-align: left;
    margin-bottom: 50px;
}

.form-wrap p.req span {
    display: inline-block;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 16px 16px 0 0;
    border-color: #d90001 transparent transparent transparent;
    margin-left: 5px;
}

.form-wrap dl {
    text-align: left;
    line-height: 1.5;
    margin-bottom: 40px;
}

.form-wrap dt {
    font-weight: bold;
    font-size: 110%;
    margin-bottom: 10px;
}

.form-wrap dd.flex {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

dl.type dd {
    background: #eeeeee;
    padding: 1em;
	position: relative;
}

dl.type dd div{
    position: relative;
}

dl.type dd div:after {
    position: absolute;
    font-size: 16px!important;
    height: 16px;
    line-height: 1;
    top: 0;
    bottom: 0;
    right: 1em;
    margin: auto 0;
    content: "\f0dc";
    font-family: FontAwesome;
    color: #40577d;
    pointer-events: none;
}
dl.type dd:before {
    position: absolute;
    display: block;
    content: '';
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 20px 20px 0 0;
    border-color: #d90001 transparent transparent transparent;
}

.form-wrap dl.w50 p {
    width: 49%;
}

.form-wrap p.add1 {
    width: 30%;
}

.form-wrap p.add2 {
    width: 68%;
}

.form-wrap dl dd p.req {
    position: relative;
}

.form-wrap dl dd p.req:before {
    position: absolute;
    display: block;
    content: '';
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 20px 20px 0 0;
    border-color: #d90001 transparent transparent transparent;
}

.form-wrap p.privacy {
    font-size: 110%;
    margin-bottom: 50px;
    text-align: center;
}

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

/*==== mobile スマフォ縦用css ===*/
@media screen and (max-width: 480px) {
    .form-wrap {
        margin: 30px 0 50px;
        padding: 30px 5%;
    }

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

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

    .form-wrap dl.w50 p {
        width: 100%;
        margin-bottom: 10px;
    }

    .form-wrap p.add1 {
        width: 100%;
        margin-bottom: 10px;
    }
    .form-wrap p.add2 {
        width: 100%;
    }
}

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

/*セレクト*/
select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
    color: #333;
    font-size: 100%;
    width: 100%;
    padding: 0.7em 1em;
    border: 1px solid #dcdcdc;
    border-radius: 0;
    background: #fff;
}

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

/*戻るボタン*/
input[type="button"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    font-size: 130%!important;
    display: block;
    color: #333;
    text-decoration: none;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    padding: 15px 0;
    text-align: center;
    border: none;
    background: #eeeeee;
    -webkit-transition-property: all;
    transition-property: all;
    -webkit-transition: 0.2s linear;
    transition: 0.2s linear;
    cursor: pointer;
    margin-bottom: 20px;
}

.text-danger{
    color: #f00;
    font-weight: normal;
}