@charset "utf-8";

/*
.cont .container {
  width: 1040px;
  margin: auto;
  text-align: left;
  overflow: hidden;
}
*/
.cont .container {
    padding-top: 100px;
    padding-bottom: 100px;
}

.left_box {
    width: 460px;
}

.left_box p,
.right_box p {
    font-weight: 600;
}

.left_box ul {
    /* number のカウンタを 0 にセット */
    counter-reset: number 0;
    margin-bottom: 32px;
}

.left_box ul li {
    position: relative;
    padding: 10px 20px;
    background: #fff;
    border: 1px solid #a6a6a6;
    color: #a6a6a6;
    font-size: 20px;
    font-weight: 600;
}

.left_box ul li.now {
    background: #111111;
    border-color: #111111;
    color: #fff;
}

.left_box ul li:not(:last-of-type) {
    margin-bottom: 20px;
}

.left_box ul li::before {
    /* number カウンタの増加数をセット */
    counter-increment: number 1;
    /* 表示形式を指定 */
    content: "STEP-"counter(number) " ";
    font-family: 'Oswald';
    font-weight: 500;
    font-size: 22px;
}

.left_box ul li::after {
    content: "\f00c";
    font-weight: 900;
    font-family: "Font Awesome 6 Free";
    position: absolute;
    top: calc(50% - 14px);
    right: 20px;
    font-size: 28px;
    line-height: 1;
}

#entry form {
    width: 500px;
    margin-top: 0;
}

@media only screen and (max-width: 768px) {
    .cont .container {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .left_box {
        width: 100%;
    }

    .left_box ul {
        /* number のカウンタを 0 にセット */
        counter-reset: number 0;
        margin-bottom: 32px;
    }

    .left_box ul li {
        position: relative;
        padding: 10px 20px;
        background: #fff;
        border: 1px solid #a6a6a6;
        color: #a6a6a6;
        font-size: 20px;
        font-weight: 600;
    }

    .left_box ul li.now {
        background: #111111;
        border-color: #111111;
        color: #fff;
    }

    .left_box ul li:not(:last-of-type) {
        margin-bottom: 20px;
    }

    .left_box ul li::before {
        /* number カウンタの増加数をセット */
        counter-increment: number 1;
        /* 表示形式を指定 */
        content: "STEP-"counter(number) " ";
        font-family: 'Oswald';
        font-weight: 500;
        font-size: 22px;
    }

    .left_box ul li::after {
        content: "\f00c";
        font-weight: 900;
        font-family: "Font Awesome 6 Free";
        position: absolute;
        top: calc(50% - 14px);
        right: 20px;
        font-size: 28px;
        line-height: 1;
    }

    #entry form {
        width: 100%;
        margin-top: 0;
    }
}


/*============================
form
============================*/

.min {
    color: #d85050;
}

form {
    margin: 0px;
    text-align: left;
    margin-top: 30px;
}

fieldset {
    padding: 0px;
    border: none;
}

input[type=text],
textarea {
    -webkit-appearance: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    /* shadow none */
}

input,
textarea,
select {
    line-height: 130%;
    padding: 10px;
    font-weight: normal;
    border: solid 1px #bababa;
}

select {
    height: 40px;
    background: #fff;
    padding: 0 10px;
}

input[type="radio"],
input[type="checkbox"] {
    width: auto !important;
    margin-left: 2px;
    margin-right: 3px;
}

input:hover,
textarea:hover,
select:hover,
input:focus,
textarea:focus,
select:focus {
    background: #fff;
}

:placeholder-shown {
    color: #565656;
}

::-webkit-input-placeholder {
    color: #c3c3c3;
}

:-moz-placeholder {
    color: #c3c3c3;
}

::-moz-placeholder {
    color: #c3c3c3;
}

:-ms-input-placeholder {
    color: #c3c3c3;
}

label.error {
    font-size: 12px;
    color: #df2500;
    display: inline-block;
    line-height: 1.2;
    padding-top: 6px;
}

.required {
    background: #de4b4b;
    color: #fff;
    font-size: 10px;
    padding: 3px 8px;
    border-radius: 3px;
    margin-left: 5px;
    display: inline-block;
}

.link li input {
    color: #111111;
    background: #fff;
    border: 2px solid #111111;
}

.link li input::before {
    content: none;
}

@media only screen and (max-width: 768px) {

    input,
    textarea,
    select {
        line-height: 90%;
    }
}

/*============================
entry
============================*/

#entry p span a {
    display: block;
    padding-top: 10px;
    color: #006fc3;
}

.formTable {
    width: 100%;
}

.formTable tr:first-child {
    border-top: 1px solid #dedede;
}

.formTable tr {
    display: block;
    border-bottom: 1px solid #dedede;
}

.formTable th {
    width: 100%;
    padding-left: 16px;
    vertical-align: middle;
    background: #fff;
}

/*インデックス*/

#entry .formTable tr:first-child {
    border-top: none;
}

#entry .formTable tr {
    border-bottom: none;
}

#entry .formTable th {
    padding-left: 0;
}

#entry .formTable th {
    background: #fff;
    display: block;
}

#entry .formTable td {
    padding-left: 0;
}

/*end_インデックス*/

.formTable td {
    padding: 15px 0;
    width: 500px;
    padding-left: 20px;
}

#entry .formTable td p {
    padding-bottom: 5px;
}

#entry p.add {
    padding-top: 10px;
}

input#zip {
    width: 200px !important;
}

.formTable td p:first-child {
    padding-top: 0;
}

.formTable input,
.formTable textarea {
    width: 100%;
    background: #f6f6f6;
    border: none;
}

#form .radio-tr li {
    display: inline-block;
    margin-right: 20px;
}

#form .formBtn {
    padding-top: 20px;
}

.formBtn li {
    position: relative;
}

/* privacy */

#privacy {
    margin-top: 30px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
}

#privacy a {
    border-bottom: 1px solid #000;
}

@media only screen and (max-width: 768px) {
    form {
        margin-top: 10px;
    }

    .formTable {
        width: 100%;
    }

    .formTable tr:first-child {
        border-top: none;
    }

    .formTable tr {
        padding: 10px 0 18px;
    }

    .formTable tr:last-child {
        border: none;
    }

    .formTable th {
        width: 100%;
        padding: 0;
        vertical-align: inherit;
        background: none;
        display: block;
        padding-bottom: 5px;
        position: relative;
    }

    .formTable th:before {
        content: "■ ";
    }

    .formTable td {
        padding: 0;
        width: 100%;
        display: block;
    }

    input#zip {
        width: 200px !important;
    }

    .formTable td p:first-child {
        padding-top: 0;
    }

    .formTable input,
    .formTable textarea {
        width: 100%;
    }

    .formBtn li input {
        font-weight: bold;
    }

    /* privacy */
    #privacy {
        margin-top: 20px;
        font-size: 15px;
    }
}

/*============================
confirm
============================*/

#confirm .formTable tr:not(:last-of-type) {
    margin-bottom: 30px;
}

#confirm .formTable th {
    /*    padding: 15px;*/
    margin-bottom: 10px;
}

.formBtn .btn01::before {
    content: none;
    /*    border-color: #333;*/
}

#confirm .formTable td {
    width: 820px;
    padding: 7px 20px;
    background: #f6f6f6;
    border-radius: 6px;
}

#confirm .formBtn.link {
    padding-top: 40px;
}

#confirm .formBtn li.editBtn {
    margin-bottom: 20px;
}

#confirm .formBtn li.editBtn input {
    color: #a6a6a6;
    border: 2px solid #a6a6a6;
    background-color: #FFF;
    background-size: 7px auto;
}

.add_custom_confirm li {
    list-style-type: none;
}

@media only screen and (max-width: 768px) {
    #confirm .notice {
        line-height: 1.6;
        padding-top: 4px;
    }

    #confirm .formTable tr {
        padding: 12px 0;
    }

    #confirm .formTable th {
        padding: 0;
    }
}

/*============================
complete
============================*/
.right_box {
    width: 500px;
}

#complete h3 {
    border: none;
    padding: 0;
    margin: 0;
    padding-bottom: 3px;
    font-weight: bold;
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 1px solid #000;
    margin-bottom: 20px;
}

@media only screen and (max-width: 768px) {
    #complete h3 {
        margin-top: 10px;
        font-size: 18px;
    }
}
