main {
    padding: 0 1.5rem 4rem;
}
.bottom-btn {
    display: none;
}
.info_sub {
    font-size: 1.6rem;
    margin: 2rem 0 1rem;
}
.info_main {
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 4rem;
}
.info_main strong {
    font-size: 2.4rem;
    font-weight: 800;
    color: #4880EE;
}
#notiForm ul {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}
#notiForm ul li {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
#notiForm ul li > label {
    font-size: 1.7rem;
    color: #606060;
    font-weight: 500;
}
#notiForm ul li > input {
    background: #F4F4F4;
    display: block;
    padding: 2rem 1.5rem;
    font-size: 1.6rem;
}
#notiForm ul li > input:focus {
    outline: none;
}
#notiForm ul li > input::placeholder {
    color: #8F8F8F;
}
#notiForm ul li .flex_box {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#notiForm ul li .flex_box input {
    display: block;
    width: 77%;
    background: #F4F4F4;
    display: block;
    padding: 2rem 1.5rem;
    font-size: 1.6rem;
}
#notiForm ul li .flex_box input:focus {
    outline: none;
}
#notiForm ul li .flex_box p {
    width: 20%;
    background: #4880EE;
    color: #fff;
    font-size: 1.6rem;
    text-align: center;
    padding: 2.2rem 0;
}
#notiForm ul li .input_flex_box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}
#notiForm ul li .input_flex_box label {
    display: block;
    width: calc(50% - .7rem);
    background: #F4F4F4;
    padding: 2.5rem 0;
    text-align: center;
    font-size: 1.6rem;
    color: #8F8F8F;
}
#notiForm ul li .input_flex_box label.gender_label.selected {
    background: #4880EE;
    font-size: 1.6rem;
    color: #fff;
}
.agreeWrap {
    margin-bottom: 4rem;
}
.agreeWrap h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.agreeWrap h3 img {
    width: 2rem;
}
.agreeWrap .toggle {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #aaa;
    display: none;
}
.agree_box {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 2rem;
}
.agree_box .left {
    display: block;
    font-size: 1.7rem;
    color: #606060;
    font-weight: 500;
}
.agree_box .agree_btn {
    display: block;
    width: 2rem; height: 2rem;
    border: .1rem solid #5a5a5a;
}
.agree_box .agree_btn.checked {
    border-color: #4880EE;
    background-color: #4880EE;
    background-image: url(../img/check.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 1.3rem;
}
.submit_btn {
    font-size: 2.2rem;
    font-weight: 600;
    color: #fff;
    background: #4880EE;
    text-align: center;
    padding: 2.5rem 0;
    width: 100%;
}
.privacy_tit {
    font-size: 2rem;
    text-align: center;
    margin: 2rem 0;
    font-weight: 700;
}

#warningModal {
    display: none;
    align-items: center;
    padding: 0 1.5rem;
    background: rgba(0, 0, 0, 0.4);
    z-index: 9999;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
#warningModal.active {
    display: flex;
}
#warningModal .box {
    background: #fff;
    padding: 4rem 1.5rem;
}
#warningModal .box .icon {
    display: flex;
    flex-flow: column nowrap;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
}
#warningModal .box .icon img {
    width: 4rem;
}
#warningModal .box .icon strong {
    font-size: 2.4rem;
    font-weight: 900;
    color: #ff2c2c;
}
#warningModal .box p {
    font-size: 1.6rem;
    line-height: 1.6;
    color: #717070;
    margin-bottom: 4rem;
    text-align: center;
}
#warningModal .box p b {
    font-size: 1.6rem;
    font-weight: 800;
}
#warningModal .box .buttonWrap {
    display: flex;
    gap: 1rem;
}
#warningModal .box .buttonWrap button {
    width: 50%;
    padding: 1.5rem 0;
    font-size: 1.6rem;
    background: #f7f7f7;
    border: 1px solid #c0c1c1;
}
#warningModal .box .buttonWrap button:nth-of-type(1) {
    background: #4880EE;
    color: #fff;
    border: 1px solid #4880EE;
}