.line__btn {
    width: 350px;
    height: 58px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-left: 70px;
    border-radius: 6px;
    font-size: 20px;
    font-weight: 600;
    text-align: left;
    box-shadow: 7px 7px 7px 0px rgba(0, 0, 0, 0.6);
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    border: 1px solid #00b900;
    background-color: #00b900;
    color: #ffffff;
    position: relative;
    &:hover {
        background-color: #fff;
        color: #00b900;
    }
    img {
        position: absolute;
        top: 0px;
        left: 0px;
        width: 58px;
        height: 58px;
        box-shadow: 1px 0 5px 0 rgba(0, 0, 0, 0.2);
    }
}

.wrapper {
    width: 100%;
    height: 900px;
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 5rem;
    padding-bottom: 0;
    @media screen and (min-width: 1024px) {
        padding-bottom: 5rem;
    }
}

.wrapper__inner {
    width: 100%;
    background-color: #fff;
    border-top-left-radius: 3rem;
    border-top-right-radius: 3rem;
    overflow: hidden;
    @media screen and (min-width: 1024px) {
        width: 900px;
        margin: 0 auto;
    }
    .wrapper__header {
        background-color: #fff;
        display: flex;
        justify-content: center;
        align-items: center;
        column-gap: 20px;
        padding: 32px 0;
        background-image: url(../../../images/member/person/shadow-bg-header-mb.jpg);
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        .title__icon {
            width: 40px;
        }
        .title {
            font-size: 25px;
            font-weight: bold;
        }
    }
    .wrapper__body {
        box-shadow: 0px -4px 8px 0px rgba(0, 0, 0, 0.2);
        position: relative;
        display: flex;
        flex-direction: column;
        background-image: url(../../../images/member/person/shadow-bg-mb.png);
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        .line__btn {
            margin: 0 auto;
            margin-bottom: 1rem;
        }
        .robot__wrapper {
            display: flex;
            justify-content: center;
            .robot__img {
                width: auto;
                height: 300px;
            }
        }
        .privacy__text {
            font-size: 13px;
            line-height: 1.25;
            color: #000;
            padding: 20px;
        }
    }
    @media screen and (min-width: 1024px) {
        border-bottom-left-radius: 3rem;
        border-bottom-right-radius: 3rem;
        .wrapper__header {
            background-image: url(../../../images/member/person/shadow-bg-header.jpg);
        }
        .wrapper__body {
            box-shadow: 0px -2px 4px 0px rgba(0, 0, 0, 0.05);
            background-image: url(../../../images/member/person/shadow-bg.jpg);
            .line__btn {
                position: absolute;
                top: 40%;
                left: 22.5%;
                transform: translate(-50%, -50%);
            }
            .robot__wrapper {
                width: 100%;
                justify-content: flex-end;
                box-sizing: border-box;
                padding-right: 1rem;
                margin-top: -1.5rem;
                picture {
                    width: 66%;
                }
                .robot__img {
                    width: 100%;
                    height: auto;
                }
            }
            .privacy__text {
                font-size: 14px;
                line-height: 1.25;
                background-color: transparent;
                padding: 1rem 0 0 2rem;
            }
        }
    }
}
