@charset "UTF-8";

/*******************************
page-header
 *******************************/

.page-header__body {
    margin-top: 0 !important;
}

.page-header__tel {
    font-weight: bold;
    font-size: 2rem;
}

/* 600px以上：タブレット
------------------------------ */
@media screen and (min-width: 600px) {
    .page-header__description {
        text-align: left !important;
    }

    .page-header__tel {
        font-size: 2.5rem;
    }
}

/* 960px以上：小型PC
------------------------------ */
@media screen and (min-width: 960px) {
    .page-header__description {
        font-size: 1.8rem;
        text-align: center !important;
    }
}

/*******************************
 title
 *******************************/
.form-wrap__title {
    padding: .5rem 1rem;
    border-left: 14px solid #d25454;
    background: #747474;
    color: #fff;
    font-size: 1.5rem;
}


/* 600px以上：タブレット
------------------------------ */
@media screen and (min-width: 600px) {
    .form-wrap__title {
        font-size: 1.8rem;
    }
}

/*******************************
 お問い合わせ
 *******************************/
.form-wrap {
    width: 90%;
    max-width: 1000px;
    margin-top: 50px;
    margin-right: auto;
    margin-left: auto;
}

.form-wrap__inner {
    margin-top: 30px;
}

.form-wrap dl {
    background: #f3f3f3;
}

.form-wrap dt {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .5rem 1rem;
    background: #747474;
    color: #fff;
}

.form-wrap dd {
    padding: 1.5rem;
}

.red {
    display: block;
    width: 50px;
    background: #d25454;
    color: #fff;
    font-size: 1.2rem;
    text-align: center;
}

.txt1 {
    padding: 10px 0;
    font-size: 1.3rem;
}

.txt2 {
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.form-wrap__link {
    color: #d25454;
    text-decoration: underline;
}

.form-wrap__consent {
    margin-top: 30px;
    padding: 2rem;
    background: #f3f3f3;
}

/* 600px以上：タブレット
------------------------------ */
@media screen and (min-width: 600px) {
    .form-wrap__consent {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .form-wrap__privacy {
        margin-left: 20px;
    }
}

/* 960px〜1279px：小型PC
------------------------------ */
@media screen and (min-width:960px) {
    .form-wrap {
        margin-top: 80px;
    }

    .form-wrap__inner {
        margin-top: 50px;
    }

    .form-wrap dl {
        display: flex;
    }

    .form-wrap dt {
        width: 240px;
        border-bottom: 1px solid #fff;
        font-size: 1.6rem;
        padding-inline: 2rem;
    }

    .form-wrap dd {
        flex: 1;
        padding: 2rem;
        border-bottom: 1px solid #fff;
    }

    .form-wrap__description {
        font-size: 1.6rem;
        text-align: center;
    }

    .form-wrap__consent {
        margin-top: 50px;
    }
}


/*******************************
 コンタクトフォーム７
 *******************************/

/*テキストエリア*/
.form-wrap input[type="text"],
.form-wrap input[type="email"],
.form-wrap input[type="tel"],
.form-wrap textarea {
    width: 95%;
    padding: .5em 2%;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, .1) inset;
    background-color: #fff;
    color: #333;
    font-size: 100%;
    font-family: "Hiragino Kaku Gothic Pro", Meiryo, Osaka, "MS PGothic", sans-serif;
}

/*郵便番号*/
.form-wrap #zip {
    width: 150px !important;
    margin-bottom: 15px;
}

/*チェックボックス*/
.wpcf7-list-item {
    display: block;
    padding: 5px 0;
}

/*セレクトボックス*/
.form-wrap select {
    padding: .5em;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, .1);
    color: #333;
    font-size: 100%;
}

/*ラジオボタン*/
.radio01 .wpcf7-radio {
    display: flex;
}

.radio01 .wpcf7-list-item {
    margin-right: 20px;
}

/*送信ボタン*/
.form-wrap input[type="submit"] {
    display: block;
    opacity: 1;
    width: 100% !important;
    margin: 40px auto;
    padding: 15px 0;
    border: none;
    border-radius: 4px !important;
    box-shadow: none;
    background: #d25454;
    color: #fff;
    font-weight: bold;
    font-size: 1.7rem !important;
    letter-spacing: .1em;
    cursor: pointer;
    transition: .2s linear;
    transition-property: all;

    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
}

/*チェックページ　戻る・送信ボタン*/
ul.check-button {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    margin: 40px auto;
}

ul.check-button li {
    width: 100%;
    margin-bottom: 10px;
}

ul.check-button li input[type="submit"] {
    margin: 0;
}

ul.check-button li input[type="button"] {
    display: block;
    opacity: 1;
    width: 100% !important;
    padding: 15px 0;
    border: 1px solid #ccc;
    border-radius: 4px !important;
    box-shadow: 0 0 1px rgba(0, 0, 0, .2);
    background: #eee;
    color: #333;
    font-weight: bold;
    font-size: 1.7rem !important;
    letter-spacing: .1em;
    text-shadow: -1px 1px 0 rgba(255, 255, 255, 1);
    cursor: pointer;
    transition: .2s linear;
    transition-property: all;

    -moz-appearance: none;
    appearance: none;
    -webkit-appearance: none;
}

/*送信ボタン　ホバー時*/
.form-wrap input[type="submit"]:hover,
.wpcf7 input[type="button"]:hover {
    opacity: .6;
}

/*送信メッセージ*/
div.wpcf7-response-output {
    width: 100%;
    margin-right: auto !important;
    margin-left: auto !important;
    padding: 15px 0 !important;
    border-width: 5px !important;
    font-weight: bold !important;
    font-size: 1.5rem !important;
    line-height: 1.5;
}

/*必須入力してください*/
.wpcf7-not-valid-tip {
    padding-top: 5px;
}

.screen-reader-response {
    display: none !important;
}

/*recaptchaポリシーの記載*/
.recaptcha-policy {
    clear: both;
    max-width: 290px;
    margin: 0 auto 6px;
    padding: 10px 5px;
    border-radius: 2px;
    box-shadow: 0 0 6px 1px #a3a3a3;
    background: #5b90dc;
    color: #fff !important;
    font-family: "Hiragino Kaku Gothic Pro", Meiryo, Osaka, "MS PGothic", sans-serif;
    text-align: center;
}

.recaptcha-policy__01 {
    margin-bottom: 5px;
    font-size: 12px !important;
    line-height: 1.3;
}

.recaptcha-policy__01 span {
    font-weight: bold;
}

.recaptcha-policy__01 a {
    color: #fff;
    font-size: 10px;
    text-decoration: underline;
}

.recaptcha-policy__02 {
    color: #c7deff;
    font-size: 8px !important;
}

.recaptcha-policy__02 a {
    color: #c7deff;
    text-decoration: underline;
}


/* 600px〜959px：タブレット
------------------------------ */
@media screen and (min-width:600px) {

    /*送信ボタン*/
    .form-wrap input[type="submit"] {
        max-width: 400px;
        margin: 50px auto;
    }

    /*チェックページ　戻る・送信ボタン*/
    ul.check-button {
        margin: 50px auto;
    }

    ul.check-button li {
        width: 48%;
        margin-bottom: 0;
    }

    ul.check-button li input[type="submit"] {
        max-width: 100%;
        margin: 0;
    }


    div.wpcf7-response-output {
        padding: 20px 0 !important;
        font-size: 1.8rem !important;
        text-align: center !important;
    }
}

/*******************************
 プライバシーポリシー
 *******************************/

.privacy {
    width: 90%;
    max-width: 720px;
    margin: 40px auto 0;
    font-size: 1.4rem;
    line-height: 1.9;
}

.privacy__txt.-txt01 {
    margin-bottom: 30px;
}

.privacy__definition {
    margin-bottom: 30px;
}

.privacy__term {
    font-weight: 700;
}

.privacy__txt:not(:last-child) {
    margin-bottom: 15px;
}

.privacy__txt a {
    color: #00f;
    text-decoration: underline;
}

/* 600px〜959px：タブレット
------------------------------ */

@media screen and (min-width:600px) {
    .privacy {
        font-size: 1.6rem;
    }

    .privacy__txt.-txt01 {
        margin-bottom: 40px;
    }

    .privacy__definition {
        margin-bottom: 40px;
    }

    .privacy__txt:not(:last-child) {
        margin-bottom: 30px;
    }
}

/* 960px以上：小型PC
------------------------------ */
@media screen and (min-width: 960px) {
    .privacy {
        font-size: 1.7rem;
    }
}