@charset "UTF-8";

/*--------------------------------------------------
**************************************************
お問い合わせ
**************************************************
--------------------------------------------------*/

.contact-page {
    width: calc(100% - 55px);
    margin: 30px auto;
}

.contact-form-area {
    width: 100%;
    height: auto;
    font-size: 16px;
    color: #ffffff;
    background: #32463D;
    border-radius: 20px;
    padding: 30px 20px 10px 20px;
    box-sizing: border-box;
    margin: 30px 0;
}

.required,
.any {
    display: inline-block;
    width: 68px;
    height: 24px;
    font-size: 16px;
    color: #CF0C0C;
    background: #ffffff;
    border-radius: 3px;
    margin-left: 10px;
    text-align: center;
}

.any {
    color: #32463D;
}

.contact-form-area form p {
    margin-bottom: 30px;
}

.contact-form-area form p input[type="text"],
.contact-form-area form p input[type="email"],
.contact-form-area form p select,
.contact-form-area form p textarea {
    width: 100%;
    height: 60px;
    border-radius: 5px;
    background: #F3F3F3;
    margin-top: 10px;
    padding: 20px 30px;
    box-sizing: border-box;
}

.contact-form-area form p textarea {
    min-height: 150px;
}

.select-wrapper {
    position: relative;
}

.select-wrapper select {
    appearance: none;
    padding-right: 2em;
}

.select-wrapper::after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    top: 30px;
    right: 20px;
    bottom: 0;
    border-style: solid;
    border-right: 8px solid transparent;
    border-left: 8px solid transparent;
    border-top: 10px solid #32463d;
    border-bottom: 0;
    margin: auto;
    pointer-events: none;
}

.select-privacy {
    text-align: center;
}

.select-privacy .wpcf7-list-item {
    margin: 0;
}

.select-privacy input[type="checkbox"] {
    position: relative;
    appearance: none !important;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid #ffffff;
    background: unset;
    margin: 0 10px 0 0;
    vertical-align: middle;
    cursor: pointer;
    padding: 0;
}

.select-privacy input[type="checkbox"]:checked::before {
    content: "✔";
    position: absolute;
    top: -4px;
    left: 0px;
    color: #ffffff;
    font-size: 16px;
}

input[type="submit"] {
    display: flex;
    width: 280px;
    height: 60px;
    background: #E7E7E7;
    border-radius: 90px;
    font-size: 20px;
    color: #32463D;
    margin: 0 auto;
}

.select-privacy small {
    display: block;
    margin-top: -15px;
}

.select-privacy small br {
    display: none;
}

.select-privacy small a {
    color: #ffffff;
    border-bottom: 1px solid #ffffff;
}

