
/* Mail ============================= */
#formWrap {
    /* max-width: 700px; */
    /* margin: 0 auto; */
    /* color:#555;
    line-height:120%;
    font-size:90%; */
    background: #fefcf1;
}
#formWrap.mail_confirm {
    /* background: aquamarine; */
    color:#555;
    line-height:120%;
    font-size:90%;
    height: 100%;
    /* position: relative; */
}
.mail_confirm_inner {
    /* background-color: #d2d6af; */
    text-align: center;
    /* position: absolute;
    top: 50%;
    left: 50%; */
}

.fadeDown {
    animation-name: fadeDownAnime;
    animation-duration: 0.3s;
    animation-fill-mode: forwards;
    opacity: 0;
}
@keyframes fadeDownAnime {
    from {
        opacity: 0;
        transform: translateY(-50%);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fadeIn {
    animation-name: fadeInAnime;
    animation-duration: .8s;
    animation-delay: .4s;
    animation-fill-mode: forwards;
    opacity: 0;
}
@keyframes fadeInAnime {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.confirm_for_send {
    max-width: 700px;
    margin: 0 auto;
}
table.formTable{
    width:100%;
    margin:0 auto;
    border-collapse:collapse;
}
table.formTable td,table.formTable th{
    border-top:1px solid #ccc;
    padding:10px;
}
table.formTable td:last-child,
table.formTable th:last-child{
    border-bottom: 1px solid #ccc;
    text-align: left;
}
table.formTable th{
    width:30%;
    font-weight:normal;
    font-size: .85rem;
    /* background:#f1f1f1; */
    text-align:right;
    padding-right: 1.4rem;
}
p.error_messe{
    margin:5px 0;
    color: #ff6060;
    }
/*　簡易版レスポンシブ用CSS（必要最低限のみとしています。ブレークポイントも含め自由に設定下さい）　*/
@media screen and (max-width:572px) {
    #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;
    }
    input[type="submit"], input[type="reset"], input[type="button"] {
        width:100%;
        /* height:40px; */
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}


/* Form ============================= */
html, body {
    height: 100%;
}

.contact-bg {
    background: #fefcf1;
    padding: 10px 0;
    /* margin: 100px auto 0; */
}

.contact-message {
    text-align: center;
    font-size: 14px;
    line-height: 2;
    margin-bottom: 50px;
}

.message-notice {
    color: #ff6060;
    font-size: 14px;
}

.essential {
    color: #ff6060;
    font-size: .7rem;
    font-weight: normal;
    margin-left: 10px;
}

.contact-area {
    /* background: #f8f8f8; */
    padding: 90px;
    margin: 10px auto;
    width: 1000px;
}

.title-wrp {
    text-align: center;
}
.title-wrp .title {
}

.contact-area h3 {
}

.contact-table {
    width: 100%;
}

.table-list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Noto Sans JP', sans-serif;
    letter-spacing: 0.05em;
    width: 100%;
    margin-bottom: 40px;
}

.table-list th {
    font-size: .85rem;
    font-weight: bold;
    width: 250px;
    text-align: right;
    padding-right: 2rem;
    color: #979797;
}

.table-list-address {
    flex-wrap: wrap;
}

.table-list-address .input-area {
    margin-bottom: 10px;
}

.input-area {
    /* font-family: 'Noto Sans JP', sans-serif; */
    letter-spacing: 0.05em;
    /* padding: 0 10px; */
    /* border: none; */
    /* width: 550px;
    height: 40px; */
    box-sizing: border-box;
    /* border: 1px solid #c4c4c4; */
}

.table-list td {
    font-size: .9rem;
    width: calc(100% - 250px);
}

input::placeholder {
    color: #bfbfbf;
    font-size: 1rem;
    font-weight: bold;
}

textarea {
    border: none;
    width: 550px;
    height: 200px;
    padding: 0;
    border: 1px solid #c4c4c4;
    resize: vertical; /* 横方向のみサイズを固定する */
    font-size: 1rem;
    color: #555555;
}

textarea::placeholder {
    color: #bfbfbf;
    font-size: 1rem;
}

input[type="text"] {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.contact-area .text {
    font-size: 1rem;
    text-align: center;
    margin-bottom: 100px;
}

.contact-area .text a {
    color: #000;
    border-bottom: 1px solid #000;
    transition: all .3s;
    text-decoration: none;
    font-size: .8rem;
}

.contact-area .text a:hover {
    border-bottom: 1px solid #777;
    padding-bottom: 5px;
    color: #777;
}

.submit-button {
    box-sizing: border-box;
    position: relative;
    display: block;
    margin: 30px auto 0;
    background-color: #e4eeef;
    cursor: pointer;
    border: 1px solid #e4eeef;
    color: #000;
    text-align: center;
    text-decoration: none;
    line-height: 1.5;
    outline: none;
    -webkit-transition: all .3s;
    transition: all .5s;
    padding: 20px 100px;
}

.submit-button:hover {
    background: #cae1e3;
    color: #000;
    border: 1px solid #cae1e3;
}


@media(max-width:1200px) {
    .contact-area {
        width: 80%;
        padding: 60px;
    }
}

@media(max-width:1024px) {
    .contact-area {
        padding: 50px 15px;
    }

    .table-list th {
        width: 180px;
    }

    .table-list td {
        width: 100%;
    }

    .input-area {
        /* width: 500px;
        height: 40px; */
    }

    textarea {
        width: 500px;
        height: 200px;
    }

    .contact-message {
        margin-bottom: 30px;
    }

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


@media(max-width:834px) {
    .contact-bg {
        /* margin: 50px auto 0; */
        /* padding: 50px 0; */
    }

    .contact-area {
        margin: 0 auto;
        padding: 10px 20px;
    }

    .check-box label {
        width: 100%;
    }

    .input-area {
        /* width: 100%;
        height: 30px; */
    }

    textarea {
        width: 100%;
        height: 200px;
    }

    .table-list {
        flex-wrap: wrap;
        margin-bottom: 20px;
    }

    .table-list th {
        font-size: .8rem;
        width: 200px;
        margin-bottom: 1px;
        text-align: left;
    }

    .table-list td {
        font-size: .9rem;
    }

    .table-list td {
        width: 100%;
    }

    .contact-message {
        font-size: .9rem;
    }

    .contact-area .text {
        font-size: .8rem;
    }
}

@media (max-width:640px) {
    .contact-message {
        text-align: left;
    }

    .contact-area .text {
        text-align: left;
    }
}

@media(max-width:320px) {
    .input-area {
        /* width: 100%; */
    }

    textarea {
        width: 100%;
    }
}

input[type="text"] {
    width: 100%;
    border: 1px solid #b9b9b9;
    border: 0;
    padding: 10px;
    font-size: 1rem;
    font-family: Arial, sans-serif;
    color: #212121;
    border: solid 1px #ccc;
    /* margin: 0 0 20px; */
}
input:focus {
    color: #314f92;
    border: solid 2px #314f92;
    background-color: #f4fbff;
}


label {
    position: relative;
    cursor: pointer;
    padding-left: 30px;
    margin-right: 30px;
}
label::before,
label::after {
    content: "";
    display: block;
    border-radius: 50%;
    position: absolute;
    transform: translateY(-50%);
    top: 50%;
}
label::before {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    left: 5px;
}
label::after {
    background-color: #7798de;
    border-radius: 50%;
    opacity: 0;
    width: 16px;
    height: 16px;
    left: 8px
}
input:checked+label::after {
    opacity: 1;
}
.visually-hidden {
    position: absolute;
    white-space: nowrap;
    border: 0;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    overflow: hidden;
    height: 1px;
    width: 1px;
    margin: -1px;
    padding: 0;
}

.cp_ipselect {
    overflow: hidden;
    max-width: 300px;
    text-align: center;
}
.cp_ipselect select {
    width: 100%;
    padding-right: 1em;
    cursor: pointer;
    text-indent: 0.01px;
    text-overflow: ellipsis;
    border: none;
    outline: none;
    background: transparent;
    background-image: none;
    box-shadow: none;
    -webkit-appearance: none;
    appearance: none;
}
.cp_ipselect select::-ms-expand {
    display: none;
}
.cp_ipselect.cp_sl01 {
    position: relative;
    border-radius: 2px;
    border: 1px solid rgb(178, 178, 178);
    border-radius: 50px;
    background: #ffffff;
}
.cp_ipselect.cp_sl01::before {
    position: absolute;
    top: 0.8em;
    right: 0.8em;
    width: 0;
    height: 0;
    padding: 0;
    content: '';
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid rgb(178, 178, 178);
    pointer-events: none;
}
.cp_ipselect.cp_sl01 select {
    padding: 8px 38px 8px 8px;
    color: black;
}

.btn,
input[type="submit"],
input[type="button"],
input[type="reset"] {
    background-color: #777777;
    border: 1px solid #777777;
}
.btn,
input[type="submit"],
input[type="button"],
input[type="reset"] {
    width: 40%;
    font-size: 16.5px;
    color: #fff;
    display: inline-block;
    padding: 15px 0px;
    text-align: center;
    border-radius: 5px;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 1s;
}
.btn:hover,
input[type="submit"]:hover,
input[type="button"]:hover,
input[type="reset"]:hover {
    color: #5c87a6;
    background-color: #ffffff;
    border: 1px solid #777777;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 1s;
}
@media only screen and (max-width: 572px) {
    .btn,
    input[type="submit"],
    input[type="button"],
    input[type="reset"] {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 10px;
    }
}

/* .btn.submit {
    background-color: #3fc671;
    border: 1px solid #3fc671;
}
.btn.submit:hover {
    opacity: 0.8;
} */

.end-msg_wrp {
    height: 100%;
}
.end-msg-wp {
    display: flex;
    height: 100%;
    justify-content: center;
    align-items: center;
}
.end-msg {
    width: 300px;
    /* border: 2px solid #e9e9e9; */
    padding: 1rem 0;
    /* background: #f9f9f9; */
    color: #7dc0bf;
}
.end-msg p {
    font-size: .9rem;
}
.end-msg-wp .end-msg a {
    text-decoration: none;
    border: solid 1px #666;
    border-radius: 5px;
    padding: 0.5rem 1rem;
}

.inner_footer {
    color: #909090;
    text-align: center;
}