@charset "UTF-8";

/*------------------------------------------------
　　　　お問い合わせ
------------------------------------------------*/
.contact__intro{
    line-height: 1.6;
    padding-bottom: 1em;
}
form dl{
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    padding: 1em 0;
    border-bottom: solid 0.1em #ccc;
}
form dl:nth-of-type(1){ border-top: solid 0.1em #ccc;}
form dt{
    font-weight: bold;
    width: 16em;
    line-height: 1.6;
    display: flex;
    align-items: center;
}
form dd{ width: calc( 100% - 16em);}
@media screen and (max-width: 740px) {
    form dt,form dd{ width: 100%;}
    form dt{ padding-bottom: 0.2em;}
}
.required{
    font-size: 80%;
    color: #fff;
    display: inline-block;
    background-color: #c60000;
    padding: 0 0.4em;
    margin-left: 1em;
    border-radius: 0.4em;
}
.sub{
    font-size: 80%;
}

form input[type="text"], form textarea {
    border: solid 0.1em #aaa;
    border-radius: 0.4em;
    padding: 0.3em 0.5em;
    box-sizing: border-box;
}
form textarea { width: 100%;}
.btn_list{
    display: flex;
    flex-wrap: wrap;
    margin: 2em 0 0;
    justify-content: space-around;
}
.btn_list li{
    flex-shrink: 0;
    width: 45%;
}
form input[type="submit"], form input[type="reset"], input[type="button"] {
    display: block;
    width: 100%;
    height: 3em;
    border-radius: 0.4em;
    border: none;
    color: #fff;
    font-weight: bold;
    font-size: 110%;
    cursor: pointer;
}
form input[type="submit"]{
    background-color: #917937;
}
form input[type="reset"],
input[type="button"]{
    background-color: #aaa;
}
@media screen and (max-width: 580px) {
    .btn_list li{
        width: 100%;
        margin-bottom: 0.5em;
    }
    form input[type="submit"], form input[type="reset"], input[type="button"] { height: 3.6em;}
}
@media screen and (min-width: 740px) {
    form input[type="submit"]:hover{ background-color: #a58a3f;}
    form input[type="reset"]:hover,
    input[type="button"]:hover{ background-color: #b9b9b9;}
}

/*------------------------------------------------
　　　　確認・エラー
------------------------------------------------*/
.confirm{ text-align: center;}
.error__intro,
.confirm__intro{
    line-height: 1.4;
    padding-bottom: 1em;
}
.error__messe-list{
    padding: 1em 0;
    border-top: solid 0.1em #ccc;
    border-bottom: solid 0.1em #ccc;
}
.error__messe-list li{
    line-height: 1.4;
    padding-bottom: 0.4em;
    font-weight: bold;
}
.confirm dl{ text-align: left;}


/*------------------------------------------------
　　　　サンクス
------------------------------------------------*/
.thanks__intro{
    text-align: center;
    font-size: 120%;
    font-weight: bold;
    margin-bottom: 1.4em;
    padding-bottom: 0.6em;
    border-bottom: solid 0.1em #ccc;
}
.thanks__message{
    line-height: 2;
    padding-bottom: 1.4em;
}
.thanks__message--attention{
    font-size: 88%;
}
.thanks__link{
    margin-top: 2em;
    padding-top: 2em;
    border-top: solid 0.1em #ccc;
}