@charset "UTF-8";

/*
--------------------------------*/
body::after {
    position: absolute;
    content: '';
    top: -350px;
    right: -500px;
    width: 962px;
    height: 962px;
    background: url(../img/common/back.svg);
    background-repeat: no-repeat;
    z-index: -1;
}

h3 {
    font-size: 2.0rem;
    font-family: 'shippori-semi';
    padding-bottom: 43px;
    text-align: center;
}

.page-main {
    width: 100%;
    height: 145px;
    margin: 22px 0 63px;
}


@media screen and (max-width: 900px) {
    body::after {
        position: absolute;
        content: '';
        top: -25vw;
        right: -50vw;
        width: 100vw;
        height: 100vw;
        background: url(../img/common/back-sp.svg);
        background-repeat: no-repeat;
        background-size: contain;
        z-index: -1;
    }

    h3 {
        font-size: 17px;
        padding-bottom: 10px;
    }
}

/* お問い合わせフォーム
--------------------------------*/
.area {
    background: #EBEBEB;
    padding: 7.9rem 10.6rem;
}

.area p {
    text-align: center;
    font-size: 1.6rem;
    padding-bottom: 60px;
}

dl {
    padding-bottom: 4rem;
    display: flex;
    align-items: center;
}

dt {
    width: 35%;
    font-size: 1.6rem;
}

dd {
    width: 65%;
    font-size: 1.5rem;
    line-height: 2;
}

@media screen and (max-width: 900px) {
    .area {
        padding: 7% 5%
    }

    .area p {
        font-size: 14px;
        line-height: 1.5;
        text-align: left;
        padding-bottom: 30px;
    }

    .page-main {
        height: 67px;
        margin: 12px 0 34px;
    }

    dl {
        display: block;
        padding-bottom: 3rem;
    }

    dt {
        width: 100%;
        font-size: 15px;
        padding-bottom: 0.8em;
    }

    dd {
        width: 100%;
    }
}

/* 入力画面
--------------------------------*/
::-webkit-input-placeholder {
    opacity: 0.5;
}

::-moz-placeholder {
    opacity: 0.5;
}

:-ms-input-placeholder {
    opacity: 0.5;
}

dt span {
    display: inline-block;
    background: #2A6C08;
    border-radius: 2px;
    font-size: 11px;
    color: #fff;
    margin-left: 1em;
    padding: 3px 8px 1px;
}

input[type="text"],
input[type="email"],
input[type="tel"] {
    width: 100%;
    padding: 0.2em 1em;
    background: #fff;
    font-size: 1.5rem;
}

textarea {
    font-family: inherit;
    font-size: 1.5rem;
    width: 100%;
    padding: 1em;
    background: #fff;
}

#check_button {
    display: flex;
    justify-content: center;
}

/*確認画面へボタン*/
input[name="submitConfirm"] {
    width: 234px;
    height: 47px;
    display: block;
    background: #272525;
    color: #fff;
    text-align: center;
    vertical-align: middle;
    margin: 2em auto !important;
    font-size: 1.6rem;
}

@media screen and (max-width: 900px) {
    input[name="submitConfirm"] {
        width: 196px;
        font-size: 14px;
    }

    dd span.mwform-tel-field {
        display: flex;
        justify-content: space-between;
    }

    .mwform-tel-field input[type="text"] {
        width: 28%;
    }
}

/* 確認画面
--------------------------------*/
/*戻るボタン*/
.back {
    width: 234px;
    height: 47px;
    display: block;
    background: #aaaaaa;
    text-align: center;
    vertical-align: middle;
    font-size: 1.6rem;
    margin-right: 1em;
}

@media screen and (max-width: 900px) {
    .back {
        width: 196px;
        font-size: 14px;
    }
}

/*送信ボタン*/
input[name="btn_confirm"] {
    width: 234px;
    height: 47px;
    display: block;
    background: #272525;
    color: #fff;
    text-align: center;
    vertical-align: middle;
    font-size: 1.6rem;
    margin: 0 auto;
}

@media screen and (max-width: 900px) {
    input[name="btn_confirm"] {
        width: 196px;
        font-size: 14px;
    }
}

/* 送信完了画面
--------------------------------*/
.area p {
    line-height: 2;
}