@charset "utf-8";
.poricy iframe {
    border: 1px solid #aaa;
    padding: 10px 0 10px 10px;
}

table.formtable {
    width: 95%;
    max-width: 1000px;
    margin: 30px auto 20px;
    text-align: left;
    border: 1px solid #999;
    border-collapse: collapse;
}

table.formtable td,
table.formtable th {
    border: 1px solid #999;
    padding: 8px;
    border-bottom-style: dotted;
    border-top-style: dotted;
}

table.formtable th {
    width: 30%;
    background-color: #f9efe2;
}

table.formtable p {
    display: block;
    margin: 0 0 14px;
}

table.formtable input[type="text"],
table.formtable textarea,
table.formtable select {
    width: 100%;
    padding: 5px;
    font-size: 14px;
}

table.formtable select {
    width: auto;
}

table.formtable+input,
table.formtable+input+input {
    display: inline-block;
    background-color: #ff960b;
    color: #FFF;
    border: none;
    padding: 10px 20px;
    width: 200px;
    font-weight: bold;
    font-size: 16px;
}

table.formtable+input:hover {
    transition: background-color 0.2s linear;
    background-color: #bb6f0b;
}

table.formtable span.required {
    display: inline-block;
    font-size: 11px;
    padding: 3px 10px;
    background-color: #ff1f0b;
    color: #FFF;
    float: right;
}

table.formtable .types {
    display: flex;
    flex-wrap: wrap;
    border: none;
}

table.formtable .types p {
    margin-right: 20px;
}

.btn_submit {
    display: block;
    width: 100%;
    max-width: 300px;
    background-color: #ea5520;
    border: 1px solid;
    border-radius: 5px;
    box-shadow: 2px 2px 0 #ccc;
    color: #fff;
    cursor: pointer;
    font-size: 18px;
    font-weight: 400;
    text-align: center;
    margin: 1rem auto 3rem;
    padding: .85em 1.8em;
    position: relative;
}
.btn_submit::after {
    content: "";
    padding: 9px;
    background: url(/images/common/arrow02.svg) left center/contain no-repeat;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 13px;
}

.about_privacy{
    width: 95%;
    max-width: 1000px;
    margin: auto;
}

@media(max-width: 480px) {
    table.formtable,
    table.formtable tbody,
    table.formtable tr,
    table.formtable td,
    table.formtable th {
        display: block;
        width: 100%;
        border: none;
    }

    table.formtable th {
        border-top: 1px solid #999;
        margin-top: 20px;
    }

    table.formtable+div input {
        display: block;
        margin: 0 0 10px;
    }

    table.formtable+input,
    table.formtable+input+input {
        margin: 0 0 10px;
    }

    table.formtable .types {
        display: block;
    }

    table.formtable .types p {
        margin-right: 0;
    }

    .btn_submit {
        max-width: initial;
    }
}
