/* 메인 */
.ms1 {
    overflow: hidden;
    margin-bottom: 4rem;
}

.ms1::before,
.ms1::after {
    content: "";
    position: absolute;
    top: 0;
    width: var(--margin-left);
    height: 100%;
    z-index: 10;
}

/*
.ms1::before { background: linear-gradient(to left, rgba(255, 255, 255, 0) 0%, #fff 30%); left: -5%;}
.ms1::after { background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, #fff 30%);  right: -5%;}
*/
.ms1 .ms1_swiper {
    width: 100%;
    overflow: visible;
}

.ms1 .ms1_swiper .item {
    overflow: hidden;
    border-radius: 0.625rem;
    height: 25.813rem;
}

.ms1 .ms1_swiper .item .imgbox {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    opacity: 0.3;
    transition: all 0.5s ease;
}

.ms1 .ms1_swiper .item .imgbox::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
    opacity: 0;
    transition: all 0.5s ease;
}

.ms1 .ms1_swiper .item .imgbox .img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ms1 .ms1_swiper .item .txtbox {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 1.875rem;
    display: flex;
    flex-direction: column;
    transition: all 0.5s ease;
    opacity: 0;
}

.ms1 .ms1_swiper .item .txtbox .tit {
    font-weight: 600;
    font-size: 1.375rem;
    line-height: 100%;
    color: #fff;
    margin-bottom: 0.875rem;
}

.ms1 .ms1_swiper .item .txtbox .desc {
    font-size: 0.875rem;
    line-height: 100%;
    color: #c3cfdb;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ms1 .ms1_swiper .item .txtbox .hashbox {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.625rem;
    margin-top: 1.125rem;
}

.ms1 .ms1_swiper .item .txtbox .hashbox .tag {
    font-weight: 400;
    font-size: 0.813rem;
    line-height: 100%;
    color: #7c88a2;
}

.ms1 .ms1_swiper .item.swiper-slide-active .imgbox,
.ms1 .ms1_swiper .item.swiper-slide-next .imgbox {
    opacity: 1;
}

.ms1 .ms1_swiper .item.swiper-slide-active .imgbox::after,
.ms1 .ms1_swiper .item.swiper-slide-next .imgbox::after {
    opacity: 1;
}

.ms1 .ms1_swiper .item.swiper-slide-active .txtbox,
.ms1 .ms1_swiper .item.swiper-slide-next .txtbox {
    opacity: 1;
}

.ms1 .ms1_swiper .prev_btn,
.ms1 .ms1_swiper .next_btn {
    background: no-repeat center/contain;
    width: 1.875rem;
    height: unset;
    aspect-ratio: 1/1;
}

.ms1 .ms1_swiper .prev_btn {
    background-image: url(../img/swiper_prev.png);
    left: -2.188rem;
}

.ms1 .ms1_swiper .next_btn {
    background-image: url(../img/swiper_next.png);
    right: -2.188rem;
}

.ms1 .ms1_pag {
    position: relative;
    left: unset;
    right: unset;
    top: unset;
    bottom: unset;
    width: 100%;
    margin-top: 1.688rem;
    gap: 0.438rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ms1 .ms1_pag .swiper-pagination-bullet {
    width: 0.438rem;
    height: unset;
    aspect-ratio: 1/1;
    opacity: 1;
    background: #d9d9d9;
    transition: var(--transition);
    margin: 0;
}

.ms1 .ms1_pag .swiper-pagination-bullet-active {
    background: #00c1ca;
}

.ms2 {
    margin-bottom: 4.625rem;
}

.ms2>.inner {
    display: flex;
    flex-direction: column;
    gap: 4.625rem;
}

.ms2 .contbox1 {
    display: flex;
    gap: 2.5rem;
}

.ms2 .contbox1 .item {
    position: relative;
    width: calc((100% - 2.5rem) / 2);
    background: #dce4ed;
    border-radius: 0.625rem;
    padding: 0.25rem 0.938rem 0.625rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.ms2 .contbox1 .item .thumbox {
    position: relative;
    width: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ms2 .contbox1 .item .thumbox .img {
    width: 100%
}

.ms2 .contbox1 .item .thumbox .msg {
    position: absolute;
    right: -4rem;
    top: -1.5rem;
    width: 4.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ms2 .contbox1 .item .txtbox {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.625rem;
}

.ms2 .contbox1 .item .txtbox .btn {
    border: 1px solid #99abc0;
    border-radius: 100px;
    padding: 0.375rem 0.75rem;
    background: #dce4ed;
    font-size: 0.875rem;
    line-height: 100%;
    color: #182b55;
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.ms2 .contbox1 .item .txtbox .btn .arrow {
    background: url(../img/ms2_arrow.png) no-repeat center/contain;
    width: 0.313rem;
    aspect-ratio: 5/8;
}

.ms2 .contbox1 .item .txtbox .tit {
    font-weight: 600;
    font-size: 1.375rem;
    line-height: 100%;
    color: #182b55;
}

.ms2 .mob_contbox1 {
    display: none;
}

.ms2 .contbox2 {
    display: flex;
    align-items: center;
}

.ms2 .contbox2 .item {
    flex: 1;
    max-width: 16rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.125rem;
    text-align: center;
}

.ms2 .contbox2 .item .tit {
    font-weight: 500;
    font-size: 1rem;
    line-height: 100%;
    color: #7c88a2;
}

.ms2 .contbox2 .item .desc {
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 100%;
    color: #182b55;
}

.ms2 .contbox2 .bar {
    width: 1px;
    height: 6.25rem;
    background: #c3cfdb;
}

.ms3 {
    margin-bottom: 5.375rem;
}


/* 캠페인 목록 */
.prdlist_sec {
    margin-top: 0.625rem;
    margin-bottom: 7.875rem;
}


/* 검색 결과 */
.prdlist_search {
    margin-bottom: 2.875rem;
}

.prdlist_search>.inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.688rem;
}

.prdlist_search .inputarea {
    position: relative;
    width: 100%;
    max-width: 37.5rem;
    border-bottom: 1px solid #182b55;
    padding: 0 0.5rem 1.063rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.prdlist_search .inputarea .input {
    flex: 1;
    width: 100%;
    height: 2.5rem;
    border: 0;
    font-weight: 600;
    font-size: 1.625rem;
    line-height: 100%;
    color: #182b55;
}

.prdlist_search .inputarea .input::placeholder {
    color: #7c88a2;
}

.prdlist_search .inputarea .sch_btn {
    background: url(../img/ico_search2.png) no-repeat center/contain;
    width: 2.5rem;
    aspect-ratio: 1/1;
}

.prdlist_search .infoarea {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.875rem;
    line-height: 100%;
    color: #182b55;
}

.prdlist_search .infoarea .total {
    font-weight: 600;
}

.prdlist_search .infoarea .bar {
    font-weight: 200;
    color: #adb5c3;
}

.prdlist_sec2 {
    margin-bottom: 5.375rem;
}


/* 캠페인 상세 */
.prddetail_sec {
    position: relative;
    margin-bottom: 4.75rem;
}

.prddetail_sec .detail_info {
    width: 100%;
    display: flex;
    gap: 2.5rem;
}

.prddetail_sec .d_leftbox {
    width: calc((100% - 2.5rem)/2);
    position: relative;
    display: flex;
    flex-direction: column;
}

.prddetail_sec .d_leftbox .pic_box {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.prddetail_sec .d_leftbox .pic_box .detail_pic {
    width: 100%;
    border-radius: 0.625rem;
}

.prddetail_sec .d_leftbox .pic_box .detail_pic .item {
    width: 100%;
    display: flex;
    align-items: center;
    height: 25.875rem;
}

.prddetail_sec .d_leftbox .pic_box .detail_pic .item .img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.prddetail_sec .d_leftbox .pic_box .detail_pic .prev_btn,
.prddetail_sec .d_leftbox .pic_box .detail_pic .next_btn {
    background: no-repeat center/contain;
    width: 1.875rem;
    height: unset;
    aspect-ratio: 1/1;
    margin: 0;
    top: 50%;
    transform: translateY(-50%);
}

.prddetail_sec .d_leftbox .pic_box .detail_pic .prev_btn {
    background-image: url(../img/swiper_prev.png);
    left: 0.625rem;
}

.prddetail_sec .d_leftbox .pic_box .detail_pic .next_btn {
    background-image: url(../img/swiper_next.png);
    right: 0.625rem;
}

.prddetail_sec .d_leftbox .pic_box .detail_thum {
    width: 100%;
}

.prddetail_sec .d_leftbox .pic_box .detail_thum .item {
    width: calc((100% - 0.625rem*4)/5);
    cursor: pointer;
    overflow: hidden;
    border-radius: 0.625rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prddetail_sec .d_leftbox .pic_box .detail_thum .item::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border: 3px solid #00c1ca;
    border-radius: 0.625rem;
    box-sizing: border-box;
    opacity: 0;
    transition: var(--transition);
}

.prddetail_sec .d_leftbox .pic_box .detail_thum .item.swiper-slide-thumb-active::after {
    opacity: 1;
}

.prddetail_sec .d_leftbox .pic_box .detail_thum .item .img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.prddetail_sec .d_rightbox {
    width: calc((100% - 2.5rem)/2);
}

.prddetail_sec.is_fixed .d_rightbox {
    position: fixed;
    top: 1rem;
    right: var(--margin-left);
    max-width: calc(((100vw - var(--margin-left) * 2) - 2.5rem) / 2);
}

.prddetail_sec.is_bottom .d_rightbox {
    position: absolute;
    bottom: 0;
    top: auto;
    right: 0;
}

.prddetail_sec .d_rightbox .top_box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.875rem;
}

.prddetail_sec .d_rightbox .profile {
    display: flex;
    align-items: center;
    gap: 0.563rem;
}

.prddetail_sec .d_rightbox .profile .thum {
    width: 3.125rem;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    overflow: hidden;
}

.prddetail_sec .d_rightbox .profile .thum .img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.prddetail_sec .d_rightbox .profile .info {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.prddetail_sec .d_rightbox .profile .info .name {
    font-weight: 600;
    font-size: 1rem;
    line-height: 100%;
    color: #182b55;
}

.prddetail_sec .d_rightbox .profile .info .place {
    font-size: 0.75rem;
    line-height: 100%;
    color: #7c88a2
}

.prddetail_sec .d_rightbox .btnbox {
    display: flex;
    gap: 0.313rem;
}

.prddetail_sec .d_rightbox .btnbox .btn {
    border-radius: 0.625rem;
    padding: 0.625rem 0.875rem;
    background: #c3cfdb;
    font-size: 0.813rem;
    line-height: 100%;
    text-align: center;
    color: #182b55;
    width: 5.625rem;
}

.prddetail_sec .d_rightbox .infobox {
    border-top: 2px solid #182b55;
    padding-top: 1.688rem;
    margin-bottom: 1.875rem;
}

.prddetail_sec .d_rightbox .infobox .date {
    font-weight: 600;
    font-size: 0.875rem;
    line-height: 100%;
    color: #182b55;
    border-radius: 0.313rem;
    padding: 0.438rem 0.625rem;
    background: #00c1ca;
    display: inline-flex;
    margin-bottom: 0.563rem;
}

.prddetail_sec .d_rightbox .infobox .tit {
    font-weight: 600;
    font-size: 1.5rem;
    line-height: 125%;
    color: #182b55;
    margin-bottom: 0.813rem;
}

.prddetail_sec .d_rightbox .infobox .desc {
    font-size: 1rem;
    line-height: 150%;
    color: #2e4369;
}

.prddetail_sec .d_rightbox .infobox .tagbox {
    display: flex;
    flex-wrap: wrap;
    gap: 0.438rem;
    margin-top: 2rem;
}

.prddetail_sec .d_rightbox .infobox .tagbox .tag {
    border: 1px solid #c8cfde;
    border-radius: 10rem;
    padding: 0.375rem 0.5rem;
    background: #fff;
    font-size: 0.813rem;
    line-height: 100%;
    color: #7c88a2;
}

.prddetail_sec .d_rightbox .bottombox {
    display: flex;
    flex-direction: column;
}

.prddetail_sec .d_rightbox .bottombox .descbox .profile {
    display: none;
}

.prddetail_sec .d_rightbox .bottombox .descbox .desclist {
    display: flex;
    flex-direction: column;
    gap: 0.563rem;
    border-top: 1px solid #c8cfde;
    border-bottom: 1px solid #c8cfde;
    padding: 1.25rem 0;
}

.prddetail_sec .d_rightbox .bottombox .descbox .desclist .item {
    font-size: 0.875rem;
    line-height: 150%;
    color: #182b55;
    display: flex;
    align-items: flex-start;
    gap: 1.125rem;
}

.prddetail_sec .d_rightbox .bottombox .descbox .desclist .item .tit {
    width: 3.125rem;
}

.prddetail_sec .d_rightbox .bottombox .descbox .desclist .item .desc {
    font-weight: 600;
    flex: 1;
}

.prddetail_sec .d_rightbox .bottombox .fundbox {
    margin-top: 0.875rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.prddetail_sec .d_rightbox .bottombox .fundbox .top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.prddetail_sec .d_rightbox .bottombox .fundbox .top .left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    line-height: 100%;
    color: #2e4369;
}

.prddetail_sec .d_rightbox .bottombox .fundbox .top .left .price {
    font-weight: 700;
    font-size: 1.625rem;
    line-height: 100%;
    color: #182b55;
}

.prddetail_sec .d_rightbox .bottombox .fundbox .top .right .percent {
    background: url(../img/prd_percent.png) no-repeat center/contain;
    width: 3.125rem;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.938rem;
    line-height: 100%;
    text-decoration: underline;
    text-align: center;
    color: #000;
}

.prddetail_sec .d_rightbox .bottombox .fundbox .progress {
    position: relative;
    width: 100%;
    height: 0.625rem;
    background: #e0eafc;
    border-radius: 10rem;
}

.prddetail_sec .d_rightbox .bottombox .fundbox .progress .bar {
    width: 0;
    height: 0.625rem;
    background: #00c1ca;
    border-radius: 10rem;
}

.prddetail_sec .d_rightbox .bottombox .btnbox {
    display: none;
}

.prddetail_sec .fixed_btnbox {
    display: flex;
    gap: 0.688rem;
    margin-top: 1.5rem;
}

.prddetail_sec .fixed_btnbox .btn {
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
    border-radius: 0.313rem;
    padding: 0 1rem;
    font-size: 0.875rem;
    line-height: 143%;
}

.prddetail_sec .fixed_btnbox .wish_btn .icon {
    background: url(../img/ico_wish2.png) no-repeat center/contain;
    width: 1.25rem;
    aspect-ratio: 1/1;
}

.prddetail_sec .fixed_btnbox .wish_btn.on .icon {
    background-image: url(../img/ico_wish_on.png);
}

.prddetail_sec .fixed_btnbox .submit_btn {
    width: 14.375rem;
    font-weight: 600;
    font-size: 1rem;
    line-height: 100%;
}

.prddetail_sec .fixed_btnbox .btn.typeA {
    background: #00c1ca;
    color: #182b55;
}

.prddetail_sec .fixed_btnbox .btn.typeB {
    background: #fff;
    color: #182b55;
    border: 1px solid #c3cfdb;
}

.prddetail_sec .detail_review {
    width: calc((100% - 2.5rem) / 2);
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 3.75rem;
    margin-top: -6.25rem;
}

.prddetail_sec.is_fixed .detail_review {
    margin-top: 3.25rem;
}

.prddetail_sec.is_bottom .detail_review {
    margin-top: 3.25rem;
}

.prddetail_sec .detail_review .inputarea {
    display: flex;
    flex-direction: column;
}

.prddetail_sec .detail_review .inputarea .tit {
    font-weight: 600;
    font-size: 1rem;
    line-height: 100%;
    color: #182b55;
    margin-bottom: 0.75rem;
}

.prddetail_sec .detail_review .inputarea .textarea {
    width: 100%;
    height: 4rem;
    border: 1px solid #adb5c3;
    padding: 0.75rem;
    border-radius: 0.625rem;
    background: #fff;
    resize: none;
}

.prddetail_sec .detail_review .inputarea .input_bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 0.625rem;
}

.prddetail_sec .detail_review .inputarea .input_bottom .note {
    font-size: 0.875rem;
    line-height: 100%;
    color: #7c88a2;
}

.prddetail_sec .detail_review .inputarea .input_bottom .submit_btn {
    font-weight: 600;
    font-size: 1rem;
    line-height: 100%;
    text-align: center;
    color: #182b55;
    border-radius: 0.625rem;
    padding: 0.625rem 0.875rem;
    background: #00c1ca;
}

.prddetail_sec .detail_review .reviewarea {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.prddetail_sec .detail_review .reviewitem {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.prddetail_sec .detail_review .reviewitem .top {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.prddetail_sec .detail_review .reviewitem .top .profile {
    width: 3.125rem;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    overflow: hidden;
}

.prddetail_sec .detail_review .reviewitem .top .profile .img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.prddetail_sec .detail_review .reviewitem .top .msg {
    flex: 1;
    position: relative;
    background: #e5e9f1;
    padding: 0.563rem 0.938rem 1rem;
    font-size: 0.875rem;
    line-height: 129%;
    border-radius: 1rem;
    margin-top: 0.438rem;
}

.prddetail_sec .detail_review .reviewitem .top .msg::before {
    content: "";
    background: no-repeat center / contain;
    position: absolute;
    top: 0;
    width: 1.25rem;
    aspect-ratio: 1 / 1;
    background-image: url(../img/rv_msg_tail.png);
    left: -0.5rem;
}

.prddetail_sec .detail_review .reviewitem .bottom {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-left: 4rem;
}

.prddetail_sec .detail_review .reviewitem .bottom .name {
    font-weight: 600;
    font-size: 0.813rem;
    line-height: 100%;
    color: #2e4369;
}

.prddetail_sec .detail_review .reviewitem .bottom .name .time {
    font-weight: 400;
    color: #7c88a2;
}

.prddetail_sec .detail_review .reviewitem .bottom .btnbox {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.prddetail_sec .detail_review .reviewitem .bottom .btnbox .btn {
    font-size: 0.75rem;
    line-height: 100%;
    border-radius: 0.313rem;
    padding: 0.25rem 0.375rem;
}

.prddetail_sec .detail_review .reviewitem .bottom .btnbox .btn.typeA {
    background: #e5e9f1;
    color: #7c88a2;
}

.prddetail_sec .detail_review .reviewitem .bottom .btnbox .btn.typeB {
    background: #2e4369;
    color: #fff;
}

.prddetail_sec .detail_review .reviewitem .inputarea {
    margin-top: 0.25rem;
    padding-left: 4rem;
}

.prddetail_sec .detail_review .reviewitem .inputarea .input_bottom .submit_btn {
    background: #7c88a2;
    color: #fff;
}

.prddetail_sec .detail_review .reviewitem.me .top {
    flex-direction: row-reverse;
}

.prddetail_sec .detail_review .reviewitem.me .top .msg {
    background: #00c1ca;
    color: #182b55;
}

.prddetail_sec .detail_review .reviewitem.me .top .msg::before {
    background-image: url(../img/rv_msg_tail2.png);
    left: unset;
    right: -0.5rem;
}

.prddetail_sec .detail_review .reviewitem.me .bottom {
    flex-direction: row-reverse;
    padding-left: 0;
    padding-right: 4rem;
}

.prddetail_sec .detail_review .reviewitem.me .inputarea {
    padding-left: 0;
    padding-right: 4rem;
}


/* 로그인 공통 */
.login_wrap {
    background: #00c1ca;
}

.login_wrap .container {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 4.375rem 0;
}

.login_wrap .login_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.login_wrap .login_header .logo {
    width: 7.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login_wrap .login_header .back_btn {
    background: url(../img/login_back.png) no-repeat center/contain;
    width: 1.875rem;
    aspect-ratio: 1/1;
}

.login_wrap .login_topbox {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 2.125rem;
}

.login_wrap .login_topbox .txtbox {
    flex: 1;
}

.login_wrap .login_topbox .txtbox .tit {
    font-family: var(--second-family);
    font-weight: 600;
    font-size: 2.25rem;
    line-height: 100%;
    color: #182b55;
    margin-bottom: 1.375rem;
}

.login_wrap .login_topbox .txtbox .desc {
    font-family: var(--second-family);
    font-size: 1.125rem;
    line-height: 133%;
    color: #fff;
}

.login_wrap .login_topbox .txtbox .eng {
    font-family: var(--second-family);
    font-size: 0.563rem;
    line-height: 100%;
    color: #fff;
}

.login_wrap .login_topbox .imgbox {
    display: flex;
    align-items: center;
    justify-content: center;
}

.login_wrap .login_copy {
    font-size: 0.625rem;
    line-height: 140%;
    text-align: center;
    color: #182b55;
}

.login_wrap .form_box {
    gap: 0.875rem;
}

.login_wrap .check_box {
    gap: 0.438rem;
}

.login_wrap .check_box .input_check {
    background-image: url(../img/checkbox_off2.png);
    width: 1.5rem;
    height: 1.5rem;
}

.login_wrap .check_box .input_check:checked {
    background-image: url(../img/checkbox_on2.png);
}

.login_wrap .check_box .label_check {
    font-size: 0.813rem;
    font-weight: 500;
}

.login_wrap .input_box {
    position: relative;
}

.login_wrap .input_box .input_text {
    height: 2.875rem;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 10rem;
    background: rgba(255, 255, 255, 0.3);
    padding-left: 3rem;
    font-weight: 500;
    font-size: 0.938rem;
    color: #182b55;
}

.login_wrap .input_box .input_text::placeholder {
    color: #182b55;
}

.login_wrap .input_box .input_icon {
    position: absolute;
    left: 1.125rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1.375rem;
}

.login_wrap .input_flex {
    display: flex;
    justify-content: space-between;
    gap: 0.563rem;
}

.login_wrap .input_flex .input_box {
    flex: 1;
    max-width: 390px;
}

.login_wrap .input_flex .input_btn {
    width: 6rem;
    height: 2.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 10rem;
    background: rgba(255, 255, 255, 0.3);
    font-size: 0.875rem;
    line-height: 100%;
    text-align: center;
    color: #182b55;
}

.login_wrap .select_box {
    position: relative;
    padding-left: 2.25rem;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 10rem;
    background: rgba(255, 255, 255, 0.3);
}

.login_wrap .select_box .select {
    background: url(../img/select_arrow2.png) no-repeat right 1.375rem center / 0.5rem transparent;
    height: 2.875rem;
    padding-right: 3rem;
    font-weight: 500;
    font-size: 0.938rem;
    color: #182b55;
    border: none;
    border-radius: 0;
}

.login_wrap .term_box {
    display: flex;
    flex-direction: column;
    gap: 0.688rem;
}

.login_wrap .term_box .term_tit {
    font-weight: 600;
    font-size: 1rem;
    line-height: 100%;
    color: #182b55;
    padding: 0 0.313rem;
}

.login_wrap .term_box .term_cont {
    height: 6.25rem;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 0.625rem;
    background: rgba(255, 255, 255, 0.3);
    overflow: auto;
    padding: 0.875rem;
    font-size: 0.813rem;
    line-height: 138%;
    color: #2e4369;
}

.login_wrap .term_box .term_cont::-webkit-scrollbar {
    display: none;
}

.login_wrap .file_box {
    padding-left: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 10rem;
    background: rgba(255, 255, 255, 0.3);
}

.login_wrap .file_box .input_file {
    display: none;
}

.login_wrap .file_box .label_file {
    display: flex;
    align-items: center;
    height: 2.875rem;
    font-size: 0.938rem;
    line-height: 100%;
    color: #182b55;
    cursor: pointer;
}

.login_wrap .file_preview {
    display: flex;
    gap: 1.063rem;
    margin-top: 0.938rem;
}

.login_wrap .file_preview .imgbox {
    width: 5rem;
    aspect-ratio: 1/1;
    border-radius: 0.625rem;
    overflow: hidden;
    background: #fff;
}

.login_wrap .file_preview .imgbox .img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.login_wrap .file_preview .txtbox {
    flex: 1;
    margin-top: 0.875rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    font-size: 0.938rem;
    line-height: 100%;
    color: #182b55;
}

.login_wrap .file_preview .txtbox .del_btn {
    font-weight: 500;
}

.login_wrap .button {
    width: 100%;
    height: 3.375rem;
    font-weight: 600;
    font-size: 1.25rem;
    line-height: 100%;
    text-align: center;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #182b55;
    border-radius: 10rem;
}


/* 로그인 */
.login_wrap .login_sec {
    border: 1px solid #fff;
    border-radius: 1.25rem;
    max-width: 360px;
}

.login_wrap .login_sec>.inner {
    width: 100%;
    padding: 2.125rem 1.625rem;
}

.login_wrap .login_sec .login_cont {
    margin-top: 1.688rem;
}

.login_wrap .login_sec .login_cont .login_topbox .txtbox .tit {
    margin-bottom: 1.375rem;
}

.login_wrap .login_sec .login_cont .login_topbox .txtbox .desc {
    margin-bottom: 0.625rem;
}

.login_wrap .login_sec .login_cont .login_topbox .imgbox {
    width: 8.563rem;
    margin-top: 0.688rem;
}

.login_wrap .login_sec .login_cont .form_box .login_btn {
    margin-top: 0.625rem;
}

.login_wrap .login_sec .login_cont .sch_box {
    margin-top: 1.625rem;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.login_wrap .login_sec .login_cont .sch_box .item {
    font-size: 0.875rem;
    line-height: 100%;
    color: #182b55;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.login_wrap .login_sec .login_cont .sch_box .item .tit {
    position: relative;
    padding-left: 0.875rem;
}

.login_wrap .login_sec .login_cont .sch_box .item .tit::before {
    content: "";
    width: 0.313rem;
    aspect-ratio: 1 / 1;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: #182b55;
    border-radius: 50%;
}

.login_wrap .login_sec .login_cont .sch_box .item .link {
    font-weight: 600;
}

.login_wrap .login_sec .login_cont .or {
    margin-top: 4rem;
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

.login_wrap .login_sec .login_cont .or .bar {
    flex: 1;
    height: 1px;
    background: #3c9ea8;
}

.login_wrap .login_sec .login_cont .or .txt {
    font-weight: 600;
    font-size: 0.563rem;
    line-height: 100%;
    color: #182b55;
    text-transform: uppercase;
}

.login_wrap .login_sec .login_cont .snsbox {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.625rem;
    margin-top: 1.5rem;
    margin-bottom: 3.5rem;
}

.login_wrap .login_sec .login_cont .snsbox .link {
    width: 1.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.313rem;
}

.login_wrap .login_sec .login_cont .snsbox .apple_link {
    margin-top: 0;
}


/* 회원가입 - 약관동의 */
.login_wrap .join_sec {
    max-width: calc(600px + 1.625rem*2);
}

.login_wrap .join_sec>.inner {
    width: 100%;
    padding: 0 1.625rem;
}

.login_wrap .join_sec .login_cont {
    margin-top: 1.688rem;
}

.login_wrap .join_sec .login_cont .login_topbox {
    margin-bottom: 2.625rem;
}

.login_wrap .join_sec .login_cont .login_topbox .txtbox .tit {
    margin-bottom: 2.25rem;
}

.login_wrap .join_sec .login_cont .login_topbox .txtbox .desc {
    margin-bottom: 1.125rem;
}

.login_wrap .join_sec .login_cont .login_topbox .imgbox {
    width: 9.063rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.313rem;
}

.login_wrap .join_sec .login_cont .form_box {
    gap: 1.75rem;
}

.login_wrap .join_sec .login_cont .form_item {
    margin-top: 0.563rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.login_wrap .join_sec .login_cont .form_item:first-child {
    margin-top: 0;
}

.login_wrap .join_sec .login_cont .form_item .check_box {
    padding: 0 0.125rem;
}

.login_wrap .join_sec .login_cont .form_item.allCheck {
    margin-top: 0;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(0, 0, 0, 0.2);
}

.login_wrap .join_sec .login_copy {
    margin-top: 1.25rem;
}


/* 회원가입 - 정보입력 */
.login_wrap .join_sec2 {
    max-width: calc(600px + 1.625rem*2);
}

.login_wrap .join_sec2>.inner {
    width: 100%;
    padding: 0 1.625rem;
}

.login_wrap .join_sec2 .login_cont {
    margin-top: 3.125rem;
}

.login_wrap .join_sec2 .login_btn {
    margin-top: 0.813rem;
}

.login_wrap .join_sec2 .login_copy {
    margin-top: 1.625rem;
}


/* 마이페이지 공통 */
.mypage_sec {
    margin-bottom: 4rem;
}

.mypage_sec>.inner {
    display: flex;
    gap: 2.875rem;
}

.mypage_sec .my_side {
    width: 7.25rem;
    margin-top: 0.875rem;
}

.mypage_sec .my_side .mytab_swiper {
    width: 100%;
    height: auto;
}

.mypage_sec .my_side .mytab_swiper .swiper-wrapper {
    gap: 1.688rem;
}

.mypage_sec .my_side .mytab_swiper .item {
    height: auto;
}

.mypage_sec .my_side .mytab_swiper .item .link {
    font-size: 1.125rem;
    line-height: 130%;
    color: #7c88a2;
}

.mypage_sec .my_side .mytab_swiper .item.on .link {
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
    color: #182b55;
}

.mypage_sec .my_cont {
    width: calc(100% - 5.25rem - 2.875rem);
    border: 1px solid #c3cfdb;
    border-radius: 1.25rem;
    background: #fff;
    padding: 2.5rem 3.125rem 2.75rem
}


/* 마이페이지 - 나의 정보 */
.mypage_sec .my_cont.myinfo .form_box {
    gap: 0.875rem;
    max-width: 718px;
}

.mypage_sec .my_cont.myinfo .form_item {
    display: flex;
    align-items: flex-start;
    gap: 1.125rem;
}

.mypage_sec .my_cont.myinfo .form_item.profile_ver {
    margin-bottom: 2.25rem;
}

.mypage_sec .my_cont.myinfo .form_item .form_tit {
    width: 6.25rem;
    font-size: 0.875rem;
    line-height: 114%;
    color: #7c88a2;
    margin-top: 0.938rem;
}

.mypage_sec .my_cont.myinfo .form_item .form_tit.big {
    font-weight: 600;
    font-size: 1rem;
    line-height: 100%;
    margin-top: 0.438rem;
}

.mypage_sec .my_cont.myinfo .form_item .form_cont {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.mypage_sec .my_cont.myinfo .form_item .profile {
    position: relative;
    width: 6.25rem;
    aspect-ratio: 1/1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mypage_sec .my_cont.myinfo .form_item .profile .img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.mypage_sec .my_cont.myinfo .form_item .profile .setting_btn {
    background: url(../img/ico_setting.png) no-repeat center/contain;
    width: 1.875rem;
    aspect-ratio: 1/1;
    position: absolute;
    right: 0;
    bottom: 0;
}

.mypage_sec .my_cont.myinfo .form_item .input_box .input_text {
    height: 2.875rem;
    border-radius: 10rem;
    padding-left: 1rem;
    padding-right: 5.5rem;
    font-weight: 600;
    color: #182b55;
}

.mypage_sec .my_cont.myinfo .form_item .input_box .input_text::placeholder {
    color: #7c88a2;
    font-weight: 400;
}

.mypage_sec .my_cont.myinfo .form_item .input_box .state_btn {
    position: absolute;
    right: 0.375rem;
    top: 0.375rem;
    width: 4.75rem;
    height: calc(100% - 0.375rem * 2);
    display: flex;
    align-items: center;
    background: #dde1ea;
    border-radius: 10rem;
    padding: 0.375rem;
    font-size: 0.625rem;
    line-height: 120%;
    text-align: center;
    color: #2f4573;
}

.mypage_sec .my_cont.myinfo .form_item .input_box .state_btn .txt {
    flex: 1;
    text-align: center;
}

.mypage_sec .my_cont.myinfo .form_item .input_box .state_btn .icon {
    background: no-repeat center/contain;
    width: 0.75rem;
    aspect-ratio: 1/1;
}

.mypage_sec .my_cont.myinfo .form_item .input_box .state_btn .icon.check {
    background-image: url(../img/inputbtn_check.png);
}

.mypage_sec .my_cont.myinfo .form_item .input_box .state_btn .icon.arrow {
    background-image: url(../img/inputbtn_arrow.png);
}

.mypage_sec .my_cont.myinfo .form_item .select_box .select {
    background: url(../img/select_arrow2.png) no-repeat right 0.938rem center / 0.5rem #fff;
    padding-left: 1rem;
    padding-right: 1.875rem;
    height: 2.875rem;
    border-radius: 10rem;
    font-weight: 600;
    color: #182b55;
}

.mypage_sec .my_cont.myinfo .form_btnbox {
    padding-left: 7.375rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.mypage_sec .my_cont.myinfo .form_btnbox .btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    border-radius: 10rem;
    font-weight: 600;
    font-size: 0.938rem;
    line-height: 100%;
    text-align: center;
}

.mypage_sec .my_cont.myinfo .form_btnbox .btn.typeA {
    color: #7c88a2;
    background: #e5e9f1;
}

.mypage_sec .my_cont.myinfo .form_btnbox .btn.typeB {
    color: #fff;
    background: #182b55;
}

.mypage_sec .my_cont.myinfo .form_btnbox .btn.edit_btn {
    font-size: 1.25rem;
}


/* 마이페이지 - 나의 캠페인 */
.mypage_sec .my_cont.mycampaign {
    padding-bottom: 1.875rem;
}

.mypage_sec .my_cont.mycampaign .prd_wrap {
    gap: 1.125rem;
}

.mypage_sec .my_cont.mycampaign .prd_top .leftbox {
    padding: 0;
}

.mypage_sec .my_cont.mycampaign .prd_top .leftbox .m_txt2 {
    font-weight: 600;
    font-size: 0.875rem;
}

.mypage_sec .my_cont.mycampaign .prd_list {
    gap: 3rem 2.75rem;
    max-height: 42.25rem;
    overflow: auto;
    padding-right: 2.5rem;
    width: calc(100% + 2.5rem);
}

.mypage_sec .my_cont.mycampaign .prd_list::-webkit-scrollbar {
    width: 0.313rem;
    height: 0.313rem;
}

.mypage_sec .my_cont.mycampaign .prd_list::-webkit-scrollbar-thumb {
    background: #7c88a2;
    border-radius: 10rem;
}

.mypage_sec .my_cont.mycampaign .prd_list::-webkit-scrollbar-track {
    background: #e5e9f1;
    border-radius: 10rem;
}

.mypage_sec .my_cont.mycampaign .prd_list .prd_item {
    width: calc((100% - 2.75rem * 2) / 3);
}

.mypage_sec .my_cont.mycampaign .prd_list .prd_item .imgbox {
    height: 13.375rem;
}

.mypage_sec .my_cont.mycampaign .prd_list .prd_item .txtbox {
    gap: 0.125rem;
}

.mypage_sec .my_cont.mycampaign .prd_list .prd_item .txtbox .desc {
    font-size: 0.688rem;
    line-height: 100%;
    color: #182b55;
}

.mypage_sec .my_cont.mycampaign .prd_list .prd_item .txtbox .fundbox {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mypage_sec .my_cont.mycampaign .prd_list .prd_item .txtbox .fundbox .fund {
    font-weight: 600;
    font-size: 1rem;
    line-height: 100%;
    color: #182b55;
}

.mypage_sec .my_cont.mycampaign .prd_list .prd_item .txtbox .fundbox .percent {
    background: url(../img/prd_percent.png) no-repeat center / contain;
    width: 3.125rem;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.938rem;
    line-height: 100%;
    text-decoration: underline;
    text-align: center;
    color: #000;
}


/* 마이페이지 - 내 기부내역 */
.mypage_sec .my_cont.mypurchase {
    padding-bottom: 2.375rem;
}

.mypage_sec .my_cont.mypurchase .prd_list {
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 1.5rem;
    max-height: 38rem;
    overflow: auto;
    padding-right: 2.5rem;
    width: calc(100% + 2.5rem);
}

.mypage_sec .my_cont.mypurchase .prd_list::-webkit-scrollbar {
    width: 0.313rem;
    height: 0.313rem;
}

.mypage_sec .my_cont.mypurchase .prd_list::-webkit-scrollbar-thumb {
    background: #7c88a2;
    border-radius: 10rem;
}

.mypage_sec .my_cont.mypurchase .prd_list::-webkit-scrollbar-track {
    background: #e5e9f1;
    border-radius: 10rem;
}

.mypage_sec .my_cont.mypurchase .prd_list .prd_item {
    width: 100%;
}

.mypage_sec .my_cont.mypurchase .prd_list .prd_item>.link {
    flex-direction: row;
    align-items: center;
    gap: 1.375rem;
}

.mypage_sec .my_cont.mypurchase .prd_list .prd_item .imgbox {
    width: 12.5rem;
    height: 8.375rem;
}

.mypage_sec .my_cont.mypurchase .prd_list .prd_item .txtbox {
    flex: 1;
    overflow: hidden;
    gap: 1.25rem;
}

.mypage_sec .my_cont.mypurchase .prd_list .prd_item .txtbox .title {
    font-size: 1.125rem;
    line-height: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mypage_sec .my_cont.mypurchase .prd_list .prd_item .txtbox .descbox {
    display: flex;
    flex-direction: column;
    gap: 0.438rem;
}

.mypage_sec .my_cont.mypurchase .prd_list .prd_item .txtbox .descbox .descitem {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 1rem;
    color: #182b55;
}

.mypage_sec .my_cont.mypurchase .prd_list .prd_item .txtbox .descbox .descitem .tit {
    position: relative;
    width: 5.875rem;
    padding-left: 1.375rem;
}

.mypage_sec .my_cont.mypurchase .prd_list .prd_item .txtbox .descbox .descitem .tit::before {
    content: "";
    width: 0.25rem;
    aspect-ratio: 1 / 1;
    position: absolute;
    left: 0.45em;
    top: 50%;
    transform: translateY(-50%);
    background: #182b55;
    border-radius: 50%;
}

.mypage_sec .my_cont.mypurchase .prd_list .prd_item .txtbox .descbox .descitem .desc {
    font-weight: 600;
    flex: 1;
}


/* 260604 추가작업 */
.login_wrap .login_sec .login_cont {
    min-height: 654px;
}

.login_wrap .login_sec .login_topbox {
    margin-bottom: 3.25rem;
}

.login_wrap .login_sec .sns_login {
    display: flex;
    flex-direction: column;
    gap: 2.375rem;
    margin-bottom: auto;
}

.login_wrap .login_sec .sns_login .bar_tit {
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

.login_wrap .login_sec .sns_login .bar_tit .bar {
    flex: 1;
    height: 1px;
    background: #182b55;
}

.login_wrap .login_sec .sns_login .bar_tit .tit {
    font-weight: 500;
    font-size: 0.875rem;
    line-height: 100%;
    text-align: center;
    color: #182b55;
}

.login_wrap .login_sec .sns_login .list_box {
    display: flex;
    flex-direction: column;
    gap: 1.125rem;
}

.login_wrap .login_sec .sns_login .list_box .btn {
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 10rem;
    background: rgba(255, 255, 255, 0.3);
    width: 100%;
    height: 2.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-weight: 600;
    font-size: 0.938rem;
    line-height: 100%;
    color: #000;
}

.login_wrap .login_sec .sns_login .list_box .btn .icon {
    width: unset;
    height: 1.5rem;
}