@charset "utf-8";

/* ===== contact.css ===== */
/* -- box_flow -- */
.box_flow {
    text-align: center;
    display: flex;
    display: -webkit-flex;
    justify-content: center;
    margin-top: 173px;
}
.box_flow li {
    position: relative;
    margin-right: 165px;
    padding-bottom: 30px;
}
.box_flow li:last-child {
    margin-right: 0;
}
.box_flow li:before {
    position: absolute;
    top: 24px;
    left: 64px;
    height: 1px;
    width: 133px;
    background: #D7D7D7;
    content: "";
}
.box_flow li:last-child:before {
    display: none;
}
.box_flow_num span {
    font-family: 'League Spartan', sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 53px;
    display: block;
    margin: 0 auto;
    width: 48px;
    height: 48px;
    background: #FFF;
    border-radius: 50%;
}
.box_flow .act .box_flow_num span {
    color: #fff;
    background: #000;
}
.box_flow_txt {
    font-size: 13px;
    font-weight: 500;
    text-align: center;
    position: absolute;
    top: 50px;
    left: 50%;
    margin: 0 auto;
    width: 140px;
    -webkit-transform: translateX(-50%);
       -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
         -o-transform: translateX(-50%);
            transform: translateX(-50%);
}
@media screen and ( max-width: 768px ) {
    .box_flow {
        line-height: 1.2;
        margin-top: 50px;
    }
    .box_flow li {
        margin-right: 90px;
        padding-bottom: 60px;
    }
    .box_flow li:before {
        position: absolute;
        top: 18px;
        left: 45px;
        width: 73px;
    }
    .box_flow_num span {
        font-size: 14px;
        line-height: 35px;
        width: 35px;
        height: 35px;
    }
    .box_flow_txt {
        font-size: 14px;
        top: 45px;
        width: 80px;
    }
}

/* -- contact_txt -- */
.contact_txt {
    font-size: 16px;
    font-weight: bold;
    line-height: 1.81;
    letter-spacing: 0.05em;
    text-align: center;
    margin-top: 40px;
}
.completion .contact_txt {
    line-height: 1.8;
    margin-top: 30px;
}
.completion .contact_txt p {
    margin-bottom: 27px;
}
.completion .contact_txt p:last-child {
    margin-bottom: 0;
}
@media screen and ( max-width: 768px ) {
    .contact_txt {
        font-size: 14px;
        margin-top: 25px;
    }
    .completion .contact_txt {
        text-align: left;
        margin-top: 12px;
    }
    .completion .contact_txt p {
        margin-bottom: 12px;
    }
}

/* -- form_table -- */
.form_table {
    text-align: left;
    margin: 72px auto 0;
    width: 100%;
    max-width: 961px;
    border-bottom: none;
}
.form_table th,
.form_table td {
    vertical-align: top;
    border-top: 1px dashed #C3C3C3;
    border-bottom: 1px dashed #C3C3C3;
}
.form_table th {
    font-size: 15px;
    font-weight: bold;
    line-height: 1.86;
    position: relative;
    width: 222px;
    padding: 27px 38px 24px 22px;
}
.form_table .required th:after {
    text-align: center;
    font-size: 11px;
    line-height: 17px;
    color: #ED4A49;
    position: absolute;
    top: 30px;
    right: 0;
    width: 36px;
    height: 17px;
    border: 1px solid #ED4A49;
    border-radius: 2px;
    background: #fff;
    content: "必須";
}
.form_table td {
    font-size: 15px;
    line-height: 2;
    font-weight: 500;
    letter-spacing: 0.03em;
    padding: 15px 29px 15px 29px;
}
/* confirm */
.confirm.form_table {
    margin-bottom: 60px;
}
.confirm.form_table th {
    width: 192px;
    padding-right: 0;
}
.confirm.form_table .required th:after {
    display: none;
}
.confirm.form_table td {
    padding-top: 25px;
    padding-bottom: 25px;
}
@media screen and ( max-width: 768px ) {
    .form_table,
    .confirm.form_table {
        margin-top: 40px;
        margin-bottom: 0;
        border: none;
    }
    .form_table th,
    .form_table td {
        display: block;
        border: none;
    }
    .form_table th,
    .confirm.form_table th {
        width: auto;
        padding: 12px 15px!important;
        background: #C3C3C3;
    }
    .form_table .required th:after {
        top: 17px;
        right: 15px;
    }
    .form_table td {
        padding: 20px 15px 40px!important;
    }
}

/* -- form_check -- */
.form_check {
    text-align: center;
    font-weight: 500;
    margin-top: 35px;
}
.form_check.required:before {
    text-align: center;
    font-size: 11px;
    line-height: 17px;
    color: #ED4A49;
    display: inline-block;
    margin-right: 30px;
    width: 36px;
    height: 17px;
    border: 1px solid #ED4A49;
    border-radius: 2px;
    background: #fff;
    content: "必須";
}
.form_check label {
    font-size: 15px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0.03em;
}
.form_check input[type="checkbox"] {
    top: -1px;
}
.form_check label img {
    vertical-align: middle;
    margin: 0 5px;
    width: 12px;
}
@media screen and ( max-width: 768px ) {
    .form_check {
        margin-top: 10px;
    }
    .form_check.required:before {
        margin-right: 15px;
    }
    .form_check input[type="checkbox"] {
        margin-right: 8px;
    }
    .form_check label img {
        margin: -2px 3px 0;
    }
}

/* -- form_btn -- */
.form_btn_outer {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 34px;
}
.form_btn_outer > * {
    margin-right: 20px;
}
.form_btn_outer :last-child {
    margin-right: 0;
}
.form_btn {
    text-align: center;
    max-width: 320px;
    width: 100%;
}
.form_btn input,
.form_btn button {
    font-weight: bold;
    font-size: 15px;
    letter-spacing: 0.03em;
    color: #fff;
    display: block;
    padding: 23px 23px 24px;
    border-radius: 6px;
    background: #000;
}
.gray.form_btn button {
    color: #6E7980;
    background: #DCDCDC;
}
@media screen and ( max-width: 768px ) {
    .form_btn_outer {
        display: block;
        margin-top: 40px;
    }
    .form_btn_outer > * {
        margin: 0 auto 20px;
    }
    .form_btn_outer :last-child {
        margin-bottom: 0;
        margin-right: auto;
    }
    .form_btn input,
    .form_btn button {
        padding: 18px 23px 17px;
        border-radius: 3px;
    }
}

/* contact_txt */
.contact_txtbox {
    font-size: 15px;
    font-weight: 500;
    line-height: 2;
    letter-spacing: 0.03em;
    margin: 36px auto 0;
    max-width: 603px;
}
.contact_txtbox p {
    margin-bottom: 14px;
}
.contact_txtbox p:last-child {
    margin-bottom: 0;
}
@media screen and ( max-width: 768px ) {
    .contact_txtbox {
        font-size: 14px;
        margin-top: 30px;
    }
    .contact_txtbox p {
        margin-bottom: 12px;
    }
}