/* お問い合わせフォーム用スタイル */
.form-container {
    margin: 0 auto;
    width: 90%;
    max-width: 600px;
}

.form_wrap {
    margin-top: 68px;
}

.contact_dl {
    margin-bottom: 18px;
}

.contact_dl dt {
    font-size: 22px;
    margin-bottom: 12px;
}

.contact_dl dt sup {
    font-size: 11px;
    color: #FF0000;
}

.contact_dl input[type="text"],
.contact_dl input[type="email"] {
    border: 1px solid #1C2B33;
    border-radius: 5px;
    width: 100%;
    padding: 12px 20px;
    font-size: 19px;
}

.contact_dl textarea {
    border: 1px solid #1C2B33;
    border-radius: 5px;
    width: 100%;
    padding: 12px 20px;
    font-size: 19px;
    height: 90px;
}

.policy {
    text-align: center;
}

.policy input {
    margin-right: 12px;
}

.policy a {
    text-decoration: underline;
}

.submit {
    margin-top: 46px;
    position: relative;
}

.submit::after {
    position: absolute;
    content: '';
    display: block;
    width: 9px;
    height: 20px;
    margin: auto;
    top: 0;
    bottom: 0;
    right: 16px;
    background: #fff;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
}

.submit input {
    width: 100%;
    text-align: center;
    background: #000000;
    border-radius: 100vh;
    color: #fff;
    font-size: 21px;
    font-weight: 700;
    letter-spacing: 4px;
    border: none;
    line-height: 54px;
    transition: all 0.3s ease-in-out 0s;
    cursor: pointer;
}

.submit input:hover {
    opacity: .5;
}

.submit input:disabled {
    background: #ccc;
    cursor: not-allowed;
    opacity: 0.6;
}

.submit input:disabled:hover {
    opacity: 0.6;
}