@charset "UTF-8";

.page-title {
    height: 100px;
    background: url(../img/bg_page_title_contact.jpg) no-repeat;
    background-size: cover;
    background-position: 0 -50px;
}

.page-title__inner {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.page-title__inner h1 {
    font-size: 30px;
    color: #fff;
}

@media screen and (max-width: 767px) {
    .page-title {
        height: 80px;
        background-position: 50%;
    }
    
    .page-title__inner h1 {
        font-size: 20px;
    }
}

.required-description {
    text-align: center;
    margin-bottom: 40px;
    padding: 32px 15px 0;
}

.required-description span {
    display: inline-block;
    margin-right: 0.5rem;
    margin-top: -2px;
    padding: 4px 6px;
    color: #fff;
    font-size: 12px;
    vertical-align: top;
    background-color: #e83c00;
    border-radius: 0.3em;
}

.request-form {
    display: flex;
    max-width: 1000px;
    width: 100%;
    margin: 0 auto 48px;
}

.request-form__left {
    width: 50%;
    padding-left: 15px;
    padding-right: 15px;
}

.request-form__left p {
    text-align: center;
    margin-bottom: 16px;
    line-height: 1.6;
}

.request-form__right {
    width: 50%;
    padding-left: 15px;
    padding-right: 15px;
}

@media screen and (max-width: 767px) {
    .request-form {
        display: block;
        margin: 0 auto 40px;
    }

    .request-form__left, .request-form__right {
        width: 100%;
    }
}

.document-repuest .l-footer {
    margin-top: 0;
}

/* thanksページ */

.request-thanks {
    max-width: 1000px;
    padding-top: 20px;
    margin: 0 auto 48px;
}

.request-thanks__title {
    padding: 12px 24px;
    border-bottom: 2px solid #e86d00;
    background: #fbf8f4;
    color: #3d3527;
    margin-bottom: 24px;
}

.request-thanks__title h2 {
    font-size: 22px;
}

@media screen and (max-width: 767px) {
    .request-thanks__title h2 {
        font-size: 18px;
    }
}

.request-thanks p {
    line-height: 1.6;
    padding: 0 15px;
}

.btn-back {
    background-color: #b5ab9b;
    position: relative;
    color: #fff;
    display: block;
    width: 100%;
    max-width: 216px;
    padding: 0.5em 1.7em;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    border-radius: 6px;
    margin: 24px auto 0;
    padding-left: 2.8em;
}

.btn-back::after {
    content: '\f137';
    position: absolute;
    top: 50%;
    left: 1em;
    margin-top: -0.55em;
    font-family: 'FontAwesome';
    font-size: 1em; 
}