@charset "utf-8";

/*======== content common ========*/
#container #content {
    width:1200px;
    margin:40px auto 85px;
}


/*----- top area -----*/
#content .topArea {
    margin-bottom:45px;
}
#content .topArea h2 {
    color:#2b2b2b;
    font-size:24px;
    font-weight:300;
    text-align:center;
    background:url(../images/bg/bg_title.png) bottom repeat-x;
    padding-bottom:10px;
    margin-bottom:30px;
}


/*----- make area -----*/
.makeArea li {
    width:50%;
    text-align:center;
    padding-right:15px;
}
.makeArea li:nth-child(2n) {
    padding-left:15px;
    padding-right:0;
}
.makeArea li img {
    width:100%;
}
.makeArea li span {
    display:block;
    color:#2b2b2b;
    font-size:22px;
    border-bottom:2px solid #fb503c;
    padding:20px 0;
    margin-bottom:50px;
}


/*----- ask area -----*/
.askArea {
    border-top:2px solid #fb503c;
    margin-top:50px;
}
.askArea .step {
    border-bottom:1px solid #e9e9e9;
}
.askArea .step .box_ask {
    height:90px;
    line-height:90px;
    vertical-align:middle;
    padding:0 30px;
    cursor:pointer;
}
.askArea .step.select .box_ask {
    background:#f9f9f9;
}
.askArea .step .box_ask::after {
    content:url(../images/icon/icon_arrow.jpg);
    float:right;
}
.askArea .step.select .box_ask::after {
    transform:rotate(180deg);
    -webkit-transform:rotate(180deg);
    -o-transform:rotate(180deg);
    -moz-transform:rotate(180deg);
    -ms-transform:rotate(180deg);
}
.askArea .step .box_ask span {
    display:inline-block;
    width:95px;
    height:35px;
    color:#fffefe;
    font-size:15px;
    text-align:center;
    line-height:35px;
    border-radius:35px;
    background:#fb503c;
    margin-right:25px;
}
.askArea .step .box_ask strong {
    color:#2b2b2b;
    font-size:18px;
}
.box_detail {
    display:none;
    border-top:1px solid #e9e9e9;
    padding:45px 125px 55px;
}
.askArea .step.select .box_detail {
    display:block;
}
.box_detail li {
    text-align:center;
}
.box_detail strong {
    display:block;
    color:#2b2b2b;
    font-size:20px;
}
.box_detail span {
    display:inline-block;
    color:#575757;
    font-size:15px;
}
.box_detail input[type=text] {
    width: 100px;
    height: 30px;
    border: 1px solid #e9e9e9;
    padding:0 10px;
}
.box_detail input[type="checkbox"]{
        display: none;
      }
.box_detail input[type="checkbox"] + label{
        display: inline-block;
        width: 30px;
        height: 30px;
        border:3px solid #707070;
        position: relative;
      }
.box_detail input[type="checkbox"]:checked + label::after{
        content:'✔';
        font-size: 25px;
        width: 30px;
        height: 30px;
        text-align: center;
        position: absolute;
        left: -2px;
        top:-10px;
      }

/*----- step6 -----*/
.step .box_detail table {
    width:100%;
}
.step .box_detail tr {
    height:50px;
}
.step .box_detail th {
    color:#2b2b2b;
    font-size:15px;
    font-weight:300;
    padding:0 15px;
}
.step .box_detail td input[type=text] {
    width:340px;
    height:34px;
    border:1px solid #e9e9e9;
}
.step .box_detail td textarea {
    width:100%;
    border:1px solid #e9e9e9;
    resize: none;
}
.step .box_detail td button {
    width:34px;
    height:34px;
    color:#fff;
    font-weight:bold;
    border:none;
    background:#232323;
}


/*----- button area -----*/
.btnArea {
    text-align:center;
    margin-top:35px;
}
.btnArea .btn_ask {
    width:125px;
    height:50px;
    color:#fff;
    font-size:16px;
    font-weight:500;
    border:none;
    background:#232323;
}



/*----- media -----*/
@media (max-width: 1200px) {
    #container #content {
        max-width:1200px;
        width:100%;
    }
    .quickWrap {
        display:none;
    }
}
@media (max-width: 768px) {
    .makeArea li span {
        font-size:18px;
        padding:10px 0;
        margin-bottom:30px;
    }
    .box_detail {
        padding:45px 20px 55px;
    }
    .box_detail li img {
        width:120px;
    }
}

@media (max-width: 480px) {
    .askArea .step .box_ask span {
        margin-right:10px;
    }
    .askArea .step .box_ask strong {
        font-size:15px;
    }
    .box_detail {
        padding: 45px 5px 55px;
    }
    .box_detail ul {
        align-items:flex-start;
    }
    .box_detail li img {
        width:60px;
    }
    .box_detail strong {
        font-size:16px;
    }
    .box_detail span {
        font-size:13px;
    }
    .step .box_detail td input[type=text] {
        width:100%;
    }
    .step .box_detail td button {
        margin-top:10px;
    }
}