@charset "UTF-8";

/*------------------------

イントロ

------------------------*/
.section-text {
    font-size: 14px;
    line-height: 2;
    text-align: center;
}

.registration-complete .section-text {
    padding-top: 32px;
}

/*------------------------

ステップ

------------------------*/
.section_step {
    text-align: center;
}

.registration-form .section_step {
    padding-top: 32px;
}

.section_step ol {
    width: 100%;
    margin: auto;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.section_step ol:before {
    width: 72%;
    height: 1px;
    content: "";
    border-top: 1px solid #eee;
    position: absolute;
    top: 50%;
    display: block;
    z-index: 1;
}

.section_step ol li {
    width: 96px;
    height: 96px;
    margin: 0 8px;
    padding: 40px 0;
    border-radius: 50px;
    background: #faf9f7;
    position: relative;
    flex-direction: column;
    font-size: 12px;
    font-weight: normal;
    color: #d1d1d1;
    text-align: center;
    z-index: 5;
}

.section_step ol li span {
    margin: auto;
    margin-bottom: 4px;
    position: absolute;
    top: 12px;
    right: 0;
    left: 0;
    display: block;
    font-family: "Quicksand", "游ゴシック Medium", "YuGothic,YuGothicM", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #d1d1d1;
}

.section_step ol li.current {
    color: #010101;
}

.section_step ol li.current span {
    color: #ff6732;
}

/*------------------------

ボタン

------------------------*/
.btn-area {
    width: 100%;
    margin-top: 40px;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
}

.btn-area .back-btn {
    width: auto;
    margin: 0;
    padding: 0;
    border: 0;
    border-bottom: 1px solid;
    border-radius: 0;
    background-color: transparent;
    font-size: 14px;
    letter-spacing: .05em;
    transition: .2s;
}

.btn-area .back-btn svg {
    margin-right: 4px;
    margin-bottom: 4px;
}

.btn-area .back-btn:hover {
    cursor: pointer;
    opacity: .7;
    border-color: #fff;
}

.btn-area .submit-btn-wrap {
    width: 100%;
}

.btn-area .submit-btn {
    width: 100%;
    margin-top: 48px;
    padding: 16px 16px 18px;
    border: 1px solid #2f3135;
    border-radius: 39px;
    background-color: #2f3135;
    position: relative;
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    text-align: center;
    vertical-align: middle;
    text-decoration: none;
    transition: .3s;
}

.btn-area .submit-btn:disabled {
    border: 1px solid #e7e7e7;
    background-color: #e7e7e7;
    color: #b1b1b1;
}

/*------------------------

入力フォーム

------------------------*/
.section_register-form {
    margin-top: 56px;
}

.register-table {
    width: 100%;
    margin: 0;
    font-size: 16px;
}

.register-table {
    width: 100%;
    border-top: dotted 1px #d1d1d1;
    line-height: 2;
}

.register-table>tbody>tr {
    display: flex;
    flex-wrap: wrap;
}

.register-table>tbody>tr>th {
    width: 100%;
    padding: 25px 0 0 0;
    border-top: 0;
    border-bottom: 0;
    position: relative;
    font-size: 13px;
    font-weight: 600;
    text-align: left;
    vertical-align: middle;
    white-space: nowrap;
}

.register-table>tbody>tr>td {
    width: 100%;
    padding: 10px 0 25px;
    border-top: 0;
    border-bottom: dotted 1px #d1d1d1;
    border-left: 0;
    font-size: 13px;
}

.form-tag {
    width: 50px;
    height: 25px;
    margin: auto;
    background: #faf9f7;
    position: absolute;
    top: 20px;
    right: 0;
    bottom: 0;
    display: inline-block;
    font-family: "游ゴシック Medium", "YuGothic,YuGothicM", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 2;
    color: #2f3135;
    text-align: center;
}

.form-tag.-required {
    border: 1px solid #ff6732;
    background-color: #fff;
    line-height: 1.9;
    color: #ff6732;
}

.privacy-box-wrap {
    margin-top: 40px;
    line-height: 2;
}

.privacy-box-wrap .title {
    font-size: 14px;
    font-weight: 400;
    text-align: center;
}

.privacy-box {
    width: 100%;
    height: 200px;
    margin: 20px auto;
    padding: 15px 20px;
    border: 1px dotted #d1d1d1;
    background-color: rgba(255, 255, 255, .5);
    overflow: auto;
}

.privacy-box p {
    margin: 0 0 15px;
    font-size: 12px;
}

.privacy-text {
    font-size: 12px;
}

/*-----------
form
------------*/
.register-table select,
.register-table input,
.register-table textarea,
.register-table option {
    font-family: "游ゴシック Medium", "YuGothic,YuGothicM", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
}

.register-table input,
.register-table textarea {
    width: 100%;
    margin: 0 0 1px;
    padding: 12px;
    border: 1px solid #fff;
    border-radius: 4px;
    background: #e7e7e7;
    font-size: 16px;
    box-sizing: border-box;
    -webkit-appearance: none;
    transition: all .5s;
}

.register-table input:focus,
.register-table textarea:focus {
    border: 1px solid #e7e7e7;
    outline: 0;
    background: #fff;
}

.select-wrap {
    width: 100%;
    border: 1px solid #fff;
    border-radius: 5px;
    background: #e7e7e7;
    position: relative;
    overflow: hidden;
}

.select-wrap::before {
    width: 6px;
    height: 6px;
    margin-top: -4px;
    content: "";
    border: 0;
    border-right: solid 2px #e7e7e7;
    border-bottom: solid 2px #e7e7e7;
    position: absolute;
    top: 50%;
    right: 15px;
    transform: rotate(45deg);
}

.select-wrap select {
    width: 100%;
    padding: 16px;
    cursor: pointer;
    border: 1px solid #fff;
    border-radius: 4px;
    outline: none;
    background: #e7e7e7;
    background-image: none;
    box-shadow: none;
    font-size: 16px;
    color: rgba(17, 17, 19, .8);
    text-indent: .01px;
    text-overflow: ellipsis;
    box-sizing: border-box;
    -webkit-appearance: none;
    appearance: none;
    transition: all .5s;
}

.select-wrap select::-ms-expand {
    display: none;
}

.form-item {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
}

.form-item.form-checkboxes {
    margin-bottom: 0;
    padding: 8px 0;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
}

.form-item.form-checkboxes li {
    width: 100%;
}

.form-item.form-checkboxes li:nth-child(n + 2) {
    margin-top: 16px;
}

.form-item label {
    width: 100%;
}

.kojin-checkbox {
    margin-top: 20px;
    position: relative;
    font-weight: bold;
}

.kojin-checkbox label {
    width: 100%;
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
}

.kojin-checkbox label:hover {
    cursor: pointer;
}

.kojin-checkbox input {
    margin: 0 10px 0 0;
}

.kojin-checkbox .form-tag {
    top: 0;
    right: 32px;
}

/*------------
radio
------------*/
[type="radio"]:checked,
[type="radio"]:not(:checked) {
    padding: 0;
    border: 0;
    /* width: 0;
display: none;
visibility: hidden; */
}

[type="radio"]:checked+label,
[type="radio"]:not(:checked)+label {
    width: 100%;
    margin-bottom: 0;
    padding-top: 16px;
    padding-bottom: 16px;
    padding-left: 44px;
    cursor: pointer;
    border: 1px solid #e7e7e7;
    border-radius: 0;
    background: rgba(255, 255, 255, .5);
    position: relative;
    display: inline-block;
    line-height: 20px;
    color: #2f3135;
}

[type="radio"]:checked+label {
    background-color: #e7e7e7;
}

[type="radio"]:checked+label:before,
[type="radio"]:not(:checked)+label:before {
    width: 18px;
    height: 18px;
    margin: auto;
    content: "";
    border: 1px solid #d1d1d1;
    border-radius: 100%;
    background: #fff;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 16px;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
}

[type="radio"]:checked+label:after,
[type="radio"]:not(:checked)+label:after {
    width: 12px;
    height: 12px;
    margin: auto;
    content: "";
    border-radius: 100%;
    background: #ff6732;
    position: absolute;
    top: 4px;
    bottom: 4px;
    left: 20px;
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
}

[type="radio"]:not(:checked)+label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}

[type="radio"]:checked+label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

/*------------
checkbox
------------*/
.checkbox [type="checkbox"]:checked,
.checkbox [type="checkbox"]:not(:checked) {
    display: none;
    visibility: hidden;
}

.checkbox [type="checkbox"]:checked+label,
.checkbox [type="checkbox"]:not(:checked)+label {
    margin: 0;
    padding: 16px 0 16px 48px;
    cursor: pointer;
    border: 1px solid #e7e7e7;
    position: relative;
    display: inline-block;
    line-height: 20px;
    color: #2f3135;
}

.checkbox [type="checkbox"]:checked+label:before,
.checkbox [type="checkbox"]:not(:checked)+label:before {
    width: 18px;
    height: 18px;
    margin: auto;
    content: "";
    border: 1px solid #e7e7e7;
    border-radius: 3px;
    background: #fff;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 16px;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
}

.checkbox [type="checkbox"]:checked+label:after,
.checkbox [type="checkbox"]:not(:checked)+label:after {
    width: 20px;
    height: 20px;
    margin: auto;
    content: "";
    background: url("data:image/svg+xml;charset=UTF-8,<svg xmlns=\"http://www.w3.org/2000/svg\" version=\"1.1\" viewBox=\"0 0 24 24\"><path fill=\"%23ff6732\" stroke=\"%23ff6732\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"M21,7L9,19L3.5,13.5L4.91,12.09L9,16.17L19.59,5.59L21,7Z\"/></svg>") no-repeat center center/contain;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 16px;
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
}

.checkbox [type="checkbox"]:not(:checked)+label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}

.checkbox [type="checkbox"]:checked+label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

[type="checkbox"]:checked+label {
    background-color: #e7e7e7;
}

/*------------------------

カスタム

------------------------*/
.register-table .birthday .is-row {
    margin-left: -16px;
    flex-wrap: wrap;
    flex-direction: row;
}

.register-table .birthday .is-row>.is-col {
    width: calc(100% / 3 - 16px);
    max-width: 100%;
    margin-left: 16px;
    flex: 0 0 calc(100% / 3 - 16px);
}

/*------------------------

エラー

------------------------*/
.error-box {
    width: 100%;
    margin: 56px auto 0;
    padding: 40px;
    border: 2px dotted #ff6732;
    background-color: #fef7f5;
    font-size: 14px;
    font-weight: bold;
    line-height: 2;
    letter-spacing: .1em;
}

.error-box ul {
    margin: 0;
}

.error-box ul li {
    margin-bottom: 8px;
    padding-left: 1em;
    position: relative;
    display: block;
    font-size: 14px;
    text-align: left;
    text-indent: -.5em;
}

.error-box ul li:before {
    width: 6px;
    height: 6px;
    margin-right: 8px;
    content: "";
    border-radius: 50%;
    background: #ff6732;
    display: inline-block;
    vertical-align: middle;
}

.error-box ul li:last-child {
    margin-bottom: 0;
}

input.is-error,
textarea.is-error,
select.is-error {
    border: 1px solid #ff6732;
    background-color: #fef7f5;
    box-shadow: none inset;
}

input.is-error:focus,
textarea.is-error:focus,
select.is-error:focus {
    border-color: #ff6732;
    box-shadow: none;
}

form span.is-error,
form div.is-error {
    font-size: 12px;
    font-weight: 600;
    color: #ff6732;
}

.select-wrap.is-error {
    border: 1px solid #ff6732;
    background-color: #fef7f5;
    box-shadow: none;
}

.select-wrap.is-error select {
    background: #fef7f5;
}