.entry {
    padding-block: 208px 100px;
}

.entry__inner {
    max-width: 755px;
    margin-inline: auto;
}

.pageTitle {
    display: grid;
    height: 103px;
    justify-items: center;
    position: relative;
}
.pageTitle::after {
    content: "";
    background-image: url(../images/icon-hgroup-wave.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    bottom: 0;
    content: "";
    height: 4px;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
    width: 20px;
}

.pageTitle__en {
    font-size: 14px;
    font-weight: 500;
    font-family: var(--fontOutfit);
}

.pageTitle__ja {
    font-size: 32px;
    font-weight: 700;letter-spacing: 0.03em;
    line-height: 1.8;
}

.form {
    margin-top: 40px;
}

.form__lead {
line-height: 1.8;
text-align: center;
margin-top: 40px;
}

.form__lead span {
    color: #E53205;
}

.formList {
    display: grid;
    gap: 24px
}

.formList__item {
    display: grid;
    grid-template-columns: 1fr 500px;
    gap: 2px 24px;
    align-items: center;
}

.formList__item:has(.formList__label--agreement) {
    display: block;
    text-align: center;
    margin-top: 16px;
}

.form__checkbox {
    align-items: center;
    display: inline-flex;
    gap: 8px;
}

.formList__label {
    font-size: 14px;
    font-weight: 500;
    display: grid;
    grid-template-columns: auto 1fr;
    line-height: 1.8;
    gap: 8px;
    letter-spacing: 0.03em;
}

.formList__label.required::after {
    content: "※";
    color: #E53205;
    font-size: 14px;
}


.formList__label--agreement {
    font-weight: 700;
    display: block;
    gap: 0;
}

.formList__label--agreement a {
    text-decoration: underline;
}

.formList__item input,
.formList__item select {
    width: 100%;
    height: 57px;
    letter-spacing: 0.03em;
    border: 1px solid #F7F7F6;
    background-color: #F7F7F6;
    border-radius: 10px;
    padding-inline: 20px;
    font-size: 14px;
}

.formList__item select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.formList__item div:has(select) {
    position: relative;
}

.formList__item div:has(select)::after {
    position: absolute;
    right: 26px;
    display: inline-block;
    vertical-align: middle;
    color: #333;
    line-height: 1;
    width: 0.5em;
    height: 0.5em;
    border: 0.1em solid currentColor;
    border-left: 0;
    border-bottom: 0;
    box-sizing: border-box;
    transform: translateY(-50%) rotate(135deg);
    content: "";
    top: 50%;
}

.formList__item input[type="checkbox"] {
    width: 24px;
    border-radius: 4px;
    border: 1px solid #ADADAD;
    height: 24px
}

.formList__item input:focus,
.formList__item select:focus {
    box-shadow: 0px 0px 2px 0px #fd713e;
    outline: none;
    border: 1px solid #fd713e;
}

::placeholder {
    color: #B8B8B8;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.03em;
}

.form__agreement {
    margin-top: 40px;
}
.form__submit {
    margin: 40px auto 0;
    width: fit-content;
}

.button--submit {
    background-color: var(--colorOrange);
    border: 1px solid var(--colorOrange);
    border-radius: 40px;
    color: #fff;
    height: 48px;
    line-height: 48px;
    width: 240px;
}

.required--error {
    color: #E53205;
    font-size: 13px;
    margin-top: 6px;
    padding-left: 4px;
}



.backButton {
    background-color: #545351;
    border-radius: 40px;
    color: #fff;
    display: inline-block;
    height: 48px;
    line-height: 48px;
    text-align: center;
    width: 240px;
}

@media (max-width: 795px) {
    .entry {
        padding-block: 120px 100px;
    }

    .entry__inner {
        padding-inline: 20px;
        max-width: 100%;
    }

    .form__lead {
        margin-top: 24px;
    }


    .formList__item {
        grid-template-columns: 1fr;
    }

    .formList__label {
        margin-left: 2px;
    }
}


@media (max-width: 768px) {
     .form__lead {
        text-align: left;
     }
}


/* ======================== */
/* 確認画面 */
/* ======================== */
.form__confirmWrap {
    margin-top: 40px;
}
.form__confirmWrap h2 {
    text-align: center;
}
.confirm__formList {
    margin: 40px 0;
}
.confirm .formList__item {
    border-bottom: 1px solid #cdcdcd;
    padding: 24px 0;
    gap: 8px 24px;
}
.comfirm__buttonWrapper {
    margin-top: 24px;
    text-align: center;
}
.formList__item--accept {
    opacity: 0;
    visibility: hidden;
}

/* ======================== */
/* 完了画面 */
/* ======================== */

.completeForm__button {
    text-align: center;
}

.completeText {
    font-size: 14px;
    line-height: 1.8;
    margin: 40px 0;
    text-align: center;
}
