@charset "utf-8";

#form_wrap {
    width: 100%;
    position: relative;
}

/*form pageContact,Enquete common*/

/*-----------------------------------------------------------------------*/

#form_container {
    width: 900px;
    margin: 0px auto;
}

#form_header {
    width: 900px;
    height: 80px;
}

#form_header h1 {
    font-size: 85%;
    width: 900px;
    line-height: 20px;
    text-align: right;
    color: #666;
}

#form_main {
    width: 100%;
    margin: 0px auto 80px auto;
    overflow: auto;
}

/*#form_title{
border-bottom:solid 2px #000000;
margin-bottom:20px;
line-height:150%;
font-size:120%;
font-weight:bold;
}
*/

#form_required_text {
    margin: 20px 0 20px 0;
    color: #CC0000;
}

#submit_button {
    clear: both;
    padding-top: 50px;
    text-align: center;
}

#submit_button input {
    width: 250px;
}

.btn_estimate {
    width: 250px;
    margin: 40px auto 0;
}

.btn_estimate a {
    color: #FFF !important;
    background-color: #009376;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    border: 1px solid #DDD;
    box-sizing: border-box;
    transition: 0.8s;
}

.btn_estimate a:hover {
    text-decoration: none !important;
    opacity: 0.7;
}

#form_footer {
    width: 900px;
    height: 50px;
}

address {
    font-size: 85%;
    font-style: normal;
    float: right;
    line-height: 25px;
}

#form_footer a {
    color: #000;
}


/*form pageContact*/

/*-----------------------------------------------------------------------*/

#form_contact_main {
    overflow: auto;
    float: left;
}

#form_wrap {
    width: 100%;
}

#form_contact_main dl {
    width: 100%;
    border-top: 1px solid #ddd;
    padding: 20px 0;
    line-height: 220%;
    float: left;
}

#form_contact_main dl:first-child {
    border-top: none;
}

#form_contact_main dl.privacy {
    margin-top: 30px;
    border-bottom: none;
}

#form_contact_main dt {
    width: 150px;
    float: left;
}

#form_contact_main dt span {
    font-weight: bold;
    color: #CC0000;
}

#form_contact_main dd {
    width: calc(100% - 170px);
    float: left;
}

#form_contact_main a {
    color: #3898CC;
    text-decoration: none;
}

#form_contact_main a:hover {
    color: #3898CC;
    text-decoration: underline;
}


/*form pageEnquete*/

/*-----------------------------------------------------------------------*/

#basic_information {
    border-left: solid 5px #999;
    background-color: #EFEFEF;
    padding: 5px;
    margin: 40px 0 10px 0;
    font-weight: bold;
    color: #333;
}

#form_enquetet_main {
    overflow: auto;
}

#enquete_intro {
    border-left: solid 5px #999;
    background-color: #EFEFEF;
    padding: 5px;
    margin: 50px 0 20px 0;
    font-weight: bold;
    color: #333;
}

#form_enquetet_main dl {
    width: 700px;
    border-bottom: 1px dotted #CCCCCC;
    padding: 10px 0;
    line-height: 220%;
}

#form_enquetet_main dl.privacy {
    margin-top: 30px;
    border-bottom: none;
}

#form_enquetet_main dt span {
    font-weight: bold;
    color: #CC0000;
}

#form_enquetet_main dd {
    width: 650px;
    padding-left: 20px;
}

#free_text {
    margin: 20px 0 10px 0;
}


/*form utility*/

/*-----------------------------------------------------------------------*/

.example_text {
    margin-top: 5px;
    line-height: 100%;
    font-size: 90%;
    color: #999999;
}

#family_name,
#first_name,
#family_name_yomi,
#first_name_yomi {
    width: 120px;
    margin-right: 20px;
}

#zip01,
#zip02 {
    width: 40px;
}

#female {
    margin-left: 20px;
}


td {
    padding: 3px 0 3px 0;
}

.width_cs {
    width: 150px;
}

.width_cm {
    width: 300px;
}

.width_cl {
    width: 450px;
}

.width_es {
    width: 200px;
}

.width_em {
    width: 100%;
}

.width_el {
    width: 100%;
}

.height_s {
    height: 50px;
}

.height_m {
    height: 100px;
}

.height_l {
    height: 150px;
}


/*setting*/

/*-----------------------------------------------------------------------*/

.keywords_box {
    margin-bottom: 5px;
    margin-right: 6px;
    float: left;
}


/*----エラー項目部分のハイライト----*/

.dcms_error_area {
    background: #FFD7D7;
    position: relative;
}

p.error_text {
    display: none;
}

.dcms_error_area p.error_text {
    display: block;
    width: auto;
    /*float: left;*/
}

.dcms_error_area p.error_text span {
    background: #ff6666;
    display: inline-block;
    padding: 7px;
}

/*----エラーテキストの吹き出し装飾用----*/

#contact-form .dcms_error_area p.error_text {
    margin-top: 5px;
    color: #FFF;
    position: relative;
    /*アニメーションをつける場合*/
    -webkit-animation: dcms_fadein_up 0.8s 1;
    -moz-animation: dcms_fadein_up 0.8s 1;
    -ms-animation: dcms_fadein_up 0.8s 1;
    -o-animation: dcms_fadein_up 0.8s 1;
    animation: dcms_fadein_up 0.8s 1;
}

#contact-form .dcms_error_area p.error_text:before {
    content: "";
    width: 0px;
    height: 0px;
    position: absolute;
    text-align: left;
    top: -10px;
    left: 10px;
    border: 5px solid transparent;
    border-bottom: 5px solid #FF6666;
    /*アニメーションをつける場合*/
    -webkit-animation: dcms_fadein_up 0.8s 1;
    -moz-animation: dcms_fadein_up 0.8s 1;
    -ms-animation: dcms_fadein_up 0.8s 1;
    -o-animation: dcms_fadein_up 0.8s 1;
    animation: dcms_fadein_up 0.8s 1;
}

/*アニメーションを設定する*/

@-webkit-keyframes dcms_fadein_up {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@-o-keyframes dcms_fadein_up {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@-moz-keyframes dcms_fadein_up {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes dcms_fadein_up {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}


#table_address {
    width: 100%;
}

table,
td {
    border: none;
}

dt {
    margin-right: 20px;
    font-size: 110%;
}

input,
select,
textarea {
    padding: 5px 10px;
}

select,
input,
textarea {
    background: #F8F8F8;
    border: 1px solid #DDD;
}

#submit_button input {
    color: #fff;
    background: #0099CA;
    padding: 10px;
    font-size: 120%;
    height: auto;
    transition: 0.3s;
}

#submit_button input:hover {
    opacity: 0.7;
    transition: 0.3s;
    cursor: pointer;
}

.img_con {
    margin-bottom: 20px;
    text-align: center;
}

.img_con img {
    margin: 6px;
}

.sub_t {
    background: #ccc;
    border: #000 1px solid;
    display: inline-block;
    margin: 4px;
}

.con_first {
    margin-bottom: 30px;
}

.con_first a {
    color: #000;
}

.text_con {
    margin-bottom: 60px;
}

.text_con02 {
    margin-bottom: 10px;
}

input[type=checkbox] {
    margin-top: -10px;
}




@media only screen and (max-width:668px) {
    #form_contact_main dt {
        width: 100%;
        margin-bottom: 10px;
        padding-left: 10px;
        border-left: 5px solid #0099CA;
        line-height: 1.5;
        font-weight: bold;
        font-size: 17px;
    }
    #form_contact_main dt span {
        font-weight: bold;
        color: #CC0000;
    }
    #form_contact_main dd {
        width: 100%;
        float: left;
    }

    td {
        width: 100%;
        padding: 3px 0 3px 0;
    }
    #form_contact_main dt {
        overflow: visible
    }
    .width_cs {
        width: 100%;
    }
    .width_cl {
        width: 100%;
    }
    .width_es {
        width: 100%;
    }
    .width_em {
        width: 100%;
    }
    .width_el {
        width: 100%;
    }
    #form_contact_main dd {
        width: 100%;
        float: left;
    }
}

@media only screen and (max-width:668px) {
    tr,
    td {
        width: 100%;
        float: left;
    }

    #form_contact_main {
        overflow: auto;
    }
    .gsc-search-box tbody tr,
    .gsc-search-box tbody tr td {
        float: none !important;
    }

    .gsc-control-cse {
        border-color: rgba(0, 0, 0, 0) !important;
        background-color: rgba(0, 0, 0, 0) !important;
    }

}

#privacy_txt {
    margin-left: 170px;
}


@media only screen and (max-width:668px) {


    #privacy_txt {
        margin-left: 0%;
    }


    .inner_box01 {
        padding: 0;
        background: none;
        box-shadow: none;
        width: 94% !important;
        margin: 0 auto 50px !important;
    }


}

#formElementVal867 {
    width: 110px !important
}


/*#form_contact_main dl:nth-child(1) input {
    width: 110px!important;
}*/