@charset "utf-8";
/* CSS Document */

/*
* COMMON
******************************************************/
.contact-content {
    margin: 60px 0 80px 0;
}
.contact-content_title {
    border-bottom: 4px solid #009944;
}
.contact-content_title h2 {
    background: #009944;
    color: #FFF;
    display: inline-block;
    font-size: 2.0rem;
    font-weight: normal;
    line-height: 34px;
    padding: 4px 24px 0 24px;
}
.contact-content_desc {
    padding: 0 40px;
    margin: 40px 0 20px 0;
}
.contact-content_desc p {
    font-size: 1.6rem;
}
@media(max-width:767px) {
    .contact-content {
        margin: 20px 0 60px 0;
    }
    .contact-content_desc {
        padding: 0 10px;
        margin: 16px 0;
    }
    .contact-content_desc p {
        font-size: 1.4rem;
    }
}

/*
* TABLE
******************************************************/
.contact-content_form {
    max-width: 880px;
    width: 100%;
    margin:auto;
}
.contact-content_form table {
    max-width: 880px;
    width: 100%;
    margin:auto;
}
.contact-content_form tr {;
}
.contact-content_form tr:not(:last-child) {
    border-bottom: 5px solid #fff;
}
.contact-content_form th {
    background: #fee8b9;
    max-width: 210px;
    width: 23.86%;
    line-height: 60px;
    font-size: 1.6rem;
    text-align: left;
    padding-left: 1em;
    vertical-align: middle;
}
.contact-content_form td {
    background: #f2f2f2;
    border-left: 12px solid #fff;
    padding: 0.5em 0 0.5em 24px;
    color: #787878;
    line-height: 1;
    vertical-align: middle;
}
.ico-require {
    color: #eb3341;
    font-weight: normal;
}
.input-caution {
    font-size: 1.2rem;
    display: inline-block;
    line-height: 1.5;
}
.align-bottom {
    vertical-align: bottom;
}
@media(max-width:880px) {
    .contact-content_form {
        max-width: inherit;
        width: auto;
        padding: 0 10px;
    }
    .contact-content_form table {
        max-width: inherit;
        width: auto;
    }
    .contact-content_form tr:not(:last-child) {
        border-bottom: 5px solid #fff;
    }
    .contact-content_form th {
        background: #fee8b9;
        max-width: inherit;
        width: auto;
        display: block;
        line-height: 34px;
        vertical-align: middle;
        border-bottom: 5px solid #fff;
    }
    .contact-content_form td {
        border-left: none;
        padding: 1em;
        display: block;
        line-height: 1;
        vertical-align: middle;
        border-bottom: none;
        font-weight: 1.4rem;
    }
    .input-caution {
       padding-top: 1em;
    }
}

/*
* INPUT
******************************************************/
.contact-content_comment {
    color: #eb3341;
    margin: 5px 0 40px 0;
}
.contact-content_consent {
    border: 2px solid #a5a5a5;
    border-radius: 30px;
    padding: 8px 0;
    text-align: center;
}
.contact-content_consent label {
    vertical-align: middle;
    font-size: 2.0rem;
}
.contact-checkbox-text {
    vertical-align: middle;
    font-size: 1.3rem;
    padding-left: 6px;
}
.contact-content_notes {
    margin: 20px 0 30px 0;
}
.contact-content_submit {
    text-align: center;
}
.contact-content_submit button {
    padding: 27px 18px;
    border-radius: 50%;
    background-color: #009944;
    color: #fff;
    font-size: 1.8rem;
}
@media(max-width:880px) {
    .contact-content_comment {
        font-size: 1.4rem;
        margin: 5px 0 30px 0;
    }
    .contact-content_consent label {
        font-size: 1.2rem;
    }
    .contact-checkbox-text {
        display: block;
        font-size: 1.1rem;
    }
    .contact-content_notes {
        font-size: 1.4rem;
    }
}

/*
* FORM PARTS
******************************************************/
.contact-content_form input[type="radio"],
.contact-content_form input[type="text"],
.contact-content_form textarea {
    border: 1px solid #dedede;
}
.contact-content_form input[type="radio"] {
    margin-right: 8px;
}
.contact-content_form input[type="text"] {
    height: 34px;
}
.contact-content_form textarea {
    width: 100%;
    max-width: 610px;
    height: 180px;
    margin: 18px auto;
}
.contact-radio-label {
    padding: 0 5px 0 0;
}
.contact-input-s {
    width: 100%;
    max-width: 100px;
}
.contact-input-m {
    width: 100%;
    max-width: 150px;
}
.contact-input-m:not(:last-child) {
    margin-right: 10px;
}
.contact-input-l {
    width: 100%;
    max-width: 320px;
}
input[type=checkbox] {
    display: none;
}
.contact-checkbox {
    box-sizing: border-box;
    cursor: pointer;
    display: inline-block;
    padding: 5px 34px;
    position: relative;
    width: auto;
}
.contact-checkbox::before {
    background: #fff;
    border: 2px solid #a5a5a5;
    border-radius: 3px;
    content: '';
    display: block;
    height: 18px;
    width: 18px;
    margin-top: -12px;
    position: absolute;
    top: 50%;
    right: 1px;
}
.contact-checkbox::after {
    border-right: 2px solid #a5a5a5;
    border-bottom: 2px solid #a5a5a5;
    content: '';
    display: block;
    height: 13px;
    width: 7px;
    margin-top: -11px;
    opacity: 0;
    position: absolute;
    top: 50%;
    right: 7px;
    transform: rotate(45deg);
}
input[type=checkbox]:checked + .contact-checkbox::after {
    opacity: 1;
}
.jpostal {
    height: 34px;
    border: 1px solid #dedede;
    background: #e6e6e6;
    padding: 0 1em;
    font-size: 1.4rem;
}
@media(max-width:880px) {
    .contact-checkbox {
        padding: 0 30px 0 0;
    }
    .contact-content_form textarea {
        max-width: inherit;
        margin: 0 auto;
        width: calc(100% - 1em);
    }
    .contact-radio-label {
        padding: 6px 5px 16px 0;
        display: block;
    }
    .contact-input-s {
        width: calc(31% - 1em);
        max-width: inherit;
    }
    .contact-input-m {
        width: calc(31% - 1em);
        max-width: inherit;
    }
    .contact-input-m:not(:last-child) {
        margin-right: 0;
    }
    .contact-input-l {
        max-width: inherit;
        width: calc(100% - 1em);
    }
}
/*
* FORM ALERT
******************************************************/
.alert{
	/*display:none;*/
	color:#eb3341;
    margin-top: 1em;
    font-size: 1.4rem;
}
input.is_errored ,
textarea.is_errored {
	border: 1px solid #eb3341 !important;
}