
.step {
    width: 100%;
    display: flex;
    justify-content: space-between;

    box-sizing: border-box;
    padding: 20px 0 0;
}

.step__frame {
    width: 25%;
    display: flex;
}

.step__frame::after {
    display: inline-block;
    content: "";
    width: 12px;
    height: 12px;
    border-top: 2px solid #7C65D9;
    border-right: 2px solid #7C65D9;
    transform: rotate(45deg);
    align-items: center;
}

.step__frame:last-child::after {
    display: none;
}

.step__item {
    width: 100%;
    height: 100px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
}

.step__number {
    width: 66px;
    background-color: #D9D9D9;
    color: #ffff;
    border-radius: 20px;
    text-align: center;
}

.step__number--active {
    background-color: #7C65D9;
}

.step__name {
    font-weight: 600;
}

.step__icon {
    width: 100%;
    height: 40%;
    display: flex;
    justify-content: center;
    align-items: end;
}

.step__iconImage {
    width: 35px;
    height: 35px;
    display: block;
}


.entryForm{
    width: 100%;
}

tbody {
    width: 100%;
}

.entryForm__wrapper {
    width: 100%;
    box-sizing: border-box;
    padding: 15px;
}



.entryForm__row {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.entryForm__head {
    width: 100%;
    font-size: 15px;
    font-weight: 600;
    color: #8E8FFA;
    text-align: start;
    padding: 20px 0 5px;
}

.entryForm__data {
    width: 100%;
}

.entryForm__data--forBirthday {
    position: relative;
}

.entryForm__radio {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.entryForm__data--check {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 10px 0;
}

.entryForm__data--radio {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.entryForm__pass {
    display: flex;
    justify-content: space-between;
    align-items: center;    
}

.entryForm__data--forPass {
    display: flex;
    justify-content: space-between;
    align-items: center;    
}


.entryForm__input {
    width: 100%;
    height: 46px;
    border-radius: 4px;
    border: 1px solid #D9D9D9;
    background-color: #FFFFFF;
    font-size: 14px;
    box-sizing: border-box;
    padding: 10px;
}

/* .entryForm__input--error {
    background-color: #df9393;
} */



.entryForm__input::placeholder {
    color:#D9D9D9;
}

.entryForm__input--forBirthday::-webkit-calendar-picker-indicator {
    /* position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0; */
    width: 46px;
    height: 46px;
    border-left: 1px solid #D9D9D9;
    background: none;
    box-sizing: border-box;
}

.entryForm__calender {
    position: absolute;
    width: 18px;
    height: 18px;
    top: calc((46px - 18px) / 2);
    right:  calc((46px - 18px) / 2 + 5px) ;
}

.entryForm__input--forPass {
    width: 80%;
}


.entryForm__showPassButton {
    width: calc(20% - 5px);
    height: 36px;
    background-color: #492DB2;
    color: #F7F7F7;
    border-radius: 4px;
}

.entryForm__checkbox {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    min-width: 25%;
    max-width: 40%;
    font-size: 15px;
    font-weight: 500;
}

.entryForm__checkbox--forAccept {
    /* gap: 10px; */

    min-width: none;
    max-width: none;
    width:100%;

    font-weight: normal;

    padding: 5px 15px;
    box-sizing: border-box;
}

.entryForm__checkbox input[type="checkbox"] {
    position: relative;
    border-radius: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    margin-right: 6px;
    background-color: #FFFFFF;
    border: 1px solid #D9D9D9;
}



.entryForm__checkbox input[type="checkbox"]:checked {
    background-color: #6859B2;
}

.entryForm__checkbox input[type="checkbox"]:checked:before {
    content: '';
    position: absolute;
    top: 1px;
    left: 6px;
    transform: rotate(50deg);
    width: 4px;
    height: 8px;
    border-right: 1px solid #ffff;
    border-bottom: 1px solid #ffff;
}

.entryForm__required {
    font-size: 13px;
    font-weight: normal;
    color: #E53939;
}

.entryForm__phpError {
    font-size: 15px;
    line-height: 1.75;
    font-weight: 600;
    color: #E53939;
    box-sizing: border-box;
    padding-top: 35px;
    padding-left: 15px;
    padding-right: 15px;
}

.entryForm__phpError p::before {
    content:"・";
    line-height: 1.2;
}




.entryForm__input.error {
    background-color: #e2bebe;
}
.entryForm__checkbox input[type="checkbox"].error {
    background-color: #e2bebe;
}

#accept1_error, #accept2_error {
    padding-left: 15px;
}

/* .entryForm__error--show  {
    display: block;
} */

.entryForm__notes {
    font-size: 12px;
    font-weight: normal;
    color: #7E7E7E;
}


.entryForm__radioInput {
    display: none;
}

.entryForm__radioLabel {
    display: block;

    text-align: center;
    font-size: 16px;
    font-weight: 500;

    width: 30%;
    padding: 12px 0;
    border-radius: 4px;
    border: 1px solid #D9D9D9;
    background-color: #FFFFFF;
    color: #3C3C3C;

    cursor: pointer;
}

.entryForm__radioInput:checked + .entryForm__radioLabel {
    border: 1px solid #6859B2;
    background-color: #6859B2;
    color: #FFFFFF;
}

.entryForm__desc {
    width: 100%;
    height: auto;
    max-height: 150px;
    overflow-y: scroll;
    border-radius: 4px;
    border: 1px solid #D9D9D9;
    background-color: #FFFFFF;
    box-sizing: border-box;
    padding: 10px;
}

.entryForm__desc p {
    font-size: 12px;
    padding: 10px 0;
}

.entryForm__text {
    font-size: 13px;
}

.entryForm__button {
    box-sizing: border-box;
    margin: 10px 15px;
    padding: 10px 15px;
    width:calc(100% - 30px);
    height: 60px;
    font-size: 16px;
    font-weight: 700;
    color: #F7F7F7;
    border-radius: 4px;
    background: linear-gradient(to bottom, #8e90fa , rgb(114, 115, 204));
    box-shadow: 0px 2px 2px 0px #0000001A;
    margin-bottom: 50px;
}

.confirm__table {
    width: 80%;
    margin: 20px auto;
    border: none;
    font-size: 15px;
    border-collapse: collapse; 
}

.confirm__row {
    border-bottom: 1px solid #D9D9D9;
    
}

.confirm__head {
    width: 35%;
    padding: 8px 0;
    box-sizing: border-box;
    font-size: 14px;
}

.confirm__data {
    width: 70%;
    padding: 8px;
    box-sizing: border-box;

    color: #7E7E7E;
}

.confirm__button {
    box-sizing: border-box;
    margin: 15px 15px;
    padding: 10px;
    width:calc(100% - 30px);
    height: 60px;
    font-size: 16px;
    font-weight: 700;
    color: #F7F7F7;
    border-radius: 4px;
    background: linear-gradient(to bottom, #8e90fa , rgb(114, 115, 204));
    box-shadow: 0px 2px 2px 0px #0000001A;
}

.confirm__back {
    display: block;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
    padding: 10px;
    margin: 20px 0 35px;

    text-decoration: underline;
    color: #6859B2;
    font-size: 14px;
    font-weight: 600;

    border: none;
    background-color: #F7F7F7;

    cursor: pointer;
}



.mailCarrier {
    width: 100%;
    padding: 20px 20px 0; 
    /* display: flex; */
    gap: 1px;
    box-sizing: border-box;
    border-top: 1px solid #D9D9D9;
    /* padding-top: 20px; */
}

.mailCarrier__note {
    box-sizing: border-box;
    /* padding: 0 15px; */
    /* font-size: 12px; */
    font-weight: 700;
    color: #E53939;
}

.mailCarrier__item {
    width: 100%;
    /* margin: 0 auto; */
}

.mailCarrier__head {
    width: 100%;
    /* font-size: 12px; */
    background-color: #6859B2;
    color:#F7F7F7;
    box-sizing: border-box;
    padding: 5px;
}

.mailCarrier__example {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    font-size: 14px;
    box-sizing: border-box;
    padding: 10px 20px;
}

.mailCarrier__text {
    /* display: block; */
    width: 50%;
}

