@charset "UTF-8";

#formWrap {
    width: 100%;
    min-width: 320px;
    max-width: 1140px;
    overflow: hidden;
    position: relative;
    margin: 70px auto 0;
}

table.formTable {
    width: 100%;
    margin: 0 auto;
    border-collapse: collapse;
}

table.formTable th {
    width: 30%;
    font-weight: normal;
    /* background: #efefef; */
    text-align: left;
}

.mv img {
    height: 350px;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.main_title {
    max-width: 960px;
    /* margin: 0 auto 50px auto; */
}

.contact_top_copy {
    /* margin: 0 auto 50px auto; */

}

.main_wrap {
    padding-top: 50px;
    padding-left: 25px;
    padding-right: 25px;
    padding-bottom: 100px;
    margin-top: 30px;
}

table.formTable th {
    width: 30%;
    font-weight: normal;
    background: #fff;
    text-align: left;
}


table.formTable td,
table.formTable th {
    /* border: 1px solid #ccc; */
    padding: 25px 10px;
    border: none;
    border-bottom: 1px solid #ededed;
}

button,
input,
optgroup,
select,
textarea {
    font-family: inherit;
    font-size: 100%;
    line-height: 1.15;
    margin: 0;
    padding: 1em 1.5em;
    border: none;
    background-color: #ededed;
    width: 100%;
    box-sizing: border-box;

}

input[type="checkbox"] {
    width: auto;

}

table.formTable td,
table.formTable th {
    /* border: 1px solid #ccc; */
    padding: 25px 10px;
    border-bottom: 1px solid #ededed;
}

select {
    /* 1. 標準の矢印を非表示にする（これをしないと動かせない） */
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;

    /* 2. 背景として自前の矢印を表示（例：SVGや画像URL） */
    background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="6 9 12 15 18 9"></polyline></svg>');
    background-repeat: no-repeat;

    /* 3. 位置を調整（右から15px、中央から50%の位置に配置） */
    background-position: right 15px center;
    background-size: 16px;
    /* 矢印の大きさ */

    /* その他、見栄えの調整 */
    padding: 10px 40px 10px 15px;
    /* 右側に余白を作らないと文字と重なります */

    /* width: 200px; */
    width: 100%;
}

/* IEで矢印を消すための記述 */
select::-ms-expand {
    display: none;
}

.required {
    display: inline-block;
    background-color: #333;
    color: #fff;
    padding: 5px 10px;
    margin-left: 1em;
    font-size: 13px;
}

.checkbox_inner {
    margin-left: 1em;
}



/* submit */
.submit_wrap {
    text-align: center;
    max-width: 400px;
    margin: 0 auto;
}

.submit_wrap input[type="submit"] {
    background-color: #333;
    color: #fff;
    border: none;
    padding: 1em 7em;
    cursor: pointer;
    transition: .4s;
    margin-top: 10px;
}

.submit_wrap input[type="submit"]:hover {
    opacity: .4;

}

.privacy {
    font-size: 14px;
    text-align: center;
    margin-top: 60px;
}

.privacy a {
    border-bottom: 1px solid #333;
}





/*　簡易版レスポンシブ用CSS（必要最低限のみとしています。ブレークポイントも含め自由に設定下さい）　*/
@media (max-width:768px) {
    #formWrap {
        width: 95%;
        margin: 0 auto;
    }

    table.formTable th,
    table.formTable td {
        width: auto;
        display: block;
    }

    table.formTable th {
        margin-top: 5px;
        border-bottom: 0;
        padding: 20px 0 5px;
    }

    table.formTable td {
        padding: 10px 0 20px;
    }

    form input[type="text"],
    form textarea {
        width: 100%;
        font-size: 110%;
        display: block;
        box-sizing: border-box;
    }

    form input[type="submit"],
    form input[type="reset"],
    form input[type="button"] {
        display: block;
        width: 100%;
        height: 40px;
    }

    .main_wrap {
        padding-top: 10px;
        padding-left: 25px;
        padding-right: 25px;
        padding-bottom: 100px;
        margin-top: 30px;
    }

    .mv {
        margin-top: 70px;
    }

    .mv img {
        height: 150px;
        width: 100%;
        object-fit: contain;
    }

    .main_title {
        font-size: 145%;
    }


}

/* thanks */
/* #formWrap.thanks {
    margin-bottom: 200px;
} */

.thanks .contact_top_copy {
    font-size: 16px;
    font-weight: normal;
    margin-top: 3em;
}

.thanks .contact_top_copy:nth-of-type(1) {
    padding-bottom: 40px;
    border-bottom: 1px solid #9c9c9c;
}

.thanks .contact_top_copy .caution {
    font-size: 14px;
    margin-top: 2em;
    color: red;

}

.thanks .contact_top_copy:nth-of-type(2) {
    margin-top: 60px;
    text-align: center;
}


.thanks .button_wrap {
    text-align: center;

}

.thanks .top_button {
    display: inline-block;
    padding: 1em 2em;
    border: 1px solid #333;
    margin-top: 20px;

    transition: .4s;
}

@media (any-hover: hover){
    .thanks .top_button:hover {
    border: 1px solid #333;
    background-color: #333;
    color: #fff;
    transition: .4s;
}

}

@media (max-width:768px) {}