.commonForm {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 16px;
}

.commonForm_row {
    display: flex;
    align-items: center;
    width: 770px;
}

.commonForm_labelWrapper {
    display: flex;
    width: 210px;
    height: 50px;
    align-items: flex-start;
    gap: 10px;
    padding: 14px 20px;
    position: relative;
}

.commonForm_label {
    font-size: 15px;
    font-weight: 500;
    color: var(--01-main-black);
}

.commonForm_requiredTag {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 19px;
    padding: 2px 8px;
    border-radius: 6px;
    background-color: #EF4B4B;
}

.commonForm_requiredTagText {
    font-size: 11px;
    font-weight: 500;
    color: #FDEDED;
}

.commonForm_inputWrapper {
    width: 560px;
    gap: 10px;
}

.commonForm_input {
    width: 100%;
    height: 50px;
    padding: 14px 20px;
    border: 1px solid;
    border-radius: 5px;
    border-color: var(--colors-persian-green-200);
    background-color: #ffffff;
}

.commonForm_input::placeholder {
    font-weight: 500;
    color: var(--01-main-gray-text);
    font-size: 15px;
    line-height: normal;
    letter-spacing: 0;
}

.commonForm_pullDownWrapper {
    position: relative;
    width: 280px;
    height: 50px;
}

.commonForm_pullDown {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    position: relative;
    width: 100%;
    height: 50px;
    background-color: #ffffff;
    border-radius: 5px;
    border: 1px solid;
    border-color: var(--colors-persian-green-200);
    padding: 0 20px;
    cursor: pointer;
}

.commonForm_pullDownOption {
    position: relative;
    font-weight: 500;
    color: var(--01-main-black);
    font-size: 15px;
    letter-spacing: 0;
    line-height: normal;
}

.commonForm_pullDownWrapper::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    background-image: url('/image/register/register-pulldown-icon.svg');
    background-size: 12px 12px;
    background-repeat: no-repeat;
    width: 12px;
    height: 10px;
    pointer-events: none;
}

.commonForm_checkbox {
    position: relative;
    display: inline-block;
    width: 35px;
    height: 35px;
}

.commonForm_check {
    position: absolute;
    opacity: 0; /* チェックボックス自体は非表示 */
    width: 0;
    height: 0;
}

.commonForm_checkmark {
    position: absolute;
    width: 35px;
    height: 35px;
    background-color: #ffffff;
    border-radius: 8px;
    border: 2px solid;
    border-color: var(--colors-persian-green-500);
    cursor: pointer;
}

.commonForm_check:checked ~ .commonForm_checkmark {
    background-color: var(--colors-persian-green-500);
}

.commonForm-checkbox .checkmark::before {
    content: "";
    position: absolute;
    display: none;
}

.commonForm_check:checked ~ .commonForm_checkmark::before {
    display: block;
    content: "✔";
    color: white;
    font-size: 20px;
    line-height: 32px;
    text-align: center;
    width: 100%;
    height: 100%;
    font-family: "Noto Sans JP";
}

.commonForm_bottomArea {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    gap: 19px;
}

.commonForm_buttonContainer {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 756px;
    height: 48px;
    gap: 40px;
    position: relative;
}

.commonForm_button {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 150px;
    height: 48px;
    gap: 8px;
    border-radius: 8px;
    cursor: pointer;
}

.commonForm_button-prev {
    background-color: #ffffff;
    border: 1px solid;
    border-color: var(--colors-persian-green-500);
}

.commonForm_button-submit {
    background-color: var(--colors-persian-green-500);
    border: none;
}

.commonForm_buttonText {
    font-size: 16px;
}

.commonForm_buttonText-submit {
    color: #ffffff;
}

.commonForm_buttonText-prev {
    color: var(--colors-persian-green-500);
}

.commonForm_notes {
    position: relative;
    width: fit-content;
    color: var(--01-main-black);
    font-size: 13px;
    line-height: 13px;
}

.commonForm_errorMessage {
    font-size: 12px;
    color: var(--error);
}

.commonConfirmModal {
    display: none;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    align-items: center;
    justify-content: center;
    position: fixed;
    background-color: rgba(0,0,0,0.4);
    overflow: auto;
    z-index: 1;
}

.commonConfirmModal_frame {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 55px;
    position: relative;
}

.commonConfirmModal_whiteBox {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 40px 80px;
    position: relative;
    flex: 0 0 auto;
    background-color: #ffffff;
    border-radius: 20px;
    box-shadow: var(--shadow-box);
    margin: 5% auto;
}

.commonConfirmModal_header {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: flex-start;
    gap: 24px;
    position: relative;
    flex: 0 0 auto;
}

.commonConfirmModal_titleWrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    position: relative;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
}

.commonConfirmModal_title {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
}

.commonConfirmModal_titleText {
    position: relative;
    width: fit-content;
    font-weight: 400;
    color: var(--01-main-black);
    font-size: 20px;
    letter-spacing: 0;
    line-height: 20px;
    white-space: nowrap;
}

.commonConfirmModal_table {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    flex: 0 0 auto;
}

.commonConfirmModal_itemRow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex: 0 0 auto;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-color: var(--colors-persian-green-300);
    word-break: break-all;
}

.commonConfirmModal_itemLabel {
    display: flex;
    width: 189px;
    align-items: flex-start;
    padding: 10px 20px;
    position: relative;
}

.commonConfirmModal_itemLabelText {
    width: fit-content;
    font-weight: 500;
    color: var(--01-main-black);
    font-size: 14px;
    line-height: normal;
    position: relative;
    letter-spacing: 0;
}

.commonConfirmModal_itemData {
    display: flex;
    width: 580px;
    align-items: center;
    padding: 10px 20px;
    position: relative;
}

.commonConfirmModal_itemDataText {
    width: 540px;
    font-weight: 500;
    color: var(--01-main-black);
    font-size: 14px;
    line-height: normal;
    position: relative;
    letter-spacing: 0;
}

.commonConfirmModal_buttonContainer {
    display: flex;
    width: 756px;
    height: 48px;
    align-items: center;
    justify-content: center;
    gap: 40px;
    position: relative;
}

.commonConfirmModal_button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 48px;
    gap: 8px;
    border-radius: 8px;
}

.commonConfirmModal_button-back {
    background-color: #ffffff;
    border: 1px solid;
    border-color: var(--colors-persian-green-500);
}

.commonConfirmModal_button-submit {
    background-color: var(--colors-persian-green-500);
    border: none;
}

.commonConfirmModal_buttonText {
    font-size: 16px;
    line-height: 18px;
}

.commonConfirmModal_buttonText-back {
    color: var(--colors-persian-green-500);
}

.commonConfirmModal_buttonText-submit {
    color: #ffffff;
}